bootstrap.css 150 KB

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