bootstrap.css 143 KB

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