site.simplex.css 148 KB

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