bootstrap.css 119 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482
  1. /*!
  2. * Bootstrap v2.3.2
  3. *
  4. * Copyright 2012 Twitter, Inc
  5. * Licensed under the Apache License v2.0
  6. * http://www.apache.org/licenses/LICENSE-2.0
  7. *
  8. * Designed and built with all the love in the world @twitter by @mdo and @fat.
  9. */.clearfix {
  10. *zoom: 1
  11. }
  12. .clearfix:before,.clearfix:after {
  13. display: table;
  14. line-height: 0;
  15. content: ""
  16. }
  17. .clearfix:after {
  18. clear: both
  19. }
  20. .hide-text {
  21. font: 0/0 a;
  22. color: transparent;
  23. text-shadow: none;
  24. background-color: transparent;
  25. border: 0
  26. }
  27. .input-block-level {
  28. display: block;
  29. width: 100%;
  30. min-height: 30px;
  31. -webkit-box-sizing: border-box;
  32. -moz-box-sizing: border-box;
  33. box-sizing: border-box
  34. }
  35. article,aside,details,figcaption,figure,footer,header,hgroup,nav,section {
  36. display: block
  37. }
  38. audio,canvas,video {
  39. display: inline-block;
  40. *display: inline;
  41. *zoom: 1
  42. }
  43. audio:not([controls]) {
  44. display: none
  45. }
  46. html {
  47. font-size: 100%;
  48. -webkit-text-size-adjust: 100%;
  49. -ms-text-size-adjust: 100%
  50. }
  51. a:focus {
  52. outline: thin dotted #333;
  53. outline: 5px auto -webkit-focus-ring-color;
  54. outline-offset: -2px
  55. }
  56. a:hover,a:active {
  57. outline: 0
  58. }
  59. sub,sup {
  60. position: relative;
  61. font-size: 75%;
  62. line-height: 0;
  63. vertical-align: baseline
  64. }
  65. sup {
  66. top: -0.5em
  67. }
  68. sub {
  69. bottom: -0.25em
  70. }
  71. img {
  72. width: auto\9;
  73. height: auto;
  74. max-width: 100%;
  75. vertical-align: middle;
  76. border: 0;
  77. -ms-interpolation-mode: bicubic
  78. }
  79. #map_canvas img,.google-maps img {
  80. max-width: none
  81. }
  82. button,input,select,textarea {
  83. margin: 0;
  84. font-size: 100%;
  85. vertical-align: middle
  86. }
  87. button,input {
  88. *overflow: visible;
  89. line-height: normal
  90. }
  91. button::-moz-focus-inner,input::-moz-focus-inner {
  92. padding: 0;
  93. border: 0
  94. }
  95. button,html input[type="button"],input[type="reset"],input[type="submit"] {
  96. cursor: pointer;
  97. -webkit-appearance: button
  98. }
  99. label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"] {
  100. cursor: pointer
  101. }
  102. input[type="search"] {
  103. -webkit-box-sizing: content-box;
  104. -moz-box-sizing: content-box;
  105. box-sizing: content-box;
  106. -webkit-appearance: textfield
  107. }
  108. input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button {
  109. -webkit-appearance: none
  110. }
  111. textarea {
  112. overflow: auto;
  113. vertical-align: top
  114. }
  115. @media print {
  116. * {
  117. color: #000!important;
  118. text-shadow: none!important;
  119. background: transparent!important;
  120. box-shadow: none!important
  121. }
  122. a,a:visited {
  123. text-decoration: underline
  124. }
  125. a[href]:after {
  126. content: " (" attr(href) ")"
  127. }
  128. abbr[title]:after {
  129. content: " (" attr(title) ")"
  130. }
  131. .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after {
  132. content: ""
  133. }
  134. pre,blockquote {
  135. border: 1px solid #999;
  136. page-break-inside: avoid
  137. }
  138. thead {
  139. display: table-header-group
  140. }
  141. tr,img {
  142. page-break-inside: avoid
  143. }
  144. img {
  145. max-width: 100%!important
  146. }@ page {
  147. margin: .5cm
  148. }
  149. p,h2,h3 {
  150. orphans: 3;
  151. widows: 3
  152. }
  153. h2,h3 {
  154. page-break-after: avoid
  155. }
  156. }
  157. body {
  158. margin: 0;
  159. font-size: 14px;
  160. line-height: 20px;
  161. color: #333;
  162. background-color: #fff
  163. }
  164. a {
  165. color: #08c;
  166. text-decoration: none
  167. }
  168. a:hover,a:focus {
  169. color: #005580;
  170. text-decoration: underline
  171. }
  172. .img-rounded {
  173. -webkit-border-radius: 6px;
  174. -moz-border-radius: 6px;
  175. border-radius: 6px
  176. }
  177. .img-polaroid {
  178. padding: 4px;
  179. background-color: #fff;
  180. border: 1px solid #ccc;
  181. border: 1px solid rgba(0,0,0,0.2);
  182. -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  183. -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  184. box-shadow: 0 1px 3px rgba(0,0,0,0.1)
  185. }
  186. .img-circle {
  187. -webkit-border-radius: 500px;
  188. -moz-border-radius: 500px;
  189. border-radius: 500px
  190. }
  191. .row {
  192. margin-left: -20px;
  193. *zoom: 1
  194. }
  195. .row:before,.row:after {
  196. display: table;
  197. line-height: 0;
  198. content: ""
  199. }
  200. .row:after {
  201. clear: both
  202. }[class*="span"] {
  203. float: left;
  204. min-height: 1px;
  205. margin-left: 20px
  206. }
  207. .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container {
  208. width: 940px
  209. }
  210. .span12 {
  211. width: 940px
  212. }
  213. .span11 {
  214. width: 860px
  215. }
  216. .span10 {
  217. width: 780px
  218. }
  219. .span9 {
  220. width: 700px
  221. }
  222. .span8 {
  223. width: 620px
  224. }
  225. .span7 {
  226. width: 540px
  227. }
  228. .span6 {
  229. width: 460px
  230. }
  231. .span5 {
  232. width: 380px
  233. }
  234. .span4 {
  235. width: 300px
  236. }
  237. .span3 {
  238. width: 220px
  239. }
  240. .span2 {
  241. width: 140px
  242. }
  243. .span1 {
  244. width: 60px
  245. }
  246. .offset12 {
  247. margin-left: 980px
  248. }
  249. .offset11 {
  250. margin-left: 900px
  251. }
  252. .offset10 {
  253. margin-left: 820px
  254. }
  255. .offset9 {
  256. margin-left: 740px
  257. }
  258. .offset8 {
  259. margin-left: 660px
  260. }
  261. .offset7 {
  262. margin-left: 580px
  263. }
  264. .offset6 {
  265. margin-left: 500px
  266. }
  267. .offset5 {
  268. margin-left: 420px
  269. }
  270. .offset4 {
  271. margin-left: 340px
  272. }
  273. .offset3 {
  274. margin-left: 260px
  275. }
  276. .offset2 {
  277. margin-left: 180px
  278. }
  279. .offset1 {
  280. margin-left: 100px
  281. }
  282. .row-fluid {
  283. width: 100%;
  284. *zoom: 1
  285. }
  286. .row-fluid:before,.row-fluid:after {
  287. display: table;
  288. line-height: 0;
  289. content: ""
  290. }
  291. .row-fluid:after {
  292. clear: both
  293. }
  294. .row-fluid [class*="span"] {
  295. display: block;
  296. float: left;
  297. width: 100%;
  298. min-height: 30px;
  299. margin-left: 2.127659574468085%;
  300. *margin-left: 2.074468085106383%;
  301. -webkit-box-sizing: border-box;
  302. -moz-box-sizing: border-box;
  303. box-sizing: border-box
  304. }
  305. .row-fluid [class*="span"]:first-child {
  306. margin-left: 0
  307. }
  308. .row-fluid .controls-row [class*="span"]+[class*="span"] {
  309. margin-left: 2.127659574468085%
  310. }
  311. .row-fluid .span12 {
  312. width: 100%;
  313. *width: 99.94680851063829%
  314. }
  315. .row-fluid .span11 {
  316. width: 91.48936170212765%;
  317. *width: 91.43617021276594%
  318. }
  319. .row-fluid .span10 {
  320. width: 82.97872340425532%;
  321. *width: 82.92553191489361%
  322. }
  323. .row-fluid .span9 {
  324. width: 74.46808510638297%;
  325. *width: 74.41489361702126%
  326. }
  327. .row-fluid .span8 {
  328. width: 65.95744680851064%;
  329. *width: 65.90425531914893%
  330. }
  331. .row-fluid .span7 {
  332. width: 57.44680851063829%;
  333. *width: 57.39361702127659%
  334. }
  335. .row-fluid .span6 {
  336. width: 48.93617021276595%;
  337. *width: 48.88297872340425%
  338. }
  339. .row-fluid .span5 {
  340. width: 40.42553191489362%;
  341. *width: 40.37234042553192%
  342. }
  343. .row-fluid .span4 {
  344. width: 31.914893617021278%;
  345. *width: 31.861702127659576%
  346. }
  347. .row-fluid .span3 {
  348. width: 23.404255319148934%;
  349. *width: 23.351063829787233%
  350. }
  351. .row-fluid .span2 {
  352. width: 14.893617021276595%;
  353. *width: 14.840425531914894%
  354. }
  355. .row-fluid .span1 {
  356. width: 6.382978723404255%;
  357. *width: 6.329787234042553%
  358. }
  359. .row-fluid .offset12 {
  360. margin-left: 104.25531914893617%;
  361. *margin-left: 104.14893617021275%
  362. }
  363. .row-fluid .offset12:first-child {
  364. margin-left: 102.12765957446808%;
  365. *margin-left: 102.02127659574467%
  366. }
  367. .row-fluid .offset11 {
  368. margin-left: 95.74468085106382%;
  369. *margin-left: 95.6382978723404%
  370. }
  371. .row-fluid .offset11:first-child {
  372. margin-left: 93.61702127659574%;
  373. *margin-left: 93.51063829787232%
  374. }
  375. .row-fluid .offset10 {
  376. margin-left: 87.23404255319149%;
  377. *margin-left: 87.12765957446807%
  378. }
  379. .row-fluid .offset10:first-child {
  380. margin-left: 85.1063829787234%;
  381. *margin-left: 84.99999999999999%
  382. }
  383. .row-fluid .offset9 {
  384. margin-left: 78.72340425531914%;
  385. *margin-left: 78.61702127659572%
  386. }
  387. .row-fluid .offset9:first-child {
  388. margin-left: 76.59574468085106%;
  389. *margin-left: 76.48936170212764%
  390. }
  391. .row-fluid .offset8 {
  392. margin-left: 70.2127659574468%;
  393. *margin-left: 70.10638297872339%
  394. }
  395. .row-fluid .offset8:first-child {
  396. margin-left: 68.08510638297872%;
  397. *margin-left: 67.9787234042553%
  398. }
  399. .row-fluid .offset7 {
  400. margin-left: 61.70212765957446%;
  401. *margin-left: 61.59574468085106%
  402. }
  403. .row-fluid .offset7:first-child {
  404. margin-left: 59.574468085106375%;
  405. *margin-left: 59.46808510638297%
  406. }
  407. .row-fluid .offset6 {
  408. margin-left: 53.191489361702125%;
  409. *margin-left: 53.085106382978715%
  410. }
  411. .row-fluid .offset6:first-child {
  412. margin-left: 51.063829787234035%;
  413. *margin-left: 50.95744680851063%
  414. }
  415. .row-fluid .offset5 {
  416. margin-left: 44.68085106382979%;
  417. *margin-left: 44.57446808510638%
  418. }
  419. .row-fluid .offset5:first-child {
  420. margin-left: 42.5531914893617%;
  421. *margin-left: 42.4468085106383%
  422. }
  423. .row-fluid .offset4 {
  424. margin-left: 36.170212765957444%;
  425. *margin-left: 36.06382978723405%
  426. }
  427. .row-fluid .offset4:first-child {
  428. margin-left: 34.04255319148936%;
  429. *margin-left: 33.93617021276596%
  430. }
  431. .row-fluid .offset3 {
  432. margin-left: 27.659574468085104%;
  433. *margin-left: 27.5531914893617%
  434. }
  435. .row-fluid .offset3:first-child {
  436. margin-left: 25.53191489361702%;
  437. *margin-left: 25.425531914893618%
  438. }
  439. .row-fluid .offset2 {
  440. margin-left: 19.148936170212764%;
  441. *margin-left: 19.04255319148936%
  442. }
  443. .row-fluid .offset2:first-child {
  444. margin-left: 17.02127659574468%;
  445. *margin-left: 16.914893617021278%
  446. }
  447. .row-fluid .offset1 {
  448. margin-left: 10.638297872340425%;
  449. *margin-left: 10.53191489361702%
  450. }
  451. .row-fluid .offset1:first-child {
  452. margin-left: 8.51063829787234%;
  453. *margin-left: 8.404255319148938%
  454. }[class*="span"].hide,.row-fluid [class*="span"].hide {
  455. display: none
  456. }[class*="span"].pull-right,.row-fluid [class*="span"].pull-right {
  457. float: right
  458. }
  459. .container {
  460. margin-right: auto;
  461. margin-left: auto;
  462. *zoom: 1
  463. }
  464. .container:before,.container:after {
  465. display: table;
  466. line-height: 0;
  467. content: ""
  468. }
  469. .container:after {
  470. clear: both
  471. }
  472. .container-fluid {
  473. padding-right: 20px;
  474. padding-left: 20px;
  475. *zoom: 1
  476. }
  477. .container-fluid:before,.container-fluid:after {
  478. display: table;
  479. line-height: 0;
  480. content: ""
  481. }
  482. .container-fluid:after {
  483. clear: both
  484. }
  485. p {
  486. margin: 0 0 10px
  487. }
  488. .lead {
  489. margin-bottom: 20px;
  490. font-size: 21px;
  491. font-weight: 200;
  492. line-height: 30px
  493. }
  494. small {
  495. font-size: 85%
  496. }
  497. strong {
  498. font-weight: bold
  499. }
  500. em {
  501. font-style: italic
  502. }
  503. cite {
  504. font-style: normal
  505. }
  506. .muted {
  507. color: #999
  508. }
  509. a.muted:hover,a.muted:focus {
  510. color: #808080
  511. }
  512. .text-warning {
  513. color: #c09853
  514. }
  515. a.text-warning:hover,a.text-warning:focus {
  516. color: #a47e3c
  517. }
  518. .text-error {
  519. color: #b94a48
  520. }
  521. a.text-error:hover,a.text-error:focus {
  522. color: #953b39
  523. }
  524. .text-info {
  525. color: #3a87ad
  526. }
  527. a.text-info:hover,a.text-info:focus {
  528. color: #2d6987
  529. }
  530. .text-success {
  531. color: #468847
  532. }
  533. a.text-success:hover,a.text-success:focus {
  534. color: #356635
  535. }
  536. .text-left {
  537. text-align: left
  538. }
  539. .text-right {
  540. text-align: right
  541. }
  542. .text-center {
  543. text-align: center
  544. }
  545. h1,h2,h3,h4,h5,h6 {
  546. margin: 10px 0;
  547. font-family: inherit;
  548. font-weight: bold;
  549. line-height: 20px;
  550. color: inherit;
  551. text-rendering: optimizelegibility
  552. }
  553. h1 small,h2 small,h3 small,h4 small,h5 small,h6 small {
  554. font-weight: normal;
  555. line-height: 1;
  556. color: #999
  557. }
  558. h1,h2,h3 {
  559. line-height: 40px
  560. }
  561. h1 {
  562. font-size: 38.5px
  563. }
  564. h2 {
  565. font-size: 31.5px
  566. }
  567. h3 {
  568. font-size: 24.5px
  569. }
  570. h4 {
  571. font-size: 17.5px
  572. }
  573. h5 {
  574. font-size: 14px
  575. }
  576. h6 {
  577. font-size: 11.9px
  578. }
  579. h1 small {
  580. font-size: 24.5px
  581. }
  582. h2 small {
  583. font-size: 17.5px
  584. }
  585. h3 small {
  586. font-size: 14px
  587. }
  588. h4 small {
  589. font-size: 14px
  590. }
  591. .page-header {
  592. padding-bottom: 9px;
  593. margin: 20px 0 30px;
  594. border-bottom: 1px solid #eee
  595. }
  596. ul,ol {
  597. padding: 0;
  598. margin: 0 0 10px 25px
  599. }
  600. ul ul,ul ol,ol ol,ol ul {
  601. margin-bottom: 0
  602. }
  603. li {
  604. line-height: 20px
  605. }
  606. ul.unstyled,ol.unstyled {
  607. margin-left: 0;
  608. list-style: none
  609. }
  610. ul.inline,ol.inline {
  611. margin-left: 0;
  612. list-style: none
  613. }
  614. ul.inline>li,ol.inline>li {
  615. display: inline-block;
  616. *display: inline;
  617. padding-right: 5px;
  618. padding-left: 5px;
  619. *zoom: 1
  620. }
  621. dl {
  622. margin-bottom: 20px
  623. }
  624. dt,dd {
  625. line-height: 20px
  626. }
  627. dt {
  628. font-weight: bold
  629. }
  630. dd {
  631. margin-left: 10px
  632. }
  633. .dl-horizontal {
  634. *zoom: 1
  635. }
  636. .dl-horizontal:before,.dl-horizontal:after {
  637. display: table;
  638. line-height: 0;
  639. content: ""
  640. }
  641. .dl-horizontal:after {
  642. clear: both
  643. }
  644. .dl-horizontal dt {
  645. float: left;
  646. width: 160px;
  647. overflow: hidden;
  648. clear: left;
  649. text-align: right;
  650. text-overflow: ellipsis;
  651. white-space: nowrap
  652. }
  653. .dl-horizontal dd {
  654. margin-left: 180px
  655. }
  656. hr {
  657. margin: 20px 0;
  658. border: 0;
  659. border-top: 1px solid #eee;
  660. border-bottom: 1px solid #fff
  661. }
  662. abbr[title],abbr[data-original-title] {
  663. cursor: help;
  664. border-bottom: 1px dotted #999
  665. }
  666. abbr.initialism {
  667. font-size: 90%;
  668. text-transform: uppercase
  669. }
  670. blockquote {
  671. padding: 0 0 0 15px;
  672. margin: 0 0 20px;
  673. border-left: 5px solid #eee
  674. }
  675. blockquote p {
  676. margin-bottom: 0;
  677. font-size: 17.5px;
  678. font-weight: 300;
  679. line-height: 1.25
  680. }
  681. blockquote small {
  682. display: block;
  683. line-height: 20px;
  684. color: #999
  685. }
  686. blockquote small:before {
  687. content: '\2014 \00A0'
  688. }
  689. blockquote.pull-right {
  690. float: right;
  691. padding-right: 15px;
  692. padding-left: 0;
  693. border-right: 5px solid #eee;
  694. border-left: 0
  695. }
  696. blockquote.pull-right p,blockquote.pull-right small {
  697. text-align: right
  698. }
  699. blockquote.pull-right small:before {
  700. content: ''
  701. }
  702. blockquote.pull-right small:after {
  703. content: '\00A0 \2014'
  704. }
  705. q:before,q:after,blockquote:before,blockquote:after {
  706. content: ""
  707. }
  708. address {
  709. display: block;
  710. margin-bottom: 20px;
  711. font-style: normal;
  712. line-height: 20px
  713. }
  714. code,pre {
  715. padding: 0 3px 2px;
  716. font-size: 12px;
  717. color: #333;
  718. -webkit-border-radius: 3px;
  719. -moz-border-radius: 3px;
  720. border-radius: 3px
  721. }
  722. code {
  723. padding: 2px 4px;
  724. color: #d14;
  725. white-space: nowrap;
  726. background-color: #f7f7f9;
  727. border: 1px solid #e1e1e8
  728. }
  729. pre {
  730. display: block;
  731. padding: 9.5px;
  732. margin: 0 0 10px;
  733. font-size: 13px;
  734. line-height: 20px;
  735. word-break: break-all;
  736. word-wrap: break-word;
  737. white-space: pre;
  738. white-space: pre-wrap;
  739. background-color: #f5f5f5;
  740. border: 1px solid #ccc;
  741. border: 1px solid rgba(0,0,0,0.15);
  742. -webkit-border-radius: 4px;
  743. -moz-border-radius: 4px;
  744. border-radius: 4px
  745. }
  746. pre.prettyprint {
  747. margin-bottom: 20px
  748. }
  749. pre code {
  750. padding: 0;
  751. color: inherit;
  752. white-space: pre;
  753. white-space: pre-wrap;
  754. background-color: transparent;
  755. border: 0
  756. }
  757. .pre-scrollable {
  758. max-height: 340px;
  759. overflow-y: scroll
  760. }
  761. form {
  762. margin: 0 0 20px
  763. }
  764. fieldset {
  765. padding: 0;
  766. margin: 0;
  767. border: 0
  768. }
  769. legend {
  770. display: block;
  771. width: 100%;
  772. padding: 0;
  773. margin-bottom: 20px;
  774. font-size: 21px;
  775. line-height: 40px;
  776. color: #333;
  777. border: 0;
  778. border-bottom: 1px solid #e5e5e5
  779. }
  780. legend small {
  781. font-size: 15px;
  782. color: #999
  783. }
  784. label,input,button,select,textarea {
  785. font-size: 14px;
  786. font-weight: normal;
  787. line-height: 20px
  788. }
  789. input,button,select,textarea {
  790. }
  791. label {
  792. display: block;
  793. margin-bottom: 5px
  794. }
  795. select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input {
  796. display: inline-block;
  797. height: 20px;
  798. padding: 4px 6px;
  799. margin-bottom: 10px;
  800. font-size: 14px;
  801. line-height: 20px;
  802. color: #555;
  803. vertical-align: middle;
  804. -webkit-border-radius: 4px;
  805. -moz-border-radius: 4px;
  806. border-radius: 4px
  807. }
  808. input,textarea,.uneditable-input {
  809. width: 206px
  810. }
  811. textarea {
  812. height: auto
  813. }
  814. textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input {
  815. background-color: #fff;
  816. border: 1px solid #ccc;
  817. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  818. -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  819. box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  820. -webkit-transition: border linear .2s,box-shadow linear .2s;
  821. -moz-transition: border linear .2s,box-shadow linear .2s;
  822. -o-transition: border linear .2s,box-shadow linear .2s;
  823. transition: border linear .2s,box-shadow linear .2s
  824. }
  825. textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus {
  826. border-color: rgba(82,168,236,0.8);
  827. outline: 0;
  828. outline: thin dotted \9;
  829. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);
  830. -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);
  831. box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6)
  832. }
  833. input[type="radio"],input[type="checkbox"] {
  834. margin: 4px 0 0;
  835. margin-top: 1px \9;
  836. *margin-top: 0;
  837. line-height: normal
  838. }
  839. input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"] {
  840. width: auto
  841. }
  842. select,input[type="file"] {
  843. height: 30px;
  844. *margin-top: 4px;
  845. line-height: 30px
  846. }
  847. select {
  848. width: 220px;
  849. background-color: #fff;
  850. border: 1px solid #ccc
  851. }
  852. select[multiple],select[size] {
  853. height: auto
  854. }
  855. select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus {
  856. outline: thin dotted #333;
  857. outline: 5px auto -webkit-focus-ring-color;
  858. outline-offset: -2px
  859. }
  860. .uneditable-input,.uneditable-textarea {
  861. color: #999;
  862. cursor: not-allowed;
  863. background-color: #fcfcfc;
  864. border-color: #ccc;
  865. -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.025);
  866. -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.025);
  867. box-shadow: inset 0 1px 2px rgba(0,0,0,0.025)
  868. }
  869. .uneditable-input {
  870. overflow: hidden;
  871. white-space: nowrap
  872. }
  873. .uneditable-textarea {
  874. width: auto;
  875. height: auto
  876. }
  877. input:-moz-placeholder,textarea:-moz-placeholder {
  878. color: #999
  879. }
  880. input:-ms-input-placeholder,textarea:-ms-input-placeholder {
  881. color: #999
  882. }
  883. input::-webkit-input-placeholder,textarea::-webkit-input-placeholder {
  884. color: #999
  885. }
  886. .radio,.checkbox {
  887. min-height: 20px;
  888. padding-left: 20px
  889. }
  890. .radio input[type="radio"],.checkbox input[type="checkbox"] {
  891. float: left;
  892. margin-left: -20px
  893. }
  894. .controls>.radio:first-child,.controls>.checkbox:first-child {
  895. padding-top: 5px
  896. }
  897. .radio.inline,.checkbox.inline {
  898. display: inline-block;
  899. padding-top: 5px;
  900. margin-bottom: 0;
  901. vertical-align: middle
  902. }
  903. .radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline {
  904. margin-left: 10px
  905. }
  906. .input-mini {
  907. width: 60px
  908. }
  909. .input-small {
  910. width: 90px
  911. }
  912. .input-medium {
  913. width: 150px
  914. }
  915. .input-large {
  916. width: 210px
  917. }
  918. .input-xlarge {
  919. width: 270px
  920. }
  921. .input-xxlarge {
  922. width: 530px
  923. }
  924. input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"] {
  925. float: none;
  926. margin-left: 0
  927. }
  928. .input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"] {
  929. display: inline-block
  930. }
  931. input,textarea,.uneditable-input {
  932. margin-left: 0
  933. }
  934. .controls-row [class*="span"]+[class*="span"] {
  935. margin-left: 20px
  936. }
  937. input.span12,textarea.span12,.uneditable-input.span12 {
  938. width: 926px
  939. }
  940. input.span11,textarea.span11,.uneditable-input.span11 {
  941. width: 846px
  942. }
  943. input.span10,textarea.span10,.uneditable-input.span10 {
  944. width: 766px
  945. }
  946. input.span9,textarea.span9,.uneditable-input.span9 {
  947. width: 686px
  948. }
  949. input.span8,textarea.span8,.uneditable-input.span8 {
  950. width: 606px
  951. }
  952. input.span7,textarea.span7,.uneditable-input.span7 {
  953. width: 526px
  954. }
  955. input.span6,textarea.span6,.uneditable-input.span6 {
  956. width: 446px
  957. }
  958. input.span5,textarea.span5,.uneditable-input.span5 {
  959. width: 366px
  960. }
  961. input.span4,textarea.span4,.uneditable-input.span4 {
  962. width: 286px
  963. }
  964. input.span3,textarea.span3,.uneditable-input.span3 {
  965. width: 206px
  966. }
  967. input.span2,textarea.span2,.uneditable-input.span2 {
  968. width: 126px
  969. }
  970. input.span1,textarea.span1,.uneditable-input.span1 {
  971. width: 46px
  972. }
  973. .controls-row {
  974. *zoom: 1
  975. }
  976. .controls-row:before,.controls-row:after {
  977. display: table;
  978. line-height: 0;
  979. content: ""
  980. }
  981. .controls-row:after {
  982. clear: both
  983. }
  984. .controls-row [class*="span"],.row-fluid .controls-row [class*="span"] {
  985. float: left
  986. }
  987. .controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"] {
  988. padding-top: 5px
  989. }
  990. input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly] {
  991. cursor: not-allowed;
  992. background-color: #eee
  993. }
  994. input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly] {
  995. background-color: transparent
  996. }
  997. .control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline {
  998. color: #c09853
  999. }
  1000. .control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea {
  1001. color: #c09853
  1002. }
  1003. .control-group.warning input,.control-group.warning select,.control-group.warning textarea {
  1004. border-color: #c09853;
  1005. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  1006. -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  1007. box-shadow: inset 0 1px 1px rgba(0,0,0,0.075)
  1008. }
  1009. .control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus {
  1010. border-color: #a47e3c;
  1011. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;
  1012. -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;
  1013. box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e
  1014. }
  1015. .control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on {
  1016. color: #c09853;
  1017. background-color: #fcf8e3;
  1018. border-color: #c09853
  1019. }
  1020. .control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline {
  1021. color: #b94a48
  1022. }
  1023. .control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea {
  1024. color: #b94a48
  1025. }
  1026. .control-group.error input,.control-group.error select,.control-group.error textarea {
  1027. border-color: #b94a48;
  1028. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  1029. -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  1030. box-shadow: inset 0 1px 1px rgba(0,0,0,0.075)
  1031. }
  1032. .control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus {
  1033. border-color: #953b39;
  1034. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;
  1035. -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;
  1036. box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392
  1037. }
  1038. .control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on {
  1039. color: #b94a48;
  1040. background-color: #f2dede;
  1041. border-color: #b94a48
  1042. }
  1043. .control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline {
  1044. color: #468847
  1045. }
  1046. .control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea {
  1047. color: #468847
  1048. }
  1049. .control-group.success input,.control-group.success select,.control-group.success textarea {
  1050. border-color: #468847;
  1051. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  1052. -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  1053. box-shadow: inset 0 1px 1px rgba(0,0,0,0.075)
  1054. }
  1055. .control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus {
  1056. border-color: #356635;
  1057. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;
  1058. -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;
  1059. box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b
  1060. }
  1061. .control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on {
  1062. color: #468847;
  1063. background-color: #dff0d8;
  1064. border-color: #468847
  1065. }
  1066. .control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline {
  1067. color: #3a87ad
  1068. }
  1069. .control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea {
  1070. color: #3a87ad
  1071. }
  1072. .control-group.info input,.control-group.info select,.control-group.info textarea {
  1073. border-color: #3a87ad;
  1074. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  1075. -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  1076. box-shadow: inset 0 1px 1px rgba(0,0,0,0.075)
  1077. }
  1078. .control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus {
  1079. border-color: #2d6987;
  1080. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;
  1081. -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;
  1082. box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3
  1083. }
  1084. .control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on {
  1085. color: #3a87ad;
  1086. background-color: #d9edf7;
  1087. border-color: #3a87ad
  1088. }
  1089. input:focus:invalid,textarea:focus:invalid,select:focus:invalid {
  1090. color: #b94a48;
  1091. border-color: #ee5f5b
  1092. }
  1093. input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus {
  1094. border-color: #e9322d;
  1095. -webkit-box-shadow: 0 0 6px #f8b9b7;
  1096. -moz-box-shadow: 0 0 6px #f8b9b7;
  1097. box-shadow: 0 0 6px #f8b9b7
  1098. }
  1099. .form-actions {
  1100. padding: 19px 20px 20px;
  1101. margin-top: 20px;
  1102. margin-bottom: 20px;
  1103. background-color: #f5f5f5;
  1104. border-top: 1px solid #e5e5e5;
  1105. *zoom: 1
  1106. }
  1107. .form-actions:before,.form-actions:after {
  1108. display: table;
  1109. line-height: 0;
  1110. content: ""
  1111. }
  1112. .form-actions:after {
  1113. clear: both
  1114. }
  1115. .help-block,.help-inline {
  1116. color: #595959
  1117. }
  1118. .help-block {
  1119. display: block;
  1120. margin-bottom: 10px
  1121. }
  1122. .help-inline {
  1123. display: inline-block;
  1124. *display: inline;
  1125. padding-left: 5px;
  1126. vertical-align: middle;
  1127. *zoom: 1
  1128. }
  1129. .input-append,.input-prepend {
  1130. display: inline-block;
  1131. margin-bottom: 10px;
  1132. font-size: 0;
  1133. white-space: nowrap;
  1134. vertical-align: middle
  1135. }
  1136. .input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover {
  1137. font-size: 14px
  1138. }
  1139. .input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input {
  1140. position: relative;
  1141. margin-bottom: 0;
  1142. *margin-left: 0;
  1143. vertical-align: top;
  1144. -webkit-border-radius: 0 4px 4px 0;
  1145. -moz-border-radius: 0 4px 4px 0;
  1146. border-radius: 0 4px 4px 0
  1147. }
  1148. .input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus {
  1149. z-index: 2
  1150. }
  1151. .input-append .add-on,.input-prepend .add-on {
  1152. display: inline-block;
  1153. width: auto;
  1154. height: 20px;
  1155. min-width: 16px;
  1156. padding: 4px 5px;
  1157. font-size: 14px;
  1158. font-weight: normal;
  1159. line-height: 20px;
  1160. text-align: center;
  1161. text-shadow: 0 1px 0 #fff;
  1162. background-color: #eee;
  1163. border: 1px solid #ccc
  1164. }
  1165. .input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle {
  1166. vertical-align: top;
  1167. -webkit-border-radius: 0;
  1168. -moz-border-radius: 0;
  1169. border-radius: 0
  1170. }
  1171. .input-append .active,.input-prepend .active {
  1172. background-color: #a9dba9;
  1173. border-color: #46a546
  1174. }
  1175. .input-prepend .add-on,.input-prepend .btn {
  1176. margin-right: -1px
  1177. }
  1178. .input-prepend .add-on:first-child,.input-prepend .btn:first-child {
  1179. -webkit-border-radius: 4px 0 0 4px;
  1180. -moz-border-radius: 4px 0 0 4px;
  1181. border-radius: 4px 0 0 4px
  1182. }
  1183. .input-append input,.input-append select,.input-append .uneditable-input {
  1184. -webkit-border-radius: 4px 0 0 4px;
  1185. -moz-border-radius: 4px 0 0 4px;
  1186. border-radius: 4px 0 0 4px
  1187. }
  1188. .input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child {
  1189. -webkit-border-radius: 0 4px 4px 0;
  1190. -moz-border-radius: 0 4px 4px 0;
  1191. border-radius: 0 4px 4px 0
  1192. }
  1193. .input-append .add-on,.input-append .btn,.input-append .btn-group {
  1194. margin-left: -1px
  1195. }
  1196. .input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle {
  1197. -webkit-border-radius: 0 4px 4px 0;
  1198. -moz-border-radius: 0 4px 4px 0;
  1199. border-radius: 0 4px 4px 0
  1200. }
  1201. .input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input {
  1202. -webkit-border-radius: 0;
  1203. -moz-border-radius: 0;
  1204. border-radius: 0
  1205. }
  1206. .input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn {
  1207. -webkit-border-radius: 0 4px 4px 0;
  1208. -moz-border-radius: 0 4px 4px 0;
  1209. border-radius: 0 4px 4px 0
  1210. }
  1211. .input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child {
  1212. margin-right: -1px;
  1213. -webkit-border-radius: 4px 0 0 4px;
  1214. -moz-border-radius: 4px 0 0 4px;
  1215. border-radius: 4px 0 0 4px
  1216. }
  1217. .input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child {
  1218. margin-left: -1px;
  1219. -webkit-border-radius: 0 4px 4px 0;
  1220. -moz-border-radius: 0 4px 4px 0;
  1221. border-radius: 0 4px 4px 0
  1222. }
  1223. .input-prepend.input-append .btn-group:first-child {
  1224. margin-left: 0
  1225. }
  1226. input.search-query {
  1227. padding-right: 14px;
  1228. padding-right: 4px \9;
  1229. padding-left: 14px;
  1230. padding-left: 4px \9;
  1231. margin-bottom: 0;
  1232. -webkit-border-radius: 15px;
  1233. -moz-border-radius: 15px;
  1234. border-radius: 15px
  1235. }
  1236. .form-search .input-append .search-query,.form-search .input-prepend .search-query {
  1237. -webkit-border-radius: 0;
  1238. -moz-border-radius: 0;
  1239. border-radius: 0
  1240. }
  1241. .form-search .input-append .search-query {
  1242. -webkit-border-radius: 14px 0 0 14px;
  1243. -moz-border-radius: 14px 0 0 14px;
  1244. border-radius: 14px 0 0 14px
  1245. }
  1246. .form-search .input-append .btn {
  1247. -webkit-border-radius: 0 14px 14px 0;
  1248. -moz-border-radius: 0 14px 14px 0;
  1249. border-radius: 0 14px 14px 0
  1250. }
  1251. .form-search .input-prepend .search-query {
  1252. -webkit-border-radius: 0 14px 14px 0;
  1253. -moz-border-radius: 0 14px 14px 0;
  1254. border-radius: 0 14px 14px 0
  1255. }
  1256. .form-search .input-prepend .btn {
  1257. -webkit-border-radius: 14px 0 0 14px;
  1258. -moz-border-radius: 14px 0 0 14px;
  1259. border-radius: 14px 0 0 14px
  1260. }
  1261. .form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append {
  1262. display: inline-block;
  1263. *display: inline;
  1264. margin-bottom: 0;
  1265. vertical-align: middle;
  1266. *zoom: 1
  1267. }
  1268. .form-search .hide,.form-inline .hide,.form-horizontal .hide {
  1269. display: none
  1270. }
  1271. .form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group {
  1272. display: inline-block
  1273. }
  1274. .form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend {
  1275. margin-bottom: 0
  1276. }
  1277. .form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox {
  1278. padding-left: 0;
  1279. margin-bottom: 0;
  1280. vertical-align: middle
  1281. }
  1282. .form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"] {
  1283. float: left;
  1284. margin-right: 3px;
  1285. margin-left: 0
  1286. }
  1287. .control-group {
  1288. margin-bottom: 10px
  1289. }
  1290. legend+.control-group {
  1291. margin-top: 20px;
  1292. -webkit-margin-top-collapse: separate
  1293. }
  1294. .form-horizontal .control-group {
  1295. margin-bottom: 20px;
  1296. *zoom: 1
  1297. }
  1298. .form-horizontal .control-group:before,.form-horizontal .control-group:after {
  1299. display: table;
  1300. line-height: 0;
  1301. content: ""
  1302. }
  1303. .form-horizontal .control-group:after {
  1304. clear: both
  1305. }
  1306. .form-horizontal .control-label {
  1307. float: left;
  1308. width: 160px;
  1309. padding-top: 5px;
  1310. text-align: right
  1311. }
  1312. .form-horizontal .controls {
  1313. *display: inline-block;
  1314. *padding-left: 20px;
  1315. margin-left: 180px;
  1316. *margin-left: 0
  1317. }
  1318. .form-horizontal .controls:first-child {
  1319. *padding-left: 180px
  1320. }
  1321. .form-horizontal .help-block {
  1322. margin-bottom: 0
  1323. }
  1324. .form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block {
  1325. margin-top: 10px
  1326. }
  1327. .form-horizontal .form-actions {
  1328. padding-left: 180px
  1329. }
  1330. table {
  1331. max-width: 100%;
  1332. background-color: transparent;
  1333. border-collapse: collapse;
  1334. border-spacing: 0
  1335. }
  1336. .table {
  1337. width: 100%;
  1338. margin-bottom: 20px
  1339. }
  1340. .table th,.table td {
  1341. padding: 8px;
  1342. line-height: 20px;
  1343. text-align: left;
  1344. vertical-align: top;
  1345. border-top: 1px solid #ddd
  1346. }
  1347. .table th {
  1348. font-weight: bold
  1349. }
  1350. .table thead th {
  1351. vertical-align: bottom
  1352. }
  1353. .table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td {
  1354. border-top: 0
  1355. }
  1356. .table tbody+tbody {
  1357. border-top: 2px solid #ddd
  1358. }
  1359. .table .table {
  1360. background-color: #fff
  1361. }
  1362. .table-condensed th,.table-condensed td {
  1363. padding: 4px 5px
  1364. }
  1365. .table-bordered {
  1366. border: 1px solid #ddd;
  1367. border-collapse: separate;
  1368. *border-collapse: collapse;
  1369. border-left: 0;
  1370. -webkit-border-radius: 4px;
  1371. -moz-border-radius: 4px;
  1372. border-radius: 4px
  1373. }
  1374. .table-bordered th,.table-bordered td {
  1375. border-left: 1px solid #ddd
  1376. }
  1377. .table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td {
  1378. border-top: 0
  1379. }
  1380. .table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child {
  1381. -webkit-border-top-left-radius: 4px;
  1382. border-top-left-radius: 4px;
  1383. -moz-border-radius-topleft: 4px
  1384. }
  1385. .table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child {
  1386. -webkit-border-top-right-radius: 4px;
  1387. border-top-right-radius: 4px;
  1388. -moz-border-radius-topright: 4px
  1389. }
  1390. .table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child {
  1391. -webkit-border-bottom-left-radius: 4px;
  1392. border-bottom-left-radius: 4px;
  1393. -moz-border-radius-bottomleft: 4px
  1394. }
  1395. .table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child {
  1396. -webkit-border-bottom-right-radius: 4px;
  1397. border-bottom-right-radius: 4px;
  1398. -moz-border-radius-bottomright: 4px
  1399. }
  1400. .table-bordered tfoot+tbody:last-child tr:last-child td:first-child {
  1401. -webkit-border-bottom-left-radius: 0;
  1402. border-bottom-left-radius: 0;
  1403. -moz-border-radius-bottomleft: 0
  1404. }
  1405. .table-bordered tfoot+tbody:last-child tr:last-child td:last-child {
  1406. -webkit-border-bottom-right-radius: 0;
  1407. border-bottom-right-radius: 0;
  1408. -moz-border-radius-bottomright: 0
  1409. }
  1410. .table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child {
  1411. -webkit-border-top-left-radius: 4px;
  1412. border-top-left-radius: 4px;
  1413. -moz-border-radius-topleft: 4px
  1414. }
  1415. .table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child {
  1416. -webkit-border-top-right-radius: 4px;
  1417. border-top-right-radius: 4px;
  1418. -moz-border-radius-topright: 4px
  1419. }
  1420. .table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th {
  1421. background-color: #f9f9f9
  1422. }
  1423. .table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th {
  1424. background-color: #f5f5f5
  1425. }
  1426. table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"] {
  1427. display: table-cell;
  1428. float: none;
  1429. margin-left: 0
  1430. }
  1431. .table td.span1,.table th.span1 {
  1432. float: none;
  1433. width: 44px;
  1434. margin-left: 0
  1435. }
  1436. .table td.span2,.table th.span2 {
  1437. float: none;
  1438. width: 124px;
  1439. margin-left: 0
  1440. }
  1441. .table td.span3,.table th.span3 {
  1442. float: none;
  1443. width: 204px;
  1444. margin-left: 0
  1445. }
  1446. .table td.span4,.table th.span4 {
  1447. float: none;
  1448. width: 284px;
  1449. margin-left: 0
  1450. }
  1451. .table td.span5,.table th.span5 {
  1452. float: none;
  1453. width: 364px;
  1454. margin-left: 0
  1455. }
  1456. .table td.span6,.table th.span6 {
  1457. float: none;
  1458. width: 444px;
  1459. margin-left: 0
  1460. }
  1461. .table td.span7,.table th.span7 {
  1462. float: none;
  1463. width: 524px;
  1464. margin-left: 0
  1465. }
  1466. .table td.span8,.table th.span8 {
  1467. float: none;
  1468. width: 604px;
  1469. margin-left: 0
  1470. }
  1471. .table td.span9,.table th.span9 {
  1472. float: none;
  1473. width: 684px;
  1474. margin-left: 0
  1475. }
  1476. .table td.span10,.table th.span10 {
  1477. float: none;
  1478. width: 764px;
  1479. margin-left: 0
  1480. }
  1481. .table td.span11,.table th.span11 {
  1482. float: none;
  1483. width: 844px;
  1484. margin-left: 0
  1485. }
  1486. .table td.span12,.table th.span12 {
  1487. float: none;
  1488. width: 924px;
  1489. margin-left: 0
  1490. }
  1491. .table tbody tr.success>td {
  1492. background-color: #dff0d8
  1493. }
  1494. .table tbody tr.error>td {
  1495. background-color: #f2dede
  1496. }
  1497. .table tbody tr.warning>td {
  1498. background-color: #fcf8e3
  1499. }
  1500. .table tbody tr.info>td {
  1501. background-color: #d9edf7
  1502. }
  1503. .table-hover tbody tr.success:hover>td {
  1504. background-color: #d0e9c6
  1505. }
  1506. .table-hover tbody tr.error:hover>td {
  1507. background-color: #ebcccc
  1508. }
  1509. .table-hover tbody tr.warning:hover>td {
  1510. background-color: #faf2cc
  1511. }
  1512. .table-hover tbody tr.info:hover>td {
  1513. background-color: #c4e3f3
  1514. }[class^="icon-"],[class*=" icon-"] {
  1515. display: inline-block;
  1516. width: 14px;
  1517. height: 14px;
  1518. margin-top: 1px;
  1519. *margin-right: .3em;
  1520. line-height: 14px;
  1521. vertical-align: text-top;
  1522. background-image: url("glyphicons-halflings.png");
  1523. background-position: 14px 14px;
  1524. background-repeat: no-repeat
  1525. }
  1526. .icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"] {
  1527. background-image: url("glyphicons-halflings-white.png")
  1528. }
  1529. .icon-glass {
  1530. background-position: 0 0
  1531. }
  1532. .icon-music {
  1533. background-position: -24px 0
  1534. }
  1535. .icon-search {
  1536. background-position: -48px 0
  1537. }
  1538. .icon-envelope {
  1539. background-position: -72px 0
  1540. }
  1541. .icon-heart {
  1542. background-position: -96px 0
  1543. }
  1544. .icon-star {
  1545. background-position: -120px 0
  1546. }
  1547. .icon-star-empty {
  1548. background-position: -144px 0
  1549. }
  1550. .icon-user {
  1551. background-position: -168px 0
  1552. }
  1553. .icon-film {
  1554. background-position: -192px 0
  1555. }
  1556. .icon-th-large {
  1557. background-position: -216px 0
  1558. }
  1559. .icon-th {
  1560. background-position: -240px 0
  1561. }
  1562. .icon-th-list {
  1563. background-position: -264px 0
  1564. }
  1565. .icon-ok {
  1566. background-position: -288px 0
  1567. }
  1568. .icon-remove {
  1569. background-position: -312px 0
  1570. }
  1571. .icon-zoom-in {
  1572. background-position: -336px 0
  1573. }
  1574. .icon-zoom-out {
  1575. background-position: -360px 0
  1576. }
  1577. .icon-off {
  1578. background-position: -384px 0
  1579. }
  1580. .icon-signal {
  1581. background-position: -408px 0
  1582. }
  1583. .icon-cog {
  1584. background-position: -432px 0
  1585. }
  1586. .icon-trash {
  1587. background-position: -456px 0
  1588. }
  1589. .icon-home {
  1590. background-position: 0 -24px
  1591. }
  1592. .icon-file {
  1593. background-position: -24px -24px
  1594. }
  1595. .icon-time {
  1596. background-position: -48px -24px
  1597. }
  1598. .icon-road {
  1599. background-position: -72px -24px
  1600. }
  1601. .icon-download-alt {
  1602. background-position: -96px -24px
  1603. }
  1604. .icon-download {
  1605. background-position: -120px -24px
  1606. }
  1607. .icon-upload {
  1608. background-position: -144px -24px
  1609. }
  1610. .icon-inbox {
  1611. background-position: -168px -24px
  1612. }
  1613. .icon-play-circle {
  1614. background-position: -192px -24px
  1615. }
  1616. .icon-repeat {
  1617. background-position: -216px -24px
  1618. }
  1619. .icon-refresh {
  1620. background-position: -240px -24px
  1621. }
  1622. .icon-list-alt {
  1623. background-position: -264px -24px
  1624. }
  1625. .icon-lock {
  1626. background-position: -287px -24px
  1627. }
  1628. .icon-flag {
  1629. background-position: -312px -24px
  1630. }
  1631. .icon-headphones {
  1632. background-position: -336px -24px
  1633. }
  1634. .icon-volume-off {
  1635. background-position: -360px -24px
  1636. }
  1637. .icon-volume-down {
  1638. background-position: -384px -24px
  1639. }
  1640. .icon-volume-up {
  1641. background-position: -408px -24px
  1642. }
  1643. .icon-qrcode {
  1644. background-position: -432px -24px
  1645. }
  1646. .icon-barcode {
  1647. background-position: -456px -24px
  1648. }
  1649. .icon-tag {
  1650. background-position: 0 -48px
  1651. }
  1652. .icon-tags {
  1653. background-position: -25px -48px
  1654. }
  1655. .icon-book {
  1656. background-position: -48px -48px
  1657. }
  1658. .icon-bookmark {
  1659. background-position: -72px -48px
  1660. }
  1661. .icon-print {
  1662. background-position: -96px -48px
  1663. }
  1664. .icon-camera {
  1665. background-position: -120px -48px
  1666. }
  1667. .icon-font {
  1668. background-position: -144px -48px
  1669. }
  1670. .icon-bold {
  1671. background-position: -167px -48px
  1672. }
  1673. .icon-italic {
  1674. background-position: -192px -48px
  1675. }
  1676. .icon-text-height {
  1677. background-position: -216px -48px
  1678. }
  1679. .icon-text-width {
  1680. background-position: -240px -48px
  1681. }
  1682. .icon-align-left {
  1683. background-position: -264px -48px
  1684. }
  1685. .icon-align-center {
  1686. background-position: -288px -48px
  1687. }
  1688. .icon-align-right {
  1689. background-position: -312px -48px
  1690. }
  1691. .icon-align-justify {
  1692. background-position: -336px -48px
  1693. }
  1694. .icon-list {
  1695. background-position: -360px -48px
  1696. }
  1697. .icon-indent-left {
  1698. background-position: -384px -48px
  1699. }
  1700. .icon-indent-right {
  1701. background-position: -408px -48px
  1702. }
  1703. .icon-facetime-video {
  1704. background-position: -432px -48px
  1705. }
  1706. .icon-picture {
  1707. background-position: -456px -48px
  1708. }
  1709. .icon-pencil {
  1710. background-position: 0 -72px
  1711. }
  1712. .icon-map-marker {
  1713. background-position: -24px -72px
  1714. }
  1715. .icon-adjust {
  1716. background-position: -48px -72px
  1717. }
  1718. .icon-tint {
  1719. background-position: -72px -72px
  1720. }
  1721. .icon-edit {
  1722. background-position: -96px -72px
  1723. }
  1724. .icon-share {
  1725. background-position: -120px -72px
  1726. }
  1727. .icon-check {
  1728. background-position: -144px -72px
  1729. }
  1730. .icon-move {
  1731. background-position: -168px -72px
  1732. }
  1733. .icon-step-backward {
  1734. background-position: -192px -72px
  1735. }
  1736. .icon-fast-backward {
  1737. background-position: -216px -72px
  1738. }
  1739. .icon-backward {
  1740. background-position: -240px -72px
  1741. }
  1742. .icon-play {
  1743. background-position: -264px -72px
  1744. }
  1745. .icon-pause {
  1746. background-position: -288px -72px
  1747. }
  1748. .icon-stop {
  1749. background-position: -312px -72px
  1750. }
  1751. .icon-forward {
  1752. background-position: -336px -72px
  1753. }
  1754. .icon-fast-forward {
  1755. background-position: -360px -72px
  1756. }
  1757. .icon-step-forward {
  1758. background-position: -384px -72px
  1759. }
  1760. .icon-eject {
  1761. background-position: -408px -72px
  1762. }
  1763. .icon-chevron-left {
  1764. background-position: -432px -72px
  1765. }
  1766. .icon-chevron-right {
  1767. background-position: -456px -72px
  1768. }
  1769. .icon-plus-sign {
  1770. background-position: 0 -96px
  1771. }
  1772. .icon-minus-sign {
  1773. background-position: -24px -96px
  1774. }
  1775. .icon-remove-sign {
  1776. background-position: -48px -96px
  1777. }
  1778. .icon-ok-sign {
  1779. background-position: -72px -96px
  1780. }
  1781. .icon-question-sign {
  1782. background-position: -96px -96px
  1783. }
  1784. .icon-info-sign {
  1785. background-position: -120px -96px
  1786. }
  1787. .icon-screenshot {
  1788. background-position: -144px -96px
  1789. }
  1790. .icon-remove-circle {
  1791. background-position: -168px -96px
  1792. }
  1793. .icon-ok-circle {
  1794. background-position: -192px -96px
  1795. }
  1796. .icon-ban-circle {
  1797. background-position: -216px -96px
  1798. }
  1799. .icon-arrow-left {
  1800. background-position: -240px -96px
  1801. }
  1802. .icon-arrow-right {
  1803. background-position: -264px -96px
  1804. }
  1805. .icon-arrow-up {
  1806. background-position: -289px -96px
  1807. }
  1808. .icon-arrow-down {
  1809. background-position: -312px -96px
  1810. }
  1811. .icon-share-alt {
  1812. background-position: -336px -96px
  1813. }
  1814. .icon-resize-full {
  1815. background-position: -360px -96px
  1816. }
  1817. .icon-resize-small {
  1818. background-position: -384px -96px
  1819. }
  1820. .icon-plus {
  1821. background-position: -408px -96px
  1822. }
  1823. .icon-minus {
  1824. background-position: -433px -96px
  1825. }
  1826. .icon-asterisk {
  1827. background-position: -456px -96px
  1828. }
  1829. .icon-exclamation-sign {
  1830. background-position: 0 -120px
  1831. }
  1832. .icon-gift {
  1833. background-position: -24px -120px
  1834. }
  1835. .icon-leaf {
  1836. background-position: -48px -120px
  1837. }
  1838. .icon-fire {
  1839. background-position: -72px -120px
  1840. }
  1841. .icon-eye-open {
  1842. background-position: -96px -120px
  1843. }
  1844. .icon-eye-close {
  1845. background-position: -120px -120px
  1846. }
  1847. .icon-warning-sign {
  1848. background-position: -144px -120px
  1849. }
  1850. .icon-plane {
  1851. background-position: -168px -120px
  1852. }
  1853. .icon-calendar {
  1854. background-position: -192px -120px
  1855. }
  1856. .icon-random {
  1857. width: 16px;
  1858. background-position: -216px -120px
  1859. }
  1860. .icon-comment {
  1861. background-position: -240px -120px
  1862. }
  1863. .icon-magnet {
  1864. background-position: -264px -120px
  1865. }
  1866. .icon-chevron-up {
  1867. background-position: -288px -120px
  1868. }
  1869. .icon-chevron-down {
  1870. background-position: -313px -119px
  1871. }
  1872. .icon-retweet {
  1873. background-position: -336px -120px
  1874. }
  1875. .icon-shopping-cart {
  1876. background-position: -360px -120px
  1877. }
  1878. .icon-folder-close {
  1879. width: 16px;
  1880. background-position: -384px -120px
  1881. }
  1882. .icon-folder-open {
  1883. width: 16px;
  1884. background-position: -408px -120px
  1885. }
  1886. .icon-resize-vertical {
  1887. background-position: -432px -119px
  1888. }
  1889. .icon-resize-horizontal {
  1890. background-position: -456px -118px
  1891. }
  1892. .icon-hdd {
  1893. background-position: 0 -144px
  1894. }
  1895. .icon-bullhorn {
  1896. background-position: -24px -144px
  1897. }
  1898. .icon-bell {
  1899. background-position: -48px -144px
  1900. }
  1901. .icon-certificate {
  1902. background-position: -72px -144px
  1903. }
  1904. .icon-thumbs-up {
  1905. background-position: -96px -144px
  1906. }
  1907. .icon-thumbs-down {
  1908. background-position: -120px -144px
  1909. }
  1910. .icon-hand-right {
  1911. background-position: -144px -144px
  1912. }
  1913. .icon-hand-left {
  1914. background-position: -168px -144px
  1915. }
  1916. .icon-hand-up {
  1917. background-position: -192px -144px
  1918. }
  1919. .icon-hand-down {
  1920. background-position: -216px -144px
  1921. }
  1922. .icon-circle-arrow-right {
  1923. background-position: -240px -144px
  1924. }
  1925. .icon-circle-arrow-left {
  1926. background-position: -264px -144px
  1927. }
  1928. .icon-circle-arrow-up {
  1929. background-position: -288px -144px
  1930. }
  1931. .icon-circle-arrow-down {
  1932. background-position: -312px -144px
  1933. }
  1934. .icon-globe {
  1935. background-position: -336px -144px
  1936. }
  1937. .icon-wrench {
  1938. background-position: -360px -144px
  1939. }
  1940. .icon-tasks {
  1941. background-position: -384px -144px
  1942. }
  1943. .icon-filter {
  1944. background-position: -408px -144px
  1945. }
  1946. .icon-briefcase {
  1947. background-position: -432px -144px
  1948. }
  1949. .icon-fullscreen {
  1950. background-position: -456px -144px
  1951. }
  1952. .dropup,.dropdown {
  1953. position: relative
  1954. }
  1955. .dropdown-toggle {
  1956. *margin-bottom: -3px
  1957. }
  1958. .dropdown-toggle:active,.open .dropdown-toggle {
  1959. outline: 0
  1960. }
  1961. .caret {
  1962. display: inline-block;
  1963. width: 0;
  1964. height: 0;
  1965. vertical-align: top;
  1966. border-top: 4px solid #000;
  1967. border-right: 4px solid transparent;
  1968. border-left: 4px solid transparent;
  1969. content: ""
  1970. }
  1971. .dropdown .caret {
  1972. margin-top: 8px;
  1973. margin-left: 2px
  1974. }
  1975. .dropdown-menu {
  1976. position: absolute;
  1977. top: 100%;
  1978. left: 0;
  1979. z-index: 1000;
  1980. display: none;
  1981. float: left;
  1982. min-width: 160px;
  1983. padding: 5px 0;
  1984. margin: 2px 0 0;
  1985. list-style: none;
  1986. background-color: #fff;
  1987. border: 1px solid #ccc;
  1988. border: 1px solid rgba(0,0,0,0.2);
  1989. *border-right-width: 2px;
  1990. *border-bottom-width: 2px;
  1991. -webkit-border-radius: 6px;
  1992. -moz-border-radius: 6px;
  1993. border-radius: 6px;
  1994. -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  1995. -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  1996. box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  1997. -webkit-background-clip: padding-box;
  1998. -moz-background-clip: padding;
  1999. background-clip: padding-box
  2000. }
  2001. .dropdown-menu.pull-right {
  2002. right: 0;
  2003. left: auto
  2004. }
  2005. .dropdown-menu .divider {
  2006. *width: 100%;
  2007. height: 1px;
  2008. margin: 9px 1px;
  2009. *margin: -5px 0 5px;
  2010. overflow: hidden;
  2011. background-color: #e5e5e5;
  2012. border-bottom: 1px solid #fff
  2013. }
  2014. .dropdown-menu>li>a {
  2015. display: block;
  2016. padding: 3px 20px;
  2017. clear: both;
  2018. font-weight: normal;
  2019. line-height: 20px;
  2020. color: #333;
  2021. white-space: nowrap
  2022. }
  2023. .dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a {
  2024. color: #fff;
  2025. text-decoration: none;
  2026. background-color: #0081c2;
  2027. background-image: -moz-linear-gradient(top,#08c,#0077b3);
  2028. background-image: -webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));
  2029. background-image: -webkit-linear-gradient(top,#08c,#0077b3);
  2030. background-image: -o-linear-gradient(top,#08c,#0077b3);
  2031. background-image: linear-gradient(to bottom,#08c,#0077b3);
  2032. background-repeat: repeat-x;
  2033. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0)
  2034. }
  2035. .dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus {
  2036. color: #fff;
  2037. text-decoration: none;
  2038. background-color: #0081c2;
  2039. background-image: -moz-linear-gradient(top,#08c,#0077b3);
  2040. background-image: -webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));
  2041. background-image: -webkit-linear-gradient(top,#08c,#0077b3);
  2042. background-image: -o-linear-gradient(top,#08c,#0077b3);
  2043. background-image: linear-gradient(to bottom,#08c,#0077b3);
  2044. background-repeat: repeat-x;
  2045. outline: 0;
  2046. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0)
  2047. }
  2048. .dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus {
  2049. color: #999
  2050. }
  2051. .dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus {
  2052. text-decoration: none;
  2053. cursor: default;
  2054. background-color: transparent;
  2055. background-image: none;
  2056. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
  2057. }
  2058. .open {
  2059. *z-index: 1000
  2060. }
  2061. .open>.dropdown-menu {
  2062. display: block
  2063. }
  2064. .dropdown-backdrop {
  2065. position: fixed;
  2066. top: 0;
  2067. right: 0;
  2068. bottom: 0;
  2069. left: 0;
  2070. z-index: 990
  2071. }
  2072. .pull-right>.dropdown-menu {
  2073. right: 0;
  2074. left: auto
  2075. }
  2076. .dropup .caret,.navbar-fixed-bottom .dropdown .caret {
  2077. border-top: 0;
  2078. border-bottom: 4px solid #000;
  2079. content: ""
  2080. }
  2081. .dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu {
  2082. top: auto;
  2083. bottom: 100%;
  2084. margin-bottom: 1px
  2085. }
  2086. .dropdown-submenu {
  2087. position: relative
  2088. }
  2089. .dropdown-submenu>.dropdown-menu {
  2090. top: 0;
  2091. left: 100%;
  2092. margin-top: -6px;
  2093. margin-left: -1px;
  2094. -webkit-border-radius: 0 6px 6px 6px;
  2095. -moz-border-radius: 0 6px 6px 6px;
  2096. border-radius: 0 6px 6px 6px
  2097. }
  2098. .dropdown-submenu:hover>.dropdown-menu {
  2099. display: block
  2100. }
  2101. .dropup .dropdown-submenu>.dropdown-menu {
  2102. top: auto;
  2103. bottom: 0;
  2104. margin-top: 0;
  2105. margin-bottom: -2px;
  2106. -webkit-border-radius: 5px 5px 5px 0;
  2107. -moz-border-radius: 5px 5px 5px 0;
  2108. border-radius: 5px 5px 5px 0
  2109. }
  2110. .dropdown-submenu>a:after {
  2111. display: block;
  2112. float: right;
  2113. width: 0;
  2114. height: 0;
  2115. margin-top: 5px;
  2116. margin-right: -10px;
  2117. border-color: transparent;
  2118. border-left-color: #ccc;
  2119. border-style: solid;
  2120. border-width: 5px 0 5px 5px;
  2121. content: " "
  2122. }
  2123. .dropdown-submenu:hover>a:after {
  2124. border-left-color: #fff
  2125. }
  2126. .dropdown-submenu.pull-left {
  2127. float: none
  2128. }
  2129. .dropdown-submenu.pull-left>.dropdown-menu {
  2130. left: -100%;
  2131. margin-left: 10px;
  2132. -webkit-border-radius: 6px 0 6px 6px;
  2133. -moz-border-radius: 6px 0 6px 6px;
  2134. border-radius: 6px 0 6px 6px
  2135. }
  2136. .dropdown .dropdown-menu .nav-header {
  2137. padding-right: 20px;
  2138. padding-left: 20px
  2139. }
  2140. .typeahead {
  2141. z-index: 1051;
  2142. margin-top: 2px;
  2143. -webkit-border-radius: 4px;
  2144. -moz-border-radius: 4px;
  2145. border-radius: 4px
  2146. }
  2147. .well {
  2148. min-height: 20px;
  2149. padding: 19px;
  2150. margin-bottom: 20px;
  2151. background-color: #f5f5f5;
  2152. border: 1px solid #e3e3e3;
  2153. -webkit-border-radius: 4px;
  2154. -moz-border-radius: 4px;
  2155. border-radius: 4px;
  2156. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
  2157. -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
  2158. box-shadow: inset 0 1px 1px rgba(0,0,0,0.05)
  2159. }
  2160. .well blockquote {
  2161. border-color: #ddd;
  2162. border-color: rgba(0,0,0,0.15)
  2163. }
  2164. .well-large {
  2165. padding: 24px;
  2166. -webkit-border-radius: 6px;
  2167. -moz-border-radius: 6px;
  2168. border-radius: 6px
  2169. }
  2170. .well-small {
  2171. padding: 9px;
  2172. -webkit-border-radius: 3px;
  2173. -moz-border-radius: 3px;
  2174. border-radius: 3px
  2175. }
  2176. .fade {
  2177. opacity: 0;
  2178. -webkit-transition: opacity .15s linear;
  2179. -moz-transition: opacity .15s linear;
  2180. -o-transition: opacity .15s linear;
  2181. transition: opacity .15s linear
  2182. }
  2183. .fade.in {
  2184. opacity: 1
  2185. }
  2186. .collapse {
  2187. position: relative;
  2188. height: 0;
  2189. overflow: hidden;
  2190. -webkit-transition: height .35s ease;
  2191. -moz-transition: height .35s ease;
  2192. -o-transition: height .35s ease;
  2193. transition: height .35s ease
  2194. }
  2195. .collapse.in {
  2196. height: auto
  2197. }
  2198. .close {
  2199. float: right;
  2200. font-size: 20px;
  2201. font-weight: bold;
  2202. line-height: 20px;
  2203. color: #000;
  2204. text-shadow: 0 1px 0 #fff;
  2205. opacity: .2;
  2206. filter: alpha(opacity=20)
  2207. }
  2208. .close:hover,.close:focus {
  2209. color: #000;
  2210. text-decoration: none;
  2211. cursor: pointer;
  2212. opacity: .4;
  2213. filter: alpha(opacity=40)
  2214. }
  2215. button.close {
  2216. padding: 0;
  2217. cursor: pointer;
  2218. background: transparent;
  2219. border: 0;
  2220. -webkit-appearance: none
  2221. }
  2222. .btn {
  2223. display: inline-block;
  2224. *display: inline;
  2225. padding: 4px 12px;
  2226. margin-bottom: 0;
  2227. *margin-left: .3em;
  2228. font-size: 14px;
  2229. line-height: 20px;
  2230. color: #333;
  2231. text-align: center;
  2232. text-shadow: 0 1px 1px rgba(255,255,255,0.75);
  2233. vertical-align: middle;
  2234. cursor: pointer;
  2235. background-color: #f5f5f5;
  2236. *background-color: #e6e6e6;
  2237. background-image: -moz-linear-gradient(top,#fff,#e6e6e6);
  2238. background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));
  2239. background-image: -webkit-linear-gradient(top,#fff,#e6e6e6);
  2240. background-image: -o-linear-gradient(top,#fff,#e6e6e6);
  2241. background-image: linear-gradient(to bottom,#fff,#e6e6e6);
  2242. background-repeat: repeat-x;
  2243. border: 1px solid #ccc;
  2244. *border: 0;
  2245. border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  2246. border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  2247. border-bottom-color: #b3b3b3;
  2248. -webkit-border-radius: 4px;
  2249. -moz-border-radius: 4px;
  2250. border-radius: 4px;
  2251. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);
  2252. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  2253. *zoom: 1;
  2254. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
  2255. -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
  2256. box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)
  2257. }
  2258. .btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled] {
  2259. color: #333;
  2260. background-color: #e6e6e6;
  2261. *background-color: #d9d9d9
  2262. }
  2263. .btn:active,.btn.active {
  2264. background-color: #ccc \9
  2265. }
  2266. .btn:first-child {
  2267. *margin-left: 0
  2268. }
  2269. .btn:hover,.btn:focus {
  2270. color: #333;
  2271. text-decoration: none;
  2272. background-position: 0 -15px;
  2273. -webkit-transition: background-position .1s linear;
  2274. -moz-transition: background-position .1s linear;
  2275. -o-transition: background-position .1s linear;
  2276. transition: background-position .1s linear
  2277. }
  2278. .btn:focus {
  2279. outline: thin dotted #333;
  2280. outline: 5px auto -webkit-focus-ring-color;
  2281. outline-offset: -2px
  2282. }
  2283. .btn.active,.btn:active {
  2284. background-image: none;
  2285. outline: 0;
  2286. -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);
  2287. -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);
  2288. box-shadow: inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)
  2289. }
  2290. .btn.disabled,.btn[disabled] {
  2291. cursor: default;
  2292. background-image: none;
  2293. opacity: .65;
  2294. filter: alpha(opacity=65);
  2295. -webkit-box-shadow: none;
  2296. -moz-box-shadow: none;
  2297. box-shadow: none
  2298. }
  2299. .btn-large {
  2300. padding: 11px 19px;
  2301. font-size: 17.5px;
  2302. -webkit-border-radius: 6px;
  2303. -moz-border-radius: 6px;
  2304. border-radius: 6px
  2305. }
  2306. .btn-large [class^="icon-"],.btn-large [class*=" icon-"] {
  2307. margin-top: 4px
  2308. }
  2309. .btn-small {
  2310. padding: 2px 10px;
  2311. font-size: 11.9px;
  2312. -webkit-border-radius: 3px;
  2313. -moz-border-radius: 3px;
  2314. border-radius: 3px
  2315. }
  2316. .btn-small [class^="icon-"],.btn-small [class*=" icon-"] {
  2317. margin-top: 0
  2318. }
  2319. .btn-mini [class^="icon-"],.btn-mini [class*=" icon-"] {
  2320. margin-top: -1px
  2321. }
  2322. .btn-mini {
  2323. padding: 0 6px;
  2324. font-size: 10.5px;
  2325. -webkit-border-radius: 3px;
  2326. -moz-border-radius: 3px;
  2327. border-radius: 3px
  2328. }
  2329. .btn-block {
  2330. display: block;
  2331. width: 100%;
  2332. padding-right: 0;
  2333. padding-left: 0;
  2334. -webkit-box-sizing: border-box;
  2335. -moz-box-sizing: border-box;
  2336. box-sizing: border-box
  2337. }
  2338. .btn-block+.btn-block {
  2339. margin-top: 5px
  2340. }
  2341. input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block {
  2342. width: 100%
  2343. }
  2344. .btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active {
  2345. color: rgba(255,255,255,0.75)
  2346. }
  2347. .btn-primary {
  2348. color: #fff;
  2349. text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  2350. background-color: #006dcc;
  2351. *background-color: #04c;
  2352. background-image: -moz-linear-gradient(top,#08c,#04c);
  2353. background-image: -webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));
  2354. background-image: -webkit-linear-gradient(top,#08c,#04c);
  2355. background-image: -o-linear-gradient(top,#08c,#04c);
  2356. background-image: linear-gradient(to bottom,#08c,#04c);
  2357. background-repeat: repeat-x;
  2358. border-color: #04c #04c #002a80;
  2359. border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  2360. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0044cc',GradientType=0);
  2361. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
  2362. }
  2363. .btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled] {
  2364. color: #fff;
  2365. background-color: #04c;
  2366. *background-color: #003bb3
  2367. }
  2368. .btn-primary:active,.btn-primary.active {
  2369. background-color: #039 \9
  2370. }
  2371. .btn-warning {
  2372. color: #fff;
  2373. text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  2374. background-color: #faa732;
  2375. *background-color: #f89406;
  2376. background-image: -moz-linear-gradient(top,#fbb450,#f89406);
  2377. background-image: -webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));
  2378. background-image: -webkit-linear-gradient(top,#fbb450,#f89406);
  2379. background-image: -o-linear-gradient(top,#fbb450,#f89406);
  2380. background-image: linear-gradient(to bottom,#fbb450,#f89406);
  2381. background-repeat: repeat-x;
  2382. border-color: #f89406 #f89406 #ad6704;
  2383. border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  2384. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450',endColorstr='#fff89406',GradientType=0);
  2385. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
  2386. }
  2387. .btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled] {
  2388. color: #fff;
  2389. background-color: #f89406;
  2390. *background-color: #df8505
  2391. }
  2392. .btn-warning:active,.btn-warning.active {
  2393. background-color: #c67605 \9
  2394. }
  2395. .btn-danger {
  2396. color: #fff;
  2397. text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  2398. background-color: #da4f49;
  2399. *background-color: #bd362f;
  2400. background-image: -moz-linear-gradient(top,#ee5f5b,#bd362f);
  2401. background-image: -webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#bd362f));
  2402. background-image: -webkit-linear-gradient(top,#ee5f5b,#bd362f);
  2403. background-image: -o-linear-gradient(top,#ee5f5b,#bd362f);
  2404. background-image: linear-gradient(to bottom,#ee5f5b,#bd362f);
  2405. background-repeat: repeat-x;
  2406. border-color: #bd362f #bd362f #802420;
  2407. border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  2408. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b',endColorstr='#ffbd362f',GradientType=0);
  2409. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
  2410. }
  2411. .btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled] {
  2412. color: #fff;
  2413. background-color: #bd362f;
  2414. *background-color: #a9302a
  2415. }
  2416. .btn-danger:active,.btn-danger.active {
  2417. background-color: #942a25 \9
  2418. }
  2419. .btn-success {
  2420. color: #fff;
  2421. text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  2422. background-color: #5bb75b;
  2423. *background-color: #51a351;
  2424. background-image: -moz-linear-gradient(top,#62c462,#51a351);
  2425. background-image: -webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#51a351));
  2426. background-image: -webkit-linear-gradient(top,#62c462,#51a351);
  2427. background-image: -o-linear-gradient(top,#62c462,#51a351);
  2428. background-image: linear-gradient(to bottom,#62c462,#51a351);
  2429. background-repeat: repeat-x;
  2430. border-color: #51a351 #51a351 #387038;
  2431. border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  2432. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462',endColorstr='#ff51a351',GradientType=0);
  2433. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
  2434. }
  2435. .btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled] {
  2436. color: #fff;
  2437. background-color: #51a351;
  2438. *background-color: #499249
  2439. }
  2440. .btn-success:active,.btn-success.active {
  2441. background-color: #408140 \9
  2442. }
  2443. .btn-info {
  2444. color: #fff;
  2445. text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  2446. background-color: #49afcd;
  2447. *background-color: #2f96b4;
  2448. background-image: -moz-linear-gradient(top,#5bc0de,#2f96b4);
  2449. background-image: -webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#2f96b4));
  2450. background-image: -webkit-linear-gradient(top,#5bc0de,#2f96b4);
  2451. background-image: -o-linear-gradient(top,#5bc0de,#2f96b4);
  2452. background-image: linear-gradient(to bottom,#5bc0de,#2f96b4);
  2453. background-repeat: repeat-x;
  2454. border-color: #2f96b4 #2f96b4 #1f6377;
  2455. border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  2456. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff2f96b4',GradientType=0);
  2457. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
  2458. }
  2459. .btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled] {
  2460. color: #fff;
  2461. background-color: #2f96b4;
  2462. *background-color: #2a85a0
  2463. }
  2464. .btn-info:active,.btn-info.active {
  2465. background-color: #24748c \9
  2466. }
  2467. .btn-inverse {
  2468. color: #fff;
  2469. text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  2470. background-color: #363636;
  2471. *background-color: #222;
  2472. background-image: -moz-linear-gradient(top,#444,#222);
  2473. background-image: -webkit-gradient(linear,0 0,0 100%,from(#444),to(#222));
  2474. background-image: -webkit-linear-gradient(top,#444,#222);
  2475. background-image: -o-linear-gradient(top,#444,#222);
  2476. background-image: linear-gradient(to bottom,#444,#222);
  2477. background-repeat: repeat-x;
  2478. border-color: #222 #222 #000;
  2479. border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  2480. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444',endColorstr='#ff222222',GradientType=0);
  2481. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
  2482. }
  2483. .btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled] {
  2484. color: #fff;
  2485. background-color: #222;
  2486. *background-color: #151515
  2487. }
  2488. .btn-inverse:active,.btn-inverse.active {
  2489. background-color: #080808 \9
  2490. }
  2491. button.btn,input[type="submit"].btn {
  2492. *padding-top: 3px;
  2493. *padding-bottom: 3px
  2494. }
  2495. button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner {
  2496. padding: 0;
  2497. border: 0
  2498. }
  2499. button.btn.btn-large,input[type="submit"].btn.btn-large {
  2500. *padding-top: 7px;
  2501. *padding-bottom: 7px
  2502. }
  2503. button.btn.btn-small,input[type="submit"].btn.btn-small {
  2504. *padding-top: 3px;
  2505. *padding-bottom: 3px
  2506. }
  2507. button.btn.btn-mini,input[type="submit"].btn.btn-mini {
  2508. *padding-top: 1px;
  2509. *padding-bottom: 1px
  2510. }
  2511. .btn-link,.btn-link:active,.btn-link[disabled] {
  2512. background-color: transparent;
  2513. background-image: none;
  2514. -webkit-box-shadow: none;
  2515. -moz-box-shadow: none;
  2516. box-shadow: none
  2517. }
  2518. .btn-link {
  2519. color: #08c;
  2520. cursor: pointer;
  2521. border-color: transparent;
  2522. -webkit-border-radius: 0;
  2523. -moz-border-radius: 0;
  2524. border-radius: 0
  2525. }
  2526. .btn-link:hover,.btn-link:focus {
  2527. color: #005580;
  2528. text-decoration: underline;
  2529. background-color: transparent
  2530. }
  2531. .btn-link[disabled]:hover,.btn-link[disabled]:focus {
  2532. color: #333;
  2533. text-decoration: none
  2534. }
  2535. .btn-group {
  2536. position: relative;
  2537. display: inline-block;
  2538. *display: inline;
  2539. *margin-left: .3em;
  2540. font-size: 0;
  2541. white-space: nowrap;
  2542. vertical-align: middle;
  2543. *zoom: 1
  2544. }
  2545. .btn-group:first-child {
  2546. *margin-left: 0
  2547. }
  2548. .btn-group+.btn-group {
  2549. margin-left: 5px
  2550. }
  2551. .btn-toolbar {
  2552. margin-top: 10px;
  2553. margin-bottom: 10px;
  2554. font-size: 0
  2555. }
  2556. .btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group {
  2557. margin-left: 5px
  2558. }
  2559. .btn-group>.btn {
  2560. position: relative;
  2561. -webkit-border-radius: 0;
  2562. -moz-border-radius: 0;
  2563. border-radius: 0
  2564. }
  2565. .btn-group>.btn+.btn {
  2566. margin-left: -1px
  2567. }
  2568. .btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover {
  2569. font-size: 14px
  2570. }
  2571. .btn-group>.btn-mini {
  2572. font-size: 10.5px
  2573. }
  2574. .btn-group>.btn-small {
  2575. font-size: 11.9px
  2576. }
  2577. .btn-group>.btn-large {
  2578. font-size: 17.5px
  2579. }
  2580. .btn-group>.btn:first-child {
  2581. margin-left: 0;
  2582. -webkit-border-bottom-left-radius: 4px;
  2583. border-bottom-left-radius: 4px;
  2584. -webkit-border-top-left-radius: 4px;
  2585. border-top-left-radius: 4px;
  2586. -moz-border-radius-bottomleft: 4px;
  2587. -moz-border-radius-topleft: 4px
  2588. }
  2589. .btn-group>.btn:last-child,.btn-group>.dropdown-toggle {
  2590. -webkit-border-top-right-radius: 4px;
  2591. border-top-right-radius: 4px;
  2592. -webkit-border-bottom-right-radius: 4px;
  2593. border-bottom-right-radius: 4px;
  2594. -moz-border-radius-topright: 4px;
  2595. -moz-border-radius-bottomright: 4px
  2596. }
  2597. .btn-group>.btn.large:first-child {
  2598. margin-left: 0;
  2599. -webkit-border-bottom-left-radius: 6px;
  2600. border-bottom-left-radius: 6px;
  2601. -webkit-border-top-left-radius: 6px;
  2602. border-top-left-radius: 6px;
  2603. -moz-border-radius-bottomleft: 6px;
  2604. -moz-border-radius-topleft: 6px
  2605. }
  2606. .btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle {
  2607. -webkit-border-top-right-radius: 6px;
  2608. border-top-right-radius: 6px;
  2609. -webkit-border-bottom-right-radius: 6px;
  2610. border-bottom-right-radius: 6px;
  2611. -moz-border-radius-topright: 6px;
  2612. -moz-border-radius-bottomright: 6px
  2613. }
  2614. .btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active {
  2615. z-index: 2
  2616. }
  2617. .btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle {
  2618. outline: 0
  2619. }
  2620. .btn-group>.btn+.dropdown-toggle {
  2621. *padding-top: 5px;
  2622. padding-right: 8px;
  2623. *padding-bottom: 5px;
  2624. padding-left: 8px;
  2625. -webkit-box-shadow: inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
  2626. -moz-box-shadow: inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
  2627. box-shadow: inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)
  2628. }
  2629. .btn-group>.btn-mini+.dropdown-toggle {
  2630. *padding-top: 2px;
  2631. padding-right: 5px;
  2632. *padding-bottom: 2px;
  2633. padding-left: 5px
  2634. }
  2635. .btn-group>.btn-small+.dropdown-toggle {
  2636. *padding-top: 5px;
  2637. *padding-bottom: 4px
  2638. }
  2639. .btn-group>.btn-large+.dropdown-toggle {
  2640. *padding-top: 7px;
  2641. padding-right: 12px;
  2642. *padding-bottom: 7px;
  2643. padding-left: 12px
  2644. }
  2645. .btn-group.open .dropdown-toggle {
  2646. background-image: none;
  2647. -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);
  2648. -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);
  2649. box-shadow: inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)
  2650. }
  2651. .btn-group.open .btn.dropdown-toggle {
  2652. background-color: #e6e6e6
  2653. }
  2654. .btn-group.open .btn-primary.dropdown-toggle {
  2655. background-color: #04c
  2656. }
  2657. .btn-group.open .btn-warning.dropdown-toggle {
  2658. background-color: #f89406
  2659. }
  2660. .btn-group.open .btn-danger.dropdown-toggle {
  2661. background-color: #bd362f
  2662. }
  2663. .btn-group.open .btn-success.dropdown-toggle {
  2664. background-color: #51a351
  2665. }
  2666. .btn-group.open .btn-info.dropdown-toggle {
  2667. background-color: #2f96b4
  2668. }
  2669. .btn-group.open .btn-inverse.dropdown-toggle {
  2670. background-color: #222
  2671. }
  2672. .btn .caret {
  2673. margin-top: 8px;
  2674. margin-left: 0
  2675. }
  2676. .btn-large .caret {
  2677. margin-top: 6px
  2678. }
  2679. .btn-large .caret {
  2680. border-top-width: 5px;
  2681. border-right-width: 5px;
  2682. border-left-width: 5px
  2683. }
  2684. .btn-mini .caret,.btn-small .caret {
  2685. margin-top: 8px
  2686. }
  2687. .dropup .btn-large .caret {
  2688. border-bottom-width: 5px
  2689. }
  2690. .btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret {
  2691. border-top-color: #fff;
  2692. border-bottom-color: #fff
  2693. }
  2694. .btn-group-vertical {
  2695. display: inline-block;
  2696. *display: inline;
  2697. *zoom: 1
  2698. }
  2699. .btn-group-vertical>.btn {
  2700. display: block;
  2701. float: none;
  2702. max-width: 100%;
  2703. -webkit-border-radius: 0;
  2704. -moz-border-radius: 0;
  2705. border-radius: 0
  2706. }
  2707. .btn-group-vertical>.btn+.btn {
  2708. margin-top: -1px;
  2709. margin-left: 0
  2710. }
  2711. .btn-group-vertical>.btn:first-child {
  2712. -webkit-border-radius: 4px 4px 0 0;
  2713. -moz-border-radius: 4px 4px 0 0;
  2714. border-radius: 4px 4px 0 0
  2715. }
  2716. .btn-group-vertical>.btn:last-child {
  2717. -webkit-border-radius: 0 0 4px 4px;
  2718. -moz-border-radius: 0 0 4px 4px;
  2719. border-radius: 0 0 4px 4px
  2720. }
  2721. .btn-group-vertical>.btn-large:first-child {
  2722. -webkit-border-radius: 6px 6px 0 0;
  2723. -moz-border-radius: 6px 6px 0 0;
  2724. border-radius: 6px 6px 0 0
  2725. }
  2726. .btn-group-vertical>.btn-large:last-child {
  2727. -webkit-border-radius: 0 0 6px 6px;
  2728. -moz-border-radius: 0 0 6px 6px;
  2729. border-radius: 0 0 6px 6px
  2730. }
  2731. .alert {
  2732. padding: 8px 35px 8px 14px;
  2733. margin-bottom: 20px;
  2734. text-shadow: 0 1px 0 rgba(255,255,255,0.5);
  2735. background-color: #fcf8e3;
  2736. border: 1px solid #fbeed5;
  2737. -webkit-border-radius: 4px;
  2738. -moz-border-radius: 4px;
  2739. border-radius: 4px
  2740. }
  2741. .alert,.alert h4 {
  2742. color: #c09853
  2743. }
  2744. .alert h4 {
  2745. margin: 0
  2746. }
  2747. .alert .close {
  2748. position: relative;
  2749. top: -2px;
  2750. right: -21px;
  2751. line-height: 20px
  2752. }
  2753. .alert-success {
  2754. color: #468847;
  2755. background-color: #dff0d8;
  2756. border-color: #d6e9c6
  2757. }
  2758. .alert-success h4 {
  2759. color: #468847
  2760. }
  2761. .alert-danger,.alert-error {
  2762. color: #b94a48;
  2763. background-color: #f2dede;
  2764. border-color: #eed3d7
  2765. }
  2766. .alert-danger h4,.alert-error h4 {
  2767. color: #b94a48
  2768. }
  2769. .alert-info {
  2770. color: #3a87ad;
  2771. background-color: #d9edf7;
  2772. border-color: #bce8f1
  2773. }
  2774. .alert-info h4 {
  2775. color: #3a87ad
  2776. }
  2777. .alert-block {
  2778. padding-top: 14px;
  2779. padding-bottom: 14px
  2780. }
  2781. .alert-block>p,.alert-block>ul {
  2782. margin-bottom: 0
  2783. }
  2784. .alert-block p+p {
  2785. margin-top: 5px
  2786. }
  2787. .nav {
  2788. margin-bottom: 20px;
  2789. margin-left: 0;
  2790. list-style: none
  2791. }
  2792. .nav>li>a {
  2793. display: block
  2794. }
  2795. .nav>li>a:hover,.nav>li>a:focus {
  2796. text-decoration: none;
  2797. background-color: #eee
  2798. }
  2799. .nav>li>a>img {
  2800. max-width: none
  2801. }
  2802. .nav>.pull-right {
  2803. float: right
  2804. }
  2805. .nav-header {
  2806. display: block;
  2807. padding: 3px 15px;
  2808. font-size: 11px;
  2809. font-weight: bold;
  2810. line-height: 20px;
  2811. color: #999;
  2812. text-shadow: 0 1px 0 rgba(255,255,255,0.5);
  2813. text-transform: uppercase
  2814. }
  2815. .nav li+.nav-header {
  2816. margin-top: 9px
  2817. }
  2818. .nav-list {
  2819. padding-right: 15px;
  2820. padding-left: 15px;
  2821. margin-bottom: 0
  2822. }
  2823. .nav-list>li>a,.nav-list .nav-header {
  2824. margin-right: -15px;
  2825. margin-left: -15px;
  2826. text-shadow: 0 1px 0 rgba(255,255,255,0.5)
  2827. }
  2828. .nav-list>li>a {
  2829. padding: 3px 15px
  2830. }
  2831. .nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus {
  2832. color: #fff;
  2833. text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
  2834. background-color: #08c
  2835. }
  2836. .nav-list [class^="icon-"],.nav-list [class*=" icon-"] {
  2837. margin-right: 2px
  2838. }
  2839. .nav-list .divider {
  2840. *width: 100%;
  2841. height: 1px;
  2842. margin: 9px 1px;
  2843. *margin: -5px 0 5px;
  2844. overflow: hidden;
  2845. background-color: #e5e5e5;
  2846. border-bottom: 1px solid #fff
  2847. }
  2848. .nav-tabs,.nav-pills {
  2849. *zoom: 1
  2850. }
  2851. .nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after {
  2852. display: table;
  2853. line-height: 0;
  2854. content: ""
  2855. }
  2856. .nav-tabs:after,.nav-pills:after {
  2857. clear: both
  2858. }
  2859. .nav-tabs>li,.nav-pills>li {
  2860. float: left
  2861. }
  2862. .nav-tabs>li>a,.nav-pills>li>a {
  2863. padding-right: 12px;
  2864. padding-left: 12px;
  2865. margin-right: 2px;
  2866. line-height: 14px
  2867. }
  2868. .nav-tabs {
  2869. border-bottom: 1px solid #ddd
  2870. }
  2871. .nav-tabs>li {
  2872. margin-bottom: -1px
  2873. }
  2874. .nav-tabs>li>a {
  2875. padding-top: 8px;
  2876. padding-bottom: 8px;
  2877. line-height: 20px;
  2878. border: 1px solid transparent;
  2879. -webkit-border-radius: 4px 4px 0 0;
  2880. -moz-border-radius: 4px 4px 0 0;
  2881. border-radius: 4px 4px 0 0
  2882. }
  2883. .nav-tabs>li>a:hover,.nav-tabs>li>a:focus {
  2884. border-color: #eee #eee #ddd
  2885. }
  2886. .nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus {
  2887. color: #555;
  2888. cursor: default;
  2889. background-color: #fff;
  2890. border: 1px solid #ddd;
  2891. border-bottom-color: transparent
  2892. }
  2893. .nav-pills>li>a {
  2894. padding-top: 8px;
  2895. padding-bottom: 8px;
  2896. margin-top: 2px;
  2897. margin-bottom: 2px;
  2898. -webkit-border-radius: 5px;
  2899. -moz-border-radius: 5px;
  2900. border-radius: 5px
  2901. }
  2902. .nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus {
  2903. color: #fff;
  2904. background-color: #08c
  2905. }
  2906. .nav-stacked>li {
  2907. float: none
  2908. }
  2909. .nav-stacked>li>a {
  2910. margin-right: 0
  2911. }
  2912. .nav-tabs.nav-stacked {
  2913. border-bottom: 0
  2914. }
  2915. .nav-tabs.nav-stacked>li>a {
  2916. border: 1px solid #ddd;
  2917. -webkit-border-radius: 0;
  2918. -moz-border-radius: 0;
  2919. border-radius: 0
  2920. }
  2921. .nav-tabs.nav-stacked>li:first-child>a {
  2922. -webkit-border-top-right-radius: 4px;
  2923. border-top-right-radius: 4px;
  2924. -webkit-border-top-left-radius: 4px;
  2925. border-top-left-radius: 4px;
  2926. -moz-border-radius-topright: 4px;
  2927. -moz-border-radius-topleft: 4px
  2928. }
  2929. .nav-tabs.nav-stacked>li:last-child>a {
  2930. -webkit-border-bottom-right-radius: 4px;
  2931. border-bottom-right-radius: 4px;
  2932. -webkit-border-bottom-left-radius: 4px;
  2933. border-bottom-left-radius: 4px;
  2934. -moz-border-radius-bottomright: 4px;
  2935. -moz-border-radius-bottomleft: 4px
  2936. }
  2937. .nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus {
  2938. z-index: 2;
  2939. border-color: #ddd
  2940. }
  2941. .nav-pills.nav-stacked>li>a {
  2942. margin-bottom: 3px
  2943. }
  2944. .nav-pills.nav-stacked>li:last-child>a {
  2945. margin-bottom: 1px
  2946. }
  2947. .nav-tabs .dropdown-menu {
  2948. -webkit-border-radius: 0 0 6px 6px;
  2949. -moz-border-radius: 0 0 6px 6px;
  2950. border-radius: 0 0 6px 6px
  2951. }
  2952. .nav-pills .dropdown-menu {
  2953. -webkit-border-radius: 6px;
  2954. -moz-border-radius: 6px;
  2955. border-radius: 6px
  2956. }
  2957. .nav .dropdown-toggle .caret {
  2958. margin-top: 6px;
  2959. border-top-color: #08c;
  2960. border-bottom-color: #08c
  2961. }
  2962. .nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret {
  2963. border-top-color: #005580;
  2964. border-bottom-color: #005580
  2965. }
  2966. .nav-tabs .dropdown-toggle .caret {
  2967. margin-top: 8px
  2968. }
  2969. .nav .active .dropdown-toggle .caret {
  2970. border-top-color: #fff;
  2971. border-bottom-color: #fff
  2972. }
  2973. .nav-tabs .active .dropdown-toggle .caret {
  2974. border-top-color: #555;
  2975. border-bottom-color: #555
  2976. }
  2977. .nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus {
  2978. cursor: pointer
  2979. }
  2980. .nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus {
  2981. color: #fff;
  2982. background-color: #999;
  2983. border-color: #999
  2984. }
  2985. .nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret {
  2986. border-top-color: #fff;
  2987. border-bottom-color: #fff;
  2988. opacity: 1;
  2989. filter: alpha(opacity=100)
  2990. }
  2991. .tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus {
  2992. border-color: #999
  2993. }
  2994. .tabbable {
  2995. *zoom: 1
  2996. }
  2997. .tabbable:before,.tabbable:after {
  2998. display: table;
  2999. line-height: 0;
  3000. content: ""
  3001. }
  3002. .tabbable:after {
  3003. clear: both
  3004. }
  3005. .tab-content {
  3006. overflow: auto
  3007. }
  3008. .tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs {
  3009. border-bottom: 0
  3010. }
  3011. .tab-content>.tab-pane,.pill-content>.pill-pane {
  3012. display: none
  3013. }
  3014. .tab-content>.active,.pill-content>.active {
  3015. display: block
  3016. }
  3017. .tabs-below>.nav-tabs {
  3018. border-top: 1px solid #ddd
  3019. }
  3020. .tabs-below>.nav-tabs>li {
  3021. margin-top: -1px;
  3022. margin-bottom: 0
  3023. }
  3024. .tabs-below>.nav-tabs>li>a {
  3025. -webkit-border-radius: 0 0 4px 4px;
  3026. -moz-border-radius: 0 0 4px 4px;
  3027. border-radius: 0 0 4px 4px
  3028. }
  3029. .tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus {
  3030. border-top-color: #ddd;
  3031. border-bottom-color: transparent
  3032. }
  3033. .tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus {
  3034. border-color: transparent #ddd #ddd #ddd
  3035. }
  3036. .tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li {
  3037. float: none
  3038. }
  3039. .tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a {
  3040. min-width: 74px;
  3041. margin-right: 0;
  3042. margin-bottom: 3px
  3043. }
  3044. .tabs-left>.nav-tabs {
  3045. float: left;
  3046. margin-right: 19px;
  3047. border-right: 1px solid #ddd
  3048. }
  3049. .tabs-left>.nav-tabs>li>a {
  3050. margin-right: -1px;
  3051. -webkit-border-radius: 4px 0 0 4px;
  3052. -moz-border-radius: 4px 0 0 4px;
  3053. border-radius: 4px 0 0 4px
  3054. }
  3055. .tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus {
  3056. border-color: #eee #ddd #eee #eee
  3057. }
  3058. .tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus {
  3059. border-color: #ddd transparent #ddd #ddd;
  3060. *border-right-color: #fff
  3061. }
  3062. .tabs-right>.nav-tabs {
  3063. float: right;
  3064. margin-left: 19px;
  3065. border-left: 1px solid #ddd
  3066. }
  3067. .tabs-right>.nav-tabs>li>a {
  3068. margin-left: -1px;
  3069. -webkit-border-radius: 0 4px 4px 0;
  3070. -moz-border-radius: 0 4px 4px 0;
  3071. border-radius: 0 4px 4px 0
  3072. }
  3073. .tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus {
  3074. border-color: #eee #eee #eee #ddd
  3075. }
  3076. .tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus {
  3077. border-color: #ddd #ddd #ddd transparent;
  3078. *border-left-color: #fff
  3079. }
  3080. .nav>.disabled>a {
  3081. color: #999
  3082. }
  3083. .nav>.disabled>a:hover,.nav>.disabled>a:focus {
  3084. text-decoration: none;
  3085. cursor: default;
  3086. background-color: transparent
  3087. }
  3088. .navbar {
  3089. *position: relative;
  3090. *z-index: 2;
  3091. margin-bottom: 20px;
  3092. overflow: visible
  3093. }
  3094. .navbar-inner {
  3095. min-height: 40px;
  3096. padding-right: 20px;
  3097. padding-left: 20px;
  3098. background-color: #fafafa;
  3099. background-image: -moz-linear-gradient(top,#fff,#f2f2f2);
  3100. background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#f2f2f2));
  3101. background-image: -webkit-linear-gradient(top,#fff,#f2f2f2);
  3102. background-image: -o-linear-gradient(top,#fff,#f2f2f2);
  3103. background-image: linear-gradient(to bottom,#fff,#f2f2f2);
  3104. background-repeat: repeat-x;
  3105. border: 1px solid #d4d4d4;
  3106. -webkit-border-radius: 4px;
  3107. -moz-border-radius: 4px;
  3108. border-radius: 4px;
  3109. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff2f2f2',GradientType=0);
  3110. *zoom: 1;
  3111. -webkit-box-shadow: 0 1px 4px rgba(0,0,0,0.065);
  3112. -moz-box-shadow: 0 1px 4px rgba(0,0,0,0.065);
  3113. box-shadow: 0 1px 4px rgba(0,0,0,0.065)
  3114. }
  3115. .navbar-inner:before,.navbar-inner:after {
  3116. display: table;
  3117. line-height: 0;
  3118. content: ""
  3119. }
  3120. .navbar-inner:after {
  3121. clear: both
  3122. }
  3123. .navbar .container {
  3124. width: auto
  3125. }
  3126. .nav-collapse.collapse {
  3127. height: auto;
  3128. overflow: visible
  3129. }
  3130. .navbar .brand {
  3131. display: block;
  3132. float: left;
  3133. padding: 10px 20px 10px;
  3134. margin-left: -20px;
  3135. font-size: 20px;
  3136. font-weight: 200;
  3137. color: #777;
  3138. text-shadow: 0 1px 0 #fff
  3139. }
  3140. .navbar .brand:hover,.navbar .brand:focus {
  3141. text-decoration: none
  3142. }
  3143. .navbar-text {
  3144. margin-bottom: 0;
  3145. line-height: 40px;
  3146. color: #777
  3147. }
  3148. .navbar-link {
  3149. color: #777
  3150. }
  3151. .navbar-link:hover,.navbar-link:focus {
  3152. color: #333
  3153. }
  3154. .navbar .divider-vertical {
  3155. height: 40px;
  3156. margin: 0 9px;
  3157. border-right: 1px solid #fff;
  3158. border-left: 1px solid #f2f2f2
  3159. }
  3160. .navbar .btn,.navbar .btn-group {
  3161. margin-top: 5px
  3162. }
  3163. .navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group {
  3164. margin-top: 0
  3165. }
  3166. .navbar-form {
  3167. margin-bottom: 0;
  3168. *zoom: 1
  3169. }
  3170. .navbar-form:before,.navbar-form:after {
  3171. display: table;
  3172. line-height: 0;
  3173. content: ""
  3174. }
  3175. .navbar-form:after {
  3176. clear: both
  3177. }
  3178. .navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox {
  3179. margin-top: 5px
  3180. }
  3181. .navbar-form input,.navbar-form select,.navbar-form .btn {
  3182. display: inline-block;
  3183. margin-bottom: 0
  3184. }
  3185. .navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"] {
  3186. margin-top: 3px
  3187. }
  3188. .navbar-form .input-append,.navbar-form .input-prepend {
  3189. margin-top: 5px;
  3190. white-space: nowrap
  3191. }
  3192. .navbar-form .input-append input,.navbar-form .input-prepend input {
  3193. margin-top: 0
  3194. }
  3195. .navbar-search {
  3196. position: relative;
  3197. float: left;
  3198. margin-top: 5px;
  3199. margin-bottom: 0
  3200. }
  3201. .navbar-search .search-query {
  3202. padding: 4px 14px;
  3203. margin-bottom: 0;
  3204. font-size: 13px;
  3205. font-weight: normal;
  3206. line-height: 1;
  3207. -webkit-border-radius: 15px;
  3208. -moz-border-radius: 15px;
  3209. border-radius: 15px
  3210. }
  3211. .navbar-static-top {
  3212. position: static;
  3213. margin-bottom: 0
  3214. }
  3215. .navbar-static-top .navbar-inner {
  3216. -webkit-border-radius: 0;
  3217. -moz-border-radius: 0;
  3218. border-radius: 0
  3219. }
  3220. .navbar-fixed-top,.navbar-fixed-bottom {
  3221. position: fixed;
  3222. right: 0;
  3223. left: 0;
  3224. z-index: 1030;
  3225. margin-bottom: 0
  3226. }
  3227. .navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner {
  3228. border-width: 0 0 1px
  3229. }
  3230. .navbar-fixed-bottom .navbar-inner {
  3231. border-width: 1px 0 0
  3232. }
  3233. .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner {
  3234. padding-right: 0;
  3235. padding-left: 0;
  3236. -webkit-border-radius: 0;
  3237. -moz-border-radius: 0;
  3238. border-radius: 0
  3239. }
  3240. .navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container {
  3241. width: 940px
  3242. }
  3243. .navbar-fixed-top {
  3244. top: 0
  3245. }
  3246. .navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner {
  3247. -webkit-box-shadow: 0 1px 10px rgba(0,0,0,0.1);
  3248. -moz-box-shadow: 0 1px 10px rgba(0,0,0,0.1);
  3249. box-shadow: 0 1px 10px rgba(0,0,0,0.1)
  3250. }
  3251. .navbar-fixed-bottom {
  3252. bottom: 0
  3253. }
  3254. .navbar-fixed-bottom .navbar-inner {
  3255. -webkit-box-shadow: 0 -1px 10px rgba(0,0,0,0.1);
  3256. -moz-box-shadow: 0 -1px 10px rgba(0,0,0,0.1);
  3257. box-shadow: 0 -1px 10px rgba(0,0,0,0.1)
  3258. }
  3259. .navbar .nav {
  3260. position: relative;
  3261. left: 0;
  3262. display: block;
  3263. float: left;
  3264. margin: 0 10px 0 0
  3265. }
  3266. .navbar .nav.pull-right {
  3267. float: right;
  3268. margin-right: 0
  3269. }
  3270. .navbar .nav>li {
  3271. float: left
  3272. }
  3273. .navbar .nav>li>a {
  3274. float: none;
  3275. padding: 10px 15px 10px;
  3276. color: #777;
  3277. text-decoration: none;
  3278. text-shadow: 0 1px 0 #fff
  3279. }
  3280. .navbar .nav .dropdown-toggle .caret {
  3281. margin-top: 8px
  3282. }
  3283. .navbar .nav>li>a:focus,.navbar .nav>li>a:hover {
  3284. color: #333;
  3285. text-decoration: none;
  3286. background-color: transparent
  3287. }
  3288. .navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus {
  3289. color: #555;
  3290. text-decoration: none;
  3291. background-color: #e5e5e5;
  3292. -webkit-box-shadow: inset 0 3px 8px rgba(0,0,0,0.125);
  3293. -moz-box-shadow: inset 0 3px 8px rgba(0,0,0,0.125);
  3294. box-shadow: inset 0 3px 8px rgba(0,0,0,0.125)
  3295. }
  3296. .navbar .btn-navbar {
  3297. display: none;
  3298. float: right;
  3299. padding: 7px 10px;
  3300. margin-right: 5px;
  3301. margin-left: 5px;
  3302. color: #fff;
  3303. text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  3304. background-color: #ededed;
  3305. *background-color: #e5e5e5;
  3306. background-image: -moz-linear-gradient(top,#f2f2f2,#e5e5e5);
  3307. background-image: -webkit-gradient(linear,0 0,0 100%,from(#f2f2f2),to(#e5e5e5));
  3308. background-image: -webkit-linear-gradient(top,#f2f2f2,#e5e5e5);
  3309. background-image: -o-linear-gradient(top,#f2f2f2,#e5e5e5);
  3310. background-image: linear-gradient(to bottom,#f2f2f2,#e5e5e5);
  3311. background-repeat: repeat-x;
  3312. border-color: #e5e5e5 #e5e5e5 #bfbfbf;
  3313. border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  3314. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2',endColorstr='#ffe5e5e5',GradientType=0);
  3315. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  3316. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);
  3317. -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);
  3318. box-shadow: inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075)
  3319. }
  3320. .navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled] {
  3321. color: #fff;
  3322. background-color: #e5e5e5;
  3323. *background-color: #d9d9d9
  3324. }
  3325. .navbar .btn-navbar:active,.navbar .btn-navbar.active {
  3326. background-color: #ccc \9
  3327. }
  3328. .navbar .btn-navbar .icon-bar {
  3329. display: block;
  3330. width: 18px;
  3331. height: 2px;
  3332. background-color: #f5f5f5;
  3333. -webkit-border-radius: 1px;
  3334. -moz-border-radius: 1px;
  3335. border-radius: 1px;
  3336. -webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.25);
  3337. -moz-box-shadow: 0 1px 0 rgba(0,0,0,0.25);
  3338. box-shadow: 0 1px 0 rgba(0,0,0,0.25)
  3339. }
  3340. .btn-navbar .icon-bar+.icon-bar {
  3341. margin-top: 3px
  3342. }
  3343. .navbar .nav>li>.dropdown-menu:before {
  3344. position: absolute;
  3345. top: -7px;
  3346. left: 9px;
  3347. display: inline-block;
  3348. border-right: 7px solid transparent;
  3349. border-bottom: 7px solid #ccc;
  3350. border-left: 7px solid transparent;
  3351. border-bottom-color: rgba(0,0,0,0.2);
  3352. content: ''
  3353. }
  3354. .navbar .nav>li>.dropdown-menu:after {
  3355. position: absolute;
  3356. top: -6px;
  3357. left: 10px;
  3358. display: inline-block;
  3359. border-right: 6px solid transparent;
  3360. border-bottom: 6px solid #fff;
  3361. border-left: 6px solid transparent;
  3362. content: ''
  3363. }
  3364. .navbar-fixed-bottom .nav>li>.dropdown-menu:before {
  3365. top: auto;
  3366. bottom: -7px;
  3367. border-top: 7px solid #ccc;
  3368. border-bottom: 0;
  3369. border-top-color: rgba(0,0,0,0.2)
  3370. }
  3371. .navbar-fixed-bottom .nav>li>.dropdown-menu:after {
  3372. top: auto;
  3373. bottom: -6px;
  3374. border-top: 6px solid #fff;
  3375. border-bottom: 0
  3376. }
  3377. .navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret {
  3378. border-top-color: #333;
  3379. border-bottom-color: #333
  3380. }
  3381. .navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle {
  3382. color: #555;
  3383. background-color: #e5e5e5
  3384. }
  3385. .navbar .nav li.dropdown>.dropdown-toggle .caret {
  3386. border-top-color: #777;
  3387. border-bottom-color: #777
  3388. }
  3389. .navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret {
  3390. border-top-color: #555;
  3391. border-bottom-color: #555
  3392. }
  3393. .navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right {
  3394. right: 0;
  3395. left: auto
  3396. }
  3397. .navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before {
  3398. right: 12px;
  3399. left: auto
  3400. }
  3401. .navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after {
  3402. right: 13px;
  3403. left: auto
  3404. }
  3405. .navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu {
  3406. right: 100%;
  3407. left: auto;
  3408. margin-right: -1px;
  3409. margin-left: 0;
  3410. -webkit-border-radius: 6px 0 6px 6px;
  3411. -moz-border-radius: 6px 0 6px 6px;
  3412. border-radius: 6px 0 6px 6px
  3413. }
  3414. .navbar-inverse .navbar-inner {
  3415. background-color: #1b1b1b;
  3416. background-image: -moz-linear-gradient(top,#222,#111);
  3417. background-image: -webkit-gradient(linear,0 0,0 100%,from(#222),to(#111));
  3418. background-image: -webkit-linear-gradient(top,#222,#111);
  3419. background-image: -o-linear-gradient(top,#222,#111);
  3420. background-image: linear-gradient(to bottom,#222,#111);
  3421. background-repeat: repeat-x;
  3422. border-color: #252525;
  3423. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222',endColorstr='#ff111111',GradientType=0)
  3424. }
  3425. .navbar-inverse .brand,.navbar-inverse .nav>li>a {
  3426. color: #999;
  3427. text-shadow: 0 -1px 0 rgba(0,0,0,0.25)
  3428. }
  3429. .navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus {
  3430. color: #fff
  3431. }
  3432. .navbar-inverse .brand {
  3433. color: #999
  3434. }
  3435. .navbar-inverse .navbar-text {
  3436. color: #999
  3437. }
  3438. .navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover {
  3439. color: #fff;
  3440. background-color: transparent
  3441. }
  3442. .navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus {
  3443. color: #fff;
  3444. background-color: #111
  3445. }
  3446. .navbar-inverse .navbar-link {
  3447. color: #999
  3448. }
  3449. .navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus {
  3450. color: #fff
  3451. }
  3452. .navbar-inverse .divider-vertical {
  3453. border-right-color: #222;
  3454. border-left-color: #111
  3455. }
  3456. .navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle {
  3457. color: #fff;
  3458. background-color: #111
  3459. }
  3460. .navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret {
  3461. border-top-color: #fff;
  3462. border-bottom-color: #fff
  3463. }
  3464. .navbar-inverse .nav li.dropdown>.dropdown-toggle .caret {
  3465. border-top-color: #999;
  3466. border-bottom-color: #999
  3467. }
  3468. .navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret {
  3469. border-top-color: #fff;
  3470. border-bottom-color: #fff
  3471. }
  3472. .navbar-inverse .navbar-search .search-query {
  3473. color: #fff;
  3474. background-color: #515151;
  3475. border-color: #111;
  3476. -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);
  3477. -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);
  3478. box-shadow: inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);
  3479. -webkit-transition: none;
  3480. -moz-transition: none;
  3481. -o-transition: none;
  3482. transition: none
  3483. }
  3484. .navbar-inverse .navbar-search .search-query:-moz-placeholder {
  3485. color: #ccc
  3486. }
  3487. .navbar-inverse .navbar-search .search-query:-ms-input-placeholder {
  3488. color: #ccc
  3489. }
  3490. .navbar-inverse .navbar-search .search-query::-webkit-input-placeholder {
  3491. color: #ccc
  3492. }
  3493. .navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused {
  3494. padding: 5px 15px;
  3495. color: #333;
  3496. text-shadow: 0 1px 0 #fff;
  3497. background-color: #fff;
  3498. border: 0;
  3499. outline: 0;
  3500. -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.15);
  3501. -moz-box-shadow: 0 0 3px rgba(0,0,0,0.15);
  3502. box-shadow: 0 0 3px rgba(0,0,0,0.15)
  3503. }
  3504. .navbar-inverse .btn-navbar {
  3505. color: #fff;
  3506. text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  3507. background-color: #0e0e0e;
  3508. *background-color: #040404;
  3509. background-image: -moz-linear-gradient(top,#151515,#040404);
  3510. background-image: -webkit-gradient(linear,0 0,0 100%,from(#151515),to(#040404));
  3511. background-image: -webkit-linear-gradient(top,#151515,#040404);
  3512. background-image: -o-linear-gradient(top,#151515,#040404);
  3513. background-image: linear-gradient(to bottom,#151515,#040404);
  3514. background-repeat: repeat-x;
  3515. border-color: #040404 #040404 #000;
  3516. border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  3517. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515',endColorstr='#ff040404',GradientType=0);
  3518. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
  3519. }
  3520. .navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled] {
  3521. color: #fff;
  3522. background-color: #040404;
  3523. *background-color: #000
  3524. }
  3525. .navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active {
  3526. background-color: #000 \9
  3527. }
  3528. .breadcrumb {
  3529. padding: 8px 15px;
  3530. margin: 0 0 20px;
  3531. list-style: none;
  3532. background-color: #f5f5f5;
  3533. -webkit-border-radius: 4px;
  3534. -moz-border-radius: 4px;
  3535. border-radius: 4px
  3536. }
  3537. .breadcrumb>li {
  3538. display: inline-block;
  3539. *display: inline;
  3540. text-shadow: 0 1px 0 #fff;
  3541. *zoom: 1
  3542. }
  3543. .breadcrumb>li>.divider {
  3544. padding: 0 5px;
  3545. color: #ccc
  3546. }
  3547. .breadcrumb>.active {
  3548. color: #999
  3549. }
  3550. .pagination {
  3551. margin: 20px 0
  3552. }
  3553. .pagination ul {
  3554. display: inline-block;
  3555. *display: inline;
  3556. margin-bottom: 0;
  3557. margin-left: 0;
  3558. -webkit-border-radius: 4px;
  3559. -moz-border-radius: 4px;
  3560. border-radius: 4px;
  3561. *zoom: 1;
  3562. -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  3563. -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  3564. box-shadow: 0 1px 2px rgba(0,0,0,0.05)
  3565. }
  3566. .pagination ul>li {
  3567. display: inline
  3568. }
  3569. .pagination ul>li>a,.pagination ul>li>span {
  3570. float: left;
  3571. padding: 4px 12px;
  3572. line-height: 20px;
  3573. text-decoration: none;
  3574. background-color: #fff;
  3575. border: 1px solid #ddd;
  3576. border-left-width: 0
  3577. }
  3578. .pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span {
  3579. background-color: #f5f5f5
  3580. }
  3581. .pagination ul>.active>a,.pagination ul>.active>span {
  3582. color: #999;
  3583. cursor: default
  3584. }
  3585. .pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus {
  3586. color: #999;
  3587. cursor: default;
  3588. background-color: transparent
  3589. }
  3590. .pagination ul>li:first-child>a,.pagination ul>li:first-child>span {
  3591. border-left-width: 1px;
  3592. -webkit-border-bottom-left-radius: 4px;
  3593. border-bottom-left-radius: 4px;
  3594. -webkit-border-top-left-radius: 4px;
  3595. border-top-left-radius: 4px;
  3596. -moz-border-radius-bottomleft: 4px;
  3597. -moz-border-radius-topleft: 4px
  3598. }
  3599. .pagination ul>li:last-child>a,.pagination ul>li:last-child>span {
  3600. -webkit-border-top-right-radius: 4px;
  3601. border-top-right-radius: 4px;
  3602. -webkit-border-bottom-right-radius: 4px;
  3603. border-bottom-right-radius: 4px;
  3604. -moz-border-radius-topright: 4px;
  3605. -moz-border-radius-bottomright: 4px
  3606. }
  3607. .pagination-centered {
  3608. text-align: center
  3609. }
  3610. .pagination-right {
  3611. text-align: right
  3612. }
  3613. .pagination-large ul>li>a,.pagination-large ul>li>span {
  3614. padding: 11px 19px;
  3615. font-size: 17.5px
  3616. }
  3617. .pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span {
  3618. -webkit-border-bottom-left-radius: 6px;
  3619. border-bottom-left-radius: 6px;
  3620. -webkit-border-top-left-radius: 6px;
  3621. border-top-left-radius: 6px;
  3622. -moz-border-radius-bottomleft: 6px;
  3623. -moz-border-radius-topleft: 6px
  3624. }
  3625. .pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span {
  3626. -webkit-border-top-right-radius: 6px;
  3627. border-top-right-radius: 6px;
  3628. -webkit-border-bottom-right-radius: 6px;
  3629. border-bottom-right-radius: 6px;
  3630. -moz-border-radius-topright: 6px;
  3631. -moz-border-radius-bottomright: 6px
  3632. }
  3633. .pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span {
  3634. -webkit-border-bottom-left-radius: 3px;
  3635. border-bottom-left-radius: 3px;
  3636. -webkit-border-top-left-radius: 3px;
  3637. border-top-left-radius: 3px;
  3638. -moz-border-radius-bottomleft: 3px;
  3639. -moz-border-radius-topleft: 3px
  3640. }
  3641. .pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span {
  3642. -webkit-border-top-right-radius: 3px;
  3643. border-top-right-radius: 3px;
  3644. -webkit-border-bottom-right-radius: 3px;
  3645. border-bottom-right-radius: 3px;
  3646. -moz-border-radius-topright: 3px;
  3647. -moz-border-radius-bottomright: 3px
  3648. }
  3649. .pagination-small ul>li>a,.pagination-small ul>li>span {
  3650. padding: 2px 10px;
  3651. font-size: 11.9px
  3652. }
  3653. .pagination-mini ul>li>a,.pagination-mini ul>li>span {
  3654. padding: 0 6px;
  3655. font-size: 10.5px
  3656. }
  3657. .pager {
  3658. margin: 20px 0;
  3659. text-align: center;
  3660. list-style: none;
  3661. *zoom: 1
  3662. }
  3663. .pager:before,.pager:after {
  3664. display: table;
  3665. line-height: 0;
  3666. content: ""
  3667. }
  3668. .pager:after {
  3669. clear: both
  3670. }
  3671. .pager li {
  3672. display: inline
  3673. }
  3674. .pager li>a,.pager li>span {
  3675. display: inline-block;
  3676. padding: 5px 14px;
  3677. background-color: #fff;
  3678. border: 1px solid #ddd;
  3679. -webkit-border-radius: 15px;
  3680. -moz-border-radius: 15px;
  3681. border-radius: 15px
  3682. }
  3683. .pager li>a:hover,.pager li>a:focus {
  3684. text-decoration: none;
  3685. background-color: #f5f5f5
  3686. }
  3687. .pager .next>a,.pager .next>span {
  3688. float: right
  3689. }
  3690. .pager .previous>a,.pager .previous>span {
  3691. float: left
  3692. }
  3693. .pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span {
  3694. color: #999;
  3695. cursor: default;
  3696. background-color: #fff
  3697. }
  3698. .modal-backdrop {
  3699. position: fixed;
  3700. top: 0;
  3701. right: 0;
  3702. bottom: 0;
  3703. left: 0;
  3704. z-index: 1040;
  3705. background-color: #000
  3706. }
  3707. .modal-backdrop.fade {
  3708. opacity: 0
  3709. }
  3710. .modal-backdrop,.modal-backdrop.fade.in {
  3711. opacity: .8;
  3712. filter: alpha(opacity=80)
  3713. }
  3714. .modal {
  3715. position: fixed;
  3716. top: 10%;
  3717. left: 50%;
  3718. z-index: 1050;
  3719. width: 560px;
  3720. margin-left: -280px;
  3721. background-color: #fff;
  3722. border: 1px solid #999;
  3723. border: 1px solid rgba(0,0,0,0.3);
  3724. *border: 1px solid #999;
  3725. -webkit-border-radius: 6px;
  3726. -moz-border-radius: 6px;
  3727. border-radius: 6px;
  3728. outline: 0;
  3729. -webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
  3730. -moz-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
  3731. box-shadow: 0 3px 7px rgba(0,0,0,0.3);
  3732. -webkit-background-clip: padding-box;
  3733. -moz-background-clip: padding-box;
  3734. background-clip: padding-box
  3735. }
  3736. .modal.fade {
  3737. top: -25%;
  3738. -webkit-transition: opacity .3s linear,top .3s ease-out;
  3739. -moz-transition: opacity .3s linear,top .3s ease-out;
  3740. -o-transition: opacity .3s linear,top .3s ease-out;
  3741. transition: opacity .3s linear,top .3s ease-out
  3742. }
  3743. .modal.fade.in {
  3744. top: 10%
  3745. }
  3746. .modal-header {
  3747. padding: 9px 15px;
  3748. border-bottom: 1px solid #eee
  3749. }
  3750. .modal-header .close {
  3751. margin-top: 2px
  3752. }
  3753. .modal-header h3 {
  3754. margin: 0;
  3755. line-height: 30px
  3756. }
  3757. .modal-body {
  3758. position: relative;
  3759. max-height: 400px;
  3760. padding: 15px;
  3761. overflow-y: auto
  3762. }
  3763. .modal-form {
  3764. margin-bottom: 0
  3765. }
  3766. .modal-footer {
  3767. padding: 14px 15px 15px;
  3768. margin-bottom: 0;
  3769. text-align: right;
  3770. background-color: #f5f5f5;
  3771. border-top: 1px solid #ddd;
  3772. -webkit-border-radius: 0 0 6px 6px;
  3773. -moz-border-radius: 0 0 6px 6px;
  3774. border-radius: 0 0 6px 6px;
  3775. *zoom: 1;
  3776. -webkit-box-shadow: inset 0 1px 0 #fff;
  3777. -moz-box-shadow: inset 0 1px 0 #fff;
  3778. box-shadow: inset 0 1px 0 #fff
  3779. }
  3780. .modal-footer:before,.modal-footer:after {
  3781. display: table;
  3782. line-height: 0;
  3783. content: ""
  3784. }
  3785. .modal-footer:after {
  3786. clear: both
  3787. }
  3788. .modal-footer .btn+.btn {
  3789. margin-bottom: 0;
  3790. margin-left: 5px
  3791. }
  3792. .modal-footer .btn-group .btn+.btn {
  3793. margin-left: -1px
  3794. }
  3795. .modal-footer .btn-block+.btn-block {
  3796. margin-left: 0
  3797. }
  3798. .tooltip {
  3799. position: absolute;
  3800. z-index: 1030;
  3801. display: block;
  3802. font-size: 12px;
  3803. line-height: 1.4;
  3804. opacity: 0;
  3805. filter: alpha(opacity=0);
  3806. visibility: visible
  3807. }
  3808. .tooltip.in {
  3809. opacity: .8;
  3810. filter: alpha(opacity=80)
  3811. }
  3812. .tooltip.top {
  3813. padding: 5px 0;
  3814. margin-top: -3px
  3815. }
  3816. .tooltip.right {
  3817. padding: 0 5px;
  3818. margin-left: 3px
  3819. }
  3820. .tooltip.bottom {
  3821. padding: 5px 0;
  3822. margin-top: 3px
  3823. }
  3824. .tooltip.left {
  3825. padding: 0 5px;
  3826. margin-left: -3px
  3827. }
  3828. .tooltip-inner {
  3829. max-width:inherit;
  3830. padding: 8px;
  3831. color: #fff;
  3832. text-align: center;
  3833. text-decoration: none;
  3834. background-color: #000;
  3835. -webkit-border-radius: 4px;
  3836. -moz-border-radius: 4px;
  3837. border-radius: 4px
  3838. }
  3839. .tooltip-arrow {
  3840. position: absolute;
  3841. width: 0;
  3842. height: 0;
  3843. border-color: transparent;
  3844. border-style: solid
  3845. }
  3846. .tooltip.top .tooltip-arrow {
  3847. bottom: 0;
  3848. left: 50%;
  3849. margin-left: -5px;
  3850. border-top-color: #000;
  3851. border-width: 5px 5px 0
  3852. }
  3853. .tooltip.right .tooltip-arrow {
  3854. top: 50%;
  3855. left: 0;
  3856. margin-top: -5px;
  3857. border-right-color: #000;
  3858. border-width: 5px 5px 5px 0
  3859. }
  3860. .tooltip.left .tooltip-arrow {
  3861. top: 50%;
  3862. right: 0;
  3863. margin-top: -5px;
  3864. border-left-color: #000;
  3865. border-width: 5px 0 5px 5px
  3866. }
  3867. .tooltip.bottom .tooltip-arrow {
  3868. top: 0;
  3869. left: 50%;
  3870. margin-left: -5px;
  3871. border-bottom-color: #000;
  3872. border-width: 0 5px 5px
  3873. }
  3874. .popover {
  3875. position: absolute;
  3876. top: 0;
  3877. left: 0;
  3878. z-index: 1010;
  3879. display: none;
  3880. max-width: 276px;
  3881. padding: 1px;
  3882. text-align: left;
  3883. white-space: normal;
  3884. background-color: #fff;
  3885. border: 1px solid #ccc;
  3886. border: 1px solid rgba(0,0,0,0.2);
  3887. -webkit-border-radius: 6px;
  3888. -moz-border-radius: 6px;
  3889. border-radius: 6px;
  3890. -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  3891. -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  3892. box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  3893. -webkit-background-clip: padding-box;
  3894. -moz-background-clip: padding;
  3895. background-clip: padding-box
  3896. }
  3897. .popover.top {
  3898. margin-top: -10px
  3899. }
  3900. .popover.right {
  3901. margin-left: 10px
  3902. }
  3903. .popover.bottom {
  3904. margin-top: 10px
  3905. }
  3906. .popover.left {
  3907. margin-left: -10px
  3908. }
  3909. .popover-title {
  3910. padding: 8px 14px;
  3911. margin: 0;
  3912. font-size: 14px;
  3913. font-weight: normal;
  3914. line-height: 18px;
  3915. background-color: #f7f7f7;
  3916. border-bottom: 1px solid #ebebeb;
  3917. -webkit-border-radius: 5px 5px 0 0;
  3918. -moz-border-radius: 5px 5px 0 0;
  3919. border-radius: 5px 5px 0 0
  3920. }
  3921. .popover-title:empty {
  3922. display: none
  3923. }
  3924. .popover-content {
  3925. padding: 9px 14px
  3926. }
  3927. .popover .arrow,.popover .arrow:after {
  3928. position: absolute;
  3929. display: block;
  3930. width: 0;
  3931. height: 0;
  3932. border-color: transparent;
  3933. border-style: solid
  3934. }
  3935. .popover .arrow {
  3936. border-width: 11px
  3937. }
  3938. .popover .arrow:after {
  3939. border-width: 10px;
  3940. content: ""
  3941. }
  3942. .popover.top .arrow {
  3943. bottom: -11px;
  3944. left: 50%;
  3945. margin-left: -11px;
  3946. border-top-color: #999;
  3947. border-top-color: rgba(0,0,0,0.25);
  3948. border-bottom-width: 0
  3949. }
  3950. .popover.top .arrow:after {
  3951. bottom: 1px;
  3952. margin-left: -10px;
  3953. border-top-color: #fff;
  3954. border-bottom-width: 0
  3955. }
  3956. .popover.right .arrow {
  3957. top: 50%;
  3958. left: -11px;
  3959. margin-top: -11px;
  3960. border-right-color: #999;
  3961. border-right-color: rgba(0,0,0,0.25);
  3962. border-left-width: 0
  3963. }
  3964. .popover.right .arrow:after {
  3965. bottom: -10px;
  3966. left: 1px;
  3967. border-right-color: #fff;
  3968. border-left-width: 0
  3969. }
  3970. .popover.bottom .arrow {
  3971. top: -11px;
  3972. left: 50%;
  3973. margin-left: -11px;
  3974. border-bottom-color: #999;
  3975. border-bottom-color: rgba(0,0,0,0.25);
  3976. border-top-width: 0
  3977. }
  3978. .popover.bottom .arrow:after {
  3979. top: 1px;
  3980. margin-left: -10px;
  3981. border-bottom-color: #fff;
  3982. border-top-width: 0
  3983. }
  3984. .popover.left .arrow {
  3985. top: 50%;
  3986. right: -11px;
  3987. margin-top: -11px;
  3988. border-left-color: #999;
  3989. border-left-color: rgba(0,0,0,0.25);
  3990. border-right-width: 0
  3991. }
  3992. .popover.left .arrow:after {
  3993. right: 1px;
  3994. bottom: -10px;
  3995. border-left-color: #fff;
  3996. border-right-width: 0
  3997. }
  3998. .thumbnails {
  3999. margin-left: -20px;
  4000. list-style: none;
  4001. *zoom: 1
  4002. }
  4003. .thumbnails:before,.thumbnails:after {
  4004. display: table;
  4005. line-height: 0;
  4006. content: ""
  4007. }
  4008. .thumbnails:after {
  4009. clear: both
  4010. }
  4011. .row-fluid .thumbnails {
  4012. margin-left: 0
  4013. }
  4014. .thumbnails>li {
  4015. float: left;
  4016. margin-bottom: 20px;
  4017. margin-left: 20px
  4018. }
  4019. .thumbnail {
  4020. display: block;
  4021. padding: 4px;
  4022. line-height: 20px;
  4023. border: 1px solid #ddd;
  4024. -webkit-border-radius: 4px;
  4025. -moz-border-radius: 4px;
  4026. border-radius: 4px;
  4027. -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
  4028. -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
  4029. box-shadow: 0 1px 3px rgba(0,0,0,0.055);
  4030. -webkit-transition: all .2s ease-in-out;
  4031. -moz-transition: all .2s ease-in-out;
  4032. -o-transition: all .2s ease-in-out;
  4033. transition: all .2s ease-in-out
  4034. }
  4035. a.thumbnail:hover,a.thumbnail:focus {
  4036. border-color: #08c;
  4037. -webkit-box-shadow: 0 1px 4px rgba(0,105,214,0.25);
  4038. -moz-box-shadow: 0 1px 4px rgba(0,105,214,0.25);
  4039. box-shadow: 0 1px 4px rgba(0,105,214,0.25)
  4040. }
  4041. .thumbnail>img {
  4042. display: block;
  4043. max-width: 100%;
  4044. margin-right: auto;
  4045. margin-left: auto
  4046. }
  4047. .thumbnail .caption {
  4048. padding: 9px;
  4049. color: #555
  4050. }
  4051. .media,.media-body {
  4052. overflow: hidden;
  4053. *overflow: visible;
  4054. zoom: 1
  4055. }
  4056. .media,.media .media {
  4057. margin-top: 15px
  4058. }
  4059. .media:first-child {
  4060. margin-top: 0
  4061. }
  4062. .media-object {
  4063. display: block
  4064. }
  4065. .media-heading {
  4066. margin: 0 0 5px
  4067. }
  4068. .media>.pull-left {
  4069. margin-right: 10px
  4070. }
  4071. .media>.pull-right {
  4072. margin-left: 10px
  4073. }
  4074. .media-list {
  4075. margin-left: 0;
  4076. list-style: none
  4077. }
  4078. .label,.badge {
  4079. display: inline-block;
  4080. padding: 2px 4px;
  4081. font-size: 11.844px;
  4082. font-weight: bold;
  4083. line-height: 14px;
  4084. color: #fff;
  4085. text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  4086. white-space: nowrap;
  4087. vertical-align: baseline;
  4088. background-color: #999
  4089. }
  4090. .label {
  4091. -webkit-border-radius: 3px;
  4092. -moz-border-radius: 3px;
  4093. border-radius: 3px
  4094. }
  4095. .badge {
  4096. padding-right: 9px;
  4097. padding-left: 9px;
  4098. -webkit-border-radius: 9px;
  4099. -moz-border-radius: 9px;
  4100. border-radius: 9px
  4101. }
  4102. .label:empty,.badge:empty {
  4103. display: none
  4104. }
  4105. a.label:hover,a.label:focus,a.badge:hover,a.badge:focus {
  4106. color: #fff;
  4107. text-decoration: none;
  4108. cursor: pointer
  4109. }
  4110. .label-important,.badge-important {
  4111. background-color: #b94a48
  4112. }
  4113. .label-important[href],.badge-important[href] {
  4114. background-color: #953b39
  4115. }
  4116. .label-warning,.badge-warning {
  4117. background-color: #f89406
  4118. }
  4119. .label-warning[href],.badge-warning[href] {
  4120. background-color: #c67605
  4121. }
  4122. .label-success,.badge-success {
  4123. background-color: #468847
  4124. }
  4125. .label-success[href],.badge-success[href] {
  4126. background-color: #356635
  4127. }
  4128. .label-info,.badge-info {
  4129. background-color: #3a87ad
  4130. }
  4131. .label-info[href],.badge-info[href] {
  4132. background-color: #2d6987
  4133. }
  4134. .label-inverse,.badge-inverse {
  4135. background-color: #333
  4136. }
  4137. .label-inverse[href],.badge-inverse[href] {
  4138. background-color: #1a1a1a
  4139. }
  4140. .btn .label,.btn .badge {
  4141. position: relative;
  4142. top: -1px
  4143. }
  4144. .btn-mini .label,.btn-mini .badge {
  4145. top: 0
  4146. }
  4147. @-webkit-keyframes progress-bar-stripes {
  4148. from {
  4149. background-position: 40px 0
  4150. }
  4151. to {
  4152. background-position: 0 0
  4153. }
  4154. }
  4155. @-moz-keyframes progress-bar-stripes {
  4156. from {
  4157. background-position: 40px 0
  4158. }
  4159. to {
  4160. background-position: 0 0
  4161. }
  4162. }
  4163. @-ms-keyframes progress-bar-stripes {
  4164. from {
  4165. background-position: 40px 0
  4166. }
  4167. to {
  4168. background-position: 0 0
  4169. }
  4170. }
  4171. @-o-keyframes progress-bar-stripes {
  4172. from {
  4173. background-position: 0 0
  4174. }
  4175. to {
  4176. background-position: 40px 0
  4177. }
  4178. }
  4179. @keyframes progress-bar-stripes {
  4180. from {
  4181. background-position: 40px 0
  4182. }
  4183. to {
  4184. background-position: 0 0
  4185. }
  4186. }
  4187. .progress {
  4188. overflow: hidden;
  4189. height: 20px;
  4190. background-color: #f7f7f7;
  4191. background-image: -moz-linear-gradient(top, #717171, #333);
  4192. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#717171), to(#333));
  4193. background-image: -webkit-linear-gradient(top, #717171, #333);
  4194. background-image: -o-linear-gradient(top, #717171, #333);
  4195. background-image: linear-gradient(to bottom, #717171, #333);
  4196. background-repeat: repeat-x;
  4197. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  4198. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  4199. -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  4200. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  4201. -webkit-border-radius: 4px;
  4202. -moz-border-radius: 4px;
  4203. border-radius: 4px;
  4204. }
  4205. .progress .bar {
  4206. width: 0%;
  4207. height: 100%;
  4208. color: #ffffff;
  4209. float: left;
  4210. font-size: 12px;
  4211. text-align: center;
  4212. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  4213. background-color: #0e90d2;
  4214. background-image: -moz-linear-gradient(top, #149bdf, #0480be);
  4215. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
  4216. background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
  4217. background-image: -o-linear-gradient(top, #149bdf, #0480be);
  4218. background-image: linear-gradient(to bottom, #149bdf, #0480be);
  4219. background-repeat: repeat-x;
  4220. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
  4221. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  4222. -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  4223. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  4224. -webkit-box-sizing: border-box;
  4225. -moz-box-sizing: border-box;
  4226. box-sizing: border-box;
  4227. -webkit-transition: width 0.6s ease;
  4228. -moz-transition: width 0.6s ease;
  4229. -o-transition: width 0.6s ease;
  4230. transition: width 0.6s ease;
  4231. }
  4232. .progress .bar + .bar {
  4233. -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
  4234. -moz-box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
  4235. box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
  4236. }
  4237. .progress-striped .bar {
  4238. background-color: #149bdf;
  4239. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  4240. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4241. background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4242. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4243. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4244. -webkit-background-size: 40px 40px;
  4245. -moz-background-size: 40px 40px;
  4246. -o-background-size: 40px 40px;
  4247. background-size: 40px 40px;
  4248. }
  4249. .progress.active .bar {
  4250. -webkit-animation: progress-bar-stripes 2s linear infinite;
  4251. -moz-animation: progress-bar-stripes 2s linear infinite;
  4252. -ms-animation: progress-bar-stripes 2s linear infinite;
  4253. -o-animation: progress-bar-stripes 2s linear infinite;
  4254. animation: progress-bar-stripes 2s linear infinite;
  4255. }
  4256. .progress-danger .bar,
  4257. .progress .bar-danger {
  4258. background-color: #dd514c;
  4259. background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  4260. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
  4261. background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  4262. background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  4263. background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
  4264. background-repeat: repeat-x;
  4265. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);
  4266. }
  4267. .progress-danger.progress-striped .bar,
  4268. .progress-striped .bar-danger {
  4269. background-color: #ee5f5b;
  4270. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  4271. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4272. background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4273. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4274. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4275. }
  4276. .progress-success .bar,
  4277. .progress .bar-success {
  4278. background-color: #5eb95e;
  4279. background-image: -moz-linear-gradient(top, #62c462, #57a957);
  4280. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
  4281. background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  4282. background-image: -o-linear-gradient(top, #62c462, #57a957);
  4283. background-image: linear-gradient(to bottom, #62c462, #57a957);
  4284. background-repeat: repeat-x;
  4285. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);
  4286. }
  4287. .progress-success.progress-striped .bar,
  4288. .progress-striped .bar-success {
  4289. background-color: #62c462;
  4290. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  4291. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4292. background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4293. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4294. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4295. }
  4296. .progress-info .bar,
  4297. .progress .bar-info {
  4298. background-color: #4bb1cf;
  4299. background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
  4300. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
  4301. background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
  4302. background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
  4303. background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
  4304. background-repeat: repeat-x;
  4305. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);
  4306. }
  4307. .progress-info.progress-striped .bar,
  4308. .progress-striped .bar-info {
  4309. background-color: #5bc0de;
  4310. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  4311. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4312. background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4313. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4314. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4315. }
  4316. .progress-warning .bar,
  4317. .progress .bar-warning {
  4318. background-color: #faa732;
  4319. background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  4320. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  4321. background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  4322. background-image: -o-linear-gradient(top, #fbb450, #f89406);
  4323. background-image: linear-gradient(to bottom, #fbb450, #f89406);
  4324. background-repeat: repeat-x;
  4325. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
  4326. }
  4327. .progress-warning.progress-striped .bar,
  4328. .progress-striped .bar-warning {
  4329. background-color: #fbb450;
  4330. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  4331. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4332. background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4333. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4334. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4335. }
  4336. .progress-gary .bar,
  4337. .progress .bar-gary {
  4338. background-color: #bbb;
  4339. background-image: -moz-linear-gradient(top, #ccc, #bbb);
  4340. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ccc), to(#bbb));
  4341. background-image: -webkit-linear-gradient(top, #ccc, #bbb);
  4342. background-image: -o-linear-gradient(top, #ccc, #bbb);
  4343. background-image: linear-gradient(to bottom, #ccc, #bbb);
  4344. background-repeat: repeat-x;
  4345. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ccc', endColorstr='#bbb', GradientType=0);
  4346. }
  4347. .progress-gary.progress-striped .bar,
  4348. .progress-striped .bar-gary {
  4349. background-color: #bbb;
  4350. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  4351. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4352. background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4353. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4354. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4355. }
  4356. .accordion {
  4357. margin-bottom: 20px
  4358. }
  4359. .accordion-group {
  4360. margin-bottom: 2px;
  4361. border: 1px solid #e5e5e5;
  4362. -webkit-border-radius: 4px;
  4363. -moz-border-radius: 4px;
  4364. border-radius: 4px
  4365. }
  4366. .accordion-heading {
  4367. border-bottom: 0
  4368. }
  4369. .accordion-heading .accordion-toggle {
  4370. display: block;
  4371. padding: 8px 15px
  4372. }
  4373. .accordion-toggle {
  4374. cursor: pointer
  4375. }
  4376. .accordion-inner {
  4377. padding: 9px 15px;
  4378. border-top: 1px solid #e5e5e5
  4379. }
  4380. .carousel {
  4381. position: relative;
  4382. margin-bottom: 20px;
  4383. line-height: 1
  4384. }
  4385. .carousel-inner {
  4386. position: relative;
  4387. width: 100%;
  4388. overflow: hidden
  4389. }
  4390. .carousel-inner>.item {
  4391. position: relative;
  4392. display: none;
  4393. -webkit-transition: .6s ease-in-out left;
  4394. -moz-transition: .6s ease-in-out left;
  4395. -o-transition: .6s ease-in-out left;
  4396. transition: .6s ease-in-out left
  4397. }
  4398. .carousel-inner>.item>img,.carousel-inner>.item>a>img {
  4399. display: block;
  4400. line-height: 1
  4401. }
  4402. .carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev {
  4403. display: block
  4404. }
  4405. .carousel-inner>.active {
  4406. left: 0
  4407. }
  4408. .carousel-inner>.next,.carousel-inner>.prev {
  4409. position: absolute;
  4410. top: 0;
  4411. width: 100%
  4412. }
  4413. .carousel-inner>.next {
  4414. left: 100%
  4415. }
  4416. .carousel-inner>.prev {
  4417. left: -100%
  4418. }
  4419. .carousel-inner>.next.left,.carousel-inner>.prev.right {
  4420. left: 0
  4421. }
  4422. .carousel-inner>.active.left {
  4423. left: -100%
  4424. }
  4425. .carousel-inner>.active.right {
  4426. left: 100%
  4427. }
  4428. .carousel-control {
  4429. position: absolute;
  4430. top: 40%;
  4431. left: 15px;
  4432. width: 40px;
  4433. height: 40px;
  4434. margin-top: -20px;
  4435. font-size: 60px;
  4436. font-weight: 100;
  4437. line-height: 30px;
  4438. color: #fff;
  4439. text-align: center;
  4440. background: #222;
  4441. border: 3px solid #fff;
  4442. -webkit-border-radius: 23px;
  4443. -moz-border-radius: 23px;
  4444. border-radius: 23px;
  4445. opacity: .5;
  4446. filter: alpha(opacity=50)
  4447. }
  4448. .carousel-control.right {
  4449. right: 15px;
  4450. left: auto
  4451. }
  4452. .carousel-control:hover,.carousel-control:focus {
  4453. color: #fff;
  4454. text-decoration: none;
  4455. opacity: .9;
  4456. filter: alpha(opacity=90)
  4457. }
  4458. .carousel-indicators {
  4459. position: absolute;
  4460. top: 15px;
  4461. right: 15px;
  4462. z-index: 5;
  4463. margin: 0;
  4464. list-style: none
  4465. }
  4466. .carousel-indicators li {
  4467. display: block;
  4468. float: left;
  4469. width: 10px;
  4470. height: 10px;
  4471. margin-left: 5px;
  4472. text-indent: -999px;
  4473. background-color: #ccc;
  4474. background-color: rgba(255,255,255,0.25);
  4475. border-radius: 5px
  4476. }
  4477. .carousel-indicators .active {
  4478. background-color: #fff
  4479. }
  4480. .carousel-caption {
  4481. position: absolute;
  4482. right: 0;
  4483. bottom: 0;
  4484. left: 0;
  4485. padding: 15px;
  4486. background: #333;
  4487. background: rgba(0,0,0,0.75)
  4488. }
  4489. .carousel-caption h4,.carousel-caption p {
  4490. line-height: 20px;
  4491. color: #fff
  4492. }
  4493. .carousel-caption h4 {
  4494. margin: 0 0 5px
  4495. }
  4496. .carousel-caption p {
  4497. margin-bottom: 0
  4498. }
  4499. .hero-unit {
  4500. padding: 60px;
  4501. margin-bottom: 30px;
  4502. font-size: 18px;
  4503. font-weight: 200;
  4504. line-height: 30px;
  4505. color: inherit;
  4506. background-color: #eee;
  4507. -webkit-border-radius: 6px;
  4508. -moz-border-radius: 6px;
  4509. border-radius: 6px
  4510. }
  4511. .hero-unit h1 {
  4512. margin-bottom: 0;
  4513. font-size: 60px;
  4514. line-height: 1;
  4515. letter-spacing: -1px;
  4516. color: inherit
  4517. }
  4518. .hero-unit li {
  4519. line-height: 30px
  4520. }
  4521. .pull-right {
  4522. float: right
  4523. }
  4524. .pull-left {
  4525. float: left
  4526. }
  4527. .hide {
  4528. display: none
  4529. }
  4530. .show {
  4531. display: block
  4532. }
  4533. .invisible {
  4534. visibility: hidden
  4535. }
  4536. .affix {
  4537. position: fixed
  4538. }