bootstrap.css 132 KB

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