bootstrap.css 140 KB

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