bootstrap.css 138 KB

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