bootstrap.css 123 KB

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