bootstrap.css 148 KB

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