bootstrap.css 123 KB

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