bootstrap.css 109 KB

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