bootstrap.css 133 KB

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