bootstrap.css 144 KB

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