bootstrap.css 116 KB

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