bootstrap.css 121 KB

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