bootstrap.css 138 KB

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