bootstrap.css 121 KB

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