bootstrap.css 138 KB

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