bootstrap.css 142 KB

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