bootstrap.css 138 KB

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