darkstrap-0.9.3.css 165 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062
  1. @charset "UTF-8";
  2. /*
  3. * Darkstrap v0.9.3
  4. * By danneu (https://github.com/danneu/darkstrap)
  5. * Based off Twitter Bootstrap v3.3.5
  6. */
  7. /*!
  8. * Bootstrap v3.3.5 (https://getbootstrap.com)
  9. * Copyright 2011-2015 Twitter, Inc.
  10. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  11. */
  12. /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  13. html {
  14. font-family: sans-serif;
  15. -ms-text-size-adjust: 100%;
  16. -webkit-text-size-adjust: 100%;
  17. }
  18. body {
  19. margin: 0;
  20. }
  21. article,
  22. aside,
  23. details,
  24. figcaption,
  25. figure,
  26. footer,
  27. header,
  28. hgroup,
  29. main,
  30. menu,
  31. nav,
  32. section,
  33. summary {
  34. display: block;
  35. }
  36. audio,
  37. canvas,
  38. progress,
  39. video {
  40. display: inline-block;
  41. vertical-align: baseline;
  42. }
  43. audio:not([controls]) {
  44. display: none;
  45. height: 0;
  46. }
  47. [hidden],
  48. template {
  49. display: none;
  50. }
  51. a {
  52. background-color: transparent;
  53. }
  54. a:active,
  55. a:hover {
  56. outline: 0;
  57. }
  58. abbr[title] {
  59. border-bottom: 1px dotted;
  60. }
  61. b,
  62. strong {
  63. font-weight: bold;
  64. }
  65. dfn {
  66. font-style: italic;
  67. }
  68. h1 {
  69. font-size: 2em;
  70. margin: 0.67em 0;
  71. }
  72. mark {
  73. background: #ff0;
  74. color: #000;
  75. }
  76. small {
  77. font-size: 80%;
  78. }
  79. sub,
  80. sup {
  81. font-size: 75%;
  82. line-height: 0;
  83. position: relative;
  84. vertical-align: baseline;
  85. }
  86. sup {
  87. top: -0.5em;
  88. }
  89. sub {
  90. bottom: -0.25em;
  91. }
  92. img {
  93. border: 0;
  94. }
  95. svg:not(:root) {
  96. overflow: hidden;
  97. }
  98. figure {
  99. margin: 1em 40px;
  100. }
  101. hr {
  102. box-sizing: content-box;
  103. height: 0;
  104. }
  105. pre {
  106. overflow: auto;
  107. }
  108. code,
  109. kbd,
  110. pre,
  111. samp {
  112. font-family: monospace, monospace;
  113. font-size: 1em;
  114. }
  115. button,
  116. input,
  117. optgroup,
  118. select,
  119. textarea {
  120. color: inherit;
  121. font: inherit;
  122. margin: 0;
  123. }
  124. button {
  125. overflow: visible;
  126. }
  127. button,
  128. select {
  129. text-transform: none;
  130. }
  131. button,
  132. html input[type="button"],
  133. input[type="reset"],
  134. input[type="submit"] {
  135. -webkit-appearance: button;
  136. cursor: pointer;
  137. }
  138. button[disabled],
  139. html input[disabled] {
  140. cursor: default;
  141. }
  142. button::-moz-focus-inner,
  143. input::-moz-focus-inner {
  144. border: 0;
  145. padding: 0;
  146. }
  147. input {
  148. line-height: normal;
  149. }
  150. input[type="checkbox"],
  151. input[type="radio"] {
  152. box-sizing: border-box;
  153. padding: 0;
  154. }
  155. input[type="number"]::-webkit-inner-spin-button,
  156. input[type="number"]::-webkit-outer-spin-button {
  157. height: auto;
  158. }
  159. input[type="search"] {
  160. -webkit-appearance: textfield;
  161. box-sizing: content-box;
  162. }
  163. input[type="search"]::-webkit-search-cancel-button,
  164. input[type="search"]::-webkit-search-decoration {
  165. -webkit-appearance: none;
  166. }
  167. fieldset {
  168. border: 1px solid #c0c0c0;
  169. margin: 0 2px;
  170. padding: 0.35em 0.625em 0.75em;
  171. }
  172. legend {
  173. border: 0;
  174. padding: 0;
  175. }
  176. textarea {
  177. overflow: auto;
  178. }
  179. optgroup {
  180. font-weight: bold;
  181. }
  182. table {
  183. border-collapse: collapse;
  184. border-spacing: 0;
  185. }
  186. td,
  187. th {
  188. padding: 0;
  189. }
  190. /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  191. @media print {
  192. *,
  193. *:before,
  194. *:after {
  195. background: transparent !important;
  196. color: #000 !important;
  197. box-shadow: none !important;
  198. text-shadow: none !important;
  199. }
  200. a,
  201. a:visited {
  202. text-decoration: underline;
  203. }
  204. a[href]:after {
  205. content: " (" attr(href) ")";
  206. }
  207. abbr[title]:after {
  208. content: " (" attr(title) ")";
  209. }
  210. a[href^="#"]:after,
  211. a[href^="javascript:"]:after {
  212. content: "";
  213. }
  214. pre,
  215. blockquote {
  216. border: 1px solid #999;
  217. page-break-inside: avoid;
  218. }
  219. thead {
  220. display: table-header-group;
  221. }
  222. tr,
  223. img {
  224. page-break-inside: avoid;
  225. }
  226. img {
  227. max-width: 100% !important;
  228. }
  229. p,
  230. h2,
  231. h3 {
  232. orphans: 3;
  233. widows: 3;
  234. }
  235. h2,
  236. h3 {
  237. page-break-after: avoid;
  238. }
  239. .navbar {
  240. display: none;
  241. }
  242. .btn > .caret,
  243. .dropup > .btn > .caret {
  244. border-top-color: #000 !important;
  245. }
  246. .label {
  247. border: 1px solid #000;
  248. }
  249. .table {
  250. border-collapse: collapse !important;
  251. }
  252. .table td,
  253. .table th {
  254. background-color: #fff !important;
  255. }
  256. .table-bordered th,
  257. .table-bordered td {
  258. border: 1px solid #ddd !important;
  259. }
  260. }
  261. @font-face {
  262. font-family: 'Glyphicons Halflings';
  263. src: url(fonts/../fonts/glyphicons-halflings-regular.eot?1445975532);
  264. src: url(fonts/../fonts/glyphicons-halflings-regular.eot?&1445975532#iefix) format("embedded-opentype"), url(fonts/../fonts/glyphicons-halflings-regular.woff2?1445975532) format("woff2"), url(fonts/../fonts/glyphicons-halflings-regular.woff?1445975532) format("woff"), url(fonts/../fonts/glyphicons-halflings-regular.ttf?1445975532) format("truetype"), url(fonts/../fonts/glyphicons-halflings-regular.svg?1445975532#glyphicons_halflingsregular) format("svg");
  265. }
  266. .glyphicon {
  267. position: relative;
  268. top: 1px;
  269. display: inline-block;
  270. font-family: 'Glyphicons Halflings';
  271. font-style: normal;
  272. font-weight: normal;
  273. line-height: 1;
  274. -webkit-font-smoothing: antialiased;
  275. -moz-osx-font-smoothing: grayscale;
  276. }
  277. .glyphicon-asterisk:before {
  278. content: "\2a";
  279. }
  280. .glyphicon-plus:before {
  281. content: "\2b";
  282. }
  283. .glyphicon-euro:before,
  284. .glyphicon-eur:before {
  285. content: "\20ac";
  286. }
  287. .glyphicon-minus:before {
  288. content: "\2212";
  289. }
  290. .glyphicon-cloud:before {
  291. content: "\2601";
  292. }
  293. .glyphicon-envelope:before {
  294. content: "\2709";
  295. }
  296. .glyphicon-pencil:before {
  297. content: "\270f";
  298. }
  299. .glyphicon-glass:before {
  300. content: "\e001";
  301. }
  302. .glyphicon-music:before {
  303. content: "\e002";
  304. }
  305. .glyphicon-search:before {
  306. content: "\e003";
  307. }
  308. .glyphicon-heart:before {
  309. content: "\e005";
  310. }
  311. .glyphicon-star:before {
  312. content: "\e006";
  313. }
  314. .glyphicon-star-empty:before {
  315. content: "\e007";
  316. }
  317. .glyphicon-user:before {
  318. content: "\e008";
  319. }
  320. .glyphicon-film:before {
  321. content: "\e009";
  322. }
  323. .glyphicon-th-large:before {
  324. content: "\e010";
  325. }
  326. .glyphicon-th:before {
  327. content: "\e011";
  328. }
  329. .glyphicon-th-list:before {
  330. content: "\e012";
  331. }
  332. .glyphicon-ok:before {
  333. content: "\e013";
  334. }
  335. .glyphicon-remove:before {
  336. content: "\e014";
  337. }
  338. .glyphicon-zoom-in:before {
  339. content: "\e015";
  340. }
  341. .glyphicon-zoom-out:before {
  342. content: "\e016";
  343. }
  344. .glyphicon-off:before {
  345. content: "\e017";
  346. }
  347. .glyphicon-signal:before {
  348. content: "\e018";
  349. }
  350. .glyphicon-cog:before {
  351. content: "\e019";
  352. }
  353. .glyphicon-trash:before {
  354. content: "\e020";
  355. }
  356. .glyphicon-home:before {
  357. content: "\e021";
  358. }
  359. .glyphicon-file:before {
  360. content: "\e022";
  361. }
  362. .glyphicon-time:before {
  363. content: "\e023";
  364. }
  365. .glyphicon-road:before {
  366. content: "\e024";
  367. }
  368. .glyphicon-download-alt:before {
  369. content: "\e025";
  370. }
  371. .glyphicon-download:before {
  372. content: "\e026";
  373. }
  374. .glyphicon-upload:before {
  375. content: "\e027";
  376. }
  377. .glyphicon-inbox:before {
  378. content: "\e028";
  379. }
  380. .glyphicon-play-circle:before {
  381. content: "\e029";
  382. }
  383. .glyphicon-repeat:before {
  384. content: "\e030";
  385. }
  386. .glyphicon-refresh:before {
  387. content: "\e031";
  388. }
  389. .glyphicon-list-alt:before {
  390. content: "\e032";
  391. }
  392. .glyphicon-lock:before {
  393. content: "\e033";
  394. }
  395. .glyphicon-flag:before {
  396. content: "\e034";
  397. }
  398. .glyphicon-headphones:before {
  399. content: "\e035";
  400. }
  401. .glyphicon-volume-off:before {
  402. content: "\e036";
  403. }
  404. .glyphicon-volume-down:before {
  405. content: "\e037";
  406. }
  407. .glyphicon-volume-up:before {
  408. content: "\e038";
  409. }
  410. .glyphicon-qrcode:before {
  411. content: "\e039";
  412. }
  413. .glyphicon-barcode:before {
  414. content: "\e040";
  415. }
  416. .glyphicon-tag:before {
  417. content: "\e041";
  418. }
  419. .glyphicon-tags:before {
  420. content: "\e042";
  421. }
  422. .glyphicon-book:before {
  423. content: "\e043";
  424. }
  425. .glyphicon-bookmark:before {
  426. content: "\e044";
  427. }
  428. .glyphicon-print:before {
  429. content: "\e045";
  430. }
  431. .glyphicon-camera:before {
  432. content: "\e046";
  433. }
  434. .glyphicon-font:before {
  435. content: "\e047";
  436. }
  437. .glyphicon-bold:before {
  438. content: "\e048";
  439. }
  440. .glyphicon-italic:before {
  441. content: "\e049";
  442. }
  443. .glyphicon-text-height:before {
  444. content: "\e050";
  445. }
  446. .glyphicon-text-width:before {
  447. content: "\e051";
  448. }
  449. .glyphicon-align-left:before {
  450. content: "\e052";
  451. }
  452. .glyphicon-align-center:before {
  453. content: "\e053";
  454. }
  455. .glyphicon-align-right:before {
  456. content: "\e054";
  457. }
  458. .glyphicon-align-justify:before {
  459. content: "\e055";
  460. }
  461. .glyphicon-list:before {
  462. content: "\e056";
  463. }
  464. .glyphicon-indent-left:before {
  465. content: "\e057";
  466. }
  467. .glyphicon-indent-right:before {
  468. content: "\e058";
  469. }
  470. .glyphicon-facetime-video:before {
  471. content: "\e059";
  472. }
  473. .glyphicon-picture:before {
  474. content: "\e060";
  475. }
  476. .glyphicon-map-marker:before {
  477. content: "\e062";
  478. }
  479. .glyphicon-adjust:before {
  480. content: "\e063";
  481. }
  482. .glyphicon-tint:before {
  483. content: "\e064";
  484. }
  485. .glyphicon-edit:before {
  486. content: "\e065";
  487. }
  488. .glyphicon-share:before {
  489. content: "\e066";
  490. }
  491. .glyphicon-check:before {
  492. content: "\e067";
  493. }
  494. .glyphicon-move:before {
  495. content: "\e068";
  496. }
  497. .glyphicon-step-backward:before {
  498. content: "\e069";
  499. }
  500. .glyphicon-fast-backward:before {
  501. content: "\e070";
  502. }
  503. .glyphicon-backward:before {
  504. content: "\e071";
  505. }
  506. .glyphicon-play:before {
  507. content: "\e072";
  508. }
  509. .glyphicon-pause:before {
  510. content: "\e073";
  511. }
  512. .glyphicon-stop:before {
  513. content: "\e074";
  514. }
  515. .glyphicon-forward:before {
  516. content: "\e075";
  517. }
  518. .glyphicon-fast-forward:before {
  519. content: "\e076";
  520. }
  521. .glyphicon-step-forward:before {
  522. content: "\e077";
  523. }
  524. .glyphicon-eject:before {
  525. content: "\e078";
  526. }
  527. .glyphicon-chevron-left:before {
  528. content: "\e079";
  529. }
  530. .glyphicon-chevron-right:before {
  531. content: "\e080";
  532. }
  533. .glyphicon-plus-sign:before {
  534. content: "\e081";
  535. }
  536. .glyphicon-minus-sign:before {
  537. content: "\e082";
  538. }
  539. .glyphicon-remove-sign:before {
  540. content: "\e083";
  541. }
  542. .glyphicon-ok-sign:before {
  543. content: "\e084";
  544. }
  545. .glyphicon-question-sign:before {
  546. content: "\e085";
  547. }
  548. .glyphicon-info-sign:before {
  549. content: "\e086";
  550. }
  551. .glyphicon-screenshot:before {
  552. content: "\e087";
  553. }
  554. .glyphicon-remove-circle:before {
  555. content: "\e088";
  556. }
  557. .glyphicon-ok-circle:before {
  558. content: "\e089";
  559. }
  560. .glyphicon-ban-circle:before {
  561. content: "\e090";
  562. }
  563. .glyphicon-arrow-left:before {
  564. content: "\e091";
  565. }
  566. .glyphicon-arrow-right:before {
  567. content: "\e092";
  568. }
  569. .glyphicon-arrow-up:before {
  570. content: "\e093";
  571. }
  572. .glyphicon-arrow-down:before {
  573. content: "\e094";
  574. }
  575. .glyphicon-share-alt:before {
  576. content: "\e095";
  577. }
  578. .glyphicon-resize-full:before {
  579. content: "\e096";
  580. }
  581. .glyphicon-resize-small:before {
  582. content: "\e097";
  583. }
  584. .glyphicon-exclamation-sign:before {
  585. content: "\e101";
  586. }
  587. .glyphicon-gift:before {
  588. content: "\e102";
  589. }
  590. .glyphicon-leaf:before {
  591. content: "\e103";
  592. }
  593. .glyphicon-fire:before {
  594. content: "\e104";
  595. }
  596. .glyphicon-eye-open:before {
  597. content: "\e105";
  598. }
  599. .glyphicon-eye-close:before {
  600. content: "\e106";
  601. }
  602. .glyphicon-warning-sign:before {
  603. content: "\e107";
  604. }
  605. .glyphicon-plane:before {
  606. content: "\e108";
  607. }
  608. .glyphicon-calendar:before {
  609. content: "\e109";
  610. }
  611. .glyphicon-random:before {
  612. content: "\e110";
  613. }
  614. .glyphicon-comment:before {
  615. content: "\e111";
  616. }
  617. .glyphicon-magnet:before {
  618. content: "\e112";
  619. }
  620. .glyphicon-chevron-up:before {
  621. content: "\e113";
  622. }
  623. .glyphicon-chevron-down:before {
  624. content: "\e114";
  625. }
  626. .glyphicon-retweet:before {
  627. content: "\e115";
  628. }
  629. .glyphicon-shopping-cart:before {
  630. content: "\e116";
  631. }
  632. .glyphicon-folder-close:before {
  633. content: "\e117";
  634. }
  635. .glyphicon-folder-open:before {
  636. content: "\e118";
  637. }
  638. .glyphicon-resize-vertical:before {
  639. content: "\e119";
  640. }
  641. .glyphicon-resize-horizontal:before {
  642. content: "\e120";
  643. }
  644. .glyphicon-hdd:before {
  645. content: "\e121";
  646. }
  647. .glyphicon-bullhorn:before {
  648. content: "\e122";
  649. }
  650. .glyphicon-bell:before {
  651. content: "\e123";
  652. }
  653. .glyphicon-certificate:before {
  654. content: "\e124";
  655. }
  656. .glyphicon-thumbs-up:before {
  657. content: "\e125";
  658. }
  659. .glyphicon-thumbs-down:before {
  660. content: "\e126";
  661. }
  662. .glyphicon-hand-right:before {
  663. content: "\e127";
  664. }
  665. .glyphicon-hand-left:before {
  666. content: "\e128";
  667. }
  668. .glyphicon-hand-up:before {
  669. content: "\e129";
  670. }
  671. .glyphicon-hand-down:before {
  672. content: "\e130";
  673. }
  674. .glyphicon-circle-arrow-right:before {
  675. content: "\e131";
  676. }
  677. .glyphicon-circle-arrow-left:before {
  678. content: "\e132";
  679. }
  680. .glyphicon-circle-arrow-up:before {
  681. content: "\e133";
  682. }
  683. .glyphicon-circle-arrow-down:before {
  684. content: "\e134";
  685. }
  686. .glyphicon-globe:before {
  687. content: "\e135";
  688. }
  689. .glyphicon-wrench:before {
  690. content: "\e136";
  691. }
  692. .glyphicon-tasks:before {
  693. content: "\e137";
  694. }
  695. .glyphicon-filter:before {
  696. content: "\e138";
  697. }
  698. .glyphicon-briefcase:before {
  699. content: "\e139";
  700. }
  701. .glyphicon-fullscreen:before {
  702. content: "\e140";
  703. }
  704. .glyphicon-dashboard:before {
  705. content: "\e141";
  706. }
  707. .glyphicon-paperclip:before {
  708. content: "\e142";
  709. }
  710. .glyphicon-heart-empty:before {
  711. content: "\e143";
  712. }
  713. .glyphicon-link:before {
  714. content: "\e144";
  715. }
  716. .glyphicon-phone:before {
  717. content: "\e145";
  718. }
  719. .glyphicon-pushpin:before {
  720. content: "\e146";
  721. }
  722. .glyphicon-usd:before {
  723. content: "\e148";
  724. }
  725. .glyphicon-gbp:before {
  726. content: "\e149";
  727. }
  728. .glyphicon-sort:before {
  729. content: "\e150";
  730. }
  731. .glyphicon-sort-by-alphabet:before {
  732. content: "\e151";
  733. }
  734. .glyphicon-sort-by-alphabet-alt:before {
  735. content: "\e152";
  736. }
  737. .glyphicon-sort-by-order:before {
  738. content: "\e153";
  739. }
  740. .glyphicon-sort-by-order-alt:before {
  741. content: "\e154";
  742. }
  743. .glyphicon-sort-by-attributes:before {
  744. content: "\e155";
  745. }
  746. .glyphicon-sort-by-attributes-alt:before {
  747. content: "\e156";
  748. }
  749. .glyphicon-unchecked:before {
  750. content: "\e157";
  751. }
  752. .glyphicon-expand:before {
  753. content: "\e158";
  754. }
  755. .glyphicon-collapse-down:before {
  756. content: "\e159";
  757. }
  758. .glyphicon-collapse-up:before {
  759. content: "\e160";
  760. }
  761. .glyphicon-log-in:before {
  762. content: "\e161";
  763. }
  764. .glyphicon-flash:before {
  765. content: "\e162";
  766. }
  767. .glyphicon-log-out:before {
  768. content: "\e163";
  769. }
  770. .glyphicon-new-window:before {
  771. content: "\e164";
  772. }
  773. .glyphicon-record:before {
  774. content: "\e165";
  775. }
  776. .glyphicon-save:before {
  777. content: "\e166";
  778. }
  779. .glyphicon-open:before {
  780. content: "\e167";
  781. }
  782. .glyphicon-saved:before {
  783. content: "\e168";
  784. }
  785. .glyphicon-import:before {
  786. content: "\e169";
  787. }
  788. .glyphicon-export:before {
  789. content: "\e170";
  790. }
  791. .glyphicon-send:before {
  792. content: "\e171";
  793. }
  794. .glyphicon-floppy-disk:before {
  795. content: "\e172";
  796. }
  797. .glyphicon-floppy-saved:before {
  798. content: "\e173";
  799. }
  800. .glyphicon-floppy-remove:before {
  801. content: "\e174";
  802. }
  803. .glyphicon-floppy-save:before {
  804. content: "\e175";
  805. }
  806. .glyphicon-floppy-open:before {
  807. content: "\e176";
  808. }
  809. .glyphicon-credit-card:before {
  810. content: "\e177";
  811. }
  812. .glyphicon-transfer:before {
  813. content: "\e178";
  814. }
  815. .glyphicon-cutlery:before {
  816. content: "\e179";
  817. }
  818. .glyphicon-header:before {
  819. content: "\e180";
  820. }
  821. .glyphicon-compressed:before {
  822. content: "\e181";
  823. }
  824. .glyphicon-earphone:before {
  825. content: "\e182";
  826. }
  827. .glyphicon-phone-alt:before {
  828. content: "\e183";
  829. }
  830. .glyphicon-tower:before {
  831. content: "\e184";
  832. }
  833. .glyphicon-stats:before {
  834. content: "\e185";
  835. }
  836. .glyphicon-sd-video:before {
  837. content: "\e186";
  838. }
  839. .glyphicon-hd-video:before {
  840. content: "\e187";
  841. }
  842. .glyphicon-subtitles:before {
  843. content: "\e188";
  844. }
  845. .glyphicon-sound-stereo:before {
  846. content: "\e189";
  847. }
  848. .glyphicon-sound-dolby:before {
  849. content: "\e190";
  850. }
  851. .glyphicon-sound-5-1:before {
  852. content: "\e191";
  853. }
  854. .glyphicon-sound-6-1:before {
  855. content: "\e192";
  856. }
  857. .glyphicon-sound-7-1:before {
  858. content: "\e193";
  859. }
  860. .glyphicon-copyright-mark:before {
  861. content: "\e194";
  862. }
  863. .glyphicon-registration-mark:before {
  864. content: "\e195";
  865. }
  866. .glyphicon-cloud-download:before {
  867. content: "\e197";
  868. }
  869. .glyphicon-cloud-upload:before {
  870. content: "\e198";
  871. }
  872. .glyphicon-tree-conifer:before {
  873. content: "\e199";
  874. }
  875. .glyphicon-tree-deciduous:before {
  876. content: "\e200";
  877. }
  878. .glyphicon-cd:before {
  879. content: "\e201";
  880. }
  881. .glyphicon-save-file:before {
  882. content: "\e202";
  883. }
  884. .glyphicon-open-file:before {
  885. content: "\e203";
  886. }
  887. .glyphicon-level-up:before {
  888. content: "\e204";
  889. }
  890. .glyphicon-copy:before {
  891. content: "\e205";
  892. }
  893. .glyphicon-paste:before {
  894. content: "\e206";
  895. }
  896. .glyphicon-alert:before {
  897. content: "\e209";
  898. }
  899. .glyphicon-equalizer:before {
  900. content: "\e210";
  901. }
  902. .glyphicon-king:before {
  903. content: "\e211";
  904. }
  905. .glyphicon-queen:before {
  906. content: "\e212";
  907. }
  908. .glyphicon-pawn:before {
  909. content: "\e213";
  910. }
  911. .glyphicon-bishop:before {
  912. content: "\e214";
  913. }
  914. .glyphicon-knight:before {
  915. content: "\e215";
  916. }
  917. .glyphicon-baby-formula:before {
  918. content: "\e216";
  919. }
  920. .glyphicon-tent:before {
  921. content: "\26fa";
  922. }
  923. .glyphicon-blackboard:before {
  924. content: "\e218";
  925. }
  926. .glyphicon-bed:before {
  927. content: "\e219";
  928. }
  929. .glyphicon-apple:before {
  930. content: "\f8ff";
  931. }
  932. .glyphicon-erase:before {
  933. content: "\e221";
  934. }
  935. .glyphicon-hourglass:before {
  936. content: "\231b";
  937. }
  938. .glyphicon-lamp:before {
  939. content: "\e223";
  940. }
  941. .glyphicon-duplicate:before {
  942. content: "\e224";
  943. }
  944. .glyphicon-piggy-bank:before {
  945. content: "\e225";
  946. }
  947. .glyphicon-scissors:before {
  948. content: "\e226";
  949. }
  950. .glyphicon-bitcoin:before {
  951. content: "\e227";
  952. }
  953. .glyphicon-btc:before {
  954. content: "\e227";
  955. }
  956. .glyphicon-xbt:before {
  957. content: "\e227";
  958. }
  959. .glyphicon-yen:before {
  960. content: "\00a5";
  961. }
  962. .glyphicon-jpy:before {
  963. content: "\00a5";
  964. }
  965. .glyphicon-ruble:before {
  966. content: "\20bd";
  967. }
  968. .glyphicon-rub:before {
  969. content: "\20bd";
  970. }
  971. .glyphicon-scale:before {
  972. content: "\e230";
  973. }
  974. .glyphicon-ice-lolly:before {
  975. content: "\e231";
  976. }
  977. .glyphicon-ice-lolly-tasted:before {
  978. content: "\e232";
  979. }
  980. .glyphicon-education:before {
  981. content: "\e233";
  982. }
  983. .glyphicon-option-horizontal:before {
  984. content: "\e234";
  985. }
  986. .glyphicon-option-vertical:before {
  987. content: "\e235";
  988. }
  989. .glyphicon-menu-hamburger:before {
  990. content: "\e236";
  991. }
  992. .glyphicon-modal-window:before {
  993. content: "\e237";
  994. }
  995. .glyphicon-oil:before {
  996. content: "\e238";
  997. }
  998. .glyphicon-grain:before {
  999. content: "\e239";
  1000. }
  1001. .glyphicon-sunglasses:before {
  1002. content: "\e240";
  1003. }
  1004. .glyphicon-text-size:before {
  1005. content: "\e241";
  1006. }
  1007. .glyphicon-text-color:before {
  1008. content: "\e242";
  1009. }
  1010. .glyphicon-text-background:before {
  1011. content: "\e243";
  1012. }
  1013. .glyphicon-object-align-top:before {
  1014. content: "\e244";
  1015. }
  1016. .glyphicon-object-align-bottom:before {
  1017. content: "\e245";
  1018. }
  1019. .glyphicon-object-align-horizontal:before {
  1020. content: "\e246";
  1021. }
  1022. .glyphicon-object-align-left:before {
  1023. content: "\e247";
  1024. }
  1025. .glyphicon-object-align-vertical:before {
  1026. content: "\e248";
  1027. }
  1028. .glyphicon-object-align-right:before {
  1029. content: "\e249";
  1030. }
  1031. .glyphicon-triangle-right:before {
  1032. content: "\e250";
  1033. }
  1034. .glyphicon-triangle-left:before {
  1035. content: "\e251";
  1036. }
  1037. .glyphicon-triangle-bottom:before {
  1038. content: "\e252";
  1039. }
  1040. .glyphicon-triangle-top:before {
  1041. content: "\e253";
  1042. }
  1043. .glyphicon-console:before {
  1044. content: "\e254";
  1045. }
  1046. .glyphicon-superscript:before {
  1047. content: "\e255";
  1048. }
  1049. .glyphicon-subscript:before {
  1050. content: "\e256";
  1051. }
  1052. .glyphicon-menu-left:before {
  1053. content: "\e257";
  1054. }
  1055. .glyphicon-menu-right:before {
  1056. content: "\e258";
  1057. }
  1058. .glyphicon-menu-down:before {
  1059. content: "\e259";
  1060. }
  1061. .glyphicon-menu-up:before {
  1062. content: "\e260";
  1063. }
  1064. * {
  1065. -webkit-box-sizing: border-box;
  1066. -moz-box-sizing: border-box;
  1067. box-sizing: border-box;
  1068. }
  1069. *:before,
  1070. *:after {
  1071. -webkit-box-sizing: border-box;
  1072. -moz-box-sizing: border-box;
  1073. box-sizing: border-box;
  1074. }
  1075. html {
  1076. font-size: 10px;
  1077. -webkit-tap-highlight-color: transparent;
  1078. }
  1079. body {
  1080. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  1081. font-size: 14px;
  1082. line-height: 1.42857143;
  1083. color: #c6c6c6;
  1084. background-color: #2f2f2f;
  1085. }
  1086. input,
  1087. button,
  1088. select,
  1089. textarea {
  1090. font-family: inherit;
  1091. font-size: inherit;
  1092. line-height: inherit;
  1093. }
  1094. a {
  1095. color: #08c;
  1096. text-decoration: none;
  1097. }
  1098. a:hover, a:focus {
  1099. color: #1ab3ff;
  1100. text-decoration: underline;
  1101. }
  1102. a:focus {
  1103. outline: thin dotted;
  1104. outline: 5px auto -webkit-focus-ring-color;
  1105. outline-offset: -2px;
  1106. }
  1107. figure {
  1108. margin: 0;
  1109. }
  1110. img {
  1111. vertical-align: middle;
  1112. }
  1113. .img-responsive {
  1114. display: block;
  1115. max-width: 100%;
  1116. height: auto;
  1117. }
  1118. .img-rounded {
  1119. border-radius: 6px;
  1120. }
  1121. .img-thumbnail {
  1122. padding: 4px;
  1123. line-height: 1.42857143;
  1124. background-color: #2f2f2f;
  1125. border: 1px solid #ddd;
  1126. border-radius: 4px;
  1127. -webkit-transition: all 0.2s ease-in-out;
  1128. -o-transition: all 0.2s ease-in-out;
  1129. transition: all 0.2s ease-in-out;
  1130. display: inline-block;
  1131. max-width: 100%;
  1132. height: auto;
  1133. }
  1134. .img-circle {
  1135. border-radius: 50%;
  1136. }
  1137. hr {
  1138. margin-top: 20px;
  1139. margin-bottom: 20px;
  1140. border: 0;
  1141. border-top: 1px solid #eeeeee;
  1142. }
  1143. .sr-only {
  1144. position: absolute;
  1145. width: 1px;
  1146. height: 1px;
  1147. margin: -1px;
  1148. padding: 0;
  1149. overflow: hidden;
  1150. clip: rect(0, 0, 0, 0);
  1151. border: 0;
  1152. }
  1153. .sr-only-focusable:active, .sr-only-focusable:focus {
  1154. position: static;
  1155. width: auto;
  1156. height: auto;
  1157. margin: 0;
  1158. overflow: visible;
  1159. clip: auto;
  1160. }
  1161. [role="button"] {
  1162. cursor: pointer;
  1163. }
  1164. h1, h2, h3, h4, h5, h6,
  1165. .h1, .h2, .h3, .h4, .h5, .h6 {
  1166. font-family: inherit;
  1167. font-weight: 500;
  1168. line-height: 1.1;
  1169. color: inherit;
  1170. }
  1171. h1 small,
  1172. h1 .small, h2 small,
  1173. h2 .small, h3 small,
  1174. h3 .small, h4 small,
  1175. h4 .small, h5 small,
  1176. h5 .small, h6 small,
  1177. h6 .small,
  1178. .h1 small,
  1179. .h1 .small, .h2 small,
  1180. .h2 .small, .h3 small,
  1181. .h3 .small, .h4 small,
  1182. .h4 .small, .h5 small,
  1183. .h5 .small, .h6 small,
  1184. .h6 .small {
  1185. font-weight: normal;
  1186. line-height: 1;
  1187. color: #777777;
  1188. }
  1189. h1, .h1,
  1190. h2, .h2,
  1191. h3, .h3 {
  1192. margin-top: 20px;
  1193. margin-bottom: 10px;
  1194. }
  1195. h1 small,
  1196. h1 .small, .h1 small,
  1197. .h1 .small,
  1198. h2 small,
  1199. h2 .small, .h2 small,
  1200. .h2 .small,
  1201. h3 small,
  1202. h3 .small, .h3 small,
  1203. .h3 .small {
  1204. font-size: 65%;
  1205. }
  1206. h4, .h4,
  1207. h5, .h5,
  1208. h6, .h6 {
  1209. margin-top: 10px;
  1210. margin-bottom: 10px;
  1211. }
  1212. h4 small,
  1213. h4 .small, .h4 small,
  1214. .h4 .small,
  1215. h5 small,
  1216. h5 .small, .h5 small,
  1217. .h5 .small,
  1218. h6 small,
  1219. h6 .small, .h6 small,
  1220. .h6 .small {
  1221. font-size: 75%;
  1222. }
  1223. h1, .h1 {
  1224. font-size: 36px;
  1225. }
  1226. h2, .h2 {
  1227. font-size: 30px;
  1228. }
  1229. h3, .h3 {
  1230. font-size: 24px;
  1231. }
  1232. h4, .h4 {
  1233. font-size: 18px;
  1234. }
  1235. h5, .h5 {
  1236. font-size: 14px;
  1237. }
  1238. h6, .h6 {
  1239. font-size: 12px;
  1240. }
  1241. p {
  1242. margin: 0 0 10px;
  1243. }
  1244. .lead {
  1245. margin-bottom: 20px;
  1246. font-size: 16px;
  1247. font-weight: 300;
  1248. line-height: 1.4;
  1249. }
  1250. @media (min-width: 768px) {
  1251. .lead {
  1252. font-size: 21px;
  1253. }
  1254. }
  1255. small,
  1256. .small {
  1257. font-size: 85%;
  1258. }
  1259. mark,
  1260. .mark {
  1261. background-color: #fcf8e3;
  1262. padding: .2em;
  1263. }
  1264. .text-left {
  1265. text-align: left;
  1266. }
  1267. .text-right {
  1268. text-align: right;
  1269. }
  1270. .text-center {
  1271. text-align: center;
  1272. }
  1273. .text-justify {
  1274. text-align: justify;
  1275. }
  1276. .text-nowrap {
  1277. white-space: nowrap;
  1278. }
  1279. .text-lowercase {
  1280. text-transform: lowercase;
  1281. }
  1282. .text-uppercase, .initialism {
  1283. text-transform: uppercase;
  1284. }
  1285. .text-capitalize {
  1286. text-transform: capitalize;
  1287. }
  1288. .text-muted {
  1289. color: #777777;
  1290. }
  1291. .text-primary {
  1292. color: #337ab7;
  1293. }
  1294. a.text-primary:hover,
  1295. a.text-primary:focus {
  1296. color: #286090;
  1297. }
  1298. .text-success {
  1299. color: #3c763d;
  1300. }
  1301. a.text-success:hover,
  1302. a.text-success:focus {
  1303. color: #2b542c;
  1304. }
  1305. .text-info {
  1306. color: #31708f;
  1307. }
  1308. a.text-info:hover,
  1309. a.text-info:focus {
  1310. color: #245269;
  1311. }
  1312. .text-warning {
  1313. color: #8a6d3b;
  1314. }
  1315. a.text-warning:hover,
  1316. a.text-warning:focus {
  1317. color: #66512c;
  1318. }
  1319. .text-danger {
  1320. color: #a94442;
  1321. }
  1322. a.text-danger:hover,
  1323. a.text-danger:focus {
  1324. color: #843534;
  1325. }
  1326. .bg-primary {
  1327. color: #fff;
  1328. }
  1329. .bg-primary {
  1330. background-color: #337ab7;
  1331. }
  1332. a.bg-primary:hover,
  1333. a.bg-primary:focus {
  1334. background-color: #286090;
  1335. }
  1336. .bg-success {
  1337. background-color: #dff0d8;
  1338. }
  1339. a.bg-success:hover,
  1340. a.bg-success:focus {
  1341. background-color: #c1e2b3;
  1342. }
  1343. .bg-info {
  1344. background-color: #d9edf7;
  1345. }
  1346. a.bg-info:hover,
  1347. a.bg-info:focus {
  1348. background-color: #afd9ee;
  1349. }
  1350. .bg-warning {
  1351. background-color: #fcf8e3;
  1352. }
  1353. a.bg-warning:hover,
  1354. a.bg-warning:focus {
  1355. background-color: #f7ecb5;
  1356. }
  1357. .bg-danger {
  1358. background-color: #f2dede;
  1359. }
  1360. a.bg-danger:hover,
  1361. a.bg-danger:focus {
  1362. background-color: #e4b9b9;
  1363. }
  1364. .page-header {
  1365. padding-bottom: 9px;
  1366. margin: 40px 0 20px;
  1367. border-bottom: 1px solid #eeeeee;
  1368. }
  1369. ul,
  1370. ol {
  1371. margin-top: 0;
  1372. margin-bottom: 10px;
  1373. }
  1374. ul ul,
  1375. ul ol,
  1376. ol ul,
  1377. ol ol {
  1378. margin-bottom: 0;
  1379. }
  1380. .list-unstyled {
  1381. padding-left: 0;
  1382. list-style: none;
  1383. }
  1384. .list-inline {
  1385. padding-left: 0;
  1386. list-style: none;
  1387. margin-left: -5px;
  1388. }
  1389. .list-inline > li {
  1390. display: inline-block;
  1391. padding-left: 5px;
  1392. padding-right: 5px;
  1393. }
  1394. dl {
  1395. margin-top: 0;
  1396. margin-bottom: 20px;
  1397. }
  1398. dt,
  1399. dd {
  1400. line-height: 1.42857143;
  1401. }
  1402. dt {
  1403. font-weight: bold;
  1404. }
  1405. dd {
  1406. margin-left: 0;
  1407. }
  1408. .dl-horizontal dd:before, .dl-horizontal dd:after {
  1409. content: " ";
  1410. display: table;
  1411. }
  1412. .dl-horizontal dd:after {
  1413. clear: both;
  1414. }
  1415. @media (min-width: 768px) {
  1416. .dl-horizontal dt {
  1417. float: left;
  1418. width: 160px;
  1419. clear: left;
  1420. text-align: right;
  1421. overflow: hidden;
  1422. text-overflow: ellipsis;
  1423. white-space: nowrap;
  1424. }
  1425. .dl-horizontal dd {
  1426. margin-left: 180px;
  1427. }
  1428. }
  1429. abbr[title],
  1430. abbr[data-original-title] {
  1431. cursor: help;
  1432. border-bottom: 1px dotted #777777;
  1433. }
  1434. .initialism {
  1435. font-size: 90%;
  1436. }
  1437. blockquote {
  1438. padding: 10px 20px;
  1439. margin: 0 0 20px;
  1440. font-size: 17.5px;
  1441. border-left: 5px solid #eeeeee;
  1442. }
  1443. blockquote p:last-child,
  1444. blockquote ul:last-child,
  1445. blockquote ol:last-child {
  1446. margin-bottom: 0;
  1447. }
  1448. blockquote footer,
  1449. blockquote small,
  1450. blockquote .small {
  1451. display: block;
  1452. font-size: 80%;
  1453. line-height: 1.42857143;
  1454. color: #777777;
  1455. }
  1456. blockquote footer:before,
  1457. blockquote small:before,
  1458. blockquote .small:before {
  1459. content: '\2014 \00A0';
  1460. }
  1461. .blockquote-reverse,
  1462. blockquote.pull-right {
  1463. padding-right: 15px;
  1464. padding-left: 0;
  1465. border-right: 5px solid #eeeeee;
  1466. border-left: 0;
  1467. text-align: right;
  1468. }
  1469. .blockquote-reverse footer:before,
  1470. .blockquote-reverse small:before,
  1471. .blockquote-reverse .small:before,
  1472. blockquote.pull-right footer:before,
  1473. blockquote.pull-right small:before,
  1474. blockquote.pull-right .small:before {
  1475. content: '';
  1476. }
  1477. .blockquote-reverse footer:after,
  1478. .blockquote-reverse small:after,
  1479. .blockquote-reverse .small:after,
  1480. blockquote.pull-right footer:after,
  1481. blockquote.pull-right small:after,
  1482. blockquote.pull-right .small:after {
  1483. content: '\00A0 \2014';
  1484. }
  1485. address {
  1486. margin-bottom: 20px;
  1487. font-style: normal;
  1488. line-height: 1.42857143;
  1489. }
  1490. code,
  1491. kbd,
  1492. pre,
  1493. samp {
  1494. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  1495. }
  1496. code {
  1497. padding: 2px 4px;
  1498. font-size: 90%;
  1499. color: #c7254e;
  1500. background-color: #f9f2f4;
  1501. border-radius: 4px;
  1502. }
  1503. kbd {
  1504. padding: 2px 4px;
  1505. font-size: 90%;
  1506. color: #fff;
  1507. background-color: #333;
  1508. border-radius: 3px;
  1509. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  1510. }
  1511. kbd kbd {
  1512. padding: 0;
  1513. font-size: 100%;
  1514. font-weight: bold;
  1515. box-shadow: none;
  1516. }
  1517. pre {
  1518. display: block;
  1519. padding: 9.5px;
  1520. margin: 0 0 10px;
  1521. font-size: 13px;
  1522. line-height: 1.42857143;
  1523. word-break: break-all;
  1524. word-wrap: break-word;
  1525. color: #333333;
  1526. background-color: #f5f5f5;
  1527. border: 1px solid #ccc;
  1528. border-radius: 4px;
  1529. }
  1530. pre code {
  1531. padding: 0;
  1532. font-size: inherit;
  1533. color: inherit;
  1534. white-space: pre-wrap;
  1535. background-color: transparent;
  1536. border-radius: 0;
  1537. }
  1538. .pre-scrollable {
  1539. max-height: 340px;
  1540. overflow-y: scroll;
  1541. }
  1542. .container {
  1543. margin-right: auto;
  1544. margin-left: auto;
  1545. padding-left: 15px;
  1546. padding-right: 15px;
  1547. }
  1548. .container:before, .container:after {
  1549. content: " ";
  1550. display: table;
  1551. }
  1552. .container:after {
  1553. clear: both;
  1554. }
  1555. @media (min-width: 768px) {
  1556. .container {
  1557. width: 750px;
  1558. }
  1559. }
  1560. @media (min-width: 992px) {
  1561. .container {
  1562. width: 970px;
  1563. }
  1564. }
  1565. @media (min-width: 1200px) {
  1566. .container {
  1567. width: 1170px;
  1568. }
  1569. }
  1570. .container-fluid {
  1571. margin-right: auto;
  1572. margin-left: auto;
  1573. padding-left: 15px;
  1574. padding-right: 15px;
  1575. }
  1576. .container-fluid:before, .container-fluid:after {
  1577. content: " ";
  1578. display: table;
  1579. }
  1580. .container-fluid:after {
  1581. clear: both;
  1582. }
  1583. .row {
  1584. margin-left: -15px;
  1585. margin-right: -15px;
  1586. }
  1587. .row:before, .row:after {
  1588. content: " ";
  1589. display: table;
  1590. }
  1591. .row:after {
  1592. clear: both;
  1593. }
  1594. .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  1595. position: relative;
  1596. min-height: 1px;
  1597. padding-left: 15px;
  1598. padding-right: 15px;
  1599. }
  1600. .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  1601. float: left;
  1602. }
  1603. .col-xs-1 {
  1604. width: 8.33333333%;
  1605. }
  1606. .col-xs-2 {
  1607. width: 16.66666667%;
  1608. }
  1609. .col-xs-3 {
  1610. width: 25%;
  1611. }
  1612. .col-xs-4 {
  1613. width: 33.33333333%;
  1614. }
  1615. .col-xs-5 {
  1616. width: 41.66666667%;
  1617. }
  1618. .col-xs-6 {
  1619. width: 50%;
  1620. }
  1621. .col-xs-7 {
  1622. width: 58.33333333%;
  1623. }
  1624. .col-xs-8 {
  1625. width: 66.66666667%;
  1626. }
  1627. .col-xs-9 {
  1628. width: 75%;
  1629. }
  1630. .col-xs-10 {
  1631. width: 83.33333333%;
  1632. }
  1633. .col-xs-11 {
  1634. width: 91.66666667%;
  1635. }
  1636. .col-xs-12 {
  1637. width: 100%;
  1638. }
  1639. .col-xs-pull-0 {
  1640. right: auto;
  1641. }
  1642. .col-xs-pull-1 {
  1643. right: 8.33333333%;
  1644. }
  1645. .col-xs-pull-2 {
  1646. right: 16.66666667%;
  1647. }
  1648. .col-xs-pull-3 {
  1649. right: 25%;
  1650. }
  1651. .col-xs-pull-4 {
  1652. right: 33.33333333%;
  1653. }
  1654. .col-xs-pull-5 {
  1655. right: 41.66666667%;
  1656. }
  1657. .col-xs-pull-6 {
  1658. right: 50%;
  1659. }
  1660. .col-xs-pull-7 {
  1661. right: 58.33333333%;
  1662. }
  1663. .col-xs-pull-8 {
  1664. right: 66.66666667%;
  1665. }
  1666. .col-xs-pull-9 {
  1667. right: 75%;
  1668. }
  1669. .col-xs-pull-10 {
  1670. right: 83.33333333%;
  1671. }
  1672. .col-xs-pull-11 {
  1673. right: 91.66666667%;
  1674. }
  1675. .col-xs-pull-12 {
  1676. right: 100%;
  1677. }
  1678. .col-xs-push-0 {
  1679. left: auto;
  1680. }
  1681. .col-xs-push-1 {
  1682. left: 8.33333333%;
  1683. }
  1684. .col-xs-push-2 {
  1685. left: 16.66666667%;
  1686. }
  1687. .col-xs-push-3 {
  1688. left: 25%;
  1689. }
  1690. .col-xs-push-4 {
  1691. left: 33.33333333%;
  1692. }
  1693. .col-xs-push-5 {
  1694. left: 41.66666667%;
  1695. }
  1696. .col-xs-push-6 {
  1697. left: 50%;
  1698. }
  1699. .col-xs-push-7 {
  1700. left: 58.33333333%;
  1701. }
  1702. .col-xs-push-8 {
  1703. left: 66.66666667%;
  1704. }
  1705. .col-xs-push-9 {
  1706. left: 75%;
  1707. }
  1708. .col-xs-push-10 {
  1709. left: 83.33333333%;
  1710. }
  1711. .col-xs-push-11 {
  1712. left: 91.66666667%;
  1713. }
  1714. .col-xs-push-12 {
  1715. left: 100%;
  1716. }
  1717. .col-xs-offset-0 {
  1718. margin-left: 0%;
  1719. }
  1720. .col-xs-offset-1 {
  1721. margin-left: 8.33333333%;
  1722. }
  1723. .col-xs-offset-2 {
  1724. margin-left: 16.66666667%;
  1725. }
  1726. .col-xs-offset-3 {
  1727. margin-left: 25%;
  1728. }
  1729. .col-xs-offset-4 {
  1730. margin-left: 33.33333333%;
  1731. }
  1732. .col-xs-offset-5 {
  1733. margin-left: 41.66666667%;
  1734. }
  1735. .col-xs-offset-6 {
  1736. margin-left: 50%;
  1737. }
  1738. .col-xs-offset-7 {
  1739. margin-left: 58.33333333%;
  1740. }
  1741. .col-xs-offset-8 {
  1742. margin-left: 66.66666667%;
  1743. }
  1744. .col-xs-offset-9 {
  1745. margin-left: 75%;
  1746. }
  1747. .col-xs-offset-10 {
  1748. margin-left: 83.33333333%;
  1749. }
  1750. .col-xs-offset-11 {
  1751. margin-left: 91.66666667%;
  1752. }
  1753. .col-xs-offset-12 {
  1754. margin-left: 100%;
  1755. }
  1756. @media (min-width: 768px) {
  1757. .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
  1758. float: left;
  1759. }
  1760. .col-sm-1 {
  1761. width: 8.33333333%;
  1762. }
  1763. .col-sm-2 {
  1764. width: 16.66666667%;
  1765. }
  1766. .col-sm-3 {
  1767. width: 25%;
  1768. }
  1769. .col-sm-4 {
  1770. width: 33.33333333%;
  1771. }
  1772. .col-sm-5 {
  1773. width: 41.66666667%;
  1774. }
  1775. .col-sm-6 {
  1776. width: 50%;
  1777. }
  1778. .col-sm-7 {
  1779. width: 58.33333333%;
  1780. }
  1781. .col-sm-8 {
  1782. width: 66.66666667%;
  1783. }
  1784. .col-sm-9 {
  1785. width: 75%;
  1786. }
  1787. .col-sm-10 {
  1788. width: 83.33333333%;
  1789. }
  1790. .col-sm-11 {
  1791. width: 91.66666667%;
  1792. }
  1793. .col-sm-12 {
  1794. width: 100%;
  1795. }
  1796. .col-sm-pull-0 {
  1797. right: auto;
  1798. }
  1799. .col-sm-pull-1 {
  1800. right: 8.33333333%;
  1801. }
  1802. .col-sm-pull-2 {
  1803. right: 16.66666667%;
  1804. }
  1805. .col-sm-pull-3 {
  1806. right: 25%;
  1807. }
  1808. .col-sm-pull-4 {
  1809. right: 33.33333333%;
  1810. }
  1811. .col-sm-pull-5 {
  1812. right: 41.66666667%;
  1813. }
  1814. .col-sm-pull-6 {
  1815. right: 50%;
  1816. }
  1817. .col-sm-pull-7 {
  1818. right: 58.33333333%;
  1819. }
  1820. .col-sm-pull-8 {
  1821. right: 66.66666667%;
  1822. }
  1823. .col-sm-pull-9 {
  1824. right: 75%;
  1825. }
  1826. .col-sm-pull-10 {
  1827. right: 83.33333333%;
  1828. }
  1829. .col-sm-pull-11 {
  1830. right: 91.66666667%;
  1831. }
  1832. .col-sm-pull-12 {
  1833. right: 100%;
  1834. }
  1835. .col-sm-push-0 {
  1836. left: auto;
  1837. }
  1838. .col-sm-push-1 {
  1839. left: 8.33333333%;
  1840. }
  1841. .col-sm-push-2 {
  1842. left: 16.66666667%;
  1843. }
  1844. .col-sm-push-3 {
  1845. left: 25%;
  1846. }
  1847. .col-sm-push-4 {
  1848. left: 33.33333333%;
  1849. }
  1850. .col-sm-push-5 {
  1851. left: 41.66666667%;
  1852. }
  1853. .col-sm-push-6 {
  1854. left: 50%;
  1855. }
  1856. .col-sm-push-7 {
  1857. left: 58.33333333%;
  1858. }
  1859. .col-sm-push-8 {
  1860. left: 66.66666667%;
  1861. }
  1862. .col-sm-push-9 {
  1863. left: 75%;
  1864. }
  1865. .col-sm-push-10 {
  1866. left: 83.33333333%;
  1867. }
  1868. .col-sm-push-11 {
  1869. left: 91.66666667%;
  1870. }
  1871. .col-sm-push-12 {
  1872. left: 100%;
  1873. }
  1874. .col-sm-offset-0 {
  1875. margin-left: 0%;
  1876. }
  1877. .col-sm-offset-1 {
  1878. margin-left: 8.33333333%;
  1879. }
  1880. .col-sm-offset-2 {
  1881. margin-left: 16.66666667%;
  1882. }
  1883. .col-sm-offset-3 {
  1884. margin-left: 25%;
  1885. }
  1886. .col-sm-offset-4 {
  1887. margin-left: 33.33333333%;
  1888. }
  1889. .col-sm-offset-5 {
  1890. margin-left: 41.66666667%;
  1891. }
  1892. .col-sm-offset-6 {
  1893. margin-left: 50%;
  1894. }
  1895. .col-sm-offset-7 {
  1896. margin-left: 58.33333333%;
  1897. }
  1898. .col-sm-offset-8 {
  1899. margin-left: 66.66666667%;
  1900. }
  1901. .col-sm-offset-9 {
  1902. margin-left: 75%;
  1903. }
  1904. .col-sm-offset-10 {
  1905. margin-left: 83.33333333%;
  1906. }
  1907. .col-sm-offset-11 {
  1908. margin-left: 91.66666667%;
  1909. }
  1910. .col-sm-offset-12 {
  1911. margin-left: 100%;
  1912. }
  1913. }
  1914. @media (min-width: 992px) {
  1915. .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
  1916. float: left;
  1917. }
  1918. .col-md-1 {
  1919. width: 8.33333333%;
  1920. }
  1921. .col-md-2 {
  1922. width: 16.66666667%;
  1923. }
  1924. .col-md-3 {
  1925. width: 25%;
  1926. }
  1927. .col-md-4 {
  1928. width: 33.33333333%;
  1929. }
  1930. .col-md-5 {
  1931. width: 41.66666667%;
  1932. }
  1933. .col-md-6 {
  1934. width: 50%;
  1935. }
  1936. .col-md-7 {
  1937. width: 58.33333333%;
  1938. }
  1939. .col-md-8 {
  1940. width: 66.66666667%;
  1941. }
  1942. .col-md-9 {
  1943. width: 75%;
  1944. }
  1945. .col-md-10 {
  1946. width: 83.33333333%;
  1947. }
  1948. .col-md-11 {
  1949. width: 91.66666667%;
  1950. }
  1951. .col-md-12 {
  1952. width: 100%;
  1953. }
  1954. .col-md-pull-0 {
  1955. right: auto;
  1956. }
  1957. .col-md-pull-1 {
  1958. right: 8.33333333%;
  1959. }
  1960. .col-md-pull-2 {
  1961. right: 16.66666667%;
  1962. }
  1963. .col-md-pull-3 {
  1964. right: 25%;
  1965. }
  1966. .col-md-pull-4 {
  1967. right: 33.33333333%;
  1968. }
  1969. .col-md-pull-5 {
  1970. right: 41.66666667%;
  1971. }
  1972. .col-md-pull-6 {
  1973. right: 50%;
  1974. }
  1975. .col-md-pull-7 {
  1976. right: 58.33333333%;
  1977. }
  1978. .col-md-pull-8 {
  1979. right: 66.66666667%;
  1980. }
  1981. .col-md-pull-9 {
  1982. right: 75%;
  1983. }
  1984. .col-md-pull-10 {
  1985. right: 83.33333333%;
  1986. }
  1987. .col-md-pull-11 {
  1988. right: 91.66666667%;
  1989. }
  1990. .col-md-pull-12 {
  1991. right: 100%;
  1992. }
  1993. .col-md-push-0 {
  1994. left: auto;
  1995. }
  1996. .col-md-push-1 {
  1997. left: 8.33333333%;
  1998. }
  1999. .col-md-push-2 {
  2000. left: 16.66666667%;
  2001. }
  2002. .col-md-push-3 {
  2003. left: 25%;
  2004. }
  2005. .col-md-push-4 {
  2006. left: 33.33333333%;
  2007. }
  2008. .col-md-push-5 {
  2009. left: 41.66666667%;
  2010. }
  2011. .col-md-push-6 {
  2012. left: 50%;
  2013. }
  2014. .col-md-push-7 {
  2015. left: 58.33333333%;
  2016. }
  2017. .col-md-push-8 {
  2018. left: 66.66666667%;
  2019. }
  2020. .col-md-push-9 {
  2021. left: 75%;
  2022. }
  2023. .col-md-push-10 {
  2024. left: 83.33333333%;
  2025. }
  2026. .col-md-push-11 {
  2027. left: 91.66666667%;
  2028. }
  2029. .col-md-push-12 {
  2030. left: 100%;
  2031. }
  2032. .col-md-offset-0 {
  2033. margin-left: 0%;
  2034. }
  2035. .col-md-offset-1 {
  2036. margin-left: 8.33333333%;
  2037. }
  2038. .col-md-offset-2 {
  2039. margin-left: 16.66666667%;
  2040. }
  2041. .col-md-offset-3 {
  2042. margin-left: 25%;
  2043. }
  2044. .col-md-offset-4 {
  2045. margin-left: 33.33333333%;
  2046. }
  2047. .col-md-offset-5 {
  2048. margin-left: 41.66666667%;
  2049. }
  2050. .col-md-offset-6 {
  2051. margin-left: 50%;
  2052. }
  2053. .col-md-offset-7 {
  2054. margin-left: 58.33333333%;
  2055. }
  2056. .col-md-offset-8 {
  2057. margin-left: 66.66666667%;
  2058. }
  2059. .col-md-offset-9 {
  2060. margin-left: 75%;
  2061. }
  2062. .col-md-offset-10 {
  2063. margin-left: 83.33333333%;
  2064. }
  2065. .col-md-offset-11 {
  2066. margin-left: 91.66666667%;
  2067. }
  2068. .col-md-offset-12 {
  2069. margin-left: 100%;
  2070. }
  2071. }
  2072. @media (min-width: 1200px) {
  2073. .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  2074. float: left;
  2075. }
  2076. .col-lg-1 {
  2077. width: 8.33333333%;
  2078. }
  2079. .col-lg-2 {
  2080. width: 16.66666667%;
  2081. }
  2082. .col-lg-3 {
  2083. width: 25%;
  2084. }
  2085. .col-lg-4 {
  2086. width: 33.33333333%;
  2087. }
  2088. .col-lg-5 {
  2089. width: 41.66666667%;
  2090. }
  2091. .col-lg-6 {
  2092. width: 50%;
  2093. }
  2094. .col-lg-7 {
  2095. width: 58.33333333%;
  2096. }
  2097. .col-lg-8 {
  2098. width: 66.66666667%;
  2099. }
  2100. .col-lg-9 {
  2101. width: 75%;
  2102. }
  2103. .col-lg-10 {
  2104. width: 83.33333333%;
  2105. }
  2106. .col-lg-11 {
  2107. width: 91.66666667%;
  2108. }
  2109. .col-lg-12 {
  2110. width: 100%;
  2111. }
  2112. .col-lg-pull-0 {
  2113. right: auto;
  2114. }
  2115. .col-lg-pull-1 {
  2116. right: 8.33333333%;
  2117. }
  2118. .col-lg-pull-2 {
  2119. right: 16.66666667%;
  2120. }
  2121. .col-lg-pull-3 {
  2122. right: 25%;
  2123. }
  2124. .col-lg-pull-4 {
  2125. right: 33.33333333%;
  2126. }
  2127. .col-lg-pull-5 {
  2128. right: 41.66666667%;
  2129. }
  2130. .col-lg-pull-6 {
  2131. right: 50%;
  2132. }
  2133. .col-lg-pull-7 {
  2134. right: 58.33333333%;
  2135. }
  2136. .col-lg-pull-8 {
  2137. right: 66.66666667%;
  2138. }
  2139. .col-lg-pull-9 {
  2140. right: 75%;
  2141. }
  2142. .col-lg-pull-10 {
  2143. right: 83.33333333%;
  2144. }
  2145. .col-lg-pull-11 {
  2146. right: 91.66666667%;
  2147. }
  2148. .col-lg-pull-12 {
  2149. right: 100%;
  2150. }
  2151. .col-lg-push-0 {
  2152. left: auto;
  2153. }
  2154. .col-lg-push-1 {
  2155. left: 8.33333333%;
  2156. }
  2157. .col-lg-push-2 {
  2158. left: 16.66666667%;
  2159. }
  2160. .col-lg-push-3 {
  2161. left: 25%;
  2162. }
  2163. .col-lg-push-4 {
  2164. left: 33.33333333%;
  2165. }
  2166. .col-lg-push-5 {
  2167. left: 41.66666667%;
  2168. }
  2169. .col-lg-push-6 {
  2170. left: 50%;
  2171. }
  2172. .col-lg-push-7 {
  2173. left: 58.33333333%;
  2174. }
  2175. .col-lg-push-8 {
  2176. left: 66.66666667%;
  2177. }
  2178. .col-lg-push-9 {
  2179. left: 75%;
  2180. }
  2181. .col-lg-push-10 {
  2182. left: 83.33333333%;
  2183. }
  2184. .col-lg-push-11 {
  2185. left: 91.66666667%;
  2186. }
  2187. .col-lg-push-12 {
  2188. left: 100%;
  2189. }
  2190. .col-lg-offset-0 {
  2191. margin-left: 0%;
  2192. }
  2193. .col-lg-offset-1 {
  2194. margin-left: 8.33333333%;
  2195. }
  2196. .col-lg-offset-2 {
  2197. margin-left: 16.66666667%;
  2198. }
  2199. .col-lg-offset-3 {
  2200. margin-left: 25%;
  2201. }
  2202. .col-lg-offset-4 {
  2203. margin-left: 33.33333333%;
  2204. }
  2205. .col-lg-offset-5 {
  2206. margin-left: 41.66666667%;
  2207. }
  2208. .col-lg-offset-6 {
  2209. margin-left: 50%;
  2210. }
  2211. .col-lg-offset-7 {
  2212. margin-left: 58.33333333%;
  2213. }
  2214. .col-lg-offset-8 {
  2215. margin-left: 66.66666667%;
  2216. }
  2217. .col-lg-offset-9 {
  2218. margin-left: 75%;
  2219. }
  2220. .col-lg-offset-10 {
  2221. margin-left: 83.33333333%;
  2222. }
  2223. .col-lg-offset-11 {
  2224. margin-left: 91.66666667%;
  2225. }
  2226. .col-lg-offset-12 {
  2227. margin-left: 100%;
  2228. }
  2229. }
  2230. table {
  2231. background-color: transparent;
  2232. }
  2233. caption {
  2234. padding-top: 8px;
  2235. padding-bottom: 8px;
  2236. color: #777777;
  2237. text-align: left;
  2238. }
  2239. th {
  2240. text-align: left;
  2241. }
  2242. .table {
  2243. width: 100%;
  2244. max-width: 100%;
  2245. margin-bottom: 20px;
  2246. }
  2247. .table > thead > tr > th,
  2248. .table > thead > tr > td,
  2249. .table > tbody > tr > th,
  2250. .table > tbody > tr > td,
  2251. .table > tfoot > tr > th,
  2252. .table > tfoot > tr > td {
  2253. padding: 8px;
  2254. line-height: 1.42857143;
  2255. vertical-align: top;
  2256. border-top: 1px solid #ddd;
  2257. }
  2258. .table > thead > tr > th {
  2259. vertical-align: bottom;
  2260. border-bottom: 2px solid #ddd;
  2261. }
  2262. .table > caption + thead > tr:first-child > th,
  2263. .table > caption + thead > tr:first-child > td,
  2264. .table > colgroup + thead > tr:first-child > th,
  2265. .table > colgroup + thead > tr:first-child > td,
  2266. .table > thead:first-child > tr:first-child > th,
  2267. .table > thead:first-child > tr:first-child > td {
  2268. border-top: 0;
  2269. }
  2270. .table > tbody + tbody {
  2271. border-top: 2px solid #ddd;
  2272. }
  2273. .table .table {
  2274. background-color: #2f2f2f;
  2275. }
  2276. .table-condensed > thead > tr > th,
  2277. .table-condensed > thead > tr > td,
  2278. .table-condensed > tbody > tr > th,
  2279. .table-condensed > tbody > tr > td,
  2280. .table-condensed > tfoot > tr > th,
  2281. .table-condensed > tfoot > tr > td {
  2282. padding: 5px;
  2283. }
  2284. .table-bordered {
  2285. border: 1px solid #ddd;
  2286. }
  2287. .table-bordered > thead > tr > th,
  2288. .table-bordered > thead > tr > td,
  2289. .table-bordered > tbody > tr > th,
  2290. .table-bordered > tbody > tr > td,
  2291. .table-bordered > tfoot > tr > th,
  2292. .table-bordered > tfoot > tr > td {
  2293. border: 1px solid #ddd;
  2294. }
  2295. .table-bordered > thead > tr > th,
  2296. .table-bordered > thead > tr > td {
  2297. border-bottom-width: 2px;
  2298. }
  2299. .table-striped > tbody > tr:nth-of-type(odd) {
  2300. background-color: #f9f9f9;
  2301. }
  2302. .table-hover > tbody > tr:hover {
  2303. background-color: #f5f5f5;
  2304. }
  2305. table col[class*="col-"] {
  2306. position: static;
  2307. float: none;
  2308. display: table-column;
  2309. }
  2310. table td[class*="col-"],
  2311. table th[class*="col-"] {
  2312. position: static;
  2313. float: none;
  2314. display: table-cell;
  2315. }
  2316. .table > thead > tr > td.active,
  2317. .table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
  2318. .table > tbody > tr > td.active,
  2319. .table > tbody > tr > th.active,
  2320. .table > tbody > tr.active > td,
  2321. .table > tbody > tr.active > th,
  2322. .table > tfoot > tr > td.active,
  2323. .table > tfoot > tr > th.active,
  2324. .table > tfoot > tr.active > td,
  2325. .table > tfoot > tr.active > th {
  2326. background-color: #f5f5f5;
  2327. }
  2328. .table-hover > tbody > tr > td.active:hover,
  2329. .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  2330. background-color: #e8e8e8;
  2331. }
  2332. .table > thead > tr > td.success,
  2333. .table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
  2334. .table > tbody > tr > td.success,
  2335. .table > tbody > tr > th.success,
  2336. .table > tbody > tr.success > td,
  2337. .table > tbody > tr.success > th,
  2338. .table > tfoot > tr > td.success,
  2339. .table > tfoot > tr > th.success,
  2340. .table > tfoot > tr.success > td,
  2341. .table > tfoot > tr.success > th {
  2342. background-color: #dff0d8;
  2343. }
  2344. .table-hover > tbody > tr > td.success:hover,
  2345. .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  2346. background-color: #d0e9c6;
  2347. }
  2348. .table > thead > tr > td.info,
  2349. .table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
  2350. .table > tbody > tr > td.info,
  2351. .table > tbody > tr > th.info,
  2352. .table > tbody > tr.info > td,
  2353. .table > tbody > tr.info > th,
  2354. .table > tfoot > tr > td.info,
  2355. .table > tfoot > tr > th.info,
  2356. .table > tfoot > tr.info > td,
  2357. .table > tfoot > tr.info > th {
  2358. background-color: #d9edf7;
  2359. }
  2360. .table-hover > tbody > tr > td.info:hover,
  2361. .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  2362. background-color: #c4e3f3;
  2363. }
  2364. .table > thead > tr > td.warning,
  2365. .table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
  2366. .table > tbody > tr > td.warning,
  2367. .table > tbody > tr > th.warning,
  2368. .table > tbody > tr.warning > td,
  2369. .table > tbody > tr.warning > th,
  2370. .table > tfoot > tr > td.warning,
  2371. .table > tfoot > tr > th.warning,
  2372. .table > tfoot > tr.warning > td,
  2373. .table > tfoot > tr.warning > th {
  2374. background-color: #fcf8e3;
  2375. }
  2376. .table-hover > tbody > tr > td.warning:hover,
  2377. .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  2378. background-color: #faf2cc;
  2379. }
  2380. .table > thead > tr > td.danger,
  2381. .table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
  2382. .table > tbody > tr > td.danger,
  2383. .table > tbody > tr > th.danger,
  2384. .table > tbody > tr.danger > td,
  2385. .table > tbody > tr.danger > th,
  2386. .table > tfoot > tr > td.danger,
  2387. .table > tfoot > tr > th.danger,
  2388. .table > tfoot > tr.danger > td,
  2389. .table > tfoot > tr.danger > th {
  2390. background-color: #f2dede;
  2391. }
  2392. .table-hover > tbody > tr > td.danger:hover,
  2393. .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  2394. background-color: #ebcccc;
  2395. }
  2396. .table-responsive {
  2397. overflow-x: auto;
  2398. min-height: 0.01%;
  2399. }
  2400. @media screen and (max-width: 767px) {
  2401. .table-responsive {
  2402. width: 100%;
  2403. margin-bottom: 15px;
  2404. overflow-y: hidden;
  2405. -ms-overflow-style: -ms-autohiding-scrollbar;
  2406. border: 1px solid #ddd;
  2407. }
  2408. .table-responsive > .table {
  2409. margin-bottom: 0;
  2410. }
  2411. .table-responsive > .table > thead > tr > th,
  2412. .table-responsive > .table > thead > tr > td,
  2413. .table-responsive > .table > tbody > tr > th,
  2414. .table-responsive > .table > tbody > tr > td,
  2415. .table-responsive > .table > tfoot > tr > th,
  2416. .table-responsive > .table > tfoot > tr > td {
  2417. white-space: nowrap;
  2418. }
  2419. .table-responsive > .table-bordered {
  2420. border: 0;
  2421. }
  2422. .table-responsive > .table-bordered > thead > tr > th:first-child,
  2423. .table-responsive > .table-bordered > thead > tr > td:first-child,
  2424. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  2425. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  2426. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  2427. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  2428. border-left: 0;
  2429. }
  2430. .table-responsive > .table-bordered > thead > tr > th:last-child,
  2431. .table-responsive > .table-bordered > thead > tr > td:last-child,
  2432. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  2433. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  2434. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  2435. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  2436. border-right: 0;
  2437. }
  2438. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  2439. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  2440. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  2441. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  2442. border-bottom: 0;
  2443. }
  2444. }
  2445. fieldset {
  2446. padding: 0;
  2447. margin: 0;
  2448. border: 0;
  2449. min-width: 0;
  2450. }
  2451. legend {
  2452. display: block;
  2453. width: 100%;
  2454. padding: 0;
  2455. margin-bottom: 20px;
  2456. font-size: 21px;
  2457. line-height: inherit;
  2458. color: #333333;
  2459. border: 0;
  2460. border-bottom: 1px solid #e5e5e5;
  2461. }
  2462. label {
  2463. display: inline-block;
  2464. max-width: 100%;
  2465. margin-bottom: 5px;
  2466. font-weight: bold;
  2467. }
  2468. input[type="search"] {
  2469. -webkit-box-sizing: border-box;
  2470. -moz-box-sizing: border-box;
  2471. box-sizing: border-box;
  2472. }
  2473. input[type="radio"],
  2474. input[type="checkbox"] {
  2475. margin: 4px 0 0;
  2476. margin-top: 1px \9;
  2477. line-height: normal;
  2478. }
  2479. input[type="file"] {
  2480. display: block;
  2481. }
  2482. input[type="range"] {
  2483. display: block;
  2484. width: 100%;
  2485. }
  2486. select[multiple],
  2487. select[size] {
  2488. height: auto;
  2489. }
  2490. input[type="file"]:focus,
  2491. input[type="radio"]:focus,
  2492. input[type="checkbox"]:focus {
  2493. outline: thin dotted;
  2494. outline: 5px auto -webkit-focus-ring-color;
  2495. outline-offset: -2px;
  2496. }
  2497. output {
  2498. display: block;
  2499. padding-top: 7px;
  2500. font-size: 14px;
  2501. line-height: 1.42857143;
  2502. color: #555555;
  2503. }
  2504. .form-control {
  2505. display: block;
  2506. width: 100%;
  2507. height: 34px;
  2508. padding: 6px 12px;
  2509. font-size: 14px;
  2510. line-height: 1.42857143;
  2511. color: #555555;
  2512. background-color: #fff;
  2513. background-image: none;
  2514. border: 1px solid #ccc;
  2515. border-radius: 4px;
  2516. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2517. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2518. -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  2519. -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  2520. transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  2521. }
  2522. .form-control:focus {
  2523. border-color: #66afe9;
  2524. outline: 0;
  2525. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  2526. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  2527. }
  2528. .form-control::-moz-placeholder {
  2529. color: #999;
  2530. opacity: 1;
  2531. }
  2532. .form-control:-ms-input-placeholder {
  2533. color: #999;
  2534. }
  2535. .form-control::-webkit-input-placeholder {
  2536. color: #999;
  2537. }
  2538. .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  2539. background-color: #eeeeee;
  2540. opacity: 1;
  2541. }
  2542. .form-control[disabled], fieldset[disabled] .form-control {
  2543. cursor: not-allowed;
  2544. }
  2545. textarea.form-control {
  2546. height: auto;
  2547. }
  2548. input[type="search"] {
  2549. -webkit-appearance: none;
  2550. }
  2551. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  2552. input[type="date"].form-control,
  2553. input[type="time"].form-control,
  2554. input[type="datetime-local"].form-control,
  2555. input[type="month"].form-control {
  2556. line-height: 34px;
  2557. }
  2558. input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control,
  2559. .input-group-sm > input[type="date"].input-group-addon,
  2560. .input-group-sm > .input-group-btn > input[type="date"].btn, .input-group-sm input[type="date"],
  2561. input[type="time"].input-sm,
  2562. .input-group-sm > input[type="time"].form-control,
  2563. .input-group-sm > input[type="time"].input-group-addon,
  2564. .input-group-sm > .input-group-btn > input[type="time"].btn, .input-group-sm
  2565. input[type="time"],
  2566. input[type="datetime-local"].input-sm,
  2567. .input-group-sm > input[type="datetime-local"].form-control,
  2568. .input-group-sm > input[type="datetime-local"].input-group-addon,
  2569. .input-group-sm > .input-group-btn > input[type="datetime-local"].btn, .input-group-sm
  2570. input[type="datetime-local"],
  2571. input[type="month"].input-sm,
  2572. .input-group-sm > input[type="month"].form-control,
  2573. .input-group-sm > input[type="month"].input-group-addon,
  2574. .input-group-sm > .input-group-btn > input[type="month"].btn, .input-group-sm
  2575. input[type="month"] {
  2576. line-height: 30px;
  2577. }
  2578. input[type="date"].input-lg, .input-group-lg > input[type="date"].form-control,
  2579. .input-group-lg > input[type="date"].input-group-addon,
  2580. .input-group-lg > .input-group-btn > input[type="date"].btn, .input-group-lg input[type="date"],
  2581. input[type="time"].input-lg,
  2582. .input-group-lg > input[type="time"].form-control,
  2583. .input-group-lg > input[type="time"].input-group-addon,
  2584. .input-group-lg > .input-group-btn > input[type="time"].btn, .input-group-lg
  2585. input[type="time"],
  2586. input[type="datetime-local"].input-lg,
  2587. .input-group-lg > input[type="datetime-local"].form-control,
  2588. .input-group-lg > input[type="datetime-local"].input-group-addon,
  2589. .input-group-lg > .input-group-btn > input[type="datetime-local"].btn, .input-group-lg
  2590. input[type="datetime-local"],
  2591. input[type="month"].input-lg,
  2592. .input-group-lg > input[type="month"].form-control,
  2593. .input-group-lg > input[type="month"].input-group-addon,
  2594. .input-group-lg > .input-group-btn > input[type="month"].btn, .input-group-lg
  2595. input[type="month"] {
  2596. line-height: 46px;
  2597. }
  2598. }
  2599. .form-group {
  2600. margin-bottom: 15px;
  2601. }
  2602. .radio,
  2603. .checkbox {
  2604. position: relative;
  2605. display: block;
  2606. margin-top: 10px;
  2607. margin-bottom: 10px;
  2608. }
  2609. .radio label,
  2610. .checkbox label {
  2611. min-height: 20px;
  2612. padding-left: 20px;
  2613. margin-bottom: 0;
  2614. font-weight: normal;
  2615. cursor: pointer;
  2616. }
  2617. .radio input[type="radio"],
  2618. .radio-inline input[type="radio"],
  2619. .checkbox input[type="checkbox"],
  2620. .checkbox-inline input[type="checkbox"] {
  2621. position: absolute;
  2622. margin-left: -20px;
  2623. margin-top: 4px \9;
  2624. }
  2625. .radio + .radio,
  2626. .checkbox + .checkbox {
  2627. margin-top: -5px;
  2628. }
  2629. .radio-inline,
  2630. .checkbox-inline {
  2631. position: relative;
  2632. display: inline-block;
  2633. padding-left: 20px;
  2634. margin-bottom: 0;
  2635. vertical-align: middle;
  2636. font-weight: normal;
  2637. cursor: pointer;
  2638. }
  2639. .radio-inline + .radio-inline,
  2640. .checkbox-inline + .checkbox-inline {
  2641. margin-top: 0;
  2642. margin-left: 10px;
  2643. }
  2644. input[type="radio"][disabled], input[type="radio"].disabled, fieldset[disabled] input[type="radio"],
  2645. input[type="checkbox"][disabled],
  2646. input[type="checkbox"].disabled, fieldset[disabled]
  2647. input[type="checkbox"] {
  2648. cursor: not-allowed;
  2649. }
  2650. .radio-inline.disabled, fieldset[disabled] .radio-inline,
  2651. .checkbox-inline.disabled, fieldset[disabled]
  2652. .checkbox-inline {
  2653. cursor: not-allowed;
  2654. }
  2655. .radio.disabled label, fieldset[disabled] .radio label,
  2656. .checkbox.disabled label, fieldset[disabled]
  2657. .checkbox label {
  2658. cursor: not-allowed;
  2659. }
  2660. .form-control-static {
  2661. padding-top: 7px;
  2662. padding-bottom: 7px;
  2663. margin-bottom: 0;
  2664. min-height: 34px;
  2665. }
  2666. .form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
  2667. .input-group-lg > .form-control-static.input-group-addon,
  2668. .input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
  2669. .input-group-sm > .form-control-static.input-group-addon,
  2670. .input-group-sm > .input-group-btn > .form-control-static.btn {
  2671. padding-left: 0;
  2672. padding-right: 0;
  2673. }
  2674. .input-sm, .input-group-sm > .form-control,
  2675. .input-group-sm > .input-group-addon,
  2676. .input-group-sm > .input-group-btn > .btn {
  2677. height: 30px;
  2678. padding: 5px 10px;
  2679. font-size: 12px;
  2680. line-height: 1.5;
  2681. border-radius: 3px;
  2682. }
  2683. select.input-sm, .input-group-sm > select.form-control,
  2684. .input-group-sm > select.input-group-addon,
  2685. .input-group-sm > .input-group-btn > select.btn {
  2686. height: 30px;
  2687. line-height: 30px;
  2688. }
  2689. textarea.input-sm, .input-group-sm > textarea.form-control,
  2690. .input-group-sm > textarea.input-group-addon,
  2691. .input-group-sm > .input-group-btn > textarea.btn,
  2692. select[multiple].input-sm,
  2693. .input-group-sm > select[multiple].form-control,
  2694. .input-group-sm > select[multiple].input-group-addon,
  2695. .input-group-sm > .input-group-btn > select[multiple].btn {
  2696. height: auto;
  2697. }
  2698. .form-group-sm .form-control {
  2699. height: 30px;
  2700. padding: 5px 10px;
  2701. font-size: 12px;
  2702. line-height: 1.5;
  2703. border-radius: 3px;
  2704. }
  2705. .form-group-sm select.form-control {
  2706. height: 30px;
  2707. line-height: 30px;
  2708. }
  2709. .form-group-sm textarea.form-control,
  2710. .form-group-sm select[multiple].form-control {
  2711. height: auto;
  2712. }
  2713. .form-group-sm .form-control-static {
  2714. height: 30px;
  2715. min-height: 32px;
  2716. padding: 6px 10px;
  2717. font-size: 12px;
  2718. line-height: 1.5;
  2719. }
  2720. .input-lg, .input-group-lg > .form-control,
  2721. .input-group-lg > .input-group-addon,
  2722. .input-group-lg > .input-group-btn > .btn {
  2723. height: 46px;
  2724. padding: 10px 16px;
  2725. font-size: 18px;
  2726. line-height: 1.3333333;
  2727. border-radius: 6px;
  2728. }
  2729. select.input-lg, .input-group-lg > select.form-control,
  2730. .input-group-lg > select.input-group-addon,
  2731. .input-group-lg > .input-group-btn > select.btn {
  2732. height: 46px;
  2733. line-height: 46px;
  2734. }
  2735. textarea.input-lg, .input-group-lg > textarea.form-control,
  2736. .input-group-lg > textarea.input-group-addon,
  2737. .input-group-lg > .input-group-btn > textarea.btn,
  2738. select[multiple].input-lg,
  2739. .input-group-lg > select[multiple].form-control,
  2740. .input-group-lg > select[multiple].input-group-addon,
  2741. .input-group-lg > .input-group-btn > select[multiple].btn {
  2742. height: auto;
  2743. }
  2744. .form-group-lg .form-control {
  2745. height: 46px;
  2746. padding: 10px 16px;
  2747. font-size: 18px;
  2748. line-height: 1.3333333;
  2749. border-radius: 6px;
  2750. }
  2751. .form-group-lg select.form-control {
  2752. height: 46px;
  2753. line-height: 46px;
  2754. }
  2755. .form-group-lg textarea.form-control,
  2756. .form-group-lg select[multiple].form-control {
  2757. height: auto;
  2758. }
  2759. .form-group-lg .form-control-static {
  2760. height: 46px;
  2761. min-height: 38px;
  2762. padding: 11px 16px;
  2763. font-size: 18px;
  2764. line-height: 1.3333333;
  2765. }
  2766. .has-feedback {
  2767. position: relative;
  2768. }
  2769. .has-feedback .form-control {
  2770. padding-right: 42.5px;
  2771. }
  2772. .form-control-feedback {
  2773. position: absolute;
  2774. top: 0;
  2775. right: 0;
  2776. z-index: 2;
  2777. display: block;
  2778. width: 34px;
  2779. height: 34px;
  2780. line-height: 34px;
  2781. text-align: center;
  2782. pointer-events: none;
  2783. }
  2784. .input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
  2785. .input-group-lg > .input-group-addon + .form-control-feedback,
  2786. .input-group-lg > .input-group-btn > .btn + .form-control-feedback,
  2787. .input-group-lg + .form-control-feedback,
  2788. .form-group-lg .form-control + .form-control-feedback {
  2789. width: 46px;
  2790. height: 46px;
  2791. line-height: 46px;
  2792. }
  2793. .input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
  2794. .input-group-sm > .input-group-addon + .form-control-feedback,
  2795. .input-group-sm > .input-group-btn > .btn + .form-control-feedback,
  2796. .input-group-sm + .form-control-feedback,
  2797. .form-group-sm .form-control + .form-control-feedback {
  2798. width: 30px;
  2799. height: 30px;
  2800. line-height: 30px;
  2801. }
  2802. .has-success .help-block,
  2803. .has-success .control-label,
  2804. .has-success .radio,
  2805. .has-success .checkbox,
  2806. .has-success .radio-inline,
  2807. .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  2808. color: #3c763d;
  2809. }
  2810. .has-success .form-control {
  2811. border-color: #3c763d;
  2812. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2813. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2814. }
  2815. .has-success .form-control:focus {
  2816. border-color: #2b542c;
  2817. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  2818. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  2819. }
  2820. .has-success .input-group-addon {
  2821. color: #3c763d;
  2822. border-color: #3c763d;
  2823. background-color: #dff0d8;
  2824. }
  2825. .has-success .form-control-feedback {
  2826. color: #3c763d;
  2827. }
  2828. .has-warning .help-block,
  2829. .has-warning .control-label,
  2830. .has-warning .radio,
  2831. .has-warning .checkbox,
  2832. .has-warning .radio-inline,
  2833. .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  2834. color: #8a6d3b;
  2835. }
  2836. .has-warning .form-control {
  2837. border-color: #8a6d3b;
  2838. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2839. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2840. }
  2841. .has-warning .form-control:focus {
  2842. border-color: #66512c;
  2843. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  2844. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  2845. }
  2846. .has-warning .input-group-addon {
  2847. color: #8a6d3b;
  2848. border-color: #8a6d3b;
  2849. background-color: #fcf8e3;
  2850. }
  2851. .has-warning .form-control-feedback {
  2852. color: #8a6d3b;
  2853. }
  2854. .has-error .help-block,
  2855. .has-error .control-label,
  2856. .has-error .radio,
  2857. .has-error .checkbox,
  2858. .has-error .radio-inline,
  2859. .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  2860. color: #a94442;
  2861. }
  2862. .has-error .form-control {
  2863. border-color: #a94442;
  2864. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2865. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2866. }
  2867. .has-error .form-control:focus {
  2868. border-color: #843534;
  2869. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  2870. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  2871. }
  2872. .has-error .input-group-addon {
  2873. color: #a94442;
  2874. border-color: #a94442;
  2875. background-color: #f2dede;
  2876. }
  2877. .has-error .form-control-feedback {
  2878. color: #a94442;
  2879. }
  2880. .has-feedback label ~ .form-control-feedback {
  2881. top: 25px;
  2882. }
  2883. .has-feedback label.sr-only ~ .form-control-feedback {
  2884. top: 0;
  2885. }
  2886. .help-block {
  2887. display: block;
  2888. margin-top: 5px;
  2889. margin-bottom: 10px;
  2890. color: white;
  2891. }
  2892. @media (min-width: 768px) {
  2893. .form-inline .form-group {
  2894. display: inline-block;
  2895. margin-bottom: 0;
  2896. vertical-align: middle;
  2897. }
  2898. .form-inline .form-control {
  2899. display: inline-block;
  2900. width: auto;
  2901. vertical-align: middle;
  2902. }
  2903. .form-inline .form-control-static {
  2904. display: inline-block;
  2905. }
  2906. .form-inline .input-group {
  2907. display: inline-table;
  2908. vertical-align: middle;
  2909. }
  2910. .form-inline .input-group .input-group-addon,
  2911. .form-inline .input-group .input-group-btn,
  2912. .form-inline .input-group .form-control {
  2913. width: auto;
  2914. }
  2915. .form-inline .input-group > .form-control {
  2916. width: 100%;
  2917. }
  2918. .form-inline .control-label {
  2919. margin-bottom: 0;
  2920. vertical-align: middle;
  2921. }
  2922. .form-inline .radio,
  2923. .form-inline .checkbox {
  2924. display: inline-block;
  2925. margin-top: 0;
  2926. margin-bottom: 0;
  2927. vertical-align: middle;
  2928. }
  2929. .form-inline .radio label,
  2930. .form-inline .checkbox label {
  2931. padding-left: 0;
  2932. }
  2933. .form-inline .radio input[type="radio"],
  2934. .form-inline .checkbox input[type="checkbox"] {
  2935. position: relative;
  2936. margin-left: 0;
  2937. }
  2938. .form-inline .has-feedback .form-control-feedback {
  2939. top: 0;
  2940. }
  2941. }
  2942. .form-horizontal .radio,
  2943. .form-horizontal .checkbox,
  2944. .form-horizontal .radio-inline,
  2945. .form-horizontal .checkbox-inline {
  2946. margin-top: 0;
  2947. margin-bottom: 0;
  2948. padding-top: 7px;
  2949. }
  2950. .form-horizontal .radio,
  2951. .form-horizontal .checkbox {
  2952. min-height: 27px;
  2953. }
  2954. .form-horizontal .form-group {
  2955. margin-left: -15px;
  2956. margin-right: -15px;
  2957. }
  2958. .form-horizontal .form-group:before, .form-horizontal .form-group:after {
  2959. content: " ";
  2960. display: table;
  2961. }
  2962. .form-horizontal .form-group:after {
  2963. clear: both;
  2964. }
  2965. @media (min-width: 768px) {
  2966. .form-horizontal .control-label {
  2967. text-align: right;
  2968. margin-bottom: 0;
  2969. padding-top: 7px;
  2970. }
  2971. }
  2972. .form-horizontal .has-feedback .form-control-feedback {
  2973. right: 15px;
  2974. }
  2975. @media (min-width: 768px) {
  2976. .form-horizontal .form-group-lg .control-label {
  2977. padding-top: 14.333333px;
  2978. font-size: 18px;
  2979. }
  2980. }
  2981. @media (min-width: 768px) {
  2982. .form-horizontal .form-group-sm .control-label {
  2983. padding-top: 6px;
  2984. font-size: 12px;
  2985. }
  2986. }
  2987. .btn {
  2988. display: inline-block;
  2989. margin-bottom: 0;
  2990. font-weight: normal;
  2991. text-align: center;
  2992. vertical-align: middle;
  2993. touch-action: manipulation;
  2994. cursor: pointer;
  2995. background-image: none;
  2996. border: 1px solid transparent;
  2997. white-space: nowrap;
  2998. padding: 6px 12px;
  2999. font-size: 14px;
  3000. line-height: 1.42857143;
  3001. border-radius: 4px;
  3002. -webkit-user-select: none;
  3003. -moz-user-select: none;
  3004. -ms-user-select: none;
  3005. user-select: none;
  3006. }
  3007. .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
  3008. outline: thin dotted;
  3009. outline: 5px auto -webkit-focus-ring-color;
  3010. outline-offset: -2px;
  3011. }
  3012. .btn:hover, .btn:focus, .btn.focus {
  3013. color: #333;
  3014. text-decoration: none;
  3015. }
  3016. .btn:active, .btn.active {
  3017. outline: 0;
  3018. background-image: none;
  3019. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3020. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3021. }
  3022. .btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  3023. cursor: not-allowed;
  3024. opacity: 0.65;
  3025. filter: alpha(opacity=65);
  3026. -webkit-box-shadow: none;
  3027. box-shadow: none;
  3028. }
  3029. a.btn.disabled, fieldset[disabled] a.btn {
  3030. pointer-events: none;
  3031. }
  3032. .btn-default {
  3033. color: #333;
  3034. background-color: #fff;
  3035. border-color: #ccc;
  3036. }
  3037. .btn-default:focus, .btn-default.focus {
  3038. color: #333;
  3039. background-color: #e6e6e6;
  3040. border-color: #8c8c8c;
  3041. }
  3042. .btn-default:hover {
  3043. color: #333;
  3044. background-color: #e6e6e6;
  3045. border-color: #adadad;
  3046. }
  3047. .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  3048. color: #333;
  3049. background-color: #e6e6e6;
  3050. border-color: #adadad;
  3051. }
  3052. .btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  3053. color: #333;
  3054. background-color: #d4d4d4;
  3055. border-color: #8c8c8c;
  3056. }
  3057. .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  3058. background-image: none;
  3059. }
  3060. .btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
  3061. background-color: #fff;
  3062. border-color: #ccc;
  3063. }
  3064. .btn-default .badge {
  3065. color: #fff;
  3066. background-color: #333;
  3067. }
  3068. .btn-primary {
  3069. color: #fff;
  3070. background-color: #337ab7;
  3071. border-color: #2e6da4;
  3072. }
  3073. .btn-primary:focus, .btn-primary.focus {
  3074. color: #fff;
  3075. background-color: #286090;
  3076. border-color: #122b40;
  3077. }
  3078. .btn-primary:hover {
  3079. color: #fff;
  3080. background-color: #286090;
  3081. border-color: #204d74;
  3082. }
  3083. .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  3084. color: #fff;
  3085. background-color: #286090;
  3086. border-color: #204d74;
  3087. }
  3088. .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
  3089. color: #fff;
  3090. background-color: #204d74;
  3091. border-color: #122b40;
  3092. }
  3093. .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  3094. background-image: none;
  3095. }
  3096. .btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
  3097. background-color: #337ab7;
  3098. border-color: #2e6da4;
  3099. }
  3100. .btn-primary .badge {
  3101. color: #337ab7;
  3102. background-color: #fff;
  3103. }
  3104. .btn-success {
  3105. color: #fff;
  3106. background-color: #5cb85c;
  3107. border-color: #4cae4c;
  3108. }
  3109. .btn-success:focus, .btn-success.focus {
  3110. color: #fff;
  3111. background-color: #449d44;
  3112. border-color: #255625;
  3113. }
  3114. .btn-success:hover {
  3115. color: #fff;
  3116. background-color: #449d44;
  3117. border-color: #398439;
  3118. }
  3119. .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  3120. color: #fff;
  3121. background-color: #449d44;
  3122. border-color: #398439;
  3123. }
  3124. .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
  3125. color: #fff;
  3126. background-color: #398439;
  3127. border-color: #255625;
  3128. }
  3129. .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  3130. background-image: none;
  3131. }
  3132. .btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
  3133. background-color: #5cb85c;
  3134. border-color: #4cae4c;
  3135. }
  3136. .btn-success .badge {
  3137. color: #5cb85c;
  3138. background-color: #fff;
  3139. }
  3140. .btn-info {
  3141. color: #fff;
  3142. background-color: #5bc0de;
  3143. border-color: #46b8da;
  3144. }
  3145. .btn-info:focus, .btn-info.focus {
  3146. color: #fff;
  3147. background-color: #31b0d5;
  3148. border-color: #1b6d85;
  3149. }
  3150. .btn-info:hover {
  3151. color: #fff;
  3152. background-color: #31b0d5;
  3153. border-color: #269abc;
  3154. }
  3155. .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  3156. color: #fff;
  3157. background-color: #31b0d5;
  3158. border-color: #269abc;
  3159. }
  3160. .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
  3161. color: #fff;
  3162. background-color: #269abc;
  3163. border-color: #1b6d85;
  3164. }
  3165. .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  3166. background-image: none;
  3167. }
  3168. .btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
  3169. background-color: #5bc0de;
  3170. border-color: #46b8da;
  3171. }
  3172. .btn-info .badge {
  3173. color: #5bc0de;
  3174. background-color: #fff;
  3175. }
  3176. .btn-warning {
  3177. color: #fff;
  3178. background-color: #f0ad4e;
  3179. border-color: #eea236;
  3180. }
  3181. .btn-warning:focus, .btn-warning.focus {
  3182. color: #fff;
  3183. background-color: #ec971f;
  3184. border-color: #985f0d;
  3185. }
  3186. .btn-warning:hover {
  3187. color: #fff;
  3188. background-color: #ec971f;
  3189. border-color: #d58512;
  3190. }
  3191. .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  3192. color: #fff;
  3193. background-color: #ec971f;
  3194. border-color: #d58512;
  3195. }
  3196. .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
  3197. color: #fff;
  3198. background-color: #d58512;
  3199. border-color: #985f0d;
  3200. }
  3201. .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  3202. background-image: none;
  3203. }
  3204. .btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
  3205. background-color: #f0ad4e;
  3206. border-color: #eea236;
  3207. }
  3208. .btn-warning .badge {
  3209. color: #f0ad4e;
  3210. background-color: #fff;
  3211. }
  3212. .btn-danger {
  3213. color: #fff;
  3214. background-color: #d9534f;
  3215. border-color: #d43f3a;
  3216. }
  3217. .btn-danger:focus, .btn-danger.focus {
  3218. color: #fff;
  3219. background-color: #c9302c;
  3220. border-color: #761c19;
  3221. }
  3222. .btn-danger:hover {
  3223. color: #fff;
  3224. background-color: #c9302c;
  3225. border-color: #ac2925;
  3226. }
  3227. .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  3228. color: #fff;
  3229. background-color: #c9302c;
  3230. border-color: #ac2925;
  3231. }
  3232. .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
  3233. color: #fff;
  3234. background-color: #ac2925;
  3235. border-color: #761c19;
  3236. }
  3237. .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  3238. background-image: none;
  3239. }
  3240. .btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
  3241. background-color: #d9534f;
  3242. border-color: #d43f3a;
  3243. }
  3244. .btn-danger .badge {
  3245. color: #d9534f;
  3246. background-color: #fff;
  3247. }
  3248. .btn-link {
  3249. color: #08c;
  3250. font-weight: normal;
  3251. border-radius: 0;
  3252. }
  3253. .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  3254. background-color: transparent;
  3255. -webkit-box-shadow: none;
  3256. box-shadow: none;
  3257. }
  3258. .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  3259. border-color: transparent;
  3260. }
  3261. .btn-link:hover, .btn-link:focus {
  3262. color: #1ab3ff;
  3263. text-decoration: underline;
  3264. background-color: transparent;
  3265. }
  3266. .btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  3267. color: #777777;
  3268. text-decoration: none;
  3269. }
  3270. .btn-lg, .btn-group-lg > .btn {
  3271. padding: 10px 16px;
  3272. font-size: 18px;
  3273. line-height: 1.3333333;
  3274. border-radius: 6px;
  3275. }
  3276. .btn-sm, .btn-group-sm > .btn {
  3277. padding: 5px 10px;
  3278. font-size: 12px;
  3279. line-height: 1.5;
  3280. border-radius: 3px;
  3281. }
  3282. .btn-xs, .btn-group-xs > .btn {
  3283. padding: 1px 5px;
  3284. font-size: 12px;
  3285. line-height: 1.5;
  3286. border-radius: 3px;
  3287. }
  3288. .btn-block {
  3289. display: block;
  3290. width: 100%;
  3291. }
  3292. .btn-block + .btn-block {
  3293. margin-top: 5px;
  3294. }
  3295. input[type="submit"].btn-block,
  3296. input[type="reset"].btn-block,
  3297. input[type="button"].btn-block {
  3298. width: 100%;
  3299. }
  3300. .fade {
  3301. opacity: 0;
  3302. -webkit-transition: opacity 0.15s linear;
  3303. -o-transition: opacity 0.15s linear;
  3304. transition: opacity 0.15s linear;
  3305. }
  3306. .fade.in {
  3307. opacity: 1;
  3308. }
  3309. .collapse {
  3310. display: none;
  3311. }
  3312. .collapse.in {
  3313. display: block;
  3314. }
  3315. tr.collapse.in {
  3316. display: table-row;
  3317. }
  3318. tbody.collapse.in {
  3319. display: table-row-group;
  3320. }
  3321. .collapsing {
  3322. position: relative;
  3323. height: 0;
  3324. overflow: hidden;
  3325. -webkit-transition-property: height, visibility;
  3326. transition-property: height, visibility;
  3327. -webkit-transition-duration: 0.35s;
  3328. transition-duration: 0.35s;
  3329. -webkit-transition-timing-function: ease;
  3330. transition-timing-function: ease;
  3331. }
  3332. .caret {
  3333. display: inline-block;
  3334. width: 0;
  3335. height: 0;
  3336. margin-left: 2px;
  3337. vertical-align: middle;
  3338. border-top: 4px dashed;
  3339. border-top: 4px solid \9;
  3340. border-right: 4px solid transparent;
  3341. border-left: 4px solid transparent;
  3342. }
  3343. .dropup,
  3344. .dropdown {
  3345. position: relative;
  3346. }
  3347. .dropdown-toggle:focus {
  3348. outline: 0;
  3349. }
  3350. .dropdown-menu {
  3351. position: absolute;
  3352. top: 100%;
  3353. left: 0;
  3354. z-index: 1000;
  3355. display: none;
  3356. float: left;
  3357. min-width: 160px;
  3358. padding: 5px 0;
  3359. margin: 2px 0 0;
  3360. list-style: none;
  3361. font-size: 14px;
  3362. text-align: left;
  3363. background-color: #fff;
  3364. border: 1px solid #ccc;
  3365. border: 1px solid rgba(0, 0, 0, 0.15);
  3366. border-radius: 4px;
  3367. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3368. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3369. background-clip: padding-box;
  3370. }
  3371. .dropdown-menu.pull-right {
  3372. right: 0;
  3373. left: auto;
  3374. }
  3375. .dropdown-menu .divider {
  3376. height: 1px;
  3377. margin: 9px 0;
  3378. overflow: hidden;
  3379. background-color: #e5e5e5;
  3380. }
  3381. .dropdown-menu > li > a {
  3382. display: block;
  3383. padding: 3px 20px;
  3384. clear: both;
  3385. font-weight: normal;
  3386. line-height: 1.42857143;
  3387. color: #333333;
  3388. white-space: nowrap;
  3389. }
  3390. .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  3391. text-decoration: none;
  3392. color: #262626;
  3393. background-color: #f5f5f5;
  3394. }
  3395. .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  3396. color: #fff;
  3397. text-decoration: none;
  3398. outline: 0;
  3399. background-color: #337ab7;
  3400. }
  3401. .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  3402. color: #777777;
  3403. }
  3404. .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  3405. text-decoration: none;
  3406. background-color: transparent;
  3407. background-image: none;
  3408. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  3409. cursor: not-allowed;
  3410. }
  3411. .open > .dropdown-menu {
  3412. display: block;
  3413. }
  3414. .open > a {
  3415. outline: 0;
  3416. }
  3417. .dropdown-menu-right {
  3418. left: auto;
  3419. right: 0;
  3420. }
  3421. .dropdown-menu-left {
  3422. left: 0;
  3423. right: auto;
  3424. }
  3425. .dropdown-header {
  3426. display: block;
  3427. padding: 3px 20px;
  3428. font-size: 12px;
  3429. line-height: 1.42857143;
  3430. color: #777777;
  3431. white-space: nowrap;
  3432. }
  3433. .dropdown-backdrop {
  3434. position: fixed;
  3435. left: 0;
  3436. right: 0;
  3437. bottom: 0;
  3438. top: 0;
  3439. z-index: 990;
  3440. }
  3441. .pull-right > .dropdown-menu {
  3442. right: 0;
  3443. left: auto;
  3444. }
  3445. .dropup .caret,
  3446. .navbar-fixed-bottom .dropdown .caret {
  3447. border-top: 0;
  3448. border-bottom: 4px dashed;
  3449. border-bottom: 4px solid \9;
  3450. content: "";
  3451. }
  3452. .dropup .dropdown-menu,
  3453. .navbar-fixed-bottom .dropdown .dropdown-menu {
  3454. top: auto;
  3455. bottom: 100%;
  3456. margin-bottom: 2px;
  3457. }
  3458. @media (min-width: 768px) {
  3459. .navbar-right .dropdown-menu {
  3460. right: 0;
  3461. left: auto;
  3462. }
  3463. .navbar-right .dropdown-menu-left {
  3464. left: 0;
  3465. right: auto;
  3466. }
  3467. }
  3468. .btn-group,
  3469. .btn-group-vertical {
  3470. position: relative;
  3471. display: inline-block;
  3472. vertical-align: middle;
  3473. }
  3474. .btn-group > .btn,
  3475. .btn-group-vertical > .btn {
  3476. position: relative;
  3477. float: left;
  3478. }
  3479. .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
  3480. .btn-group-vertical > .btn:hover,
  3481. .btn-group-vertical > .btn:focus,
  3482. .btn-group-vertical > .btn:active,
  3483. .btn-group-vertical > .btn.active {
  3484. z-index: 2;
  3485. }
  3486. .btn-group .btn + .btn,
  3487. .btn-group .btn + .btn-group,
  3488. .btn-group .btn-group + .btn,
  3489. .btn-group .btn-group + .btn-group {
  3490. margin-left: -1px;
  3491. }
  3492. .btn-toolbar {
  3493. margin-left: -5px;
  3494. }
  3495. .btn-toolbar:before, .btn-toolbar:after {
  3496. content: " ";
  3497. display: table;
  3498. }
  3499. .btn-toolbar:after {
  3500. clear: both;
  3501. }
  3502. .btn-toolbar .btn,
  3503. .btn-toolbar .btn-group,
  3504. .btn-toolbar .input-group {
  3505. float: left;
  3506. }
  3507. .btn-toolbar > .btn,
  3508. .btn-toolbar > .btn-group,
  3509. .btn-toolbar > .input-group {
  3510. margin-left: 5px;
  3511. }
  3512. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  3513. border-radius: 0;
  3514. }
  3515. .btn-group > .btn:first-child {
  3516. margin-left: 0;
  3517. }
  3518. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  3519. border-bottom-right-radius: 0;
  3520. border-top-right-radius: 0;
  3521. }
  3522. .btn-group > .btn:last-child:not(:first-child),
  3523. .btn-group > .dropdown-toggle:not(:first-child) {
  3524. border-bottom-left-radius: 0;
  3525. border-top-left-radius: 0;
  3526. }
  3527. .btn-group > .btn-group {
  3528. float: left;
  3529. }
  3530. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  3531. border-radius: 0;
  3532. }
  3533. .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3534. .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3535. border-bottom-right-radius: 0;
  3536. border-top-right-radius: 0;
  3537. }
  3538. .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3539. border-bottom-left-radius: 0;
  3540. border-top-left-radius: 0;
  3541. }
  3542. .btn-group .dropdown-toggle:active,
  3543. .btn-group.open .dropdown-toggle {
  3544. outline: 0;
  3545. }
  3546. .btn-group > .btn + .dropdown-toggle {
  3547. padding-left: 8px;
  3548. padding-right: 8px;
  3549. }
  3550. .btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  3551. padding-left: 12px;
  3552. padding-right: 12px;
  3553. }
  3554. .btn-group.open .dropdown-toggle {
  3555. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3556. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3557. }
  3558. .btn-group.open .dropdown-toggle.btn-link {
  3559. -webkit-box-shadow: none;
  3560. box-shadow: none;
  3561. }
  3562. .btn .caret {
  3563. margin-left: 0;
  3564. }
  3565. .btn-lg .caret, .btn-group-lg > .btn .caret {
  3566. border-width: 5px 5px 0;
  3567. border-bottom-width: 0;
  3568. }
  3569. .dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  3570. border-width: 0 5px 5px;
  3571. }
  3572. .btn-group-vertical > .btn,
  3573. .btn-group-vertical > .btn-group,
  3574. .btn-group-vertical > .btn-group > .btn {
  3575. display: block;
  3576. float: none;
  3577. width: 100%;
  3578. max-width: 100%;
  3579. }
  3580. .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  3581. content: " ";
  3582. display: table;
  3583. }
  3584. .btn-group-vertical > .btn-group:after {
  3585. clear: both;
  3586. }
  3587. .btn-group-vertical > .btn-group > .btn {
  3588. float: none;
  3589. }
  3590. .btn-group-vertical > .btn + .btn,
  3591. .btn-group-vertical > .btn + .btn-group,
  3592. .btn-group-vertical > .btn-group + .btn,
  3593. .btn-group-vertical > .btn-group + .btn-group {
  3594. margin-top: -1px;
  3595. margin-left: 0;
  3596. }
  3597. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  3598. border-radius: 0;
  3599. }
  3600. .btn-group-vertical > .btn:first-child:not(:last-child) {
  3601. border-top-right-radius: 4px;
  3602. border-bottom-right-radius: 0;
  3603. border-bottom-left-radius: 0;
  3604. }
  3605. .btn-group-vertical > .btn:last-child:not(:first-child) {
  3606. border-bottom-left-radius: 4px;
  3607. border-top-right-radius: 0;
  3608. border-top-left-radius: 0;
  3609. }
  3610. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  3611. border-radius: 0;
  3612. }
  3613. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3614. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3615. border-bottom-right-radius: 0;
  3616. border-bottom-left-radius: 0;
  3617. }
  3618. .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3619. border-top-right-radius: 0;
  3620. border-top-left-radius: 0;
  3621. }
  3622. .btn-group-justified {
  3623. display: table;
  3624. width: 100%;
  3625. table-layout: fixed;
  3626. border-collapse: separate;
  3627. }
  3628. .btn-group-justified > .btn,
  3629. .btn-group-justified > .btn-group {
  3630. float: none;
  3631. display: table-cell;
  3632. width: 1%;
  3633. }
  3634. .btn-group-justified > .btn-group .btn {
  3635. width: 100%;
  3636. }
  3637. .btn-group-justified > .btn-group .dropdown-menu {
  3638. left: auto;
  3639. }
  3640. [data-toggle="buttons"] > .btn input[type="radio"],
  3641. [data-toggle="buttons"] > .btn input[type="checkbox"],
  3642. [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
  3643. [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  3644. position: absolute;
  3645. clip: rect(0, 0, 0, 0);
  3646. pointer-events: none;
  3647. }
  3648. .input-group {
  3649. position: relative;
  3650. display: table;
  3651. border-collapse: separate;
  3652. }
  3653. .input-group[class*="col-"] {
  3654. float: none;
  3655. padding-left: 0;
  3656. padding-right: 0;
  3657. }
  3658. .input-group .form-control {
  3659. position: relative;
  3660. z-index: 2;
  3661. float: left;
  3662. width: 100%;
  3663. margin-bottom: 0;
  3664. }
  3665. .input-group-addon,
  3666. .input-group-btn,
  3667. .input-group .form-control {
  3668. display: table-cell;
  3669. }
  3670. .input-group-addon:not(:first-child):not(:last-child),
  3671. .input-group-btn:not(:first-child):not(:last-child),
  3672. .input-group .form-control:not(:first-child):not(:last-child) {
  3673. border-radius: 0;
  3674. }
  3675. .input-group-addon,
  3676. .input-group-btn {
  3677. width: 1%;
  3678. white-space: nowrap;
  3679. vertical-align: middle;
  3680. }
  3681. .input-group-addon {
  3682. padding: 6px 12px;
  3683. font-size: 14px;
  3684. font-weight: normal;
  3685. line-height: 1;
  3686. color: #555555;
  3687. text-align: center;
  3688. background-color: #eeeeee;
  3689. border: 1px solid #ccc;
  3690. border-radius: 4px;
  3691. }
  3692. .input-group-addon.input-sm,
  3693. .input-group-sm > .input-group-addon,
  3694. .input-group-sm > .input-group-btn > .input-group-addon.btn {
  3695. padding: 5px 10px;
  3696. font-size: 12px;
  3697. border-radius: 3px;
  3698. }
  3699. .input-group-addon.input-lg,
  3700. .input-group-lg > .input-group-addon,
  3701. .input-group-lg > .input-group-btn > .input-group-addon.btn {
  3702. padding: 10px 16px;
  3703. font-size: 18px;
  3704. border-radius: 6px;
  3705. }
  3706. .input-group-addon input[type="radio"],
  3707. .input-group-addon input[type="checkbox"] {
  3708. margin-top: 0;
  3709. }
  3710. .input-group .form-control:first-child,
  3711. .input-group-addon:first-child,
  3712. .input-group-btn:first-child > .btn,
  3713. .input-group-btn:first-child > .btn-group > .btn,
  3714. .input-group-btn:first-child > .dropdown-toggle,
  3715. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3716. .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  3717. border-bottom-right-radius: 0;
  3718. border-top-right-radius: 0;
  3719. }
  3720. .input-group-addon:first-child {
  3721. border-right: 0;
  3722. }
  3723. .input-group .form-control:last-child,
  3724. .input-group-addon:last-child,
  3725. .input-group-btn:last-child > .btn,
  3726. .input-group-btn:last-child > .btn-group > .btn,
  3727. .input-group-btn:last-child > .dropdown-toggle,
  3728. .input-group-btn:first-child > .btn:not(:first-child),
  3729. .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  3730. border-bottom-left-radius: 0;
  3731. border-top-left-radius: 0;
  3732. }
  3733. .input-group-addon:last-child {
  3734. border-left: 0;
  3735. }
  3736. .input-group-btn {
  3737. position: relative;
  3738. font-size: 0;
  3739. white-space: nowrap;
  3740. }
  3741. .input-group-btn > .btn {
  3742. position: relative;
  3743. }
  3744. .input-group-btn > .btn + .btn {
  3745. margin-left: -1px;
  3746. }
  3747. .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  3748. z-index: 2;
  3749. }
  3750. .input-group-btn:first-child > .btn,
  3751. .input-group-btn:first-child > .btn-group {
  3752. margin-right: -1px;
  3753. }
  3754. .input-group-btn:last-child > .btn,
  3755. .input-group-btn:last-child > .btn-group {
  3756. z-index: 2;
  3757. margin-left: -1px;
  3758. }
  3759. .nav {
  3760. margin-bottom: 0;
  3761. padding-left: 0;
  3762. list-style: none;
  3763. }
  3764. .nav:before, .nav:after {
  3765. content: " ";
  3766. display: table;
  3767. }
  3768. .nav:after {
  3769. clear: both;
  3770. }
  3771. .nav > li {
  3772. position: relative;
  3773. display: block;
  3774. }
  3775. .nav > li > a {
  3776. position: relative;
  3777. display: block;
  3778. padding: 10px 15px;
  3779. }
  3780. .nav > li > a:hover, .nav > li > a:focus {
  3781. text-decoration: none;
  3782. background-color: #eeeeee;
  3783. }
  3784. .nav > li.disabled > a {
  3785. color: #777777;
  3786. }
  3787. .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  3788. color: #777777;
  3789. text-decoration: none;
  3790. background-color: transparent;
  3791. cursor: not-allowed;
  3792. }
  3793. .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  3794. background-color: #eeeeee;
  3795. border-color: #08c;
  3796. }
  3797. .nav .nav-divider {
  3798. height: 1px;
  3799. margin: 9px 0;
  3800. overflow: hidden;
  3801. background-color: #e5e5e5;
  3802. }
  3803. .nav > li > a > img {
  3804. max-width: none;
  3805. }
  3806. .nav-tabs {
  3807. border-bottom: 1px solid #ddd;
  3808. }
  3809. .nav-tabs > li {
  3810. float: left;
  3811. margin-bottom: -1px;
  3812. }
  3813. .nav-tabs > li > a {
  3814. margin-right: 2px;
  3815. line-height: 1.42857143;
  3816. border: 1px solid transparent;
  3817. border-radius: 4px 4px 0 0;
  3818. }
  3819. .nav-tabs > li > a:hover {
  3820. border-color: #eeeeee #eeeeee #ddd;
  3821. }
  3822. .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  3823. color: #555555;
  3824. background-color: #2f2f2f;
  3825. border: 1px solid #ddd;
  3826. border-bottom-color: transparent;
  3827. cursor: default;
  3828. }
  3829. .nav-pills > li {
  3830. float: left;
  3831. }
  3832. .nav-pills > li > a {
  3833. border-radius: 4px;
  3834. }
  3835. .nav-pills > li + li {
  3836. margin-left: 2px;
  3837. }
  3838. .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  3839. color: #fff;
  3840. background-color: #337ab7;
  3841. }
  3842. .nav-stacked > li {
  3843. float: none;
  3844. }
  3845. .nav-stacked > li + li {
  3846. margin-top: 2px;
  3847. margin-left: 0;
  3848. }
  3849. .nav-justified, .nav-tabs.nav-justified {
  3850. width: 100%;
  3851. }
  3852. .nav-justified > li, .nav-tabs.nav-justified > li {
  3853. float: none;
  3854. }
  3855. .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  3856. text-align: center;
  3857. margin-bottom: 5px;
  3858. }
  3859. .nav-justified > .dropdown .dropdown-menu {
  3860. top: auto;
  3861. left: auto;
  3862. }
  3863. @media (min-width: 768px) {
  3864. .nav-justified > li, .nav-tabs.nav-justified > li {
  3865. display: table-cell;
  3866. width: 1%;
  3867. }
  3868. .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  3869. margin-bottom: 0;
  3870. }
  3871. }
  3872. .nav-tabs-justified, .nav-tabs.nav-justified {
  3873. border-bottom: 0;
  3874. }
  3875. .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  3876. margin-right: 0;
  3877. border-radius: 4px;
  3878. }
  3879. .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  3880. .nav-tabs-justified > .active > a:hover,
  3881. .nav-tabs.nav-justified > .active > a:hover,
  3882. .nav-tabs-justified > .active > a:focus,
  3883. .nav-tabs.nav-justified > .active > a:focus {
  3884. border: 1px solid #ddd;
  3885. }
  3886. @media (min-width: 768px) {
  3887. .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  3888. border-bottom: 1px solid #ddd;
  3889. border-radius: 4px 4px 0 0;
  3890. }
  3891. .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  3892. .nav-tabs-justified > .active > a:hover,
  3893. .nav-tabs.nav-justified > .active > a:hover,
  3894. .nav-tabs-justified > .active > a:focus,
  3895. .nav-tabs.nav-justified > .active > a:focus {
  3896. border-bottom-color: #2f2f2f;
  3897. }
  3898. }
  3899. .tab-content > .tab-pane {
  3900. display: none;
  3901. }
  3902. .tab-content > .active {
  3903. display: block;
  3904. }
  3905. .nav-tabs .dropdown-menu {
  3906. margin-top: -1px;
  3907. border-top-right-radius: 0;
  3908. border-top-left-radius: 0;
  3909. }
  3910. .navbar {
  3911. position: relative;
  3912. min-height: 50px;
  3913. margin-bottom: 20px;
  3914. border: 1px solid transparent;
  3915. }
  3916. .navbar:before, .navbar:after {
  3917. content: " ";
  3918. display: table;
  3919. }
  3920. .navbar:after {
  3921. clear: both;
  3922. }
  3923. @media (min-width: 768px) {
  3924. .navbar {
  3925. border-radius: 4px;
  3926. }
  3927. }
  3928. .navbar-header:before, .navbar-header:after {
  3929. content: " ";
  3930. display: table;
  3931. }
  3932. .navbar-header:after {
  3933. clear: both;
  3934. }
  3935. @media (min-width: 768px) {
  3936. .navbar-header {
  3937. float: left;
  3938. }
  3939. }
  3940. .navbar-collapse {
  3941. overflow-x: visible;
  3942. padding-right: 15px;
  3943. padding-left: 15px;
  3944. border-top: 1px solid transparent;
  3945. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  3946. -webkit-overflow-scrolling: touch;
  3947. }
  3948. .navbar-collapse:before, .navbar-collapse:after {
  3949. content: " ";
  3950. display: table;
  3951. }
  3952. .navbar-collapse:after {
  3953. clear: both;
  3954. }
  3955. .navbar-collapse.in {
  3956. overflow-y: auto;
  3957. }
  3958. @media (min-width: 768px) {
  3959. .navbar-collapse {
  3960. width: auto;
  3961. border-top: 0;
  3962. box-shadow: none;
  3963. }
  3964. .navbar-collapse.collapse {
  3965. display: block !important;
  3966. height: auto !important;
  3967. padding-bottom: 0;
  3968. overflow: visible !important;
  3969. }
  3970. .navbar-collapse.in {
  3971. overflow-y: visible;
  3972. }
  3973. .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
  3974. padding-left: 0;
  3975. padding-right: 0;
  3976. }
  3977. }
  3978. .navbar-fixed-top .navbar-collapse,
  3979. .navbar-fixed-bottom .navbar-collapse {
  3980. max-height: 340px;
  3981. }
  3982. @media (max-device-width: 480px) and (orientation: landscape) {
  3983. .navbar-fixed-top .navbar-collapse,
  3984. .navbar-fixed-bottom .navbar-collapse {
  3985. max-height: 200px;
  3986. }
  3987. }
  3988. .container > .navbar-header,
  3989. .container > .navbar-collapse,
  3990. .container-fluid > .navbar-header,
  3991. .container-fluid > .navbar-collapse {
  3992. margin-right: -15px;
  3993. margin-left: -15px;
  3994. }
  3995. @media (min-width: 768px) {
  3996. .container > .navbar-header,
  3997. .container > .navbar-collapse,
  3998. .container-fluid > .navbar-header,
  3999. .container-fluid > .navbar-collapse {
  4000. margin-right: 0;
  4001. margin-left: 0;
  4002. }
  4003. }
  4004. .navbar-static-top {
  4005. z-index: 1000;
  4006. border-width: 0 0 1px;
  4007. }
  4008. @media (min-width: 768px) {
  4009. .navbar-static-top {
  4010. border-radius: 0;
  4011. }
  4012. }
  4013. .navbar-fixed-top,
  4014. .navbar-fixed-bottom {
  4015. position: fixed;
  4016. right: 0;
  4017. left: 0;
  4018. z-index: 1030;
  4019. }
  4020. @media (min-width: 768px) {
  4021. .navbar-fixed-top,
  4022. .navbar-fixed-bottom {
  4023. border-radius: 0;
  4024. }
  4025. }
  4026. .navbar-fixed-top {
  4027. top: 0;
  4028. border-width: 0 0 1px;
  4029. }
  4030. .navbar-fixed-bottom {
  4031. bottom: 0;
  4032. margin-bottom: 0;
  4033. border-width: 1px 0 0;
  4034. }
  4035. .navbar-brand {
  4036. float: left;
  4037. padding: 3px;
  4038. padding-left: 8px;
  4039. font-size: 18px;
  4040. line-height: 20px;
  4041. height: 50px;
  4042. }
  4043. .navbar-brand:hover, .navbar-brand:focus {
  4044. text-decoration: none;
  4045. }
  4046. .navbar-brand > img {
  4047. display: block;
  4048. }
  4049. @media (min-width: 768px) {
  4050. .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
  4051. margin-left: -15px;
  4052. }
  4053. }
  4054. .navbar-toggle {
  4055. position: relative;
  4056. float: right;
  4057. margin-right: 15px;
  4058. padding: 9px 10px;
  4059. margin-top: 8px;
  4060. margin-bottom: 8px;
  4061. background-color: transparent;
  4062. background-image: none;
  4063. border: 1px solid transparent;
  4064. border-radius: 4px;
  4065. }
  4066. .navbar-toggle:focus {
  4067. outline: 0;
  4068. }
  4069. .navbar-toggle .icon-bar {
  4070. display: block;
  4071. width: 22px;
  4072. height: 2px;
  4073. border-radius: 1px;
  4074. }
  4075. .navbar-toggle .icon-bar + .icon-bar {
  4076. margin-top: 4px;
  4077. }
  4078. @media (min-width: 768px) {
  4079. .navbar-toggle {
  4080. display: none;
  4081. }
  4082. }
  4083. .navbar-nav {
  4084. margin: 7.5px -15px;
  4085. }
  4086. .navbar-nav > li > a {
  4087. padding-top: 10px;
  4088. padding-bottom: 10px;
  4089. line-height: 20px;
  4090. }
  4091. @media (max-width: 767px) {
  4092. .navbar-nav .open .dropdown-menu {
  4093. position: static;
  4094. float: none;
  4095. width: auto;
  4096. margin-top: 0;
  4097. background-color: transparent;
  4098. border: 0;
  4099. box-shadow: none;
  4100. }
  4101. .navbar-nav .open .dropdown-menu > li > a,
  4102. .navbar-nav .open .dropdown-menu .dropdown-header {
  4103. padding: 5px 15px 5px 25px;
  4104. }
  4105. .navbar-nav .open .dropdown-menu > li > a {
  4106. line-height: 20px;
  4107. }
  4108. .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
  4109. background-image: none;
  4110. }
  4111. }
  4112. @media (min-width: 768px) {
  4113. .navbar-nav {
  4114. float: left;
  4115. margin: 0;
  4116. }
  4117. .navbar-nav > li {
  4118. float: left;
  4119. }
  4120. .navbar-nav > li > a {
  4121. padding-top: 15px;
  4122. padding-bottom: 15px;
  4123. }
  4124. }
  4125. .navbar-form {
  4126. margin-left: -15px;
  4127. margin-right: -15px;
  4128. padding: 10px 15px;
  4129. border-top: 1px solid transparent;
  4130. border-bottom: 1px solid transparent;
  4131. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4132. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4133. margin-top: 8px;
  4134. margin-bottom: 8px;
  4135. }
  4136. @media (min-width: 768px) {
  4137. .navbar-form .form-group {
  4138. display: inline-block;
  4139. margin-bottom: 0;
  4140. vertical-align: middle;
  4141. }
  4142. .navbar-form .form-control {
  4143. display: inline-block;
  4144. width: auto;
  4145. vertical-align: middle;
  4146. }
  4147. .navbar-form .form-control-static {
  4148. display: inline-block;
  4149. }
  4150. .navbar-form .input-group {
  4151. display: inline-table;
  4152. vertical-align: middle;
  4153. }
  4154. .navbar-form .input-group .input-group-addon,
  4155. .navbar-form .input-group .input-group-btn,
  4156. .navbar-form .input-group .form-control {
  4157. width: auto;
  4158. }
  4159. .navbar-form .input-group > .form-control {
  4160. width: 100%;
  4161. }
  4162. .navbar-form .control-label {
  4163. margin-bottom: 0;
  4164. vertical-align: middle;
  4165. }
  4166. .navbar-form .radio,
  4167. .navbar-form .checkbox {
  4168. display: inline-block;
  4169. margin-top: 0;
  4170. margin-bottom: 0;
  4171. vertical-align: middle;
  4172. }
  4173. .navbar-form .radio label,
  4174. .navbar-form .checkbox label {
  4175. padding-left: 0;
  4176. }
  4177. .navbar-form .radio input[type="radio"],
  4178. .navbar-form .checkbox input[type="checkbox"] {
  4179. position: relative;
  4180. margin-left: 0;
  4181. }
  4182. .navbar-form .has-feedback .form-control-feedback {
  4183. top: 0;
  4184. }
  4185. }
  4186. @media (max-width: 767px) {
  4187. .navbar-form .form-group {
  4188. margin-bottom: 5px;
  4189. }
  4190. .navbar-form .form-group:last-child {
  4191. margin-bottom: 0;
  4192. }
  4193. }
  4194. @media (min-width: 768px) {
  4195. .navbar-form {
  4196. width: auto;
  4197. border: 0;
  4198. margin-left: 0;
  4199. margin-right: 0;
  4200. padding-top: 0;
  4201. padding-bottom: 0;
  4202. -webkit-box-shadow: none;
  4203. box-shadow: none;
  4204. }
  4205. }
  4206. .navbar-nav > li > .dropdown-menu {
  4207. margin-top: 0;
  4208. border-top-right-radius: 0;
  4209. border-top-left-radius: 0;
  4210. }
  4211. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  4212. margin-bottom: 0;
  4213. border-top-right-radius: 4px;
  4214. border-top-left-radius: 4px;
  4215. border-bottom-right-radius: 0;
  4216. border-bottom-left-radius: 0;
  4217. }
  4218. .navbar-btn {
  4219. margin-top: 8px;
  4220. margin-bottom: 8px;
  4221. }
  4222. .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  4223. margin-top: 10px;
  4224. margin-bottom: 10px;
  4225. }
  4226. .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  4227. margin-top: 14px;
  4228. margin-bottom: 14px;
  4229. }
  4230. .navbar-text {
  4231. margin-top: 15px;
  4232. margin-bottom: 15px;
  4233. }
  4234. @media (min-width: 768px) {
  4235. .navbar-text {
  4236. float: left;
  4237. margin-left: 15px;
  4238. margin-right: 15px;
  4239. }
  4240. }
  4241. @media (min-width: 768px) {
  4242. .navbar-left {
  4243. float: left !important;
  4244. }
  4245. .navbar-right {
  4246. float: right !important;
  4247. margin-right: -15px;
  4248. }
  4249. .navbar-right ~ .navbar-right {
  4250. margin-right: 0;
  4251. }
  4252. }
  4253. .navbar-default {
  4254. background-color: #f8f8f8;
  4255. border-color: #e7e7e7;
  4256. }
  4257. .navbar-default .navbar-brand {
  4258. color: #777;
  4259. }
  4260. .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  4261. color: #5e5e5e;
  4262. background-color: transparent;
  4263. }
  4264. .navbar-default .navbar-text {
  4265. color: #777;
  4266. }
  4267. .navbar-default .navbar-nav > li > a {
  4268. color: #777;
  4269. }
  4270. .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  4271. color: #333;
  4272. background-color: transparent;
  4273. }
  4274. .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  4275. color: #555;
  4276. background-color: #e7e7e7;
  4277. }
  4278. .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  4279. color: #ccc;
  4280. background-color: transparent;
  4281. }
  4282. .navbar-default .navbar-toggle {
  4283. border-color: #ddd;
  4284. }
  4285. .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  4286. background-color: #ddd;
  4287. }
  4288. .navbar-default .navbar-toggle .icon-bar {
  4289. background-color: #888;
  4290. }
  4291. .navbar-default .navbar-collapse,
  4292. .navbar-default .navbar-form {
  4293. border-color: #e7e7e7;
  4294. }
  4295. .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  4296. background-color: #e7e7e7;
  4297. color: #555;
  4298. }
  4299. @media (max-width: 767px) {
  4300. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  4301. color: #777;
  4302. }
  4303. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  4304. color: #333;
  4305. background-color: transparent;
  4306. }
  4307. .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  4308. color: #555;
  4309. background-color: #e7e7e7;
  4310. }
  4311. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4312. color: #ccc;
  4313. background-color: transparent;
  4314. }
  4315. }
  4316. .navbar-default .navbar-link {
  4317. color: #777;
  4318. }
  4319. .navbar-default .navbar-link:hover {
  4320. color: #333;
  4321. }
  4322. .navbar-default .btn-link {
  4323. color: #777;
  4324. }
  4325. .navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  4326. color: #333;
  4327. }
  4328. .navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
  4329. color: #ccc;
  4330. }
  4331. .navbar-inverse {
  4332. background-color: #222;
  4333. border-color: #090909;
  4334. }
  4335. .navbar-inverse .navbar-brand {
  4336. color: #9d9d9d;
  4337. }
  4338. .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  4339. color: #fff;
  4340. background-color: transparent;
  4341. }
  4342. .navbar-inverse .navbar-text {
  4343. color: #9d9d9d;
  4344. }
  4345. .navbar-inverse .navbar-nav > li > a {
  4346. color: #9d9d9d;
  4347. }
  4348. .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  4349. color: #fff;
  4350. background-color: transparent;
  4351. }
  4352. .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  4353. color: #fff;
  4354. background-color: #090909;
  4355. }
  4356. .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  4357. color: #444;
  4358. background-color: transparent;
  4359. }
  4360. .navbar-inverse .navbar-toggle {
  4361. border-color: #333;
  4362. }
  4363. .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  4364. background-color: #333;
  4365. }
  4366. .navbar-inverse .navbar-toggle .icon-bar {
  4367. background-color: #fff;
  4368. }
  4369. .navbar-inverse .navbar-collapse,
  4370. .navbar-inverse .navbar-form {
  4371. border-color: #101010;
  4372. }
  4373. .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  4374. background-color: #090909;
  4375. color: #fff;
  4376. }
  4377. @media (max-width: 767px) {
  4378. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  4379. border-color: #090909;
  4380. }
  4381. .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
  4382. background-color: #090909;
  4383. }
  4384. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  4385. color: #9d9d9d;
  4386. }
  4387. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  4388. color: #fff;
  4389. background-color: transparent;
  4390. }
  4391. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
  4392. color: #fff;
  4393. background-color: #090909;
  4394. }
  4395. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4396. color: #444;
  4397. background-color: transparent;
  4398. }
  4399. }
  4400. .navbar-inverse .navbar-link {
  4401. color: #9d9d9d;
  4402. }
  4403. .navbar-inverse .navbar-link:hover {
  4404. color: #fff;
  4405. }
  4406. .navbar-inverse .btn-link {
  4407. color: #9d9d9d;
  4408. }
  4409. .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  4410. color: #fff;
  4411. }
  4412. .navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus {
  4413. color: #444;
  4414. }
  4415. .breadcrumb {
  4416. padding: 8px 15px;
  4417. margin-bottom: 20px;
  4418. list-style: none;
  4419. background-color: #f5f5f5;
  4420. border-radius: 4px;
  4421. }
  4422. .breadcrumb > li {
  4423. display: inline-block;
  4424. }
  4425. .breadcrumb > li + li:before {
  4426. content: "/ ";
  4427. padding: 0 5px;
  4428. color: #ccc;
  4429. }
  4430. .breadcrumb > .active {
  4431. color: #777777;
  4432. }
  4433. .pagination {
  4434. display: inline-block;
  4435. padding-left: 0;
  4436. margin: 20px 0;
  4437. border-radius: 4px;
  4438. }
  4439. .pagination > li {
  4440. display: inline;
  4441. }
  4442. .pagination > li > a,
  4443. .pagination > li > span {
  4444. position: relative;
  4445. float: left;
  4446. padding: 6px 12px;
  4447. line-height: 1.42857143;
  4448. text-decoration: none;
  4449. color: #08c;
  4450. background-color: #fff;
  4451. border: 1px solid #ddd;
  4452. margin-left: -1px;
  4453. }
  4454. .pagination > li:first-child > a,
  4455. .pagination > li:first-child > span {
  4456. margin-left: 0;
  4457. border-bottom-left-radius: 4px;
  4458. border-top-left-radius: 4px;
  4459. }
  4460. .pagination > li:last-child > a,
  4461. .pagination > li:last-child > span {
  4462. border-bottom-right-radius: 4px;
  4463. border-top-right-radius: 4px;
  4464. }
  4465. .pagination > li > a:hover, .pagination > li > a:focus,
  4466. .pagination > li > span:hover,
  4467. .pagination > li > span:focus {
  4468. z-index: 3;
  4469. color: #1ab3ff;
  4470. background-color: #eeeeee;
  4471. border-color: #ddd;
  4472. }
  4473. .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
  4474. .pagination > .active > span,
  4475. .pagination > .active > span:hover,
  4476. .pagination > .active > span:focus {
  4477. z-index: 2;
  4478. color: #fff;
  4479. background-color: #337ab7;
  4480. border-color: #337ab7;
  4481. cursor: default;
  4482. }
  4483. .pagination > .disabled > span,
  4484. .pagination > .disabled > span:hover,
  4485. .pagination > .disabled > span:focus,
  4486. .pagination > .disabled > a,
  4487. .pagination > .disabled > a:hover,
  4488. .pagination > .disabled > a:focus {
  4489. color: #777777;
  4490. background-color: #fff;
  4491. border-color: #ddd;
  4492. cursor: not-allowed;
  4493. }
  4494. .pagination-lg > li > a,
  4495. .pagination-lg > li > span {
  4496. padding: 10px 16px;
  4497. font-size: 18px;
  4498. line-height: 1.3333333;
  4499. }
  4500. .pagination-lg > li:first-child > a,
  4501. .pagination-lg > li:first-child > span {
  4502. border-bottom-left-radius: 6px;
  4503. border-top-left-radius: 6px;
  4504. }
  4505. .pagination-lg > li:last-child > a,
  4506. .pagination-lg > li:last-child > span {
  4507. border-bottom-right-radius: 6px;
  4508. border-top-right-radius: 6px;
  4509. }
  4510. .pagination-sm > li > a,
  4511. .pagination-sm > li > span {
  4512. padding: 5px 10px;
  4513. font-size: 12px;
  4514. line-height: 1.5;
  4515. }
  4516. .pagination-sm > li:first-child > a,
  4517. .pagination-sm > li:first-child > span {
  4518. border-bottom-left-radius: 3px;
  4519. border-top-left-radius: 3px;
  4520. }
  4521. .pagination-sm > li:last-child > a,
  4522. .pagination-sm > li:last-child > span {
  4523. border-bottom-right-radius: 3px;
  4524. border-top-right-radius: 3px;
  4525. }
  4526. .pager {
  4527. padding-left: 0;
  4528. margin: 20px 0;
  4529. list-style: none;
  4530. text-align: center;
  4531. }
  4532. .pager:before, .pager:after {
  4533. content: " ";
  4534. display: table;
  4535. }
  4536. .pager:after {
  4537. clear: both;
  4538. }
  4539. .pager li {
  4540. display: inline;
  4541. }
  4542. .pager li > a,
  4543. .pager li > span {
  4544. display: inline-block;
  4545. padding: 5px 14px;
  4546. background-color: #fff;
  4547. border: 1px solid #ddd;
  4548. border-radius: 15px;
  4549. }
  4550. .pager li > a:hover,
  4551. .pager li > a:focus {
  4552. text-decoration: none;
  4553. background-color: #eeeeee;
  4554. }
  4555. .pager .next > a,
  4556. .pager .next > span {
  4557. float: right;
  4558. }
  4559. .pager .previous > a,
  4560. .pager .previous > span {
  4561. float: left;
  4562. }
  4563. .pager .disabled > a,
  4564. .pager .disabled > a:hover,
  4565. .pager .disabled > a:focus,
  4566. .pager .disabled > span {
  4567. color: #777777;
  4568. background-color: #fff;
  4569. cursor: not-allowed;
  4570. }
  4571. .label {
  4572. display: inline;
  4573. padding: .2em .6em .3em;
  4574. font-size: 75%;
  4575. font-weight: bold;
  4576. line-height: 1;
  4577. color: #fff;
  4578. text-align: center;
  4579. white-space: nowrap;
  4580. vertical-align: baseline;
  4581. border-radius: .25em;
  4582. }
  4583. .label:empty {
  4584. display: none;
  4585. }
  4586. .btn .label {
  4587. position: relative;
  4588. top: -1px;
  4589. }
  4590. a.label:hover, a.label:focus {
  4591. color: #fff;
  4592. text-decoration: none;
  4593. cursor: pointer;
  4594. }
  4595. .label-default {
  4596. background-color: #777777;
  4597. }
  4598. .label-default[href]:hover, .label-default[href]:focus {
  4599. background-color: #5e5e5e;
  4600. }
  4601. .label-primary {
  4602. background-color: #337ab7;
  4603. }
  4604. .label-primary[href]:hover, .label-primary[href]:focus {
  4605. background-color: #286090;
  4606. }
  4607. .label-success {
  4608. background-color: #5cb85c;
  4609. }
  4610. .label-success[href]:hover, .label-success[href]:focus {
  4611. background-color: #449d44;
  4612. }
  4613. .label-info {
  4614. background-color: #5bc0de;
  4615. }
  4616. .label-info[href]:hover, .label-info[href]:focus {
  4617. background-color: #31b0d5;
  4618. }
  4619. .label-warning {
  4620. background-color: #f0ad4e;
  4621. }
  4622. .label-warning[href]:hover, .label-warning[href]:focus {
  4623. background-color: #ec971f;
  4624. }
  4625. .label-danger {
  4626. background-color: #d9534f;
  4627. }
  4628. .label-danger[href]:hover, .label-danger[href]:focus {
  4629. background-color: #c9302c;
  4630. }
  4631. .badge {
  4632. display: inline-block;
  4633. min-width: 10px;
  4634. padding: 3px 7px;
  4635. font-size: 12px;
  4636. font-weight: bold;
  4637. color: #fff;
  4638. line-height: 1;
  4639. vertical-align: middle;
  4640. white-space: nowrap;
  4641. text-align: center;
  4642. background-color: #777777;
  4643. border-radius: 10px;
  4644. }
  4645. .badge:empty {
  4646. display: none;
  4647. }
  4648. .btn .badge {
  4649. position: relative;
  4650. top: -1px;
  4651. }
  4652. .btn-xs .badge, .btn-group-xs > .btn .badge, .btn-group-xs > .btn .badge {
  4653. top: 0;
  4654. padding: 1px 5px;
  4655. }
  4656. .list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  4657. color: #08c;
  4658. background-color: #fff;
  4659. }
  4660. .list-group-item > .badge {
  4661. float: right;
  4662. }
  4663. .list-group-item > .badge + .badge {
  4664. margin-right: 5px;
  4665. }
  4666. .nav-pills > li > a > .badge {
  4667. margin-left: 3px;
  4668. }
  4669. a.badge:hover, a.badge:focus {
  4670. color: #fff;
  4671. text-decoration: none;
  4672. cursor: pointer;
  4673. }
  4674. .jumbotron {
  4675. padding-top: 30px;
  4676. padding-bottom: 30px;
  4677. margin-bottom: 30px;
  4678. color: inherit;
  4679. background-color: #eeeeee;
  4680. }
  4681. .jumbotron h1,
  4682. .jumbotron .h1 {
  4683. color: inherit;
  4684. }
  4685. .jumbotron p {
  4686. margin-bottom: 15px;
  4687. font-size: 21px;
  4688. font-weight: 200;
  4689. }
  4690. .jumbotron > hr {
  4691. border-top-color: #d5d5d5;
  4692. }
  4693. .container .jumbotron, .container-fluid .jumbotron {
  4694. border-radius: 6px;
  4695. }
  4696. .jumbotron .container {
  4697. max-width: 100%;
  4698. }
  4699. @media screen and (min-width: 768px) {
  4700. .jumbotron {
  4701. padding-top: 48px;
  4702. padding-bottom: 48px;
  4703. }
  4704. .container .jumbotron, .container-fluid .jumbotron {
  4705. padding-left: 60px;
  4706. padding-right: 60px;
  4707. }
  4708. .jumbotron h1,
  4709. .jumbotron .h1 {
  4710. font-size: 63px;
  4711. }
  4712. }
  4713. .thumbnail {
  4714. display: block;
  4715. padding: 4px;
  4716. margin-bottom: 20px;
  4717. line-height: 1.42857143;
  4718. background-color: #2f2f2f;
  4719. border: 1px solid #ddd;
  4720. border-radius: 4px;
  4721. -webkit-transition: border 0.2s ease-in-out;
  4722. -o-transition: border 0.2s ease-in-out;
  4723. transition: border 0.2s ease-in-out;
  4724. }
  4725. .thumbnail > img,
  4726. .thumbnail a > img {
  4727. display: block;
  4728. max-width: 100%;
  4729. height: auto;
  4730. margin-left: auto;
  4731. margin-right: auto;
  4732. }
  4733. .thumbnail .caption {
  4734. padding: 9px;
  4735. color: #c6c6c6;
  4736. }
  4737. a.thumbnail:hover,
  4738. a.thumbnail:focus,
  4739. a.thumbnail.active {
  4740. border-color: #08c;
  4741. }
  4742. .alert {
  4743. padding: 15px;
  4744. margin-bottom: 20px;
  4745. border: 1px solid transparent;
  4746. border-radius: 4px;
  4747. }
  4748. .alert h4 {
  4749. margin-top: 0;
  4750. color: inherit;
  4751. }
  4752. .alert .alert-link {
  4753. font-weight: bold;
  4754. }
  4755. .alert > p,
  4756. .alert > ul {
  4757. margin-bottom: 0;
  4758. }
  4759. .alert > p + p {
  4760. margin-top: 5px;
  4761. }
  4762. .alert-dismissable,
  4763. .alert-dismissible {
  4764. padding-right: 35px;
  4765. }
  4766. .alert-dismissable .close,
  4767. .alert-dismissible .close {
  4768. position: relative;
  4769. top: -2px;
  4770. right: -21px;
  4771. color: inherit;
  4772. }
  4773. .alert-success {
  4774. background-color: #dff0d8;
  4775. border-color: #d6e9c6;
  4776. color: #3c763d;
  4777. }
  4778. .alert-success hr {
  4779. border-top-color: #c9e2b3;
  4780. }
  4781. .alert-success .alert-link {
  4782. color: #2b542c;
  4783. }
  4784. .alert-info {
  4785. background-color: #d9edf7;
  4786. border-color: #bce8f1;
  4787. color: #31708f;
  4788. }
  4789. .alert-info hr {
  4790. border-top-color: #a6e1ec;
  4791. }
  4792. .alert-info .alert-link {
  4793. color: #245269;
  4794. }
  4795. .alert-warning {
  4796. background-color: #fcf8e3;
  4797. border-color: #faebcc;
  4798. color: #8a6d3b;
  4799. }
  4800. .alert-warning hr {
  4801. border-top-color: #f7e1b5;
  4802. }
  4803. .alert-warning .alert-link {
  4804. color: #66512c;
  4805. }
  4806. .alert-danger {
  4807. background-color: #f2dede;
  4808. border-color: #ebccd1;
  4809. color: #a94442;
  4810. }
  4811. .alert-danger hr {
  4812. border-top-color: #e4b9c0;
  4813. }
  4814. .alert-danger .alert-link {
  4815. color: #843534;
  4816. }
  4817. @-webkit-keyframes progress-bar-stripes {
  4818. from {
  4819. background-position: 40px 0;
  4820. }
  4821. to {
  4822. background-position: 0 0;
  4823. }
  4824. }
  4825. @keyframes progress-bar-stripes {
  4826. from {
  4827. background-position: 40px 0;
  4828. }
  4829. to {
  4830. background-position: 0 0;
  4831. }
  4832. }
  4833. .progress {
  4834. overflow: hidden;
  4835. height: 20px;
  4836. margin-bottom: 20px;
  4837. background-color: #f5f5f5;
  4838. border-radius: 4px;
  4839. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  4840. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  4841. }
  4842. .progress-bar {
  4843. float: left;
  4844. width: 0%;
  4845. height: 100%;
  4846. font-size: 12px;
  4847. line-height: 20px;
  4848. color: #fff;
  4849. text-align: center;
  4850. background-color: #337ab7;
  4851. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  4852. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  4853. -webkit-transition: width 0.6s ease;
  4854. -o-transition: width 0.6s ease;
  4855. transition: width 0.6s ease;
  4856. }
  4857. .progress-striped .progress-bar,
  4858. .progress-bar-striped {
  4859. 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);
  4860. 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);
  4861. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
  4862. background-size: 40px 40px;
  4863. }
  4864. .progress.active .progress-bar,
  4865. .progress-bar.active {
  4866. -webkit-animation: progress-bar-stripes 2s linear infinite;
  4867. -o-animation: progress-bar-stripes 2s linear infinite;
  4868. animation: progress-bar-stripes 2s linear infinite;
  4869. }
  4870. .progress-bar-success {
  4871. background-color: #5cb85c;
  4872. }
  4873. .progress-striped .progress-bar-success {
  4874. 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);
  4875. 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);
  4876. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
  4877. }
  4878. .progress-bar-info {
  4879. background-color: #5bc0de;
  4880. }
  4881. .progress-striped .progress-bar-info {
  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: -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);
  4884. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
  4885. }
  4886. .progress-bar-warning {
  4887. background-color: #f0ad4e;
  4888. }
  4889. .progress-striped .progress-bar-warning {
  4890. 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);
  4891. 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);
  4892. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
  4893. }
  4894. .progress-bar-danger {
  4895. background-color: #d9534f;
  4896. }
  4897. .progress-striped .progress-bar-danger {
  4898. 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);
  4899. 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);
  4900. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
  4901. }
  4902. .media {
  4903. margin-top: 15px;
  4904. }
  4905. .media:first-child {
  4906. margin-top: 0;
  4907. }
  4908. .media,
  4909. .media-body {
  4910. zoom: 1;
  4911. overflow: hidden;
  4912. }
  4913. .media-body {
  4914. width: 10000px;
  4915. }
  4916. .media-object {
  4917. display: block;
  4918. }
  4919. .media-object.img-thumbnail {
  4920. max-width: none;
  4921. }
  4922. .media-right,
  4923. .media > .pull-right {
  4924. padding-left: 10px;
  4925. }
  4926. .media-left,
  4927. .media > .pull-left {
  4928. padding-right: 10px;
  4929. }
  4930. .media-left,
  4931. .media-right,
  4932. .media-body {
  4933. display: table-cell;
  4934. vertical-align: top;
  4935. }
  4936. .media-middle {
  4937. vertical-align: middle;
  4938. }
  4939. .media-bottom {
  4940. vertical-align: bottom;
  4941. }
  4942. .media-heading {
  4943. margin-top: 0;
  4944. margin-bottom: 5px;
  4945. }
  4946. .media-list {
  4947. padding-left: 0;
  4948. list-style: none;
  4949. }
  4950. .list-group {
  4951. margin-bottom: 20px;
  4952. padding-left: 0;
  4953. }
  4954. .list-group-item {
  4955. position: relative;
  4956. display: block;
  4957. padding: 10px 15px;
  4958. margin-bottom: -1px;
  4959. background-color: #fff;
  4960. border: 1px solid #ddd;
  4961. }
  4962. .list-group-item:first-child {
  4963. border-top-right-radius: 4px;
  4964. border-top-left-radius: 4px;
  4965. }
  4966. .list-group-item:last-child {
  4967. margin-bottom: 0;
  4968. border-bottom-right-radius: 4px;
  4969. border-bottom-left-radius: 4px;
  4970. }
  4971. a.list-group-item,
  4972. button.list-group-item {
  4973. color: #555;
  4974. }
  4975. a.list-group-item .list-group-item-heading,
  4976. button.list-group-item .list-group-item-heading {
  4977. color: #333;
  4978. }
  4979. a.list-group-item:hover, a.list-group-item:focus,
  4980. button.list-group-item:hover,
  4981. button.list-group-item:focus {
  4982. text-decoration: none;
  4983. color: #555;
  4984. background-color: #f5f5f5;
  4985. }
  4986. button.list-group-item {
  4987. width: 100%;
  4988. text-align: left;
  4989. }
  4990. .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  4991. background-color: #eeeeee;
  4992. color: #777777;
  4993. cursor: not-allowed;
  4994. }
  4995. .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  4996. color: inherit;
  4997. }
  4998. .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  4999. color: #777777;
  5000. }
  5001. .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  5002. z-index: 2;
  5003. color: #fff;
  5004. background-color: #337ab7;
  5005. border-color: #337ab7;
  5006. }
  5007. .list-group-item.active .list-group-item-heading,
  5008. .list-group-item.active .list-group-item-heading > small,
  5009. .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
  5010. .list-group-item.active:hover .list-group-item-heading > small,
  5011. .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
  5012. .list-group-item.active:focus .list-group-item-heading > small,
  5013. .list-group-item.active:focus .list-group-item-heading > .small {
  5014. color: inherit;
  5015. }
  5016. .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  5017. color: #c7ddef;
  5018. }
  5019. .list-group-item-success {
  5020. color: #3c763d;
  5021. background-color: #dff0d8;
  5022. }
  5023. a.list-group-item-success,
  5024. button.list-group-item-success {
  5025. color: #3c763d;
  5026. }
  5027. a.list-group-item-success .list-group-item-heading,
  5028. button.list-group-item-success .list-group-item-heading {
  5029. color: inherit;
  5030. }
  5031. a.list-group-item-success:hover, a.list-group-item-success:focus,
  5032. button.list-group-item-success:hover,
  5033. button.list-group-item-success:focus {
  5034. color: #3c763d;
  5035. background-color: #d0e9c6;
  5036. }
  5037. a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
  5038. button.list-group-item-success.active,
  5039. button.list-group-item-success.active:hover,
  5040. button.list-group-item-success.active:focus {
  5041. color: #fff;
  5042. background-color: #3c763d;
  5043. border-color: #3c763d;
  5044. }
  5045. .list-group-item-info {
  5046. color: #31708f;
  5047. background-color: #d9edf7;
  5048. }
  5049. a.list-group-item-info,
  5050. button.list-group-item-info {
  5051. color: #31708f;
  5052. }
  5053. a.list-group-item-info .list-group-item-heading,
  5054. button.list-group-item-info .list-group-item-heading {
  5055. color: inherit;
  5056. }
  5057. a.list-group-item-info:hover, a.list-group-item-info:focus,
  5058. button.list-group-item-info:hover,
  5059. button.list-group-item-info:focus {
  5060. color: #31708f;
  5061. background-color: #c4e3f3;
  5062. }
  5063. a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
  5064. button.list-group-item-info.active,
  5065. button.list-group-item-info.active:hover,
  5066. button.list-group-item-info.active:focus {
  5067. color: #fff;
  5068. background-color: #31708f;
  5069. border-color: #31708f;
  5070. }
  5071. .list-group-item-warning {
  5072. color: #8a6d3b;
  5073. background-color: #fcf8e3;
  5074. }
  5075. a.list-group-item-warning,
  5076. button.list-group-item-warning {
  5077. color: #8a6d3b;
  5078. }
  5079. a.list-group-item-warning .list-group-item-heading,
  5080. button.list-group-item-warning .list-group-item-heading {
  5081. color: inherit;
  5082. }
  5083. a.list-group-item-warning:hover, a.list-group-item-warning:focus,
  5084. button.list-group-item-warning:hover,
  5085. button.list-group-item-warning:focus {
  5086. color: #8a6d3b;
  5087. background-color: #faf2cc;
  5088. }
  5089. a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
  5090. button.list-group-item-warning.active,
  5091. button.list-group-item-warning.active:hover,
  5092. button.list-group-item-warning.active:focus {
  5093. color: #fff;
  5094. background-color: #8a6d3b;
  5095. border-color: #8a6d3b;
  5096. }
  5097. .list-group-item-danger {
  5098. color: #a94442;
  5099. background-color: #f2dede;
  5100. }
  5101. a.list-group-item-danger,
  5102. button.list-group-item-danger {
  5103. color: #a94442;
  5104. }
  5105. a.list-group-item-danger .list-group-item-heading,
  5106. button.list-group-item-danger .list-group-item-heading {
  5107. color: inherit;
  5108. }
  5109. a.list-group-item-danger:hover, a.list-group-item-danger:focus,
  5110. button.list-group-item-danger:hover,
  5111. button.list-group-item-danger:focus {
  5112. color: #a94442;
  5113. background-color: #ebcccc;
  5114. }
  5115. a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
  5116. button.list-group-item-danger.active,
  5117. button.list-group-item-danger.active:hover,
  5118. button.list-group-item-danger.active:focus {
  5119. color: #fff;
  5120. background-color: #a94442;
  5121. border-color: #a94442;
  5122. }
  5123. .list-group-item-heading {
  5124. margin-top: 0;
  5125. margin-bottom: 5px;
  5126. }
  5127. .list-group-item-text {
  5128. margin-bottom: 0;
  5129. line-height: 1.3;
  5130. }
  5131. .panel {
  5132. margin-bottom: 20px;
  5133. background-color: #fff;
  5134. border: 1px solid transparent;
  5135. border-radius: 4px;
  5136. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5137. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5138. }
  5139. .panel-body {
  5140. padding: 15px;
  5141. }
  5142. .panel-body:before, .panel-body:after {
  5143. content: " ";
  5144. display: table;
  5145. }
  5146. .panel-body:after {
  5147. clear: both;
  5148. }
  5149. .panel-heading {
  5150. padding: 10px 15px;
  5151. border-bottom: 1px solid transparent;
  5152. border-top-right-radius: 3px;
  5153. border-top-left-radius: 3px;
  5154. }
  5155. .panel-heading > .dropdown .dropdown-toggle {
  5156. color: inherit;
  5157. }
  5158. .panel-title {
  5159. margin-top: 0;
  5160. margin-bottom: 0;
  5161. font-size: 16px;
  5162. color: inherit;
  5163. }
  5164. .panel-title > a,
  5165. .panel-title > small,
  5166. .panel-title > .small,
  5167. .panel-title > small > a,
  5168. .panel-title > .small > a {
  5169. color: inherit;
  5170. }
  5171. .panel-footer {
  5172. padding: 10px 15px;
  5173. background-color: #f5f5f5;
  5174. border-top: 1px solid #ddd;
  5175. border-bottom-right-radius: 3px;
  5176. border-bottom-left-radius: 3px;
  5177. }
  5178. .panel > .list-group,
  5179. .panel > .panel-collapse > .list-group {
  5180. margin-bottom: 0;
  5181. }
  5182. .panel > .list-group .list-group-item,
  5183. .panel > .panel-collapse > .list-group .list-group-item {
  5184. border-width: 1px 0;
  5185. border-radius: 0;
  5186. }
  5187. .panel > .list-group:first-child .list-group-item:first-child,
  5188. .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  5189. border-top: 0;
  5190. border-top-right-radius: 3px;
  5191. border-top-left-radius: 3px;
  5192. }
  5193. .panel > .list-group:last-child .list-group-item:last-child,
  5194. .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  5195. border-bottom: 0;
  5196. border-bottom-right-radius: 3px;
  5197. border-bottom-left-radius: 3px;
  5198. }
  5199. .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  5200. border-top-right-radius: 0;
  5201. border-top-left-radius: 0;
  5202. }
  5203. .panel-heading + .list-group .list-group-item:first-child {
  5204. border-top-width: 0;
  5205. }
  5206. .list-group + .panel-footer {
  5207. border-top-width: 0;
  5208. }
  5209. .panel > .table,
  5210. .panel > .table-responsive > .table,
  5211. .panel > .panel-collapse > .table {
  5212. margin-bottom: 0;
  5213. }
  5214. .panel > .table caption,
  5215. .panel > .table-responsive > .table caption,
  5216. .panel > .panel-collapse > .table caption {
  5217. padding-left: 15px;
  5218. padding-right: 15px;
  5219. }
  5220. .panel > .table:first-child,
  5221. .panel > .table-responsive:first-child > .table:first-child {
  5222. border-top-right-radius: 3px;
  5223. border-top-left-radius: 3px;
  5224. }
  5225. .panel > .table:first-child > thead:first-child > tr:first-child,
  5226. .panel > .table:first-child > tbody:first-child > tr:first-child,
  5227. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  5228. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  5229. border-top-left-radius: 3px;
  5230. border-top-right-radius: 3px;
  5231. }
  5232. .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5233. .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5234. .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5235. .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
  5236. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5237. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5238. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5239. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  5240. border-top-left-radius: 3px;
  5241. }
  5242. .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5243. .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5244. .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5245. .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
  5246. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5247. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5248. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5249. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  5250. border-top-right-radius: 3px;
  5251. }
  5252. .panel > .table:last-child,
  5253. .panel > .table-responsive:last-child > .table:last-child {
  5254. border-bottom-right-radius: 3px;
  5255. border-bottom-left-radius: 3px;
  5256. }
  5257. .panel > .table:last-child > tbody:last-child > tr:last-child,
  5258. .panel > .table:last-child > tfoot:last-child > tr:last-child,
  5259. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  5260. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  5261. border-bottom-left-radius: 3px;
  5262. border-bottom-right-radius: 3px;
  5263. }
  5264. .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5265. .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5266. .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5267. .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
  5268. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5269. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5270. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5271. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  5272. border-bottom-left-radius: 3px;
  5273. }
  5274. .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5275. .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5276. .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5277. .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
  5278. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5279. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5280. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5281. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  5282. border-bottom-right-radius: 3px;
  5283. }
  5284. .panel > .panel-body + .table,
  5285. .panel > .panel-body + .table-responsive,
  5286. .panel > .table + .panel-body,
  5287. .panel > .table-responsive + .panel-body {
  5288. border-top: 1px solid #ddd;
  5289. }
  5290. .panel > .table > tbody:first-child > tr:first-child th,
  5291. .panel > .table > tbody:first-child > tr:first-child td {
  5292. border-top: 0;
  5293. }
  5294. .panel > .table-bordered,
  5295. .panel > .table-responsive > .table-bordered {
  5296. border: 0;
  5297. }
  5298. .panel > .table-bordered > thead > tr > th:first-child,
  5299. .panel > .table-bordered > thead > tr > td:first-child,
  5300. .panel > .table-bordered > tbody > tr > th:first-child,
  5301. .panel > .table-bordered > tbody > tr > td:first-child,
  5302. .panel > .table-bordered > tfoot > tr > th:first-child,
  5303. .panel > .table-bordered > tfoot > tr > td:first-child,
  5304. .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  5305. .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  5306. .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  5307. .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  5308. .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  5309. .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  5310. border-left: 0;
  5311. }
  5312. .panel > .table-bordered > thead > tr > th:last-child,
  5313. .panel > .table-bordered > thead > tr > td:last-child,
  5314. .panel > .table-bordered > tbody > tr > th:last-child,
  5315. .panel > .table-bordered > tbody > tr > td:last-child,
  5316. .panel > .table-bordered > tfoot > tr > th:last-child,
  5317. .panel > .table-bordered > tfoot > tr > td:last-child,
  5318. .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  5319. .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  5320. .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  5321. .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  5322. .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  5323. .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  5324. border-right: 0;
  5325. }
  5326. .panel > .table-bordered > thead > tr:first-child > td,
  5327. .panel > .table-bordered > thead > tr:first-child > th,
  5328. .panel > .table-bordered > tbody > tr:first-child > td,
  5329. .panel > .table-bordered > tbody > tr:first-child > th,
  5330. .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  5331. .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  5332. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  5333. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  5334. border-bottom: 0;
  5335. }
  5336. .panel > .table-bordered > tbody > tr:last-child > td,
  5337. .panel > .table-bordered > tbody > tr:last-child > th,
  5338. .panel > .table-bordered > tfoot > tr:last-child > td,
  5339. .panel > .table-bordered > tfoot > tr:last-child > th,
  5340. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  5341. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  5342. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  5343. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  5344. border-bottom: 0;
  5345. }
  5346. .panel > .table-responsive {
  5347. border: 0;
  5348. margin-bottom: 0;
  5349. }
  5350. .panel-group {
  5351. margin-bottom: 20px;
  5352. }
  5353. .panel-group .panel {
  5354. margin-bottom: 0;
  5355. border-radius: 4px;
  5356. }
  5357. .panel-group .panel + .panel {
  5358. margin-top: 5px;
  5359. }
  5360. .panel-group .panel-heading {
  5361. border-bottom: 0;
  5362. }
  5363. .panel-group .panel-heading + .panel-collapse > .panel-body,
  5364. .panel-group .panel-heading + .panel-collapse > .list-group {
  5365. border-top: 1px solid #ddd;
  5366. }
  5367. .panel-group .panel-footer {
  5368. border-top: 0;
  5369. }
  5370. .panel-group .panel-footer + .panel-collapse .panel-body {
  5371. border-bottom: 1px solid #ddd;
  5372. }
  5373. .panel-default {
  5374. border-color: #ddd;
  5375. }
  5376. .panel-default > .panel-heading {
  5377. color: #333333;
  5378. background-color: #f5f5f5;
  5379. border-color: #ddd;
  5380. }
  5381. .panel-default > .panel-heading + .panel-collapse > .panel-body {
  5382. border-top-color: #ddd;
  5383. }
  5384. .panel-default > .panel-heading .badge {
  5385. color: #f5f5f5;
  5386. background-color: #333333;
  5387. }
  5388. .panel-default > .panel-footer + .panel-collapse > .panel-body {
  5389. border-bottom-color: #ddd;
  5390. }
  5391. .panel-primary {
  5392. border-color: #337ab7;
  5393. }
  5394. .panel-primary > .panel-heading {
  5395. color: #fff;
  5396. background-color: #337ab7;
  5397. border-color: #337ab7;
  5398. }
  5399. .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  5400. border-top-color: #337ab7;
  5401. }
  5402. .panel-primary > .panel-heading .badge {
  5403. color: #337ab7;
  5404. background-color: #fff;
  5405. }
  5406. .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  5407. border-bottom-color: #337ab7;
  5408. }
  5409. .panel-success {
  5410. border-color: #d6e9c6;
  5411. }
  5412. .panel-success > .panel-heading {
  5413. color: #3c763d;
  5414. background-color: #dff0d8;
  5415. border-color: #d6e9c6;
  5416. }
  5417. .panel-success > .panel-heading + .panel-collapse > .panel-body {
  5418. border-top-color: #d6e9c6;
  5419. }
  5420. .panel-success > .panel-heading .badge {
  5421. color: #dff0d8;
  5422. background-color: #3c763d;
  5423. }
  5424. .panel-success > .panel-footer + .panel-collapse > .panel-body {
  5425. border-bottom-color: #d6e9c6;
  5426. }
  5427. .panel-info {
  5428. border-color: #bce8f1;
  5429. }
  5430. .panel-info > .panel-heading {
  5431. color: #31708f;
  5432. background-color: #d9edf7;
  5433. border-color: #bce8f1;
  5434. }
  5435. .panel-info > .panel-heading + .panel-collapse > .panel-body {
  5436. border-top-color: #bce8f1;
  5437. }
  5438. .panel-info > .panel-heading .badge {
  5439. color: #d9edf7;
  5440. background-color: #31708f;
  5441. }
  5442. .panel-info > .panel-footer + .panel-collapse > .panel-body {
  5443. border-bottom-color: #bce8f1;
  5444. }
  5445. .panel-warning {
  5446. border-color: #faebcc;
  5447. }
  5448. .panel-warning > .panel-heading {
  5449. color: #8a6d3b;
  5450. background-color: #fcf8e3;
  5451. border-color: #faebcc;
  5452. }
  5453. .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  5454. border-top-color: #faebcc;
  5455. }
  5456. .panel-warning > .panel-heading .badge {
  5457. color: #fcf8e3;
  5458. background-color: #8a6d3b;
  5459. }
  5460. .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  5461. border-bottom-color: #faebcc;
  5462. }
  5463. .panel-danger {
  5464. border-color: #ebccd1;
  5465. }
  5466. .panel-danger > .panel-heading {
  5467. color: #a94442;
  5468. background-color: #f2dede;
  5469. border-color: #ebccd1;
  5470. }
  5471. .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  5472. border-top-color: #ebccd1;
  5473. }
  5474. .panel-danger > .panel-heading .badge {
  5475. color: #f2dede;
  5476. background-color: #a94442;
  5477. }
  5478. .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  5479. border-bottom-color: #ebccd1;
  5480. }
  5481. .embed-responsive {
  5482. position: relative;
  5483. display: block;
  5484. height: 0;
  5485. padding: 0;
  5486. overflow: hidden;
  5487. }
  5488. .embed-responsive .embed-responsive-item,
  5489. .embed-responsive iframe,
  5490. .embed-responsive embed,
  5491. .embed-responsive object,
  5492. .embed-responsive video {
  5493. position: absolute;
  5494. top: 0;
  5495. left: 0;
  5496. bottom: 0;
  5497. height: 100%;
  5498. width: 100%;
  5499. border: 0;
  5500. }
  5501. .embed-responsive-16by9 {
  5502. padding-bottom: 56.25%;
  5503. }
  5504. .embed-responsive-4by3 {
  5505. padding-bottom: 75%;
  5506. }
  5507. .well {
  5508. min-height: 20px;
  5509. padding: 19px;
  5510. margin-bottom: 20px;
  5511. background-color: #f5f5f5;
  5512. border: 1px solid #e3e3e3;
  5513. border-radius: 4px;
  5514. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5515. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5516. }
  5517. .well blockquote {
  5518. border-color: #ddd;
  5519. border-color: rgba(0, 0, 0, 0.15);
  5520. }
  5521. .well-lg {
  5522. padding: 24px;
  5523. border-radius: 6px;
  5524. }
  5525. .well-sm {
  5526. padding: 9px;
  5527. border-radius: 3px;
  5528. }
  5529. .close {
  5530. float: right;
  5531. font-size: 21px;
  5532. font-weight: bold;
  5533. line-height: 1;
  5534. color: #000;
  5535. text-shadow: 0 1px 0 #fff;
  5536. opacity: 0.2;
  5537. filter: alpha(opacity=20);
  5538. }
  5539. .close:hover, .close:focus {
  5540. color: #000;
  5541. text-decoration: none;
  5542. cursor: pointer;
  5543. opacity: 0.5;
  5544. filter: alpha(opacity=50);
  5545. }
  5546. button.close {
  5547. padding: 0;
  5548. cursor: pointer;
  5549. background: transparent;
  5550. border: 0;
  5551. -webkit-appearance: none;
  5552. }
  5553. .modal-open {
  5554. overflow: hidden;
  5555. }
  5556. .modal {
  5557. display: none;
  5558. overflow: hidden;
  5559. position: fixed;
  5560. top: 0;
  5561. right: 0;
  5562. bottom: 0;
  5563. left: 0;
  5564. z-index: 1050;
  5565. -webkit-overflow-scrolling: touch;
  5566. outline: 0;
  5567. }
  5568. .modal.fade .modal-dialog {
  5569. -webkit-transform: translate(0, -25%);
  5570. -ms-transform: translate(0, -25%);
  5571. -o-transform: translate(0, -25%);
  5572. transform: translate(0, -25%);
  5573. -webkit-transition: -webkit-transform 0.3s ease-out;
  5574. -moz-transition: -moz-transform 0.3s ease-out;
  5575. -o-transition: -o-transform 0.3s ease-out;
  5576. transition: transform 0.3s ease-out;
  5577. }
  5578. .modal.in .modal-dialog {
  5579. -webkit-transform: translate(0, 0);
  5580. -ms-transform: translate(0, 0);
  5581. -o-transform: translate(0, 0);
  5582. transform: translate(0, 0);
  5583. }
  5584. .modal-open .modal {
  5585. overflow-x: hidden;
  5586. overflow-y: auto;
  5587. }
  5588. .modal-dialog {
  5589. position: relative;
  5590. width: auto;
  5591. margin: 10px;
  5592. }
  5593. .modal-content {
  5594. position: relative;
  5595. background-color: #fff;
  5596. border: 1px solid #999;
  5597. border: 1px solid rgba(0, 0, 0, 0.2);
  5598. border-radius: 6px;
  5599. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5600. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5601. background-clip: padding-box;
  5602. outline: 0;
  5603. }
  5604. .modal-backdrop {
  5605. position: fixed;
  5606. top: 0;
  5607. right: 0;
  5608. bottom: 0;
  5609. left: 0;
  5610. z-index: 1040;
  5611. background-color: #000;
  5612. }
  5613. .modal-backdrop.fade {
  5614. opacity: 0;
  5615. filter: alpha(opacity=0);
  5616. }
  5617. .modal-backdrop.in {
  5618. opacity: 0.5;
  5619. filter: alpha(opacity=50);
  5620. }
  5621. .modal-header {
  5622. padding: 15px;
  5623. border-bottom: 1px solid #e5e5e5;
  5624. min-height: 16.42857143px;
  5625. }
  5626. .modal-header .close {
  5627. margin-top: -2px;
  5628. }
  5629. .modal-title {
  5630. margin: 0;
  5631. line-height: 1.42857143;
  5632. }
  5633. .modal-body {
  5634. position: relative;
  5635. padding: 15px;
  5636. }
  5637. .modal-footer {
  5638. padding: 15px;
  5639. text-align: right;
  5640. border-top: 1px solid #e5e5e5;
  5641. }
  5642. .modal-footer:before, .modal-footer:after {
  5643. content: " ";
  5644. display: table;
  5645. }
  5646. .modal-footer:after {
  5647. clear: both;
  5648. }
  5649. .modal-footer .btn + .btn {
  5650. margin-left: 5px;
  5651. margin-bottom: 0;
  5652. }
  5653. .modal-footer .btn-group .btn + .btn {
  5654. margin-left: -1px;
  5655. }
  5656. .modal-footer .btn-block + .btn-block {
  5657. margin-left: 0;
  5658. }
  5659. .modal-scrollbar-measure {
  5660. position: absolute;
  5661. top: -9999px;
  5662. width: 50px;
  5663. height: 50px;
  5664. overflow: scroll;
  5665. }
  5666. @media (min-width: 768px) {
  5667. .modal-dialog {
  5668. width: 600px;
  5669. margin: 30px auto;
  5670. }
  5671. .modal-content {
  5672. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  5673. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  5674. }
  5675. .modal-sm {
  5676. width: 300px;
  5677. }
  5678. }
  5679. @media (min-width: 992px) {
  5680. .modal-lg {
  5681. width: 900px;
  5682. }
  5683. }
  5684. .tooltip {
  5685. position: absolute;
  5686. z-index: 1070;
  5687. display: block;
  5688. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  5689. font-style: normal;
  5690. font-weight: normal;
  5691. letter-spacing: normal;
  5692. line-break: auto;
  5693. line-height: 1.42857143;
  5694. text-align: left;
  5695. text-align: start;
  5696. text-decoration: none;
  5697. text-shadow: none;
  5698. text-transform: none;
  5699. white-space: normal;
  5700. word-break: normal;
  5701. word-spacing: normal;
  5702. word-wrap: normal;
  5703. font-size: 12px;
  5704. opacity: 0;
  5705. filter: alpha(opacity=0);
  5706. }
  5707. .tooltip.in {
  5708. opacity: 0.9;
  5709. filter: alpha(opacity=90);
  5710. }
  5711. .tooltip.top {
  5712. margin-top: -3px;
  5713. padding: 5px 0;
  5714. }
  5715. .tooltip.right {
  5716. margin-left: 3px;
  5717. padding: 0 5px;
  5718. }
  5719. .tooltip.bottom {
  5720. margin-top: 3px;
  5721. padding: 5px 0;
  5722. }
  5723. .tooltip.left {
  5724. margin-left: -3px;
  5725. padding: 0 5px;
  5726. }
  5727. .tooltip-inner {
  5728. max-width: 200px;
  5729. padding: 3px 8px;
  5730. color: #fff;
  5731. text-align: center;
  5732. background-color: #000;
  5733. border-radius: 4px;
  5734. }
  5735. .tooltip-arrow {
  5736. position: absolute;
  5737. width: 0;
  5738. height: 0;
  5739. border-color: transparent;
  5740. border-style: solid;
  5741. }
  5742. .tooltip.top .tooltip-arrow {
  5743. bottom: 0;
  5744. left: 50%;
  5745. margin-left: -5px;
  5746. border-width: 5px 5px 0;
  5747. border-top-color: #000;
  5748. }
  5749. .tooltip.top-left .tooltip-arrow {
  5750. bottom: 0;
  5751. right: 5px;
  5752. margin-bottom: -5px;
  5753. border-width: 5px 5px 0;
  5754. border-top-color: #000;
  5755. }
  5756. .tooltip.top-right .tooltip-arrow {
  5757. bottom: 0;
  5758. left: 5px;
  5759. margin-bottom: -5px;
  5760. border-width: 5px 5px 0;
  5761. border-top-color: #000;
  5762. }
  5763. .tooltip.right .tooltip-arrow {
  5764. top: 50%;
  5765. left: 0;
  5766. margin-top: -5px;
  5767. border-width: 5px 5px 5px 0;
  5768. border-right-color: #000;
  5769. }
  5770. .tooltip.left .tooltip-arrow {
  5771. top: 50%;
  5772. right: 0;
  5773. margin-top: -5px;
  5774. border-width: 5px 0 5px 5px;
  5775. border-left-color: #000;
  5776. }
  5777. .tooltip.bottom .tooltip-arrow {
  5778. top: 0;
  5779. left: 50%;
  5780. margin-left: -5px;
  5781. border-width: 0 5px 5px;
  5782. border-bottom-color: #000;
  5783. }
  5784. .tooltip.bottom-left .tooltip-arrow {
  5785. top: 0;
  5786. right: 5px;
  5787. margin-top: -5px;
  5788. border-width: 0 5px 5px;
  5789. border-bottom-color: #000;
  5790. }
  5791. .tooltip.bottom-right .tooltip-arrow {
  5792. top: 0;
  5793. left: 5px;
  5794. margin-top: -5px;
  5795. border-width: 0 5px 5px;
  5796. border-bottom-color: #000;
  5797. }
  5798. .popover {
  5799. position: absolute;
  5800. top: 0;
  5801. left: 0;
  5802. z-index: 1060;
  5803. display: none;
  5804. max-width: 276px;
  5805. padding: 1px;
  5806. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  5807. font-style: normal;
  5808. font-weight: normal;
  5809. letter-spacing: normal;
  5810. line-break: auto;
  5811. line-height: 1.42857143;
  5812. text-align: left;
  5813. text-align: start;
  5814. text-decoration: none;
  5815. text-shadow: none;
  5816. text-transform: none;
  5817. white-space: normal;
  5818. word-break: normal;
  5819. word-spacing: normal;
  5820. word-wrap: normal;
  5821. font-size: 14px;
  5822. background-color: #fff;
  5823. background-clip: padding-box;
  5824. border: 1px solid #ccc;
  5825. border: 1px solid rgba(0, 0, 0, 0.2);
  5826. border-radius: 6px;
  5827. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  5828. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  5829. }
  5830. .popover.top {
  5831. margin-top: -10px;
  5832. }
  5833. .popover.right {
  5834. margin-left: 10px;
  5835. }
  5836. .popover.bottom {
  5837. margin-top: 10px;
  5838. }
  5839. .popover.left {
  5840. margin-left: -10px;
  5841. }
  5842. .popover-title {
  5843. margin: 0;
  5844. padding: 8px 14px;
  5845. font-size: 14px;
  5846. background-color: #f7f7f7;
  5847. border-bottom: 1px solid #ebebeb;
  5848. border-radius: 5px 5px 0 0;
  5849. }
  5850. .popover-content {
  5851. padding: 9px 14px;
  5852. }
  5853. .popover > .arrow, .popover > .arrow:after {
  5854. position: absolute;
  5855. display: block;
  5856. width: 0;
  5857. height: 0;
  5858. border-color: transparent;
  5859. border-style: solid;
  5860. }
  5861. .popover > .arrow {
  5862. border-width: 11px;
  5863. }
  5864. .popover > .arrow:after {
  5865. border-width: 10px;
  5866. content: "";
  5867. }
  5868. .popover.top > .arrow {
  5869. left: 50%;
  5870. margin-left: -11px;
  5871. border-bottom-width: 0;
  5872. border-top-color: #999999;
  5873. border-top-color: rgba(0, 0, 0, 0.25);
  5874. bottom: -11px;
  5875. }
  5876. .popover.top > .arrow:after {
  5877. content: " ";
  5878. bottom: 1px;
  5879. margin-left: -10px;
  5880. border-bottom-width: 0;
  5881. border-top-color: #fff;
  5882. }
  5883. .popover.right > .arrow {
  5884. top: 50%;
  5885. left: -11px;
  5886. margin-top: -11px;
  5887. border-left-width: 0;
  5888. border-right-color: #999999;
  5889. border-right-color: rgba(0, 0, 0, 0.25);
  5890. }
  5891. .popover.right > .arrow:after {
  5892. content: " ";
  5893. left: 1px;
  5894. bottom: -10px;
  5895. border-left-width: 0;
  5896. border-right-color: #fff;
  5897. }
  5898. .popover.bottom > .arrow {
  5899. left: 50%;
  5900. margin-left: -11px;
  5901. border-top-width: 0;
  5902. border-bottom-color: #999999;
  5903. border-bottom-color: rgba(0, 0, 0, 0.25);
  5904. top: -11px;
  5905. }
  5906. .popover.bottom > .arrow:after {
  5907. content: " ";
  5908. top: 1px;
  5909. margin-left: -10px;
  5910. border-top-width: 0;
  5911. border-bottom-color: #fff;
  5912. }
  5913. .popover.left > .arrow {
  5914. top: 50%;
  5915. right: -11px;
  5916. margin-top: -11px;
  5917. border-right-width: 0;
  5918. border-left-color: #999999;
  5919. border-left-color: rgba(0, 0, 0, 0.25);
  5920. }
  5921. .popover.left > .arrow:after {
  5922. content: " ";
  5923. right: 1px;
  5924. border-right-width: 0;
  5925. border-left-color: #fff;
  5926. bottom: -10px;
  5927. }
  5928. .carousel {
  5929. position: relative;
  5930. }
  5931. .carousel-inner {
  5932. position: relative;
  5933. overflow: hidden;
  5934. width: 100%;
  5935. }
  5936. .carousel-inner > .item {
  5937. display: none;
  5938. position: relative;
  5939. -webkit-transition: 0.6s ease-in-out left;
  5940. -o-transition: 0.6s ease-in-out left;
  5941. transition: 0.6s ease-in-out left;
  5942. }
  5943. .carousel-inner > .item > img,
  5944. .carousel-inner > .item > a > img {
  5945. display: block;
  5946. max-width: 100%;
  5947. height: auto;
  5948. line-height: 1;
  5949. }
  5950. @media all and (transform-3d), (-webkit-transform-3d) {
  5951. .carousel-inner > .item {
  5952. -webkit-transition: -webkit-transform 0.6s ease-in-out;
  5953. -moz-transition: -moz-transform 0.6s ease-in-out;
  5954. -o-transition: -o-transform 0.6s ease-in-out;
  5955. transition: transform 0.6s ease-in-out;
  5956. -webkit-backface-visibility: hidden;
  5957. -moz-backface-visibility: hidden;
  5958. backface-visibility: hidden;
  5959. -webkit-perspective: 1000px;
  5960. -moz-perspective: 1000px;
  5961. perspective: 1000px;
  5962. }
  5963. .carousel-inner > .item.next, .carousel-inner > .item.active.right {
  5964. -webkit-transform: translate3d(100%, 0, 0);
  5965. transform: translate3d(100%, 0, 0);
  5966. left: 0;
  5967. }
  5968. .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
  5969. -webkit-transform: translate3d(-100%, 0, 0);
  5970. transform: translate3d(-100%, 0, 0);
  5971. left: 0;
  5972. }
  5973. .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
  5974. -webkit-transform: translate3d(0, 0, 0);
  5975. transform: translate3d(0, 0, 0);
  5976. left: 0;
  5977. }
  5978. }
  5979. .carousel-inner > .active,
  5980. .carousel-inner > .next,
  5981. .carousel-inner > .prev {
  5982. display: block;
  5983. }
  5984. .carousel-inner > .active {
  5985. left: 0;
  5986. }
  5987. .carousel-inner > .next,
  5988. .carousel-inner > .prev {
  5989. position: absolute;
  5990. top: 0;
  5991. width: 100%;
  5992. }
  5993. .carousel-inner > .next {
  5994. left: 100%;
  5995. }
  5996. .carousel-inner > .prev {
  5997. left: -100%;
  5998. }
  5999. .carousel-inner > .next.left,
  6000. .carousel-inner > .prev.right {
  6001. left: 0;
  6002. }
  6003. .carousel-inner > .active.left {
  6004. left: -100%;
  6005. }
  6006. .carousel-inner > .active.right {
  6007. left: 100%;
  6008. }
  6009. .carousel-control {
  6010. position: absolute;
  6011. top: 0;
  6012. left: 0;
  6013. bottom: 0;
  6014. width: 15%;
  6015. opacity: 0.5;
  6016. filter: alpha(opacity=50);
  6017. font-size: 20px;
  6018. color: #fff;
  6019. text-align: center;
  6020. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6021. }
  6022. .carousel-control.left {
  6023. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6024. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6025. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6026. background-repeat: repeat-x;
  6027. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  6028. }
  6029. .carousel-control.right {
  6030. left: auto;
  6031. right: 0;
  6032. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6033. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6034. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6035. background-repeat: repeat-x;
  6036. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  6037. }
  6038. .carousel-control:hover, .carousel-control:focus {
  6039. outline: 0;
  6040. color: #fff;
  6041. text-decoration: none;
  6042. opacity: 0.9;
  6043. filter: alpha(opacity=90);
  6044. }
  6045. .carousel-control .icon-prev,
  6046. .carousel-control .icon-next,
  6047. .carousel-control .glyphicon-chevron-left,
  6048. .carousel-control .glyphicon-chevron-right {
  6049. position: absolute;
  6050. top: 50%;
  6051. margin-top: -10px;
  6052. z-index: 5;
  6053. display: inline-block;
  6054. }
  6055. .carousel-control .icon-prev,
  6056. .carousel-control .glyphicon-chevron-left {
  6057. left: 50%;
  6058. margin-left: -10px;
  6059. }
  6060. .carousel-control .icon-next,
  6061. .carousel-control .glyphicon-chevron-right {
  6062. right: 50%;
  6063. margin-right: -10px;
  6064. }
  6065. .carousel-control .icon-prev,
  6066. .carousel-control .icon-next {
  6067. width: 20px;
  6068. height: 20px;
  6069. line-height: 1;
  6070. font-family: serif;
  6071. }
  6072. .carousel-control .icon-prev:before {
  6073. content: '\2039';
  6074. }
  6075. .carousel-control .icon-next:before {
  6076. content: '\203a';
  6077. }
  6078. .carousel-indicators {
  6079. position: absolute;
  6080. bottom: 10px;
  6081. left: 50%;
  6082. z-index: 15;
  6083. width: 60%;
  6084. margin-left: -30%;
  6085. padding-left: 0;
  6086. list-style: none;
  6087. text-align: center;
  6088. }
  6089. .carousel-indicators li {
  6090. display: inline-block;
  6091. width: 10px;
  6092. height: 10px;
  6093. margin: 1px;
  6094. text-indent: -999px;
  6095. border: 1px solid #fff;
  6096. border-radius: 10px;
  6097. cursor: pointer;
  6098. background-color: #000 \9;
  6099. background-color: transparent;
  6100. }
  6101. .carousel-indicators .active {
  6102. margin: 0;
  6103. width: 12px;
  6104. height: 12px;
  6105. background-color: #fff;
  6106. }
  6107. .carousel-caption {
  6108. position: absolute;
  6109. left: 15%;
  6110. right: 15%;
  6111. bottom: 20px;
  6112. z-index: 10;
  6113. padding-top: 20px;
  6114. padding-bottom: 20px;
  6115. color: #fff;
  6116. text-align: center;
  6117. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6118. }
  6119. .carousel-caption .btn {
  6120. text-shadow: none;
  6121. }
  6122. @media screen and (min-width: 768px) {
  6123. .carousel-control .glyphicon-chevron-left,
  6124. .carousel-control .glyphicon-chevron-right,
  6125. .carousel-control .icon-prev,
  6126. .carousel-control .icon-next {
  6127. width: 30px;
  6128. height: 30px;
  6129. margin-top: -15px;
  6130. font-size: 30px;
  6131. }
  6132. .carousel-control .glyphicon-chevron-left,
  6133. .carousel-control .icon-prev {
  6134. margin-left: -15px;
  6135. }
  6136. .carousel-control .glyphicon-chevron-right,
  6137. .carousel-control .icon-next {
  6138. margin-right: -15px;
  6139. }
  6140. .carousel-caption {
  6141. left: 20%;
  6142. right: 20%;
  6143. padding-bottom: 30px;
  6144. }
  6145. .carousel-indicators {
  6146. bottom: 20px;
  6147. }
  6148. }
  6149. .clearfix:before, .clearfix:after {
  6150. content: " ";
  6151. display: table;
  6152. }
  6153. .clearfix:after {
  6154. clear: both;
  6155. }
  6156. .center-block {
  6157. display: block;
  6158. margin-left: auto;
  6159. margin-right: auto;
  6160. }
  6161. .pull-right {
  6162. float: right !important;
  6163. }
  6164. .pull-left {
  6165. float: left !important;
  6166. }
  6167. .hide {
  6168. display: none !important;
  6169. }
  6170. .show {
  6171. display: block !important;
  6172. }
  6173. .invisible {
  6174. visibility: hidden;
  6175. }
  6176. .text-hide {
  6177. font: 0/0 a;
  6178. color: transparent;
  6179. text-shadow: none;
  6180. background-color: transparent;
  6181. border: 0;
  6182. }
  6183. .hidden {
  6184. display: none !important;
  6185. }
  6186. .affix {
  6187. position: fixed;
  6188. }
  6189. @-ms-viewport {
  6190. width: device-width;
  6191. }
  6192. .visible-xs {
  6193. display: none !important;
  6194. }
  6195. .visible-sm {
  6196. display: none !important;
  6197. }
  6198. .visible-md {
  6199. display: none !important;
  6200. }
  6201. .visible-lg {
  6202. display: none !important;
  6203. }
  6204. .visible-xs-block,
  6205. .visible-xs-inline,
  6206. .visible-xs-inline-block,
  6207. .visible-sm-block,
  6208. .visible-sm-inline,
  6209. .visible-sm-inline-block,
  6210. .visible-md-block,
  6211. .visible-md-inline,
  6212. .visible-md-inline-block,
  6213. .visible-lg-block,
  6214. .visible-lg-inline,
  6215. .visible-lg-inline-block {
  6216. display: none !important;
  6217. }
  6218. @media (max-width: 767px) {
  6219. .visible-xs {
  6220. display: block !important;
  6221. }
  6222. table.visible-xs {
  6223. display: table !important;
  6224. }
  6225. tr.visible-xs {
  6226. display: table-row !important;
  6227. }
  6228. th.visible-xs,
  6229. td.visible-xs {
  6230. display: table-cell !important;
  6231. }
  6232. }
  6233. @media (max-width: 767px) {
  6234. .visible-xs-block {
  6235. display: block !important;
  6236. }
  6237. }
  6238. @media (max-width: 767px) {
  6239. .visible-xs-inline {
  6240. display: inline !important;
  6241. }
  6242. }
  6243. @media (max-width: 767px) {
  6244. .visible-xs-inline-block {
  6245. display: inline-block !important;
  6246. }
  6247. }
  6248. @media (min-width: 768px) and (max-width: 991px) {
  6249. .visible-sm {
  6250. display: block !important;
  6251. }
  6252. table.visible-sm {
  6253. display: table !important;
  6254. }
  6255. tr.visible-sm {
  6256. display: table-row !important;
  6257. }
  6258. th.visible-sm,
  6259. td.visible-sm {
  6260. display: table-cell !important;
  6261. }
  6262. }
  6263. @media (min-width: 768px) and (max-width: 991px) {
  6264. .visible-sm-block {
  6265. display: block !important;
  6266. }
  6267. }
  6268. @media (min-width: 768px) and (max-width: 991px) {
  6269. .visible-sm-inline {
  6270. display: inline !important;
  6271. }
  6272. }
  6273. @media (min-width: 768px) and (max-width: 991px) {
  6274. .visible-sm-inline-block {
  6275. display: inline-block !important;
  6276. }
  6277. }
  6278. @media (min-width: 992px) and (max-width: 1199px) {
  6279. .visible-md {
  6280. display: block !important;
  6281. }
  6282. table.visible-md {
  6283. display: table !important;
  6284. }
  6285. tr.visible-md {
  6286. display: table-row !important;
  6287. }
  6288. th.visible-md,
  6289. td.visible-md {
  6290. display: table-cell !important;
  6291. }
  6292. }
  6293. @media (min-width: 992px) and (max-width: 1199px) {
  6294. .visible-md-block {
  6295. display: block !important;
  6296. }
  6297. }
  6298. @media (min-width: 992px) and (max-width: 1199px) {
  6299. .visible-md-inline {
  6300. display: inline !important;
  6301. }
  6302. }
  6303. @media (min-width: 992px) and (max-width: 1199px) {
  6304. .visible-md-inline-block {
  6305. display: inline-block !important;
  6306. }
  6307. }
  6308. @media (min-width: 1200px) {
  6309. .visible-lg {
  6310. display: block !important;
  6311. }
  6312. table.visible-lg {
  6313. display: table !important;
  6314. }
  6315. tr.visible-lg {
  6316. display: table-row !important;
  6317. }
  6318. th.visible-lg,
  6319. td.visible-lg {
  6320. display: table-cell !important;
  6321. }
  6322. }
  6323. @media (min-width: 1200px) {
  6324. .visible-lg-block {
  6325. display: block !important;
  6326. }
  6327. }
  6328. @media (min-width: 1200px) {
  6329. .visible-lg-inline {
  6330. display: inline !important;
  6331. }
  6332. }
  6333. @media (min-width: 1200px) {
  6334. .visible-lg-inline-block {
  6335. display: inline-block !important;
  6336. }
  6337. }
  6338. @media (max-width: 767px) {
  6339. .hidden-xs {
  6340. display: none !important;
  6341. }
  6342. }
  6343. @media (min-width: 768px) and (max-width: 991px) {
  6344. .hidden-sm {
  6345. display: none !important;
  6346. }
  6347. }
  6348. @media (min-width: 992px) and (max-width: 1199px) {
  6349. .hidden-md {
  6350. display: none !important;
  6351. }
  6352. }
  6353. @media (min-width: 1200px) {
  6354. .hidden-lg {
  6355. display: none !important;
  6356. }
  6357. }
  6358. .visible-print {
  6359. display: none !important;
  6360. }
  6361. @media print {
  6362. .visible-print {
  6363. display: block !important;
  6364. }
  6365. table.visible-print {
  6366. display: table !important;
  6367. }
  6368. tr.visible-print {
  6369. display: table-row !important;
  6370. }
  6371. th.visible-print,
  6372. td.visible-print {
  6373. display: table-cell !important;
  6374. }
  6375. }
  6376. .visible-print-block {
  6377. display: none !important;
  6378. }
  6379. @media print {
  6380. .visible-print-block {
  6381. display: block !important;
  6382. }
  6383. }
  6384. .visible-print-inline {
  6385. display: none !important;
  6386. }
  6387. @media print {
  6388. .visible-print-inline {
  6389. display: inline !important;
  6390. }
  6391. }
  6392. .visible-print-inline-block {
  6393. display: none !important;
  6394. }
  6395. @media print {
  6396. .visible-print-inline-block {
  6397. display: inline-block !important;
  6398. }
  6399. }
  6400. @media print {
  6401. .hidden-print {
  6402. display: none !important;
  6403. }
  6404. }
  6405. .well {
  6406. -webkit-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset;
  6407. box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset;
  6408. background: #202020;
  6409. background-color: rgba(0, 0, 0, 0.3);
  6410. border: 0;
  6411. }
  6412. .darkwell, .breadcrumb, code, pre, select,
  6413. input[type="text"],
  6414. input[type="password"],
  6415. input[type="datetime"],
  6416. input[type="datetime-local"],
  6417. input[type="date"],
  6418. input[type="month"],
  6419. input[type="time"],
  6420. input[type="week"],
  6421. input[type="number"],
  6422. input[type="email"],
  6423. input[type="url"],
  6424. input[type="search"],
  6425. input[type="tel"],
  6426. input[type="color"],
  6427. .uneditable-input,
  6428. .form-control, textarea, .jumbotron, .progress {
  6429. -webkit-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset;
  6430. box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset;
  6431. background: #202020;
  6432. background-color: rgba(0, 0, 0, 0.3);
  6433. border: 0;
  6434. }
  6435. .breadcrumb {
  6436. border: 0;
  6437. }
  6438. .breadcrumb li {
  6439. text-shadow: 0 1px 0 #000;
  6440. }
  6441. .page-header {
  6442. -webkit-box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0;
  6443. box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0;
  6444. border-bottom: 1px solid #121212;
  6445. }
  6446. h1, h2, h3, h4, h5, h6 {
  6447. color: #fff;
  6448. }
  6449. h6 {
  6450. color: #999;
  6451. }
  6452. blockquote {
  6453. border-left-color: #111;
  6454. }
  6455. blockquote.pull-right {
  6456. border-right-color: #111;
  6457. }
  6458. hr {
  6459. -webkit-box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0;
  6460. box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0;
  6461. border-bottom: 1px solid #121212;
  6462. border-top: none;
  6463. }
  6464. code {
  6465. border: none;
  6466. padding: 2px 4px;
  6467. }
  6468. pre {
  6469. border: none;
  6470. color: #c6c6c6;
  6471. padding: 8px;
  6472. }
  6473. legend {
  6474. -webkit-box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0;
  6475. box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0;
  6476. border-bottom: 1px solid #121212;
  6477. color: #fff;
  6478. }
  6479. select,
  6480. input[type="text"],
  6481. input[type="password"],
  6482. input[type="datetime"],
  6483. input[type="datetime-local"],
  6484. input[type="date"],
  6485. input[type="month"],
  6486. input[type="time"],
  6487. input[type="week"],
  6488. input[type="number"],
  6489. input[type="email"],
  6490. input[type="url"],
  6491. input[type="search"],
  6492. input[type="tel"],
  6493. input[type="color"],
  6494. .uneditable-input,
  6495. .form-control {
  6496. color: #fff;
  6497. height: 34px;
  6498. }
  6499. select::-moz-placeholder,
  6500. input[type="text"]::-moz-placeholder,
  6501. input[type="password"]::-moz-placeholder,
  6502. input[type="datetime"]::-moz-placeholder,
  6503. input[type="datetime-local"]::-moz-placeholder,
  6504. input[type="date"]::-moz-placeholder,
  6505. input[type="month"]::-moz-placeholder,
  6506. input[type="time"]::-moz-placeholder,
  6507. input[type="week"]::-moz-placeholder,
  6508. input[type="number"]::-moz-placeholder,
  6509. input[type="email"]::-moz-placeholder,
  6510. input[type="url"]::-moz-placeholder,
  6511. input[type="search"]::-moz-placeholder,
  6512. input[type="tel"]::-moz-placeholder,
  6513. input[type="color"]::-moz-placeholder,
  6514. .uneditable-input::-moz-placeholder,
  6515. .form-control::-moz-placeholder {
  6516. color: #999;
  6517. opacity: 1;
  6518. }
  6519. select:-ms-input-placeholder,
  6520. input[type="text"]:-ms-input-placeholder,
  6521. input[type="password"]:-ms-input-placeholder,
  6522. input[type="datetime"]:-ms-input-placeholder,
  6523. input[type="datetime-local"]:-ms-input-placeholder,
  6524. input[type="date"]:-ms-input-placeholder,
  6525. input[type="month"]:-ms-input-placeholder,
  6526. input[type="time"]:-ms-input-placeholder,
  6527. input[type="week"]:-ms-input-placeholder,
  6528. input[type="number"]:-ms-input-placeholder,
  6529. input[type="email"]:-ms-input-placeholder,
  6530. input[type="url"]:-ms-input-placeholder,
  6531. input[type="search"]:-ms-input-placeholder,
  6532. input[type="tel"]:-ms-input-placeholder,
  6533. input[type="color"]:-ms-input-placeholder,
  6534. .uneditable-input:-ms-input-placeholder,
  6535. .form-control:-ms-input-placeholder {
  6536. color: #999;
  6537. }
  6538. select::-webkit-input-placeholder,
  6539. input[type="text"]::-webkit-input-placeholder,
  6540. input[type="password"]::-webkit-input-placeholder,
  6541. input[type="datetime"]::-webkit-input-placeholder,
  6542. input[type="datetime-local"]::-webkit-input-placeholder,
  6543. input[type="date"]::-webkit-input-placeholder,
  6544. input[type="month"]::-webkit-input-placeholder,
  6545. input[type="time"]::-webkit-input-placeholder,
  6546. input[type="week"]::-webkit-input-placeholder,
  6547. input[type="number"]::-webkit-input-placeholder,
  6548. input[type="email"]::-webkit-input-placeholder,
  6549. input[type="url"]::-webkit-input-placeholder,
  6550. input[type="search"]::-webkit-input-placeholder,
  6551. input[type="tel"]::-webkit-input-placeholder,
  6552. input[type="color"]::-webkit-input-placeholder,
  6553. .uneditable-input::-webkit-input-placeholder,
  6554. .form-control::-webkit-input-placeholder {
  6555. color: #999;
  6556. }
  6557. .form-control.input-lg, .input-group-lg > .form-control,
  6558. .input-group-lg > .input-group-btn > .form-control.btn {
  6559. height: 45px;
  6560. }
  6561. textarea {
  6562. color: #fff;
  6563. }
  6564. textarea::-moz-placeholder {
  6565. color: #999;
  6566. opacity: 1;
  6567. }
  6568. textarea:-ms-input-placeholder {
  6569. color: #999;
  6570. }
  6571. textarea::-webkit-input-placeholder {
  6572. color: #999;
  6573. }
  6574. select {
  6575. height: 29px;
  6576. }
  6577. .form-actions {
  6578. border-top-color: #222;
  6579. }
  6580. .well .form-actions {
  6581. border-top-color: #000;
  6582. background-color: rgba(0, 0, 0, 0.3);
  6583. margin-left: -17px;
  6584. margin-right: -17px;
  6585. margin-bottom: -17px;
  6586. }
  6587. .help-inline,
  6588. .help-block {
  6589. color: #999;
  6590. }
  6591. tr.warning,
  6592. tr.success,
  6593. tr.error,
  6594. tr.info {
  6595. color: #fff;
  6596. }
  6597. .control-group.warning input, .control-group.warning select, .control-group.warning textarea {
  6598. color: #faa732;
  6599. border-color: #faa732;
  6600. -webkit-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset;
  6601. box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset;
  6602. background: #202020;
  6603. background-color: rgba(0, 0, 0, 0.3);
  6604. }
  6605. .control-group.warning input:focus,
  6606. .control-group.warning select:focus,
  6607. .control-group.warning textarea:focus {
  6608. border-color: #faa732;
  6609. -webkit-box-shadow: 0 0 6px #faa732;
  6610. box-shadow: 0 0 6px #faa732;
  6611. }
  6612. .control-group.warning .control-label,
  6613. .control-group.warning .help-block,
  6614. .control-group.warning .help-inline {
  6615. color: #faa732;
  6616. }
  6617. .control-group.success input, .control-group.success select, .control-group.success textarea {
  6618. color: #5bb75b;
  6619. border-color: #5bb75b;
  6620. -webkit-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset;
  6621. box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset;
  6622. background: #202020;
  6623. background-color: rgba(0, 0, 0, 0.3);
  6624. }
  6625. .control-group.success input:focus,
  6626. .control-group.success select:focus,
  6627. .control-group.success textarea:focus {
  6628. border-color: #5bb75b;
  6629. -webkit-box-shadow: 0 0 6px #5bb75b;
  6630. box-shadow: 0 0 6px #5bb75b;
  6631. }
  6632. .control-group.success .control-label,
  6633. .control-group.success .help-block,
  6634. .control-group.success .help-inline {
  6635. color: #5bb75b;
  6636. }
  6637. .control-group.error input, .control-group.error select, .control-group.error textarea {
  6638. color: #fc5b5e;
  6639. border-color: #fc5b5e;
  6640. -webkit-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset;
  6641. box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset;
  6642. background: #202020;
  6643. background-color: rgba(0, 0, 0, 0.3);
  6644. }
  6645. .control-group.error input:focus,
  6646. .control-group.error select:focus,
  6647. .control-group.error textarea:focus {
  6648. border-color: #fc5b5e;
  6649. -webkit-box-shadow: 0 0 6px #fc5b5e;
  6650. box-shadow: 0 0 6px #fc5b5e;
  6651. }
  6652. .control-group.error .control-label,
  6653. .control-group.error .help-block,
  6654. .control-group.error .help-inline {
  6655. color: #fc5b5e;
  6656. }
  6657. .control-group.info input, .control-group.info select, .control-group.info textarea {
  6658. color: #3a87ad;
  6659. border-color: #3a87ad;
  6660. -webkit-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset;
  6661. box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset;
  6662. background: #202020;
  6663. background-color: rgba(0, 0, 0, 0.3);
  6664. }
  6665. .control-group.info input:focus,
  6666. .control-group.info select:focus,
  6667. .control-group.info textarea:focus {
  6668. border-color: #3a87ad;
  6669. -webkit-box-shadow: 0 0 6px #3a87ad;
  6670. box-shadow: 0 0 6px #3a87ad;
  6671. }
  6672. .control-group.info .control-label,
  6673. .control-group.info .help-block,
  6674. .control-group.info .help-inline {
  6675. color: #3a87ad;
  6676. }
  6677. input:focus:invalid,
  6678. textarea:focus:invalid,
  6679. select:focus:invalid {
  6680. border-color: #fc5b5e;
  6681. }
  6682. input:focus:invalid:focus,
  6683. textarea:focus:invalid:focus,
  6684. select:focus:invalid:focus {
  6685. border-color: #fc5b5e;
  6686. box-shadow: 0 0 6px #fc5b5e;
  6687. }
  6688. .btn-link {
  6689. text-shadow: none;
  6690. }
  6691. .img-polaroid {
  6692. background-color: #111;
  6693. background-color: rgba(0, 0, 0, 0.3);
  6694. }
  6695. .nav-tabs .open .dropdown-toggle,
  6696. .nav-pills .open .dropdown-toggle,
  6697. .nav > .open.active > a:hover {
  6698. background-color: rgba(0, 0, 0, 0.25);
  6699. border-color: transparent transparent #666 transparent;
  6700. }
  6701. .nav > .dropdown.active > a:hover {
  6702. color: #fff;
  6703. }
  6704. .nav-tabs .active .dropdown-toggle .caret,
  6705. .nav-pills .active .dropdown-toggle .caret {
  6706. border-top-color: #fff;
  6707. }
  6708. .nav-tabs {
  6709. border-bottom: 1px solid #666;
  6710. }
  6711. .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  6712. background-color: #2f2f2f;
  6713. color: #fff;
  6714. border-color: #666 #666 transparent #666;
  6715. }
  6716. .nav-tabs > li > a:hover {
  6717. border-color: #2f2f2f #2f2f2f #666 #2f2f2f;
  6718. background-color: rgba(0, 0, 0, 0.25);
  6719. color: #00aaff;
  6720. }
  6721. .nav-tabs.nav-stacked > li > a, .nav-tabs.nav-stacked > li > a:hover {
  6722. border-color: #666;
  6723. }
  6724. .well > .nav-tabs > .active > a, .well > .nav-tabs > .active > a:hover {
  6725. background-color: #202020;
  6726. }
  6727. .nav-pills > li > a:hover {
  6728. background-color: rgba(0, 0, 0, 0.25);
  6729. color: #00aaff;
  6730. }
  6731. .nav-list > li > a,
  6732. .nav-list .nav-header {
  6733. text-shadow: 0 1px 0 #000;
  6734. }
  6735. .nav-list > li > a:hover {
  6736. background-color: rgba(0, 0, 0, 0.25);
  6737. color: #00aaff;
  6738. }
  6739. .nav-list .active > a:hover {
  6740. background-color: #0088cc;
  6741. color: #fff;
  6742. }
  6743. .tabs-below .nav-tabs {
  6744. border-top: 1px solid #666;
  6745. }
  6746. .tabs-left .nav-tabs {
  6747. border-right: 1px solid #666;
  6748. }
  6749. .tabs-right .nav-tabs {
  6750. border-left: 1px solid #666;
  6751. }
  6752. .tabs-below .nav-tabs > li > a:hover {
  6753. border-top: 1px solid #666;
  6754. }
  6755. .tabs-left .nav-tabs > li > a:hover {
  6756. border-color: transparent #666 transparent transparent;
  6757. }
  6758. .tabs-right .nav-tabs > li > a:hover {
  6759. border-color: transparent transparent transparent #666;
  6760. }
  6761. .tabs-below .nav-tabs .active > a,
  6762. .tabs-below .nav-tabs .active > a:hover {
  6763. border-color: transparent #666 #666 #666;
  6764. }
  6765. .tabs-left .nav-tabs .active > a,
  6766. .tabs-left .nav-tabs .active > a:hover {
  6767. border-color: #666 transparent #666 #666;
  6768. }
  6769. .tabs-right .nav-tabs .active > a,
  6770. .tabs-right .nav-tabs .active > a:hover {
  6771. border-color: #666 #666 #666 transparent;
  6772. }
  6773. .nav-list > li > a,
  6774. .nav-list .nav-header {
  6775. text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  6776. }
  6777. .nav-tabs > li > a:hover {
  6778. border-color: transparent transparent #666 transparent;
  6779. }
  6780. .nav > .disabled > a:hover {
  6781. color: #999;
  6782. }
  6783. .nav-list .divider {
  6784. background-color: transparent;
  6785. -webkit-box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0;
  6786. box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0;
  6787. border-bottom: 1px solid #121212;
  6788. }
  6789. .navbar .brand {
  6790. text-shadow: 0 1px 0 black;
  6791. }
  6792. .navbar .nav-divider {
  6793. border: transparent;
  6794. -webkit-box-shadow: rgba(255, 255, 255, 0.07) 1px 0 0;
  6795. box-shadow: rgba(255, 255, 255, 0.07) 1px 0 0;
  6796. border-right: 1px solid #121212;
  6797. }
  6798. .navbar-inverse .brand {
  6799. color: #555;
  6800. }
  6801. .navbar-inverse .brand:hover {
  6802. color: #555;
  6803. }
  6804. .navbar-inverse .navbar-default {
  6805. background: #333;
  6806. box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  6807. }
  6808. .navbar-inverse .nav > li > a {
  6809. color: #c6c6c6;
  6810. }
  6811. .navbar-inverse .nav > li > a:hover {
  6812. color: #fff;
  6813. }
  6814. .navbar-inverse .nav > .active > a,
  6815. .navbar-inverse .nav > .active > a:hover {
  6816. background-color: #e5e5e5;
  6817. box-shadow: 0 3px 8px rgba(0, 0, 0, 0.125) inset;
  6818. color: #555;
  6819. }
  6820. .navbar-inverse .nav li.dropdown > a:hover .caret {
  6821. border-bottom-color: #fff;
  6822. border-top-color: #fff;
  6823. color: #fff;
  6824. }
  6825. .navbar-inverse .nav > li > a:focus,
  6826. .navbar-inverse .nav > li > a:hover {
  6827. background-color: transparent;
  6828. color: #fff;
  6829. }
  6830. .navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
  6831. .navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
  6832. .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
  6833. background-color: #e5e5e5;
  6834. color: #555;
  6835. }
  6836. .navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
  6837. .navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
  6838. .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
  6839. background-color: #e5e5e5;
  6840. color: #555;
  6841. }
  6842. .navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret,
  6843. .navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret,
  6844. .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret {
  6845. border-bottom-color: #c6c6c6;
  6846. border-top-color: #c6c6c6;
  6847. color: #c6c6c6;
  6848. }
  6849. .navbar-inverse .navbar-search .search-query {
  6850. box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6) inset;
  6851. background-color: #fff;
  6852. color: #555;
  6853. }
  6854. .navbar-inverse .navbar-search input.search-query:focus {
  6855. box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6) inset, 0 0 8px rgba(82, 168, 236, 0.9);
  6856. padding: 4px 14px;
  6857. outline: 0 none;
  6858. }
  6859. .navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
  6860. border-bottom-color: #c6c6c6;
  6861. border-top-color: #c6c6c6;
  6862. }
  6863. .navbar-inverse .nav li.dropdown > a:hover .caret {
  6864. border-bottom-color: #fff;
  6865. border-top-color: #fff;
  6866. }
  6867. .navbar-inverse .navbar-search .search-query:-moz-placeholder {
  6868. color: #999;
  6869. }
  6870. .pagination > li > a,
  6871. .pagination > li > span {
  6872. background: transparent;
  6873. border-color: #666;
  6874. }
  6875. .pagination > li > a:hover,
  6876. .pagination > .active > a,
  6877. .pagination > .active > span {
  6878. background-color: rgba(0, 0, 0, 0.25);
  6879. }
  6880. .pager li > a, .pager li > span {
  6881. background-color: transparent;
  6882. border-color: #666;
  6883. }
  6884. .pager li > a:hover {
  6885. background-color: rgba(0, 0, 0, 0.25);
  6886. }
  6887. .pager .disabled > a,
  6888. .pager .disabled > a:hover,
  6889. .pager .disabled > span {
  6890. background-color: transparent;
  6891. }
  6892. .label,
  6893. .badge {
  6894. text-shadow: 1px 1px 0 black;
  6895. box-shadow: 1px 1px 0 black;
  6896. }
  6897. .label-inverse,
  6898. .badge-inverse {
  6899. background-color: #111;
  6900. }
  6901. .btn-inverse {
  6902. background-color: #373737;
  6903. }
  6904. .btn-inverse,
  6905. .btn-inverse:hover {
  6906. color: #C6C6C6;
  6907. }
  6908. a.list-group-item.active > .badge,
  6909. .nav-pills > .active > a > .badge {
  6910. color: #fff;
  6911. background-color: #2f2f2f;
  6912. }
  6913. .jumbotron {
  6914. background: #111;
  6915. color: #ccc;
  6916. }
  6917. .thumbnail {
  6918. display: inline-block;
  6919. display: block;
  6920. height: auto;
  6921. max-width: 100%;
  6922. padding: 4px;
  6923. line-height: 1.428571429;
  6924. background-color: #333333;
  6925. border: 1px solid #dddddd;
  6926. border-radius: 4px;
  6927. -webkit-transition: all 0.2s ease-in-out;
  6928. transition: all 0.2s ease-in-out;
  6929. }
  6930. .thumbnail .caption {
  6931. color: #999;
  6932. }
  6933. .alert {
  6934. color: #fff;
  6935. border-color: #a86404;
  6936. }
  6937. .alert h1, .alert h2, .alert h3, .alert h4, .alert h5, .alert h6 {
  6938. color: #c17305;
  6939. }
  6940. .alert-error {
  6941. border-color: #d40408;
  6942. }
  6943. .alert-error h1, .alert-error h2, .alert-error h3, .alert-error h4, .alert-error h5, .alert-error h6 {
  6944. color: #ed0409;
  6945. }
  6946. .alert-success {
  6947. border-color: #2d662d;
  6948. }
  6949. .alert-success h1, .alert-success h2, .alert-success h3, .alert-success h4, .alert-success h5, .alert-success h6 {
  6950. color: #347834;
  6951. }
  6952. .alert-info {
  6953. border-color: #1a3c4e;
  6954. }
  6955. .alert-info h1, .alert-info h2, .alert-info h3, .alert-info h4, .alert-info h5, .alert-info h6 {
  6956. color: #204b61;
  6957. }
  6958. select::-webkit-scrollbar {
  6959. -webkit-appearance: none;
  6960. width: 11px;
  6961. }
  6962. select::-webkit-scrollbar-thumb {
  6963. border-radius: 8px;
  6964. border: 2px solid #202020;
  6965. /* should match background, can't be transparent */
  6966. background-color: rgba(0, 0, 0, 0.5);
  6967. }
  6968. .modal,
  6969. .modal-content {
  6970. background-color: #444;
  6971. }
  6972. .modal-header {
  6973. border-bottom: 1px solid #222;
  6974. }
  6975. .modal-body p {
  6976. color: #c6c6c6;
  6977. }
  6978. .modal-footer {
  6979. background-color: #373737;
  6980. border-top: 1px solid #222;
  6981. -moz-box-shadow: 0 1px 0 #333333 inset;
  6982. -webkit-box-shadow: 0 1px 0 #333333 inset;
  6983. -o-box-shadow: 0 1px 0 #333333 inset;
  6984. box-shadow: 0 1px 0 #333333 inset;
  6985. }
  6986. .popover {
  6987. background: #444;
  6988. border: 1px solid rgba(0, 0, 0, 0.5);
  6989. border: 1px solid black;
  6990. }
  6991. .popover-title {
  6992. background: #373737;
  6993. border-bottom-color: #222;
  6994. }
  6995. .popover.top .arrow:after {
  6996. border-top-color: #444;
  6997. }
  6998. .popover.right .arrow:after {
  6999. border-right-color: #444;
  7000. }
  7001. .popover.bottom .arrow:after {
  7002. border-bottom-color: #444;
  7003. }
  7004. .popover.left .arrow:after {
  7005. border-left-color: #444;
  7006. }
  7007. .dropdown-menu,
  7008. .dropdown-menu > li > a {
  7009. color: #c6c6c6;
  7010. background: #373737;
  7011. }
  7012. .dropdown-menu > li > a:focus,
  7013. .dropdown-menu > li > a:hover {
  7014. color: #fff;
  7015. background-image: -webkit-linear-gradient(top, #080808 0, #0f0f0f 100%);
  7016. background-image: -o-linear-gradient(top, #080808 0, #0f0f0f 100%);
  7017. background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f));
  7018. background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);
  7019. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);
  7020. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  7021. background-repeat: repeat-x;
  7022. }
  7023. .alert {
  7024. background-image: -webkit-linear-gradient(top, #faa732 0, #c17305 100%);
  7025. background-image: -o-linear-gradient(top, #faa732 0, #c17305 100%);
  7026. background-image: -webkit-gradient(linear, left top, left bottom, from(#faa732), to(#c17305));
  7027. background-image: linear-gradient(to bottom, #faa732 0%, #c17305 100%);
  7028. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3a87ad', endColorstr='#ff1a3c4e', GradientType=0);
  7029. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  7030. background-repeat: repeat-x;
  7031. }
  7032. .alert-error {
  7033. background-image: -webkit-linear-gradient(top, #fc5b5e 0, #d40408 100%);
  7034. background-image: -o-linear-gradient(top, #fc5b5e 0, #d40408 100%);
  7035. background-image: -webkit-gradient(linear, left top, left bottom, from(#fc5b5e), to(#d40408));
  7036. background-image: linear-gradient(to bottom, #fc5b5e 0%, #d40408 100%);
  7037. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3a87ad', endColorstr='#ff1a3c4e', GradientType=0);
  7038. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  7039. background-repeat: repeat-x;
  7040. }
  7041. .alert-success {
  7042. background-image: -webkit-linear-gradient(top, #5bb75b 0, #2d662d 100%);
  7043. background-image: -o-linear-gradient(top, #5bb75b 0, #2d662d 100%);
  7044. background-image: -webkit-gradient(linear, left top, left bottom, from(#5bb75b), to(#2d662d));
  7045. background-image: linear-gradient(to bottom, #5bb75b 0%, #2d662d 100%);
  7046. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3a87ad', endColorstr='#ff1a3c4e', GradientType=0);
  7047. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  7048. background-repeat: repeat-x;
  7049. }
  7050. .alert-info {
  7051. background-image: -webkit-linear-gradient(top, #3a87ad 0, #1a3c4e 100%);
  7052. background-image: -o-linear-gradient(top, #3a87ad 0, #1a3c4e 100%);
  7053. background-image: -webkit-gradient(linear, left top, left bottom, from(#3a87ad), to(#1a3c4e));
  7054. background-image: linear-gradient(to bottom, #3a87ad 0%, #1a3c4e 100%);
  7055. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3a87ad', endColorstr='#ff1a3c4e', GradientType=0);
  7056. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  7057. background-repeat: repeat-x;
  7058. }