styles.css 117 KB

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