bootstrap.css 144 KB

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