bootstrap.css 123 KB

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