bootstrap.css 120 KB

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