bootstrap.css 142 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754
  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-weight: 700;
  1183. line-height: 1.1;
  1184. }
  1185. h1 small,
  1186. h2 small,
  1187. h3 small,
  1188. h4 small,
  1189. h5 small,
  1190. h6 small,
  1191. .h1 small,
  1192. .h2 small,
  1193. .h3 small,
  1194. .h4 small,
  1195. .h5 small,
  1196. .h6 small,
  1197. h1 .small,
  1198. h2 .small,
  1199. h3 .small,
  1200. h4 .small,
  1201. h5 .small,
  1202. h6 .small,
  1203. .h1 .small,
  1204. .h2 .small,
  1205. .h3 .small,
  1206. .h4 .small,
  1207. .h5 .small,
  1208. .h6 .small {
  1209. font-weight: normal;
  1210. line-height: 1;
  1211. color: #777;
  1212. }
  1213. h1,
  1214. .h1,
  1215. h2,
  1216. .h2,
  1217. h3,
  1218. .h3 {
  1219. margin-top: 20px;
  1220. margin-bottom: 10px;
  1221. }
  1222. h1 small,
  1223. .h1 small,
  1224. h2 small,
  1225. .h2 small,
  1226. h3 small,
  1227. .h3 small,
  1228. h1 .small,
  1229. .h1 .small,
  1230. h2 .small,
  1231. .h2 .small,
  1232. h3 .small,
  1233. .h3 .small {
  1234. font-size: 65%;
  1235. }
  1236. h4,
  1237. .h4,
  1238. h5,
  1239. .h5,
  1240. h6,
  1241. .h6 {
  1242. margin-top: 10px;
  1243. margin-bottom: 10px;
  1244. }
  1245. h4 small,
  1246. .h4 small,
  1247. h5 small,
  1248. .h5 small,
  1249. h6 small,
  1250. .h6 small,
  1251. h4 .small,
  1252. .h4 .small,
  1253. h5 .small,
  1254. .h5 .small,
  1255. h6 .small,
  1256. .h6 .small {
  1257. font-size: 75%;
  1258. }
  1259. h1,
  1260. .h1 {
  1261. font-size: 36px;
  1262. }
  1263. h2,
  1264. .h2 {
  1265. font-size: 30px;
  1266. }
  1267. h3,
  1268. .h3 {
  1269. font-size: 24px;
  1270. }
  1271. h4,
  1272. .h4 {
  1273. font-size: 18px;
  1274. }
  1275. h5,
  1276. .h5 {
  1277. font-size: 14px;
  1278. }
  1279. h6,
  1280. .h6 {
  1281. font-size: 12px;
  1282. }
  1283. p {
  1284. margin: 0 0 10px;
  1285. }
  1286. .lead {
  1287. margin-bottom: 20px;
  1288. font-size: 16px;
  1289. font-weight: 300;
  1290. line-height: 1.4;
  1291. }
  1292. @media (min-width: 768px) {
  1293. .lead {
  1294. font-size: 21px;
  1295. }
  1296. }
  1297. small,
  1298. .small {
  1299. font-size: 85%;
  1300. }
  1301. mark,
  1302. .mark {
  1303. padding: .2em;
  1304. background-color: #fcf8e3;
  1305. }
  1306. .text-left {
  1307. text-align: left;
  1308. }
  1309. .text-right {
  1310. text-align: right;
  1311. }
  1312. .text-center {
  1313. text-align: center;
  1314. }
  1315. .text-justify {
  1316. text-align: justify;
  1317. }
  1318. .text-nowrap {
  1319. white-space: nowrap;
  1320. }
  1321. .text-lowercase {
  1322. text-transform: lowercase;
  1323. }
  1324. .text-uppercase {
  1325. text-transform: uppercase;
  1326. }
  1327. .text-capitalize {
  1328. text-transform: capitalize;
  1329. }
  1330. .text-muted {
  1331. color: #777;
  1332. }
  1333. .text-primary {
  1334. color: #337ab7;
  1335. }
  1336. a.text-primary:hover,
  1337. a.text-primary:focus {
  1338. color: #286090;
  1339. }
  1340. .text-success {
  1341. color: #3c763d;
  1342. }
  1343. a.text-success:hover,
  1344. a.text-success:focus {
  1345. color: #2b542c;
  1346. }
  1347. .text-info {
  1348. color: #31708f;
  1349. }
  1350. a.text-info:hover,
  1351. a.text-info:focus {
  1352. color: #245269;
  1353. }
  1354. .text-warning {
  1355. color: #8a6d3b;
  1356. }
  1357. a.text-warning:hover,
  1358. a.text-warning:focus {
  1359. color: #66512c;
  1360. }
  1361. .text-danger {
  1362. color: #a94442;
  1363. }
  1364. a.text-danger:hover,
  1365. a.text-danger:focus {
  1366. color: #843534;
  1367. }
  1368. .bg-primary {
  1369. color: #fff;
  1370. background-color: #337ab7;
  1371. }
  1372. a.bg-primary:hover,
  1373. a.bg-primary:focus {
  1374. background-color: #286090;
  1375. }
  1376. .bg-success {
  1377. background-color: #dff0d8;
  1378. }
  1379. a.bg-success:hover,
  1380. a.bg-success:focus {
  1381. background-color: #c1e2b3;
  1382. }
  1383. .bg-info {
  1384. background-color: #d9edf7;
  1385. }
  1386. a.bg-info:hover,
  1387. a.bg-info:focus {
  1388. background-color: #afd9ee;
  1389. }
  1390. .bg-warning {
  1391. background-color: #fcf8e3;
  1392. }
  1393. a.bg-warning:hover,
  1394. a.bg-warning:focus {
  1395. background-color: #f7ecb5;
  1396. }
  1397. .bg-danger {
  1398. background-color: #f2dede;
  1399. }
  1400. a.bg-danger:hover,
  1401. a.bg-danger:focus {
  1402. background-color: #e4b9b9;
  1403. }
  1404. .page-header {
  1405. padding-bottom: 9px;
  1406. margin: 40px 0 20px;
  1407. border-bottom: 1px solid #eee;
  1408. }
  1409. ul,
  1410. ol {
  1411. margin-top: 0;
  1412. margin-bottom: 10px;
  1413. }
  1414. ul ul,
  1415. ol ul,
  1416. ul ol,
  1417. ol ol {
  1418. margin-bottom: 0;
  1419. }
  1420. .list-unstyled {
  1421. padding-left: 0;
  1422. list-style: none;
  1423. }
  1424. .list-inline {
  1425. padding-left: 0;
  1426. margin-left: -5px;
  1427. list-style: none;
  1428. }
  1429. .list-inline > li {
  1430. display: inline-block;
  1431. padding-right: 5px;
  1432. padding-left: 5px;
  1433. }
  1434. dl {
  1435. margin-top: 0;
  1436. margin-bottom: 20px;
  1437. }
  1438. dt,
  1439. dd {
  1440. line-height: 1.42857143;
  1441. }
  1442. dt {
  1443. font-weight: bold;
  1444. }
  1445. dd {
  1446. margin-left: 0;
  1447. }
  1448. @media (min-width: 768px) {
  1449. .dl-horizontal dt {
  1450. float: left;
  1451. width: 160px;
  1452. overflow: hidden;
  1453. clear: left;
  1454. text-align: right;
  1455. text-overflow: ellipsis;
  1456. white-space: nowrap;
  1457. }
  1458. .dl-horizontal dd {
  1459. margin-left: 180px;
  1460. }
  1461. }
  1462. abbr[title],
  1463. abbr[data-original-title] {
  1464. cursor: help;
  1465. border-bottom: 1px dotted #777;
  1466. }
  1467. .initialism {
  1468. font-size: 90%;
  1469. text-transform: uppercase;
  1470. }
  1471. blockquote {
  1472. padding: 10px 20px;
  1473. margin: 0 0 20px;
  1474. font-size: 17.5px;
  1475. border-left: 5px solid #eee;
  1476. }
  1477. blockquote p:last-child,
  1478. blockquote ul:last-child,
  1479. blockquote ol:last-child {
  1480. margin-bottom: 0;
  1481. }
  1482. blockquote footer,
  1483. blockquote small,
  1484. blockquote .small {
  1485. display: block;
  1486. font-size: 80%;
  1487. line-height: 1.42857143;
  1488. color: #777;
  1489. }
  1490. blockquote footer:before,
  1491. blockquote small:before,
  1492. blockquote .small:before {
  1493. content: '\2014 \00A0';
  1494. }
  1495. .blockquote-reverse,
  1496. blockquote.pull-right {
  1497. padding-right: 15px;
  1498. padding-left: 0;
  1499. text-align: right;
  1500. border-right: 5px solid #eee;
  1501. border-left: 0;
  1502. }
  1503. .blockquote-reverse footer:before,
  1504. blockquote.pull-right footer:before,
  1505. .blockquote-reverse small:before,
  1506. blockquote.pull-right small:before,
  1507. .blockquote-reverse .small:before,
  1508. blockquote.pull-right .small:before {
  1509. content: '';
  1510. }
  1511. .blockquote-reverse footer:after,
  1512. blockquote.pull-right footer:after,
  1513. .blockquote-reverse small:after,
  1514. blockquote.pull-right small:after,
  1515. .blockquote-reverse .small:after,
  1516. blockquote.pull-right .small:after {
  1517. content: '\00A0 \2014';
  1518. }
  1519. address {
  1520. margin-bottom: 20px;
  1521. font-style: normal;
  1522. line-height: 1.42857143;
  1523. }
  1524. code,
  1525. kbd,
  1526. pre,
  1527. samp {
  1528. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  1529. }
  1530. code {
  1531. padding: 2px 4px;
  1532. font-size: 90%;
  1533. color: #c7254e;
  1534. background-color: #f9f2f4;
  1535. border-radius: 4px;
  1536. }
  1537. kbd {
  1538. padding: 2px 4px;
  1539. font-size: 90%;
  1540. color: #fff;
  1541. background-color: #333;
  1542. border-radius: 3px;
  1543. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
  1544. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
  1545. }
  1546. kbd kbd {
  1547. padding: 0;
  1548. font-size: 100%;
  1549. font-weight: bold;
  1550. -webkit-box-shadow: none;
  1551. box-shadow: none;
  1552. }
  1553. pre {
  1554. display: block;
  1555. padding: 9.5px;
  1556. margin: 0 0 10px;
  1557. font-size: 13px;
  1558. line-height: 1.42857143;
  1559. color: #333;
  1560. word-break: break-all;
  1561. word-wrap: break-word;
  1562. background-color: #f5f5f5;
  1563. border: 1px solid #ccc;
  1564. border-radius: 4px;
  1565. }
  1566. pre code {
  1567. padding: 0;
  1568. font-size: inherit;
  1569. color: inherit;
  1570. white-space: pre-wrap;
  1571. background-color: transparent;
  1572. border-radius: 0;
  1573. }
  1574. .pre-scrollable {
  1575. max-height: 340px;
  1576. overflow-y: scroll;
  1577. }
  1578. .container {
  1579. padding-right: 15px;
  1580. padding-left: 15px;
  1581. margin-right: auto;
  1582. margin-left: auto;
  1583. }
  1584. @media (min-width: 768px) {
  1585. .container {
  1586. width: 750px;
  1587. }
  1588. }
  1589. @media (min-width: 992px) {
  1590. .container {
  1591. width: 970px;
  1592. }
  1593. }
  1594. @media (min-width: 1200px) {
  1595. .container {
  1596. width: 1170px;
  1597. }
  1598. }
  1599. .container-fluid {
  1600. padding-right: 15px;
  1601. padding-left: 15px;
  1602. margin-right: auto;
  1603. margin-left: auto;
  1604. }
  1605. .row {
  1606. margin-right: -15px;
  1607. margin-left: -15px;
  1608. }
  1609. .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 {
  1610. position: relative;
  1611. min-height: 1px;
  1612. padding-right: 15px;
  1613. padding-left: 15px;
  1614. }
  1615. .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 {
  1616. float: left;
  1617. }
  1618. .col-xs-12 {
  1619. width: 100%;
  1620. }
  1621. .col-xs-11 {
  1622. width: 91.66666667%;
  1623. }
  1624. .col-xs-10 {
  1625. width: 83.33333333%;
  1626. }
  1627. .col-xs-9 {
  1628. width: 75%;
  1629. }
  1630. .col-xs-8 {
  1631. width: 66.66666667%;
  1632. }
  1633. .col-xs-7 {
  1634. width: 58.33333333%;
  1635. }
  1636. .col-xs-6 {
  1637. width: 50%;
  1638. }
  1639. .col-xs-5 {
  1640. width: 41.66666667%;
  1641. }
  1642. .col-xs-4 {
  1643. width: 33.33333333%;
  1644. }
  1645. .col-xs-3 {
  1646. width: 25%;
  1647. }
  1648. .col-xs-2 {
  1649. width: 16.66666667%;
  1650. }
  1651. .col-xs-1 {
  1652. width: 8.33333333%;
  1653. }
  1654. .col-xs-pull-12 {
  1655. right: 100%;
  1656. }
  1657. .col-xs-pull-11 {
  1658. right: 91.66666667%;
  1659. }
  1660. .col-xs-pull-10 {
  1661. right: 83.33333333%;
  1662. }
  1663. .col-xs-pull-9 {
  1664. right: 75%;
  1665. }
  1666. .col-xs-pull-8 {
  1667. right: 66.66666667%;
  1668. }
  1669. .col-xs-pull-7 {
  1670. right: 58.33333333%;
  1671. }
  1672. .col-xs-pull-6 {
  1673. right: 50%;
  1674. }
  1675. .col-xs-pull-5 {
  1676. right: 41.66666667%;
  1677. }
  1678. .col-xs-pull-4 {
  1679. right: 33.33333333%;
  1680. }
  1681. .col-xs-pull-3 {
  1682. right: 25%;
  1683. }
  1684. .col-xs-pull-2 {
  1685. right: 16.66666667%;
  1686. }
  1687. .col-xs-pull-1 {
  1688. right: 8.33333333%;
  1689. }
  1690. .col-xs-pull-0 {
  1691. right: auto;
  1692. }
  1693. .col-xs-push-12 {
  1694. left: 100%;
  1695. }
  1696. .col-xs-push-11 {
  1697. left: 91.66666667%;
  1698. }
  1699. .col-xs-push-10 {
  1700. left: 83.33333333%;
  1701. }
  1702. .col-xs-push-9 {
  1703. left: 75%;
  1704. }
  1705. .col-xs-push-8 {
  1706. left: 66.66666667%;
  1707. }
  1708. .col-xs-push-7 {
  1709. left: 58.33333333%;
  1710. }
  1711. .col-xs-push-6 {
  1712. left: 50%;
  1713. }
  1714. .col-xs-push-5 {
  1715. left: 41.66666667%;
  1716. }
  1717. .col-xs-push-4 {
  1718. left: 33.33333333%;
  1719. }
  1720. .col-xs-push-3 {
  1721. left: 25%;
  1722. }
  1723. .col-xs-push-2 {
  1724. left: 16.66666667%;
  1725. }
  1726. .col-xs-push-1 {
  1727. left: 8.33333333%;
  1728. }
  1729. .col-xs-push-0 {
  1730. left: auto;
  1731. }
  1732. .col-xs-offset-12 {
  1733. margin-left: 100%;
  1734. }
  1735. .col-xs-offset-11 {
  1736. margin-left: 91.66666667%;
  1737. }
  1738. .col-xs-offset-10 {
  1739. margin-left: 83.33333333%;
  1740. }
  1741. .col-xs-offset-9 {
  1742. margin-left: 75%;
  1743. }
  1744. .col-xs-offset-8 {
  1745. margin-left: 66.66666667%;
  1746. }
  1747. .col-xs-offset-7 {
  1748. margin-left: 58.33333333%;
  1749. }
  1750. .col-xs-offset-6 {
  1751. margin-left: 50%;
  1752. }
  1753. .col-xs-offset-5 {
  1754. margin-left: 41.66666667%;
  1755. }
  1756. .col-xs-offset-4 {
  1757. margin-left: 33.33333333%;
  1758. }
  1759. .col-xs-offset-3 {
  1760. margin-left: 25%;
  1761. }
  1762. .col-xs-offset-2 {
  1763. margin-left: 16.66666667%;
  1764. }
  1765. .col-xs-offset-1 {
  1766. margin-left: 8.33333333%;
  1767. }
  1768. .col-xs-offset-0 {
  1769. margin-left: 0;
  1770. }
  1771. @media (min-width: 768px) {
  1772. .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 {
  1773. float: left;
  1774. }
  1775. .col-sm-12 {
  1776. width: 100%;
  1777. }
  1778. .col-sm-11 {
  1779. width: 91.66666667%;
  1780. }
  1781. .col-sm-10 {
  1782. width: 83.33333333%;
  1783. }
  1784. .col-sm-9 {
  1785. width: 75%;
  1786. }
  1787. .col-sm-8 {
  1788. width: 66.66666667%;
  1789. }
  1790. .col-sm-7 {
  1791. width: 58.33333333%;
  1792. }
  1793. .col-sm-6 {
  1794. width: 50%;
  1795. }
  1796. .col-sm-5 {
  1797. width: 41.66666667%;
  1798. }
  1799. .col-sm-4 {
  1800. width: 33.33333333%;
  1801. }
  1802. .col-sm-3 {
  1803. width: 25%;
  1804. }
  1805. .col-sm-2 {
  1806. width: 16.66666667%;
  1807. }
  1808. .col-sm-1 {
  1809. width: 8.33333333%;
  1810. }
  1811. .col-sm-pull-12 {
  1812. right: 100%;
  1813. }
  1814. .col-sm-pull-11 {
  1815. right: 91.66666667%;
  1816. }
  1817. .col-sm-pull-10 {
  1818. right: 83.33333333%;
  1819. }
  1820. .col-sm-pull-9 {
  1821. right: 75%;
  1822. }
  1823. .col-sm-pull-8 {
  1824. right: 66.66666667%;
  1825. }
  1826. .col-sm-pull-7 {
  1827. right: 58.33333333%;
  1828. }
  1829. .col-sm-pull-6 {
  1830. right: 50%;
  1831. }
  1832. .col-sm-pull-5 {
  1833. right: 41.66666667%;
  1834. }
  1835. .col-sm-pull-4 {
  1836. right: 33.33333333%;
  1837. }
  1838. .col-sm-pull-3 {
  1839. right: 25%;
  1840. }
  1841. .col-sm-pull-2 {
  1842. right: 16.66666667%;
  1843. }
  1844. .col-sm-pull-1 {
  1845. right: 8.33333333%;
  1846. }
  1847. .col-sm-pull-0 {
  1848. right: auto;
  1849. }
  1850. .col-sm-push-12 {
  1851. left: 100%;
  1852. }
  1853. .col-sm-push-11 {
  1854. left: 91.66666667%;
  1855. }
  1856. .col-sm-push-10 {
  1857. left: 83.33333333%;
  1858. }
  1859. .col-sm-push-9 {
  1860. left: 75%;
  1861. }
  1862. .col-sm-push-8 {
  1863. left: 66.66666667%;
  1864. }
  1865. .col-sm-push-7 {
  1866. left: 58.33333333%;
  1867. }
  1868. .col-sm-push-6 {
  1869. left: 50%;
  1870. }
  1871. .col-sm-push-5 {
  1872. left: 41.66666667%;
  1873. }
  1874. .col-sm-push-4 {
  1875. left: 33.33333333%;
  1876. }
  1877. .col-sm-push-3 {
  1878. left: 25%;
  1879. }
  1880. .col-sm-push-2 {
  1881. left: 16.66666667%;
  1882. }
  1883. .col-sm-push-1 {
  1884. left: 8.33333333%;
  1885. }
  1886. .col-sm-push-0 {
  1887. left: auto;
  1888. }
  1889. .col-sm-offset-12 {
  1890. margin-left: 100%;
  1891. }
  1892. .col-sm-offset-11 {
  1893. margin-left: 91.66666667%;
  1894. }
  1895. .col-sm-offset-10 {
  1896. margin-left: 83.33333333%;
  1897. }
  1898. .col-sm-offset-9 {
  1899. margin-left: 75%;
  1900. }
  1901. .col-sm-offset-8 {
  1902. margin-left: 66.66666667%;
  1903. }
  1904. .col-sm-offset-7 {
  1905. margin-left: 58.33333333%;
  1906. }
  1907. .col-sm-offset-6 {
  1908. margin-left: 50%;
  1909. }
  1910. .col-sm-offset-5 {
  1911. margin-left: 41.66666667%;
  1912. }
  1913. .col-sm-offset-4 {
  1914. margin-left: 33.33333333%;
  1915. }
  1916. .col-sm-offset-3 {
  1917. margin-left: 25%;
  1918. }
  1919. .col-sm-offset-2 {
  1920. margin-left: 16.66666667%;
  1921. }
  1922. .col-sm-offset-1 {
  1923. margin-left: 8.33333333%;
  1924. }
  1925. .col-sm-offset-0 {
  1926. margin-left: 0;
  1927. }
  1928. }
  1929. @media (min-width: 992px) {
  1930. .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 {
  1931. float: left;
  1932. }
  1933. .col-md-12 {
  1934. width: 100%;
  1935. }
  1936. .col-md-11 {
  1937. width: 91.66666667%;
  1938. }
  1939. .col-md-10 {
  1940. width: 83.33333333%;
  1941. }
  1942. .col-md-9 {
  1943. width: 75%;
  1944. }
  1945. .col-md-8 {
  1946. width: 66.66666667%;
  1947. }
  1948. .col-md-7 {
  1949. width: 58.33333333%;
  1950. }
  1951. .col-md-6 {
  1952. width: 50%;
  1953. }
  1954. .col-md-5 {
  1955. width: 41.66666667%;
  1956. }
  1957. .col-md-4 {
  1958. width: 33.33333333%;
  1959. }
  1960. .col-md-3 {
  1961. width: 25%;
  1962. }
  1963. .col-md-2 {
  1964. width: 16.66666667%;
  1965. }
  1966. .col-md-1 {
  1967. width: 8.33333333%;
  1968. }
  1969. .col-md-pull-12 {
  1970. right: 100%;
  1971. }
  1972. .col-md-pull-11 {
  1973. right: 91.66666667%;
  1974. }
  1975. .col-md-pull-10 {
  1976. right: 83.33333333%;
  1977. }
  1978. .col-md-pull-9 {
  1979. right: 75%;
  1980. }
  1981. .col-md-pull-8 {
  1982. right: 66.66666667%;
  1983. }
  1984. .col-md-pull-7 {
  1985. right: 58.33333333%;
  1986. }
  1987. .col-md-pull-6 {
  1988. right: 50%;
  1989. }
  1990. .col-md-pull-5 {
  1991. right: 41.66666667%;
  1992. }
  1993. .col-md-pull-4 {
  1994. right: 33.33333333%;
  1995. }
  1996. .col-md-pull-3 {
  1997. right: 25%;
  1998. }
  1999. .col-md-pull-2 {
  2000. right: 16.66666667%;
  2001. }
  2002. .col-md-pull-1 {
  2003. right: 8.33333333%;
  2004. }
  2005. .col-md-pull-0 {
  2006. right: auto;
  2007. }
  2008. .col-md-push-12 {
  2009. left: 100%;
  2010. }
  2011. .col-md-push-11 {
  2012. left: 91.66666667%;
  2013. }
  2014. .col-md-push-10 {
  2015. left: 83.33333333%;
  2016. }
  2017. .col-md-push-9 {
  2018. left: 75%;
  2019. }
  2020. .col-md-push-8 {
  2021. left: 66.66666667%;
  2022. }
  2023. .col-md-push-7 {
  2024. left: 58.33333333%;
  2025. }
  2026. .col-md-push-6 {
  2027. left: 50%;
  2028. }
  2029. .col-md-push-5 {
  2030. left: 41.66666667%;
  2031. }
  2032. .col-md-push-4 {
  2033. left: 33.33333333%;
  2034. }
  2035. .col-md-push-3 {
  2036. left: 25%;
  2037. }
  2038. .col-md-push-2 {
  2039. left: 16.66666667%;
  2040. }
  2041. .col-md-push-1 {
  2042. left: 8.33333333%;
  2043. }
  2044. .col-md-push-0 {
  2045. left: auto;
  2046. }
  2047. .col-md-offset-12 {
  2048. margin-left: 100%;
  2049. }
  2050. .col-md-offset-11 {
  2051. margin-left: 91.66666667%;
  2052. }
  2053. .col-md-offset-10 {
  2054. margin-left: 83.33333333%;
  2055. }
  2056. .col-md-offset-9 {
  2057. margin-left: 75%;
  2058. }
  2059. .col-md-offset-8 {
  2060. margin-left: 66.66666667%;
  2061. }
  2062. .col-md-offset-7 {
  2063. margin-left: 58.33333333%;
  2064. }
  2065. .col-md-offset-6 {
  2066. margin-left: 50%;
  2067. }
  2068. .col-md-offset-5 {
  2069. margin-left: 41.66666667%;
  2070. }
  2071. .col-md-offset-4 {
  2072. margin-left: 33.33333333%;
  2073. }
  2074. .col-md-offset-3 {
  2075. margin-left: 25%;
  2076. }
  2077. .col-md-offset-2 {
  2078. margin-left: 16.66666667%;
  2079. }
  2080. .col-md-offset-1 {
  2081. margin-left: 8.33333333%;
  2082. }
  2083. .col-md-offset-0 {
  2084. margin-left: 0;
  2085. }
  2086. }
  2087. @media (min-width: 1200px) {
  2088. .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 {
  2089. float: left;
  2090. }
  2091. .col-lg-12 {
  2092. width: 100%;
  2093. }
  2094. .col-lg-11 {
  2095. width: 91.66666667%;
  2096. }
  2097. .col-lg-10 {
  2098. width: 83.33333333%;
  2099. }
  2100. .col-lg-9 {
  2101. width: 75%;
  2102. }
  2103. .col-lg-8 {
  2104. width: 66.66666667%;
  2105. }
  2106. .col-lg-7 {
  2107. width: 58.33333333%;
  2108. }
  2109. .col-lg-6 {
  2110. width: 50%;
  2111. }
  2112. .col-lg-5 {
  2113. width: 41.66666667%;
  2114. }
  2115. .col-lg-4 {
  2116. width: 33.33333333%;
  2117. }
  2118. .col-lg-3 {
  2119. width: 25%;
  2120. }
  2121. .col-lg-2 {
  2122. width: 16.66666667%;
  2123. }
  2124. .col-lg-1 {
  2125. width: 8.33333333%;
  2126. }
  2127. .col-lg-pull-12 {
  2128. right: 100%;
  2129. }
  2130. .col-lg-pull-11 {
  2131. right: 91.66666667%;
  2132. }
  2133. .col-lg-pull-10 {
  2134. right: 83.33333333%;
  2135. }
  2136. .col-lg-pull-9 {
  2137. right: 75%;
  2138. }
  2139. .col-lg-pull-8 {
  2140. right: 66.66666667%;
  2141. }
  2142. .col-lg-pull-7 {
  2143. right: 58.33333333%;
  2144. }
  2145. .col-lg-pull-6 {
  2146. right: 50%;
  2147. }
  2148. .col-lg-pull-5 {
  2149. right: 41.66666667%;
  2150. }
  2151. .col-lg-pull-4 {
  2152. right: 33.33333333%;
  2153. }
  2154. .col-lg-pull-3 {
  2155. right: 25%;
  2156. }
  2157. .col-lg-pull-2 {
  2158. right: 16.66666667%;
  2159. }
  2160. .col-lg-pull-1 {
  2161. right: 8.33333333%;
  2162. }
  2163. .col-lg-pull-0 {
  2164. right: auto;
  2165. }
  2166. .col-lg-push-12 {
  2167. left: 100%;
  2168. }
  2169. .col-lg-push-11 {
  2170. left: 91.66666667%;
  2171. }
  2172. .col-lg-push-10 {
  2173. left: 83.33333333%;
  2174. }
  2175. .col-lg-push-9 {
  2176. left: 75%;
  2177. }
  2178. .col-lg-push-8 {
  2179. left: 66.66666667%;
  2180. }
  2181. .col-lg-push-7 {
  2182. left: 58.33333333%;
  2183. }
  2184. .col-lg-push-6 {
  2185. left: 50%;
  2186. }
  2187. .col-lg-push-5 {
  2188. left: 41.66666667%;
  2189. }
  2190. .col-lg-push-4 {
  2191. left: 33.33333333%;
  2192. }
  2193. .col-lg-push-3 {
  2194. left: 25%;
  2195. }
  2196. .col-lg-push-2 {
  2197. left: 16.66666667%;
  2198. }
  2199. .col-lg-push-1 {
  2200. left: 8.33333333%;
  2201. }
  2202. .col-lg-push-0 {
  2203. left: auto;
  2204. }
  2205. .col-lg-offset-12 {
  2206. margin-left: 100%;
  2207. }
  2208. .col-lg-offset-11 {
  2209. margin-left: 91.66666667%;
  2210. }
  2211. .col-lg-offset-10 {
  2212. margin-left: 83.33333333%;
  2213. }
  2214. .col-lg-offset-9 {
  2215. margin-left: 75%;
  2216. }
  2217. .col-lg-offset-8 {
  2218. margin-left: 66.66666667%;
  2219. }
  2220. .col-lg-offset-7 {
  2221. margin-left: 58.33333333%;
  2222. }
  2223. .col-lg-offset-6 {
  2224. margin-left: 50%;
  2225. }
  2226. .col-lg-offset-5 {
  2227. margin-left: 41.66666667%;
  2228. }
  2229. .col-lg-offset-4 {
  2230. margin-left: 33.33333333%;
  2231. }
  2232. .col-lg-offset-3 {
  2233. margin-left: 25%;
  2234. }
  2235. .col-lg-offset-2 {
  2236. margin-left: 16.66666667%;
  2237. }
  2238. .col-lg-offset-1 {
  2239. margin-left: 8.33333333%;
  2240. }
  2241. .col-lg-offset-0 {
  2242. margin-left: 0;
  2243. }
  2244. }
  2245. table {
  2246. background-color: transparent;
  2247. }
  2248. caption {
  2249. padding-top: 8px;
  2250. padding-bottom: 8px;
  2251. color: #777;
  2252. text-align: left;
  2253. }
  2254. th {
  2255. text-align: left;
  2256. }
  2257. .table {
  2258. width: 100%;
  2259. max-width: 100%;
  2260. margin-bottom: 20px;
  2261. }
  2262. .table > thead > tr > th,
  2263. .table > tbody > tr > th,
  2264. .table > tfoot > tr > th,
  2265. .table > thead > tr > td,
  2266. .table > tbody > tr > td,
  2267. .table > tfoot > tr > td {
  2268. padding: 8px;
  2269. line-height: 1.42857143;
  2270. vertical-align: top;
  2271. border-top: 1px solid #ddd;
  2272. }
  2273. .table > thead > tr > th {
  2274. vertical-align: bottom;
  2275. border-bottom: 2px solid #ddd;
  2276. }
  2277. .table > caption + thead > tr:first-child > th,
  2278. .table > colgroup + thead > tr:first-child > th,
  2279. .table > thead:first-child > tr:first-child > th,
  2280. .table > caption + thead > tr:first-child > td,
  2281. .table > colgroup + thead > tr:first-child > td,
  2282. .table > thead:first-child > tr:first-child > td {
  2283. border-top: 0;
  2284. }
  2285. .table > tbody + tbody {
  2286. border-top: 2px solid #ddd;
  2287. }
  2288. .table .table {
  2289. background-color: #fff;
  2290. }
  2291. .table-condensed > thead > tr > th,
  2292. .table-condensed > tbody > tr > th,
  2293. .table-condensed > tfoot > tr > th,
  2294. .table-condensed > thead > tr > td,
  2295. .table-condensed > tbody > tr > td,
  2296. .table-condensed > tfoot > tr > td {
  2297. padding: 5px;
  2298. }
  2299. .table-bordered {
  2300. border: 1px solid #ddd;
  2301. }
  2302. .table-bordered > thead > tr > th,
  2303. .table-bordered > tbody > tr > th,
  2304. .table-bordered > tfoot > tr > th,
  2305. .table-bordered > thead > tr > td,
  2306. .table-bordered > tbody > tr > td,
  2307. .table-bordered > tfoot > tr > td {
  2308. border: 1px solid #ddd;
  2309. }
  2310. .table-bordered > thead > tr > th,
  2311. .table-bordered > thead > tr > td {
  2312. border-bottom-width: 2px;
  2313. }
  2314. .table-striped > tbody > tr:nth-of-type(odd) {
  2315. background-color: #f9f9f9;
  2316. }
  2317. .table-hover > tbody > tr:hover {
  2318. background-color: #f5f5f5;
  2319. }
  2320. table col[class*="col-"] {
  2321. position: static;
  2322. display: table-column;
  2323. float: none;
  2324. }
  2325. table td[class*="col-"],
  2326. table th[class*="col-"] {
  2327. position: static;
  2328. display: table-cell;
  2329. float: none;
  2330. }
  2331. .table > thead > tr > td.active,
  2332. .table > tbody > tr > td.active,
  2333. .table > tfoot > tr > td.active,
  2334. .table > thead > tr > th.active,
  2335. .table > tbody > tr > th.active,
  2336. .table > tfoot > tr > th.active,
  2337. .table > thead > tr.active > td,
  2338. .table > tbody > tr.active > td,
  2339. .table > tfoot > tr.active > td,
  2340. .table > thead > tr.active > th,
  2341. .table > tbody > tr.active > th,
  2342. .table > tfoot > tr.active > th {
  2343. background-color: #f5f5f5;
  2344. }
  2345. .table-hover > tbody > tr > td.active:hover,
  2346. .table-hover > tbody > tr > th.active:hover,
  2347. .table-hover > tbody > tr.active:hover > td,
  2348. .table-hover > tbody > tr:hover > .active,
  2349. .table-hover > tbody > tr.active:hover > th {
  2350. background-color: #e8e8e8;
  2351. }
  2352. .table > thead > tr > td.success,
  2353. .table > tbody > tr > td.success,
  2354. .table > tfoot > tr > td.success,
  2355. .table > thead > tr > th.success,
  2356. .table > tbody > tr > th.success,
  2357. .table > tfoot > tr > th.success,
  2358. .table > thead > tr.success > td,
  2359. .table > tbody > tr.success > td,
  2360. .table > tfoot > tr.success > td,
  2361. .table > thead > tr.success > th,
  2362. .table > tbody > tr.success > th,
  2363. .table > tfoot > tr.success > th {
  2364. background-color: #dff0d8;
  2365. }
  2366. .table-hover > tbody > tr > td.success:hover,
  2367. .table-hover > tbody > tr > th.success:hover,
  2368. .table-hover > tbody > tr.success:hover > td,
  2369. .table-hover > tbody > tr:hover > .success,
  2370. .table-hover > tbody > tr.success:hover > th {
  2371. background-color: #d0e9c6;
  2372. }
  2373. .table > thead > tr > td.info,
  2374. .table > tbody > tr > td.info,
  2375. .table > tfoot > tr > td.info,
  2376. .table > thead > tr > th.info,
  2377. .table > tbody > tr > th.info,
  2378. .table > tfoot > tr > th.info,
  2379. .table > thead > tr.info > td,
  2380. .table > tbody > tr.info > td,
  2381. .table > tfoot > tr.info > td,
  2382. .table > thead > tr.info > th,
  2383. .table > tbody > tr.info > th,
  2384. .table > tfoot > tr.info > th {
  2385. background-color: #d9edf7;
  2386. }
  2387. .table-hover > tbody > tr > td.info:hover,
  2388. .table-hover > tbody > tr > th.info:hover,
  2389. .table-hover > tbody > tr.info:hover > td,
  2390. .table-hover > tbody > tr:hover > .info,
  2391. .table-hover > tbody > tr.info:hover > th {
  2392. background-color: #c4e3f3;
  2393. }
  2394. .table > thead > tr > td.warning,
  2395. .table > tbody > tr > td.warning,
  2396. .table > tfoot > tr > td.warning,
  2397. .table > thead > tr > th.warning,
  2398. .table > tbody > tr > th.warning,
  2399. .table > tfoot > tr > th.warning,
  2400. .table > thead > tr.warning > td,
  2401. .table > tbody > tr.warning > td,
  2402. .table > tfoot > tr.warning > td,
  2403. .table > thead > tr.warning > th,
  2404. .table > tbody > tr.warning > th,
  2405. .table > tfoot > tr.warning > th {
  2406. background-color: #fcf8e3;
  2407. }
  2408. .table-hover > tbody > tr > td.warning:hover,
  2409. .table-hover > tbody > tr > th.warning:hover,
  2410. .table-hover > tbody > tr.warning:hover > td,
  2411. .table-hover > tbody > tr:hover > .warning,
  2412. .table-hover > tbody > tr.warning:hover > th {
  2413. background-color: #faf2cc;
  2414. }
  2415. .table > thead > tr > td.danger,
  2416. .table > tbody > tr > td.danger,
  2417. .table > tfoot > tr > td.danger,
  2418. .table > thead > tr > th.danger,
  2419. .table > tbody > tr > th.danger,
  2420. .table > tfoot > tr > th.danger,
  2421. .table > thead > tr.danger > td,
  2422. .table > tbody > tr.danger > td,
  2423. .table > tfoot > tr.danger > td,
  2424. .table > thead > tr.danger > th,
  2425. .table > tbody > tr.danger > th,
  2426. .table > tfoot > tr.danger > th {
  2427. background-color: #f2dede;
  2428. }
  2429. .table-hover > tbody > tr > td.danger:hover,
  2430. .table-hover > tbody > tr > th.danger:hover,
  2431. .table-hover > tbody > tr.danger:hover > td,
  2432. .table-hover > tbody > tr:hover > .danger,
  2433. .table-hover > tbody > tr.danger:hover > th {
  2434. background-color: #ebcccc;
  2435. }
  2436. .table-responsive {
  2437. min-height: .01%;
  2438. overflow-x: auto;
  2439. }
  2440. @media screen and (max-width: 767px) {
  2441. .table-responsive {
  2442. width: 100%;
  2443. margin-bottom: 15px;
  2444. overflow-y: hidden;
  2445. -ms-overflow-style: -ms-autohiding-scrollbar;
  2446. border: 1px solid #ddd;
  2447. }
  2448. .table-responsive > .table {
  2449. margin-bottom: 0;
  2450. }
  2451. .table-responsive > .table > thead > tr > th,
  2452. .table-responsive > .table > tbody > tr > th,
  2453. .table-responsive > .table > tfoot > tr > th,
  2454. .table-responsive > .table > thead > tr > td,
  2455. .table-responsive > .table > tbody > tr > td,
  2456. .table-responsive > .table > tfoot > tr > td {
  2457. white-space: nowrap;
  2458. }
  2459. .table-responsive > .table-bordered {
  2460. border: 0;
  2461. }
  2462. .table-responsive > .table-bordered > thead > tr > th:first-child,
  2463. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  2464. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  2465. .table-responsive > .table-bordered > thead > tr > td:first-child,
  2466. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  2467. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  2468. border-left: 0;
  2469. }
  2470. .table-responsive > .table-bordered > thead > tr > th:last-child,
  2471. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  2472. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  2473. .table-responsive > .table-bordered > thead > tr > td:last-child,
  2474. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  2475. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  2476. border-right: 0;
  2477. }
  2478. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  2479. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  2480. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  2481. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  2482. border-bottom: 0;
  2483. }
  2484. }
  2485. fieldset {
  2486. min-width: 0;
  2487. padding: 0;
  2488. margin: 0;
  2489. border: 0;
  2490. }
  2491. legend {
  2492. display: block;
  2493. width: 100%;
  2494. padding: 0;
  2495. margin-bottom: 20px;
  2496. font-size: 21px;
  2497. line-height: inherit;
  2498. color: #333;
  2499. border: 0;
  2500. border-bottom: 1px solid #e5e5e5;
  2501. }
  2502. label {
  2503. display: inline-block;
  2504. max-width: 100%;
  2505. margin-bottom: 5px;
  2506. font-weight: bold;
  2507. }
  2508. input[type="search"] {
  2509. -webkit-box-sizing: border-box;
  2510. -moz-box-sizing: border-box;
  2511. box-sizing: border-box;
  2512. }
  2513. input[type="radio"],
  2514. input[type="checkbox"] {
  2515. margin: 4px 0 0;
  2516. margin-top: 1px \9;
  2517. line-height: normal;
  2518. }
  2519. input[type="file"] {
  2520. display: block;
  2521. }
  2522. input[type="range"] {
  2523. display: block;
  2524. width: 100%;
  2525. }
  2526. select[multiple],
  2527. select[size] {
  2528. height: auto;
  2529. }
  2530. input[type="file"]:focus,
  2531. input[type="radio"]:focus,
  2532. input[type="checkbox"]:focus {
  2533. outline: 5px auto -webkit-focus-ring-color;
  2534. outline-offset: -2px;
  2535. }
  2536. output {
  2537. display: block;
  2538. padding-top: 7px;
  2539. font-size: 14px;
  2540. line-height: 1.42857143;
  2541. color: #555;
  2542. }
  2543. .form-control {
  2544. display: block;
  2545. width: 100%;
  2546. height: 34px;
  2547. padding: 6px 12px;
  2548. font-size: 14px;
  2549. line-height: 1.42857143;
  2550. color: #555;
  2551. background-color: #fff;
  2552. background-image: none;
  2553. border: 1px solid #ccc;
  2554. border-radius: 4px;
  2555. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2556. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2557. -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  2558. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2559. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2560. }
  2561. .form-control:focus {
  2562. border-color: #66afe9;
  2563. outline: 0;
  2564. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
  2565. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
  2566. }
  2567. .form-control::-moz-placeholder {
  2568. color: #999;
  2569. opacity: 1;
  2570. }
  2571. .form-control:-ms-input-placeholder {
  2572. color: #999;
  2573. }
  2574. .form-control::-webkit-input-placeholder {
  2575. color: #999;
  2576. }
  2577. .form-control::-ms-expand {
  2578. background-color: transparent;
  2579. border: 0;
  2580. }
  2581. .form-control[disabled],
  2582. .form-control[readonly],
  2583. fieldset[disabled] .form-control {
  2584. background-color: #eee;
  2585. opacity: 1;
  2586. }
  2587. .form-control[disabled],
  2588. fieldset[disabled] .form-control {
  2589. cursor: not-allowed;
  2590. }
  2591. textarea.form-control {
  2592. height: auto;
  2593. }
  2594. input[type="search"] {
  2595. -webkit-appearance: none;
  2596. }
  2597. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  2598. input[type="date"].form-control,
  2599. input[type="time"].form-control,
  2600. input[type="datetime-local"].form-control,
  2601. input[type="month"].form-control {
  2602. line-height: 34px;
  2603. }
  2604. input[type="date"].input-sm,
  2605. input[type="time"].input-sm,
  2606. input[type="datetime-local"].input-sm,
  2607. input[type="month"].input-sm,
  2608. .input-group-sm input[type="date"],
  2609. .input-group-sm input[type="time"],
  2610. .input-group-sm input[type="datetime-local"],
  2611. .input-group-sm input[type="month"] {
  2612. line-height: 30px;
  2613. }
  2614. input[type="date"].input-lg,
  2615. input[type="time"].input-lg,
  2616. input[type="datetime-local"].input-lg,
  2617. input[type="month"].input-lg,
  2618. .input-group-lg input[type="date"],
  2619. .input-group-lg input[type="time"],
  2620. .input-group-lg input[type="datetime-local"],
  2621. .input-group-lg input[type="month"] {
  2622. line-height: 46px;
  2623. }
  2624. }
  2625. .form-group {
  2626. margin-bottom: 15px;
  2627. }
  2628. .radio,
  2629. .checkbox {
  2630. position: relative;
  2631. display: block;
  2632. margin-top: 10px;
  2633. margin-bottom: 10px;
  2634. }
  2635. .radio label,
  2636. .checkbox label {
  2637. min-height: 20px;
  2638. padding-left: 20px;
  2639. margin-bottom: 0;
  2640. font-weight: normal;
  2641. cursor: pointer;
  2642. }
  2643. .radio input[type="radio"],
  2644. .radio-inline input[type="radio"],
  2645. .checkbox input[type="checkbox"],
  2646. .checkbox-inline input[type="checkbox"] {
  2647. position: absolute;
  2648. margin-top: 4px \9;
  2649. margin-left: -20px;
  2650. }
  2651. .radio + .radio,
  2652. .checkbox + .checkbox {
  2653. margin-top: -5px;
  2654. }
  2655. .radio-inline,
  2656. .checkbox-inline {
  2657. position: relative;
  2658. display: inline-block;
  2659. padding-left: 20px;
  2660. margin-bottom: 0;
  2661. font-weight: normal;
  2662. vertical-align: middle;
  2663. cursor: pointer;
  2664. }
  2665. .radio-inline + .radio-inline,
  2666. .checkbox-inline + .checkbox-inline {
  2667. margin-top: 0;
  2668. margin-left: 10px;
  2669. }
  2670. input[type="radio"][disabled],
  2671. input[type="checkbox"][disabled],
  2672. input[type="radio"].disabled,
  2673. input[type="checkbox"].disabled,
  2674. fieldset[disabled] input[type="radio"],
  2675. fieldset[disabled] input[type="checkbox"] {
  2676. cursor: not-allowed;
  2677. }
  2678. .radio-inline.disabled,
  2679. .checkbox-inline.disabled,
  2680. fieldset[disabled] .radio-inline,
  2681. fieldset[disabled] .checkbox-inline {
  2682. cursor: not-allowed;
  2683. }
  2684. .radio.disabled label,
  2685. .checkbox.disabled label,
  2686. fieldset[disabled] .radio label,
  2687. fieldset[disabled] .checkbox label {
  2688. cursor: not-allowed;
  2689. }
  2690. .form-control-static {
  2691. min-height: 34px;
  2692. padding-top: 7px;
  2693. padding-bottom: 7px;
  2694. margin-bottom: 0;
  2695. }
  2696. .form-control-static.input-lg,
  2697. .form-control-static.input-sm {
  2698. padding-right: 0;
  2699. padding-left: 0;
  2700. }
  2701. .input-sm {
  2702. height: 30px;
  2703. padding: 5px 10px;
  2704. font-size: 12px;
  2705. line-height: 1.5;
  2706. border-radius: 3px;
  2707. }
  2708. select.input-sm {
  2709. height: 30px;
  2710. line-height: 30px;
  2711. }
  2712. textarea.input-sm,
  2713. select[multiple].input-sm {
  2714. height: auto;
  2715. }
  2716. .form-group-sm .form-control {
  2717. height: 30px;
  2718. padding: 5px 10px;
  2719. font-size: 12px;
  2720. line-height: 1.5;
  2721. border-radius: 3px;
  2722. }
  2723. .form-group-sm select.form-control {
  2724. height: 30px;
  2725. line-height: 30px;
  2726. }
  2727. .form-group-sm textarea.form-control,
  2728. .form-group-sm select[multiple].form-control {
  2729. height: auto;
  2730. }
  2731. .form-group-sm .form-control-static {
  2732. height: 30px;
  2733. min-height: 32px;
  2734. padding: 6px 10px;
  2735. font-size: 12px;
  2736. line-height: 1.5;
  2737. }
  2738. .input-lg {
  2739. height: 46px;
  2740. padding: 10px 16px;
  2741. font-size: 18px;
  2742. line-height: 1.3333333;
  2743. border-radius: 6px;
  2744. }
  2745. select.input-lg {
  2746. height: 46px;
  2747. line-height: 46px;
  2748. }
  2749. textarea.input-lg,
  2750. select[multiple].input-lg {
  2751. height: auto;
  2752. }
  2753. .form-group-lg .form-control {
  2754. height: 46px;
  2755. padding: 10px 16px;
  2756. font-size: 18px;
  2757. line-height: 1.3333333;
  2758. border-radius: 6px;
  2759. }
  2760. .form-group-lg select.form-control {
  2761. height: 46px;
  2762. line-height: 46px;
  2763. }
  2764. .form-group-lg textarea.form-control,
  2765. .form-group-lg select[multiple].form-control {
  2766. height: auto;
  2767. }
  2768. .form-group-lg .form-control-static {
  2769. height: 46px;
  2770. min-height: 38px;
  2771. padding: 11px 16px;
  2772. font-size: 18px;
  2773. line-height: 1.3333333;
  2774. }
  2775. .has-feedback {
  2776. position: relative;
  2777. }
  2778. .has-feedback .form-control {
  2779. padding-right: 42.5px;
  2780. }
  2781. .form-control-feedback {
  2782. position: absolute;
  2783. top: 0;
  2784. right: 0;
  2785. z-index: 2;
  2786. display: block;
  2787. width: 34px;
  2788. height: 34px;
  2789. line-height: 34px;
  2790. text-align: center;
  2791. pointer-events: none;
  2792. }
  2793. .input-lg + .form-control-feedback,
  2794. .input-group-lg + .form-control-feedback,
  2795. .form-group-lg .form-control + .form-control-feedback {
  2796. width: 46px;
  2797. height: 46px;
  2798. line-height: 46px;
  2799. }
  2800. .input-sm + .form-control-feedback,
  2801. .input-group-sm + .form-control-feedback,
  2802. .form-group-sm .form-control + .form-control-feedback {
  2803. width: 30px;
  2804. height: 30px;
  2805. line-height: 30px;
  2806. }
  2807. .has-success .help-block,
  2808. .has-success .control-label,
  2809. .has-success .radio,
  2810. .has-success .checkbox,
  2811. .has-success .radio-inline,
  2812. .has-success .checkbox-inline,
  2813. .has-success.radio label,
  2814. .has-success.checkbox label,
  2815. .has-success.radio-inline label,
  2816. .has-success.checkbox-inline label {
  2817. color: #3c763d;
  2818. }
  2819. .has-success .form-control {
  2820. border-color: #3c763d;
  2821. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2822. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2823. }
  2824. .has-success .form-control:focus {
  2825. border-color: #2b542c;
  2826. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
  2827. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
  2828. }
  2829. .has-success .input-group-addon {
  2830. color: #3c763d;
  2831. background-color: #dff0d8;
  2832. border-color: #3c763d;
  2833. }
  2834. .has-success .form-control-feedback {
  2835. color: #3c763d;
  2836. }
  2837. .has-warning .help-block,
  2838. .has-warning .control-label,
  2839. .has-warning .radio,
  2840. .has-warning .checkbox,
  2841. .has-warning .radio-inline,
  2842. .has-warning .checkbox-inline,
  2843. .has-warning.radio label,
  2844. .has-warning.checkbox label,
  2845. .has-warning.radio-inline label,
  2846. .has-warning.checkbox-inline label {
  2847. color: #8a6d3b;
  2848. }
  2849. .has-warning .form-control {
  2850. border-color: #8a6d3b;
  2851. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2852. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2853. }
  2854. .has-warning .form-control:focus {
  2855. border-color: #66512c;
  2856. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
  2857. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
  2858. }
  2859. .has-warning .input-group-addon {
  2860. color: #8a6d3b;
  2861. background-color: #fcf8e3;
  2862. border-color: #8a6d3b;
  2863. }
  2864. .has-warning .form-control-feedback {
  2865. color: #8a6d3b;
  2866. }
  2867. .has-error .help-block,
  2868. .has-error .control-label,
  2869. .has-error .radio,
  2870. .has-error .checkbox,
  2871. .has-error .radio-inline,
  2872. .has-error .checkbox-inline,
  2873. .has-error.radio label,
  2874. .has-error.checkbox label,
  2875. .has-error.radio-inline label,
  2876. .has-error.checkbox-inline label {
  2877. color: #a94442;
  2878. }
  2879. .has-error .form-control {
  2880. border-color: #a94442;
  2881. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2882. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2883. }
  2884. .has-error .form-control:focus {
  2885. border-color: #843534;
  2886. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
  2887. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
  2888. }
  2889. .has-error .input-group-addon {
  2890. color: #a94442;
  2891. background-color: #f2dede;
  2892. border-color: #a94442;
  2893. }
  2894. .has-error .form-control-feedback {
  2895. color: #a94442;
  2896. }
  2897. .has-feedback label ~ .form-control-feedback {
  2898. top: 25px;
  2899. }
  2900. .has-feedback label.sr-only ~ .form-control-feedback {
  2901. top: 0;
  2902. }
  2903. .help-block {
  2904. display: block;
  2905. margin-top: 5px;
  2906. margin-bottom: 10px;
  2907. color: #737373;
  2908. }
  2909. @media (min-width: 768px) {
  2910. .form-inline .form-group {
  2911. display: inline-block;
  2912. margin-bottom: 0;
  2913. vertical-align: middle;
  2914. }
  2915. .form-inline .form-control {
  2916. display: inline-block;
  2917. width: auto;
  2918. vertical-align: middle;
  2919. }
  2920. .form-inline .form-control-static {
  2921. display: inline-block;
  2922. }
  2923. .form-inline .input-group {
  2924. display: inline-table;
  2925. vertical-align: middle;
  2926. }
  2927. .form-inline .input-group .input-group-addon,
  2928. .form-inline .input-group .input-group-btn,
  2929. .form-inline .input-group .form-control {
  2930. width: auto;
  2931. }
  2932. .form-inline .input-group > .form-control {
  2933. width: 100%;
  2934. }
  2935. .form-inline .control-label {
  2936. margin-bottom: 0;
  2937. vertical-align: middle;
  2938. }
  2939. .form-inline .radio,
  2940. .form-inline .checkbox {
  2941. display: inline-block;
  2942. margin-top: 0;
  2943. margin-bottom: 0;
  2944. vertical-align: middle;
  2945. }
  2946. .form-inline .radio label,
  2947. .form-inline .checkbox label {
  2948. padding-left: 0;
  2949. }
  2950. .form-inline .radio input[type="radio"],
  2951. .form-inline .checkbox input[type="checkbox"] {
  2952. position: relative;
  2953. margin-left: 0;
  2954. }
  2955. .form-inline .has-feedback .form-control-feedback {
  2956. top: 0;
  2957. }
  2958. }
  2959. .form-horizontal .radio,
  2960. .form-horizontal .checkbox,
  2961. .form-horizontal .radio-inline,
  2962. .form-horizontal .checkbox-inline {
  2963. padding-top: 7px;
  2964. margin-top: 0;
  2965. margin-bottom: 0;
  2966. }
  2967. .form-horizontal .radio,
  2968. .form-horizontal .checkbox {
  2969. min-height: 27px;
  2970. }
  2971. .form-horizontal .form-group {
  2972. margin-right: -15px;
  2973. margin-left: -15px;
  2974. }
  2975. @media (min-width: 768px) {
  2976. .form-horizontal .control-label {
  2977. padding-top: 7px;
  2978. margin-bottom: 0;
  2979. text-align: right;
  2980. }
  2981. }
  2982. .form-horizontal .has-feedback .form-control-feedback {
  2983. right: 15px;
  2984. }
  2985. @media (min-width: 768px) {
  2986. .form-horizontal .form-group-lg .control-label {
  2987. padding-top: 11px;
  2988. font-size: 18px;
  2989. }
  2990. }
  2991. @media (min-width: 768px) {
  2992. .form-horizontal .form-group-sm .control-label {
  2993. padding-top: 6px;
  2994. font-size: 12px;
  2995. }
  2996. }
  2997. .btn {
  2998. display: inline-block;
  2999. padding: 6px 12px;
  3000. margin-bottom: 0;
  3001. font-size: 14px;
  3002. font-weight: normal;
  3003. line-height: 1.42857143;
  3004. text-align: center;
  3005. white-space: nowrap;
  3006. vertical-align: middle;
  3007. -ms-touch-action: manipulation;
  3008. touch-action: manipulation;
  3009. cursor: pointer;
  3010. background-image: none;
  3011. border: 1px solid transparent;
  3012. border-radius: 4px;
  3013. }
  3014. .btn:focus,
  3015. .btn:active:focus,
  3016. .btn.active:focus,
  3017. .btn.focus,
  3018. .btn:active.focus,
  3019. .btn.active.focus {
  3020. outline: 5px auto -webkit-focus-ring-color;
  3021. outline-offset: -2px;
  3022. }
  3023. .btn:hover,
  3024. .btn:focus,
  3025. .btn.focus {
  3026. color: #333;
  3027. text-decoration: none;
  3028. }
  3029. .btn:active,
  3030. .btn.active {
  3031. background-image: none;
  3032. outline: 0;
  3033. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  3034. box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  3035. }
  3036. .btn.disabled,
  3037. .btn[disabled],
  3038. fieldset[disabled] .btn {
  3039. cursor: not-allowed;
  3040. filter: alpha(opacity=65);
  3041. -webkit-box-shadow: none;
  3042. box-shadow: none;
  3043. opacity: .65;
  3044. }
  3045. a.btn.disabled,
  3046. fieldset[disabled] a.btn {
  3047. pointer-events: none;
  3048. }
  3049. .btn-default {
  3050. color: #333;
  3051. background-color: #fff;
  3052. border-color: #ccc;
  3053. }
  3054. .btn-default:focus,
  3055. .btn-default.focus {
  3056. color: #333;
  3057. background-color: #e6e6e6;
  3058. border-color: #8c8c8c;
  3059. }
  3060. .btn-default:hover {
  3061. color: #333;
  3062. background-color: #e6e6e6;
  3063. border-color: #adadad;
  3064. }
  3065. .btn-default:active,
  3066. .btn-default.active,
  3067. .open > .dropdown-toggle.btn-default {
  3068. color: #333;
  3069. background-color: #e6e6e6;
  3070. border-color: #adadad;
  3071. }
  3072. .btn-default:active:hover,
  3073. .btn-default.active:hover,
  3074. .open > .dropdown-toggle.btn-default:hover,
  3075. .btn-default:active:focus,
  3076. .btn-default.active:focus,
  3077. .open > .dropdown-toggle.btn-default:focus,
  3078. .btn-default:active.focus,
  3079. .btn-default.active.focus,
  3080. .open > .dropdown-toggle.btn-default.focus {
  3081. color: #333;
  3082. background-color: #d4d4d4;
  3083. border-color: #8c8c8c;
  3084. }
  3085. .btn-default:active,
  3086. .btn-default.active,
  3087. .open > .dropdown-toggle.btn-default {
  3088. background-image: none;
  3089. }
  3090. .btn-default.disabled:hover,
  3091. .btn-default[disabled]:hover,
  3092. fieldset[disabled] .btn-default:hover,
  3093. .btn-default.disabled:focus,
  3094. .btn-default[disabled]:focus,
  3095. fieldset[disabled] .btn-default:focus,
  3096. .btn-default.disabled.focus,
  3097. .btn-default[disabled].focus,
  3098. fieldset[disabled] .btn-default.focus {
  3099. background-color: #fff;
  3100. border-color: #ccc;
  3101. }
  3102. .btn-default .badge {
  3103. color: #fff;
  3104. background-color: #333;
  3105. }
  3106. .btn-primary {
  3107. color: #fff;
  3108. background-color: #337ab7;
  3109. border-color: #2e6da4;
  3110. }
  3111. .btn-primary:focus,
  3112. .btn-primary.focus {
  3113. color: #fff;
  3114. background-color: #286090;
  3115. border-color: #122b40;
  3116. }
  3117. .btn-primary:hover {
  3118. color: #fff;
  3119. background-color: #286090;
  3120. border-color: #204d74;
  3121. }
  3122. .btn-primary:active,
  3123. .btn-primary.active,
  3124. .open > .dropdown-toggle.btn-primary {
  3125. color: #fff;
  3126. background-color: #286090;
  3127. border-color: #204d74;
  3128. }
  3129. .btn-primary:active:hover,
  3130. .btn-primary.active:hover,
  3131. .open > .dropdown-toggle.btn-primary:hover,
  3132. .btn-primary:active:focus,
  3133. .btn-primary.active:focus,
  3134. .open > .dropdown-toggle.btn-primary:focus,
  3135. .btn-primary:active.focus,
  3136. .btn-primary.active.focus,
  3137. .open > .dropdown-toggle.btn-primary.focus {
  3138. color: #fff;
  3139. background-color: #204d74;
  3140. border-color: #122b40;
  3141. }
  3142. .btn-primary:active,
  3143. .btn-primary.active,
  3144. .open > .dropdown-toggle.btn-primary {
  3145. background-image: none;
  3146. }
  3147. .btn-primary.disabled:hover,
  3148. .btn-primary[disabled]:hover,
  3149. fieldset[disabled] .btn-primary:hover,
  3150. .btn-primary.disabled:focus,
  3151. .btn-primary[disabled]:focus,
  3152. fieldset[disabled] .btn-primary:focus,
  3153. .btn-primary.disabled.focus,
  3154. .btn-primary[disabled].focus,
  3155. fieldset[disabled] .btn-primary.focus {
  3156. background-color: #337ab7;
  3157. border-color: #2e6da4;
  3158. }
  3159. .btn-primary .badge {
  3160. color: #337ab7;
  3161. background-color: #fff;
  3162. }
  3163. .btn-success {
  3164. color: #fff;
  3165. background-color: #5cb85c;
  3166. border-color: #4cae4c;
  3167. }
  3168. .btn-success:focus,
  3169. .btn-success.focus {
  3170. color: #fff;
  3171. background-color: #449d44;
  3172. border-color: #255625;
  3173. }
  3174. .btn-success:hover {
  3175. color: #fff;
  3176. background-color: #449d44;
  3177. border-color: #398439;
  3178. }
  3179. .btn-success:active,
  3180. .btn-success.active,
  3181. .open > .dropdown-toggle.btn-success {
  3182. color: #fff;
  3183. background-color: #449d44;
  3184. border-color: #398439;
  3185. }
  3186. .btn-success:active:hover,
  3187. .btn-success.active:hover,
  3188. .open > .dropdown-toggle.btn-success:hover,
  3189. .btn-success:active:focus,
  3190. .btn-success.active:focus,
  3191. .open > .dropdown-toggle.btn-success:focus,
  3192. .btn-success:active.focus,
  3193. .btn-success.active.focus,
  3194. .open > .dropdown-toggle.btn-success.focus {
  3195. color: #fff;
  3196. background-color: #398439;
  3197. border-color: #255625;
  3198. }
  3199. .btn-success:active,
  3200. .btn-success.active,
  3201. .open > .dropdown-toggle.btn-success {
  3202. background-image: none;
  3203. }
  3204. .btn-success.disabled:hover,
  3205. .btn-success[disabled]:hover,
  3206. fieldset[disabled] .btn-success:hover,
  3207. .btn-success.disabled:focus,
  3208. .btn-success[disabled]:focus,
  3209. fieldset[disabled] .btn-success:focus,
  3210. .btn-success.disabled.focus,
  3211. .btn-success[disabled].focus,
  3212. fieldset[disabled] .btn-success.focus {
  3213. background-color: #5cb85c;
  3214. border-color: #4cae4c;
  3215. }
  3216. .btn-success .badge {
  3217. color: #5cb85c;
  3218. background-color: #fff;
  3219. }
  3220. .btn-info {
  3221. color: #fff;
  3222. background-color: #5bc0de;
  3223. border-color: #46b8da;
  3224. }
  3225. .btn-info:focus,
  3226. .btn-info.focus {
  3227. color: #fff;
  3228. background-color: #31b0d5;
  3229. border-color: #1b6d85;
  3230. }
  3231. .btn-info:hover {
  3232. color: #fff;
  3233. background-color: #31b0d5;
  3234. border-color: #269abc;
  3235. }
  3236. .btn-info:active,
  3237. .btn-info.active,
  3238. .open > .dropdown-toggle.btn-info {
  3239. color: #fff;
  3240. background-color: #31b0d5;
  3241. border-color: #269abc;
  3242. }
  3243. .btn-info:active:hover,
  3244. .btn-info.active:hover,
  3245. .open > .dropdown-toggle.btn-info:hover,
  3246. .btn-info:active:focus,
  3247. .btn-info.active:focus,
  3248. .open > .dropdown-toggle.btn-info:focus,
  3249. .btn-info:active.focus,
  3250. .btn-info.active.focus,
  3251. .open > .dropdown-toggle.btn-info.focus {
  3252. color: #fff;
  3253. background-color: #269abc;
  3254. border-color: #1b6d85;
  3255. }
  3256. .btn-info:active,
  3257. .btn-info.active,
  3258. .open > .dropdown-toggle.btn-info {
  3259. background-image: none;
  3260. }
  3261. .btn-info.disabled:hover,
  3262. .btn-info[disabled]:hover,
  3263. fieldset[disabled] .btn-info:hover,
  3264. .btn-info.disabled:focus,
  3265. .btn-info[disabled]:focus,
  3266. fieldset[disabled] .btn-info:focus,
  3267. .btn-info.disabled.focus,
  3268. .btn-info[disabled].focus,
  3269. fieldset[disabled] .btn-info.focus {
  3270. background-color: #5bc0de;
  3271. border-color: #46b8da;
  3272. }
  3273. .btn-info .badge {
  3274. color: #5bc0de;
  3275. background-color: #fff;
  3276. }
  3277. .btn-warning {
  3278. color: #fff;
  3279. background-color: #f0ad4e;
  3280. border-color: #eea236;
  3281. }
  3282. .btn-warning:focus,
  3283. .btn-warning.focus {
  3284. color: #fff;
  3285. background-color: #ec971f;
  3286. border-color: #985f0d;
  3287. }
  3288. .btn-warning:hover {
  3289. color: #fff;
  3290. background-color: #ec971f;
  3291. border-color: #d58512;
  3292. }
  3293. .btn-warning:active,
  3294. .btn-warning.active,
  3295. .open > .dropdown-toggle.btn-warning {
  3296. color: #fff;
  3297. background-color: #ec971f;
  3298. border-color: #d58512;
  3299. }
  3300. .btn-warning:active:hover,
  3301. .btn-warning.active:hover,
  3302. .open > .dropdown-toggle.btn-warning:hover,
  3303. .btn-warning:active:focus,
  3304. .btn-warning.active:focus,
  3305. .open > .dropdown-toggle.btn-warning:focus,
  3306. .btn-warning:active.focus,
  3307. .btn-warning.active.focus,
  3308. .open > .dropdown-toggle.btn-warning.focus {
  3309. color: #fff;
  3310. background-color: #d58512;
  3311. border-color: #985f0d;
  3312. }
  3313. .btn-warning:active,
  3314. .btn-warning.active,
  3315. .open > .dropdown-toggle.btn-warning {
  3316. background-image: none;
  3317. }
  3318. .btn-warning.disabled:hover,
  3319. .btn-warning[disabled]:hover,
  3320. fieldset[disabled] .btn-warning:hover,
  3321. .btn-warning.disabled:focus,
  3322. .btn-warning[disabled]:focus,
  3323. fieldset[disabled] .btn-warning:focus,
  3324. .btn-warning.disabled.focus,
  3325. .btn-warning[disabled].focus,
  3326. fieldset[disabled] .btn-warning.focus {
  3327. background-color: #f0ad4e;
  3328. border-color: #eea236;
  3329. }
  3330. .btn-warning .badge {
  3331. color: #f0ad4e;
  3332. background-color: #fff;
  3333. }
  3334. .btn-danger {
  3335. color: #fff;
  3336. background-color: #d9534f;
  3337. border-color: #d43f3a;
  3338. }
  3339. .btn-danger:focus,
  3340. .btn-danger.focus {
  3341. color: #fff;
  3342. background-color: #c9302c;
  3343. border-color: #761c19;
  3344. }
  3345. .btn-danger:hover {
  3346. color: #fff;
  3347. background-color: #c9302c;
  3348. border-color: #ac2925;
  3349. }
  3350. .btn-danger:active,
  3351. .btn-danger.active,
  3352. .open > .dropdown-toggle.btn-danger {
  3353. color: #fff;
  3354. background-color: #c9302c;
  3355. border-color: #ac2925;
  3356. }
  3357. .btn-danger:active:hover,
  3358. .btn-danger.active:hover,
  3359. .open > .dropdown-toggle.btn-danger:hover,
  3360. .btn-danger:active:focus,
  3361. .btn-danger.active:focus,
  3362. .open > .dropdown-toggle.btn-danger:focus,
  3363. .btn-danger:active.focus,
  3364. .btn-danger.active.focus,
  3365. .open > .dropdown-toggle.btn-danger.focus {
  3366. color: #fff;
  3367. background-color: #ac2925;
  3368. border-color: #761c19;
  3369. }
  3370. .btn-danger:active,
  3371. .btn-danger.active,
  3372. .open > .dropdown-toggle.btn-danger {
  3373. background-image: none;
  3374. }
  3375. .btn-danger.disabled:hover,
  3376. .btn-danger[disabled]:hover,
  3377. fieldset[disabled] .btn-danger:hover,
  3378. .btn-danger.disabled:focus,
  3379. .btn-danger[disabled]:focus,
  3380. fieldset[disabled] .btn-danger:focus,
  3381. .btn-danger.disabled.focus,
  3382. .btn-danger[disabled].focus,
  3383. fieldset[disabled] .btn-danger.focus {
  3384. background-color: #d9534f;
  3385. border-color: #d43f3a;
  3386. }
  3387. .btn-danger .badge {
  3388. color: #d9534f;
  3389. background-color: #fff;
  3390. }
  3391. .btn-link {
  3392. font-weight: normal;
  3393. color: #337ab7;
  3394. border-radius: 0;
  3395. }
  3396. .btn-link,
  3397. .btn-link:active,
  3398. .btn-link.active,
  3399. .btn-link[disabled],
  3400. fieldset[disabled] .btn-link {
  3401. background-color: transparent;
  3402. -webkit-box-shadow: none;
  3403. box-shadow: none;
  3404. }
  3405. .btn-link,
  3406. .btn-link:hover,
  3407. .btn-link:focus,
  3408. .btn-link:active {
  3409. border-color: transparent;
  3410. }
  3411. .btn-link:hover,
  3412. .btn-link:focus {
  3413. color: #23527c;
  3414. text-decoration: underline;
  3415. background-color: transparent;
  3416. }
  3417. .btn-link[disabled]:hover,
  3418. fieldset[disabled] .btn-link:hover,
  3419. .btn-link[disabled]:focus,
  3420. fieldset[disabled] .btn-link:focus {
  3421. color: #777;
  3422. text-decoration: none;
  3423. }
  3424. .btn-lg,
  3425. .btn-group-lg > .btn {
  3426. padding: 10px 16px;
  3427. font-size: 18px;
  3428. line-height: 1.3333333;
  3429. border-radius: 6px;
  3430. }
  3431. .btn-sm,
  3432. .btn-group-sm > .btn {
  3433. padding: 5px 10px;
  3434. font-size: 12px;
  3435. line-height: 1.5;
  3436. border-radius: 3px;
  3437. }
  3438. .btn-xs,
  3439. .btn-group-xs > .btn {
  3440. padding: 1px 5px;
  3441. font-size: 12px;
  3442. line-height: 1.5;
  3443. border-radius: 3px;
  3444. }
  3445. .btn-block {
  3446. display: block;
  3447. width: 100%;
  3448. }
  3449. .btn-block + .btn-block {
  3450. margin-top: 5px;
  3451. }
  3452. input[type="submit"].btn-block,
  3453. input[type="reset"].btn-block,
  3454. input[type="button"].btn-block {
  3455. width: 100%;
  3456. }
  3457. .fade {
  3458. opacity: 0;
  3459. -webkit-transition: opacity .15s linear;
  3460. -o-transition: opacity .15s linear;
  3461. transition: opacity .15s linear;
  3462. }
  3463. .fade.in {
  3464. opacity: 1;
  3465. }
  3466. .collapse {
  3467. display: none;
  3468. }
  3469. .collapse.in {
  3470. display: block;
  3471. }
  3472. tr.collapse.in {
  3473. display: table-row;
  3474. }
  3475. tbody.collapse.in {
  3476. display: table-row-group;
  3477. }
  3478. .collapsing {
  3479. position: relative;
  3480. height: 0;
  3481. overflow: hidden;
  3482. -webkit-transition-timing-function: ease;
  3483. -o-transition-timing-function: ease;
  3484. transition-timing-function: ease;
  3485. -webkit-transition-duration: .35s;
  3486. -o-transition-duration: .35s;
  3487. transition-duration: .35s;
  3488. -webkit-transition-property: height, visibility;
  3489. -o-transition-property: height, visibility;
  3490. transition-property: height, visibility;
  3491. }
  3492. .caret {
  3493. display: inline-block;
  3494. width: 0;
  3495. height: 0;
  3496. margin-left: 2px;
  3497. vertical-align: middle;
  3498. border-top: 4px dashed;
  3499. border-top: 4px solid \9;
  3500. border-right: 4px solid transparent;
  3501. border-left: 4px solid transparent;
  3502. }
  3503. .dropup,
  3504. .dropdown {
  3505. position: relative;
  3506. }
  3507. .dropdown-toggle:focus {
  3508. outline: 0;
  3509. }
  3510. .dropdown-menu {
  3511. position: absolute;
  3512. top: 100%;
  3513. left: 0;
  3514. z-index: 1000;
  3515. display: none;
  3516. float: left;
  3517. min-width: 160px;
  3518. padding: 5px 0;
  3519. margin: 2px 0 0;
  3520. font-size: 14px;
  3521. text-align: left;
  3522. list-style: none;
  3523. background-color: #fff;
  3524. -webkit-background-clip: padding-box;
  3525. background-clip: padding-box;
  3526. border: 1px solid #ccc;
  3527. border: 1px solid rgba(0, 0, 0, .15);
  3528. border-radius: 4px;
  3529. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  3530. box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  3531. }
  3532. .dropdown-menu.pull-right {
  3533. right: 0;
  3534. left: auto;
  3535. }
  3536. .dropdown-menu .divider {
  3537. height: 1px;
  3538. margin: 9px 0;
  3539. overflow: hidden;
  3540. background-color: #e5e5e5;
  3541. }
  3542. .dropdown-menu > li > a {
  3543. display: block;
  3544. padding: 3px 20px;
  3545. clear: both;
  3546. font-weight: normal;
  3547. line-height: 1.42857143;
  3548. color: #333;
  3549. white-space: nowrap;
  3550. }
  3551. .dropdown-menu > li > a:hover,
  3552. .dropdown-menu > li > a:focus {
  3553. color: #262626;
  3554. text-decoration: none;
  3555. background-color: #f5f5f5;
  3556. }
  3557. .dropdown-menu > .active > a,
  3558. .dropdown-menu > .active > a:hover,
  3559. .dropdown-menu > .active > a:focus {
  3560. color: #fff;
  3561. text-decoration: none;
  3562. background-color: #337ab7;
  3563. outline: 0;
  3564. }
  3565. .dropdown-menu > .disabled > a,
  3566. .dropdown-menu > .disabled > a:hover,
  3567. .dropdown-menu > .disabled > a:focus {
  3568. color: #777;
  3569. }
  3570. .dropdown-menu > .disabled > a:hover,
  3571. .dropdown-menu > .disabled > a:focus {
  3572. text-decoration: none;
  3573. cursor: not-allowed;
  3574. background-color: transparent;
  3575. background-image: none;
  3576. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  3577. }
  3578. .open > .dropdown-menu {
  3579. display: block;
  3580. }
  3581. .open > a {
  3582. outline: 0;
  3583. }
  3584. .dropdown-menu-right {
  3585. right: 0;
  3586. left: auto;
  3587. }
  3588. .dropdown-menu-left {
  3589. right: auto;
  3590. left: 0;
  3591. }
  3592. .dropdown-header {
  3593. display: block;
  3594. padding: 3px 20px;
  3595. font-size: 12px;
  3596. line-height: 1.42857143;
  3597. color: #777;
  3598. white-space: nowrap;
  3599. }
  3600. .dropdown-backdrop {
  3601. position: fixed;
  3602. top: 0;
  3603. right: 0;
  3604. bottom: 0;
  3605. left: 0;
  3606. z-index: 990;
  3607. }
  3608. .pull-right > .dropdown-menu {
  3609. right: 0;
  3610. left: auto;
  3611. }
  3612. .dropup .caret,
  3613. .navbar-fixed-bottom .dropdown .caret {
  3614. content: "";
  3615. border-top: 0;
  3616. border-bottom: 4px dashed;
  3617. border-bottom: 4px solid \9;
  3618. }
  3619. .dropup .dropdown-menu,
  3620. .navbar-fixed-bottom .dropdown .dropdown-menu {
  3621. top: auto;
  3622. bottom: 100%;
  3623. margin-bottom: 2px;
  3624. }
  3625. @media (min-width: 768px) {
  3626. .navbar-right .dropdown-menu {
  3627. right: 0;
  3628. left: auto;
  3629. }
  3630. .navbar-right .dropdown-menu-left {
  3631. right: auto;
  3632. left: 0;
  3633. }
  3634. }
  3635. .btn-group,
  3636. .btn-group-vertical {
  3637. position: relative;
  3638. display: inline-block;
  3639. vertical-align: middle;
  3640. }
  3641. .btn-group > .btn,
  3642. .btn-group-vertical > .btn {
  3643. position: relative;
  3644. float: left;
  3645. }
  3646. .btn-group > .btn:hover,
  3647. .btn-group-vertical > .btn:hover,
  3648. .btn-group > .btn:focus,
  3649. .btn-group-vertical > .btn:focus,
  3650. .btn-group > .btn:active,
  3651. .btn-group-vertical > .btn:active,
  3652. .btn-group > .btn.active,
  3653. .btn-group-vertical > .btn.active {
  3654. z-index: 2;
  3655. }
  3656. .btn-group .btn + .btn,
  3657. .btn-group .btn + .btn-group,
  3658. .btn-group .btn-group + .btn,
  3659. .btn-group .btn-group + .btn-group {
  3660. margin-left: -1px;
  3661. }
  3662. .btn-toolbar {
  3663. margin-left: -5px;
  3664. }
  3665. .btn-toolbar .btn,
  3666. .btn-toolbar .btn-group,
  3667. .btn-toolbar .input-group {
  3668. float: left;
  3669. }
  3670. .btn-toolbar > .btn,
  3671. .btn-toolbar > .btn-group,
  3672. .btn-toolbar > .input-group {
  3673. margin-left: 5px;
  3674. }
  3675. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  3676. border-radius: 0;
  3677. }
  3678. .btn-group > .btn:first-child {
  3679. margin-left: 0;
  3680. }
  3681. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  3682. border-top-right-radius: 0;
  3683. border-bottom-right-radius: 0;
  3684. }
  3685. .btn-group > .btn:last-child:not(:first-child),
  3686. .btn-group > .dropdown-toggle:not(:first-child) {
  3687. border-top-left-radius: 0;
  3688. border-bottom-left-radius: 0;
  3689. }
  3690. .btn-group > .btn-group {
  3691. float: left;
  3692. }
  3693. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  3694. border-radius: 0;
  3695. }
  3696. .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3697. .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3698. border-top-right-radius: 0;
  3699. border-bottom-right-radius: 0;
  3700. }
  3701. .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3702. border-top-left-radius: 0;
  3703. border-bottom-left-radius: 0;
  3704. }
  3705. .btn-group .dropdown-toggle:active,
  3706. .btn-group.open .dropdown-toggle {
  3707. outline: 0;
  3708. }
  3709. .btn-group > .btn + .dropdown-toggle {
  3710. padding-right: 8px;
  3711. padding-left: 8px;
  3712. }
  3713. .btn-group > .btn-lg + .dropdown-toggle {
  3714. padding-right: 12px;
  3715. padding-left: 12px;
  3716. }
  3717. .btn-group.open .dropdown-toggle {
  3718. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  3719. box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  3720. }
  3721. .btn-group.open .dropdown-toggle.btn-link {
  3722. -webkit-box-shadow: none;
  3723. box-shadow: none;
  3724. }
  3725. .btn .caret {
  3726. margin-left: 0;
  3727. }
  3728. .btn-lg .caret {
  3729. border-width: 5px 5px 0;
  3730. border-bottom-width: 0;
  3731. }
  3732. .dropup .btn-lg .caret {
  3733. border-width: 0 5px 5px;
  3734. }
  3735. .btn-group-vertical > .btn,
  3736. .btn-group-vertical > .btn-group,
  3737. .btn-group-vertical > .btn-group > .btn {
  3738. display: block;
  3739. float: none;
  3740. width: 100%;
  3741. max-width: 100%;
  3742. }
  3743. .btn-group-vertical > .btn-group > .btn {
  3744. float: none;
  3745. }
  3746. .btn-group-vertical > .btn + .btn,
  3747. .btn-group-vertical > .btn + .btn-group,
  3748. .btn-group-vertical > .btn-group + .btn,
  3749. .btn-group-vertical > .btn-group + .btn-group {
  3750. margin-top: -1px;
  3751. margin-left: 0;
  3752. }
  3753. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  3754. border-radius: 0;
  3755. }
  3756. .btn-group-vertical > .btn:first-child:not(:last-child) {
  3757. border-top-left-radius: 4px;
  3758. border-top-right-radius: 4px;
  3759. border-bottom-right-radius: 0;
  3760. border-bottom-left-radius: 0;
  3761. }
  3762. .btn-group-vertical > .btn:last-child:not(:first-child) {
  3763. border-top-left-radius: 0;
  3764. border-top-right-radius: 0;
  3765. border-bottom-right-radius: 4px;
  3766. border-bottom-left-radius: 4px;
  3767. }
  3768. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  3769. border-radius: 0;
  3770. }
  3771. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3772. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3773. border-bottom-right-radius: 0;
  3774. border-bottom-left-radius: 0;
  3775. }
  3776. .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3777. border-top-left-radius: 0;
  3778. border-top-right-radius: 0;
  3779. }
  3780. .btn-group-justified {
  3781. display: table;
  3782. width: 100%;
  3783. table-layout: fixed;
  3784. border-collapse: separate;
  3785. }
  3786. .btn-group-justified > .btn,
  3787. .btn-group-justified > .btn-group {
  3788. display: table-cell;
  3789. float: none;
  3790. width: 1%;
  3791. }
  3792. .btn-group-justified > .btn-group .btn {
  3793. width: 100%;
  3794. }
  3795. .btn-group-justified > .btn-group .dropdown-menu {
  3796. left: auto;
  3797. }
  3798. [data-toggle="buttons"] > .btn input[type="radio"],
  3799. [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
  3800. [data-toggle="buttons"] > .btn input[type="checkbox"],
  3801. [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  3802. position: absolute;
  3803. clip: rect(0, 0, 0, 0);
  3804. pointer-events: none;
  3805. }
  3806. .input-group {
  3807. position: relative;
  3808. display: table;
  3809. border-collapse: separate;
  3810. }
  3811. .input-group[class*="col-"] {
  3812. float: none;
  3813. padding-right: 0;
  3814. padding-left: 0;
  3815. }
  3816. .input-group .form-control {
  3817. position: relative;
  3818. z-index: 2;
  3819. float: left;
  3820. width: 100%;
  3821. margin-bottom: 0;
  3822. }
  3823. .input-group .form-control:focus {
  3824. z-index: 3;
  3825. }
  3826. .input-group-lg > .form-control,
  3827. .input-group-lg > .input-group-addon,
  3828. .input-group-lg > .input-group-btn > .btn {
  3829. height: 46px;
  3830. padding: 10px 16px;
  3831. font-size: 18px;
  3832. line-height: 1.3333333;
  3833. border-radius: 6px;
  3834. }
  3835. select.input-group-lg > .form-control,
  3836. select.input-group-lg > .input-group-addon,
  3837. select.input-group-lg > .input-group-btn > .btn {
  3838. height: 46px;
  3839. line-height: 46px;
  3840. }
  3841. textarea.input-group-lg > .form-control,
  3842. textarea.input-group-lg > .input-group-addon,
  3843. textarea.input-group-lg > .input-group-btn > .btn,
  3844. select[multiple].input-group-lg > .form-control,
  3845. select[multiple].input-group-lg > .input-group-addon,
  3846. select[multiple].input-group-lg > .input-group-btn > .btn {
  3847. height: auto;
  3848. }
  3849. .input-group-sm > .form-control,
  3850. .input-group-sm > .input-group-addon,
  3851. .input-group-sm > .input-group-btn > .btn {
  3852. height: 30px;
  3853. padding: 5px 10px;
  3854. font-size: 12px;
  3855. line-height: 1.5;
  3856. border-radius: 3px;
  3857. }
  3858. select.input-group-sm > .form-control,
  3859. select.input-group-sm > .input-group-addon,
  3860. select.input-group-sm > .input-group-btn > .btn {
  3861. height: 30px;
  3862. line-height: 30px;
  3863. }
  3864. textarea.input-group-sm > .form-control,
  3865. textarea.input-group-sm > .input-group-addon,
  3866. textarea.input-group-sm > .input-group-btn > .btn,
  3867. select[multiple].input-group-sm > .form-control,
  3868. select[multiple].input-group-sm > .input-group-addon,
  3869. select[multiple].input-group-sm > .input-group-btn > .btn {
  3870. height: auto;
  3871. }
  3872. .input-group-addon,
  3873. .input-group-btn,
  3874. .input-group .form-control {
  3875. display: table-cell;
  3876. }
  3877. .input-group-addon:not(:first-child):not(:last-child),
  3878. .input-group-btn:not(:first-child):not(:last-child),
  3879. .input-group .form-control:not(:first-child):not(:last-child) {
  3880. border-radius: 0;
  3881. }
  3882. .input-group-addon,
  3883. .input-group-btn {
  3884. width: 1%;
  3885. white-space: nowrap;
  3886. vertical-align: middle;
  3887. }
  3888. .input-group-addon {
  3889. padding: 6px 12px;
  3890. font-size: 14px;
  3891. font-weight: normal;
  3892. line-height: 1;
  3893. color: #555;
  3894. text-align: center;
  3895. background-color: #eee;
  3896. border: 1px solid #ccc;
  3897. border-radius: 4px;
  3898. }
  3899. .input-group-addon.input-sm {
  3900. padding: 5px 10px;
  3901. font-size: 12px;
  3902. border-radius: 3px;
  3903. }
  3904. .input-group-addon.input-lg {
  3905. padding: 10px 16px;
  3906. font-size: 18px;
  3907. border-radius: 6px;
  3908. }
  3909. .input-group-addon input[type="radio"],
  3910. .input-group-addon input[type="checkbox"] {
  3911. margin-top: 0;
  3912. }
  3913. .input-group .form-control:first-child,
  3914. .input-group-addon:first-child,
  3915. .input-group-btn:first-child > .btn,
  3916. .input-group-btn:first-child > .btn-group > .btn,
  3917. .input-group-btn:first-child > .dropdown-toggle,
  3918. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3919. .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  3920. border-top-right-radius: 0;
  3921. border-bottom-right-radius: 0;
  3922. }
  3923. .input-group-addon:first-child {
  3924. border-right: 0;
  3925. }
  3926. .input-group .form-control:last-child,
  3927. .input-group-addon:last-child,
  3928. .input-group-btn:last-child > .btn,
  3929. .input-group-btn:last-child > .btn-group > .btn,
  3930. .input-group-btn:last-child > .dropdown-toggle,
  3931. .input-group-btn:first-child > .btn:not(:first-child),
  3932. .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  3933. border-top-left-radius: 0;
  3934. border-bottom-left-radius: 0;
  3935. }
  3936. .input-group-addon:last-child {
  3937. border-left: 0;
  3938. }
  3939. .input-group-btn {
  3940. position: relative;
  3941. font-size: 0;
  3942. white-space: nowrap;
  3943. }
  3944. .input-group-btn > .btn {
  3945. position: relative;
  3946. }
  3947. .input-group-btn > .btn + .btn {
  3948. margin-left: -1px;
  3949. }
  3950. .input-group-btn > .btn:hover,
  3951. .input-group-btn > .btn:focus,
  3952. .input-group-btn > .btn:active {
  3953. z-index: 2;
  3954. }
  3955. .input-group-btn:first-child > .btn,
  3956. .input-group-btn:first-child > .btn-group {
  3957. margin-right: -1px;
  3958. }
  3959. .input-group-btn:last-child > .btn,
  3960. .input-group-btn:last-child > .btn-group {
  3961. z-index: 2;
  3962. margin-left: -1px;
  3963. }
  3964. .nav {
  3965. padding-left: 0;
  3966. margin-bottom: 0;
  3967. list-style: none;
  3968. }
  3969. .nav > li {
  3970. position: relative;
  3971. display: block;
  3972. }
  3973. .nav > li > a {
  3974. position: relative;
  3975. display: block;
  3976. padding: 10px 15px;
  3977. }
  3978. .nav > li > a:hover,
  3979. .nav > li > a:focus {
  3980. text-decoration: none;
  3981. background-color: #eee;
  3982. }
  3983. .nav > li.disabled > a {
  3984. color: #777;
  3985. }
  3986. .nav > li.disabled > a:hover,
  3987. .nav > li.disabled > a:focus {
  3988. color: #777;
  3989. text-decoration: none;
  3990. cursor: not-allowed;
  3991. background-color: transparent;
  3992. }
  3993. .nav .open > a,
  3994. .nav .open > a:hover,
  3995. .nav .open > a:focus {
  3996. background-color: #eee;
  3997. border-color: #337ab7;
  3998. }
  3999. .nav .nav-divider {
  4000. height: 1px;
  4001. margin: 9px 0;
  4002. overflow: hidden;
  4003. background-color: #e5e5e5;
  4004. }
  4005. .nav > li > a > img {
  4006. max-width: none;
  4007. }
  4008. .nav-tabs {
  4009. border-bottom: 1px solid #ddd;
  4010. }
  4011. .nav-tabs > li {
  4012. float: left;
  4013. margin-bottom: -1px;
  4014. }
  4015. .nav-tabs > li > a {
  4016. margin-right: 2px;
  4017. line-height: 1.42857143;
  4018. border: 1px solid transparent;
  4019. border-radius: 4px 4px 0 0;
  4020. }
  4021. .nav-tabs > li > a:hover {
  4022. border-color: #eee #eee #ddd;
  4023. }
  4024. .nav-tabs > li.active > a,
  4025. .nav-tabs > li.active > a:hover,
  4026. .nav-tabs > li.active > a:focus {
  4027. color: #555;
  4028. cursor: default;
  4029. background-color: #fff;
  4030. border: 1px solid #ddd;
  4031. border-bottom-color: transparent;
  4032. }
  4033. .nav-tabs.nav-justified {
  4034. width: 100%;
  4035. border-bottom: 0;
  4036. }
  4037. .nav-tabs.nav-justified > li {
  4038. float: none;
  4039. }
  4040. .nav-tabs.nav-justified > li > a {
  4041. margin-bottom: 5px;
  4042. text-align: center;
  4043. }
  4044. .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  4045. top: auto;
  4046. left: auto;
  4047. }
  4048. @media (min-width: 768px) {
  4049. .nav-tabs.nav-justified > li {
  4050. display: table-cell;
  4051. width: 1%;
  4052. }
  4053. .nav-tabs.nav-justified > li > a {
  4054. margin-bottom: 0;
  4055. }
  4056. }
  4057. .nav-tabs.nav-justified > li > a {
  4058. margin-right: 0;
  4059. border-radius: 4px;
  4060. }
  4061. .nav-tabs.nav-justified > .active > a,
  4062. .nav-tabs.nav-justified > .active > a:hover,
  4063. .nav-tabs.nav-justified > .active > a:focus {
  4064. border: 1px solid #ddd;
  4065. }
  4066. @media (min-width: 768px) {
  4067. .nav-tabs.nav-justified > li > a {
  4068. border-bottom: 1px solid #ddd;
  4069. border-radius: 4px 4px 0 0;
  4070. }
  4071. .nav-tabs.nav-justified > .active > a,
  4072. .nav-tabs.nav-justified > .active > a:hover,
  4073. .nav-tabs.nav-justified > .active > a:focus {
  4074. border-bottom-color: #fff;
  4075. }
  4076. }
  4077. .nav-pills > li {
  4078. float: left;
  4079. }
  4080. .nav-pills > li > a {
  4081. border-radius: 4px;
  4082. }
  4083. .nav-pills > li + li {
  4084. margin-left: 2px;
  4085. }
  4086. .nav-pills > li.active > a,
  4087. .nav-pills > li.active > a:hover,
  4088. .nav-pills > li.active > a:focus {
  4089. color: #fff;
  4090. background-color: #337ab7;
  4091. }
  4092. .nav-stacked > li {
  4093. float: none;
  4094. }
  4095. .nav-stacked > li + li {
  4096. margin-top: 2px;
  4097. margin-left: 0;
  4098. }
  4099. .nav-justified {
  4100. width: 100%;
  4101. }
  4102. .nav-justified > li {
  4103. float: none;
  4104. }
  4105. .nav-justified > li > a {
  4106. margin-bottom: 5px;
  4107. text-align: center;
  4108. }
  4109. .nav-justified > .dropdown .dropdown-menu {
  4110. top: auto;
  4111. left: auto;
  4112. }
  4113. @media (min-width: 768px) {
  4114. .nav-justified > li {
  4115. display: table-cell;
  4116. width: 1%;
  4117. }
  4118. .nav-justified > li > a {
  4119. margin-bottom: 0;
  4120. }
  4121. }
  4122. .nav-tabs-justified {
  4123. border-bottom: 0;
  4124. }
  4125. .nav-tabs-justified > li > a {
  4126. margin-right: 0;
  4127. border-radius: 4px;
  4128. }
  4129. .nav-tabs-justified > .active > a,
  4130. .nav-tabs-justified > .active > a:hover,
  4131. .nav-tabs-justified > .active > a:focus {
  4132. border: 1px solid #ddd;
  4133. }
  4134. @media (min-width: 768px) {
  4135. .nav-tabs-justified > li > a {
  4136. border-bottom: 1px solid #ddd;
  4137. border-radius: 4px 4px 0 0;
  4138. }
  4139. .nav-tabs-justified > .active > a,
  4140. .nav-tabs-justified > .active > a:hover,
  4141. .nav-tabs-justified > .active > a:focus {
  4142. border-bottom-color: #fff;
  4143. }
  4144. }
  4145. .tab-content > .tab-pane {
  4146. display: none;
  4147. }
  4148. .tab-content > .active {
  4149. display: block;
  4150. }
  4151. .nav-tabs .dropdown-menu {
  4152. margin-top: -1px;
  4153. border-top-left-radius: 0;
  4154. border-top-right-radius: 0;
  4155. }
  4156. .navbar {
  4157. position: relative;
  4158. min-height: 50px;
  4159. margin-bottom: 20px;
  4160. border: 1px solid transparent;
  4161. }
  4162. @media (min-width: 768px) {
  4163. .navbar {
  4164. border-radius: 4px;
  4165. }
  4166. }
  4167. @media (min-width: 768px) {
  4168. .navbar-header {
  4169. float: left;
  4170. }
  4171. }
  4172. .navbar-collapse {
  4173. padding-right: 15px;
  4174. padding-left: 15px;
  4175. overflow-x: visible;
  4176. -webkit-overflow-scrolling: touch;
  4177. border-top: 1px solid transparent;
  4178. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  4179. box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  4180. }
  4181. .navbar-collapse.in {
  4182. overflow-y: auto;
  4183. }
  4184. @media (min-width: 768px) {
  4185. .navbar-collapse {
  4186. width: auto;
  4187. border-top: 0;
  4188. -webkit-box-shadow: none;
  4189. box-shadow: none;
  4190. }
  4191. .navbar-collapse.collapse {
  4192. display: block !important;
  4193. height: auto !important;
  4194. padding-bottom: 0;
  4195. overflow: visible !important;
  4196. }
  4197. .navbar-collapse.in {
  4198. overflow-y: visible;
  4199. }
  4200. .navbar-fixed-top .navbar-collapse,
  4201. .navbar-static-top .navbar-collapse,
  4202. .navbar-fixed-bottom .navbar-collapse {
  4203. padding-right: 0;
  4204. padding-left: 0;
  4205. }
  4206. }
  4207. .navbar-fixed-top .navbar-collapse,
  4208. .navbar-fixed-bottom .navbar-collapse {
  4209. max-height: 340px;
  4210. }
  4211. @media (max-device-width: 480px) and (orientation: landscape) {
  4212. .navbar-fixed-top .navbar-collapse,
  4213. .navbar-fixed-bottom .navbar-collapse {
  4214. max-height: 200px;
  4215. }
  4216. }
  4217. .container > .navbar-header,
  4218. .container-fluid > .navbar-header,
  4219. .container > .navbar-collapse,
  4220. .container-fluid > .navbar-collapse {
  4221. margin-right: -15px;
  4222. margin-left: -15px;
  4223. }
  4224. @media (min-width: 768px) {
  4225. .container > .navbar-header,
  4226. .container-fluid > .navbar-header,
  4227. .container > .navbar-collapse,
  4228. .container-fluid > .navbar-collapse {
  4229. margin-right: 0;
  4230. margin-left: 0;
  4231. }
  4232. }
  4233. .navbar-static-top {
  4234. z-index: 1000;
  4235. border-width: 0 0 1px;
  4236. }
  4237. @media (min-width: 768px) {
  4238. .navbar-static-top {
  4239. border-radius: 0;
  4240. }
  4241. }
  4242. .navbar-fixed-top,
  4243. .navbar-fixed-bottom {
  4244. position: fixed;
  4245. right: 0;
  4246. left: 0;
  4247. z-index: 1030;
  4248. }
  4249. @media (min-width: 768px) {
  4250. .navbar-fixed-top,
  4251. .navbar-fixed-bottom {
  4252. border-radius: 0;
  4253. }
  4254. }
  4255. .navbar-fixed-top {
  4256. top: 0;
  4257. border-width: 0 0 1px;
  4258. }
  4259. .navbar-fixed-bottom {
  4260. bottom: 0;
  4261. margin-bottom: 0;
  4262. border-width: 1px 0 0;
  4263. }
  4264. .navbar-brand {
  4265. float: left;
  4266. height: 50px;
  4267. padding: 15px 15px;
  4268. font-size: 18px;
  4269. line-height: 20px;
  4270. }
  4271. .navbar-brand:hover,
  4272. .navbar-brand:focus {
  4273. text-decoration: none;
  4274. }
  4275. .navbar-brand > img {
  4276. display: block;
  4277. }
  4278. @media (min-width: 768px) {
  4279. .navbar > .container .navbar-brand,
  4280. .navbar > .container-fluid .navbar-brand {
  4281. margin-left: -15px;
  4282. }
  4283. }
  4284. .navbar-toggle {
  4285. position: relative;
  4286. float: right;
  4287. padding: 9px 10px;
  4288. margin-top: 8px;
  4289. margin-right: 15px;
  4290. margin-bottom: 8px;
  4291. background-color: transparent;
  4292. background-image: none;
  4293. border: 1px solid transparent;
  4294. border-radius: 4px;
  4295. }
  4296. .navbar-toggle:focus {
  4297. outline: 0;
  4298. }
  4299. .navbar-toggle .icon-bar {
  4300. display: block;
  4301. width: 22px;
  4302. height: 2px;
  4303. border-radius: 1px;
  4304. }
  4305. .navbar-toggle .icon-bar + .icon-bar {
  4306. margin-top: 4px;
  4307. }
  4308. @media (min-width: 768px) {
  4309. .navbar-toggle {
  4310. display: none;
  4311. }
  4312. }
  4313. .navbar-nav {
  4314. margin: 7.5px -15px;
  4315. }
  4316. .navbar-nav > li > a {
  4317. padding-top: 10px;
  4318. padding-bottom: 10px;
  4319. line-height: 20px;
  4320. }
  4321. @media (max-width: 767px) {
  4322. .navbar-nav .open .dropdown-menu {
  4323. position: static;
  4324. float: none;
  4325. width: auto;
  4326. margin-top: 0;
  4327. background-color: transparent;
  4328. border: 0;
  4329. -webkit-box-shadow: none;
  4330. box-shadow: none;
  4331. }
  4332. .navbar-nav .open .dropdown-menu > li > a,
  4333. .navbar-nav .open .dropdown-menu .dropdown-header {
  4334. padding: 5px 15px 5px 25px;
  4335. }
  4336. .navbar-nav .open .dropdown-menu > li > a {
  4337. line-height: 20px;
  4338. }
  4339. .navbar-nav .open .dropdown-menu > li > a:hover,
  4340. .navbar-nav .open .dropdown-menu > li > a:focus {
  4341. background-image: none;
  4342. }
  4343. }
  4344. @media (min-width: 768px) {
  4345. .navbar-nav {
  4346. float: left;
  4347. margin: 0;
  4348. }
  4349. .navbar-nav > li {
  4350. float: left;
  4351. }
  4352. .navbar-nav > li > a {
  4353. padding-top: 15px;
  4354. padding-bottom: 15px;
  4355. }
  4356. }
  4357. .navbar-form {
  4358. padding: 10px 15px;
  4359. margin-top: 8px;
  4360. margin-right: -15px;
  4361. margin-bottom: 8px;
  4362. margin-left: -15px;
  4363. border-top: 1px solid transparent;
  4364. border-bottom: 1px solid transparent;
  4365. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
  4366. box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
  4367. }
  4368. @media (min-width: 768px) {
  4369. .navbar-form .form-group {
  4370. display: inline-block;
  4371. margin-bottom: 0;
  4372. vertical-align: middle;
  4373. }
  4374. .navbar-form .form-control {
  4375. display: inline-block;
  4376. width: auto;
  4377. vertical-align: middle;
  4378. }
  4379. .navbar-form .form-control-static {
  4380. display: inline-block;
  4381. }
  4382. .navbar-form .input-group {
  4383. display: inline-table;
  4384. vertical-align: middle;
  4385. }
  4386. .navbar-form .input-group .input-group-addon,
  4387. .navbar-form .input-group .input-group-btn,
  4388. .navbar-form .input-group .form-control {
  4389. width: auto;
  4390. }
  4391. .navbar-form .input-group > .form-control {
  4392. width: 100%;
  4393. }
  4394. .navbar-form .control-label {
  4395. margin-bottom: 0;
  4396. vertical-align: middle;
  4397. }
  4398. .navbar-form .radio,
  4399. .navbar-form .checkbox {
  4400. display: inline-block;
  4401. margin-top: 0;
  4402. margin-bottom: 0;
  4403. vertical-align: middle;
  4404. }
  4405. .navbar-form .radio label,
  4406. .navbar-form .checkbox label {
  4407. padding-left: 0;
  4408. }
  4409. .navbar-form .radio input[type="radio"],
  4410. .navbar-form .checkbox input[type="checkbox"] {
  4411. position: relative;
  4412. margin-left: 0;
  4413. }
  4414. .navbar-form .has-feedback .form-control-feedback {
  4415. top: 0;
  4416. }
  4417. }
  4418. @media (max-width: 767px) {
  4419. .navbar-form .form-group {
  4420. margin-bottom: 5px;
  4421. }
  4422. .navbar-form .form-group:last-child {
  4423. margin-bottom: 0;
  4424. }
  4425. }
  4426. @media (min-width: 768px) {
  4427. .navbar-form {
  4428. width: auto;
  4429. padding-top: 0;
  4430. padding-bottom: 0;
  4431. margin-right: 0;
  4432. margin-left: 0;
  4433. border: 0;
  4434. -webkit-box-shadow: none;
  4435. box-shadow: none;
  4436. }
  4437. }
  4438. .navbar-nav > li > .dropdown-menu {
  4439. margin-top: 0;
  4440. border-top-left-radius: 0;
  4441. border-top-right-radius: 0;
  4442. }
  4443. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  4444. margin-bottom: 0;
  4445. border-top-left-radius: 4px;
  4446. border-top-right-radius: 4px;
  4447. border-bottom-right-radius: 0;
  4448. border-bottom-left-radius: 0;
  4449. }
  4450. .navbar-btn {
  4451. margin-top: 8px;
  4452. margin-bottom: 8px;
  4453. }
  4454. .navbar-btn.btn-sm {
  4455. margin-top: 10px;
  4456. margin-bottom: 10px;
  4457. }
  4458. .navbar-btn.btn-xs {
  4459. margin-top: 14px;
  4460. margin-bottom: 14px;
  4461. }
  4462. .navbar-text {
  4463. margin-top: 15px;
  4464. margin-bottom: 15px;
  4465. }
  4466. @media (min-width: 768px) {
  4467. .navbar-text {
  4468. float: left;
  4469. margin-right: 15px;
  4470. margin-left: 15px;
  4471. }
  4472. }
  4473. @media (min-width: 768px) {
  4474. .navbar-left {
  4475. float: left !important;
  4476. }
  4477. .navbar-right {
  4478. float: right !important;
  4479. margin-right: -15px;
  4480. }
  4481. .navbar-right ~ .navbar-right {
  4482. margin-right: 0;
  4483. }
  4484. }
  4485. .navbar-default {
  4486. background-color: #f8f8f8;
  4487. border-color: #e7e7e7;
  4488. }
  4489. .navbar-default .navbar-brand {
  4490. color: #777;
  4491. }
  4492. .navbar-default .navbar-brand:hover,
  4493. .navbar-default .navbar-brand:focus {
  4494. color: #5e5e5e;
  4495. background-color: transparent;
  4496. }
  4497. .navbar-default .navbar-text {
  4498. color: #777;
  4499. }
  4500. .navbar-default .navbar-nav > li > a {
  4501. color: #777;
  4502. }
  4503. .navbar-default .navbar-nav > li > a:hover,
  4504. .navbar-default .navbar-nav > li > a:focus {
  4505. color: #333;
  4506. background-color: transparent;
  4507. }
  4508. .navbar-default .navbar-nav > .active > a,
  4509. .navbar-default .navbar-nav > .active > a:hover,
  4510. .navbar-default .navbar-nav > .active > a:focus {
  4511. color: #555;
  4512. background-color: #e7e7e7;
  4513. }
  4514. .navbar-default .navbar-nav > .disabled > a,
  4515. .navbar-default .navbar-nav > .disabled > a:hover,
  4516. .navbar-default .navbar-nav > .disabled > a:focus {
  4517. color: #ccc;
  4518. background-color: transparent;
  4519. }
  4520. .navbar-default .navbar-toggle {
  4521. border-color: #ddd;
  4522. }
  4523. .navbar-default .navbar-toggle:hover,
  4524. .navbar-default .navbar-toggle:focus {
  4525. background-color: #ddd;
  4526. }
  4527. .navbar-default .navbar-toggle .icon-bar {
  4528. background-color: #888;
  4529. }
  4530. .navbar-default .navbar-collapse,
  4531. .navbar-default .navbar-form {
  4532. border-color: #e7e7e7;
  4533. }
  4534. .navbar-default .navbar-nav > .open > a,
  4535. .navbar-default .navbar-nav > .open > a:hover,
  4536. .navbar-default .navbar-nav > .open > a:focus {
  4537. color: #555;
  4538. background-color: #e7e7e7;
  4539. }
  4540. @media (max-width: 767px) {
  4541. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  4542. color: #777;
  4543. }
  4544. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  4545. .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  4546. color: #333;
  4547. background-color: transparent;
  4548. }
  4549. .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  4550. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  4551. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  4552. color: #555;
  4553. background-color: #e7e7e7;
  4554. }
  4555. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  4556. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4557. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4558. color: #ccc;
  4559. background-color: transparent;
  4560. }
  4561. }
  4562. .navbar-default .navbar-link {
  4563. color: #777;
  4564. }
  4565. .navbar-default .navbar-link:hover {
  4566. color: #333;
  4567. }
  4568. .navbar-default .btn-link {
  4569. color: #777;
  4570. }
  4571. .navbar-default .btn-link:hover,
  4572. .navbar-default .btn-link:focus {
  4573. color: #333;
  4574. }
  4575. .navbar-default .btn-link[disabled]:hover,
  4576. fieldset[disabled] .navbar-default .btn-link:hover,
  4577. .navbar-default .btn-link[disabled]:focus,
  4578. fieldset[disabled] .navbar-default .btn-link:focus {
  4579. color: #ccc;
  4580. }
  4581. .navbar-inverse {
  4582. background-color: #222;
  4583. border-color: #080808;
  4584. }
  4585. .navbar-inverse .navbar-brand {
  4586. color: #9d9d9d;
  4587. }
  4588. .navbar-inverse .navbar-brand:hover,
  4589. .navbar-inverse .navbar-brand:focus {
  4590. color: #fff;
  4591. background-color: transparent;
  4592. }
  4593. .navbar-inverse .navbar-text {
  4594. color: #9d9d9d;
  4595. }
  4596. .navbar-inverse .navbar-nav > li > a {
  4597. color: #9d9d9d;
  4598. }
  4599. .navbar-inverse .navbar-nav > li > a:hover,
  4600. .navbar-inverse .navbar-nav > li > a:focus {
  4601. color: #fff;
  4602. background-color: transparent;
  4603. }
  4604. .navbar-inverse .navbar-nav > .active > a,
  4605. .navbar-inverse .navbar-nav > .active > a:hover,
  4606. .navbar-inverse .navbar-nav > .active > a:focus {
  4607. color: #fff;
  4608. background-color: #080808;
  4609. }
  4610. .navbar-inverse .navbar-nav > .disabled > a,
  4611. .navbar-inverse .navbar-nav > .disabled > a:hover,
  4612. .navbar-inverse .navbar-nav > .disabled > a:focus {
  4613. color: #444;
  4614. background-color: transparent;
  4615. }
  4616. .navbar-inverse .navbar-toggle {
  4617. border-color: #333;
  4618. }
  4619. .navbar-inverse .navbar-toggle:hover,
  4620. .navbar-inverse .navbar-toggle:focus {
  4621. background-color: #333;
  4622. }
  4623. .navbar-inverse .navbar-toggle .icon-bar {
  4624. background-color: #fff;
  4625. }
  4626. .navbar-inverse .navbar-collapse,
  4627. .navbar-inverse .navbar-form {
  4628. border-color: #101010;
  4629. }
  4630. .navbar-inverse .navbar-nav > .open > a,
  4631. .navbar-inverse .navbar-nav > .open > a:hover,
  4632. .navbar-inverse .navbar-nav > .open > a:focus {
  4633. color: #fff;
  4634. background-color: #080808;
  4635. }
  4636. @media (max-width: 767px) {
  4637. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  4638. border-color: #080808;
  4639. }
  4640. .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
  4641. background-color: #080808;
  4642. }
  4643. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  4644. color: #9d9d9d;
  4645. }
  4646. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  4647. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  4648. color: #fff;
  4649. background-color: transparent;
  4650. }
  4651. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  4652. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  4653. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
  4654. color: #fff;
  4655. background-color: #080808;
  4656. }
  4657. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  4658. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4659. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4660. color: #444;
  4661. background-color: transparent;
  4662. }
  4663. }
  4664. .navbar-inverse .navbar-link {
  4665. color: #9d9d9d;
  4666. }
  4667. .navbar-inverse .navbar-link:hover {
  4668. color: #fff;
  4669. }
  4670. .navbar-inverse .btn-link {
  4671. color: #9d9d9d;
  4672. }
  4673. .navbar-inverse .btn-link:hover,
  4674. .navbar-inverse .btn-link:focus {
  4675. color: #fff;
  4676. }
  4677. .navbar-inverse .btn-link[disabled]:hover,
  4678. fieldset[disabled] .navbar-inverse .btn-link:hover,
  4679. .navbar-inverse .btn-link[disabled]:focus,
  4680. fieldset[disabled] .navbar-inverse .btn-link:focus {
  4681. color: #444;
  4682. }
  4683. .breadcrumb {
  4684. padding: 8px 15px;
  4685. margin-bottom: 20px;
  4686. list-style: none;
  4687. background-color: #f5f5f5;
  4688. border-radius: 4px;
  4689. }
  4690. .breadcrumb > li {
  4691. display: inline-block;
  4692. }
  4693. .breadcrumb > li + li:before {
  4694. padding: 0 5px;
  4695. color: #ccc;
  4696. content: "/\00a0";
  4697. }
  4698. .breadcrumb > .active {
  4699. color: #777;
  4700. }
  4701. .pagination {
  4702. display: inline-block;
  4703. padding-left: 0;
  4704. margin: 20px 0;
  4705. border-radius: 4px;
  4706. }
  4707. .pagination > li {
  4708. display: inline;
  4709. }
  4710. .pagination > li > a,
  4711. .pagination > li > span {
  4712. position: relative;
  4713. float: left;
  4714. padding: 6px 12px;
  4715. margin-left: -1px;
  4716. line-height: 1.42857143;
  4717. color: #337ab7;
  4718. text-decoration: none;
  4719. background-color: #fff;
  4720. border: 1px solid #ddd;
  4721. }
  4722. .pagination > li:first-child > a,
  4723. .pagination > li:first-child > span {
  4724. margin-left: 0;
  4725. border-top-left-radius: 4px;
  4726. border-bottom-left-radius: 4px;
  4727. }
  4728. .pagination > li:last-child > a,
  4729. .pagination > li:last-child > span {
  4730. border-top-right-radius: 4px;
  4731. border-bottom-right-radius: 4px;
  4732. }
  4733. .pagination > li > a:hover,
  4734. .pagination > li > span:hover,
  4735. .pagination > li > a:focus,
  4736. .pagination > li > span:focus {
  4737. z-index: 2;
  4738. color: #23527c;
  4739. background-color: #eee;
  4740. border-color: #ddd;
  4741. }
  4742. .pagination > .active > a,
  4743. .pagination > .active > span,
  4744. .pagination > .active > a:hover,
  4745. .pagination > .active > span:hover,
  4746. .pagination > .active > a:focus,
  4747. .pagination > .active > span:focus {
  4748. z-index: 3;
  4749. color: #fff;
  4750. cursor: default;
  4751. background-color: #337ab7;
  4752. border-color: #337ab7;
  4753. }
  4754. .pagination > .disabled > span,
  4755. .pagination > .disabled > span:hover,
  4756. .pagination > .disabled > span:focus,
  4757. .pagination > .disabled > a,
  4758. .pagination > .disabled > a:hover,
  4759. .pagination > .disabled > a:focus {
  4760. color: #777;
  4761. cursor: not-allowed;
  4762. background-color: #fff;
  4763. border-color: #ddd;
  4764. }
  4765. .pagination-lg > li > a,
  4766. .pagination-lg > li > span {
  4767. padding: 10px 16px;
  4768. font-size: 18px;
  4769. line-height: 1.3333333;
  4770. }
  4771. .pagination-lg > li:first-child > a,
  4772. .pagination-lg > li:first-child > span {
  4773. border-top-left-radius: 6px;
  4774. border-bottom-left-radius: 6px;
  4775. }
  4776. .pagination-lg > li:last-child > a,
  4777. .pagination-lg > li:last-child > span {
  4778. border-top-right-radius: 6px;
  4779. border-bottom-right-radius: 6px;
  4780. }
  4781. .pagination-sm > li > a,
  4782. .pagination-sm > li > span {
  4783. padding: 5px 10px;
  4784. font-size: 12px;
  4785. line-height: 1.5;
  4786. }
  4787. .pagination-sm > li:first-child > a,
  4788. .pagination-sm > li:first-child > span {
  4789. border-top-left-radius: 3px;
  4790. border-bottom-left-radius: 3px;
  4791. }
  4792. .pagination-sm > li:last-child > a,
  4793. .pagination-sm > li:last-child > span {
  4794. border-top-right-radius: 3px;
  4795. border-bottom-right-radius: 3px;
  4796. }
  4797. .pager {
  4798. padding-left: 0;
  4799. margin: 20px 0;
  4800. text-align: center;
  4801. list-style: none;
  4802. }
  4803. .pager li {
  4804. display: inline;
  4805. }
  4806. .pager li > a,
  4807. .pager li > span {
  4808. display: inline-block;
  4809. padding: 5px 14px;
  4810. background-color: #fff;
  4811. border: 1px solid #ddd;
  4812. border-radius: 15px;
  4813. }
  4814. .pager li > a:hover,
  4815. .pager li > a:focus {
  4816. text-decoration: none;
  4817. background-color: #eee;
  4818. }
  4819. .pager .next > a,
  4820. .pager .next > span {
  4821. float: right;
  4822. }
  4823. .pager .previous > a,
  4824. .pager .previous > span {
  4825. float: left;
  4826. }
  4827. .pager .disabled > a,
  4828. .pager .disabled > a:hover,
  4829. .pager .disabled > a:focus,
  4830. .pager .disabled > span {
  4831. color: #777;
  4832. cursor: not-allowed;
  4833. background-color: #fff;
  4834. }
  4835. .label {
  4836. display: inline;
  4837. padding: .2em .6em .3em;
  4838. font-size: 75%;
  4839. font-weight: bold;
  4840. line-height: 1;
  4841. color: #fff;
  4842. text-align: center;
  4843. white-space: nowrap;
  4844. vertical-align: baseline;
  4845. border-radius: .25em;
  4846. }
  4847. a.label:hover,
  4848. a.label:focus {
  4849. color: #fff;
  4850. text-decoration: none;
  4851. cursor: pointer;
  4852. }
  4853. .label:empty {
  4854. display: none;
  4855. }
  4856. .btn .label {
  4857. position: relative;
  4858. top: -1px;
  4859. }
  4860. .label-default {
  4861. background-color: #777;
  4862. }
  4863. .label-default[href]:hover,
  4864. .label-default[href]:focus {
  4865. background-color: #5e5e5e;
  4866. }
  4867. .label-primary {
  4868. background-color: #337ab7;
  4869. }
  4870. .label-primary[href]:hover,
  4871. .label-primary[href]:focus {
  4872. background-color: #286090;
  4873. }
  4874. .label-success {
  4875. background-color: #5cb85c;
  4876. }
  4877. .label-success[href]:hover,
  4878. .label-success[href]:focus {
  4879. background-color: #449d44;
  4880. }
  4881. .label-info {
  4882. background-color: #5bc0de;
  4883. }
  4884. .label-info[href]:hover,
  4885. .label-info[href]:focus {
  4886. background-color: #31b0d5;
  4887. }
  4888. .label-warning {
  4889. background-color: #f0ad4e;
  4890. }
  4891. .label-warning[href]:hover,
  4892. .label-warning[href]:focus {
  4893. background-color: #ec971f;
  4894. }
  4895. .label-danger {
  4896. background-color: #d9534f;
  4897. }
  4898. .label-danger[href]:hover,
  4899. .label-danger[href]:focus {
  4900. background-color: #c9302c;
  4901. }
  4902. .badge {
  4903. display: inline-block;
  4904. min-width: 10px;
  4905. padding: 3px 7px;
  4906. font-size: 12px;
  4907. font-weight: bold;
  4908. line-height: 1;
  4909. color: #fff;
  4910. text-align: center;
  4911. white-space: nowrap;
  4912. vertical-align: middle;
  4913. background-color: #777;
  4914. border-radius: 10px;
  4915. }
  4916. .badge:empty {
  4917. display: none;
  4918. }
  4919. .btn .badge {
  4920. position: relative;
  4921. top: -1px;
  4922. }
  4923. .btn-xs .badge,
  4924. .btn-group-xs > .btn .badge {
  4925. top: 0;
  4926. padding: 1px 5px;
  4927. }
  4928. a.badge:hover,
  4929. a.badge:focus {
  4930. color: #fff;
  4931. text-decoration: none;
  4932. cursor: pointer;
  4933. }
  4934. .list-group-item.active > .badge,
  4935. .nav-pills > .active > a > .badge {
  4936. color: #337ab7;
  4937. background-color: #fff;
  4938. }
  4939. .list-group-item > .badge {
  4940. float: right;
  4941. }
  4942. .list-group-item > .badge + .badge {
  4943. margin-right: 5px;
  4944. }
  4945. .nav-pills > li > a > .badge {
  4946. margin-left: 3px;
  4947. }
  4948. .jumbotron {
  4949. padding-top: 30px;
  4950. padding-bottom: 30px;
  4951. margin-bottom: 30px;
  4952. color: inherit;
  4953. background-color: #eee;
  4954. }
  4955. .jumbotron h1,
  4956. .jumbotron .h1 {
  4957. color: inherit;
  4958. }
  4959. .jumbotron p {
  4960. margin-bottom: 15px;
  4961. font-size: 21px;
  4962. font-weight: 200;
  4963. }
  4964. .jumbotron > hr {
  4965. border-top-color: #d5d5d5;
  4966. }
  4967. .container .jumbotron,
  4968. .container-fluid .jumbotron {
  4969. padding-right: 15px;
  4970. padding-left: 15px;
  4971. border-radius: 6px;
  4972. }
  4973. .jumbotron .container {
  4974. max-width: 100%;
  4975. }
  4976. @media screen and (min-width: 768px) {
  4977. .jumbotron {
  4978. padding-top: 48px;
  4979. padding-bottom: 48px;
  4980. }
  4981. .container .jumbotron,
  4982. .container-fluid .jumbotron {
  4983. padding-right: 60px;
  4984. padding-left: 60px;
  4985. }
  4986. .jumbotron h1,
  4987. .jumbotron .h1 {
  4988. font-size: 63px;
  4989. }
  4990. }
  4991. .thumbnail {
  4992. display: block;
  4993. padding: 4px;
  4994. margin-bottom: 20px;
  4995. line-height: 1.42857143;
  4996. background-color: #fff;
  4997. border: 1px solid #ddd;
  4998. border-radius: 4px;
  4999. -webkit-transition: border .2s ease-in-out;
  5000. -o-transition: border .2s ease-in-out;
  5001. transition: border .2s ease-in-out;
  5002. }
  5003. .thumbnail > img,
  5004. .thumbnail a > img {
  5005. margin-right: auto;
  5006. margin-left: auto;
  5007. }
  5008. a.thumbnail:hover,
  5009. a.thumbnail:focus,
  5010. a.thumbnail.active {
  5011. border-color: #337ab7;
  5012. }
  5013. .thumbnail .caption {
  5014. padding: 9px;
  5015. color: #333;
  5016. }
  5017. .alert {
  5018. padding: 15px;
  5019. margin-bottom: 20px;
  5020. border: 1px solid transparent;
  5021. border-radius: 4px;
  5022. }
  5023. .alert h4 {
  5024. margin-top: 0;
  5025. color: inherit;
  5026. }
  5027. .alert .alert-link {
  5028. font-weight: bold;
  5029. }
  5030. .alert > p,
  5031. .alert > ul {
  5032. margin-bottom: 0;
  5033. }
  5034. .alert > p + p {
  5035. margin-top: 5px;
  5036. }
  5037. .alert-dismissable,
  5038. .alert-dismissible {
  5039. padding-right: 35px;
  5040. }
  5041. .alert-dismissable .close,
  5042. .alert-dismissible .close {
  5043. position: relative;
  5044. top: -2px;
  5045. right: -21px;
  5046. color: inherit;
  5047. }
  5048. .alert-success {
  5049. color: #3c763d;
  5050. background-color: #dff0d8;
  5051. border-color: #d6e9c6;
  5052. }
  5053. .alert-success hr {
  5054. border-top-color: #c9e2b3;
  5055. }
  5056. .alert-success .alert-link {
  5057. color: #2b542c;
  5058. }
  5059. .alert-info {
  5060. color: #31708f;
  5061. background-color: #d9edf7;
  5062. border-color: #bce8f1;
  5063. }
  5064. .alert-info hr {
  5065. border-top-color: #a6e1ec;
  5066. }
  5067. .alert-info .alert-link {
  5068. color: #245269;
  5069. }
  5070. .alert-warning {
  5071. color: #8a6d3b;
  5072. background-color: #fcf8e3;
  5073. border-color: #faebcc;
  5074. }
  5075. .alert-warning hr {
  5076. border-top-color: #f7e1b5;
  5077. }
  5078. .alert-warning .alert-link {
  5079. color: #66512c;
  5080. }
  5081. .alert-danger {
  5082. color: #a94442;
  5083. background-color: #f2dede;
  5084. border-color: #ebccd1;
  5085. }
  5086. .alert-danger hr {
  5087. border-top-color: #e4b9c0;
  5088. }
  5089. .alert-danger .alert-link {
  5090. color: #843534;
  5091. }
  5092. @-webkit-keyframes progress-bar-stripes {
  5093. from {
  5094. background-position: 40px 0;
  5095. }
  5096. to {
  5097. background-position: 0 0;
  5098. }
  5099. }
  5100. @-o-keyframes progress-bar-stripes {
  5101. from {
  5102. background-position: 40px 0;
  5103. }
  5104. to {
  5105. background-position: 0 0;
  5106. }
  5107. }
  5108. @keyframes progress-bar-stripes {
  5109. from {
  5110. background-position: 40px 0;
  5111. }
  5112. to {
  5113. background-position: 0 0;
  5114. }
  5115. }
  5116. .progress {
  5117. height: 20px;
  5118. margin-bottom: 20px;
  5119. overflow: hidden;
  5120. background-color: #f5f5f5;
  5121. border-radius: 4px;
  5122. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  5123. box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  5124. }
  5125. .progress-bar {
  5126. float: left;
  5127. width: 0;
  5128. height: 100%;
  5129. font-size: 12px;
  5130. line-height: 20px;
  5131. color: #fff;
  5132. text-align: center;
  5133. background-color: #337ab7;
  5134. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  5135. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  5136. -webkit-transition: width .6s ease;
  5137. -o-transition: width .6s ease;
  5138. transition: width .6s ease;
  5139. }
  5140. .progress-striped .progress-bar,
  5141. .progress-bar-striped {
  5142. 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);
  5143. 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);
  5144. 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);
  5145. -webkit-background-size: 40px 40px;
  5146. background-size: 40px 40px;
  5147. }
  5148. .progress.active .progress-bar,
  5149. .progress-bar.active {
  5150. -webkit-animation: progress-bar-stripes 2s linear infinite;
  5151. -o-animation: progress-bar-stripes 2s linear infinite;
  5152. animation: progress-bar-stripes 2s linear infinite;
  5153. }
  5154. .progress-bar-success {
  5155. background-color: #5cb85c;
  5156. }
  5157. .progress-striped .progress-bar-success {
  5158. 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);
  5159. 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);
  5160. 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);
  5161. }
  5162. .progress-bar-info {
  5163. background-color: #5bc0de;
  5164. }
  5165. .progress-striped .progress-bar-info {
  5166. 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);
  5167. 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);
  5168. 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);
  5169. }
  5170. .progress-bar-warning {
  5171. background-color: #f0ad4e;
  5172. }
  5173. .progress-striped .progress-bar-warning {
  5174. 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);
  5175. 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);
  5176. 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);
  5177. }
  5178. .progress-bar-danger {
  5179. background-color: #d9534f;
  5180. }
  5181. .progress-striped .progress-bar-danger {
  5182. 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);
  5183. 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);
  5184. 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);
  5185. }
  5186. .media {
  5187. margin-top: 15px;
  5188. }
  5189. .media:first-child {
  5190. margin-top: 0;
  5191. }
  5192. .media,
  5193. .media-body {
  5194. overflow: hidden;
  5195. zoom: 1;
  5196. }
  5197. .media-body {
  5198. width: 10000px;
  5199. }
  5200. .media-object {
  5201. display: block;
  5202. }
  5203. .media-object.img-thumbnail {
  5204. max-width: none;
  5205. }
  5206. .media-right,
  5207. .media > .pull-right {
  5208. padding-left: 10px;
  5209. }
  5210. .media-left,
  5211. .media > .pull-left {
  5212. padding-right: 10px;
  5213. }
  5214. .media-left,
  5215. .media-right,
  5216. .media-body {
  5217. display: table-cell;
  5218. vertical-align: top;
  5219. }
  5220. .media-middle {
  5221. vertical-align: middle;
  5222. }
  5223. .media-bottom {
  5224. vertical-align: bottom;
  5225. }
  5226. .media-heading {
  5227. margin-top: 0;
  5228. margin-bottom: 5px;
  5229. }
  5230. .media-list {
  5231. padding-left: 0;
  5232. list-style: none;
  5233. }
  5234. .list-group {
  5235. padding-left: 0;
  5236. margin-bottom: 20px;
  5237. }
  5238. .list-group-item {
  5239. position: relative;
  5240. display: block;
  5241. padding: 10px 15px;
  5242. margin-bottom: -1px;
  5243. background-color: #fff;
  5244. border: 1px solid #ddd;
  5245. }
  5246. .list-group-item:first-child {
  5247. border-top-left-radius: 4px;
  5248. border-top-right-radius: 4px;
  5249. }
  5250. .list-group-item:last-child {
  5251. margin-bottom: 0;
  5252. border-bottom-right-radius: 4px;
  5253. border-bottom-left-radius: 4px;
  5254. }
  5255. a.list-group-item,
  5256. button.list-group-item {
  5257. color: #555;
  5258. }
  5259. a.list-group-item .list-group-item-heading,
  5260. button.list-group-item .list-group-item-heading {
  5261. color: #333;
  5262. }
  5263. a.list-group-item:hover,
  5264. button.list-group-item:hover,
  5265. a.list-group-item:focus,
  5266. button.list-group-item:focus {
  5267. color: #555;
  5268. text-decoration: none;
  5269. background-color: #f5f5f5;
  5270. }
  5271. button.list-group-item {
  5272. width: 100%;
  5273. text-align: left;
  5274. }
  5275. .list-group-item.disabled,
  5276. .list-group-item.disabled:hover,
  5277. .list-group-item.disabled:focus {
  5278. color: #777;
  5279. cursor: not-allowed;
  5280. background-color: #eee;
  5281. }
  5282. .list-group-item.disabled .list-group-item-heading,
  5283. .list-group-item.disabled:hover .list-group-item-heading,
  5284. .list-group-item.disabled:focus .list-group-item-heading {
  5285. color: inherit;
  5286. }
  5287. .list-group-item.disabled .list-group-item-text,
  5288. .list-group-item.disabled:hover .list-group-item-text,
  5289. .list-group-item.disabled:focus .list-group-item-text {
  5290. color: #777;
  5291. }
  5292. .list-group-item.active,
  5293. .list-group-item.active:hover,
  5294. .list-group-item.active:focus {
  5295. z-index: 2;
  5296. color: #fff;
  5297. background-color: #337ab7;
  5298. border-color: #337ab7;
  5299. }
  5300. .list-group-item.active .list-group-item-heading,
  5301. .list-group-item.active:hover .list-group-item-heading,
  5302. .list-group-item.active:focus .list-group-item-heading,
  5303. .list-group-item.active .list-group-item-heading > small,
  5304. .list-group-item.active:hover .list-group-item-heading > small,
  5305. .list-group-item.active:focus .list-group-item-heading > small,
  5306. .list-group-item.active .list-group-item-heading > .small,
  5307. .list-group-item.active:hover .list-group-item-heading > .small,
  5308. .list-group-item.active:focus .list-group-item-heading > .small {
  5309. color: inherit;
  5310. }
  5311. .list-group-item.active .list-group-item-text,
  5312. .list-group-item.active:hover .list-group-item-text,
  5313. .list-group-item.active:focus .list-group-item-text {
  5314. color: #c7ddef;
  5315. }
  5316. .list-group-item-success {
  5317. color: #3c763d;
  5318. background-color: #dff0d8;
  5319. }
  5320. a.list-group-item-success,
  5321. button.list-group-item-success {
  5322. color: #3c763d;
  5323. }
  5324. a.list-group-item-success .list-group-item-heading,
  5325. button.list-group-item-success .list-group-item-heading {
  5326. color: inherit;
  5327. }
  5328. a.list-group-item-success:hover,
  5329. button.list-group-item-success:hover,
  5330. a.list-group-item-success:focus,
  5331. button.list-group-item-success:focus {
  5332. color: #3c763d;
  5333. background-color: #d0e9c6;
  5334. }
  5335. a.list-group-item-success.active,
  5336. button.list-group-item-success.active,
  5337. a.list-group-item-success.active:hover,
  5338. button.list-group-item-success.active:hover,
  5339. a.list-group-item-success.active:focus,
  5340. button.list-group-item-success.active:focus {
  5341. color: #fff;
  5342. background-color: #3c763d;
  5343. border-color: #3c763d;
  5344. }
  5345. .list-group-item-info {
  5346. color: #31708f;
  5347. background-color: #d9edf7;
  5348. }
  5349. a.list-group-item-info,
  5350. button.list-group-item-info {
  5351. color: #31708f;
  5352. }
  5353. a.list-group-item-info .list-group-item-heading,
  5354. button.list-group-item-info .list-group-item-heading {
  5355. color: inherit;
  5356. }
  5357. a.list-group-item-info:hover,
  5358. button.list-group-item-info:hover,
  5359. a.list-group-item-info:focus,
  5360. button.list-group-item-info:focus {
  5361. color: #31708f;
  5362. background-color: #c4e3f3;
  5363. }
  5364. a.list-group-item-info.active,
  5365. button.list-group-item-info.active,
  5366. a.list-group-item-info.active:hover,
  5367. button.list-group-item-info.active:hover,
  5368. a.list-group-item-info.active:focus,
  5369. button.list-group-item-info.active:focus {
  5370. color: #fff;
  5371. background-color: #31708f;
  5372. border-color: #31708f;
  5373. }
  5374. .list-group-item-warning {
  5375. color: #8a6d3b;
  5376. background-color: #fcf8e3;
  5377. }
  5378. a.list-group-item-warning,
  5379. button.list-group-item-warning {
  5380. color: #8a6d3b;
  5381. }
  5382. a.list-group-item-warning .list-group-item-heading,
  5383. button.list-group-item-warning .list-group-item-heading {
  5384. color: inherit;
  5385. }
  5386. a.list-group-item-warning:hover,
  5387. button.list-group-item-warning:hover,
  5388. a.list-group-item-warning:focus,
  5389. button.list-group-item-warning:focus {
  5390. color: #8a6d3b;
  5391. background-color: #faf2cc;
  5392. }
  5393. a.list-group-item-warning.active,
  5394. button.list-group-item-warning.active,
  5395. a.list-group-item-warning.active:hover,
  5396. button.list-group-item-warning.active:hover,
  5397. a.list-group-item-warning.active:focus,
  5398. button.list-group-item-warning.active:focus {
  5399. color: #fff;
  5400. background-color: #8a6d3b;
  5401. border-color: #8a6d3b;
  5402. }
  5403. .list-group-item-danger {
  5404. color: #a94442;
  5405. background-color: #f2dede;
  5406. }
  5407. a.list-group-item-danger,
  5408. button.list-group-item-danger {
  5409. color: #a94442;
  5410. }
  5411. a.list-group-item-danger .list-group-item-heading,
  5412. button.list-group-item-danger .list-group-item-heading {
  5413. color: inherit;
  5414. }
  5415. a.list-group-item-danger:hover,
  5416. button.list-group-item-danger:hover,
  5417. a.list-group-item-danger:focus,
  5418. button.list-group-item-danger:focus {
  5419. color: #a94442;
  5420. background-color: #ebcccc;
  5421. }
  5422. a.list-group-item-danger.active,
  5423. button.list-group-item-danger.active,
  5424. a.list-group-item-danger.active:hover,
  5425. button.list-group-item-danger.active:hover,
  5426. a.list-group-item-danger.active:focus,
  5427. button.list-group-item-danger.active:focus {
  5428. color: #fff;
  5429. background-color: #a94442;
  5430. border-color: #a94442;
  5431. }
  5432. .list-group-item-heading {
  5433. margin-top: 0;
  5434. margin-bottom: 5px;
  5435. }
  5436. .list-group-item-text {
  5437. margin-bottom: 0;
  5438. line-height: 1.3;
  5439. }
  5440. .panel {
  5441. margin-bottom: 20px;
  5442. background-color: #fff;
  5443. border: 1px solid transparent;
  5444. border-radius: 4px;
  5445. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  5446. box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  5447. }
  5448. .panel-body {
  5449. padding: 15px;
  5450. }
  5451. .panel-heading {
  5452. padding: 10px 15px;
  5453. border-bottom: 1px solid transparent;
  5454. border-top-left-radius: 3px;
  5455. border-top-right-radius: 3px;
  5456. }
  5457. .panel-heading > .dropdown .dropdown-toggle {
  5458. color: inherit;
  5459. }
  5460. .panel-title {
  5461. margin-top: 0;
  5462. margin-bottom: 0;
  5463. font-size: 16px;
  5464. color: inherit;
  5465. }
  5466. .panel-title > a,
  5467. .panel-title > small,
  5468. .panel-title > .small,
  5469. .panel-title > small > a,
  5470. .panel-title > .small > a {
  5471. color: inherit;
  5472. }
  5473. .panel-footer {
  5474. padding: 10px 15px;
  5475. background-color: #f5f5f5;
  5476. border-top: 1px solid #ddd;
  5477. border-bottom-right-radius: 3px;
  5478. border-bottom-left-radius: 3px;
  5479. }
  5480. .panel > .list-group,
  5481. .panel > .panel-collapse > .list-group {
  5482. margin-bottom: 0;
  5483. }
  5484. .panel > .list-group .list-group-item,
  5485. .panel > .panel-collapse > .list-group .list-group-item {
  5486. border-width: 1px 0;
  5487. border-radius: 0;
  5488. }
  5489. .panel > .list-group:first-child .list-group-item:first-child,
  5490. .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  5491. border-top: 0;
  5492. border-top-left-radius: 3px;
  5493. border-top-right-radius: 3px;
  5494. }
  5495. .panel > .list-group:last-child .list-group-item:last-child,
  5496. .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  5497. border-bottom: 0;
  5498. border-bottom-right-radius: 3px;
  5499. border-bottom-left-radius: 3px;
  5500. }
  5501. .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  5502. border-top-left-radius: 0;
  5503. border-top-right-radius: 0;
  5504. }
  5505. .panel-heading + .list-group .list-group-item:first-child {
  5506. border-top-width: 0;
  5507. }
  5508. .list-group + .panel-footer {
  5509. border-top-width: 0;
  5510. }
  5511. .panel > .table,
  5512. .panel > .table-responsive > .table,
  5513. .panel > .panel-collapse > .table {
  5514. margin-bottom: 0;
  5515. }
  5516. .panel > .table caption,
  5517. .panel > .table-responsive > .table caption,
  5518. .panel > .panel-collapse > .table caption {
  5519. padding-right: 15px;
  5520. padding-left: 15px;
  5521. }
  5522. .panel > .table:first-child,
  5523. .panel > .table-responsive:first-child > .table:first-child {
  5524. border-top-left-radius: 3px;
  5525. border-top-right-radius: 3px;
  5526. }
  5527. .panel > .table:first-child > thead:first-child > tr:first-child,
  5528. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  5529. .panel > .table:first-child > tbody:first-child > tr:first-child,
  5530. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  5531. border-top-left-radius: 3px;
  5532. border-top-right-radius: 3px;
  5533. }
  5534. .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5535. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5536. .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5537. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5538. .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5539. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5540. .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
  5541. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  5542. border-top-left-radius: 3px;
  5543. }
  5544. .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5545. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5546. .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5547. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5548. .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5549. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5550. .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
  5551. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  5552. border-top-right-radius: 3px;
  5553. }
  5554. .panel > .table:last-child,
  5555. .panel > .table-responsive:last-child > .table:last-child {
  5556. border-bottom-right-radius: 3px;
  5557. border-bottom-left-radius: 3px;
  5558. }
  5559. .panel > .table:last-child > tbody:last-child > tr:last-child,
  5560. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  5561. .panel > .table:last-child > tfoot:last-child > tr:last-child,
  5562. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  5563. border-bottom-right-radius: 3px;
  5564. border-bottom-left-radius: 3px;
  5565. }
  5566. .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5567. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5568. .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5569. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5570. .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5571. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5572. .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
  5573. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  5574. border-bottom-left-radius: 3px;
  5575. }
  5576. .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5577. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5578. .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5579. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5580. .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5581. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5582. .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
  5583. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  5584. border-bottom-right-radius: 3px;
  5585. }
  5586. .panel > .panel-body + .table,
  5587. .panel > .panel-body + .table-responsive,
  5588. .panel > .table + .panel-body,
  5589. .panel > .table-responsive + .panel-body {
  5590. border-top: 1px solid #ddd;
  5591. }
  5592. .panel > .table > tbody:first-child > tr:first-child th,
  5593. .panel > .table > tbody:first-child > tr:first-child td {
  5594. border-top: 0;
  5595. }
  5596. .panel > .table-bordered,
  5597. .panel > .table-responsive > .table-bordered {
  5598. border: 0;
  5599. }
  5600. .panel > .table-bordered > thead > tr > th:first-child,
  5601. .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  5602. .panel > .table-bordered > tbody > tr > th:first-child,
  5603. .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  5604. .panel > .table-bordered > tfoot > tr > th:first-child,
  5605. .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  5606. .panel > .table-bordered > thead > tr > td:first-child,
  5607. .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  5608. .panel > .table-bordered > tbody > tr > td:first-child,
  5609. .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  5610. .panel > .table-bordered > tfoot > tr > td:first-child,
  5611. .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  5612. border-left: 0;
  5613. }
  5614. .panel > .table-bordered > thead > tr > th:last-child,
  5615. .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  5616. .panel > .table-bordered > tbody > tr > th:last-child,
  5617. .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  5618. .panel > .table-bordered > tfoot > tr > th:last-child,
  5619. .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  5620. .panel > .table-bordered > thead > tr > td:last-child,
  5621. .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  5622. .panel > .table-bordered > tbody > tr > td:last-child,
  5623. .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  5624. .panel > .table-bordered > tfoot > tr > td:last-child,
  5625. .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  5626. border-right: 0;
  5627. }
  5628. .panel > .table-bordered > thead > tr:first-child > td,
  5629. .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  5630. .panel > .table-bordered > tbody > tr:first-child > td,
  5631. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  5632. .panel > .table-bordered > thead > tr:first-child > th,
  5633. .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  5634. .panel > .table-bordered > tbody > tr:first-child > th,
  5635. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  5636. border-bottom: 0;
  5637. }
  5638. .panel > .table-bordered > tbody > tr:last-child > td,
  5639. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  5640. .panel > .table-bordered > tfoot > tr:last-child > td,
  5641. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  5642. .panel > .table-bordered > tbody > tr:last-child > th,
  5643. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  5644. .panel > .table-bordered > tfoot > tr:last-child > th,
  5645. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  5646. border-bottom: 0;
  5647. }
  5648. .panel > .table-responsive {
  5649. margin-bottom: 0;
  5650. border: 0;
  5651. }
  5652. .panel-group {
  5653. margin-bottom: 20px;
  5654. }
  5655. .panel-group .panel {
  5656. margin-bottom: 0;
  5657. border-radius: 4px;
  5658. }
  5659. .panel-group .panel + .panel {
  5660. margin-top: 5px;
  5661. }
  5662. .panel-group .panel-heading {
  5663. border-bottom: 0;
  5664. }
  5665. .panel-group .panel-heading + .panel-collapse > .panel-body,
  5666. .panel-group .panel-heading + .panel-collapse > .list-group {
  5667. border-top: 1px solid #ddd;
  5668. }
  5669. .panel-group .panel-footer {
  5670. border-top: 0;
  5671. }
  5672. .panel-group .panel-footer + .panel-collapse .panel-body {
  5673. border-bottom: 1px solid #ddd;
  5674. }
  5675. .panel-default {
  5676. border-color: #ddd;
  5677. }
  5678. .panel-default > .panel-heading {
  5679. color: #333;
  5680. background-color: #f5f5f5;
  5681. border-color: #ddd;
  5682. }
  5683. .panel-default > .panel-heading + .panel-collapse > .panel-body {
  5684. border-top-color: #ddd;
  5685. }
  5686. .panel-default > .panel-heading .badge {
  5687. color: #f5f5f5;
  5688. background-color: #333;
  5689. }
  5690. .panel-default > .panel-footer + .panel-collapse > .panel-body {
  5691. border-bottom-color: #ddd;
  5692. }
  5693. .panel-primary {
  5694. border-color: #337ab7;
  5695. }
  5696. .panel-primary > .panel-heading {
  5697. color: #fff;
  5698. background-color: #337ab7;
  5699. border-color: #337ab7;
  5700. }
  5701. .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  5702. border-top-color: #337ab7;
  5703. }
  5704. .panel-primary > .panel-heading .badge {
  5705. color: #337ab7;
  5706. background-color: #fff;
  5707. }
  5708. .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  5709. border-bottom-color: #337ab7;
  5710. }
  5711. .panel-success {
  5712. border-color: #d6e9c6;
  5713. }
  5714. .panel-success > .panel-heading {
  5715. color: #3c763d;
  5716. background-color: #dff0d8;
  5717. border-color: #d6e9c6;
  5718. }
  5719. .panel-success > .panel-heading + .panel-collapse > .panel-body {
  5720. border-top-color: #d6e9c6;
  5721. }
  5722. .panel-success > .panel-heading .badge {
  5723. color: #dff0d8;
  5724. background-color: #3c763d;
  5725. }
  5726. .panel-success > .panel-footer + .panel-collapse > .panel-body {
  5727. border-bottom-color: #d6e9c6;
  5728. }
  5729. .panel-info {
  5730. border-color: #bce8f1;
  5731. }
  5732. .panel-info > .panel-heading {
  5733. color: #31708f;
  5734. background-color: #d9edf7;
  5735. border-color: #bce8f1;
  5736. }
  5737. .panel-info > .panel-heading + .panel-collapse > .panel-body {
  5738. border-top-color: #bce8f1;
  5739. }
  5740. .panel-info > .panel-heading .badge {
  5741. color: #d9edf7;
  5742. background-color: #31708f;
  5743. }
  5744. .panel-info > .panel-footer + .panel-collapse > .panel-body {
  5745. border-bottom-color: #bce8f1;
  5746. }
  5747. .panel-warning {
  5748. border-color: #faebcc;
  5749. }
  5750. .panel-warning > .panel-heading {
  5751. color: #8a6d3b;
  5752. background-color: #fcf8e3;
  5753. border-color: #faebcc;
  5754. }
  5755. .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  5756. border-top-color: #faebcc;
  5757. }
  5758. .panel-warning > .panel-heading .badge {
  5759. color: #fcf8e3;
  5760. background-color: #8a6d3b;
  5761. }
  5762. .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  5763. border-bottom-color: #faebcc;
  5764. }
  5765. .panel-danger {
  5766. border-color: #ebccd1;
  5767. }
  5768. .panel-danger > .panel-heading {
  5769. color: #a94442;
  5770. background-color: #f2dede;
  5771. border-color: #ebccd1;
  5772. }
  5773. .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  5774. border-top-color: #ebccd1;
  5775. }
  5776. .panel-danger > .panel-heading .badge {
  5777. color: #f2dede;
  5778. background-color: #a94442;
  5779. }
  5780. .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  5781. border-bottom-color: #ebccd1;
  5782. }
  5783. .embed-responsive {
  5784. position: relative;
  5785. display: block;
  5786. height: 0;
  5787. padding: 0;
  5788. overflow: hidden;
  5789. }
  5790. .embed-responsive .embed-responsive-item,
  5791. .embed-responsive iframe,
  5792. .embed-responsive embed,
  5793. .embed-responsive object,
  5794. .embed-responsive video {
  5795. position: absolute;
  5796. top: 0;
  5797. bottom: 0;
  5798. left: 0;
  5799. width: 100%;
  5800. height: 100%;
  5801. border: 0;
  5802. }
  5803. .embed-responsive-16by9 {
  5804. padding-bottom: 56.25%;
  5805. }
  5806. .embed-responsive-4by3 {
  5807. padding-bottom: 75%;
  5808. }
  5809. .well {
  5810. min-height: 20px;
  5811. padding: 19px;
  5812. margin-bottom: 20px;
  5813. background-color: #f5f5f5;
  5814. border: 1px solid #e3e3e3;
  5815. border-radius: 4px;
  5816. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  5817. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  5818. }
  5819. .well blockquote {
  5820. border-color: #ddd;
  5821. border-color: rgba(0, 0, 0, .15);
  5822. }
  5823. .well-lg {
  5824. padding: 24px;
  5825. border-radius: 6px;
  5826. }
  5827. .well-sm {
  5828. padding: 9px;
  5829. border-radius: 3px;
  5830. }
  5831. .close {
  5832. float: right;
  5833. font-size: 21px;
  5834. font-weight: bold;
  5835. line-height: 1;
  5836. color: #000;
  5837. text-shadow: 0 1px 0 #fff;
  5838. filter: alpha(opacity=20);
  5839. opacity: .2;
  5840. }
  5841. .close:hover,
  5842. .close:focus {
  5843. color: #000;
  5844. text-decoration: none;
  5845. cursor: pointer;
  5846. filter: alpha(opacity=50);
  5847. opacity: .5;
  5848. }
  5849. button.close {
  5850. -webkit-appearance: none;
  5851. padding: 0;
  5852. cursor: pointer;
  5853. background: transparent;
  5854. border: 0;
  5855. }
  5856. .modal-open {
  5857. overflow: hidden;
  5858. }
  5859. .modal {
  5860. position: fixed;
  5861. top: 0;
  5862. right: 0;
  5863. bottom: 0;
  5864. left: 0;
  5865. z-index: 1050;
  5866. display: none;
  5867. overflow: hidden;
  5868. -webkit-overflow-scrolling: touch;
  5869. outline: 0;
  5870. }
  5871. .modal.fade .modal-dialog {
  5872. -webkit-transition: -webkit-transform .3s ease-out;
  5873. -o-transition: -o-transform .3s ease-out;
  5874. transition: transform .3s ease-out;
  5875. -webkit-transform: translate(0, -25%);
  5876. -ms-transform: translate(0, -25%);
  5877. -o-transform: translate(0, -25%);
  5878. transform: translate(0, -25%);
  5879. }
  5880. .modal.in .modal-dialog {
  5881. -webkit-transform: translate(0, 0);
  5882. -ms-transform: translate(0, 0);
  5883. -o-transform: translate(0, 0);
  5884. transform: translate(0, 0);
  5885. }
  5886. .modal-open .modal {
  5887. overflow-x: hidden;
  5888. overflow-y: auto;
  5889. }
  5890. .modal-dialog {
  5891. position: relative;
  5892. width: auto;
  5893. margin: 10px;
  5894. }
  5895. .modal-content {
  5896. position: relative;
  5897. background-color: #fff;
  5898. -webkit-background-clip: padding-box;
  5899. background-clip: padding-box;
  5900. border: 1px solid #999;
  5901. border: 1px solid rgba(0, 0, 0, .2);
  5902. border-radius: 6px;
  5903. outline: 0;
  5904. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  5905. box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  5906. }
  5907. .modal-backdrop {
  5908. position: fixed;
  5909. top: 0;
  5910. right: 0;
  5911. bottom: 0;
  5912. left: 0;
  5913. z-index: 1040;
  5914. background-color: #000;
  5915. }
  5916. .modal-backdrop.fade {
  5917. filter: alpha(opacity=0);
  5918. opacity: 0;
  5919. }
  5920. .modal-backdrop.in {
  5921. filter: alpha(opacity=50);
  5922. opacity: .5;
  5923. }
  5924. .modal-header {
  5925. padding: 15px;
  5926. border-bottom: 1px solid #e5e5e5;
  5927. }
  5928. .modal-header .close {
  5929. margin-top: -2px;
  5930. }
  5931. .modal-title {
  5932. margin: 0;
  5933. line-height: 1.42857143;
  5934. }
  5935. .modal-body {
  5936. position: relative;
  5937. padding: 15px;
  5938. }
  5939. .modal-footer {
  5940. padding: 15px;
  5941. text-align: right;
  5942. border-top: 1px solid #e5e5e5;
  5943. }
  5944. .modal-footer .btn + .btn {
  5945. margin-bottom: 0;
  5946. margin-left: 5px;
  5947. }
  5948. .modal-footer .btn-group .btn + .btn {
  5949. margin-left: -1px;
  5950. }
  5951. .modal-footer .btn-block + .btn-block {
  5952. margin-left: 0;
  5953. }
  5954. .modal-scrollbar-measure {
  5955. position: absolute;
  5956. top: -9999px;
  5957. width: 50px;
  5958. height: 50px;
  5959. overflow: scroll;
  5960. }
  5961. @media (min-width: 768px) {
  5962. .modal-dialog {
  5963. width: 600px;
  5964. margin: 30px auto;
  5965. }
  5966. .modal-content {
  5967. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  5968. box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  5969. }
  5970. .modal-sm {
  5971. width: 300px;
  5972. }
  5973. }
  5974. @media (min-width: 992px) {
  5975. .modal-lg {
  5976. width: 900px;
  5977. }
  5978. }
  5979. .tooltip {
  5980. position: absolute;
  5981. z-index: 1070;
  5982. display: block;
  5983. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  5984. font-size: 12px;
  5985. font-style: normal;
  5986. font-weight: normal;
  5987. line-height: 1.42857143;
  5988. text-align: left;
  5989. text-align: start;
  5990. text-decoration: none;
  5991. text-shadow: none;
  5992. text-transform: none;
  5993. letter-spacing: normal;
  5994. word-break: normal;
  5995. word-spacing: normal;
  5996. word-wrap: normal;
  5997. white-space: normal;
  5998. filter: alpha(opacity=0);
  5999. opacity: 0;
  6000. line-break: auto;
  6001. }
  6002. .tooltip.in {
  6003. filter: alpha(opacity=90);
  6004. opacity: .9;
  6005. }
  6006. .tooltip.top {
  6007. padding: 5px 0;
  6008. margin-top: -3px;
  6009. }
  6010. .tooltip.right {
  6011. padding: 0 5px;
  6012. margin-left: 3px;
  6013. }
  6014. .tooltip.bottom {
  6015. padding: 5px 0;
  6016. margin-top: 3px;
  6017. }
  6018. .tooltip.left {
  6019. padding: 0 5px;
  6020. margin-left: -3px;
  6021. }
  6022. .tooltip-inner {
  6023. max-width: 200px;
  6024. padding: 3px 8px;
  6025. color: #fff;
  6026. text-align: center;
  6027. background-color: #000;
  6028. border-radius: 4px;
  6029. }
  6030. .tooltip-arrow {
  6031. position: absolute;
  6032. width: 0;
  6033. height: 0;
  6034. border-color: transparent;
  6035. border-style: solid;
  6036. }
  6037. .tooltip.top .tooltip-arrow {
  6038. bottom: 0;
  6039. left: 50%;
  6040. margin-left: -5px;
  6041. border-width: 5px 5px 0;
  6042. border-top-color: #000;
  6043. }
  6044. .tooltip.top-left .tooltip-arrow {
  6045. right: 5px;
  6046. bottom: 0;
  6047. margin-bottom: -5px;
  6048. border-width: 5px 5px 0;
  6049. border-top-color: #000;
  6050. }
  6051. .tooltip.top-right .tooltip-arrow {
  6052. bottom: 0;
  6053. left: 5px;
  6054. margin-bottom: -5px;
  6055. border-width: 5px 5px 0;
  6056. border-top-color: #000;
  6057. }
  6058. .tooltip.right .tooltip-arrow {
  6059. top: 50%;
  6060. left: 0;
  6061. margin-top: -5px;
  6062. border-width: 5px 5px 5px 0;
  6063. border-right-color: #000;
  6064. }
  6065. .tooltip.left .tooltip-arrow {
  6066. top: 50%;
  6067. right: 0;
  6068. margin-top: -5px;
  6069. border-width: 5px 0 5px 5px;
  6070. border-left-color: #000;
  6071. }
  6072. .tooltip.bottom .tooltip-arrow {
  6073. top: 0;
  6074. left: 50%;
  6075. margin-left: -5px;
  6076. border-width: 0 5px 5px;
  6077. border-bottom-color: #000;
  6078. }
  6079. .tooltip.bottom-left .tooltip-arrow {
  6080. top: 0;
  6081. right: 5px;
  6082. margin-top: -5px;
  6083. border-width: 0 5px 5px;
  6084. border-bottom-color: #000;
  6085. }
  6086. .tooltip.bottom-right .tooltip-arrow {
  6087. top: 0;
  6088. left: 5px;
  6089. margin-top: -5px;
  6090. border-width: 0 5px 5px;
  6091. border-bottom-color: #000;
  6092. }
  6093. .popover {
  6094. position: absolute;
  6095. top: 0;
  6096. left: 0;
  6097. z-index: 1060;
  6098. display: none;
  6099. max-width: 276px;
  6100. padding: 1px;
  6101. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  6102. font-size: 14px;
  6103. font-style: normal;
  6104. font-weight: normal;
  6105. line-height: 1.42857143;
  6106. text-align: left;
  6107. text-align: start;
  6108. text-decoration: none;
  6109. text-shadow: none;
  6110. text-transform: none;
  6111. letter-spacing: normal;
  6112. word-break: normal;
  6113. word-spacing: normal;
  6114. word-wrap: normal;
  6115. white-space: normal;
  6116. background-color: #fff;
  6117. -webkit-background-clip: padding-box;
  6118. background-clip: padding-box;
  6119. border: 1px solid #ccc;
  6120. border: 1px solid rgba(0, 0, 0, .2);
  6121. border-radius: 6px;
  6122. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  6123. box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  6124. line-break: auto;
  6125. }
  6126. .popover.top {
  6127. margin-top: -10px;
  6128. }
  6129. .popover.right {
  6130. margin-left: 10px;
  6131. }
  6132. .popover.bottom {
  6133. margin-top: 10px;
  6134. }
  6135. .popover.left {
  6136. margin-left: -10px;
  6137. }
  6138. .popover-title {
  6139. padding: 8px 14px;
  6140. margin: 0;
  6141. font-size: 14px;
  6142. background-color: #f7f7f7;
  6143. border-bottom: 1px solid #ebebeb;
  6144. border-radius: 5px 5px 0 0;
  6145. }
  6146. .popover-content {
  6147. padding: 9px 14px;
  6148. }
  6149. .popover > .arrow,
  6150. .popover > .arrow:after {
  6151. position: absolute;
  6152. display: block;
  6153. width: 0;
  6154. height: 0;
  6155. border-color: transparent;
  6156. border-style: solid;
  6157. }
  6158. .popover > .arrow {
  6159. border-width: 11px;
  6160. }
  6161. .popover > .arrow:after {
  6162. content: "";
  6163. border-width: 10px;
  6164. }
  6165. .popover.top > .arrow {
  6166. bottom: -11px;
  6167. left: 50%;
  6168. margin-left: -11px;
  6169. border-top-color: #999;
  6170. border-top-color: rgba(0, 0, 0, .25);
  6171. border-bottom-width: 0;
  6172. }
  6173. .popover.top > .arrow:after {
  6174. bottom: 1px;
  6175. margin-left: -10px;
  6176. content: " ";
  6177. border-top-color: #fff;
  6178. border-bottom-width: 0;
  6179. }
  6180. .popover.right > .arrow {
  6181. top: 50%;
  6182. left: -11px;
  6183. margin-top: -11px;
  6184. border-right-color: #999;
  6185. border-right-color: rgba(0, 0, 0, .25);
  6186. border-left-width: 0;
  6187. }
  6188. .popover.right > .arrow:after {
  6189. bottom: -10px;
  6190. left: 1px;
  6191. content: " ";
  6192. border-right-color: #fff;
  6193. border-left-width: 0;
  6194. }
  6195. .popover.bottom > .arrow {
  6196. top: -11px;
  6197. left: 50%;
  6198. margin-left: -11px;
  6199. border-top-width: 0;
  6200. border-bottom-color: #999;
  6201. border-bottom-color: rgba(0, 0, 0, .25);
  6202. }
  6203. .popover.bottom > .arrow:after {
  6204. top: 1px;
  6205. margin-left: -10px;
  6206. content: " ";
  6207. border-top-width: 0;
  6208. border-bottom-color: #fff;
  6209. }
  6210. .popover.left > .arrow {
  6211. top: 50%;
  6212. right: -11px;
  6213. margin-top: -11px;
  6214. border-right-width: 0;
  6215. border-left-color: #999;
  6216. border-left-color: rgba(0, 0, 0, .25);
  6217. }
  6218. .popover.left > .arrow:after {
  6219. right: 1px;
  6220. bottom: -10px;
  6221. content: " ";
  6222. border-right-width: 0;
  6223. border-left-color: #fff;
  6224. }
  6225. .carousel {
  6226. position: relative;
  6227. }
  6228. .carousel-inner {
  6229. position: relative;
  6230. width: 100%;
  6231. overflow: hidden;
  6232. }
  6233. .carousel-inner > .item {
  6234. position: relative;
  6235. display: none;
  6236. -webkit-transition: .6s ease-in-out left;
  6237. -o-transition: .6s ease-in-out left;
  6238. transition: .6s ease-in-out left;
  6239. }
  6240. .carousel-inner > .item > img,
  6241. .carousel-inner > .item > a > img {
  6242. line-height: 1;
  6243. }
  6244. @media all and (transform-3d), (-webkit-transform-3d) {
  6245. .carousel-inner > .item {
  6246. -webkit-transition: -webkit-transform .6s ease-in-out;
  6247. -o-transition: -o-transform .6s ease-in-out;
  6248. transition: transform .6s ease-in-out;
  6249. -webkit-backface-visibility: hidden;
  6250. backface-visibility: hidden;
  6251. -webkit-perspective: 1000px;
  6252. perspective: 1000px;
  6253. }
  6254. .carousel-inner > .item.next,
  6255. .carousel-inner > .item.active.right {
  6256. left: 0;
  6257. -webkit-transform: translate3d(100%, 0, 0);
  6258. transform: translate3d(100%, 0, 0);
  6259. }
  6260. .carousel-inner > .item.prev,
  6261. .carousel-inner > .item.active.left {
  6262. left: 0;
  6263. -webkit-transform: translate3d(-100%, 0, 0);
  6264. transform: translate3d(-100%, 0, 0);
  6265. }
  6266. .carousel-inner > .item.next.left,
  6267. .carousel-inner > .item.prev.right,
  6268. .carousel-inner > .item.active {
  6269. left: 0;
  6270. -webkit-transform: translate3d(0, 0, 0);
  6271. transform: translate3d(0, 0, 0);
  6272. }
  6273. }
  6274. .carousel-inner > .active,
  6275. .carousel-inner > .next,
  6276. .carousel-inner > .prev {
  6277. display: block;
  6278. }
  6279. .carousel-inner > .active {
  6280. left: 0;
  6281. }
  6282. .carousel-inner > .next,
  6283. .carousel-inner > .prev {
  6284. position: absolute;
  6285. top: 0;
  6286. width: 100%;
  6287. }
  6288. .carousel-inner > .next {
  6289. left: 100%;
  6290. }
  6291. .carousel-inner > .prev {
  6292. left: -100%;
  6293. }
  6294. .carousel-inner > .next.left,
  6295. .carousel-inner > .prev.right {
  6296. left: 0;
  6297. }
  6298. .carousel-inner > .active.left {
  6299. left: -100%;
  6300. }
  6301. .carousel-inner > .active.right {
  6302. left: 100%;
  6303. }
  6304. .carousel-control {
  6305. position: absolute;
  6306. top: 0;
  6307. bottom: 0;
  6308. left: 0;
  6309. width: 15%;
  6310. font-size: 20px;
  6311. color: #fff;
  6312. text-align: center;
  6313. text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  6314. background-color: rgba(0, 0, 0, 0);
  6315. filter: alpha(opacity=50);
  6316. opacity: .5;
  6317. }
  6318. .carousel-control.left {
  6319. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  6320. background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  6321. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
  6322. background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  6323. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  6324. background-repeat: repeat-x;
  6325. }
  6326. .carousel-control.right {
  6327. right: 0;
  6328. left: auto;
  6329. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  6330. background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  6331. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
  6332. background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  6333. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  6334. background-repeat: repeat-x;
  6335. }
  6336. .carousel-control:hover,
  6337. .carousel-control:focus {
  6338. color: #fff;
  6339. text-decoration: none;
  6340. filter: alpha(opacity=90);
  6341. outline: 0;
  6342. opacity: .9;
  6343. }
  6344. .carousel-control .icon-prev,
  6345. .carousel-control .icon-next,
  6346. .carousel-control .glyphicon-chevron-left,
  6347. .carousel-control .glyphicon-chevron-right {
  6348. position: absolute;
  6349. top: 50%;
  6350. z-index: 5;
  6351. display: inline-block;
  6352. margin-top: -10px;
  6353. }
  6354. .carousel-control .icon-prev,
  6355. .carousel-control .glyphicon-chevron-left {
  6356. left: 50%;
  6357. margin-left: -10px;
  6358. }
  6359. .carousel-control .icon-next,
  6360. .carousel-control .glyphicon-chevron-right {
  6361. right: 50%;
  6362. margin-right: -10px;
  6363. }
  6364. .carousel-control .icon-prev,
  6365. .carousel-control .icon-next {
  6366. width: 20px;
  6367. height: 20px;
  6368. font-family: serif;
  6369. line-height: 1;
  6370. }
  6371. .carousel-control .icon-prev:before {
  6372. content: '\2039';
  6373. }
  6374. .carousel-control .icon-next:before {
  6375. content: '\203a';
  6376. }
  6377. .carousel-indicators {
  6378. position: absolute;
  6379. bottom: 10px;
  6380. left: 50%;
  6381. z-index: 15;
  6382. width: 60%;
  6383. padding-left: 0;
  6384. margin-left: -30%;
  6385. text-align: center;
  6386. list-style: none;
  6387. }
  6388. .carousel-indicators li {
  6389. display: inline-block;
  6390. width: 10px;
  6391. height: 10px;
  6392. margin: 1px;
  6393. text-indent: -999px;
  6394. cursor: pointer;
  6395. background-color: #000 \9;
  6396. background-color: rgba(0, 0, 0, 0);
  6397. border: 1px solid #fff;
  6398. border-radius: 10px;
  6399. }
  6400. .carousel-indicators .active {
  6401. width: 12px;
  6402. height: 12px;
  6403. margin: 0;
  6404. background-color: #fff;
  6405. }
  6406. .carousel-caption {
  6407. position: absolute;
  6408. right: 15%;
  6409. bottom: 20px;
  6410. left: 15%;
  6411. z-index: 10;
  6412. padding-top: 20px;
  6413. padding-bottom: 20px;
  6414. color: #fff;
  6415. text-align: center;
  6416. text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  6417. }
  6418. .carousel-caption .btn {
  6419. text-shadow: none;
  6420. }
  6421. @media screen and (min-width: 768px) {
  6422. .carousel-control .glyphicon-chevron-left,
  6423. .carousel-control .glyphicon-chevron-right,
  6424. .carousel-control .icon-prev,
  6425. .carousel-control .icon-next {
  6426. width: 30px;
  6427. height: 30px;
  6428. margin-top: -10px;
  6429. font-size: 30px;
  6430. }
  6431. .carousel-control .glyphicon-chevron-left,
  6432. .carousel-control .icon-prev {
  6433. margin-left: -10px;
  6434. }
  6435. .carousel-control .glyphicon-chevron-right,
  6436. .carousel-control .icon-next {
  6437. margin-right: -10px;
  6438. }
  6439. .carousel-caption {
  6440. right: 20%;
  6441. left: 20%;
  6442. padding-bottom: 30px;
  6443. }
  6444. .carousel-indicators {
  6445. bottom: 20px;
  6446. }
  6447. }
  6448. .clearfix:before,
  6449. .clearfix:after,
  6450. .dl-horizontal dd:before,
  6451. .dl-horizontal dd:after,
  6452. .container:before,
  6453. .container:after,
  6454. .container-fluid:before,
  6455. .container-fluid:after,
  6456. .row:before,
  6457. .row:after,
  6458. .form-horizontal .form-group:before,
  6459. .form-horizontal .form-group:after,
  6460. .btn-toolbar:before,
  6461. .btn-toolbar:after,
  6462. .btn-group-vertical > .btn-group:before,
  6463. .btn-group-vertical > .btn-group:after,
  6464. .nav:before,
  6465. .nav:after,
  6466. .navbar:before,
  6467. .navbar:after,
  6468. .navbar-header:before,
  6469. .navbar-header:after,
  6470. .navbar-collapse:before,
  6471. .navbar-collapse:after,
  6472. .pager:before,
  6473. .pager:after,
  6474. .panel-body:before,
  6475. .panel-body:after,
  6476. .modal-header:before,
  6477. .modal-header:after,
  6478. .modal-footer:before,
  6479. .modal-footer:after {
  6480. display: table;
  6481. content: " ";
  6482. }
  6483. .clearfix:after,
  6484. .dl-horizontal dd:after,
  6485. .container:after,
  6486. .container-fluid:after,
  6487. .row:after,
  6488. .form-horizontal .form-group:after,
  6489. .btn-toolbar:after,
  6490. .btn-group-vertical > .btn-group:after,
  6491. .nav:after,
  6492. .navbar:after,
  6493. .navbar-header:after,
  6494. .navbar-collapse:after,
  6495. .pager:after,
  6496. .panel-body:after,
  6497. .modal-header:after,
  6498. .modal-footer:after {
  6499. clear: both;
  6500. }
  6501. .center-block {
  6502. display: block;
  6503. margin-right: auto;
  6504. margin-left: auto;
  6505. }
  6506. .pull-right {
  6507. float: right !important;
  6508. }
  6509. .pull-left {
  6510. float: left !important;
  6511. }
  6512. .hide {
  6513. display: none !important;
  6514. }
  6515. .show {
  6516. display: block !important;
  6517. }
  6518. .invisible {
  6519. visibility: hidden;
  6520. }
  6521. .text-hide {
  6522. font: 0/0 a;
  6523. color: transparent;
  6524. text-shadow: none;
  6525. background-color: transparent;
  6526. border: 0;
  6527. }
  6528. .hidden {
  6529. display: none !important;
  6530. }
  6531. .affix {
  6532. position: fixed;
  6533. }
  6534. @-ms-viewport {
  6535. width: device-width;
  6536. }
  6537. .visible-xs,
  6538. .visible-sm,
  6539. .visible-md,
  6540. .visible-lg {
  6541. display: none !important;
  6542. }
  6543. .visible-xs-block,
  6544. .visible-xs-inline,
  6545. .visible-xs-inline-block,
  6546. .visible-sm-block,
  6547. .visible-sm-inline,
  6548. .visible-sm-inline-block,
  6549. .visible-md-block,
  6550. .visible-md-inline,
  6551. .visible-md-inline-block,
  6552. .visible-lg-block,
  6553. .visible-lg-inline,
  6554. .visible-lg-inline-block {
  6555. display: none !important;
  6556. }
  6557. @media (max-width: 767px) {
  6558. .visible-xs {
  6559. display: block !important;
  6560. }
  6561. table.visible-xs {
  6562. display: table !important;
  6563. }
  6564. tr.visible-xs {
  6565. display: table-row !important;
  6566. }
  6567. th.visible-xs,
  6568. td.visible-xs {
  6569. display: table-cell !important;
  6570. }
  6571. }
  6572. @media (max-width: 767px) {
  6573. .visible-xs-block {
  6574. display: block !important;
  6575. }
  6576. }
  6577. @media (max-width: 767px) {
  6578. .visible-xs-inline {
  6579. display: inline !important;
  6580. }
  6581. }
  6582. @media (max-width: 767px) {
  6583. .visible-xs-inline-block {
  6584. display: inline-block !important;
  6585. }
  6586. }
  6587. @media (min-width: 768px) and (max-width: 991px) {
  6588. .visible-sm {
  6589. display: block !important;
  6590. }
  6591. table.visible-sm {
  6592. display: table !important;
  6593. }
  6594. tr.visible-sm {
  6595. display: table-row !important;
  6596. }
  6597. th.visible-sm,
  6598. td.visible-sm {
  6599. display: table-cell !important;
  6600. }
  6601. }
  6602. @media (min-width: 768px) and (max-width: 991px) {
  6603. .visible-sm-block {
  6604. display: block !important;
  6605. }
  6606. }
  6607. @media (min-width: 768px) and (max-width: 991px) {
  6608. .visible-sm-inline {
  6609. display: inline !important;
  6610. }
  6611. }
  6612. @media (min-width: 768px) and (max-width: 991px) {
  6613. .visible-sm-inline-block {
  6614. display: inline-block !important;
  6615. }
  6616. }
  6617. @media (min-width: 992px) and (max-width: 1199px) {
  6618. .visible-md {
  6619. display: block !important;
  6620. }
  6621. table.visible-md {
  6622. display: table !important;
  6623. }
  6624. tr.visible-md {
  6625. display: table-row !important;
  6626. }
  6627. th.visible-md,
  6628. td.visible-md {
  6629. display: table-cell !important;
  6630. }
  6631. }
  6632. @media (min-width: 992px) and (max-width: 1199px) {
  6633. .visible-md-block {
  6634. display: block !important;
  6635. }
  6636. }
  6637. @media (min-width: 992px) and (max-width: 1199px) {
  6638. .visible-md-inline {
  6639. display: inline !important;
  6640. }
  6641. }
  6642. @media (min-width: 992px) and (max-width: 1199px) {
  6643. .visible-md-inline-block {
  6644. display: inline-block !important;
  6645. }
  6646. }
  6647. @media (min-width: 1200px) {
  6648. .visible-lg {
  6649. display: block !important;
  6650. }
  6651. table.visible-lg {
  6652. display: table !important;
  6653. }
  6654. tr.visible-lg {
  6655. display: table-row !important;
  6656. }
  6657. th.visible-lg,
  6658. td.visible-lg {
  6659. display: table-cell !important;
  6660. }
  6661. }
  6662. @media (min-width: 1200px) {
  6663. .visible-lg-block {
  6664. display: block !important;
  6665. }
  6666. }
  6667. @media (min-width: 1200px) {
  6668. .visible-lg-inline {
  6669. display: inline !important;
  6670. }
  6671. }
  6672. @media (min-width: 1200px) {
  6673. .visible-lg-inline-block {
  6674. display: inline-block !important;
  6675. }
  6676. }
  6677. @media (max-width: 767px) {
  6678. .hidden-xs {
  6679. display: none !important;
  6680. }
  6681. }
  6682. @media (min-width: 768px) and (max-width: 991px) {
  6683. .hidden-sm {
  6684. display: none !important;
  6685. }
  6686. }
  6687. @media (min-width: 992px) and (max-width: 1199px) {
  6688. .hidden-md {
  6689. display: none !important;
  6690. }
  6691. }
  6692. @media (min-width: 1200px) {
  6693. .hidden-lg {
  6694. display: none !important;
  6695. }
  6696. }
  6697. .visible-print {
  6698. display: none !important;
  6699. }
  6700. @media print {
  6701. .visible-print {
  6702. display: block !important;
  6703. }
  6704. table.visible-print {
  6705. display: table !important;
  6706. }
  6707. tr.visible-print {
  6708. display: table-row !important;
  6709. }
  6710. th.visible-print,
  6711. td.visible-print {
  6712. display: table-cell !important;
  6713. }
  6714. }
  6715. .visible-print-block {
  6716. display: none !important;
  6717. }
  6718. @media print {
  6719. .visible-print-block {
  6720. display: block !important;
  6721. }
  6722. }
  6723. .visible-print-inline {
  6724. display: none !important;
  6725. }
  6726. @media print {
  6727. .visible-print-inline {
  6728. display: inline !important;
  6729. }
  6730. }
  6731. .visible-print-inline-block {
  6732. display: none !important;
  6733. }
  6734. @media print {
  6735. .visible-print-inline-block {
  6736. display: inline-block !important;
  6737. }
  6738. }
  6739. @media print {
  6740. .hidden-print {
  6741. display: none !important;
  6742. }
  6743. }
  6744. /*# sourceMappingURL=bootstrap.css.map */