bootstrap.css 130 KB

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