bootstrap.css 129 KB

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