You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bootstrap.css 117KB

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