bootstrap.css 123 KB

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