styles.css 117 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956
  1. /* CSS generated by http://lavishbootstrap.com */
  2. /*! normalize.css v2.1.0 | MIT License | git.io/normalize */
  3. /*! Modified by Anyx */
  4. article,
  5. aside,
  6. details,
  7. figcaption,
  8. figure,
  9. footer,
  10. header,
  11. hgroup,
  12. main,
  13. nav,
  14. section,
  15. summary {
  16. display: block;
  17. }
  18. audio,
  19. canvas,
  20. video {
  21. display: inline-block;
  22. }
  23. audio:not([controls]) {
  24. display: none;
  25. height: 0;
  26. }
  27. [hidden] {
  28. display: none;
  29. }
  30. html {
  31. font-family: sans-serif;
  32. -webkit-text-size-adjust: 100%;
  33. -ms-text-size-adjust: 100%;
  34. }
  35. body {
  36. margin: 0;
  37. }
  38. a:focus {
  39. outline: thin dotted;
  40. }
  41. a:active,
  42. a:hover {
  43. outline: 0;
  44. }
  45. h1 {
  46. font-size: 2em;
  47. margin: 0.67em 0;
  48. }
  49. abbr[title] {
  50. border-bottom: 1px dotted;
  51. }
  52. b,
  53. strong {
  54. font-weight: bold;
  55. }
  56. dfn {
  57. font-style: italic;
  58. }
  59. hr {
  60. -moz-box-sizing: content-box;
  61. box-sizing: content-box;
  62. height: 0;
  63. }
  64. mark {
  65. background: #ff0;
  66. color: #000;
  67. }
  68. code,
  69. kbd,
  70. pre,
  71. samp {
  72. font-family: monospace, serif;
  73. font-size: 1em;
  74. }
  75. pre {
  76. white-space: pre-wrap;
  77. }
  78. q {
  79. quotes: "\201C" "\201D" "\2018" "\2019";
  80. }
  81. small {
  82. font-size: 80%;
  83. }
  84. sub,
  85. sup {
  86. font-size: 75%;
  87. line-height: 0;
  88. position: relative;
  89. vertical-align: baseline;
  90. }
  91. sup {
  92. top: -0.5em;
  93. }
  94. sub {
  95. bottom: -0.25em;
  96. }
  97. img {
  98. border: 0;
  99. }
  100. svg:not(:root) {
  101. overflow: hidden;
  102. }
  103. figure {
  104. margin: 0;
  105. }
  106. fieldset {
  107. border: 1px solid #c0c0c0;
  108. margin: 0 2px;
  109. padding: 0.35em 0.625em 0.75em;
  110. }
  111. legend {
  112. border: 0;
  113. padding: 0;
  114. }
  115. button,
  116. input,
  117. select,
  118. textarea {
  119. font-family: inherit;
  120. font-size: 100%;
  121. margin: 0;
  122. }
  123. button,
  124. input {
  125. line-height: normal;
  126. }
  127. button,
  128. select {
  129. text-transform: none;
  130. }
  131. button,
  132. html input[type="button"],
  133. input[type="reset"],
  134. input[type="submit"] {
  135. -webkit-appearance: button;
  136. cursor: pointer;
  137. }
  138. button[disabled],
  139. html input[disabled] {
  140. cursor: default;
  141. }
  142. input[type="checkbox"],
  143. input[type="radio"] {
  144. box-sizing: border-box;
  145. padding: 0;
  146. }
  147. input[type="search"] {
  148. -webkit-appearance: textfield;
  149. -moz-box-sizing: content-box;
  150. -webkit-box-sizing: content-box;
  151. box-sizing: content-box;
  152. }
  153. input[type="search"]::-webkit-search-cancel-button,
  154. input[type="search"]::-webkit-search-decoration {
  155. -webkit-appearance: none;
  156. }
  157. button::-moz-focus-inner,
  158. input::-moz-focus-inner {
  159. border: 0;
  160. padding: 0;
  161. }
  162. textarea {
  163. overflow: auto;
  164. vertical-align: top;
  165. }
  166. table {
  167. border-collapse: collapse;
  168. border-spacing: 0;
  169. }
  170. @media print {
  171. * {
  172. text-shadow: none !important;
  173. color: #000 !important;
  174. background: transparent !important;
  175. box-shadow: none !important;
  176. }
  177. a,
  178. a:visited {
  179. text-decoration: underline;
  180. }
  181. a[href]:after {
  182. content: " (" attr(href) ")";
  183. }
  184. abbr[title]:after {
  185. content: " (" attr(title) ")";
  186. }
  187. .ir a:after,
  188. a[href^="javascript:"]:after,
  189. a[href^="#"]:after {
  190. content: "";
  191. }
  192. pre,
  193. blockquote {
  194. border: 1px solid #999;
  195. page-break-inside: avoid;
  196. }
  197. thead {
  198. display: table-header-group;
  199. }
  200. tr,
  201. img {
  202. page-break-inside: avoid;
  203. }
  204. img {
  205. max-width: 100% !important;
  206. }
  207. @page {
  208. margin: 2cm .5cm;
  209. }
  210. p,
  211. h2,
  212. h3 {
  213. orphans: 3;
  214. widows: 3;
  215. }
  216. h2,
  217. h3 {
  218. page-break-after: avoid;
  219. }
  220. .navbar {
  221. display: none;
  222. }
  223. #-group iframe {
  224. width: 100%;
  225. }
  226. .table td,
  227. .table th {
  228. background-color: #fff !important;
  229. }
  230. .btn > .caret,
  231. .dropup > .btn > .caret {
  232. border-top-color: #000 !important;
  233. }
  234. .label {
  235. border: 1px solid #000;
  236. }
  237. .table {
  238. border-collapse: collapse !important;
  239. }
  240. .table-bordered th,
  241. .table-bordered td {
  242. border: 1px solid #ddd !important;
  243. }
  244. }
  245. *,
  246. *:before,
  247. *:after {
  248. -webkit-box-sizing: border-box;
  249. -moz-box-sizing: border-box;
  250. box-sizing: border-box;
  251. }
  252. html {
  253. font-size: 62.5%;
  254. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  255. }
  256. body {
  257. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  258. font-size: 14px;
  259. line-height: 1.428571429;
  260. color: #5c799c;
  261. background-color: #becfdc;
  262. }
  263. input,
  264. button,
  265. select,
  266. textarea {
  267. font-family: inherit;
  268. font-size: inherit;
  269. line-height: inherit;
  270. }
  271. button,
  272. input,
  273. select[multiple],
  274. textarea {
  275. background-image: none;
  276. }
  277. a {
  278. color: #728eac;
  279. text-decoration: none;
  280. }
  281. a:hover,
  282. a:focus {
  283. color: #4e6884;
  284. text-decoration: none;
  285. }
  286. a:focus {
  287. outline: thin dotted #333;
  288. outline: 5px auto -webkit-focus-ring-color;
  289. outline-offset: -2px;
  290. }
  291. img {
  292. vertical-align: middle;
  293. }
  294. .img-responsive {
  295. display: block;
  296. max-width: 100%;
  297. height: auto;
  298. }
  299. .img-rounded {
  300. border-radius: 6px;
  301. }
  302. .img-thumbnail {
  303. padding: 4px;
  304. line-height: 1.428571429;
  305. background-color: #becfdc;
  306. border: 1px solid #dddddd;
  307. border-radius: 4px;
  308. -webkit-transition: all 0.2s ease-in-out;
  309. transition: all 0.2s ease-in-out;
  310. display: inline-block;
  311. max-width: 100%;
  312. height: auto;
  313. }
  314. .img-circle {
  315. border-radius: 50%;
  316. }
  317. hr {
  318. margin-top: 20px;
  319. margin-bottom: 20px;
  320. border: 0;
  321. border-top: 1px solid #96b0c7;
  322. }
  323. .sr-only {
  324. position: absolute;
  325. width: 1px;
  326. height: 1px;
  327. margin: -1px;
  328. padding: 0;
  329. overflow: hidden;
  330. clip: rect(0 0 0 0);
  331. border: 0;
  332. }
  333. p {
  334. margin: 0 0 10px;
  335. }
  336. .lead {
  337. margin-bottom: 20px;
  338. font-size: 16.099999999999998px;
  339. font-weight: 200;
  340. line-height: 1.4;
  341. }
  342. @media (min-width: 768px) {
  343. .lead {
  344. font-size: 21px;
  345. }
  346. }
  347. small {
  348. font-size: 85%;
  349. }
  350. cite {
  351. font-style: normal;
  352. }
  353. .text-muted {
  354. color: #8aa2b6;
  355. }
  356. .text-primary {
  357. color: #728eac;
  358. }
  359. .text-warning {
  360. color: #c09853;
  361. }
  362. .text-danger {
  363. color: #b94a48;
  364. }
  365. .text-success {
  366. color: #468847;
  367. }
  368. .text-info {
  369. color: #3a87ad;
  370. }
  371. .text-left {
  372. text-align: left;
  373. }
  374. .text-right {
  375. text-align: right;
  376. }
  377. .text-center {
  378. text-align: center;
  379. }
  380. h1,
  381. h2,
  382. h3,
  383. h4,
  384. h5,
  385. h6,
  386. .h1,
  387. .h2,
  388. .h3,
  389. .h4,
  390. .h5,
  391. .h6 {
  392. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  393. font-weight: 500;
  394. line-height: 1.1;
  395. }
  396. h1 small,
  397. h2 small,
  398. h3 small,
  399. h4 small,
  400. h5 small,
  401. h6 small,
  402. .h1 small,
  403. .h2 small,
  404. .h3 small,
  405. .h4 small,
  406. .h5 small,
  407. .h6 small {
  408. font-weight: normal;
  409. line-height: 1;
  410. color: #8aa2b6;
  411. }
  412. h1,
  413. h2,
  414. h3 {
  415. margin-top: 20px;
  416. margin-bottom: 10px;
  417. }
  418. h4,
  419. h5,
  420. h6 {
  421. margin-top: 10px;
  422. margin-bottom: 10px;
  423. }
  424. h1,
  425. .h1 {
  426. font-size: 36px;
  427. }
  428. h2,
  429. .h2 {
  430. font-size: 30px;
  431. }
  432. h3,
  433. .h3 {
  434. font-size: 24px;
  435. }
  436. h4,
  437. .h4 {
  438. font-size: 18px;
  439. }
  440. h5,
  441. .h5 {
  442. font-size: 14px;
  443. }
  444. h6,
  445. .h6 {
  446. font-size: 12px;
  447. }
  448. h1 small,
  449. .h1 small {
  450. font-size: 24px;
  451. }
  452. h2 small,
  453. .h2 small {
  454. font-size: 18px;
  455. }
  456. h3 small,
  457. .h3 small,
  458. h4 small,
  459. .h4 small {
  460. font-size: 14px;
  461. }
  462. .page-header {
  463. padding-bottom: 9px;
  464. margin: 40px 0 20px;
  465. border-bottom: 1px solid #96b0c7;
  466. }
  467. ul,
  468. ol {
  469. margin-top: 0;
  470. margin-bottom: 10px;
  471. }
  472. ul ul,
  473. ol ul,
  474. ul ol,
  475. ol ol {
  476. margin-bottom: 0;
  477. }
  478. .list-unstyled {
  479. padding-left: 0;
  480. list-style: none;
  481. }
  482. .list-inline {
  483. padding-left: 0;
  484. list-style: none;
  485. }
  486. .list-inline > li {
  487. display: inline-block;
  488. padding-left: 5px;
  489. padding-right: 5px;
  490. }
  491. dl {
  492. margin-bottom: 20px;
  493. }
  494. dt,
  495. dd {
  496. line-height: 1.428571429;
  497. }
  498. dt {
  499. font-weight: bold;
  500. }
  501. dd {
  502. margin-left: 0;
  503. }
  504. @media (min-width: 768px) {
  505. .dl-horizontal dt {
  506. float: left;
  507. width: 160px;
  508. clear: left;
  509. text-align: right;
  510. overflow: hidden;
  511. text-overflow: ellipsis;
  512. white-space: nowrap;
  513. }
  514. .dl-horizontal dd {
  515. margin-left: 180px;
  516. }
  517. .dl-horizontal dd:before,
  518. .dl-horizontal dd:after {
  519. content: " ";
  520. /* 1 */
  521. display: table;
  522. /* 2 */
  523. }
  524. .dl-horizontal dd:after {
  525. clear: both;
  526. }
  527. .dl-horizontal dd:before,
  528. .dl-horizontal dd:after {
  529. content: " ";
  530. /* 1 */
  531. display: table;
  532. /* 2 */
  533. }
  534. .dl-horizontal dd:after {
  535. clear: both;
  536. }
  537. }
  538. abbr[title],
  539. abbr[data-original-title] {
  540. cursor: help;
  541. border-bottom: 1px dotted #8aa2b6;
  542. }
  543. abbr.initialism {
  544. font-size: 90%;
  545. text-transform: uppercase;
  546. }
  547. blockquote {
  548. padding: 10px 20px;
  549. margin: 0 0 20px;
  550. border-left: 5px solid #96b0c7;
  551. }
  552. blockquote p {
  553. font-size: 17.5px;
  554. font-weight: 300;
  555. line-height: 1.25;
  556. }
  557. blockquote p:last-child {
  558. margin-bottom: 0;
  559. }
  560. blockquote small {
  561. display: block;
  562. line-height: 1.428571429;
  563. color: #8aa2b6;
  564. }
  565. blockquote small:before {
  566. content: '\2014 \00A0';
  567. }
  568. blockquote.pull-right {
  569. padding-right: 15px;
  570. padding-left: 0;
  571. border-right: 5px solid #96b0c7;
  572. border-left: 0;
  573. }
  574. blockquote.pull-right p,
  575. blockquote.pull-right small {
  576. text-align: right;
  577. }
  578. blockquote.pull-right small:before {
  579. content: '';
  580. }
  581. blockquote.pull-right small:after {
  582. content: '\00A0 \2014';
  583. }
  584. q:before,
  585. q:after,
  586. blockquote:before,
  587. blockquote:after {
  588. content: "";
  589. }
  590. address {
  591. display: block;
  592. margin-bottom: 20px;
  593. font-style: normal;
  594. line-height: 1.428571429;
  595. }
  596. code,
  597. pre {
  598. font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  599. }
  600. code {
  601. padding: 2px 4px;
  602. font-size: 90%;
  603. color: #c7254e;
  604. background-color: #f9f2f4;
  605. white-space: nowrap;
  606. border-radius: 4px;
  607. }
  608. pre {
  609. display: block;
  610. padding: 9.5px;
  611. margin: 0 0 10px;
  612. font-size: 13px;
  613. line-height: 1.428571429;
  614. word-break: break-all;
  615. word-wrap: break-word;
  616. color: #5c799c;
  617. background-color: #f5f5f5;
  618. border: 1px solid #cccccc;
  619. border-radius: 4px;
  620. }
  621. pre.prettyprint {
  622. margin-bottom: 20px;
  623. }
  624. pre code {
  625. padding: 0;
  626. font-size: inherit;
  627. color: inherit;
  628. white-space: pre-wrap;
  629. background-color: transparent;
  630. border: 0;
  631. }
  632. .pre-scrollable {
  633. max-height: 340px;
  634. overflow-y: scroll;
  635. }
  636. .container {
  637. margin-right: auto;
  638. margin-left: auto;
  639. padding-left: 15px;
  640. padding-right: 15px;
  641. }
  642. .container:before,
  643. .container:after {
  644. content: " ";
  645. /* 1 */
  646. display: table;
  647. /* 2 */
  648. }
  649. .container:after {
  650. clear: both;
  651. }
  652. .container:before,
  653. .container:after {
  654. content: " ";
  655. /* 1 */
  656. display: table;
  657. /* 2 */
  658. }
  659. .container:after {
  660. clear: both;
  661. }
  662. .row {
  663. margin-left: -15px;
  664. margin-right: -15px;
  665. }
  666. .row:before,
  667. .row:after {
  668. content: " ";
  669. /* 1 */
  670. display: table;
  671. /* 2 */
  672. }
  673. .row:after {
  674. clear: both;
  675. }
  676. .row:before,
  677. .row:after {
  678. content: " ";
  679. /* 1 */
  680. display: table;
  681. /* 2 */
  682. }
  683. .row:after {
  684. clear: both;
  685. }
  686. .col-xs-1,
  687. .col-xs-2,
  688. .col-xs-3,
  689. .col-xs-4,
  690. .col-xs-5,
  691. .col-xs-6,
  692. .col-xs-7,
  693. .col-xs-8,
  694. .col-xs-9,
  695. .col-xs-10,
  696. .col-xs-11,
  697. .col-xs-12,
  698. .col-sm-1,
  699. .col-sm-2,
  700. .col-sm-3,
  701. .col-sm-4,
  702. .col-sm-5,
  703. .col-sm-6,
  704. .col-sm-7,
  705. .col-sm-8,
  706. .col-sm-9,
  707. .col-sm-10,
  708. .col-sm-11,
  709. .col-sm-12,
  710. .col-md-1,
  711. .col-md-2,
  712. .col-md-3,
  713. .col-md-4,
  714. .col-md-5,
  715. .col-md-6,
  716. .col-md-7,
  717. .col-md-8,
  718. .col-md-9,
  719. .col-md-10,
  720. .col-md-11,
  721. .col-md-12,
  722. .col-lg-1,
  723. .col-lg-2,
  724. .col-lg-3,
  725. .col-lg-4,
  726. .col-lg-5,
  727. .col-lg-6,
  728. .col-lg-7,
  729. .col-lg-8,
  730. .col-lg-9,
  731. .col-lg-10,
  732. .col-lg-11,
  733. .col-lg-12 {
  734. position: relative;
  735. min-height: 1px;
  736. padding-left: 15px;
  737. padding-right: 15px;
  738. }
  739. .col-xs-1,
  740. .col-xs-2,
  741. .col-xs-3,
  742. .col-xs-4,
  743. .col-xs-5,
  744. .col-xs-6,
  745. .col-xs-7,
  746. .col-xs-8,
  747. .col-xs-9,
  748. .col-xs-10,
  749. .col-xs-11 {
  750. float: left;
  751. }
  752. .col-xs-1 {
  753. width: 8.333333333333332%;
  754. }
  755. .col-xs-2 {
  756. width: 16.666666666666664%;
  757. }
  758. .col-xs-3 {
  759. width: 25%;
  760. }
  761. .col-xs-4 {
  762. width: 33.33333333333333%;
  763. }
  764. .col-xs-5 {
  765. width: 41.66666666666667%;
  766. }
  767. .col-xs-6 {
  768. width: 50%;
  769. }
  770. .col-xs-7 {
  771. width: 58.333333333333336%;
  772. }
  773. .col-xs-8 {
  774. width: 66.66666666666666%;
  775. }
  776. .col-xs-9 {
  777. width: 75%;
  778. }
  779. .col-xs-10 {
  780. width: 83.33333333333334%;
  781. }
  782. .col-xs-11 {
  783. width: 91.66666666666666%;
  784. }
  785. .col-xs-12 {
  786. width: 100%;
  787. }
  788. @media (min-width: 768px) {
  789. .container {
  790. max-width: 750px;
  791. }
  792. .col-sm-1,
  793. .col-sm-2,
  794. .col-sm-3,
  795. .col-sm-4,
  796. .col-sm-5,
  797. .col-sm-6,
  798. .col-sm-7,
  799. .col-sm-8,
  800. .col-sm-9,
  801. .col-sm-10,
  802. .col-sm-11 {
  803. float: left;
  804. }
  805. .col-sm-1 {
  806. width: 8.333333333333332%;
  807. }
  808. .col-sm-2 {
  809. width: 16.666666666666664%;
  810. }
  811. .col-sm-3 {
  812. width: 25%;
  813. }
  814. .col-sm-4 {
  815. width: 33.33333333333333%;
  816. }
  817. .col-sm-5 {
  818. width: 41.66666666666667%;
  819. }
  820. .col-sm-6 {
  821. width: 50%;
  822. }
  823. .col-sm-7 {
  824. width: 58.333333333333336%;
  825. }
  826. .col-sm-8 {
  827. width: 66.66666666666666%;
  828. }
  829. .col-sm-9 {
  830. width: 75%;
  831. }
  832. .col-sm-10 {
  833. width: 83.33333333333334%;
  834. }
  835. .col-sm-11 {
  836. width: 91.66666666666666%;
  837. }
  838. .col-sm-12 {
  839. width: 100%;
  840. }
  841. .col-sm-push-1 {
  842. left: 8.333333333333332%;
  843. }
  844. .col-sm-push-2 {
  845. left: 16.666666666666664%;
  846. }
  847. .col-sm-push-3 {
  848. left: 25%;
  849. }
  850. .col-sm-push-4 {
  851. left: 33.33333333333333%;
  852. }
  853. .col-sm-push-5 {
  854. left: 41.66666666666667%;
  855. }
  856. .col-sm-push-6 {
  857. left: 50%;
  858. }
  859. .col-sm-push-7 {
  860. left: 58.333333333333336%;
  861. }
  862. .col-sm-push-8 {
  863. left: 66.66666666666666%;
  864. }
  865. .col-sm-push-9 {
  866. left: 75%;
  867. }
  868. .col-sm-push-10 {
  869. left: 83.33333333333334%;
  870. }
  871. .col-sm-push-11 {
  872. left: 91.66666666666666%;
  873. }
  874. .col-sm-pull-1 {
  875. right: 8.333333333333332%;
  876. }
  877. .col-sm-pull-2 {
  878. right: 16.666666666666664%;
  879. }
  880. .col-sm-pull-3 {
  881. right: 25%;
  882. }
  883. .col-sm-pull-4 {
  884. right: 33.33333333333333%;
  885. }
  886. .col-sm-pull-5 {
  887. right: 41.66666666666667%;
  888. }
  889. .col-sm-pull-6 {
  890. right: 50%;
  891. }
  892. .col-sm-pull-7 {
  893. right: 58.333333333333336%;
  894. }
  895. .col-sm-pull-8 {
  896. right: 66.66666666666666%;
  897. }
  898. .col-sm-pull-9 {
  899. right: 75%;
  900. }
  901. .col-sm-pull-10 {
  902. right: 83.33333333333334%;
  903. }
  904. .col-sm-pull-11 {
  905. right: 91.66666666666666%;
  906. }
  907. .col-sm-offset-1 {
  908. margin-left: 8.333333333333332%;
  909. }
  910. .col-sm-offset-2 {
  911. margin-left: 16.666666666666664%;
  912. }
  913. .col-sm-offset-3 {
  914. margin-left: 25%;
  915. }
  916. .col-sm-offset-4 {
  917. margin-left: 33.33333333333333%;
  918. }
  919. .col-sm-offset-5 {
  920. margin-left: 41.66666666666667%;
  921. }
  922. .col-sm-offset-6 {
  923. margin-left: 50%;
  924. }
  925. .col-sm-offset-7 {
  926. margin-left: 58.333333333333336%;
  927. }
  928. .col-sm-offset-8 {
  929. margin-left: 66.66666666666666%;
  930. }
  931. .col-sm-offset-9 {
  932. margin-left: 75%;
  933. }
  934. .col-sm-offset-10 {
  935. margin-left: 83.33333333333334%;
  936. }
  937. .col-sm-offset-11 {
  938. margin-left: 91.66666666666666%;
  939. }
  940. }
  941. @media (min-width: 992px) {
  942. .container {
  943. max-width: 970px;
  944. }
  945. .col-md-1,
  946. .col-md-2,
  947. .col-md-3,
  948. .col-md-4,
  949. .col-md-5,
  950. .col-md-6,
  951. .col-md-7,
  952. .col-md-8,
  953. .col-md-9,
  954. .col-md-10,
  955. .col-md-11 {
  956. float: left;
  957. }
  958. .col-md-1 {
  959. width: 8.333333333333332%;
  960. }
  961. .col-md-2 {
  962. width: 16.666666666666664%;
  963. }
  964. .col-md-3 {
  965. width: 25%;
  966. }
  967. .col-md-4 {
  968. width: 33.33333333333333%;
  969. }
  970. .col-md-5 {
  971. width: 41.66666666666667%;
  972. }
  973. .col-md-6 {
  974. width: 50%;
  975. }
  976. .col-md-7 {
  977. width: 58.333333333333336%;
  978. }
  979. .col-md-8 {
  980. width: 66.66666666666666%;
  981. }
  982. .col-md-9 {
  983. width: 75%;
  984. }
  985. .col-md-10 {
  986. width: 83.33333333333334%;
  987. }
  988. .col-md-11 {
  989. width: 91.66666666666666%;
  990. }
  991. .col-md-12 {
  992. width: 100%;
  993. }
  994. .col-md-push-0 {
  995. left: auto;
  996. }
  997. .col-md-push-1 {
  998. left: 8.333333333333332%;
  999. }
  1000. .col-md-push-2 {
  1001. left: 16.666666666666664%;
  1002. }
  1003. .col-md-push-3 {
  1004. left: 25%;
  1005. }
  1006. .col-md-push-4 {
  1007. left: 33.33333333333333%;
  1008. }
  1009. .col-md-push-5 {
  1010. left: 41.66666666666667%;
  1011. }
  1012. .col-md-push-6 {
  1013. left: 50%;
  1014. }
  1015. .col-md-push-7 {
  1016. left: 58.333333333333336%;
  1017. }
  1018. .col-md-push-8 {
  1019. left: 66.66666666666666%;
  1020. }
  1021. .col-md-push-9 {
  1022. left: 75%;
  1023. }
  1024. .col-md-push-10 {
  1025. left: 83.33333333333334%;
  1026. }
  1027. .col-md-push-11 {
  1028. left: 91.66666666666666%;
  1029. }
  1030. .col-md-pull-0 {
  1031. right: auto;
  1032. }
  1033. .col-md-pull-1 {
  1034. right: 8.333333333333332%;
  1035. }
  1036. .col-md-pull-2 {
  1037. right: 16.666666666666664%;
  1038. }
  1039. .col-md-pull-3 {
  1040. right: 25%;
  1041. }
  1042. .col-md-pull-4 {
  1043. right: 33.33333333333333%;
  1044. }
  1045. .col-md-pull-5 {
  1046. right: 41.66666666666667%;
  1047. }
  1048. .col-md-pull-6 {
  1049. right: 50%;
  1050. }
  1051. .col-md-pull-7 {
  1052. right: 58.333333333333336%;
  1053. }
  1054. .col-md-pull-8 {
  1055. right: 66.66666666666666%;
  1056. }
  1057. .col-md-pull-9 {
  1058. right: 75%;
  1059. }
  1060. .col-md-pull-10 {
  1061. right: 83.33333333333334%;
  1062. }
  1063. .col-md-pull-11 {
  1064. right: 91.66666666666666%;
  1065. }
  1066. .col-md-offset-0 {
  1067. margin-left: 0;
  1068. }
  1069. .col-md-offset-1 {
  1070. margin-left: 8.333333333333332%;
  1071. }
  1072. .col-md-offset-2 {
  1073. margin-left: 16.666666666666664%;
  1074. }
  1075. .col-md-offset-3 {
  1076. margin-left: 25%;
  1077. }
  1078. .col-md-offset-4 {
  1079. margin-left: 33.33333333333333%;
  1080. }
  1081. .col-md-offset-5 {
  1082. margin-left: 41.66666666666667%;
  1083. }
  1084. .col-md-offset-6 {
  1085. margin-left: 50%;
  1086. }
  1087. .col-md-offset-7 {
  1088. margin-left: 58.333333333333336%;
  1089. }
  1090. .col-md-offset-8 {
  1091. margin-left: 66.66666666666666%;
  1092. }
  1093. .col-md-offset-9 {
  1094. margin-left: 75%;
  1095. }
  1096. .col-md-offset-10 {
  1097. margin-left: 83.33333333333334%;
  1098. }
  1099. .col-md-offset-11 {
  1100. margin-left: 91.66666666666666%;
  1101. }
  1102. }
  1103. @media (min-width: 1200px) {
  1104. .container {
  1105. max-width: 1170px;
  1106. }
  1107. .col-lg-1,
  1108. .col-lg-2,
  1109. .col-lg-3,
  1110. .col-lg-4,
  1111. .col-lg-5,
  1112. .col-lg-6,
  1113. .col-lg-7,
  1114. .col-lg-8,
  1115. .col-lg-9,
  1116. .col-lg-10,
  1117. .col-lg-11 {
  1118. float: left;
  1119. }
  1120. .col-lg-1 {
  1121. width: 8.333333333333332%;
  1122. }
  1123. .col-lg-2 {
  1124. width: 16.666666666666664%;
  1125. }
  1126. .col-lg-3 {
  1127. width: 25%;
  1128. }
  1129. .col-lg-4 {
  1130. width: 33.33333333333333%;
  1131. }
  1132. .col-lg-5 {
  1133. width: 41.66666666666667%;
  1134. }
  1135. .col-lg-6 {
  1136. width: 50%;
  1137. }
  1138. .col-lg-7 {
  1139. width: 58.333333333333336%;
  1140. }
  1141. .col-lg-8 {
  1142. width: 66.66666666666666%;
  1143. }
  1144. .col-lg-9 {
  1145. width: 75%;
  1146. }
  1147. .col-lg-10 {
  1148. width: 83.33333333333334%;
  1149. }
  1150. .col-lg-11 {
  1151. width: 91.66666666666666%;
  1152. }
  1153. .col-lg-12 {
  1154. width: 100%;
  1155. }
  1156. .col-lg-push-0 {
  1157. left: auto;
  1158. }
  1159. .col-lg-push-1 {
  1160. left: 8.333333333333332%;
  1161. }
  1162. .col-lg-push-2 {
  1163. left: 16.666666666666664%;
  1164. }
  1165. .col-lg-push-3 {
  1166. left: 25%;
  1167. }
  1168. .col-lg-push-4 {
  1169. left: 33.33333333333333%;
  1170. }
  1171. .col-lg-push-5 {
  1172. left: 41.66666666666667%;
  1173. }
  1174. .col-lg-push-6 {
  1175. left: 50%;
  1176. }
  1177. .col-lg-push-7 {
  1178. left: 58.333333333333336%;
  1179. }
  1180. .col-lg-push-8 {
  1181. left: 66.66666666666666%;
  1182. }
  1183. .col-lg-push-9 {
  1184. left: 75%;
  1185. }
  1186. .col-lg-push-10 {
  1187. left: 83.33333333333334%;
  1188. }
  1189. .col-lg-push-11 {
  1190. left: 91.66666666666666%;
  1191. }
  1192. .col-lg-pull-0 {
  1193. right: auto;
  1194. }
  1195. .col-lg-pull-1 {
  1196. right: 8.333333333333332%;
  1197. }
  1198. .col-lg-pull-2 {
  1199. right: 16.666666666666664%;
  1200. }
  1201. .col-lg-pull-3 {
  1202. right: 25%;
  1203. }
  1204. .col-lg-pull-4 {
  1205. right: 33.33333333333333%;
  1206. }
  1207. .col-lg-pull-5 {
  1208. right: 41.66666666666667%;
  1209. }
  1210. .col-lg-pull-6 {
  1211. right: 50%;
  1212. }
  1213. .col-lg-pull-7 {
  1214. right: 58.333333333333336%;
  1215. }
  1216. .col-lg-pull-8 {
  1217. right: 66.66666666666666%;
  1218. }
  1219. .col-lg-pull-9 {
  1220. right: 75%;
  1221. }
  1222. .col-lg-pull-10 {
  1223. right: 83.33333333333334%;
  1224. }
  1225. .col-lg-pull-11 {
  1226. right: 91.66666666666666%;
  1227. }
  1228. .col-lg-offset-0 {
  1229. margin-left: 0;
  1230. }
  1231. .col-lg-offset-1 {
  1232. margin-left: 8.333333333333332%;
  1233. }
  1234. .col-lg-offset-2 {
  1235. margin-left: 16.666666666666664%;
  1236. }
  1237. .col-lg-offset-3 {
  1238. margin-left: 25%;
  1239. }
  1240. .col-lg-offset-4 {
  1241. margin-left: 33.33333333333333%;
  1242. }
  1243. .col-lg-offset-5 {
  1244. margin-left: 41.66666666666667%;
  1245. }
  1246. .col-lg-offset-6 {
  1247. margin-left: 50%;
  1248. }
  1249. .col-lg-offset-7 {
  1250. margin-left: 58.333333333333336%;
  1251. }
  1252. .col-lg-offset-8 {
  1253. margin-left: 66.66666666666666%;
  1254. }
  1255. .col-lg-offset-9 {
  1256. margin-left: 75%;
  1257. }
  1258. .col-lg-offset-10 {
  1259. margin-left: 83.33333333333334%;
  1260. }
  1261. .col-lg-offset-11 {
  1262. margin-left: 91.66666666666666%;
  1263. }
  1264. }
  1265. table {
  1266. max-width: 100%;
  1267. background-color: transparent;
  1268. }
  1269. th {
  1270. text-align: left;
  1271. }
  1272. .table {
  1273. width: 100%;
  1274. margin-bottom: 20px;
  1275. }
  1276. .table thead > tr > th,
  1277. .table tbody > tr > th,
  1278. .table tfoot > tr > th,
  1279. .table thead > tr > td,
  1280. .table tbody > tr > td,
  1281. .table tfoot > tr > td {
  1282. padding: 8px;
  1283. line-height: 1.428571429;
  1284. vertical-align: top;
  1285. border-top: 1px solid #5c799c;
  1286. }
  1287. .table thead > tr > th {
  1288. vertical-align: bottom;
  1289. border-bottom: 2px solid #5c799c;
  1290. }
  1291. .table caption + thead tr:first-child th,
  1292. .table colgroup + thead tr:first-child th,
  1293. .table thead:first-child tr:first-child th,
  1294. .table caption + thead tr:first-child td,
  1295. .table colgroup + thead tr:first-child td,
  1296. .table thead:first-child tr:first-child td {
  1297. border-top: 0;
  1298. }
  1299. .table tbody + tbody {
  1300. border-top: 2px solid #5c799c;
  1301. }
  1302. .table .table {
  1303. background-color: #becfdc;
  1304. }
  1305. .table-condensed thead > tr > th,
  1306. .table-condensed tbody > tr > th,
  1307. .table-condensed tfoot > tr > th,
  1308. .table-condensed thead > tr > td,
  1309. .table-condensed tbody > tr > td,
  1310. .table-condensed tfoot > tr > td {
  1311. padding: 5px;
  1312. }
  1313. .table-bordered {
  1314. border: 1px solid #5c799c;
  1315. }
  1316. .table-bordered > thead > tr > th,
  1317. .table-bordered > tbody > tr > th,
  1318. .table-bordered > tfoot > tr > th,
  1319. .table-bordered > thead > tr > td,
  1320. .table-bordered > tbody > tr > td,
  1321. .table-bordered > tfoot > tr > td {
  1322. border: 1px solid #5c799c;
  1323. }
  1324. .table-bordered > thead > tr > th,
  1325. .table-bordered > thead > tr > td {
  1326. border-bottom-width: 2px;
  1327. }
  1328. .table-striped > tbody > tr:nth-child(odd) > td,
  1329. .table-striped > tbody > tr:nth-child(odd) > th {
  1330. background-color: #f9f9f9;
  1331. }
  1332. .table-hover > tbody > tr:hover > td,
  1333. .table-hover > tbody > tr:hover > th {
  1334. background-color: #f5f5f5;
  1335. }
  1336. table col[class*="col-"] {
  1337. float: none;
  1338. display: table-column;
  1339. }
  1340. table td[class*="col-"],
  1341. table th[class*="col-"] {
  1342. float: none;
  1343. display: table-cell;
  1344. }
  1345. .table > thead > tr > td.active,
  1346. .table > tbody > tr > td.active,
  1347. .table > tfoot > tr > td.active,
  1348. .table > thead > tr > th.active,
  1349. .table > tbody > tr > th.active,
  1350. .table > tfoot > tr > th.active,
  1351. .table > thead > tr.active > td,
  1352. .table > tbody > tr.active > td,
  1353. .table > tfoot > tr.active > td,
  1354. .table > thead > tr.active > th,
  1355. .table > tbody > tr.active > th,
  1356. .table > tfoot > tr.active > th {
  1357. background-color: #f5f5f5;
  1358. }
  1359. .table > thead > tr > td.success,
  1360. .table > tbody > tr > td.success,
  1361. .table > tfoot > tr > td.success,
  1362. .table > thead > tr > th.success,
  1363. .table > tbody > tr > th.success,
  1364. .table > tfoot > tr > th.success,
  1365. .table > thead > tr.success > td,
  1366. .table > tbody > tr.success > td,
  1367. .table > tfoot > tr.success > td,
  1368. .table > thead > tr.success > th,
  1369. .table > tbody > tr.success > th,
  1370. .table > tfoot > tr.success > th {
  1371. background-color: #dff0d8;
  1372. border-color: #d6e9c6;
  1373. }
  1374. .table-hover > tbody > tr > td.success:hover,
  1375. .table-hover > tbody > tr > th.success:hover,
  1376. .table-hover > tbody > tr.success:hover > td {
  1377. background-color: #d0e9c6;
  1378. border-color: #c9e2b3;
  1379. }
  1380. .table > thead > tr > td.danger,
  1381. .table > tbody > tr > td.danger,
  1382. .table > tfoot > tr > td.danger,
  1383. .table > thead > tr > th.danger,
  1384. .table > tbody > tr > th.danger,
  1385. .table > tfoot > tr > th.danger,
  1386. .table > thead > tr.danger > td,
  1387. .table > tbody > tr.danger > td,
  1388. .table > tfoot > tr.danger > td,
  1389. .table > thead > tr.danger > th,
  1390. .table > tbody > tr.danger > th,
  1391. .table > tfoot > tr.danger > th {
  1392. background-color: #f2dede;
  1393. border-color: #eed3d7;
  1394. }
  1395. .table-hover > tbody > tr > td.danger:hover,
  1396. .table-hover > tbody > tr > th.danger:hover,
  1397. .table-hover > tbody > tr.danger:hover > td {
  1398. background-color: #ebcccc;
  1399. border-color: #e6c1c7;
  1400. }
  1401. .table > thead > tr > td.warning,
  1402. .table > tbody > tr > td.warning,
  1403. .table > tfoot > tr > td.warning,
  1404. .table > thead > tr > th.warning,
  1405. .table > tbody > tr > th.warning,
  1406. .table > tfoot > tr > th.warning,
  1407. .table > thead > tr.warning > td,
  1408. .table > tbody > tr.warning > td,
  1409. .table > tfoot > tr.warning > td,
  1410. .table > thead > tr.warning > th,
  1411. .table > tbody > tr.warning > th,
  1412. .table > tfoot > tr.warning > th {
  1413. background-color: #fcf8e3;
  1414. border-color: #fbeed5;
  1415. }
  1416. .table-hover > tbody > tr > td.warning:hover,
  1417. .table-hover > tbody > tr > th.warning:hover,
  1418. .table-hover > tbody > tr.warning:hover > td {
  1419. background-color: #faf2cc;
  1420. border-color: #f8e5be;
  1421. }
  1422. @media (max-width: 768px) {
  1423. .table-responsive {
  1424. width: 100%;
  1425. margin-bottom: 15px;
  1426. overflow-y: hidden;
  1427. overflow-x: scroll;
  1428. border: 1px solid #5c799c;
  1429. }
  1430. .table-responsive > .table {
  1431. margin-bottom: 0;
  1432. background-color: #fff;
  1433. }
  1434. .table-responsive > .table > thead > tr > th,
  1435. .table-responsive > .table > tbody > tr > th,
  1436. .table-responsive > .table > tfoot > tr > th,
  1437. .table-responsive > .table > thead > tr > td,
  1438. .table-responsive > .table > tbody > tr > td,
  1439. .table-responsive > .table > tfoot > tr > td {
  1440. white-space: nowrap;
  1441. }
  1442. .table-responsive > .table-bordered {
  1443. border: 0;
  1444. }
  1445. .table-responsive > .table-bordered > thead > tr > th:first-child,
  1446. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  1447. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  1448. .table-responsive > .table-bordered > thead > tr > td:first-child,
  1449. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  1450. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  1451. border-left: 0;
  1452. }
  1453. .table-responsive > .table-bordered > thead > tr > th:last-child,
  1454. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  1455. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  1456. .table-responsive > .table-bordered > thead > tr > td:last-child,
  1457. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  1458. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  1459. border-right: 0;
  1460. }
  1461. .table-responsive > .table-bordered > thead > tr:last-child > th,
  1462. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  1463. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  1464. .table-responsive > .table-bordered > thead > tr:last-child > td,
  1465. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  1466. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  1467. border-bottom: 0;
  1468. }
  1469. }
  1470. fieldset {
  1471. padding: 0;
  1472. margin: 0;
  1473. border: 0;
  1474. }
  1475. legend {
  1476. display: block;
  1477. width: 100%;
  1478. padding: 0;
  1479. margin-bottom: 20px;
  1480. font-size: 21px;
  1481. line-height: inherit;
  1482. color: #5c799c;
  1483. border: 0;
  1484. border-bottom: 1px solid #e5e5e5;
  1485. }
  1486. label {
  1487. display: inline-block;
  1488. margin-bottom: 5px;
  1489. font-weight: bold;
  1490. }
  1491. input[type="search"] {
  1492. -webkit-box-sizing: border-box;
  1493. -moz-box-sizing: border-box;
  1494. box-sizing: border-box;
  1495. }
  1496. input[type="radio"],
  1497. input[type="checkbox"] {
  1498. margin: 4px 0 0;
  1499. margin-top: 1px \9;
  1500. /* IE8-9 */
  1501. line-height: normal;
  1502. }
  1503. input[type="file"] {
  1504. display: block;
  1505. }
  1506. select[multiple],
  1507. select[size] {
  1508. height: auto;
  1509. }
  1510. select optgroup {
  1511. font-size: inherit;
  1512. font-style: inherit;
  1513. font-family: inherit;
  1514. }
  1515. input[type="file"]:focus,
  1516. input[type="radio"]:focus,
  1517. input[type="checkbox"]:focus {
  1518. outline: thin dotted #333;
  1519. outline: 5px auto -webkit-focus-ring-color;
  1520. outline-offset: -2px;
  1521. }
  1522. input[type="number"]::-webkit-outer-spin-button,
  1523. input[type="number"]::-webkit-inner-spin-button {
  1524. height: auto;
  1525. }
  1526. .form-control:-moz-placeholder {
  1527. color: #8aa2b6;
  1528. }
  1529. .form-control::-moz-placeholder {
  1530. color: #8aa2b6;
  1531. }
  1532. .form-control:-ms-input-placeholder {
  1533. color: #8aa2b6;
  1534. }
  1535. .form-control::-webkit-input-placeholder {
  1536. color: #8aa2b6;
  1537. }
  1538. .form-control {
  1539. display: block;
  1540. width: 100%;
  1541. height: 34px;
  1542. padding: 6px 12px;
  1543. font-size: 14px;
  1544. line-height: 1.428571429;
  1545. color: #78a6c8;
  1546. vertical-align: middle;
  1547. background-color: #ffffff;
  1548. border: 1px solid #cccccc;
  1549. border-radius: 4px;
  1550. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1551. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1552. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  1553. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  1554. }
  1555. .form-control:focus {
  1556. border-color: #66afe9;
  1557. outline: 0;
  1558. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  1559. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  1560. }
  1561. .form-control[disabled],
  1562. .form-control[readonly],
  1563. fieldset[disabled] .form-control {
  1564. cursor: not-allowed;
  1565. background-color: #96b0c7;
  1566. }
  1567. textarea.form-control {
  1568. height: auto;
  1569. }
  1570. .form-group {
  1571. margin-bottom: 15px;
  1572. }
  1573. .radio,
  1574. .checkbox {
  1575. display: block;
  1576. min-height: 20px;
  1577. margin-top: 10px;
  1578. margin-bottom: 10px;
  1579. padding-left: 20px;
  1580. vertical-align: middle;
  1581. }
  1582. .radio label,
  1583. .checkbox label {
  1584. display: inline;
  1585. margin-bottom: 0;
  1586. font-weight: normal;
  1587. cursor: pointer;
  1588. }
  1589. .radio input[type="radio"],
  1590. .radio-inline input[type="radio"],
  1591. .checkbox input[type="checkbox"],
  1592. .checkbox-inline input[type="checkbox"] {
  1593. float: left;
  1594. margin-left: -20px;
  1595. }
  1596. .radio + .radio,
  1597. .checkbox + .checkbox {
  1598. margin-top: -5px;
  1599. }
  1600. .radio-inline,
  1601. .checkbox-inline {
  1602. display: inline-block;
  1603. padding-left: 20px;
  1604. margin-bottom: 0;
  1605. vertical-align: middle;
  1606. font-weight: normal;
  1607. cursor: pointer;
  1608. }
  1609. .radio-inline + .radio-inline,
  1610. .checkbox-inline + .checkbox-inline {
  1611. margin-top: 0;
  1612. margin-left: 10px;
  1613. }
  1614. input[type="radio"][disabled],
  1615. input[type="checkbox"][disabled],
  1616. .radio[disabled],
  1617. .radio-inline[disabled],
  1618. .checkbox[disabled],
  1619. .checkbox-inline[disabled],
  1620. fieldset[disabled] input[type="radio"],
  1621. fieldset[disabled] input[type="checkbox"],
  1622. fieldset[disabled] .radio,
  1623. fieldset[disabled] .radio-inline,
  1624. fieldset[disabled] .checkbox,
  1625. fieldset[disabled] .checkbox-inline {
  1626. cursor: not-allowed;
  1627. }
  1628. .input-sm {
  1629. height: 30px;
  1630. padding: 5px 10px;
  1631. font-size: 12px;
  1632. line-height: 1.5;
  1633. border-radius: 3px;
  1634. }
  1635. select.input-sm {
  1636. height: 30px;
  1637. line-height: 30px;
  1638. }
  1639. textarea.input-sm {
  1640. height: auto;
  1641. }
  1642. .input-lg {
  1643. height: 45px;
  1644. padding: 10px 16px;
  1645. font-size: 18px;
  1646. line-height: 1.33;
  1647. border-radius: 6px;
  1648. }
  1649. select.input-lg {
  1650. height: 45px;
  1651. line-height: 45px;
  1652. }
  1653. textarea.input-lg {
  1654. height: auto;
  1655. }
  1656. .has-warning .help-block,
  1657. .has-warning .control-label {
  1658. color: #c09853;
  1659. }
  1660. .has-warning .form-control {
  1661. border-color: #c09853;
  1662. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1663. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1664. }
  1665. .has-warning .form-control:focus {
  1666. border-color: #a47e3c;
  1667. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  1668. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  1669. }
  1670. .has-warning .input-group-addon {
  1671. color: #c09853;
  1672. border-color: #c09853;
  1673. background-color: #fcf8e3;
  1674. }
  1675. .has-error .help-block,
  1676. .has-error .control-label {
  1677. color: #b94a48;
  1678. }
  1679. .has-error .form-control {
  1680. border-color: #b94a48;
  1681. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1682. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1683. }
  1684. .has-error .form-control:focus {
  1685. border-color: #953b39;
  1686. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  1687. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  1688. }
  1689. .has-error .input-group-addon {
  1690. color: #b94a48;
  1691. border-color: #b94a48;
  1692. background-color: #f2dede;
  1693. }
  1694. .has-success .help-block,
  1695. .has-success .control-label {
  1696. color: #468847;
  1697. }
  1698. .has-success .form-control {
  1699. border-color: #468847;
  1700. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1701. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1702. }
  1703. .has-success .form-control:focus {
  1704. border-color: #356635;
  1705. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  1706. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  1707. }
  1708. .has-success .input-group-addon {
  1709. color: #468847;
  1710. border-color: #468847;
  1711. background-color: #dff0d8;
  1712. }
  1713. .form-control-static {
  1714. margin-bottom: 0;
  1715. padding-top: 7px;
  1716. }
  1717. .help-block {
  1718. display: block;
  1719. margin-top: 5px;
  1720. margin-bottom: 10px;
  1721. color: #aabacd;
  1722. }
  1723. @media (min-width: 768px) {
  1724. .form-inline .form-group {
  1725. display: inline-block;
  1726. margin-bottom: 0;
  1727. vertical-align: middle;
  1728. }
  1729. .form-inline .form-control {
  1730. display: inline-block;
  1731. }
  1732. .form-inline .radio,
  1733. .form-inline .checkbox {
  1734. display: inline-block;
  1735. margin-top: 0;
  1736. margin-bottom: 0;
  1737. padding-left: 0;
  1738. }
  1739. .form-inline .radio input[type="radio"],
  1740. .form-inline .checkbox input[type="checkbox"] {
  1741. float: none;
  1742. margin-left: 0;
  1743. }
  1744. }
  1745. .form-horizontal .control-label,
  1746. .form-horizontal .radio,
  1747. .form-horizontal .checkbox,
  1748. .form-horizontal .radio-inline,
  1749. .form-horizontal .checkbox-inline {
  1750. margin-top: 0;
  1751. margin-bottom: 0;
  1752. padding-top: 7px;
  1753. }
  1754. .form-horizontal .form-group {
  1755. margin-left: -15px;
  1756. margin-right: -15px;
  1757. }
  1758. .form-horizontal .form-group:before,
  1759. .form-horizontal .form-group:after {
  1760. content: " ";
  1761. /* 1 */
  1762. display: table;
  1763. /* 2 */
  1764. }
  1765. .form-horizontal .form-group:after {
  1766. clear: both;
  1767. }
  1768. .form-horizontal .form-group:before,
  1769. .form-horizontal .form-group:after {
  1770. content: " ";
  1771. /* 1 */
  1772. display: table;
  1773. /* 2 */
  1774. }
  1775. .form-horizontal .form-group:after {
  1776. clear: both;
  1777. }
  1778. @media (min-width: 768px) {
  1779. .form-horizontal .control-label {
  1780. text-align: right;
  1781. }
  1782. }
  1783. .btn {
  1784. display: inline-block;
  1785. padding: 6px 12px;
  1786. margin-bottom: 0;
  1787. font-size: 14px;
  1788. font-weight: normal;
  1789. text-align: center;
  1790. vertical-align: middle;
  1791. cursor: pointer;
  1792. border: 1px solid transparent;
  1793. border-radius: 4px;
  1794. white-space: nowrap;
  1795. -webkit-user-select: none;
  1796. -moz-user-select: none;
  1797. -ms-user-select: none;
  1798. -o-user-select: none;
  1799. user-select: none;
  1800. }
  1801. .btn:focus {
  1802. outline: thin dotted #333;
  1803. outline: 5px auto -webkit-focus-ring-color;
  1804. outline-offset: -2px;
  1805. }
  1806. .btn:hover,
  1807. .btn:focus {
  1808. color: #333333;
  1809. text-decoration: none;
  1810. }
  1811. .btn:active,
  1812. .btn.active {
  1813. outline: 0;
  1814. background-image: none;
  1815. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1816. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1817. }
  1818. .btn.disabled,
  1819. .btn[disabled],
  1820. fieldset[disabled] .btn {
  1821. cursor: not-allowed;
  1822. pointer-events: none;
  1823. opacity: 0.65;
  1824. filter: alpha(opacity=65);
  1825. -webkit-box-shadow: none;
  1826. box-shadow: none;
  1827. }
  1828. .btn-default {
  1829. color: #333333;
  1830. background-color: #ffffff;
  1831. border-color: #cccccc;
  1832. }
  1833. .btn-default:hover,
  1834. .btn-default:focus,
  1835. .btn-default:active,
  1836. .btn-default.active,
  1837. .open .dropdown-toggle.btn-default {
  1838. color: #333333;
  1839. background-color: #ebebeb;
  1840. border-color: #adadad;
  1841. }
  1842. .btn-default:active,
  1843. .btn-default.active,
  1844. .open .dropdown-toggle.btn-default {
  1845. background-image: none;
  1846. }
  1847. .btn-default.disabled,
  1848. .btn-default[disabled],
  1849. fieldset[disabled] .btn-default,
  1850. .btn-default.disabled:hover,
  1851. .btn-default[disabled]:hover,
  1852. fieldset[disabled] .btn-default:hover,
  1853. .btn-default.disabled:focus,
  1854. .btn-default[disabled]:focus,
  1855. fieldset[disabled] .btn-default:focus,
  1856. .btn-default.disabled:active,
  1857. .btn-default[disabled]:active,
  1858. fieldset[disabled] .btn-default:active,
  1859. .btn-default.disabled.active,
  1860. .btn-default[disabled].active,
  1861. fieldset[disabled] .btn-default.active {
  1862. background-color: #ffffff;
  1863. border-color: #cccccc;
  1864. }
  1865. .btn-primary {
  1866. color: #ffffff;
  1867. background-color: #728eac;
  1868. border-color: #6281a3;
  1869. }
  1870. .btn-primary:hover,
  1871. .btn-primary:focus,
  1872. .btn-primary:active,
  1873. .btn-primary.active,
  1874. .open .dropdown-toggle.btn-primary {
  1875. color: #ffffff;
  1876. background-color: #5b7a9a;
  1877. border-color: #4a637d;
  1878. }
  1879. .btn-primary:active,
  1880. .btn-primary.active,
  1881. .open .dropdown-toggle.btn-primary {
  1882. background-image: none;
  1883. }
  1884. .btn-primary.disabled,
  1885. .btn-primary[disabled],
  1886. fieldset[disabled] .btn-primary,
  1887. .btn-primary.disabled:hover,
  1888. .btn-primary[disabled]:hover,
  1889. fieldset[disabled] .btn-primary:hover,
  1890. .btn-primary.disabled:focus,
  1891. .btn-primary[disabled]:focus,
  1892. fieldset[disabled] .btn-primary:focus,
  1893. .btn-primary.disabled:active,
  1894. .btn-primary[disabled]:active,
  1895. fieldset[disabled] .btn-primary:active,
  1896. .btn-primary.disabled.active,
  1897. .btn-primary[disabled].active,
  1898. fieldset[disabled] .btn-primary.active {
  1899. background-color: #728eac;
  1900. border-color: #6281a3;
  1901. }
  1902. .btn-warning {
  1903. color: #ffffff;
  1904. background-color: #f0ad4e;
  1905. border-color: #eea236;
  1906. }
  1907. .btn-warning:hover,
  1908. .btn-warning:focus,
  1909. .btn-warning:active,
  1910. .btn-warning.active,
  1911. .open .dropdown-toggle.btn-warning {
  1912. color: #ffffff;
  1913. background-color: #ed9c28;
  1914. border-color: #d58512;
  1915. }
  1916. .btn-warning:active,
  1917. .btn-warning.active,
  1918. .open .dropdown-toggle.btn-warning {
  1919. background-image: none;
  1920. }
  1921. .btn-warning.disabled,
  1922. .btn-warning[disabled],
  1923. fieldset[disabled] .btn-warning,
  1924. .btn-warning.disabled:hover,
  1925. .btn-warning[disabled]:hover,
  1926. fieldset[disabled] .btn-warning:hover,
  1927. .btn-warning.disabled:focus,
  1928. .btn-warning[disabled]:focus,
  1929. fieldset[disabled] .btn-warning:focus,
  1930. .btn-warning.disabled:active,
  1931. .btn-warning[disabled]:active,
  1932. fieldset[disabled] .btn-warning:active,
  1933. .btn-warning.disabled.active,
  1934. .btn-warning[disabled].active,
  1935. fieldset[disabled] .btn-warning.active {
  1936. background-color: #f0ad4e;
  1937. border-color: #eea236;
  1938. }
  1939. .btn-danger {
  1940. color: #ffffff;
  1941. background-color: #d9534f;
  1942. border-color: #d43f3a;
  1943. }
  1944. .btn-danger:hover,
  1945. .btn-danger:focus,
  1946. .btn-danger:active,
  1947. .btn-danger.active,
  1948. .open .dropdown-toggle.btn-danger {
  1949. color: #ffffff;
  1950. background-color: #d2322d;
  1951. border-color: #ac2925;
  1952. }
  1953. .btn-danger:active,
  1954. .btn-danger.active,
  1955. .open .dropdown-toggle.btn-danger {
  1956. background-image: none;
  1957. }
  1958. .btn-danger.disabled,
  1959. .btn-danger[disabled],
  1960. fieldset[disabled] .btn-danger,
  1961. .btn-danger.disabled:hover,
  1962. .btn-danger[disabled]:hover,
  1963. fieldset[disabled] .btn-danger:hover,
  1964. .btn-danger.disabled:focus,
  1965. .btn-danger[disabled]:focus,
  1966. fieldset[disabled] .btn-danger:focus,
  1967. .btn-danger.disabled:active,
  1968. .btn-danger[disabled]:active,
  1969. fieldset[disabled] .btn-danger:active,
  1970. .btn-danger.disabled.active,
  1971. .btn-danger[disabled].active,
  1972. fieldset[disabled] .btn-danger.active {
  1973. background-color: #d9534f;
  1974. border-color: #d43f3a;
  1975. }
  1976. .btn-success {
  1977. color: #ffffff;
  1978. background-color: #5cb85c;
  1979. border-color: #4cae4c;
  1980. }
  1981. .btn-success:hover,
  1982. .btn-success:focus,
  1983. .btn-success:active,
  1984. .btn-success.active,
  1985. .open .dropdown-toggle.btn-success {
  1986. color: #ffffff;
  1987. background-color: #47a447;
  1988. border-color: #398439;
  1989. }
  1990. .btn-success:active,
  1991. .btn-success.active,
  1992. .open .dropdown-toggle.btn-success {
  1993. background-image: none;
  1994. }
  1995. .btn-success.disabled,
  1996. .btn-success[disabled],
  1997. fieldset[disabled] .btn-success,
  1998. .btn-success.disabled:hover,
  1999. .btn-success[disabled]:hover,
  2000. fieldset[disabled] .btn-success:hover,
  2001. .btn-success.disabled:focus,
  2002. .btn-success[disabled]:focus,
  2003. fieldset[disabled] .btn-success:focus,
  2004. .btn-success.disabled:active,
  2005. .btn-success[disabled]:active,
  2006. fieldset[disabled] .btn-success:active,
  2007. .btn-success.disabled.active,
  2008. .btn-success[disabled].active,
  2009. fieldset[disabled] .btn-success.active {
  2010. background-color: #5cb85c;
  2011. border-color: #4cae4c;
  2012. }
  2013. .btn-info {
  2014. color: #ffffff;
  2015. background-color: #5bc0de;
  2016. border-color: #46b8da;
  2017. }
  2018. .btn-info:hover,
  2019. .btn-info:focus,
  2020. .btn-info:active,
  2021. .btn-info.active,
  2022. .open .dropdown-toggle.btn-info {
  2023. color: #ffffff;
  2024. background-color: #39b3d7;
  2025. border-color: #269abc;
  2026. }
  2027. .btn-info:active,
  2028. .btn-info.active,
  2029. .open .dropdown-toggle.btn-info {
  2030. background-image: none;
  2031. }
  2032. .btn-info.disabled,
  2033. .btn-info[disabled],
  2034. fieldset[disabled] .btn-info,
  2035. .btn-info.disabled:hover,
  2036. .btn-info[disabled]:hover,
  2037. fieldset[disabled] .btn-info:hover,
  2038. .btn-info.disabled:focus,
  2039. .btn-info[disabled]:focus,
  2040. fieldset[disabled] .btn-info:focus,
  2041. .btn-info.disabled:active,
  2042. .btn-info[disabled]:active,
  2043. fieldset[disabled] .btn-info:active,
  2044. .btn-info.disabled.active,
  2045. .btn-info[disabled].active,
  2046. fieldset[disabled] .btn-info.active {
  2047. background-color: #5bc0de;
  2048. border-color: #46b8da;
  2049. }
  2050. .btn-link {
  2051. color: #728eac;
  2052. font-weight: normal;
  2053. cursor: pointer;
  2054. border-radius: 0;
  2055. }
  2056. .btn-link,
  2057. .btn-link:active,
  2058. .btn-link[disabled],
  2059. fieldset[disabled] .btn-link {
  2060. background-color: transparent;
  2061. -webkit-box-shadow: none;
  2062. box-shadow: none;
  2063. }
  2064. .btn-link,
  2065. .btn-link:hover,
  2066. .btn-link:focus,
  2067. .btn-link:active {
  2068. border-color: transparent;
  2069. }
  2070. .btn-link:hover,
  2071. .btn-link:focus {
  2072. color: #4e6884;
  2073. text-decoration: underline;
  2074. background-color: transparent;
  2075. }
  2076. .btn-link[disabled]:hover,
  2077. fieldset[disabled] .btn-link:hover,
  2078. .btn-link[disabled]:focus,
  2079. fieldset[disabled] .btn-link:focus {
  2080. color: #8aa2b6;
  2081. text-decoration: none;
  2082. }
  2083. .btn-lg {
  2084. padding: 10px 16px;
  2085. font-size: 18px;
  2086. line-height: 1.33;
  2087. border-radius: 6px;
  2088. }
  2089. .btn-sm,
  2090. .btn-xs {
  2091. padding: 5px 10px;
  2092. font-size: 12px;
  2093. line-height: 1.5;
  2094. border-radius: 3px;
  2095. }
  2096. .btn-xs {
  2097. padding: 1px 5px;
  2098. }
  2099. .btn-block {
  2100. display: block;
  2101. width: 100%;
  2102. padding-left: 0;
  2103. padding-right: 0;
  2104. }
  2105. .btn-block + .btn-block {
  2106. margin-top: 5px;
  2107. }
  2108. input[type="submit"].btn-block,
  2109. input[type="reset"].btn-block,
  2110. input[type="button"].btn-block {
  2111. width: 100%;
  2112. }
  2113. .fade {
  2114. opacity: 0;
  2115. -webkit-transition: opacity 0.15s linear;
  2116. transition: opacity 0.15s linear;
  2117. }
  2118. .fade.in {
  2119. opacity: 1;
  2120. }
  2121. .collapse {
  2122. display: none;
  2123. }
  2124. .collapse.in {
  2125. display: block;
  2126. }
  2127. .collapsing {
  2128. position: relative;
  2129. height: 0;
  2130. overflow: hidden;
  2131. -webkit-transition: height 0.35s ease;
  2132. transition: height 0.35s ease;
  2133. }
  2134. @font-face {
  2135. font-family: 'Glyphicons Halflings';
  2136. }
  2137. .glyphicon {
  2138. position: relative;
  2139. top: 1px;
  2140. display: inline-block;
  2141. font-family: 'Glyphicons Halflings';
  2142. font-style: normal;
  2143. font-weight: normal;
  2144. line-height: 1;
  2145. -webkit-font-smoothing: antialiased;
  2146. }
  2147. .glyphicon-asterisk:before {
  2148. content: "\2a";
  2149. }
  2150. .glyphicon-plus:before {
  2151. content: "\2b";
  2152. }
  2153. .glyphicon-euro:before {
  2154. content: "\20ac";
  2155. }
  2156. .glyphicon-minus:before {
  2157. content: "\2212";
  2158. }
  2159. .glyphicon-cloud:before {
  2160. content: "\2601";
  2161. }
  2162. .glyphicon-envelope:before {
  2163. content: "\2709";
  2164. }
  2165. .glyphicon-pencil:before {
  2166. content: "\270f";
  2167. }
  2168. .glyphicon-glass:before {
  2169. content: "\e001";
  2170. }
  2171. .glyphicon-music:before {
  2172. content: "\e002";
  2173. }
  2174. .glyphicon-search:before {
  2175. content: "\e003";
  2176. }
  2177. .glyphicon-heart:before {
  2178. content: "\e005";
  2179. }
  2180. .glyphicon-star:before {
  2181. content: "\e006";
  2182. }
  2183. .glyphicon-star-empty:before {
  2184. content: "\e007";
  2185. }
  2186. .glyphicon-user:before {
  2187. content: "\e008";
  2188. }
  2189. .glyphicon-film:before {
  2190. content: "\e009";
  2191. }
  2192. .glyphicon-th-large:before {
  2193. content: "\e010";
  2194. }
  2195. .glyphicon-th:before {
  2196. content: "\e011";
  2197. }
  2198. .glyphicon-th-list:before {
  2199. content: "\e012";
  2200. }
  2201. .glyphicon-ok:before {
  2202. content: "\e013";
  2203. }
  2204. .glyphicon-remove:before {
  2205. content: "\e014";
  2206. }
  2207. .glyphicon-zoom-in:before {
  2208. content: "\e015";
  2209. }
  2210. .glyphicon-zoom-out:before {
  2211. content: "\e016";
  2212. }
  2213. .glyphicon-off:before {
  2214. content: "\e017";
  2215. }
  2216. .glyphicon-signal:before {
  2217. content: "\e018";
  2218. }
  2219. .glyphicon-cog:before {
  2220. content: "\e019";
  2221. }
  2222. .glyphicon-trash:before {
  2223. content: "\e020";
  2224. }
  2225. .glyphicon-home:before {
  2226. content: "\e021";
  2227. }
  2228. .glyphicon-file:before {
  2229. content: "\e022";
  2230. }
  2231. .glyphicon-time:before {
  2232. content: "\e023";
  2233. }
  2234. .glyphicon-road:before {
  2235. content: "\e024";
  2236. }
  2237. .glyphicon-download-alt:before {
  2238. content: "\e025";
  2239. }
  2240. .glyphicon-download:before {
  2241. content: "\e026";
  2242. }
  2243. .glyphicon-upload:before {
  2244. content: "\e027";
  2245. }
  2246. .glyphicon-inbox:before {
  2247. content: "\e028";
  2248. }
  2249. .glyphicon-play-circle:before {
  2250. content: "\e029";
  2251. }
  2252. .glyphicon-repeat:before {
  2253. content: "\e030";
  2254. }
  2255. .glyphicon-refresh:before {
  2256. content: "\e031";
  2257. }
  2258. .glyphicon-list-alt:before {
  2259. content: "\e032";
  2260. }
  2261. .glyphicon-flag:before {
  2262. content: "\e034";
  2263. }
  2264. .glyphicon-headphones:before {
  2265. content: "\e035";
  2266. }
  2267. .glyphicon-volume-off:before {
  2268. content: "\e036";
  2269. }
  2270. .glyphicon-volume-down:before {
  2271. content: "\e037";
  2272. }
  2273. .glyphicon-volume-up:before {
  2274. content: "\e038";
  2275. }
  2276. .glyphicon-qrcode:before {
  2277. content: "\e039";
  2278. }
  2279. .glyphicon-barcode:before {
  2280. content: "\e040";
  2281. }
  2282. .glyphicon-tag:before {
  2283. content: "\e041";
  2284. }
  2285. .glyphicon-tags:before {
  2286. content: "\e042";
  2287. }
  2288. .glyphicon-book:before {
  2289. content: "\e043";
  2290. }
  2291. .glyphicon-print:before {
  2292. content: "\e045";
  2293. }
  2294. .glyphicon-font:before {
  2295. content: "\e047";
  2296. }
  2297. .glyphicon-bold:before {
  2298. content: "\e048";
  2299. }
  2300. .glyphicon-italic:before {
  2301. content: "\e049";
  2302. }
  2303. .glyphicon-text-height:before {
  2304. content: "\e050";
  2305. }
  2306. .glyphicon-text-width:before {
  2307. content: "\e051";
  2308. }
  2309. .glyphicon-align-left:before {
  2310. content: "\e052";
  2311. }
  2312. .glyphicon-align-center:before {
  2313. content: "\e053";
  2314. }
  2315. .glyphicon-align-right:before {
  2316. content: "\e054";
  2317. }
  2318. .glyphicon-align-justify:before {
  2319. content: "\e055";
  2320. }
  2321. .glyphicon-list:before {
  2322. content: "\e056";
  2323. }
  2324. .glyphicon-indent-left:before {
  2325. content: "\e057";
  2326. }
  2327. .glyphicon-indent-right:before {
  2328. content: "\e058";
  2329. }
  2330. .glyphicon-facetime-video:before {
  2331. content: "\e059";
  2332. }
  2333. .glyphicon-picture:before {
  2334. content: "\e060";
  2335. }
  2336. .glyphicon-map-marker:before {
  2337. content: "\e062";
  2338. }
  2339. .glyphicon-adjust:before {
  2340. content: "\e063";
  2341. }
  2342. .glyphicon-tint:before {
  2343. content: "\e064";
  2344. }
  2345. .glyphicon-edit:before {
  2346. content: "\e065";
  2347. }
  2348. .glyphicon-share:before {
  2349. content: "\e066";
  2350. }
  2351. .glyphicon-check:before {
  2352. content: "\e067";
  2353. }
  2354. .glyphicon-move:before {
  2355. content: "\e068";
  2356. }
  2357. .glyphicon-step-backward:before {
  2358. content: "\e069";
  2359. }
  2360. .glyphicon-fast-backward:before {
  2361. content: "\e070";
  2362. }
  2363. .glyphicon-backward:before {
  2364. content: "\e071";
  2365. }
  2366. .glyphicon-play:before {
  2367. content: "\e072";
  2368. }
  2369. .glyphicon-pause:before {
  2370. content: "\e073";
  2371. }
  2372. .glyphicon-stop:before {
  2373. content: "\e074";
  2374. }
  2375. .glyphicon-forward:before {
  2376. content: "\e075";
  2377. }
  2378. .glyphicon-fast-forward:before {
  2379. content: "\e076";
  2380. }
  2381. .glyphicon-step-forward:before {
  2382. content: "\e077";
  2383. }
  2384. .glyphicon-eject:before {
  2385. content: "\e078";
  2386. }
  2387. .glyphicon-chevron-left:before {
  2388. content: "\e079";
  2389. }
  2390. .glyphicon-chevron-right:before {
  2391. content: "\e080";
  2392. }
  2393. .glyphicon-plus-sign:before {
  2394. content: "\e081";
  2395. }
  2396. .glyphicon-minus-sign:before {
  2397. content: "\e082";
  2398. }
  2399. .glyphicon-remove-sign:before {
  2400. content: "\e083";
  2401. }
  2402. .glyphicon-ok-sign:before {
  2403. content: "\e084";
  2404. }
  2405. .glyphicon-question-sign:before {
  2406. content: "\e085";
  2407. }
  2408. .glyphicon-info-sign:before {
  2409. content: "\e086";
  2410. }
  2411. .glyphicon-screenshot:before {
  2412. content: "\e087";
  2413. }
  2414. .glyphicon-remove-circle:before {
  2415. content: "\e088";
  2416. }
  2417. .glyphicon-ok-circle:before {
  2418. content: "\e089";
  2419. }
  2420. .glyphicon-ban-circle:before {
  2421. content: "\e090";
  2422. }
  2423. .glyphicon-arrow-left:before {
  2424. content: "\e091";
  2425. }
  2426. .glyphicon-arrow-right:before {
  2427. content: "\e092";
  2428. }
  2429. .glyphicon-arrow-up:before {
  2430. content: "\e093";
  2431. }
  2432. .glyphicon-arrow-down:before {
  2433. content: "\e094";
  2434. }
  2435. .glyphicon-share-alt:before {
  2436. content: "\e095";
  2437. }
  2438. .glyphicon-resize-full:before {
  2439. content: "\e096";
  2440. }
  2441. .glyphicon-resize-small:before {
  2442. content: "\e097";
  2443. }
  2444. .glyphicon-exclamation-sign:before {
  2445. content: "\e101";
  2446. }
  2447. .glyphicon-gift:before {
  2448. content: "\e102";
  2449. }
  2450. .glyphicon-leaf:before {
  2451. content: "\e103";
  2452. }
  2453. .glyphicon-eye-open:before {
  2454. content: "\e105";
  2455. }
  2456. .glyphicon-eye-close:before {
  2457. content: "\e106";
  2458. }
  2459. .glyphicon-warning-sign:before {
  2460. content: "\e107";
  2461. }
  2462. .glyphicon-plane:before {
  2463. content: "\e108";
  2464. }
  2465. .glyphicon-random:before {
  2466. content: "\e110";
  2467. }
  2468. .glyphicon-comment:before {
  2469. content: "\e111";
  2470. }
  2471. .glyphicon-magnet:before {
  2472. content: "\e112";
  2473. }
  2474. .glyphicon-chevron-up:before {
  2475. content: "\e113";
  2476. }
  2477. .glyphicon-chevron-down:before {
  2478. content: "\e114";
  2479. }
  2480. .glyphicon-retweet:before {
  2481. content: "\e115";
  2482. }
  2483. .glyphicon-shopping-cart:before {
  2484. content: "\e116";
  2485. }
  2486. .glyphicon-folder-close:before {
  2487. content: "\e117";
  2488. }
  2489. .glyphicon-folder-open:before {
  2490. content: "\e118";
  2491. }
  2492. .glyphicon-resize-vertical:before {
  2493. content: "\e119";
  2494. }
  2495. .glyphicon-resize-horizontal:before {
  2496. content: "\e120";
  2497. }
  2498. .glyphicon-hdd:before {
  2499. content: "\e121";
  2500. }
  2501. .glyphicon-bullhorn:before {
  2502. content: "\e122";
  2503. }
  2504. .glyphicon-certificate:before {
  2505. content: "\e124";
  2506. }
  2507. .glyphicon-thumbs-up:before {
  2508. content: "\e125";
  2509. }
  2510. .glyphicon-thumbs-down:before {
  2511. content: "\e126";
  2512. }
  2513. .glyphicon-hand-right:before {
  2514. content: "\e127";
  2515. }
  2516. .glyphicon-hand-left:before {
  2517. content: "\e128";
  2518. }
  2519. .glyphicon-hand-up:before {
  2520. content: "\e129";
  2521. }
  2522. .glyphicon-hand-down:before {
  2523. content: "\e130";
  2524. }
  2525. .glyphicon-circle-arrow-right:before {
  2526. content: "\e131";
  2527. }
  2528. .glyphicon-circle-arrow-left:before {
  2529. content: "\e132";
  2530. }
  2531. .glyphicon-circle-arrow-up:before {
  2532. content: "\e133";
  2533. }
  2534. .glyphicon-circle-arrow-down:before {
  2535. content: "\e134";
  2536. }
  2537. .glyphicon-globe:before {
  2538. content: "\e135";
  2539. }
  2540. .glyphicon-tasks:before {
  2541. content: "\e137";
  2542. }
  2543. .glyphicon-filter:before {
  2544. content: "\e138";
  2545. }
  2546. .glyphicon-fullscreen:before {
  2547. content: "\e140";
  2548. }
  2549. .glyphicon-dashboard:before {
  2550. content: "\e141";
  2551. }
  2552. .glyphicon-heart-empty:before {
  2553. content: "\e143";
  2554. }
  2555. .glyphicon-link:before {
  2556. content: "\e144";
  2557. }
  2558. .glyphicon-phone:before {
  2559. content: "\e145";
  2560. }
  2561. .glyphicon-usd:before {
  2562. content: "\e148";
  2563. }
  2564. .glyphicon-gbp:before {
  2565. content: "\e149";
  2566. }
  2567. .glyphicon-sort:before {
  2568. content: "\e150";
  2569. }
  2570. .glyphicon-sort-by-alphabet:before {
  2571. content: "\e151";
  2572. }
  2573. .glyphicon-sort-by-alphabet-alt:before {
  2574. content: "\e152";
  2575. }
  2576. .glyphicon-sort-by-order:before {
  2577. content: "\e153";
  2578. }
  2579. .glyphicon-sort-by-order-alt:before {
  2580. content: "\e154";
  2581. }
  2582. .glyphicon-sort-by-attributes:before {
  2583. content: "\e155";
  2584. }
  2585. .glyphicon-sort-by-attributes-alt:before {
  2586. content: "\e156";
  2587. }
  2588. .glyphicon-unchecked:before {
  2589. content: "\e157";
  2590. }
  2591. .glyphicon-expand:before {
  2592. content: "\e158";
  2593. }
  2594. .glyphicon-collapse-down:before {
  2595. content: "\e159";
  2596. }
  2597. .glyphicon-collapse-up:before {
  2598. content: "\e160";
  2599. }
  2600. .glyphicon-log-in:before {
  2601. content: "\e161";
  2602. }
  2603. .glyphicon-flash:before {
  2604. content: "\e162";
  2605. }
  2606. .glyphicon-log-out:before {
  2607. content: "\e163";
  2608. }
  2609. .glyphicon-new-window:before {
  2610. content: "\e164";
  2611. }
  2612. .glyphicon-record:before {
  2613. content: "\e165";
  2614. }
  2615. .glyphicon-save:before {
  2616. content: "\e166";
  2617. }
  2618. .glyphicon-open:before {
  2619. content: "\e167";
  2620. }
  2621. .glyphicon-saved:before {
  2622. content: "\e168";
  2623. }
  2624. .glyphicon-import:before {
  2625. content: "\e169";
  2626. }
  2627. .glyphicon-export:before {
  2628. content: "\e170";
  2629. }
  2630. .glyphicon-send:before {
  2631. content: "\e171";
  2632. }
  2633. .glyphicon-floppy-disk:before {
  2634. content: "\e172";
  2635. }
  2636. .glyphicon-floppy-saved:before {
  2637. content: "\e173";
  2638. }
  2639. .glyphicon-floppy-remove:before {
  2640. content: "\e174";
  2641. }
  2642. .glyphicon-floppy-save:before {
  2643. content: "\e175";
  2644. }
  2645. .glyphicon-floppy-open:before {
  2646. content: "\e176";
  2647. }
  2648. .glyphicon-credit-card:before {
  2649. content: "\e177";
  2650. }
  2651. .glyphicon-transfer:before {
  2652. content: "\e178";
  2653. }
  2654. .glyphicon-cutlery:before {
  2655. content: "\e179";
  2656. }
  2657. .glyphicon-header:before {
  2658. content: "\e180";
  2659. }
  2660. .glyphicon-compressed:before {
  2661. content: "\e181";
  2662. }
  2663. .glyphicon-earphone:before {
  2664. content: "\e182";
  2665. }
  2666. .glyphicon-phone-alt:before {
  2667. content: "\e183";
  2668. }
  2669. .glyphicon-tower:before {
  2670. content: "\e184";
  2671. }
  2672. .glyphicon-stats:before {
  2673. content: "\e185";
  2674. }
  2675. .glyphicon-sd-video:before {
  2676. content: "\e186";
  2677. }
  2678. .glyphicon-hd-video:before {
  2679. content: "\e187";
  2680. }
  2681. .glyphicon-subtitles:before {
  2682. content: "\e188";
  2683. }
  2684. .glyphicon-sound-stereo:before {
  2685. content: "\e189";
  2686. }
  2687. .glyphicon-sound-dolby:before {
  2688. content: "\e190";
  2689. }
  2690. .glyphicon-sound-5-1:before {
  2691. content: "\e191";
  2692. }
  2693. .glyphicon-sound-6-1:before {
  2694. content: "\e192";
  2695. }
  2696. .glyphicon-sound-7-1:before {
  2697. content: "\e193";
  2698. }
  2699. .glyphicon-copyright-mark:before {
  2700. content: "\e194";
  2701. }
  2702. .glyphicon-registration-mark:before {
  2703. content: "\e195";
  2704. }
  2705. .glyphicon-cloud-download:before {
  2706. content: "\e197";
  2707. }
  2708. .glyphicon-cloud-upload:before {
  2709. content: "\e198";
  2710. }
  2711. .glyphicon-tree-conifer:before {
  2712. content: "\e199";
  2713. }
  2714. .glyphicon-tree-deciduous:before {
  2715. content: "\e200";
  2716. }
  2717. .glyphicon-briefcase:before {
  2718. content: "\1f4bc";
  2719. }
  2720. .glyphicon-calendar:before {
  2721. content: "\1f4c5";
  2722. }
  2723. .glyphicon-pushpin:before {
  2724. content: "\1f4cc";
  2725. }
  2726. .glyphicon-paperclip:before {
  2727. content: "\1f4ce";
  2728. }
  2729. .glyphicon-camera:before {
  2730. content: "\1f4f7";
  2731. }
  2732. .glyphicon-lock:before {
  2733. content: "\1f512";
  2734. }
  2735. .glyphicon-bell:before {
  2736. content: "\1f514";
  2737. }
  2738. .glyphicon-bookmark:before {
  2739. content: "\1f516";
  2740. }
  2741. .glyphicon-fire:before {
  2742. content: "\1f525";
  2743. }
  2744. .glyphicon-wrench:before {
  2745. content: "\1f527";
  2746. }
  2747. .caret {
  2748. display: inline-block;
  2749. width: 0;
  2750. height: 0;
  2751. margin-left: 2px;
  2752. vertical-align: middle;
  2753. border-top: 4px solid;
  2754. border-right: 4px solid transparent;
  2755. border-left: 4px solid transparent;
  2756. border-bottom: 0 dotted;
  2757. content: "";
  2758. }
  2759. .dropdown {
  2760. position: relative;
  2761. }
  2762. .dropdown-toggle:focus {
  2763. outline: 0;
  2764. }
  2765. .dropdown-menu {
  2766. position: absolute;
  2767. top: 100%;
  2768. z-index: 1000;
  2769. display: none;
  2770. float: left;
  2771. min-width: 160px;
  2772. padding: 5px 0;
  2773. margin: 2px 0 0;
  2774. list-style: none;
  2775. font-size: 14px;
  2776. background-color: #ffffff;
  2777. border: 1px solid #cccccc;
  2778. border: 1px solid rgba(0, 0, 0, 0.15);
  2779. border-radius: 4px;
  2780. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  2781. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  2782. background-clip: padding-box;
  2783. }
  2784. .dropdown-menu.pull-right {
  2785. right: 0;
  2786. left: auto;
  2787. }
  2788. .dropdown-menu .divider {
  2789. height: 1px;
  2790. margin: 9px 0;
  2791. overflow: hidden;
  2792. background-color: #e5e5e5;
  2793. }
  2794. .dropdown-menu > li > a {
  2795. display: block;
  2796. padding: 3px 20px;
  2797. clear: both;
  2798. font-weight: normal;
  2799. line-height: 1.428571429;
  2800. color: #5c799c;
  2801. white-space: nowrap;
  2802. }
  2803. .dropdown-menu > li > a:hover,
  2804. .dropdown-menu > li > a:focus {
  2805. text-decoration: none;
  2806. color: #ffffff;
  2807. background-color: #728eac;
  2808. }
  2809. .dropdown-menu > .active > a,
  2810. .dropdown-menu > .active > a:hover,
  2811. .dropdown-menu > .active > a:focus {
  2812. color: #ffffff;
  2813. text-decoration: none;
  2814. outline: 0;
  2815. background-color: #728eac;
  2816. }
  2817. .dropdown-menu > .disabled > a,
  2818. .dropdown-menu > .disabled > a:hover,
  2819. .dropdown-menu > .disabled > a:focus {
  2820. color: #8aa2b6;
  2821. }
  2822. .dropdown-menu > .disabled > a:hover,
  2823. .dropdown-menu > .disabled > a:focus {
  2824. text-decoration: none;
  2825. background-color: transparent;
  2826. background-image: none;
  2827. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  2828. cursor: not-allowed;
  2829. }
  2830. .open > .dropdown-menu {
  2831. display: block;
  2832. }
  2833. .open > a {
  2834. outline: 0;
  2835. }
  2836. .dropdown-header {
  2837. display: block;
  2838. padding: 3px 20px;
  2839. font-size: 12px;
  2840. line-height: 1.428571429;
  2841. color: #8aa2b6;
  2842. }
  2843. .dropdown-backdrop {
  2844. position: fixed;
  2845. left: 0;
  2846. right: 0;
  2847. bottom: 0;
  2848. top: 0;
  2849. z-index: 990;
  2850. }
  2851. .pull-right > .dropdown-menu {
  2852. right: 0;
  2853. left: auto;
  2854. }
  2855. .dropup .caret,
  2856. .navbar-fixed-bottom .dropdown .caret {
  2857. border-top: 0 dotted;
  2858. border-bottom: 4px solid #000000;
  2859. content: "";
  2860. }
  2861. .dropup .dropdown-menu,
  2862. .navbar-fixed-bottom .dropdown .dropdown-menu {
  2863. top: auto;
  2864. bottom: 100%;
  2865. margin-bottom: 1px;
  2866. }
  2867. @media (min-width: 768px) {
  2868. .navbar-right .dropdown-menu {
  2869. right: 0;
  2870. left: auto;
  2871. }
  2872. }
  2873. .btn-default .caret {
  2874. border-top-color: #333333;
  2875. }
  2876. .btn-primary .caret,
  2877. .btn-success .caret,
  2878. .btn-warning .caret,
  2879. .btn-danger .caret,
  2880. .btn-info .caret {
  2881. border-top-color: #fff;
  2882. }
  2883. .dropup .btn-default .caret {
  2884. border-bottom-color: #333333;
  2885. }
  2886. .dropup .btn-primary .caret,
  2887. .dropup .btn-success .caret,
  2888. .dropup .btn-warning .caret,
  2889. .dropup .btn-danger .caret,
  2890. .dropup .btn-info .caret {
  2891. border-bottom-color: #fff;
  2892. }
  2893. .btn-group,
  2894. .btn-group-vertical {
  2895. position: relative;
  2896. display: inline-block;
  2897. vertical-align: middle;
  2898. }
  2899. .btn-group > .btn,
  2900. .btn-group-vertical > .btn {
  2901. position: relative;
  2902. float: left;
  2903. }
  2904. .btn-group > .btn:hover,
  2905. .btn-group-vertical > .btn:hover,
  2906. .btn-group > .btn:focus,
  2907. .btn-group-vertical > .btn:focus,
  2908. .btn-group > .btn:active,
  2909. .btn-group-vertical > .btn:active,
  2910. .btn-group > .btn.active,
  2911. .btn-group-vertical > .btn.active {
  2912. z-index: 2;
  2913. }
  2914. .btn-group > .btn:focus,
  2915. .btn-group-vertical > .btn:focus {
  2916. outline: none;
  2917. }
  2918. .btn-group .btn + .btn,
  2919. .btn-group .btn + .btn-group,
  2920. .btn-group .btn-group + .btn,
  2921. .btn-group .btn-group + .btn-group {
  2922. margin-left: -1px;
  2923. }
  2924. .btn-toolbar:before,
  2925. .btn-toolbar:after {
  2926. content: " ";
  2927. /* 1 */
  2928. display: table;
  2929. /* 2 */
  2930. }
  2931. .btn-toolbar:after {
  2932. clear: both;
  2933. }
  2934. .btn-toolbar:before,
  2935. .btn-toolbar:after {
  2936. content: " ";
  2937. /* 1 */
  2938. display: table;
  2939. /* 2 */
  2940. }
  2941. .btn-toolbar:after {
  2942. clear: both;
  2943. }
  2944. .btn-toolbar .btn-group {
  2945. float: left;
  2946. }
  2947. .btn-toolbar > .btn + .btn,
  2948. .btn-toolbar > .btn-group + .btn,
  2949. .btn-toolbar > .btn + .btn-group,
  2950. .btn-toolbar > .btn-group + .btn-group {
  2951. margin-left: 5px;
  2952. }
  2953. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  2954. border-radius: 0;
  2955. }
  2956. .btn-group > .btn:first-child {
  2957. margin-left: 0;
  2958. }
  2959. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  2960. border-bottom-right-radius: 0;
  2961. border-top-right-radius: 0;
  2962. }
  2963. .btn-group > .btn:last-child:not(:first-child),
  2964. .btn-group > .dropdown-toggle:not(:first-child) {
  2965. border-bottom-left-radius: 0;
  2966. border-top-left-radius: 0;
  2967. }
  2968. .btn-group > .btn-group {
  2969. float: left;
  2970. }
  2971. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  2972. border-radius: 0;
  2973. }
  2974. .btn-group > .btn-group:first-child > .btn:last-child,
  2975. .btn-group > .btn-group:first-child > .dropdown-toggle {
  2976. border-bottom-right-radius: 0;
  2977. border-top-right-radius: 0;
  2978. }
  2979. .btn-group > .btn-group:last-child > .btn:first-child {
  2980. border-bottom-left-radius: 0;
  2981. border-top-left-radius: 0;
  2982. }
  2983. .btn-group .dropdown-toggle:active,
  2984. .btn-group.open .dropdown-toggle {
  2985. outline: 0;
  2986. }
  2987. .btn-group-xs > .btn {
  2988. padding: 5px 10px;
  2989. font-size: 12px;
  2990. line-height: 1.5;
  2991. border-radius: 3px;
  2992. padding: 1px 5px;
  2993. }
  2994. .btn-group-sm > .btn {
  2995. padding: 5px 10px;
  2996. font-size: 12px;
  2997. line-height: 1.5;
  2998. border-radius: 3px;
  2999. }
  3000. .btn-group-lg > .btn {
  3001. padding: 10px 16px;
  3002. font-size: 18px;
  3003. line-height: 1.33;
  3004. border-radius: 6px;
  3005. }
  3006. .btn-group > .btn + .dropdown-toggle {
  3007. padding-left: 8px;
  3008. padding-right: 8px;
  3009. }
  3010. .btn-group > .btn-lg + .dropdown-toggle {
  3011. padding-left: 12px;
  3012. padding-right: 12px;
  3013. }
  3014. .btn-group.open .dropdown-toggle {
  3015. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3016. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3017. }
  3018. .btn .caret {
  3019. margin-left: 0;
  3020. }
  3021. .btn-lg .caret {
  3022. border-width: 5px 5px 0;
  3023. border-bottom-width: 0;
  3024. }
  3025. .dropup .btn-lg .caret {
  3026. border-width: 0 5px 5px;
  3027. }
  3028. .btn-group-vertical > .btn,
  3029. .btn-group-vertical > .btn-group {
  3030. display: block;
  3031. float: none;
  3032. width: 100%;
  3033. max-width: 100%;
  3034. }
  3035. .btn-group-vertical > .btn-group:before,
  3036. .btn-group-vertical > .btn-group:after {
  3037. content: " ";
  3038. /* 1 */
  3039. display: table;
  3040. /* 2 */
  3041. }
  3042. .btn-group-vertical > .btn-group:after {
  3043. clear: both;
  3044. }
  3045. .btn-group-vertical > .btn-group:before,
  3046. .btn-group-vertical > .btn-group:after {
  3047. content: " ";
  3048. /* 1 */
  3049. display: table;
  3050. /* 2 */
  3051. }
  3052. .btn-group-vertical > .btn-group:after {
  3053. clear: both;
  3054. }
  3055. .btn-group-vertical > .btn-group > .btn {
  3056. float: none;
  3057. }
  3058. .btn-group-vertical > .btn + .btn,
  3059. .btn-group-vertical > .btn + .btn-group,
  3060. .btn-group-vertical > .btn-group + .btn,
  3061. .btn-group-vertical > .btn-group + .btn-group {
  3062. margin-top: -1px;
  3063. margin-left: 0;
  3064. }
  3065. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  3066. border-radius: 0;
  3067. }
  3068. .btn-group-vertical > .btn:first-child:not(:last-child) {
  3069. border-top-right-radius: 4px;
  3070. border-bottom-right-radius: 0;
  3071. border-bottom-left-radius: 0;
  3072. }
  3073. .btn-group-vertical > .btn:last-child:not(:first-child) {
  3074. border-bottom-left-radius: 4px;
  3075. border-top-right-radius: 0;
  3076. border-top-left-radius: 0;
  3077. }
  3078. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  3079. border-radius: 0;
  3080. }
  3081. .btn-group-vertical > .btn-group:first-child > .btn:last-child,
  3082. .btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
  3083. border-bottom-right-radius: 0;
  3084. border-bottom-left-radius: 0;
  3085. }
  3086. .btn-group-vertical > .btn-group:last-child > .btn:first-child {
  3087. border-top-right-radius: 0;
  3088. border-top-left-radius: 0;
  3089. }
  3090. .btn-group-justified {
  3091. display: table;
  3092. width: 100%;
  3093. table-layout: fixed;
  3094. border-collapse: separate;
  3095. }
  3096. .btn-group-justified .btn {
  3097. float: none;
  3098. display: table-cell;
  3099. width: 1%;
  3100. }
  3101. [data-toggle="buttons"] > .btn > input[type="radio"],
  3102. [data-toggle="buttons"] > .btn > input[type="checkbox"] {
  3103. display: none;
  3104. }
  3105. .input-group {
  3106. position: relative;
  3107. display: table;
  3108. border-collapse: separate;
  3109. }
  3110. .input-group.col {
  3111. float: none;
  3112. padding-left: 0;
  3113. padding-right: 0;
  3114. }
  3115. .input-group .form-control {
  3116. width: 100%;
  3117. margin-bottom: 0;
  3118. }
  3119. .input-group-lg > .form-control,
  3120. .input-group-lg > .input-group-addon,
  3121. .input-group-lg > .input-group-btn > .btn {
  3122. height: 45px;
  3123. padding: 10px 16px;
  3124. font-size: 18px;
  3125. line-height: 1.33;
  3126. border-radius: 6px;
  3127. }
  3128. select.input-group-lg > .form-control,
  3129. select.input-group-lg > .input-group-addon,
  3130. select.input-group-lg > .input-group-btn > .btn {
  3131. height: 45px;
  3132. line-height: 45px;
  3133. }
  3134. textarea.input-group-lg > .form-control,
  3135. textarea.input-group-lg > .input-group-addon,
  3136. textarea.input-group-lg > .input-group-btn > .btn {
  3137. height: auto;
  3138. }
  3139. .input-group-sm > .form-control,
  3140. .input-group-sm > .input-group-addon,
  3141. .input-group-sm > .input-group-btn > .btn {
  3142. height: 30px;
  3143. padding: 5px 10px;
  3144. font-size: 12px;
  3145. line-height: 1.5;
  3146. border-radius: 3px;
  3147. }
  3148. select.input-group-sm > .form-control,
  3149. select.input-group-sm > .input-group-addon,
  3150. select.input-group-sm > .input-group-btn > .btn {
  3151. height: 30px;
  3152. line-height: 30px;
  3153. }
  3154. textarea.input-group-sm > .form-control,
  3155. textarea.input-group-sm > .input-group-addon,
  3156. textarea.input-group-sm > .input-group-btn > .btn {
  3157. height: auto;
  3158. }
  3159. .input-group-addon,
  3160. .input-group-btn,
  3161. .input-group .form-control {
  3162. display: table-cell;
  3163. }
  3164. .input-group-addon:not(:first-child):not(:last-child),
  3165. .input-group-btn:not(:first-child):not(:last-child),
  3166. .input-group .form-control:not(:first-child):not(:last-child) {
  3167. border-radius: 0;
  3168. }
  3169. .input-group-addon,
  3170. .input-group-btn {
  3171. width: 1%;
  3172. white-space: nowrap;
  3173. vertical-align: middle;
  3174. }
  3175. .input-group-addon {
  3176. padding: 6px 12px;
  3177. font-size: 14px;
  3178. font-weight: normal;
  3179. line-height: 1;
  3180. text-align: center;
  3181. background-color: #96b0c7;
  3182. border: 1px solid #cccccc;
  3183. border-radius: 4px;
  3184. }
  3185. .input-group-addon.input-sm {
  3186. padding: 5px 10px;
  3187. font-size: 12px;
  3188. border-radius: 3px;
  3189. }
  3190. .input-group-addon.input-lg {
  3191. padding: 10px 16px;
  3192. font-size: 18px;
  3193. border-radius: 6px;
  3194. }
  3195. .input-group-addon input[type="radio"],
  3196. .input-group-addon input[type="checkbox"] {
  3197. margin-top: 0;
  3198. }
  3199. .input-group .form-control:first-child,
  3200. .input-group-addon:first-child,
  3201. .input-group-btn:first-child > .btn,
  3202. .input-group-btn:first-child > .dropdown-toggle,
  3203. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  3204. border-bottom-right-radius: 0;
  3205. border-top-right-radius: 0;
  3206. }
  3207. .input-group-addon:first-child {
  3208. border-right: 0;
  3209. }
  3210. .input-group .form-control:last-child,
  3211. .input-group-addon:last-child,
  3212. .input-group-btn:last-child > .btn,
  3213. .input-group-btn:last-child > .dropdown-toggle,
  3214. .input-group-btn:first-child > .btn:not(:first-child) {
  3215. border-bottom-left-radius: 0;
  3216. border-top-left-radius: 0;
  3217. }
  3218. .input-group-addon:last-child {
  3219. border-left: 0;
  3220. }
  3221. .input-group-btn {
  3222. position: relative;
  3223. white-space: nowrap;
  3224. }
  3225. .input-group-btn > .btn {
  3226. position: relative;
  3227. }
  3228. .input-group-btn > .btn + .btn {
  3229. margin-left: -4px;
  3230. }
  3231. .input-group-btn > .btn:hover,
  3232. .input-group-btn > .btn:active {
  3233. z-index: 2;
  3234. }
  3235. .nav {
  3236. margin-bottom: 0;
  3237. padding-left: 0;
  3238. list-style: none;
  3239. }
  3240. .nav:before,
  3241. .nav:after {
  3242. content: " ";
  3243. /* 1 */
  3244. display: table;
  3245. /* 2 */
  3246. }
  3247. .nav:after {
  3248. clear: both;
  3249. }
  3250. .nav:before,
  3251. .nav:after {
  3252. content: " ";
  3253. /* 1 */
  3254. display: table;
  3255. /* 2 */
  3256. }
  3257. .nav:after {
  3258. clear: both;
  3259. }
  3260. .nav > li {
  3261. position: relative;
  3262. display: block;
  3263. }
  3264. .nav > li > a {
  3265. position: relative;
  3266. display: block;
  3267. padding: 10px 15px;
  3268. }
  3269. .nav > li > a:hover,
  3270. .nav > li > a:focus {
  3271. text-decoration: none;
  3272. background-color: #96b0c7;
  3273. }
  3274. .nav > li.disabled > a {
  3275. color: #8aa2b6;
  3276. }
  3277. .nav > li.disabled > a:hover,
  3278. .nav > li.disabled > a:focus {
  3279. color: #8aa2b6;
  3280. text-decoration: none;
  3281. background-color: transparent;
  3282. cursor: not-allowed;
  3283. }
  3284. .nav .open > a,
  3285. .nav .open > a:hover,
  3286. .nav .open > a:focus {
  3287. background-color: #96b0c7;
  3288. border-color: #728eac;
  3289. }
  3290. .nav .nav-divider {
  3291. height: 1px;
  3292. margin: 9px 0;
  3293. overflow: hidden;
  3294. background-color: #e5e5e5;
  3295. }
  3296. .nav > li > a > img {
  3297. max-width: none;
  3298. }
  3299. .nav-tabs {
  3300. border-bottom: 1px solid #dddddd;
  3301. }
  3302. .nav-tabs > li {
  3303. float: left;
  3304. margin-bottom: -1px;
  3305. }
  3306. .nav-tabs > li > a {
  3307. margin-right: 2px;
  3308. line-height: 1.428571429;
  3309. border: 1px solid transparent;
  3310. border-radius: 4px 4px 0 0;
  3311. }
  3312. .nav-tabs > li > a:hover {
  3313. border-color: #96b0c7 #96b0c7 #dddddd;
  3314. }
  3315. .nav-tabs > li.active > a,
  3316. .nav-tabs > li.active > a:hover,
  3317. .nav-tabs > li.active > a:focus {
  3318. color: #78a6c8;
  3319. background-color: #becfdc;
  3320. border: 1px solid #dddddd;
  3321. border-bottom-color: transparent;
  3322. cursor: default;
  3323. }
  3324. .nav-tabs.nav-justified {
  3325. width: 100%;
  3326. border-bottom: 0;
  3327. }
  3328. .nav-tabs.nav-justified > li {
  3329. float: none;
  3330. }
  3331. .nav-tabs.nav-justified > li > a {
  3332. text-align: center;
  3333. }
  3334. @media (min-width: 768px) {
  3335. .nav-tabs.nav-justified > li {
  3336. display: table-cell;
  3337. width: 1%;
  3338. }
  3339. }
  3340. .nav-tabs.nav-justified > li > a {
  3341. border-bottom: 1px solid #dddddd;
  3342. margin-right: 0;
  3343. }
  3344. .nav-tabs.nav-justified > .active > a {
  3345. border-bottom-color: #becfdc;
  3346. }
  3347. .nav-pills > li {
  3348. float: left;
  3349. }
  3350. .nav-pills > li > a {
  3351. border-radius: 5px;
  3352. }
  3353. .nav-pills > li + li {
  3354. margin-left: 2px;
  3355. }
  3356. .nav-pills > li.active > a,
  3357. .nav-pills > li.active > a:hover,
  3358. .nav-pills > li.active > a:focus {
  3359. color: #ffffff;
  3360. background-color: #728eac;
  3361. }
  3362. .nav-stacked > li {
  3363. float: none;
  3364. }
  3365. .nav-stacked > li + li {
  3366. margin-top: 2px;
  3367. margin-left: 0;
  3368. }
  3369. .nav-justified {
  3370. width: 100%;
  3371. }
  3372. .nav-justified > li {
  3373. float: none;
  3374. }
  3375. .nav-justified > li > a {
  3376. text-align: center;
  3377. }
  3378. @media (min-width: 768px) {
  3379. .nav-justified > li {
  3380. display: table-cell;
  3381. width: 1%;
  3382. }
  3383. }
  3384. .nav-tabs-justified {
  3385. border-bottom: 0;
  3386. }
  3387. .nav-tabs-justified > li > a {
  3388. border-bottom: 1px solid #dddddd;
  3389. margin-right: 0;
  3390. }
  3391. .nav-tabs-justified > .active > a {
  3392. border-bottom-color: #becfdc;
  3393. }
  3394. .tabbable:before,
  3395. .tabbable:after {
  3396. content: " ";
  3397. /* 1 */
  3398. display: table;
  3399. /* 2 */
  3400. }
  3401. .tabbable:after {
  3402. clear: both;
  3403. }
  3404. .tabbable:before,
  3405. .tabbable:after {
  3406. content: " ";
  3407. /* 1 */
  3408. display: table;
  3409. /* 2 */
  3410. }
  3411. .tabbable:after {
  3412. clear: both;
  3413. }
  3414. .tab-content > .tab-pane,
  3415. .pill-content > .pill-pane {
  3416. display: none;
  3417. }
  3418. .tab-content > .active,
  3419. .pill-content > .active {
  3420. display: block;
  3421. }
  3422. .nav .caret {
  3423. border-top-color: #728eac;
  3424. border-bottom-color: #728eac;
  3425. }
  3426. .nav a:hover .caret {
  3427. border-top-color: #4e6884;
  3428. border-bottom-color: #4e6884;
  3429. }
  3430. .nav-tabs .dropdown-menu {
  3431. margin-top: -1px;
  3432. border-top-right-radius: 0;
  3433. border-top-left-radius: 0;
  3434. }
  3435. .navbar {
  3436. position: relative;
  3437. z-index: 1000;
  3438. min-height: 50px;
  3439. margin-bottom: 20px;
  3440. border: 1px solid transparent;
  3441. }
  3442. .navbar:before,
  3443. .navbar:after {
  3444. content: " ";
  3445. /* 1 */
  3446. display: table;
  3447. /* 2 */
  3448. }
  3449. .navbar:after {
  3450. clear: both;
  3451. }
  3452. .navbar:before,
  3453. .navbar:after {
  3454. content: " ";
  3455. /* 1 */
  3456. display: table;
  3457. /* 2 */
  3458. }
  3459. .navbar:after {
  3460. clear: both;
  3461. }
  3462. @media (min-width: 768px) {
  3463. .navbar {
  3464. border-radius: 4px;
  3465. }
  3466. }
  3467. .navbar-header:before,
  3468. .navbar-header:after {
  3469. content: " ";
  3470. /* 1 */
  3471. display: table;
  3472. /* 2 */
  3473. }
  3474. .navbar-header:after {
  3475. clear: both;
  3476. }
  3477. .navbar-header:before,
  3478. .navbar-header:after {
  3479. content: " ";
  3480. /* 1 */
  3481. display: table;
  3482. /* 2 */
  3483. }
  3484. .navbar-header:after {
  3485. clear: both;
  3486. }
  3487. @media (min-width: 768px) {
  3488. .navbar-header {
  3489. float: left;
  3490. }
  3491. }
  3492. .navbar-collapse {
  3493. max-height: 340px;
  3494. overflow-x: visible;
  3495. padding-right: 15px;
  3496. padding-left: 15px;
  3497. border-top: 1px solid transparent;
  3498. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  3499. -webkit-overflow-scrolling: touch;
  3500. }
  3501. .navbar-collapse:before,
  3502. .navbar-collapse:after {
  3503. content: " ";
  3504. /* 1 */
  3505. display: table;
  3506. /* 2 */
  3507. }
  3508. .navbar-collapse:after {
  3509. clear: both;
  3510. }
  3511. .navbar-collapse:before,
  3512. .navbar-collapse:after {
  3513. content: " ";
  3514. /* 1 */
  3515. display: table;
  3516. /* 2 */
  3517. }
  3518. .navbar-collapse:after {
  3519. clear: both;
  3520. }
  3521. .navbar-collapse.in {
  3522. overflow-y: auto;
  3523. }
  3524. @media (min-width: 768px) {
  3525. .navbar-collapse {
  3526. width: auto;
  3527. border-top: 0;
  3528. box-shadow: none;
  3529. }
  3530. .navbar-collapse.collapse {
  3531. display: block !important;
  3532. height: auto !important;
  3533. padding-bottom: 0;
  3534. overflow: visible !important;
  3535. }
  3536. .navbar-collapse.in {
  3537. overflow-y: visible;
  3538. }
  3539. .navbar-collapse .navbar-nav.navbar-left:first-child {
  3540. margin-left: -15px;
  3541. }
  3542. .navbar-collapse .navbar-nav.navbar-right:last-child {
  3543. margin-right: -15px;
  3544. }
  3545. .navbar-collapse .navbar-text:last-child {
  3546. margin-right: 0;
  3547. }
  3548. }
  3549. .container > .navbar-header,
  3550. .container > .navbar-collapse {
  3551. margin-right: -15px;
  3552. margin-left: -15px;
  3553. }
  3554. @media (min-width: 768px) {
  3555. .container > .navbar-header,
  3556. .container > .navbar-collapse {
  3557. margin-right: 0;
  3558. margin-left: 0;
  3559. }
  3560. }
  3561. .navbar-static-top {
  3562. border-width: 0 0 1px;
  3563. }
  3564. @media (min-width: 768px) {
  3565. .navbar-static-top {
  3566. border-radius: 0;
  3567. }
  3568. }
  3569. .navbar-fixed-top,
  3570. .navbar-fixed-bottom {
  3571. position: fixed;
  3572. right: 0;
  3573. left: 0;
  3574. border-width: 0 0 1px;
  3575. }
  3576. @media (min-width: 768px) {
  3577. .navbar-fixed-top,
  3578. .navbar-fixed-bottom {
  3579. border-radius: 0;
  3580. }
  3581. }
  3582. .navbar-fixed-top {
  3583. z-index: 1030;
  3584. top: 0;
  3585. }
  3586. .navbar-fixed-bottom {
  3587. bottom: 0;
  3588. margin-bottom: 0;
  3589. }
  3590. .navbar-brand {
  3591. float: left;
  3592. padding: 15px 15px;
  3593. font-size: 18px;
  3594. line-height: 20px;
  3595. }
  3596. .navbar-brand:hover,
  3597. .navbar-brand:focus {
  3598. text-decoration: none;
  3599. }
  3600. @media (min-width: 768px) {
  3601. .navbar > .container .navbar-brand {
  3602. margin-left: -15px;
  3603. }
  3604. }
  3605. .navbar-toggle {
  3606. position: relative;
  3607. float: right;
  3608. margin-right: 15px;
  3609. padding: 9px 10px;
  3610. margin-top: 8px;
  3611. margin-bottom: 8px;
  3612. background-color: transparent;
  3613. border: 1px solid transparent;
  3614. border-radius: 4px;
  3615. }
  3616. .navbar-toggle .icon-bar {
  3617. display: block;
  3618. width: 22px;
  3619. height: 2px;
  3620. border-radius: 1px;
  3621. }
  3622. .navbar-toggle .icon-bar + .icon-bar {
  3623. margin-top: 4px;
  3624. }
  3625. @media (min-width: 768px) {
  3626. .navbar-toggle {
  3627. display: none;
  3628. }
  3629. }
  3630. .navbar-nav {
  3631. margin: 7.5px -15px;
  3632. }
  3633. .navbar-nav > li > a {
  3634. padding-top: 10px;
  3635. padding-bottom: 10px;
  3636. line-height: 20px;
  3637. }
  3638. @media (max-width: 767px) {
  3639. .navbar-nav .open .dropdown-menu {
  3640. position: static;
  3641. float: none;
  3642. width: auto;
  3643. margin-top: 0;
  3644. background-color: transparent;
  3645. border: 0;
  3646. box-shadow: none;
  3647. }
  3648. .navbar-nav .open .dropdown-menu > li > a,
  3649. .navbar-nav .open .dropdown-menu .dropdown-header {
  3650. padding: 5px 15px 5px 25px;
  3651. }
  3652. .navbar-nav .open .dropdown-menu > li > a {
  3653. line-height: 20px;
  3654. }
  3655. .navbar-nav .open .dropdown-menu > li > a:hover,
  3656. .navbar-nav .open .dropdown-menu > li > a:focus {
  3657. background-image: none;
  3658. }
  3659. }
  3660. @media (min-width: 768px) {
  3661. .navbar-nav {
  3662. float: left;
  3663. margin: 0;
  3664. }
  3665. .navbar-nav > li {
  3666. float: left;
  3667. }
  3668. .navbar-nav > li > a {
  3669. padding-top: 15px;
  3670. padding-bottom: 15px;
  3671. }
  3672. }
  3673. @media (min-width: 768px) {
  3674. .navbar-left {
  3675. float: left !important;
  3676. }
  3677. .navbar-right {
  3678. float: right !important;
  3679. }
  3680. }
  3681. .navbar-form {
  3682. margin-left: -15px;
  3683. margin-right: -15px;
  3684. padding: 10px 15px;
  3685. border-top: 1px solid transparent;
  3686. border-bottom: 1px solid transparent;
  3687. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  3688. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  3689. margin-top: 8px;
  3690. margin-bottom: 8px;
  3691. }
  3692. @media (min-width: 768px) {
  3693. .navbar-form .form-group {
  3694. display: inline-block;
  3695. margin-bottom: 0;
  3696. vertical-align: middle;
  3697. }
  3698. .navbar-form .form-control {
  3699. display: inline-block;
  3700. }
  3701. .navbar-form .radio,
  3702. .navbar-form .checkbox {
  3703. display: inline-block;
  3704. margin-top: 0;
  3705. margin-bottom: 0;
  3706. padding-left: 0;
  3707. }
  3708. .navbar-form .radio input[type="radio"],
  3709. .navbar-form .checkbox input[type="checkbox"] {
  3710. float: none;
  3711. margin-left: 0;
  3712. }
  3713. }
  3714. @media (max-width: 767px) {
  3715. .navbar-form .form-group {
  3716. margin-bottom: 5px;
  3717. }
  3718. }
  3719. @media (min-width: 768px) {
  3720. .navbar-form {
  3721. width: auto;
  3722. border: 0;
  3723. margin-left: 0;
  3724. margin-right: 0;
  3725. padding-top: 0;
  3726. padding-bottom: 0;
  3727. -webkit-box-shadow: none;
  3728. box-shadow: none;
  3729. }
  3730. }
  3731. .navbar-nav > li > .dropdown-menu {
  3732. margin-top: 0;
  3733. border-top-right-radius: 0;
  3734. border-top-left-radius: 0;
  3735. }
  3736. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  3737. border-bottom-right-radius: 0;
  3738. border-bottom-left-radius: 0;
  3739. }
  3740. .navbar-nav.pull-right > li > .dropdown-menu,
  3741. .navbar-nav > li > .dropdown-menu.pull-right {
  3742. left: auto;
  3743. right: 0;
  3744. }
  3745. .navbar-btn {
  3746. margin-top: 8px;
  3747. margin-bottom: 8px;
  3748. }
  3749. .navbar-text {
  3750. float: left;
  3751. margin-top: 15px;
  3752. margin-bottom: 15px;
  3753. }
  3754. @media (min-width: 768px) {
  3755. .navbar-text {
  3756. margin-left: 15px;
  3757. margin-right: 15px;
  3758. }
  3759. }
  3760. .navbar-default {
  3761. background-color: #f8f8f8;
  3762. border-color: #e7e7e7;
  3763. }
  3764. .navbar-default .navbar-brand {
  3765. color: #777777;
  3766. }
  3767. .navbar-default .navbar-brand:hover,
  3768. .navbar-default .navbar-brand:focus {
  3769. color: #5e5e5e;
  3770. background-color: transparent;
  3771. }
  3772. .navbar-default .navbar-text {
  3773. color: #777777;
  3774. }
  3775. .navbar-default .navbar-nav > li > a {
  3776. color: #777777;
  3777. }
  3778. .navbar-default .navbar-nav > li > a:hover,
  3779. .navbar-default .navbar-nav > li > a:focus {
  3780. color: #333333;
  3781. background-color: transparent;
  3782. }
  3783. .navbar-default .navbar-nav > .active > a,
  3784. .navbar-default .navbar-nav > .active > a:hover,
  3785. .navbar-default .navbar-nav > .active > a:focus {
  3786. color: #555555;
  3787. background-color: #e7e7e7;
  3788. }
  3789. .navbar-default .navbar-nav > .disabled > a,
  3790. .navbar-default .navbar-nav > .disabled > a:hover,
  3791. .navbar-default .navbar-nav > .disabled > a:focus {
  3792. color: #cccccc;
  3793. background-color: transparent;
  3794. }
  3795. .navbar-default .navbar-toggle {
  3796. border-color: #dddddd;
  3797. }
  3798. .navbar-default .navbar-toggle:hover,
  3799. .navbar-default .navbar-toggle:focus {
  3800. background-color: #dddddd;
  3801. }
  3802. .navbar-default .navbar-toggle .icon-bar {
  3803. background-color: #cccccc;
  3804. }
  3805. .navbar-default .navbar-collapse,
  3806. .navbar-default .navbar-form {
  3807. border-color: #e6e6e6;
  3808. }
  3809. .navbar-default .navbar-nav > .dropdown > a:hover .caret,
  3810. .navbar-default .navbar-nav > .dropdown > a:focus .caret {
  3811. border-top-color: #333333;
  3812. border-bottom-color: #333333;
  3813. }
  3814. .navbar-default .navbar-nav > .open > a,
  3815. .navbar-default .navbar-nav > .open > a:hover,
  3816. .navbar-default .navbar-nav > .open > a:focus {
  3817. background-color: #e7e7e7;
  3818. color: #555555;
  3819. }
  3820. .navbar-default .navbar-nav > .open > a .caret,
  3821. .navbar-default .navbar-nav > .open > a:hover .caret,
  3822. .navbar-default .navbar-nav > .open > a:focus .caret {
  3823. border-top-color: #555555;
  3824. border-bottom-color: #555555;
  3825. }
  3826. .navbar-default .navbar-nav > .dropdown > a .caret {
  3827. border-top-color: #777777;
  3828. border-bottom-color: #777777;
  3829. }
  3830. @media (max-width: 767px) {
  3831. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  3832. color: #777777;
  3833. }
  3834. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  3835. .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  3836. color: #333333;
  3837. background-color: transparent;
  3838. }
  3839. .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  3840. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  3841. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  3842. color: #555555;
  3843. background-color: #e7e7e7;
  3844. }
  3845. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  3846. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  3847. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  3848. color: #cccccc;
  3849. background-color: transparent;
  3850. }
  3851. }
  3852. .navbar-default .navbar-link {
  3853. color: #777777;
  3854. }
  3855. .navbar-default .navbar-link:hover {
  3856. color: #333333;
  3857. }
  3858. .navbar-inverse {
  3859. background-color: #4f667d;
  3860. border-color: #3b4d5e;
  3861. }
  3862. .navbar-inverse .navbar-brand {
  3863. color: #8aa2b6;
  3864. }
  3865. .navbar-inverse .navbar-brand:hover,
  3866. .navbar-inverse .navbar-brand:focus {
  3867. color: #ffffff;
  3868. background-color: transparent;
  3869. }
  3870. .navbar-inverse .navbar-text {
  3871. color: #8aa2b6;
  3872. }
  3873. .navbar-inverse .navbar-nav > li > a {
  3874. color: #8aa2b6;
  3875. }
  3876. .navbar-inverse .navbar-nav > li > a:hover,
  3877. .navbar-inverse .navbar-nav > li > a:focus {
  3878. color: #ffffff;
  3879. background-color: transparent;
  3880. }
  3881. .navbar-inverse .navbar-nav > .active > a,
  3882. .navbar-inverse .navbar-nav > .active > a:hover,
  3883. .navbar-inverse .navbar-nav > .active > a:focus {
  3884. color: #ffffff;
  3885. background-color: #3b4d5e;
  3886. }
  3887. .navbar-inverse .navbar-nav > .disabled > a,
  3888. .navbar-inverse .navbar-nav > .disabled > a:hover,
  3889. .navbar-inverse .navbar-nav > .disabled > a:focus {
  3890. color: #444444;
  3891. background-color: transparent;
  3892. }
  3893. .navbar-inverse .navbar-toggle {
  3894. border-color: #333333;
  3895. }
  3896. .navbar-inverse .navbar-toggle:hover,
  3897. .navbar-inverse .navbar-toggle:focus {
  3898. background-color: #333333;
  3899. }
  3900. .navbar-inverse .navbar-toggle .icon-bar {
  3901. background-color: #ffffff;
  3902. }
  3903. .navbar-inverse .navbar-collapse,
  3904. .navbar-inverse .navbar-form {
  3905. border-color: #415467;
  3906. }
  3907. .navbar-inverse .navbar-nav > .open > a,
  3908. .navbar-inverse .navbar-nav > .open > a:hover,
  3909. .navbar-inverse .navbar-nav > .open > a:focus {
  3910. background-color: #3b4d5e;
  3911. color: #ffffff;
  3912. }
  3913. .navbar-inverse .navbar-nav > .dropdown > a:hover .caret {
  3914. border-top-color: #ffffff;
  3915. border-bottom-color: #ffffff;
  3916. }
  3917. .navbar-inverse .navbar-nav > .dropdown > a .caret {
  3918. border-top-color: #8aa2b6;
  3919. border-bottom-color: #8aa2b6;
  3920. }
  3921. .navbar-inverse .navbar-nav > .open > a .caret,
  3922. .navbar-inverse .navbar-nav > .open > a:hover .caret,
  3923. .navbar-inverse .navbar-nav > .open > a:focus .caret {
  3924. border-top-color: #ffffff;
  3925. border-bottom-color: #ffffff;
  3926. }
  3927. @media (max-width: 767px) {
  3928. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  3929. border-color: #3b4d5e;
  3930. }
  3931. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  3932. color: #8aa2b6;
  3933. }
  3934. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  3935. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  3936. color: #ffffff;
  3937. background-color: transparent;
  3938. }
  3939. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  3940. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  3941. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
  3942. color: #ffffff;
  3943. background-color: #3b4d5e;
  3944. }
  3945. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  3946. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  3947. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  3948. color: #444444;
  3949. background-color: transparent;
  3950. }
  3951. }
  3952. .navbar-inverse .navbar-link {
  3953. color: #8aa2b6;
  3954. }
  3955. .navbar-inverse .navbar-link:hover {
  3956. color: #ffffff;
  3957. }
  3958. .breadcrumb {
  3959. padding: 8px 15px;
  3960. margin-bottom: 20px;
  3961. list-style: none;
  3962. background-color: #f5f5f5;
  3963. border-radius: 4px;
  3964. }
  3965. .breadcrumb > li {
  3966. display: inline-block;
  3967. }
  3968. .breadcrumb > li + li:before {
  3969. content: "/\00a0";
  3970. padding: 0 5px;
  3971. color: #cccccc;
  3972. }
  3973. .breadcrumb > .active {
  3974. color: #8aa2b6;
  3975. }
  3976. .pagination {
  3977. display: inline-block;
  3978. padding-left: 0;
  3979. margin: 20px 0;
  3980. border-radius: 4px;
  3981. }
  3982. .pagination > li {
  3983. display: inline;
  3984. }
  3985. .pagination > li > a,
  3986. .pagination > li > span {
  3987. position: relative;
  3988. float: left;
  3989. padding: 6px 12px;
  3990. line-height: 1.428571429;
  3991. text-decoration: none;
  3992. background-color: #ffffff;
  3993. border: 1px solid #dddddd;
  3994. margin-left: -1px;
  3995. }
  3996. .pagination > li:first-child > a,
  3997. .pagination > li:first-child > span {
  3998. margin-left: 0;
  3999. border-bottom-left-radius: 4px;
  4000. border-top-left-radius: 4px;
  4001. }
  4002. .pagination > li:last-child > a,
  4003. .pagination > li:last-child > span {
  4004. border-bottom-right-radius: 4px;
  4005. border-top-right-radius: 4px;
  4006. }
  4007. .pagination > li > a:hover,
  4008. .pagination > li > span:hover,
  4009. .pagination > li > a:focus,
  4010. .pagination > li > span:focus {
  4011. background-color: #96b0c7;
  4012. }
  4013. .pagination > .active > a,
  4014. .pagination > .active > span,
  4015. .pagination > .active > a:hover,
  4016. .pagination > .active > span:hover,
  4017. .pagination > .active > a:focus,
  4018. .pagination > .active > span:focus {
  4019. z-index: 2;
  4020. color: #ffffff;
  4021. background-color: #728eac;
  4022. border-color: #728eac;
  4023. cursor: default;
  4024. }
  4025. .pagination > .disabled > span,
  4026. .pagination > .disabled > a,
  4027. .pagination > .disabled > a:hover,
  4028. .pagination > .disabled > a:focus {
  4029. color: #8aa2b6;
  4030. background-color: #ffffff;
  4031. border-color: #dddddd;
  4032. cursor: not-allowed;
  4033. }
  4034. .pagination-lg > li > a,
  4035. .pagination-lg > li > span {
  4036. padding: 10px 16px;
  4037. font-size: 18px;
  4038. }
  4039. .pagination-lg > li:first-child > a,
  4040. .pagination-lg > li:first-child > span {
  4041. border-bottom-left-radius: 6px;
  4042. border-top-left-radius: 6px;
  4043. }
  4044. .pagination-lg > li:last-child > a,
  4045. .pagination-lg > li:last-child > span {
  4046. border-bottom-right-radius: 6px;
  4047. border-top-right-radius: 6px;
  4048. }
  4049. .pagination-sm > li > a,
  4050. .pagination-sm > li > span {
  4051. padding: 5px 10px;
  4052. font-size: 12px;
  4053. }
  4054. .pagination-sm > li:first-child > a,
  4055. .pagination-sm > li:first-child > span {
  4056. border-bottom-left-radius: 3px;
  4057. border-top-left-radius: 3px;
  4058. }
  4059. .pagination-sm > li:last-child > a,
  4060. .pagination-sm > li:last-child > span {
  4061. border-bottom-right-radius: 3px;
  4062. border-top-right-radius: 3px;
  4063. }
  4064. .pager {
  4065. padding-left: 0;
  4066. margin: 20px 0;
  4067. list-style: none;
  4068. text-align: center;
  4069. }
  4070. .pager:before,
  4071. .pager:after {
  4072. content: " ";
  4073. /* 1 */
  4074. display: table;
  4075. /* 2 */
  4076. }
  4077. .pager:after {
  4078. clear: both;
  4079. }
  4080. .pager:before,
  4081. .pager:after {
  4082. content: " ";
  4083. /* 1 */
  4084. display: table;
  4085. /* 2 */
  4086. }
  4087. .pager:after {
  4088. clear: both;
  4089. }
  4090. .pager li {
  4091. display: inline;
  4092. }
  4093. .pager li > a,
  4094. .pager li > span {
  4095. display: inline-block;
  4096. padding: 5px 14px;
  4097. background-color: #ffffff;
  4098. border: 1px solid #dddddd;
  4099. border-radius: 15px;
  4100. }
  4101. .pager li > a:hover,
  4102. .pager li > a:focus {
  4103. text-decoration: none;
  4104. background-color: #96b0c7;
  4105. }
  4106. .pager .next > a,
  4107. .pager .next > span {
  4108. float: right;
  4109. }
  4110. .pager .previous > a,
  4111. .pager .previous > span {
  4112. float: left;
  4113. }
  4114. .pager .disabled > a,
  4115. .pager .disabled > a:hover,
  4116. .pager .disabled > a:focus,
  4117. .pager .disabled > span {
  4118. color: #8aa2b6;
  4119. background-color: #ffffff;
  4120. cursor: not-allowed;
  4121. }
  4122. .label {
  4123. display: inline;
  4124. padding: .2em .6em .3em;
  4125. font-size: 75%;
  4126. font-weight: bold;
  4127. line-height: 1;
  4128. color: #ffffff;
  4129. text-align: center;
  4130. white-space: nowrap;
  4131. vertical-align: baseline;
  4132. border-radius: .25em;
  4133. }
  4134. .label[href]:hover,
  4135. .label[href]:focus {
  4136. color: #ffffff;
  4137. text-decoration: none;
  4138. cursor: pointer;
  4139. }
  4140. .label:empty {
  4141. display: none;
  4142. }
  4143. .label-default {
  4144. background-color: #8aa2b6;
  4145. }
  4146. .label-default[href]:hover,
  4147. .label-default[href]:focus {
  4148. background-color: #6b89a2;
  4149. }
  4150. .label-primary {
  4151. background-color: #728eac;
  4152. }
  4153. .label-primary[href]:hover,
  4154. .label-primary[href]:focus {
  4155. background-color: #577494;
  4156. }
  4157. .label-success {
  4158. background-color: #5cb85c;
  4159. }
  4160. .label-success[href]:hover,
  4161. .label-success[href]:focus {
  4162. background-color: #449d44;
  4163. }
  4164. .label-info {
  4165. background-color: #5bc0de;
  4166. }
  4167. .label-info[href]:hover,
  4168. .label-info[href]:focus {
  4169. background-color: #31b0d5;
  4170. }
  4171. .label-warning {
  4172. background-color: #f0ad4e;
  4173. }
  4174. .label-warning[href]:hover,
  4175. .label-warning[href]:focus {
  4176. background-color: #ec971f;
  4177. }
  4178. .label-danger {
  4179. background-color: #d9534f;
  4180. }
  4181. .label-danger[href]:hover,
  4182. .label-danger[href]:focus {
  4183. background-color: #c9302c;
  4184. }
  4185. .badge {
  4186. display: inline-block;
  4187. min-width: 10px;
  4188. padding: 3px 7px;
  4189. font-size: 12px;
  4190. font-weight: bold;
  4191. color: #ffffff;
  4192. line-height: 1;
  4193. vertical-align: baseline;
  4194. white-space: nowrap;
  4195. text-align: center;
  4196. background-color: #8aa2b6;
  4197. border-radius: 10px;
  4198. }
  4199. .badge:empty {
  4200. display: none;
  4201. }
  4202. a.badge:hover,
  4203. a.badge:focus {
  4204. color: #ffffff;
  4205. text-decoration: none;
  4206. cursor: pointer;
  4207. }
  4208. .btn .badge {
  4209. position: relative;
  4210. top: -1px;
  4211. }
  4212. a.list-group-item.active > .badge,
  4213. .nav-pills > .active > a > .badge {
  4214. color: #728eac;
  4215. background-color: #ffffff;
  4216. }
  4217. .nav-pills > li > a > .badge {
  4218. margin-left: 3px;
  4219. }
  4220. .jumbotron {
  4221. padding: 30px;
  4222. margin-bottom: 30px;
  4223. font-size: 21px;
  4224. font-weight: 200;
  4225. line-height: 2.1428571435;
  4226. color: inherit;
  4227. background-color: #96b0c7;
  4228. }
  4229. .jumbotron h1 {
  4230. line-height: 1;
  4231. color: inherit;
  4232. }
  4233. .jumbotron p {
  4234. line-height: 1.4;
  4235. }
  4236. .container .jumbotron {
  4237. border-radius: 6px;
  4238. }
  4239. @media screen and (min-width: 768px) {
  4240. .jumbotron {
  4241. padding-top: 48px;
  4242. padding-bottom: 48px;
  4243. }
  4244. .container .jumbotron {
  4245. padding-left: 60px;
  4246. padding-right: 60px;
  4247. }
  4248. .jumbotron h1 {
  4249. font-size: 63px;
  4250. }
  4251. }
  4252. .thumbnail {
  4253. padding: 4px;
  4254. line-height: 1.428571429;
  4255. background-color: #becfdc;
  4256. border: 1px solid #dddddd;
  4257. border-radius: 4px;
  4258. -webkit-transition: all 0.2s ease-in-out;
  4259. transition: all 0.2s ease-in-out;
  4260. display: inline-block;
  4261. max-width: 100%;
  4262. height: auto;
  4263. display: block;
  4264. }
  4265. .thumbnail > img {
  4266. display: block;
  4267. max-width: 100%;
  4268. height: auto;
  4269. }
  4270. a.thumbnail:hover,
  4271. a.thumbnail:focus {
  4272. border-color: #728eac;
  4273. }
  4274. .thumbnail > img {
  4275. margin-left: auto;
  4276. margin-right: auto;
  4277. }
  4278. .thumbnail .caption {
  4279. padding: 9px;
  4280. color: #5c799c;
  4281. }
  4282. .alert {
  4283. margin-bottom: 20px;
  4284. border: 1px solid transparent;
  4285. border-radius: 4px;
  4286. }
  4287. .alert h4 {
  4288. margin-top: 0;
  4289. color: inherit;
  4290. }
  4291. .alert .alert-link {
  4292. font-weight: bold;
  4293. }
  4294. .alert > p,
  4295. .alert > ul {
  4296. margin-bottom: 0;
  4297. }
  4298. .alert > p + p {
  4299. margin-top: 5px;
  4300. }
  4301. .alert-dismissable {
  4302. padding-right: 35px;
  4303. }
  4304. .alert-dismissable .close {
  4305. position: relative;
  4306. top: -2px;
  4307. right: -21px;
  4308. color: inherit;
  4309. }
  4310. .alert-success {
  4311. background-color: #dff0d8;
  4312. border-color: #d6e9c6;
  4313. color: #468847;
  4314. }
  4315. .alert-success hr {
  4316. border-top-color: #c9e2b3;
  4317. }
  4318. .alert-success .alert-link {
  4319. color: #356635;
  4320. }
  4321. .alert-info {
  4322. background-color: #d9edf7;
  4323. border-color: #bce8f1;
  4324. color: #3a87ad;
  4325. }
  4326. .alert-info hr {
  4327. border-top-color: #a6e1ec;
  4328. }
  4329. .alert-info .alert-link {
  4330. color: #2d6987;
  4331. }
  4332. .alert-warning {
  4333. background-color: #fcf8e3;
  4334. border-color: #fbeed5;
  4335. color: #c09853;
  4336. }
  4337. .alert-warning hr {
  4338. border-top-color: #f8e5be;
  4339. }
  4340. .alert-warning .alert-link {
  4341. color: #a47e3c;
  4342. }
  4343. .alert-danger {
  4344. background-color: #f2dede;
  4345. border-color: #eed3d7;
  4346. color: #b94a48;
  4347. }
  4348. .alert-danger hr {
  4349. border-top-color: #e6c1c7;
  4350. }
  4351. .alert-danger .alert-link {
  4352. color: #953b39;
  4353. }
  4354. @-webkit-keyframes progress-bar-stripes {
  4355. from {
  4356. background-position: 40px 0;
  4357. }
  4358. to {
  4359. background-position: 0 0;
  4360. }
  4361. }
  4362. @-moz-keyframes progress-bar-stripes {
  4363. from {
  4364. background-position: 40px 0;
  4365. }
  4366. to {
  4367. background-position: 0 0;
  4368. }
  4369. }
  4370. @-o-keyframes progress-bar-stripes {
  4371. from {
  4372. background-position: 0 0;
  4373. }
  4374. to {
  4375. background-position: 40px 0;
  4376. }
  4377. }
  4378. @keyframes progress-bar-stripes {
  4379. from {
  4380. background-position: 40px 0;
  4381. }
  4382. to {
  4383. background-position: 0 0;
  4384. }
  4385. }
  4386. .progress {
  4387. overflow: hidden;
  4388. height: 20px;
  4389. margin-bottom: 20px;
  4390. background-color: #f5f5f5;
  4391. border-radius: 4px;
  4392. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  4393. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  4394. }
  4395. .progress-bar {
  4396. float: left;
  4397. width: 0%;
  4398. height: 100%;
  4399. font-size: 12px;
  4400. color: #ffffff;
  4401. text-align: center;
  4402. background-color: #728eac;
  4403. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  4404. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  4405. -webkit-transition: width 0.6s ease;
  4406. transition: width 0.6s ease;
  4407. }
  4408. .progress-striped .progress-bar {
  4409. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  4410. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4411. background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4412. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4413. background-size: 40px 40px;
  4414. }
  4415. .progress.active .progress-bar {
  4416. -webkit-animation: progress-bar-stripes 2s linear infinite;
  4417. -moz-animation: progress-bar-stripes 2s linear infinite;
  4418. -ms-animation: progress-bar-stripes 2s linear infinite;
  4419. -o-animation: progress-bar-stripes 2s linear infinite;
  4420. animation: progress-bar-stripes 2s linear infinite;
  4421. }
  4422. .progress-bar-success {
  4423. background-color: #5cb85c;
  4424. }
  4425. .progress-striped .progress-bar-success {
  4426. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  4427. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4428. background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4429. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4430. }
  4431. .progress-bar-info {
  4432. background-color: #5bc0de;
  4433. }
  4434. .progress-striped .progress-bar-info {
  4435. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  4436. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4437. background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4438. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4439. }
  4440. .progress-bar-warning {
  4441. background-color: #f0ad4e;
  4442. }
  4443. .progress-striped .progress-bar-warning {
  4444. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  4445. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4446. background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4447. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4448. }
  4449. .progress-bar-danger {
  4450. background-color: #d9534f;
  4451. }
  4452. .progress-striped .progress-bar-danger {
  4453. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  4454. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4455. background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4456. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4457. }
  4458. .media,
  4459. .media-body {
  4460. overflow: hidden;
  4461. zoom: 1;
  4462. }
  4463. .media,
  4464. .media .media {
  4465. margin-top: 15px;
  4466. }
  4467. .media:first-child {
  4468. margin-top: 0;
  4469. }
  4470. .media-object {
  4471. display: block;
  4472. }
  4473. .media-heading {
  4474. margin: 0 0 5px;
  4475. }
  4476. .media > .pull-left {
  4477. margin-right: 10px;
  4478. }
  4479. .media > .pull-right {
  4480. margin-left: 10px;
  4481. }
  4482. .media-list {
  4483. padding-left: 0;
  4484. list-style: none;
  4485. }
  4486. .list-group {
  4487. margin-bottom: 20px;
  4488. padding-left: 0;
  4489. }
  4490. .list-group-item {
  4491. position: relative;
  4492. display: block;
  4493. padding: 10px 15px;
  4494. margin-bottom: -1px;
  4495. background-color: #ffffff;
  4496. border: 1px solid #dddddd;
  4497. }
  4498. .list-group-item:first-child {
  4499. border-top-right-radius: 4px;
  4500. border-top-left-radius: 4px;
  4501. }
  4502. .list-group-item:last-child {
  4503. margin-bottom: 0;
  4504. border-bottom-right-radius: 4px;
  4505. border-bottom-left-radius: 4px;
  4506. }
  4507. .list-group-item > .badge {
  4508. float: right;
  4509. }
  4510. .list-group-item > .badge + .badge {
  4511. margin-right: 5px;
  4512. }
  4513. a.list-group-item {
  4514. color: #555555;
  4515. }
  4516. a.list-group-item .list-group-item-heading {
  4517. color: #333333;
  4518. }
  4519. a.list-group-item:hover,
  4520. a.list-group-item:focus {
  4521. text-decoration: none;
  4522. background-color: #f5f5f5;
  4523. }
  4524. .list-group-item.active,
  4525. .list-group-item.active:hover,
  4526. .list-group-item.active:focus {
  4527. z-index: 2;
  4528. color: #ffffff;
  4529. background-color: #728eac;
  4530. border-color: #728eac;
  4531. }
  4532. .list-group-item.active .list-group-item-heading,
  4533. .list-group-item.active:hover .list-group-item-heading,
  4534. .list-group-item.active:focus .list-group-item-heading {
  4535. color: inherit;
  4536. }
  4537. .list-group-item.active .list-group-item-text,
  4538. .list-group-item.active:hover .list-group-item-text,
  4539. .list-group-item.active:focus .list-group-item-text {
  4540. color: #f2f5f8;
  4541. }
  4542. .list-group-item-heading {
  4543. margin-top: 0;
  4544. margin-bottom: 5px;
  4545. }
  4546. .list-group-item-text {
  4547. margin-bottom: 0;
  4548. line-height: 1.3;
  4549. }
  4550. .panel {
  4551. margin-bottom: 20px;
  4552. background-color: #dce2f9;
  4553. border: 1px solid transparent;
  4554. border-radius: 4px;
  4555. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  4556. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  4557. }
  4558. .panel-body {
  4559. padding: 15px;
  4560. }
  4561. .panel-body:before,
  4562. .panel-body:after {
  4563. content: " ";
  4564. /* 1 */
  4565. display: table;
  4566. /* 2 */
  4567. }
  4568. .panel-body:after {
  4569. clear: both;
  4570. }
  4571. .panel-body:before,
  4572. .panel-body:after {
  4573. content: " ";
  4574. /* 1 */
  4575. display: table;
  4576. /* 2 */
  4577. }
  4578. .panel-body:after {
  4579. clear: both;
  4580. }
  4581. .panel > .list-group {
  4582. margin-bottom: 0;
  4583. }
  4584. .panel > .list-group .list-group-item {
  4585. border-width: 1px 0;
  4586. }
  4587. .panel > .list-group .list-group-item:first-child {
  4588. border-top-right-radius: 0;
  4589. border-top-left-radius: 0;
  4590. }
  4591. .panel > .list-group .list-group-item:last-child {
  4592. border-bottom: 0;
  4593. }
  4594. .panel-heading + .list-group .list-group-item:first-child {
  4595. border-top-width: 0;
  4596. }
  4597. .panel > .table {
  4598. margin-bottom: 0;
  4599. }
  4600. .panel > .panel-body + .table {
  4601. border-top: 1px solid #5c799c;
  4602. }
  4603. .panel-heading {
  4604. padding: 10px 15px;
  4605. border-bottom: 1px solid transparent;
  4606. border-top-right-radius: 3px;
  4607. border-top-left-radius: 3px;
  4608. }
  4609. .panel-title {
  4610. margin-top: 0;
  4611. margin-bottom: 0;
  4612. font-size: 16px;
  4613. }
  4614. .panel-title > a {
  4615. color: inherit;
  4616. }
  4617. .panel-footer {
  4618. padding: 10px 15px;
  4619. background-color: #f5f5f5;
  4620. border-top: 1px solid #dddddd;
  4621. border-bottom-right-radius: 3px;
  4622. border-bottom-left-radius: 3px;
  4623. }
  4624. .panel-group .panel {
  4625. margin-bottom: 0;
  4626. border-radius: 4px;
  4627. overflow: hidden;
  4628. }
  4629. .panel-group .panel + .panel {
  4630. margin-top: 5px;
  4631. }
  4632. .panel-group .panel-heading {
  4633. border-bottom: 0;
  4634. }
  4635. .panel-group .panel-heading + .panel-collapse .panel-body {
  4636. border-top: 1px solid #dddddd;
  4637. }
  4638. .panel-group .panel-footer {
  4639. border-top: 0;
  4640. }
  4641. .panel-group .panel-footer + .panel-collapse .panel-body {
  4642. border-bottom: 1px solid #dddddd;
  4643. }
  4644. .panel-default {
  4645. border-color: #dddddd;
  4646. }
  4647. .panel-default > .panel-heading {
  4648. color: #5c799c;
  4649. background-color: #f5f5f5;
  4650. border-color: #dddddd;
  4651. }
  4652. .panel-default > .panel-heading + .panel-collapse .panel-body {
  4653. border-top-color: #dddddd;
  4654. }
  4655. .panel-default > .panel-footer + .panel-collapse .panel-body {
  4656. border-bottom-color: #dddddd;
  4657. }
  4658. .panel-primary {
  4659. border-color: #728eac;
  4660. }
  4661. .panel-primary > .panel-heading {
  4662. color: #ffffff;
  4663. background-color: #728eac;
  4664. border-color: #728eac;
  4665. }
  4666. .panel-primary > .panel-heading + .panel-collapse .panel-body {
  4667. border-top-color: #728eac;
  4668. }
  4669. .panel-primary > .panel-footer + .panel-collapse .panel-body {
  4670. border-bottom-color: #728eac;
  4671. }
  4672. .panel-success {
  4673. border-color: #d6e9c6;
  4674. }
  4675. .panel-success > .panel-heading {
  4676. color: #468847;
  4677. background-color: #dff0d8;
  4678. border-color: #d6e9c6;
  4679. }
  4680. .panel-success > .panel-heading + .panel-collapse .panel-body {
  4681. border-top-color: #d6e9c6;
  4682. }
  4683. .panel-success > .panel-footer + .panel-collapse .panel-body {
  4684. border-bottom-color: #d6e9c6;
  4685. }
  4686. .panel-warning {
  4687. border-color: #fbeed5;
  4688. }
  4689. .panel-warning > .panel-heading {
  4690. color: #c09853;
  4691. background-color: #fcf8e3;
  4692. border-color: #fbeed5;
  4693. }
  4694. .panel-warning > .panel-heading + .panel-collapse .panel-body {
  4695. border-top-color: #fbeed5;
  4696. }
  4697. .panel-warning > .panel-footer + .panel-collapse .panel-body {
  4698. border-bottom-color: #fbeed5;
  4699. }
  4700. .panel-danger {
  4701. border-color: #eed3d7;
  4702. }
  4703. .panel-danger > .panel-heading {
  4704. color: #b94a48;
  4705. background-color: #f2dede;
  4706. border-color: #eed3d7;
  4707. }
  4708. .panel-danger > .panel-heading + .panel-collapse .panel-body {
  4709. border-top-color: #eed3d7;
  4710. }
  4711. .panel-danger > .panel-footer + .panel-collapse .panel-body {
  4712. border-bottom-color: #eed3d7;
  4713. }
  4714. .panel-info {
  4715. border-color: #bce8f1;
  4716. }
  4717. .panel-info > .panel-heading {
  4718. color: #3a87ad;
  4719. background-color: #d9edf7;
  4720. border-color: #bce8f1;
  4721. }
  4722. .panel-info > .panel-heading + .panel-collapse .panel-body {
  4723. border-top-color: #bce8f1;
  4724. }
  4725. .panel-info > .panel-footer + .panel-collapse .panel-body {
  4726. border-bottom-color: #bce8f1;
  4727. }
  4728. .well {
  4729. min-height: 20px;
  4730. padding: 19px;
  4731. margin-bottom: 20px;
  4732. background-color: #f5f5f5;
  4733. border: 1px solid #e3e3e3;
  4734. border-radius: 4px;
  4735. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  4736. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  4737. }
  4738. .well blockquote {
  4739. border-color: #ddd;
  4740. border-color: rgba(0, 0, 0, 0.15);
  4741. }
  4742. .well-lg {
  4743. padding: 24px;
  4744. border-radius: 6px;
  4745. }
  4746. .well-sm {
  4747. padding: 9px;
  4748. border-radius: 3px;
  4749. }
  4750. .close {
  4751. float: right;
  4752. font-size: 21px;
  4753. font-weight: bold;
  4754. line-height: 1;
  4755. color: #000000;
  4756. text-shadow: 0 1px 0 #ffffff;
  4757. opacity: 0.2;
  4758. filter: alpha(opacity=20);
  4759. }
  4760. .close:hover,
  4761. .close:focus {
  4762. color: #000000;
  4763. text-decoration: none;
  4764. cursor: pointer;
  4765. opacity: 0.5;
  4766. filter: alpha(opacity=50);
  4767. }
  4768. button.close {
  4769. padding: 0;
  4770. cursor: pointer;
  4771. background: transparent;
  4772. border: 0;
  4773. -webkit-appearance: none;
  4774. }
  4775. .modal-open {
  4776. overflow: hidden;
  4777. }
  4778. body.modal-open,
  4779. .modal-open .navbar-fixed-top,
  4780. .modal-open .navbar-fixed-bottom {
  4781. margin-right: 15px;
  4782. }
  4783. .modal {
  4784. display: none;
  4785. overflow: auto;
  4786. overflow-y: scroll;
  4787. position: fixed;
  4788. top: 0;
  4789. right: 0;
  4790. bottom: 0;
  4791. left: 0;
  4792. z-index: 1040;
  4793. }
  4794. .modal.fade .modal-dialog {
  4795. -webkit-transform: translate(0, -25%);
  4796. -ms-transform: translate(0, -25%);
  4797. transform: translate(0, -25%);
  4798. -webkit-transition: -webkit-transform 0.3s ease-out;
  4799. -moz-transition: -moz-transform 0.3s ease-out;
  4800. -o-transition: -o-transform 0.3s ease-out;
  4801. transition: transform 0.3s ease-out;
  4802. }
  4803. .modal.in .modal-dialog {
  4804. -webkit-transform: translate(0, 0);
  4805. -ms-transform: translate(0, 0);
  4806. transform: translate(0, 0);
  4807. }
  4808. .modal-dialog {
  4809. margin-left: auto;
  4810. margin-right: auto;
  4811. width: auto;
  4812. padding: 10px;
  4813. z-index: 1050;
  4814. }
  4815. .modal-content {
  4816. position: relative;
  4817. background-color: #ffffff;
  4818. border: 1px solid #999999;
  4819. border: 1px solid rgba(0, 0, 0, 0.2);
  4820. border-radius: 6px;
  4821. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  4822. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  4823. background-clip: padding-box;
  4824. outline: none;
  4825. }
  4826. .modal-backdrop {
  4827. position: fixed;
  4828. top: 0;
  4829. right: 0;
  4830. bottom: 0;
  4831. left: 0;
  4832. z-index: 1030;
  4833. background-color: #000000;
  4834. }
  4835. .modal-backdrop.fade {
  4836. opacity: 0;
  4837. filter: alpha(opacity=0);
  4838. }
  4839. .modal-backdrop.in {
  4840. opacity: 0.5;
  4841. filter: alpha(opacity=50);
  4842. }
  4843. .modal-header {
  4844. padding: 15px;
  4845. border-bottom: 1px solid #e5e5e5;
  4846. min-height: 16.428571429px;
  4847. }
  4848. .modal-header .close {
  4849. margin-top: -2px;
  4850. }
  4851. .modal-title {
  4852. margin: 0;
  4853. line-height: 1.428571429;
  4854. }
  4855. .modal-body {
  4856. position: relative;
  4857. padding: 20px;
  4858. }
  4859. .modal-footer {
  4860. margin-top: 15px;
  4861. padding: 19px 20px 20px;
  4862. text-align: right;
  4863. border-top: 1px solid #e5e5e5;
  4864. }
  4865. .modal-footer:before,
  4866. .modal-footer:after {
  4867. content: " ";
  4868. /* 1 */
  4869. display: table;
  4870. /* 2 */
  4871. }
  4872. .modal-footer:after {
  4873. clear: both;
  4874. }
  4875. .modal-footer:before,
  4876. .modal-footer:after {
  4877. content: " ";
  4878. /* 1 */
  4879. display: table;
  4880. /* 2 */
  4881. }
  4882. .modal-footer:after {
  4883. clear: both;
  4884. }
  4885. .modal-footer .btn + .btn {
  4886. margin-left: 5px;
  4887. margin-bottom: 0;
  4888. }
  4889. .modal-footer .btn-group .btn + .btn {
  4890. margin-left: -1px;
  4891. }
  4892. .modal-footer .btn-block + .btn-block {
  4893. margin-left: 0;
  4894. }
  4895. @media screen and (min-width: 768px) {
  4896. .modal-dialog {
  4897. right: auto;
  4898. width: 600px;
  4899. padding-top: 30px;
  4900. padding-bottom: 30px;
  4901. }
  4902. .modal-content {
  4903. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  4904. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  4905. }
  4906. }
  4907. .tooltip {
  4908. position: absolute;
  4909. z-index: 1030;
  4910. display: block;
  4911. visibility: visible;
  4912. font-size: 12px;
  4913. line-height: 1.4;
  4914. opacity: 0;
  4915. filter: alpha(opacity=0);
  4916. }
  4917. .tooltip.in {
  4918. opacity: 0.9;
  4919. filter: alpha(opacity=90);
  4920. }
  4921. .tooltip.top {
  4922. margin-top: -3px;
  4923. padding: 5px 0;
  4924. }
  4925. .tooltip.right {
  4926. margin-left: 3px;
  4927. padding: 0 5px;
  4928. }
  4929. .tooltip.bottom {
  4930. margin-top: 3px;
  4931. padding: 5px 0;
  4932. }
  4933. .tooltip.left {
  4934. margin-left: -3px;
  4935. padding: 0 5px;
  4936. }
  4937. .tooltip-inner {
  4938. max-width: 200px;
  4939. padding: 3px 8px;
  4940. color: #ffffff;
  4941. text-align: center;
  4942. text-decoration: none;
  4943. background-color: #000000;
  4944. border-radius: 4px;
  4945. }
  4946. .tooltip-arrow {
  4947. position: absolute;
  4948. width: 0;
  4949. height: 0;
  4950. border-color: transparent;
  4951. border-style: solid;
  4952. }
  4953. .tooltip.top .tooltip-arrow {
  4954. bottom: 0;
  4955. left: 50%;
  4956. margin-left: -5px;
  4957. border-width: 5px 5px 0;
  4958. border-top-color: #000000;
  4959. }
  4960. .tooltip.top-left .tooltip-arrow {
  4961. bottom: 0;
  4962. left: 5px;
  4963. border-width: 5px 5px 0;
  4964. border-top-color: #000000;
  4965. }
  4966. .tooltip.top-right .tooltip-arrow {
  4967. bottom: 0;
  4968. right: 5px;
  4969. border-width: 5px 5px 0;
  4970. border-top-color: #000000;
  4971. }
  4972. .tooltip.right .tooltip-arrow {
  4973. top: 50%;
  4974. left: 0;
  4975. margin-top: -5px;
  4976. border-width: 5px 5px 5px 0;
  4977. border-right-color: #000000;
  4978. }
  4979. .tooltip.left .tooltip-arrow {
  4980. top: 50%;
  4981. right: 0;
  4982. margin-top: -5px;
  4983. border-width: 5px 0 5px 5px;
  4984. border-left-color: #000000;
  4985. }
  4986. .tooltip.bottom .tooltip-arrow {
  4987. top: 0;
  4988. left: 50%;
  4989. margin-left: -5px;
  4990. border-width: 0 5px 5px;
  4991. border-bottom-color: #000000;
  4992. }
  4993. .tooltip.bottom-left .tooltip-arrow {
  4994. top: 0;
  4995. left: 5px;
  4996. border-width: 0 5px 5px;
  4997. border-bottom-color: #000000;
  4998. }
  4999. .tooltip.bottom-right .tooltip-arrow {
  5000. top: 0;
  5001. right: 5px;
  5002. border-width: 0 5px 5px;
  5003. border-bottom-color: #000000;
  5004. }
  5005. .popover {
  5006. position: absolute;
  5007. top: 0;
  5008. left: 0;
  5009. z-index: 1010;
  5010. display: none;
  5011. max-width: 276px;
  5012. padding: 1px;
  5013. text-align: left;
  5014. background-color: #ffffff;
  5015. background-clip: padding-box;
  5016. border: 1px solid #cccccc;
  5017. border: 1px solid rgba(0, 0, 0, 0.2);
  5018. border-radius: 6px;
  5019. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  5020. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  5021. white-space: normal;
  5022. }
  5023. .popover.top {
  5024. margin-top: -10px;
  5025. }
  5026. .popover.right {
  5027. margin-left: 10px;
  5028. }
  5029. .popover.bottom {
  5030. margin-top: 10px;
  5031. }
  5032. .popover.left {
  5033. margin-left: -10px;
  5034. }
  5035. .popover-title {
  5036. margin: 0;
  5037. padding: 8px 14px;
  5038. font-size: 14px;
  5039. font-weight: normal;
  5040. line-height: 18px;
  5041. background-color: #f7f7f7;
  5042. border-bottom: 1px solid #ebebeb;
  5043. border-radius: 5px 5px 0 0;
  5044. }
  5045. .popover-content {
  5046. padding: 9px 14px;
  5047. }
  5048. .popover .arrow,
  5049. .popover .arrow:after {
  5050. position: absolute;
  5051. display: block;
  5052. width: 0;
  5053. height: 0;
  5054. border-color: transparent;
  5055. border-style: solid;
  5056. }
  5057. .popover .arrow {
  5058. border-width: 11px;
  5059. }
  5060. .popover .arrow:after {
  5061. border-width: 10px;
  5062. content: "";
  5063. }
  5064. .popover.top .arrow {
  5065. left: 50%;
  5066. margin-left: -11px;
  5067. border-bottom-width: 0;
  5068. border-top-color: #999999;
  5069. border-top-color: rgba(0, 0, 0, 0.25);
  5070. bottom: -11px;
  5071. }
  5072. .popover.top .arrow:after {
  5073. content: " ";
  5074. bottom: 1px;
  5075. margin-left: -10px;
  5076. border-bottom-width: 0;
  5077. border-top-color: #ffffff;
  5078. }
  5079. .popover.right .arrow {
  5080. top: 50%;
  5081. left: -11px;
  5082. margin-top: -11px;
  5083. border-left-width: 0;
  5084. border-right-color: #999999;
  5085. border-right-color: rgba(0, 0, 0, 0.25);
  5086. }
  5087. .popover.right .arrow:after {
  5088. content: " ";
  5089. left: 1px;
  5090. bottom: -10px;
  5091. border-left-width: 0;
  5092. border-right-color: #ffffff;
  5093. }
  5094. .popover.bottom .arrow {
  5095. left: 50%;
  5096. margin-left: -11px;
  5097. border-top-width: 0;
  5098. border-bottom-color: #999999;
  5099. border-bottom-color: rgba(0, 0, 0, 0.25);
  5100. top: -11px;
  5101. }
  5102. .popover.bottom .arrow:after {
  5103. content: " ";
  5104. top: 1px;
  5105. margin-left: -10px;
  5106. border-top-width: 0;
  5107. border-bottom-color: #ffffff;
  5108. }
  5109. .popover.left .arrow {
  5110. top: 50%;
  5111. right: -11px;
  5112. margin-top: -11px;
  5113. border-right-width: 0;
  5114. border-left-color: #999999;
  5115. border-left-color: rgba(0, 0, 0, 0.25);
  5116. }
  5117. .popover.left .arrow:after {
  5118. content: " ";
  5119. right: 1px;
  5120. border-right-width: 0;
  5121. border-left-color: #ffffff;
  5122. bottom: -10px;
  5123. }
  5124. .carousel {
  5125. position: relative;
  5126. }
  5127. .carousel-inner {
  5128. position: relative;
  5129. overflow: hidden;
  5130. width: 100%;
  5131. }
  5132. .carousel-inner > .item {
  5133. display: none;
  5134. position: relative;
  5135. -webkit-transition: 0.6s ease-in-out left;
  5136. transition: 0.6s ease-in-out left;
  5137. }
  5138. .carousel-inner > .item > img,
  5139. .carousel-inner > .item > a > img {
  5140. display: block;
  5141. max-width: 100%;
  5142. height: auto;
  5143. line-height: 1;
  5144. }
  5145. .carousel-inner > .active,
  5146. .carousel-inner > .next,
  5147. .carousel-inner > .prev {
  5148. display: block;
  5149. }
  5150. .carousel-inner > .active {
  5151. left: 0;
  5152. }
  5153. .carousel-inner > .next,
  5154. .carousel-inner > .prev {
  5155. position: absolute;
  5156. top: 0;
  5157. width: 100%;
  5158. }
  5159. .carousel-inner > .next {
  5160. left: 100%;
  5161. }
  5162. .carousel-inner > .prev {
  5163. left: -100%;
  5164. }
  5165. .carousel-inner > .next.left,
  5166. .carousel-inner > .prev.right {
  5167. left: 0;
  5168. }
  5169. .carousel-inner > .active.left {
  5170. left: -100%;
  5171. }
  5172. .carousel-inner > .active.right {
  5173. left: 100%;
  5174. }
  5175. .carousel-control {
  5176. position: absolute;
  5177. top: 0;
  5178. left: 0;
  5179. bottom: 0;
  5180. width: 15%;
  5181. opacity: 0.5;
  5182. filter: alpha(opacity=50);
  5183. font-size: 20px;
  5184. color: #ffffff;
  5185. text-align: center;
  5186. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  5187. }
  5188. .carousel-control.left {
  5189. background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  5190. background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
  5191. background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  5192. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  5193. background-repeat: repeat-x;
  5194. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  5195. }
  5196. .carousel-control.right {
  5197. left: auto;
  5198. right: 0;
  5199. background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  5200. background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
  5201. background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  5202. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  5203. background-repeat: repeat-x;
  5204. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  5205. }
  5206. .carousel-control:hover,
  5207. .carousel-control:focus {
  5208. color: #ffffff;
  5209. text-decoration: none;
  5210. opacity: 0.9;
  5211. filter: alpha(opacity=90);
  5212. }
  5213. .carousel-control .icon-prev,
  5214. .carousel-control .icon-next,
  5215. .carousel-control .glyphicon-chevron-left,
  5216. .carousel-control .glyphicon-chevron-right {
  5217. position: absolute;
  5218. top: 50%;
  5219. left: 50%;
  5220. z-index: 5;
  5221. display: inline-block;
  5222. }
  5223. .carousel-control .icon-prev,
  5224. .carousel-control .icon-next {
  5225. width: 20px;
  5226. height: 20px;
  5227. margin-top: -10px;
  5228. margin-left: -10px;
  5229. font-family: serif;
  5230. }
  5231. .carousel-control .icon-prev:before {
  5232. content: '\2039';
  5233. }
  5234. .carousel-control .icon-next:before {
  5235. content: '\203a';
  5236. }
  5237. .carousel-indicators {
  5238. position: absolute;
  5239. bottom: 10px;
  5240. left: 50%;
  5241. z-index: 15;
  5242. width: 60%;
  5243. margin-left: -30%;
  5244. padding-left: 0;
  5245. list-style: none;
  5246. text-align: center;
  5247. }
  5248. .carousel-indicators li {
  5249. display: inline-block;
  5250. width: 10px;
  5251. height: 10px;
  5252. margin: 1px;
  5253. text-indent: -999px;
  5254. border: 1px solid #ffffff;
  5255. border-radius: 10px;
  5256. cursor: pointer;
  5257. }
  5258. .carousel-indicators .active {
  5259. margin: 0;
  5260. width: 12px;
  5261. height: 12px;
  5262. background-color: #ffffff;
  5263. }
  5264. .carousel-caption {
  5265. position: absolute;
  5266. left: 15%;
  5267. right: 15%;
  5268. bottom: 20px;
  5269. z-index: 10;
  5270. padding-top: 20px;
  5271. padding-bottom: 20px;
  5272. color: #ffffff;
  5273. text-align: center;
  5274. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  5275. }
  5276. .carousel-caption .btn {
  5277. text-shadow: none;
  5278. }
  5279. @media screen and (min-width: 768px) {
  5280. .carousel-control .icon-prev,
  5281. .carousel-control .icon-next {
  5282. width: 30px;
  5283. height: 30px;
  5284. margin-top: -15px;
  5285. margin-left: -15px;
  5286. font-size: 30px;
  5287. }
  5288. .carousel-caption {
  5289. left: 20%;
  5290. right: 20%;
  5291. padding-bottom: 30px;
  5292. }
  5293. .carousel-indicators {
  5294. bottom: 20px;
  5295. }
  5296. }
  5297. .clearfix:before,
  5298. .clearfix:after {
  5299. content: " ";
  5300. /* 1 */
  5301. display: table;
  5302. /* 2 */
  5303. }
  5304. .clearfix:after {
  5305. clear: both;
  5306. }
  5307. .pull-right {
  5308. float: right !important;
  5309. }
  5310. .pull-left {
  5311. float: left !important;
  5312. }
  5313. .hide {
  5314. display: none !important;
  5315. }
  5316. .show {
  5317. display: block !important;
  5318. }
  5319. .invisible {
  5320. visibility: hidden;
  5321. }
  5322. .text-hide {
  5323. font: 0/0 a;
  5324. color: transparent;
  5325. text-shadow: none;
  5326. background-color: transparent;
  5327. border: 0;
  5328. }
  5329. .affix {
  5330. position: fixed;
  5331. }
  5332. @-ms-viewport {
  5333. width: device-width;
  5334. }
  5335. @media screen and (max-width: 400px) {
  5336. @-ms-viewport {
  5337. width: 320px;
  5338. }
  5339. }
  5340. .hidden {
  5341. display: none !important;
  5342. visibility: hidden !important;
  5343. }
  5344. .visible-xs {
  5345. display: none !important;
  5346. }
  5347. tr.visible-xs {
  5348. display: none !important;
  5349. }
  5350. th.visible-xs,
  5351. td.visible-xs {
  5352. display: none !important;
  5353. }
  5354. @media (max-width: 767px) {
  5355. .visible-xs {
  5356. display: block !important;
  5357. }
  5358. tr.visible-xs {
  5359. display: table-row !important;
  5360. }
  5361. th.visible-xs,
  5362. td.visible-xs {
  5363. display: table-cell !important;
  5364. }
  5365. }
  5366. @media (min-width: 768px) and (max-width: 991px) {
  5367. .visible-xs.visible-sm {
  5368. display: block !important;
  5369. }
  5370. tr.visible-xs.visible-sm {
  5371. display: table-row !important;
  5372. }
  5373. th.visible-xs.visible-sm,
  5374. td.visible-xs.visible-sm {
  5375. display: table-cell !important;
  5376. }
  5377. }
  5378. @media (min-width: 992px) and (max-width: 1199px) {
  5379. .visible-xs.visible-md {
  5380. display: block !important;
  5381. }
  5382. tr.visible-xs.visible-md {
  5383. display: table-row !important;
  5384. }
  5385. th.visible-xs.visible-md,
  5386. td.visible-xs.visible-md {
  5387. display: table-cell !important;
  5388. }
  5389. }
  5390. @media (min-width: 1200px) {
  5391. .visible-xs.visible-lg {
  5392. display: block !important;
  5393. }
  5394. tr.visible-xs.visible-lg {
  5395. display: table-row !important;
  5396. }
  5397. th.visible-xs.visible-lg,
  5398. td.visible-xs.visible-lg {
  5399. display: table-cell !important;
  5400. }
  5401. }
  5402. .visible-sm {
  5403. display: none !important;
  5404. }
  5405. tr.visible-sm {
  5406. display: none !important;
  5407. }
  5408. th.visible-sm,
  5409. td.visible-sm {
  5410. display: none !important;
  5411. }
  5412. @media (max-width: 767px) {
  5413. .visible-sm.visible-xs {
  5414. display: block !important;
  5415. }
  5416. tr.visible-sm.visible-xs {
  5417. display: table-row !important;
  5418. }
  5419. th.visible-sm.visible-xs,
  5420. td.visible-sm.visible-xs {
  5421. display: table-cell !important;
  5422. }
  5423. }
  5424. @media (min-width: 768px) and (max-width: 991px) {
  5425. .visible-sm {
  5426. display: block !important;
  5427. }
  5428. tr.visible-sm {
  5429. display: table-row !important;
  5430. }
  5431. th.visible-sm,
  5432. td.visible-sm {
  5433. display: table-cell !important;
  5434. }
  5435. }
  5436. @media (min-width: 992px) and (max-width: 1199px) {
  5437. .visible-sm.visible-md {
  5438. display: block !important;
  5439. }
  5440. tr.visible-sm.visible-md {
  5441. display: table-row !important;
  5442. }
  5443. th.visible-sm.visible-md,
  5444. td.visible-sm.visible-md {
  5445. display: table-cell !important;
  5446. }
  5447. }
  5448. @media (min-width: 1200px) {
  5449. .visible-sm.visible-lg {
  5450. display: block !important;
  5451. }
  5452. tr.visible-sm.visible-lg {
  5453. display: table-row !important;
  5454. }
  5455. th.visible-sm.visible-lg,
  5456. td.visible-sm.visible-lg {
  5457. display: table-cell !important;
  5458. }
  5459. }
  5460. .visible-md {
  5461. display: none !important;
  5462. }
  5463. tr.visible-md {
  5464. display: none !important;
  5465. }
  5466. th.visible-md,
  5467. td.visible-md {
  5468. display: none !important;
  5469. }
  5470. @media (max-width: 767px) {
  5471. .visible-md.visible-xs {
  5472. display: block !important;
  5473. }
  5474. tr.visible-md.visible-xs {
  5475. display: table-row !important;
  5476. }
  5477. th.visible-md.visible-xs,
  5478. td.visible-md.visible-xs {
  5479. display: table-cell !important;
  5480. }
  5481. }
  5482. @media (min-width: 768px) and (max-width: 991px) {
  5483. .visible-md.visible-sm {
  5484. display: block !important;
  5485. }
  5486. tr.visible-md.visible-sm {
  5487. display: table-row !important;
  5488. }
  5489. th.visible-md.visible-sm,
  5490. td.visible-md.visible-sm {
  5491. display: table-cell !important;
  5492. }
  5493. }
  5494. @media (min-width: 992px) and (max-width: 1199px) {
  5495. .visible-md {
  5496. display: block !important;
  5497. }
  5498. tr.visible-md {
  5499. display: table-row !important;
  5500. }
  5501. th.visible-md,
  5502. td.visible-md {
  5503. display: table-cell !important;
  5504. }
  5505. }
  5506. @media (min-width: 1200px) {
  5507. .visible-md.visible-lg {
  5508. display: block !important;
  5509. }
  5510. tr.visible-md.visible-lg {
  5511. display: table-row !important;
  5512. }
  5513. th.visible-md.visible-lg,
  5514. td.visible-md.visible-lg {
  5515. display: table-cell !important;
  5516. }
  5517. }
  5518. .visible-lg {
  5519. display: none !important;
  5520. }
  5521. tr.visible-lg {
  5522. display: none !important;
  5523. }
  5524. th.visible-lg,
  5525. td.visible-lg {
  5526. display: none !important;
  5527. }
  5528. @media (max-width: 767px) {
  5529. .visible-lg.visible-xs {
  5530. display: block !important;
  5531. }
  5532. tr.visible-lg.visible-xs {
  5533. display: table-row !important;
  5534. }
  5535. th.visible-lg.visible-xs,
  5536. td.visible-lg.visible-xs {
  5537. display: table-cell !important;
  5538. }
  5539. }
  5540. @media (min-width: 768px) and (max-width: 991px) {
  5541. .visible-lg.visible-sm {
  5542. display: block !important;
  5543. }
  5544. tr.visible-lg.visible-sm {
  5545. display: table-row !important;
  5546. }
  5547. th.visible-lg.visible-sm,
  5548. td.visible-lg.visible-sm {
  5549. display: table-cell !important;
  5550. }
  5551. }
  5552. @media (min-width: 992px) and (max-width: 1199px) {
  5553. .visible-lg.visible-md {
  5554. display: block !important;
  5555. }
  5556. tr.visible-lg.visible-md {
  5557. display: table-row !important;
  5558. }
  5559. th.visible-lg.visible-md,
  5560. td.visible-lg.visible-md {
  5561. display: table-cell !important;
  5562. }
  5563. }
  5564. @media (min-width: 1200px) {
  5565. .visible-lg {
  5566. display: block !important;
  5567. }
  5568. tr.visible-lg {
  5569. display: table-row !important;
  5570. }
  5571. th.visible-lg,
  5572. td.visible-lg {
  5573. display: table-cell !important;
  5574. }
  5575. }
  5576. .hidden-xs {
  5577. display: block !important;
  5578. }
  5579. tr.hidden-xs {
  5580. display: table-row !important;
  5581. }
  5582. th.hidden-xs,
  5583. td.hidden-xs {
  5584. display: table-cell !important;
  5585. }
  5586. @media (max-width: 767px) {
  5587. .hidden-xs {
  5588. display: none !important;
  5589. }
  5590. tr.hidden-xs {
  5591. display: none !important;
  5592. }
  5593. th.hidden-xs,
  5594. td.hidden-xs {
  5595. display: none !important;
  5596. }
  5597. }
  5598. @media (min-width: 768px) and (max-width: 991px) {
  5599. .hidden-xs.hidden-sm {
  5600. display: none !important;
  5601. }
  5602. tr.hidden-xs.hidden-sm {
  5603. display: none !important;
  5604. }
  5605. th.hidden-xs.hidden-sm,
  5606. td.hidden-xs.hidden-sm {
  5607. display: none !important;
  5608. }
  5609. }
  5610. @media (min-width: 992px) and (max-width: 1199px) {
  5611. .hidden-xs.hidden-md {
  5612. display: none !important;
  5613. }
  5614. tr.hidden-xs.hidden-md {
  5615. display: none !important;
  5616. }
  5617. th.hidden-xs.hidden-md,
  5618. td.hidden-xs.hidden-md {
  5619. display: none !important;
  5620. }
  5621. }
  5622. @media (min-width: 1200px) {
  5623. .hidden-xs.hidden-lg {
  5624. display: none !important;
  5625. }
  5626. tr.hidden-xs.hidden-lg {
  5627. display: none !important;
  5628. }
  5629. th.hidden-xs.hidden-lg,
  5630. td.hidden-xs.hidden-lg {
  5631. display: none !important;
  5632. }
  5633. }
  5634. .hidden-sm {
  5635. display: block !important;
  5636. }
  5637. tr.hidden-sm {
  5638. display: table-row !important;
  5639. }
  5640. th.hidden-sm,
  5641. td.hidden-sm {
  5642. display: table-cell !important;
  5643. }
  5644. @media (max-width: 767px) {
  5645. .hidden-sm.hidden-xs {
  5646. display: none !important;
  5647. }
  5648. tr.hidden-sm.hidden-xs {
  5649. display: none !important;
  5650. }
  5651. th.hidden-sm.hidden-xs,
  5652. td.hidden-sm.hidden-xs {
  5653. display: none !important;
  5654. }
  5655. }
  5656. @media (min-width: 768px) and (max-width: 991px) {
  5657. .hidden-sm {
  5658. display: none !important;
  5659. }
  5660. tr.hidden-sm {
  5661. display: none !important;
  5662. }
  5663. th.hidden-sm,
  5664. td.hidden-sm {
  5665. display: none !important;
  5666. }
  5667. }
  5668. @media (min-width: 992px) and (max-width: 1199px) {
  5669. .hidden-sm.hidden-md {
  5670. display: none !important;
  5671. }
  5672. tr.hidden-sm.hidden-md {
  5673. display: none !important;
  5674. }
  5675. th.hidden-sm.hidden-md,
  5676. td.hidden-sm.hidden-md {
  5677. display: none !important;
  5678. }
  5679. }
  5680. @media (min-width: 1200px) {
  5681. .hidden-sm.hidden-lg {
  5682. display: none !important;
  5683. }
  5684. tr.hidden-sm.hidden-lg {
  5685. display: none !important;
  5686. }
  5687. th.hidden-sm.hidden-lg,
  5688. td.hidden-sm.hidden-lg {
  5689. display: none !important;
  5690. }
  5691. }
  5692. .hidden-md {
  5693. display: block !important;
  5694. }
  5695. tr.hidden-md {
  5696. display: table-row !important;
  5697. }
  5698. th.hidden-md,
  5699. td.hidden-md {
  5700. display: table-cell !important;
  5701. }
  5702. @media (max-width: 767px) {
  5703. .hidden-md.hidden-xs {
  5704. display: none !important;
  5705. }
  5706. tr.hidden-md.hidden-xs {
  5707. display: none !important;
  5708. }
  5709. th.hidden-md.hidden-xs,
  5710. td.hidden-md.hidden-xs {
  5711. display: none !important;
  5712. }
  5713. }
  5714. @media (min-width: 768px) and (max-width: 991px) {
  5715. .hidden-md.hidden-sm {
  5716. display: none !important;
  5717. }
  5718. tr.hidden-md.hidden-sm {
  5719. display: none !important;
  5720. }
  5721. th.hidden-md.hidden-sm,
  5722. td.hidden-md.hidden-sm {
  5723. display: none !important;
  5724. }
  5725. }
  5726. @media (min-width: 992px) and (max-width: 1199px) {
  5727. .hidden-md {
  5728. display: none !important;
  5729. }
  5730. tr.hidden-md {
  5731. display: none !important;
  5732. }
  5733. th.hidden-md,
  5734. td.hidden-md {
  5735. display: none !important;
  5736. }
  5737. }
  5738. @media (min-width: 1200px) {
  5739. .hidden-md.hidden-lg {
  5740. display: none !important;
  5741. }
  5742. tr.hidden-md.hidden-lg {
  5743. display: none !important;
  5744. }
  5745. th.hidden-md.hidden-lg,
  5746. td.hidden-md.hidden-lg {
  5747. display: none !important;
  5748. }
  5749. }
  5750. .hidden-lg {
  5751. display: block !important;
  5752. }
  5753. tr.hidden-lg {
  5754. display: table-row !important;
  5755. }
  5756. th.hidden-lg,
  5757. td.hidden-lg {
  5758. display: table-cell !important;
  5759. }
  5760. @media (max-width: 767px) {
  5761. .hidden-lg.hidden-xs {
  5762. display: none !important;
  5763. }
  5764. tr.hidden-lg.hidden-xs {
  5765. display: none !important;
  5766. }
  5767. th.hidden-lg.hidden-xs,
  5768. td.hidden-lg.hidden-xs {
  5769. display: none !important;
  5770. }
  5771. }
  5772. @media (min-width: 768px) and (max-width: 991px) {
  5773. .hidden-lg.hidden-sm {
  5774. display: none !important;
  5775. }
  5776. tr.hidden-lg.hidden-sm {
  5777. display: none !important;
  5778. }
  5779. th.hidden-lg.hidden-sm,
  5780. td.hidden-lg.hidden-sm {
  5781. display: none !important;
  5782. }
  5783. }
  5784. @media (min-width: 992px) and (max-width: 1199px) {
  5785. .hidden-lg.hidden-md {
  5786. display: none !important;
  5787. }
  5788. tr.hidden-lg.hidden-md {
  5789. display: none !important;
  5790. }
  5791. th.hidden-lg.hidden-md,
  5792. td.hidden-lg.hidden-md {
  5793. display: none !important;
  5794. }
  5795. }
  5796. @media (min-width: 1200px) {
  5797. .hidden-lg {
  5798. display: none !important;
  5799. }
  5800. tr.hidden-lg {
  5801. display: none !important;
  5802. }
  5803. th.hidden-lg,
  5804. td.hidden-lg {
  5805. display: none !important;
  5806. }
  5807. }
  5808. .visible-print {
  5809. display: none !important;
  5810. }
  5811. tr.visible-print {
  5812. display: none !important;
  5813. }
  5814. th.visible-print,
  5815. td.visible-print {
  5816. display: none !important;
  5817. }
  5818. @media print {
  5819. .visible-print {
  5820. display: block !important;
  5821. }
  5822. tr.visible-print {
  5823. display: table-row !important;
  5824. }
  5825. th.visible-print,
  5826. td.visible-print {
  5827. display: table-cell !important;
  5828. }
  5829. .hidden-print {
  5830. display: none !important;
  5831. }
  5832. tr.hidden-print {
  5833. display: none !important;
  5834. }
  5835. th.hidden-print,
  5836. td.hidden-print {
  5837. display: none !important;
  5838. }
  5839. }
  5840. /* -- cPanel Paper Lantern v11.46 --*/
  5841. /* Lavish China */
  5842. /* Resets */
  5843. /* return buttons to default Bootstrap look*/
  5844. .btn {
  5845. box-shadow: none;
  5846. }
  5847. /* ensures that tables within tables don't look recursively styled */
  5848. td table tr, td table td {
  5849. border:0 !important;
  5850. }
  5851. body {
  5852. padding-top:0;
  5853. }
  5854. .navbar {
  5855. margin-bottom:0;
  5856. }
  5857. /* turning off the quick links */
  5858. #quickLinks {
  5859. display:none;
  5860. }
  5861. footer {
  5862. background:none;
  5863. }
  5864. /* Aesthetics */
  5865. #content {
  5866. margin-top:44px;
  5867. padding-top:15px;
  5868. -webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.75);
  5869. -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.75);
  5870. box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.75);
  5871. }
  5872. #sidebar {
  5873. background: #dce2f9;
  5874. }
  5875. .cellbox-header {
  5876. background:0;
  5877. border-bottom:1px solid;
  5878. }
  5879. .cellbox-header, .btn, .btn-default, .btn-group, .btn-primary {
  5880. border-radius: 0;
  5881. }
  5882. .cellbox-header, .page-header {
  5883. margin-right:-15px;
  5884. border-color:#EEEEE7;
  5885. }
  5886. .widget-heading {
  5887. border: 1px solid #4f667d;
  5888. background-color: #4f667df2;
  5889. }