bootstrap.css 143 KB

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