style.css 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942
  1. /* @override http://macs.local/david/wp-content/themes/dw/style.css */
  2. /*!
  3. Theme Name: dw
  4. Theme URI: http://davidawindham.com/
  5. Author: windhamdavid
  6. Description: Something Else
  7. Version: 2.0
  8. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  9. Thanks:
  10. normalize.css v3.0.1 * MIT License
  11. bootstrap v3.2.0 * MIT License
  12. font awesome 4.2.0 * MIT License
  13. _s | GPL License
  14. */
  15. html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
  16. html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{font-family:inherit;font-size: 100%;font-style:inherit;font-weight:inherit;background:transparent;border:0;margin:0;padding:0;outline:0;vertical-align: baseline;}
  17. html{overflow-y: scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust: 100%;}
  18. body{line-height:1;}
  19. *,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
  20. article,aside,details,figcaption,figure,footer,header,main,nav,section{display:block;}
  21. h1,h2,h3,h4,h5,h6{clear:both;font-weight:normal;}
  22. ol,ul{list-style: none;}
  23. blockquote,q{quotes: "" "";}
  24. blockquote:before,blockquote:after,q:before,q:after{content:'';}
  25. del {text-decoration:line-through;}
  26. table{border-collapse:collapse;border-spacing:0;}
  27. a:focus {outline:thin dotted;}
  28. a img {border: 0;}
  29. .clear {clear: both;}
  30. /*============================================
  31. Body
  32. ==============================================*/
  33. body {
  34. background: rgba(242,242,242,.7)
  35. }
  36. /*============================================
  37. Typography
  38. ==============================================*/
  39. @font-face {
  40. font-family: 'Computer Modern';
  41. src: local("☺"),
  42. url('fonts/cmunrm.woff') format('woff'),
  43. url('fonts/cmunrm.ttf') format('truetype'),
  44. url('fonts/cmunrm.otf') format('opentype'),
  45. url('fonts/cmunrm.eot?') format('embedded-opentype');
  46. font-weight: normal;
  47. font-style: normal;
  48. }
  49. @font-face {
  50. font-family: 'Computer Modern';
  51. src: local("☺"),
  52. url('fonts/cmunbx.woff') format('woff'),
  53. url('fonts/cmunbx.ttf') format('truetype'),
  54. url('fonts/cmunbx.otf') format('opentype'),
  55. url('fonts/cmunbx.eot?') format('embedded-opentype');
  56. font-weight: bold;
  57. font-style: normal;
  58. }
  59. @font-face {
  60. font-family: 'CM Sans';
  61. src: local("☺"),
  62. url('fonts/cmunsx.woff') format('woff'),
  63. url('fonts/cmunsx.ttf') format('truetype'),
  64. url('fonts/cmunsx.eot?') format('embedded-opentype');
  65. font-weight: normal;
  66. font-style: normal;
  67. }
  68. @font-face {
  69. font-family: 'CM Bright';
  70. src: local("☺"),
  71. url('fonts/cmunbbx.woff') format('woff'),
  72. url('fonts/cmunbbx.ttf') format('truetype'),
  73. url('fonts/cmunbbx.eot?') format('embedded-opentype');
  74. font-weight: normal;
  75. font-style: normal;
  76. }
  77. @font-face {
  78. font-family: 'CM Concrete';
  79. src: local("☺"),
  80. url('fonts/cmunobx.woff') format('woff'),
  81. url('fonts/cmunobx.ttf') format('truetype'),
  82. url('fonts/cmunobx.eot?') format('embedded-opentype');
  83. font-weight: normal;
  84. font-style: normal;
  85. }
  86. @font-face {
  87. font-family: 'CM Type';
  88. src: local("☺"),
  89. url('fonts/cmunobx.woff') format('woff'),
  90. url('fonts/cmunobx.ttf') format('truetype'),
  91. url('fonts/cmunobx.eot?') format('embedded-opentype');
  92. font-weight: normal;
  93. font-style: normal;
  94. }
  95. .cm {
  96. font-family: "Computer Modern";
  97. }
  98. .cm-sans {
  99. font-family: "CM Sans";
  100. }
  101. .cm-concrete {
  102. font-family: "CM Concrete";
  103. }
  104. .cm-bright {
  105. font-family: "CM Bright";
  106. }
  107. .cm-type {
  108. font-family: "CM Type";
  109. }
  110. .courier {
  111. font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
  112. }
  113. .didot {
  114. font-family: Didot, "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman", serif;
  115. }
  116. .georgia {
  117. font-family: Georgia, Times, "Times New Roman", serif;
  118. }
  119. .helvetica {
  120. font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  121. }
  122. * {
  123. -webkit-font-smoothing: antialiased !important;
  124. text-rendering: optimizeLegibility !important;
  125. font-weight: normal;
  126. font-size: 16px;
  127. line-height: 1.42857143;
  128. }
  129. input,button,select,textarea {
  130. font-family: inherit;
  131. font-size: inherit;
  132. line-height: inherit;
  133. }
  134. .light {
  135. color:#fcfcfc !important;
  136. }
  137. .darken {
  138. color:#333
  139. }
  140. .dim {
  141. color: #737373;
  142. }
  143. .dull {
  144. color: #535353;
  145. }
  146. .right {
  147. text-align: right;
  148. }
  149. em {
  150. font-weight: bold;
  151. }
  152. h1.super {
  153. margin: 40px 0 0;
  154. font-size: 43px;
  155. font-weight: bold;
  156. letter-spacing: -2px;
  157. }
  158. h5.contact {
  159. margin: 0 0 5px !important;
  160. }
  161. .conq {
  162. font-family: "aw-conqueror-didot",serif;
  163. font-style: normal;
  164. font-weight: 300;
  165. }
  166. .email a {
  167. color: #777;
  168. }
  169. /*============================================
  170. Grid
  171. ==============================================*/
  172. .container {
  173. padding-right: 15px;
  174. padding-left: 15px;
  175. margin-right: auto;
  176. margin-left: auto;
  177. }
  178. @media (max-width: 667px) {
  179. body {
  180. background: #fff;
  181. }
  182. article.single {
  183. padding: 20px 0px;
  184. }
  185. }
  186. @media (max-width: 768px)
  187. and (min-width: 668px)
  188. {
  189. article.single {
  190. padding: 70px 20px 70px;
  191. }
  192. }
  193. @media (min-width: 768px) {
  194. .container {
  195. width: 760px;
  196. }
  197. .site-title {
  198. font-size: 25px;
  199. }
  200. article.single {
  201. padding: 70px 40px 70px;
  202. }
  203. }
  204. @media (min-width: 992px) {
  205. .container {
  206. width: 970px;
  207. }
  208. article.single {
  209. background: #fff;
  210. padding: 70px 80px 140px;
  211. }
  212. }
  213. @media (min-width: 1200px) {
  214. .container {
  215. width: 1170px;
  216. }
  217. article.single {
  218. background: #fff;
  219. padding: 70px 100px 140px;
  220. }
  221. }
  222. @media (min-width: 1310px) {
  223. }
  224. @media print {
  225. * {
  226. color: #000 !important;
  227. text-shadow: none !important;
  228. background: transparent !important;
  229. -webkit-box-shadow: none !important;
  230. box-shadow: none !important;
  231. }
  232. }
  233. /*============================================
  234. Loader / Transit
  235. ==============================================*/
  236. #loader {
  237. position: fixed;
  238. width: 100%;
  239. height: 100%;
  240. top: 0;
  241. left: 0;
  242. font-size: 150px;
  243. text-align: center;
  244. vertical-align: middle;
  245. color: #222;
  246. z-index: 200000;
  247. background-color: #222;
  248. }
  249. .loading-animation {
  250. width: 250px;
  251. height: 250px;
  252. position: absolute;
  253. top: 0;
  254. bottom: 0;
  255. right: 0;
  256. left: 0;
  257. margin: auto;
  258. }
  259. .loading-animation svg {
  260. position:absolute;
  261. top:0;
  262. left:0;
  263. -webkit-transform-origin:center center;
  264. -ms-transform-origin:center center;
  265. -o-transform-origin:center center;
  266. transform-origin:center center;
  267. -webkit-transition:all 0.3s;
  268. -o-transition:all 0.3s;
  269. transition:all 0.3s;
  270. -webkit-transform:rotateY(0deg);
  271. -ms-transform:rotateY(0deg);
  272. -o-transform:rotateY(0deg);
  273. transform:rotateY(0deg);
  274. }
  275. .loading-animation path {
  276. fill:none;
  277. stroke:#fff;
  278. stroke-width:2;
  279. -webkit-transition:all .3s;
  280. -o-transition:all .3s;
  281. transition:all .3s;
  282. }
  283. .loading-animation .l1 path {
  284. fill:rgba(242,242,242,.1);
  285. stroke-dasharray:450;
  286. stroke-dashoffset:900;
  287. -webkit-animation:LOADING1 4s linear 0s infinite;
  288. -o-animation:LOADING1 4s linear 0s infinite;
  289. animation:LOADING1 4s linear 0s infinite;
  290. }
  291. .loading-animation .l2 path {
  292. fill:rgba(242,242,242,.1);
  293. stroke-dasharray:340;
  294. stroke-dashoffset:340;
  295. -webkit-animation:LOADING2 3s linear 0s infinite;
  296. -o-animation:LOADING2 3s linear 0s infinite;
  297. animation:LOADING2 3s linear 0s infinite;
  298. }
  299. .loading-animation .l3 path {
  300. fill:none;
  301. stroke-width:1;
  302. stroke-dasharray:33;
  303. stroke-dashoffset:33;
  304. -webkit-animation:LOADING3 2s linear 0s infinite;
  305. -o-animation:LOADING3 2s linear 0s infinite;
  306. animation:LOADING3 2s linear 0s infinite;
  307. }
  308. @-webkit-keyframes LOADING1 {
  309. 0%{stroke-dashoffset:-900;}
  310. 50%{stroke-dashoffset:0;}
  311. 100%{stroke-dashoffset:900;}
  312. }
  313. @-moz-keyframes LOADING1 {
  314. 0%{stroke-dashoffset:-900;}
  315. 50%{stroke-dashoffset:0;}
  316. 100%{stroke-dashoffset:900;}
  317. }
  318. @-o-keyframes LOADING1 {
  319. 0%{stroke-dashoffset:-900;}
  320. 50%{stroke-dashoffset:0;}
  321. 100%{stroke-dashoffset:900;}
  322. }
  323. @keyframes LOADING1 {
  324. 0%{stroke-dashoffset:-900;}
  325. 50%{stroke-dashoffset:0;}
  326. 100%{stroke-dashoffset:900;}
  327. }
  328. @-webkit-keyframes LOADING2 {
  329. 0%{stroke-dashoffset:340;}
  330. 50%{stroke-dashoffset:0;}
  331. 100%{stroke-dashoffset:-340;}
  332. }
  333. @-moz-keyframes LOADING2 {
  334. 0%{stroke-dashoffset:340;}
  335. 50%{stroke-dashoffset:0;}
  336. 100%{stroke-dashoffset:-340;}
  337. }
  338. @-o-keyframes LOADING2 {
  339. 0%{stroke-dashoffset:340;}
  340. 50%{stroke-dashoffset:0;}
  341. 100%{stroke-dashoffset:-340;}
  342. }
  343. @keyframes LOADING2 {
  344. 0%{stroke-dashoffset:340;}
  345. 50%{stroke-dashoffset:0;}
  346. 100%{stroke-dashoffset:-340;}
  347. }
  348. @-webkit-keyframes LOADING3 {
  349. 0%{stroke-dashoffset:-230;}
  350. 50%{stroke-dashoffset:0;}
  351. 100%{stroke-dashoffset:230;}
  352. }
  353. @-moz-keyframes LOADING3 {
  354. 0%{stroke-dashoffset:-230;}
  355. 50%{stroke-dashoffset:0;}
  356. 100%{stroke-dashoffset:230;}
  357. }
  358. @-o-keyframes LOADING3 {
  359. 0%{stroke-dashoffset:-230;}
  360. 50%{stroke-dashoffset:0;}
  361. 100%{stroke-dashoffset:230;}
  362. }
  363. @keyframes LOADING3 {
  364. 0%{stroke-dashoffset:-230;}
  365. 50%{stroke-dashoffset:0;}
  366. 100%{stroke-dashoffset:230;}
  367. }
  368. .svg-wrap .l1 {
  369. -webkit-animation:TURN 3s linear 0s infinite;
  370. -o-animation:TURN 3s linear 0s infinite;
  371. animation:TURN 3s linear 0s infinite;
  372. }
  373. .svg-wrap .l2 {
  374. -webkit-animation:TURN 2s linear 0s infinite;
  375. -o-animation:TURN 2s linear 0s infinite;
  376. animation:TURN 2s linear 0s infinite;
  377. }
  378. .svg-wrap .l3 {
  379. -webkit-animation:TURN 4.5s linear 0s infinite;
  380. -o-animation:TURN 4.5s linear 0s infinite;
  381. animation:TURN 4.5s linear 0s infinite;
  382. }
  383. @-webkit-keyframes TURN {
  384. 0%{-webkit-transform:rotateY(0deg);opacity:1}
  385. 25%{-webkit-transform:rotateY(90deg);opacity:.6}
  386. 50%{-webkit-transform:rotateY(180deg);opacity:1}
  387. 75%{-webkit-transform:rotateY(270deg);opacity:.6}
  388. 100%{-webkit-transform:rotateY(360deg);opacity:1}}
  389. @-webkit-keyframes TURNBACK {
  390. 0%{-webkit-transform:rotateY(360deg);opacity:1}
  391. 25%{-webkit-transform:rotateY(270deg);opacity:.6}
  392. 50%{-webkit-transform:rotateY(180deg);opacity:1}
  393. 75%{-webkit-transform:rotateY(90deg);opacity:.6}
  394. 100%{-webkit-transform:rotateY(0deg);opacity:1}}
  395. .m-scene .scene_element {
  396. -webkit-animation-duration: 0.25s;
  397. animation-duration: 0.25s;
  398. -webkit-transition-timing-function: ease-in;
  399. transition-timing-function: ease-in;
  400. -webkit-animation-fill-mode: both;
  401. animation-fill-mode: both; }
  402. .m-scene .scene_element--fadein {
  403. -webkit-animation-name: fadeIn;
  404. animation-name: fadeIn; }
  405. .m-scene .scene_element--fadeinup {
  406. -webkit-animation-name: fadeInUp;
  407. animation-name: fadeInUp; }
  408. .m-scene .scene_element--fadeinright {
  409. -webkit-animation-name: fadeInRight;
  410. animation-name: fadeInRight; }
  411. .m-scene .scene_element--delayed {
  412. -webkit-animation-delay: 0.25s;
  413. animation-delay: 0.25s; }
  414. .m-scene.is-exiting .scene_element {
  415. -webkit-animation-direction: alternate-reverse;
  416. animation-direction: alternate-reverse; }
  417. .m-scene.is-exiting .scene_element--delayed {
  418. -webkit-animation-delay: 0s;
  419. animation-delay: 0s; }
  420. .m-scene.is-exiting .scene_element--noexiting {
  421. -webkit-animation-direction: alternate-reverse;
  422. animation-direction: alternate-reverse; }
  423. /*============================================
  424. Intro
  425. ==============================================*/
  426. @keyframes blink {
  427. 0% { opacity: 0; }
  428. 25% { opacity: 1; }
  429. 50% { opacity: 1; }
  430. 100% { opacity: 0; }
  431. }
  432. @-webkit-keyframes blink {
  433. 0% { opacity: 0; }
  434. 25% { opacity: 1; }
  435. 50% { opacity: 1; }
  436. 100% { opacity: 0; }
  437. }
  438. @-ms-keyframes blink {
  439. 0% { opacity: 0; }
  440. 25% { opacity: 1; }
  441. 50% { opacity: 1; }
  442. 100% { opacity: 0; }
  443. }
  444. @-moz-keyframes blink {
  445. 0% { opacity: 0; }
  446. 25% { opacity: 1; }
  447. 50% { opacity: 1; }
  448. 100% { opacity: 0; }
  449. }
  450. .welcome::after {
  451. visibility: visible;
  452. content: '';
  453. background-color:green;
  454. opacity: 0;
  455. display: inline-block;
  456. position: relative;
  457. width: 0.5em;
  458. height: 1em;
  459. top: 5px;
  460. margin-left: 0;
  461. margin-bottom: 2px;
  462. -webkit-animation: blink 1s 20;
  463. -moz-animation: blink 1s 20;
  464. animation: blink 1s 20;
  465. }
  466. .welcome-back-text::after {
  467. visibility: visible;
  468. content: '';
  469. background-color:green;
  470. opacity: 0;
  471. display: inline-block;
  472. position: relative;
  473. width: 0.5em;
  474. height: 1em;
  475. top: 5px;
  476. margin-left: 0;
  477. margin-bottom: 2px;
  478. -webkit-animation: blink 1s 3;
  479. -moz-animation: blink 1s 3;
  480. animation: blink 1s 3;
  481. }
  482. .welcome-back {
  483. min-height: 500px;
  484. padding: 70px 50px 40px;
  485. font-size: 24px;
  486. color: #34F743;
  487. background: transparent url('img/terminal.svg');
  488. background-size: cover;
  489. border-radius: 1px;
  490. }
  491. .terminal-welcome .modal-content {
  492. margin: 0 0 100px;
  493. border: none;
  494. box-shadow:none;
  495. background-color: transparent !important;
  496. }
  497. .terminal {
  498. margin-top:30px;
  499. }
  500. .terminal .modal-content {
  501. margin: 0 0 100px;
  502. border: none;
  503. box-shadow:none;
  504. background-color: transparent !important;
  505. }
  506. [contenteditable] {outline: none;}
  507. .typed-cursor{
  508. display: none;
  509. }
  510. .thermo span.prompt {
  511. color: #389436;
  512. }
  513. .thermo p.input {
  514. line-height: 11px !important;
  515. margin: 0px;
  516. }
  517. .thermo p.response {
  518. line-height: 11px !important;
  519. margin: 0px;
  520. color:#34F743;
  521. }
  522. .thermo span.u {
  523. color: #389436;
  524. }
  525. .thermo span.at {
  526. color: #38BBC6;
  527. }
  528. .thermo span.mee {
  529. color: #389436;
  530. }
  531. .thermo-intro span.prompt {
  532. color: #389436;
  533. }
  534. .thermo-intro p.input {
  535. line-height: 11px !important;
  536. margin: 0px;
  537. }
  538. .thermo-intro p.response {
  539. line-height: 11px !important;
  540. margin: 0px;
  541. color:#34F743;
  542. }
  543. .thermo-intro span.u {
  544. color: #389436;
  545. }
  546. .thermo-intro span.at {
  547. color: #38BBC6;
  548. }
  549. .thermo-intro span.mee {
  550. color: #389436;
  551. }
  552. .big-top {
  553. height: auto;
  554. margin: 0 auto;
  555. width: 100%;
  556. position: relative;
  557. box-shadow: 0 0 50px rgba(0,0,0,0.8);
  558. padding: 100px 0;
  559. }
  560. .caro-grad {
  561. background: #5E7A9B;
  562. background: -webkit-linear-gradient(top, #355069 0, #5e7a9b 100%);
  563. background: -moz-linear-gradient(top, #355069 0, #5e7a9b 100%);
  564. background: -o-linear-gradient(top, #355069 0, #5e7a9b 100%);
  565. background: linear-gradient(top, #355069 0, #5e7a9b 100%);
  566. }
  567. .about {
  568. padding: 30px 0;
  569. }
  570. .carousel-fade .carousel-inner .item {
  571. left: 0 !important;
  572. opacity: 0;
  573. -webkit-transition-property: opacity;
  574. -moz-transition-property: opacity;
  575. -o-transition-property: opacity;
  576. transition-property: opacity;
  577. }
  578. .carousel-fade .carousel-inner .active {
  579. opacity: 1;
  580. }
  581. .carousel-fade .carousel-inner .active.left,
  582. .carousel-fade .carousel-inner .active.right {
  583. left: 0;
  584. opacity: 0;
  585. z-index: 1;
  586. }
  587. .carousel-fade .carousel-inner .next.left,
  588. .carousel-fade .carousel-inner .prev.right {
  589. opacity: 1;
  590. }
  591. .carousel-fade .carousel-control {
  592. z-index: 2;
  593. }
  594. #caro-lead {
  595. min-height: 400px;
  596. }
  597. #caro {
  598. }
  599. .hide-svg {
  600. visibility: hidden;
  601. }
  602. .fade-svg {
  603. -webkit-animation: fadeOut 1s;
  604. -moz-animation: fadeOut 1s;
  605. -o-animation: fadeOut 1s;
  606. -ms-animation: fadeOut 1s;
  607. animation: fadeOut 1s;
  608. }
  609. .show-svg {
  610. -webkit-animation: fadeIn 1s;
  611. -moz-animation: fadeIn 1s;
  612. -o-animation: fadeIn 1s;
  613. -ms-animation: fadeIn 1s;
  614. animation: fadeIn 1s;
  615. }
  616. #caro svg#svg-imac.screen {
  617. max-height: 460px;
  618. margin: 0;
  619. float: right;
  620. }
  621. #caro svg#svg-imac.bg {
  622. max-height: 460px;
  623. margin: 0;
  624. float: right;
  625. background: transparent url('img/web.gif') no-repeat 28% 15%;
  626. }
  627. .bg1 {
  628. background-size: cover;
  629. -webkit-background-size: cover;
  630. -moz-background-size: cover;
  631. -o-background-size: cover;
  632. background-size: cover;
  633. }
  634. .blur {
  635. -webkit-filter: blur(5px);
  636. -moz-filter: blur(5px);
  637. -o-filter: blur(5px);
  638. -ms-filter: blur(5px);
  639. filter: blur(5px);
  640. }
  641. #tv {
  642. position: fixed;
  643. right: 0;
  644. top: 0;
  645. min-width: 101%;
  646. min-height: 101%;
  647. width: auto;
  648. height: auto;
  649. z-index: -100;
  650. /*background: url(img/tv.gif) no-repeat;*/
  651. background-size: cover;
  652. -webkit-background-size: cover;
  653. -moz-background-size: cover;
  654. -o-background-size: cover;
  655. filter: saturate(0);
  656. -webkit-filter: saturate(0);
  657. transform-origin: 50% 50%;
  658. -webkit-transform-origin: 50% 50%;
  659. border: none;
  660. }
  661. @-webkit-keyframes vidblur {
  662. 0% {-webkit-filter: blur(0px) saturate(0) hue-rotate(0deg);}
  663. 100% {-webkit-filter: blur(4px) saturate(2) hue-rotate(100deg);}
  664. }
  665. @-webkit-keyframes vidunblur {
  666. 0% {-webkit-filter: blur(4px) saturate(2) hue-rotate(100deg);;}
  667. 100% {-webkit-filter: blur(0px) saturate(0) hue-rotate(0deg);}
  668. }
  669. #tv.blur {
  670. -webkit-animation: vidblur 4s;
  671. animation: vidblur 4s;
  672. }
  673. #tv.unblur {
  674. -webkit-animation: vidunblur 4s;
  675. animation: vidunblur 4s;
  676. }
  677. /*============================================
  678. Navbar
  679. ==============================================*/
  680. .navbar {
  681. -webkit-transition: background-color 0.3s;
  682. -moz-transition: background-color 0.3s;
  683. transition: background-color 0.3s;
  684. -webkit-transform: translate3d(0, 0, 0);
  685. -moz-transform: translate3d(0, 0, 0);
  686. -ms-transform: translate3d(0, 0, 0);
  687. -o-transform: translate3d(0, 0, 0);
  688. transform: translate3d(0, 0, 0);
  689. }
  690. .navbar.fixed {
  691. position: fixed;
  692. top: -81px;
  693. -webkit-transition: all .3s ease-in-out;
  694. -moz-transition: all .3s ease-in-out;
  695. transition: all .3s ease-in-out;
  696. }
  697. .navbar.visible {
  698. -webkit-transform: translate3d(0, 100%, 0);
  699. -moz-transform: translate3d(0, 100%, 0);
  700. -ms-transform: translate3d(0, 100%, 0);
  701. -o-transform: translate3d(0, 100%, 0);
  702. transform: translate3d(0, 100%, 0);
  703. background-color: rgba(237, 237, 237, 0.7);
  704. }
  705. #nav {
  706. width: 100%;
  707. }
  708. #nav.affix-top {
  709. width: 100%;
  710. background-color: rgba(237, 237, 237, 0.0);
  711. }
  712. #nav.affix-top {
  713. visibility: visible;
  714. position: absolute;
  715. top:0;
  716. left:0;
  717. height:80px;
  718. -webkit-transition: all .3s ease-in-out;
  719. -moz-transition: all .3s ease-in-out;
  720. transition: all .3s ease-in-out;
  721. }
  722. #nav.affix {
  723. position: fixed;
  724. top: 0;
  725. z-index:10;
  726. -webkit-transition: all .3s ease-in-out;
  727. -moz-transition: all .3s ease-in-out;
  728. transition: all .3s ease-in-out;
  729. }
  730. /*============================================
  731. NavMenu
  732. ==============================================*/
  733. .nav-tabs-bottom {
  734. border-bottom: 0;
  735. border-top: 1px solid #dddddd;
  736. }
  737. .nav-tabs-bottom > li {
  738. margin-bottom: 0;
  739. margin-top: -1px;
  740. }
  741. .nav-tabs-bottom > li > a {
  742. border-radius: 0 0 4px 4px;
  743. }
  744. .nav-tabs-bottom > li > a:hover,
  745. .nav-tabs-bottom > li > a:focus,
  746. .nav-tabs-bottom > li.active > a,
  747. .nav-tabs-bottom > li.active > a:hover,
  748. .nav-tabs-bottom > li.active > a:focus {
  749. border: 1px solid #dddddd;
  750. border-top-color: transparent;
  751. }
  752. .nav-tabs-left {
  753. border-bottom: 0;
  754. border-right: 1px solid #dddddd;
  755. }
  756. .nav-tabs-left > li {
  757. margin-bottom: 0;
  758. margin-right: -1px;
  759. float: none;
  760. }
  761. .nav-tabs-left > li > a {
  762. border-radius: 4px 0 0 4px;
  763. margin-right: 0;
  764. margin-bottom: 2px;
  765. }
  766. .nav-tabs-left > li > a:hover,
  767. .nav-tabs-left > li > a:focus,
  768. .nav-tabs-left > li.active > a,
  769. .nav-tabs-left > li.active > a:hover,
  770. .nav-tabs-left > li.active > a:focus {
  771. border: 1px solid #dddddd;
  772. border-right-color: transparent;
  773. }
  774. .row > .nav-tabs-left {
  775. padding-right: 0;
  776. padding-left: 15px;
  777. margin-right: -1px;
  778. position: relative;
  779. z-index: 1;
  780. }
  781. .row > .nav-tabs-left + .tab-content {
  782. border-left: 1px solid #dddddd;
  783. }
  784. .nav-tabs-right {
  785. border-bottom: 0;
  786. border-left: 1px solid #dddddd;
  787. }
  788. .nav-tabs-right > li {
  789. margin-bottom: 0;
  790. margin-left: -1px;
  791. float: none;
  792. }
  793. .nav-tabs-right > li > a {
  794. border-radius: 0 4px 4px 0;
  795. margin-left: 0;
  796. margin-bottom: 2px;
  797. }
  798. .nav-tabs-right > li > a:hover,
  799. .nav-tabs-right > li > a:focus,
  800. .nav-tabs-right > li.active > a,
  801. .nav-tabs-right > li.active > a:hover,
  802. .nav-tabs-right > li.active > a:focus {
  803. border: 1px solid #dddddd;
  804. border-left-color: transparent;
  805. }
  806. .row > .nav-tabs-right {
  807. padding-left: 0;
  808. padding-right: 15px;
  809. }
  810. .offcanvas {
  811. display: none;
  812. }
  813. .offcanvas.in {
  814. display: block;
  815. }
  816. @media (max-width: 767px) {
  817. .offcanvas-xs {
  818. display: none;
  819. }
  820. .offcanvas-xs.in {
  821. display: block;
  822. }
  823. }
  824. @media (max-width: 991px) {
  825. .offcanvas-sm {
  826. display: none;
  827. }
  828. .offcanvas-sm.in {
  829. display: block;
  830. }
  831. }
  832. @media (max-width: 1199px) {
  833. .offcanvas-md {
  834. display: none;
  835. }
  836. .offcanvas-md.in {
  837. display: block;
  838. }
  839. }
  840. .offcanvas-lg {
  841. display: none;
  842. }
  843. .offcanvas-lg.in {
  844. display: block;
  845. }
  846. .canvas-sliding {
  847. -webkit-transition: top 0.35s, left 0.35s, bottom 0.35s, right 0.35s;
  848. transition: top 0.35s, left 0.35s, bottom 0.35s, right 0.35s;
  849. }
  850. .offcanvas-clone {
  851. height: 0px !important;
  852. width: 0px !important;
  853. overflow: hidden !important;
  854. border: none !important;
  855. margin: 0px !important;
  856. padding: 0px !important;
  857. position: absolute !important;
  858. top: auto !important;
  859. left: auto !important;
  860. bottom: 0px !important;
  861. right: 0px !important;
  862. opacity: 0 !important;
  863. }
  864. .offcanvas.in {
  865. display: block;
  866. }
  867. .canvas-sliding {
  868. -webkit-transition: .25s ease-in-out;
  869. transition: .25s ease-in-out;
  870. }
  871. .navmenu,
  872. .navbar-offcanvas {
  873. width: 170px;
  874. height: auto;
  875. }
  876. .navmenu-fixed-right,
  877. .navbar-offcanvas {
  878. position: fixed;
  879. top: 80px;
  880. bottom: 0;
  881. z-index: 1030;
  882. overflow-y: auto;
  883. border-radius: 0;
  884. left: auto;
  885. right: 0;
  886. }
  887. .nav-toggle {
  888. padding: 15px 0;
  889. padding: 10px 35px 16px 0px;
  890. right: 15px;
  891. top: 25px;
  892. cursor: pointer;
  893. position: absolute;
  894. }
  895. .nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  896. cursor: pointer;
  897. border-radius: 1px;
  898. height: 5px;
  899. width: 35px;
  900. background: #333E52;
  901. position: absolute;
  902. display: block;
  903. content: '';
  904. }
  905. .nav-toggle span:before {
  906. top: -10px;
  907. }
  908. .nav-toggle span:after {
  909. bottom: -10px;
  910. }
  911. .nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  912. transition: all 500ms ease-in-out;
  913. }
  914. .nav-toggle.active span {
  915. background-color: transparent;
  916. }
  917. .nav-toggle.active span:before, .nav-toggle.active span:after {
  918. top: 0;
  919. }
  920. .nav-toggle.active span:before {
  921. transform: rotate(45deg);
  922. -webkit-transform: rotate(45deg);
  923. -o-transform: rotate(45deg);
  924. }
  925. .nav-toggle.active span:after {
  926. transform: rotate(-45deg);
  927. -webkit-transform: rotate(-45deg);
  928. -o-transform: rotate(-45deg);
  929. }
  930. ul.social {
  931. padding: 5px 15px;
  932. }
  933. ul.social li {
  934. float: left;
  935. padding: 1px 3px;
  936. }
  937. #archives li {
  938. list-style: none;
  939. margin: 2px 8px;
  940. float: left;
  941. }
  942. .fa {
  943. color: #777;
  944. }
  945. .fa-15x {
  946. font-size: 1.6em !important;
  947. padding: 2px 2px;
  948. }
  949. /*============================================
  950. Header
  951. ==============================================*/
  952. .site-title {
  953. float: right;
  954. padding: 15px 0;
  955. font-family: "Computer Modern";
  956. }
  957. .site-title a {
  958. color: #333;
  959. text-decoration: none;
  960. }
  961. img.dw {
  962. float: right;
  963. margin: 15px 0;
  964. }
  965. #site-description {
  966. clear: right;
  967. float: right;
  968. font-style: italic;
  969. margin: 14px 0 18px 0;
  970. width: 160px;
  971. }
  972. .logo {
  973. margin: 0 auto;
  974. vertical-align: top;
  975. }
  976. .front-nav {
  977. margin: 10px 0 0;
  978. }
  979. /*============================================
  980. Content
  981. ==============================================*/
  982. .screen-reader {
  983. text-indent: -10000px;
  984. top:auto;
  985. width:1px;
  986. height:1px;
  987. overflow:hidden;
  988. }
  989. /*===== Structure =====*/
  990. .a:hover {
  991. color: #1d8;
  992. }
  993. .leader {
  994. padding: 100px 0 0;
  995. }
  996. .leader-gap {
  997. padding: 40px 0;
  998. }
  999. .posts-front {
  1000. padding: 40px 0;
  1001. }
  1002. .dark {
  1003. background: #222;
  1004. }
  1005. .bottom {
  1006. padding-top: 50px;
  1007. }
  1008. .footer {
  1009. padding: 50px 0;
  1010. }
  1011. .footer-home {
  1012. padding: 90px 0 50px;
  1013. }
  1014. .centered {
  1015. float: none;
  1016. margin: 0 auto;
  1017. }
  1018. article#main {
  1019. padding: 0px;
  1020. }
  1021. article#main .entry-content {
  1022. padding: 15px;
  1023. }
  1024. article h2 {
  1025. font-size: 28px;
  1026. }
  1027. article.home {
  1028. background: rgba(255, 255, 255, 0.9);
  1029. padding: 70px 60px;
  1030. border-radius: 10px;
  1031. min-height: 280px;
  1032. }
  1033. article.single {
  1034. background: #fff;
  1035. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  1036. }
  1037. .post {
  1038. margin-bottom: 40px;
  1039. }
  1040. article p {
  1041. text-indent: 12px;
  1042. }
  1043. p.nobreak {
  1044. margin: 0 0 10px !important;
  1045. }
  1046. /*===== Footer =====*/
  1047. p.cc {
  1048. float: right;
  1049. font-size: 14px;
  1050. margin: 2px 20px 30px 10px;
  1051. }
  1052. span.quiet {
  1053. display: none;
  1054. }
  1055. span.right {
  1056. float: right;
  1057. }
  1058. .footer {
  1059. padding: 50px 0 30px;
  1060. }
  1061. .form-row {
  1062. margin: 10px 0;
  1063. }
  1064. .form-row.checkbox {
  1065. font-size: 0.85em;
  1066. }
  1067. .form-row.texts:first-of-type {
  1068. margin-top: 30px;
  1069. }
  1070. .form-row.texts + .form-row:not(.texts) {
  1071. margin-top: 30px;
  1072. }
  1073. .checkbox-field input {
  1074. margin-right: 10px;
  1075. }
  1076. .entry-content ul {
  1077. margin: 10px 20px;
  1078. }
  1079. .entry-content ul.sitemap {
  1080. margin: 0;
  1081. }
  1082. /*===== Wordpress =====*/
  1083. #content {
  1084. margin-bottom: 36px;
  1085. margin-top: 100px;
  1086. }
  1087. #content,
  1088. #content input,
  1089. #content textarea {
  1090. color: #111;
  1091. }
  1092. #content p,
  1093. #content ul,
  1094. #content ol,
  1095. #content dd,
  1096. #content pre,
  1097. #content hr {
  1098. margin-bottom: 24px;
  1099. }
  1100. #content ul ul,
  1101. #content ol ol,
  1102. #content ul ol,
  1103. #content ol ul {
  1104. margin-bottom: 0;
  1105. }
  1106. #content pre,
  1107. #content kbd,
  1108. #content tt,
  1109. #content var {
  1110. font-size: 15px;
  1111. line-height: 21px;
  1112. }
  1113. #content code {
  1114. font-size: 13px;
  1115. }
  1116. #content dt,
  1117. #content th {
  1118. color: #000;
  1119. }
  1120. #content h1,
  1121. #content h2,
  1122. #content h3,
  1123. #content h4,
  1124. #content h5,
  1125. #content h6 {
  1126. color: #000;
  1127. line-height: 1.5em;
  1128. margin: 0 0 16px 0;
  1129. }
  1130. #content table {
  1131. border: 1px solid #e7e7e7;
  1132. margin: 0 -1px 24px 0;
  1133. text-align: left;
  1134. width: 100%;
  1135. }
  1136. #content tr th,
  1137. #content thead th {
  1138. color: #888;
  1139. font-size: 12px;
  1140. font-weight: bold;
  1141. line-height: 18px;
  1142. padding: 9px 24px;
  1143. }
  1144. #content tr td {
  1145. border-top: 1px solid #e7e7e7;
  1146. padding: 6px 24px;
  1147. }
  1148. #content tr.odd td {
  1149. background: #f2f7fc;
  1150. }
  1151. .hentry {
  1152. margin: 0 0 30px 0;
  1153. }
  1154. .reserved-gallery {
  1155. float: left;
  1156. padding: 5px;
  1157. }
  1158. .home .sticky {
  1159. background: #f2f7fc;
  1160. border-top: 4px solid #000;
  1161. margin-left: -20px;
  1162. margin-right: -20px;
  1163. padding: 18px 20px;
  1164. }
  1165. .single .hentry {
  1166. margin: 0 0 36px 0;
  1167. }
  1168. .page-title {
  1169. color: #000;
  1170. font-size: 14px;
  1171. font-weight: bold;
  1172. margin: 0 0 36px 0;
  1173. }
  1174. .page-title span {
  1175. color: #333;
  1176. font-size: 16px;
  1177. font-style: italic;
  1178. font-weight: normal;
  1179. }
  1180. .entry-caption-parent .page-title span {
  1181. color: #777;
  1182. font-size: 12px;
  1183. font-style: italic;
  1184. font-weight: normal;
  1185. }
  1186. .nav-previous span.meta-nav {
  1187. color: #888;
  1188. font-size: 12px;
  1189. font-style: italic;
  1190. font-weight: normal;
  1191. }
  1192. .nav-next span.meta-nav {
  1193. color: #888;
  1194. font-size: 12px;
  1195. font-style: italic;
  1196. font-weight: normal;
  1197. }
  1198. .page-title a:link,
  1199. .page-title a:visited {
  1200. color: #888;
  1201. text-decoration: none;
  1202. }
  1203. .page-title a:active,
  1204. .page-title a:hover {
  1205. color: #2a6496;
  1206. }
  1207. #content .entry-title {
  1208. color: #000;
  1209. font-size: 26px;
  1210. line-height: 1.3em;
  1211. margin-bottom: 20px;
  1212. }
  1213. h2.entry-title {
  1214. color: #999;
  1215. }
  1216. .entry-title a:link,
  1217. .entry-title a:visited {
  1218. color: #000;
  1219. text-decoration: none;
  1220. }
  1221. .entry-title a:active,
  1222. .entry-title a:hover {
  1223. color: #2a6496;
  1224. }
  1225. .entry-meta {
  1226. color: #888;
  1227. font-size: 12px;
  1228. }
  1229. .entry-meta-attachment {
  1230. float: right;
  1231. color: #888;
  1232. font: 11px "Courier New", Courier, mono;
  1233. }
  1234. .entry-meta abbr,
  1235. .entry-utility abbr {
  1236. border: none;
  1237. }
  1238. .entry-meta abbr:hover,
  1239. .entry-utility abbr:hover {
  1240. border-bottom: 1px dotted #666;
  1241. }
  1242. .entry-content,
  1243. .entry-summary {
  1244. clear: both;
  1245. padding: 18px 0 20px;
  1246. }
  1247. .entry-guestbook {
  1248. clear: both;
  1249. padding: 3px 0 10px 0;
  1250. }
  1251. .entry-content p {
  1252. font-family: "Computer Modern";
  1253. }
  1254. .entry-content h5 {
  1255. font: 14px "Courier New", Courier, mono;
  1256. }
  1257. .signature {
  1258. float: right;
  1259. margin: 10px 150px 40px 0px;
  1260. }
  1261. .bypostauthor {
  1262. }
  1263. #inside h3 {
  1264. font: 16px "Courier New", Courier, mono;
  1265. line-height: 10px;
  1266. margin: 0 0 10px 0;
  1267. }
  1268. #inside p {
  1269. margin: 0 0 10px 0;
  1270. line-height: 20px;
  1271. }
  1272. #content .entry-summary p:last-child {
  1273. margin-bottom: 12px;
  1274. }
  1275. .entry-content fieldset {
  1276. border: 1px solid #e7e7e7;
  1277. margin: 0 0 24px 0;
  1278. padding: 24px;
  1279. }
  1280. .entry-content fieldset legend {
  1281. background: #fff;
  1282. color: #000;
  1283. font-weight: bold;
  1284. padding: 0 24px;
  1285. }
  1286. .entry-content input {
  1287. margin: 0 0 20px 0;
  1288. }
  1289. .entry-content input.file,
  1290. .entry-content input.button {
  1291. margin-right: 24px;
  1292. }
  1293. .entry-content label {
  1294. color: #888;
  1295. font-size: 12px;
  1296. }
  1297. .entry-content select {
  1298. margin: 0 0 24px 0;
  1299. }
  1300. .entry-content sup,
  1301. .entry-content sub {
  1302. font-size: 10px;
  1303. }
  1304. .entry-content blockquote.left {
  1305. float: left;
  1306. margin-left: 0;
  1307. margin-right: 24px;
  1308. text-align: right;
  1309. width: 33%;
  1310. }
  1311. .entry-content blockquote.right {
  1312. float: right;
  1313. margin-left: 24px;
  1314. margin-right: 0;
  1315. text-align: left;
  1316. width: 33%;
  1317. }
  1318. .page-link {
  1319. color: #000;
  1320. font-weight: bold;
  1321. margin: 0 0 22px 0;
  1322. word-spacing: 0.5em;
  1323. }
  1324. .page-link a:link,
  1325. .page-link a:visited {
  1326. background: #f1f1f1;
  1327. color: #333;
  1328. font-weight: normal;
  1329. padding: 0.5em 0.75em;
  1330. text-decoration: none;
  1331. }
  1332. .home .sticky .page-link a {
  1333. background: #d9e8f7;
  1334. }
  1335. .page-link a:active,
  1336. .page-link a:hover {
  1337. color: #ff4b33;
  1338. }
  1339. body.page .edit-link {
  1340. clear: both;
  1341. display: block;
  1342. }
  1343. .entry-utility {
  1344. clear: both;
  1345. color: #888;
  1346. font-size: 12px;
  1347. line-height: 18px;
  1348. }
  1349. .entry-meta a,
  1350. .entry-utility a {
  1351. color: #888;
  1352. }
  1353. .entry-meta a:hover,
  1354. .entry-utility a:hover {
  1355. color: #ff4b33;
  1356. }
  1357. #content .video-player {
  1358. padding: 0;
  1359. }
  1360. .date {
  1361. float: right;
  1362. margin: 0px 0 20px 50px;
  1363. color: #777;
  1364. font: 14px/18px "Courier New", Courier, mono;
  1365. }
  1366. .front-date {
  1367. float: right;
  1368. margin: 0px 0 0px 40px;
  1369. color: #777;
  1370. font: 14px/18px "Courier New", Courier, mono;
  1371. }
  1372. #content ul li li {
  1373. padding: 0 0 0 20px;
  1374. }
  1375. .list-group-horizontal .list-group-item {
  1376. display: inline-block;
  1377. }
  1378. .list-group-horizontal .list-group-item {
  1379. margin-bottom: 0;
  1380. margin-left:-2px;
  1381. margin-right: 0;
  1382. }
  1383. .list-group-horizontal .list-group-item:first-child {
  1384. border-top-right-radius:0;
  1385. border-bottom-left-radius:4px;
  1386. }
  1387. .list-group-horizontal .list-group-item:last-child {
  1388. border-top-right-radius:4px;
  1389. border-bottom-left-radius:0;
  1390. }
  1391. /*============================================
  1392. Meta
  1393. ==============================================*/
  1394. .meta {
  1395. font-size: 11px;
  1396. }
  1397. .categories-fb {
  1398. text-align: right;
  1399. }
  1400. span.fb {
  1401. width: 16px;
  1402. height: 16px;
  1403. margin-left: 5px;
  1404. padding: 3px 4px 2px 5px;
  1405. background-image: url(img/fb1.png) ;
  1406. background-position: 0 16px;
  1407. position: relative;
  1408. -webkit-transition: all ease 0.3s;
  1409. -moz-transition: all ease 0.3s;
  1410. -o-transition: all ease 0.3s;
  1411. -ms-transition: all ease 0.3s;
  1412. transition: all ease 0.3s;
  1413. }
  1414. span.fb:hover {
  1415. background-position: 0 0;
  1416. }
  1417. /*============================================
  1418. Comments
  1419. ==============================================*/
  1420. #commentform input.error,
  1421. #commentform textarea.error {
  1422. background: #FFD2D2;
  1423. color:#000000;
  1424. }
  1425. #commentform .error {
  1426. color: #FF0000;
  1427. }
  1428. .commentbubble {
  1429. font-family:"CM Type";
  1430. font-size: 13px;
  1431. color: #777;
  1432. margin: 0px 15px 0 0;
  1433. }
  1434. .comment {
  1435. padding: 10px;
  1436. }
  1437. .commentbubble a.toogle-comments {
  1438. float: right;
  1439. text-align: right;
  1440. }
  1441. .comments-area {
  1442. background: rgba(242,242,242,.7);
  1443. padding: 15px;
  1444. margin: 60px 0 0 0;
  1445. }
  1446. #content .comments-area p {
  1447. margin: 0 0 8px;
  1448. font-size: 13px;
  1449. }
  1450. #content .comments-area .reply {
  1451. margin: 5px 8px 0px;
  1452. padding: 2px 9px;
  1453. background: rgba(242,242,242,.5);
  1454. font-size: 11px;
  1455. }
  1456. .comments-title {
  1457. margin-bottom: 48px;
  1458. margin-bottom: 3.428571429rem;
  1459. font-size: 16px;
  1460. font-size: 1.142857143rem;
  1461. line-height: 1.5;
  1462. font-weight: normal;
  1463. }
  1464. .comments-area ul {
  1465. margin: 0px 0px;
  1466. list-style: none;
  1467. }
  1468. .comments-area h3 {
  1469. margin: 0 0 0;
  1470. }
  1471. .comments-meta {
  1472. font-size: 10px;
  1473. }
  1474. .comments-area article {
  1475. margin: 24px 0;
  1476. }
  1477. .comments-area article header {
  1478. margin: 0 0 48px;
  1479. overflow: hidden;
  1480. position: relative;
  1481. }
  1482. .comments-area article header img {
  1483. float: left;
  1484. padding: 0;
  1485. line-height: 0;
  1486. }
  1487. .comments-area article header cite,
  1488. .comments-area article header time {
  1489. display: block;
  1490. margin-left: 85px;
  1491. }
  1492. .comments-area article header cite {
  1493. font-style: normal;
  1494. font-size: 15px;
  1495. }
  1496. .comments-area cite b {
  1497. font-weight: normal;
  1498. }
  1499. .comments-area article header time {
  1500. text-decoration: none;
  1501. font-size: 12px;
  1502. color: #5e5e5e;
  1503. }
  1504. .comments-area article header a {
  1505. text-decoration: none;
  1506. color: #5e5e5e;
  1507. }
  1508. .comments-area article header a:hover {
  1509. color: #21759b;
  1510. }
  1511. .comments-area article header cite a {
  1512. color: #444;
  1513. }
  1514. .comments-area article header cite a:hover {
  1515. text-decoration: underline;
  1516. }
  1517. a.comment-reply-link,
  1518. a.comment-edit-link {
  1519. color: #686868;
  1520. font-size: 13px;
  1521. }
  1522. a.comment-reply-link:hover,
  1523. a.comment-edit-link:hover {
  1524. color: #21759b;
  1525. }
  1526. .commentlist .pingback {
  1527. line-height: 1.714285714;
  1528. margin-bottom: 24px;
  1529. }
  1530. li.comment.even {
  1531. background: #fff;
  1532. }
  1533. li.comment.odd {
  1534. background: #f3f3f3;
  1535. }
  1536. li.comment.thread-even {
  1537. background: #f5f5f5;
  1538. }
  1539. li.comment.thread-odd {
  1540. background: #fff;
  1541. }
  1542. .comment-meta {
  1543. font-size: 11px;
  1544. line-height: 12px;
  1545. }
  1546. .comment-meta a {
  1547. color: #777;
  1548. float: right;
  1549. }
  1550. /*====== Comment form ======*/
  1551. #respond {
  1552. margin-top: 10px;
  1553. }
  1554. #respond h3#reply-title {
  1555. margin: 0px 8px 0px;
  1556. padding: 2px 9px;
  1557. font-size: 11px;
  1558. margin: 0;
  1559. }
  1560. #respond h3#reply-title #cancel-comment-reply-link {
  1561. margin-left: 10px;
  1562. font-weight: normal;
  1563. font-size: 12px;
  1564. font-size: 0.857142857rem;
  1565. }
  1566. #respond form {
  1567. margin: 24px 0;
  1568. margin: 1.714285714rem 0;
  1569. }
  1570. #respond form p {
  1571. margin: 11px 0;
  1572. margin: 0.785714286rem 0;
  1573. }
  1574. #respond form p.logged-in-as {
  1575. margin-bottom: 24px;
  1576. margin-bottom: 1.714285714rem;
  1577. }
  1578. #respond form label {
  1579. display: block;
  1580. line-height: 1.714285714;
  1581. }
  1582. #respond form input[type="text"],
  1583. #respond form textarea {
  1584. -moz-box-sizing: border-box;
  1585. box-sizing: border-box;
  1586. line-height: 1.714285714;
  1587. padding: 10px;
  1588. padding: 0.714285714rem;
  1589. width: 100%;
  1590. }
  1591. #respond form p.form-allowed-tags {
  1592. margin: 0;
  1593. font-size: 12px;
  1594. font-size: 0.857142857rem;
  1595. line-height: 2;
  1596. color: #5e5e5e;
  1597. }
  1598. .required {
  1599. color: red;
  1600. }
  1601. .form-submit {
  1602. display: none;
  1603. }
  1604. .comment-form-author,
  1605. .comment-form-email,
  1606. .comment-form-url {
  1607. width: 50%;
  1608. }
  1609. /*============================================
  1610. Media
  1611. ==============================================*/
  1612. .video-container {
  1613. position: relative;
  1614. padding-bottom: 56.25%;
  1615. padding-top: 30px; height: 0; overflow: hidden;
  1616. }
  1617. .video-container iframe,
  1618. .video-container object,
  1619. .video-container embed {
  1620. position: absolute;
  1621. top: 0;
  1622. left: 0;
  1623. width: 100%;
  1624. height: 100%;
  1625. }
  1626. .category-gallery .size-thumbnail img {
  1627. border: 10px solid #f1f1f1;
  1628. margin-bottom: 0;
  1629. }
  1630. .category-gallery .gallery-thumb {
  1631. float: left;
  1632. margin-right: 20px;
  1633. margin-top: -4px;
  1634. }
  1635. .home #content .category-gallery .entry-utility {
  1636. padding-top: 4px;
  1637. }
  1638. /*===== Attachments =====*/
  1639. .single-attachment .hentry {
  1640. margin: 0px;
  1641. }
  1642. .attachment .entry-content .entry-caption {
  1643. font-size: 140%;
  1644. margin-top: 24px;
  1645. }
  1646. .entry-caption-attachment {
  1647. margin: 0px auto 0;
  1648. text-align: center;
  1649. }
  1650. #content .entry-caption-attachment h2.entry-title {
  1651. margin: 0 0 5px;
  1652. font-weight: normal;
  1653. }
  1654. #content .entry-caption-parent p.page-title {
  1655. margin: -30px 0 0 0;
  1656. font: normal 13px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  1657. }
  1658. #content .entry-caption-parent p.page-title a {
  1659. color: #555;
  1660. }
  1661. #content .entry-caption-attachment p {
  1662. font-size: 14px;
  1663. text-indent: 0px;
  1664. line-height: 15px;
  1665. margin-bottom: 0px;
  1666. }
  1667. .entry-caption-attachment h2 {
  1668. font: bold 27px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  1669. }
  1670. .attachment .entry-content .nav-previous a:before {
  1671. content: '\2190\00a0';
  1672. }
  1673. .attachment .entry-content .nav-next a:after {
  1674. content: '\00a0\2192';
  1675. }
  1676. /*===== Images ======*/
  1677. img.avatar {
  1678. width: 50px;
  1679. height: 50px;
  1680. -webkit-border-radius: 30px;
  1681. -moz-border-radius: 30px;
  1682. border-radius: 30px;
  1683. }
  1684. img.me {
  1685. height: 80px;
  1686. margin: 0 10px;
  1687. float: left;
  1688. -webkit-border-radius: 50%;
  1689. -moz-border-radius: 50%;
  1690. border-radius: 50%;
  1691. -webkit-filter: grayscale(1);
  1692. filter:grayscale(1);
  1693. }
  1694. .entry-content img {
  1695. max-width: 100%;
  1696. height: auto;
  1697. }
  1698. .img-rounded {
  1699. border-radius: 6px;
  1700. }
  1701. .img-thumbnail {
  1702. padding: 4px;
  1703. line-height: 1.42857143;
  1704. background-color: #ffffff;
  1705. border: 1px solid #dddddd;
  1706. border-radius: 4px;
  1707. -webkit-transition: all 0.2s ease-in-out;
  1708. -o-transition: all 0.2s ease-in-out;
  1709. transition: all 0.2s ease-in-out;
  1710. display: inline-block;
  1711. width: 100% \9;
  1712. max-width: 100%;
  1713. height: auto;
  1714. }
  1715. .img-circle {
  1716. border-radius: 50%;
  1717. }
  1718. #content .home img {
  1719. border: 15px solid #000;
  1720. }
  1721. #content .attachment img {
  1722. max-width: 900px;
  1723. }
  1724. #content .alignleft,
  1725. #content img.alignleft {
  1726. display: inline;
  1727. float: left;
  1728. margin-right: 24px;
  1729. margin-top: 4px;
  1730. }
  1731. #content .alignright,
  1732. #content img.alignright {
  1733. display: inline;
  1734. float: right;
  1735. margin-left: 24px;
  1736. margin-top: 4px;
  1737. }
  1738. #content .aligncenter,
  1739. #content img.aligncenter {
  1740. clear: both;
  1741. display: block;
  1742. margin-left: auto;
  1743. margin-right: auto;
  1744. }
  1745. #content img.alignleft,
  1746. #content img.alignright,
  1747. #content img.aligncenter {
  1748. margin-bottom: 12px;
  1749. }
  1750. #content .wp-caption {
  1751. background: #f1f1f1;
  1752. line-height: 18px;
  1753. margin-bottom: 20px;
  1754. padding: 4px;
  1755. text-align: center;
  1756. }
  1757. #content .wp-caption img {
  1758. margin: 5px 5px 0;
  1759. }
  1760. #content .wp-caption p.wp-caption-text {
  1761. color: #888;
  1762. font-size: 12px;
  1763. margin: 5px;
  1764. }
  1765. #content .gallery {
  1766. margin: 0 auto 18px;
  1767. }
  1768. #content .gallery .gallery-item {
  1769. float: left;
  1770. margin-top: 0;
  1771. text-align: center;
  1772. width: 33%;
  1773. }
  1774. #content .gallery img {
  1775. border: 2px solid #cfcfcf;
  1776. }
  1777. #content .gallery .gallery-caption {
  1778. color: #888;
  1779. font-size: 12px;
  1780. margin: 0 0 12px;
  1781. }
  1782. #content .gallery dl {
  1783. margin: 0;
  1784. }
  1785. #content .gallery img {
  1786. border: 10px solid #f1f1f1;
  1787. }
  1788. #content .gallery br+br {
  1789. display: none;
  1790. }
  1791. #content .attachment img {
  1792. display: block;
  1793. margin: 0 auto;
  1794. }
  1795. /*============================================
  1796. Pagination
  1797. ==============================================*/
  1798. .navigation {
  1799. color: #888;
  1800. font-size: 12px;
  1801. line-height: 18px;
  1802. overflow: hidden;
  1803. clear: both;
  1804. }
  1805. .navigation a:link,
  1806. .navigation a:visited {
  1807. color: #888;
  1808. text-decoration: none;
  1809. }
  1810. .navigation a:active,
  1811. .navigation a:hover {
  1812. color: #ff4b33;
  1813. }
  1814. .nav-previous {
  1815. float: left;
  1816. width: 50%;
  1817. margin: 0 0 15px 0;
  1818. }
  1819. .nav-next {
  1820. float: right;
  1821. text-align: right;
  1822. width: 50%;
  1823. }
  1824. #nav-above {
  1825. margin: 0 0 18px 0;
  1826. }
  1827. #nav-above {
  1828. display: none;
  1829. }
  1830. .paged #nav-above,
  1831. .single #nav-above {
  1832. display: block;
  1833. }
  1834. #nav-below {
  1835. margin: 50px 0 0px;
  1836. padding: 20px 10px 0;
  1837. border-top: 1px solid #cecece;
  1838. }
  1839. .pagination {
  1840. margin-top: 40px;
  1841. border-top: 1px solid #cecece;
  1842. padding: 20px 0 0;
  1843. }
  1844. .pagination a {
  1845. padding: 4px 5px;
  1846. color: #fff;
  1847. font-weight: bold;
  1848. font-size: 16px;
  1849. }
  1850. .pagination a:active {
  1851. padding: 4px 5px;
  1852. background: #707071;
  1853. color:#fff;
  1854. }
  1855. .pagination a:hover {
  1856. padding: 4px 5px;
  1857. background: #fff;
  1858. color: #ec0000;
  1859. }
  1860. .pagination a.next,
  1861. .pagination a.prev {
  1862. padding: 4px 7px;
  1863. color: #ec0000;
  1864. font-weight: bold;
  1865. font-size: 27px;
  1866. }
  1867. .pagination .current {
  1868. padding: 4px 5px;
  1869. background: #fff;
  1870. color: #ec0000;
  1871. font-weight: bold;
  1872. font-size: 16px;
  1873. }
  1874. /*============================================
  1875. Footer
  1876. ==============================================*/
  1877. /*============================================
  1878. Forms
  1879. ==============================================*/
  1880. .text-field {
  1881. width: 50%;
  1882. float: left;
  1883. display: block;
  1884. -webkit-box-sizing: border-box;
  1885. -moz-box-sizing: border-box;
  1886. box-sizing: border-box;
  1887. position: relative;
  1888. }
  1889. .text-field > strong {
  1890. display: block;
  1891. font-weight: bold;
  1892. color: white;
  1893. font-size: 0.85em;
  1894. margin-top: -3px;
  1895. }
  1896. .text-field > strong > i {
  1897. font-weight: normal;
  1898. font-style: italic;
  1899. font-family: playfair display, serif;
  1900. font-size: 0.9em;
  1901. opacity: 0.8;
  1902. }
  1903. .text-field .req {
  1904. position: relative;
  1905. top: 4px;
  1906. left: 4px;
  1907. color: #1a8;
  1908. opacity: 0.5;
  1909. }
  1910. .text-field [type='email'],
  1911. .text-field [type='text'] {
  1912. -webkit-box-sizing: border-box;
  1913. -moz-box-sizing: border-box;
  1914. box-sizing: border-box;
  1915. -webkit-transition: all 200ms linear;
  1916. transition: all 200ms linear;
  1917. }
  1918. .text-field [type='email']::-webkit-input-placeholder,
  1919. .text-field [type='text']::-webkit-input-placeholder {
  1920. color: rgba(250, 250, 250, 0.2);
  1921. font-weight: normal;
  1922. }
  1923. .text-field [type='email']::-moz-placeholder,
  1924. .text-field [type='text']::-moz-placeholder {
  1925. color: rgba(250, 250, 250, 0.2);
  1926. font-weight: normal;
  1927. }
  1928. .text-field [type='email']:-ms-input-placeholder,
  1929. .text-field [type='text']:-ms-input-placeholder {
  1930. color: rgba(250, 250, 250, 0.2);
  1931. font-weight: normal;
  1932. }
  1933. .text-field [type='email']::placeholder,
  1934. .text-field [type='text']::placeholder {
  1935. color: rgba(250, 250, 250, 0.2);
  1936. font-weight: normal;
  1937. }
  1938. .text-field [type='email'],
  1939. .text-field [type='text'] {
  1940. background: transparent;
  1941. border: 0;
  1942. padding: 5px 0;
  1943. border-bottom: solid 1px rgba(250, 250, 250, 0.2);
  1944. margin: 5px 5px 5px 0;
  1945. color: #1d8;
  1946. font-weight: bold;
  1947. }
  1948. .text-field [type='email']:hover,
  1949. .text-field [type='text']:hover {
  1950. border-bottom-color: rgba(250, 250, 250, 0.5);
  1951. outline: 0;
  1952. }
  1953. .text-field [type='email']:focus,
  1954. .text-field [type='text']:focus {
  1955. color: #1d8;
  1956. border-bottom-color: #1d8;
  1957. outline: 0;
  1958. }
  1959. @media (min-width: 768px) {
  1960. .text-field [type='email'],
  1961. .text-field [type='text'] {
  1962. width: 92%;
  1963. }
  1964. }
  1965. form .actions button{
  1966. margin: 20px 0;
  1967. }
  1968. /*============================================
  1969. Music
  1970. ==============================================*/
  1971. .albums {
  1972. position: relative;
  1973. }
  1974. .albums:after {
  1975. content: "";
  1976. display: table;
  1977. clear: both;
  1978. }
  1979. .album {
  1980. float: left;
  1981. height: auto;
  1982. position: relative;
  1983. font-size: 12px;
  1984. -webkit-transition: -webkit-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1985. -moz-transition: -moz-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1986. -ms-transition: -ms-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1987. -o-transition: -o-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1988. transition: transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1989. -webkit-perspective: 600px;
  1990. perspective: 600px;
  1991. }
  1992. .album img {
  1993. width: 100%;
  1994. height: auto;
  1995. }
  1996. .album h1, .album h2, .album h3 {
  1997. font-size: 13px;
  1998. line-height: 15px;
  1999. }
  2000. .album .front, .album .back {
  2001. float: none;
  2002. width: 100%;
  2003. height: auto;
  2004. -webkit-transform-style: preserve-3d;
  2005. transform-style: preserve-3d;
  2006. -webkit-transition: -webkit-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  2007. -moz-transition: -moz-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  2008. -ms-transition: -ms-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  2009. -o-transition: -o-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  2010. transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  2011. }
  2012. .album .front {
  2013. z-index: 1;
  2014. -webkit-transform: rotateY(0deg);
  2015. -moz-transform: rotateY(0deg);
  2016. -ms-transform: rotateY(0deg);
  2017. -o-transform: rotateY(0deg);
  2018. transform: rotateY(0deg);
  2019. }
  2020. .album .front .alpha {
  2021. -webkit-transition: opacity 0.4s ease-in-out;
  2022. -moz-transition: opacity 0.4s ease-in-out;
  2023. -ms-transition: opacity 0.4s ease-in-out;
  2024. -o-transition: opacity 0.4s ease-in-out;
  2025. transition: opacity 0.4s ease-in-out;
  2026. display: block;
  2027. content: '';
  2028. height: 100%;
  2029. width: 100%;
  2030. position: absolute;
  2031. top: 0;
  2032. left: 0;
  2033. background: rgba(255, 255, 255, 0.85);
  2034. opacity: 0;
  2035. }
  2036. .album .back {
  2037. position: absolute;
  2038. top: 0;
  2039. left: 0;
  2040. z-index: 0;
  2041. text-align: center;
  2042. font-family: sans-serif;
  2043. padding: 10px;
  2044. opacity: 0;
  2045. -webkit-box-sizing: border-box;
  2046. -moz-box-sizing: border-box;
  2047. box-sizing: border-box;
  2048. -webkit-backface-visibility: hidden;
  2049. backface-visibility: hidden;
  2050. -webkit-transform: rotateY(-180deg);
  2051. -moz-transform: rotateY(-180deg);
  2052. -ms-transform: rotateY(-180deg);
  2053. -o-transform: rotateY(-180deg);
  2054. transform: rotateY(-180deg);
  2055. }
  2056. .album.flip {
  2057. -webkit-transform: scale(1.1, 1.1);
  2058. -moz-transform: scale(1.1, 1.1);
  2059. -ms-transform: scale(1.1, 1.1);
  2060. -o-transform: scale(1.1, 1.1);
  2061. transform: scale(1.1, 1.1);
  2062. z-index: 10;
  2063. }
  2064. .album.flip .front {
  2065. -webkit-transform: rotateY(180deg);
  2066. -moz-transform: rotateY(180deg);
  2067. -ms-transform: rotateY(180deg);
  2068. -o-transform: rotateY(180deg);
  2069. transform: rotateY(180deg);
  2070. }
  2071. .album.flip .front .alpha {
  2072. opacity: 1;
  2073. }
  2074. .album.flip .back {
  2075. z-index: 2;
  2076. opacity: 1;
  2077. -webkit-transform: rotateY(0deg);
  2078. -moz-transform: rotateY(0deg);
  2079. -ms-transform: rotateY(0deg);
  2080. -o-transform: rotateY(0deg);
  2081. transform: rotateY(0deg);
  2082. }
  2083. .album {
  2084. width: 20%;
  2085. -webkit-text-size-adjust: none;
  2086. }
  2087. #music li.list-group-item {
  2088. padding: 5px 15px;
  2089. font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  2090. font-size: 12px;
  2091. }
  2092. #music.entry-content ul {
  2093. margin:0 0 24px;
  2094. }
  2095. @media screen and (max-width: 768px) {
  2096. .album h1, .album h2, .album h3 {
  2097. font-size: 13px;
  2098. line-height: 15px;
  2099. }
  2100. .album {
  2101. width: 25%;
  2102. }
  2103. }
  2104. @media screen and (min-width: 992px) {
  2105. .album h1, .album h2, .album h3 {
  2106. font-size: 15px;
  2107. line-height: 17px;
  2108. }
  2109. }
  2110. .doughnut-legend li span {
  2111. display: block;
  2112. width: 14px;
  2113. height: 14px;
  2114. border-radius: 7px;
  2115. float: left;
  2116. margin-top: 4px;
  2117. margin-right: 8px;
  2118. }
  2119. .doughnut-legend {
  2120. font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  2121. list-style: none;
  2122. margin: 0;
  2123. padding: 0;
  2124. font-size: 14px;
  2125. margin-top : 20px;
  2126. }
  2127. div#player{
  2128. width: 100%;
  2129. color: #555555;
  2130. font-family: 'PT Sans', sans-serif;
  2131. font-weight: 700;
  2132. font-size: 12px;
  2133. }
  2134. #song-information{
  2135. text-align: left;
  2136. margin: 0 0 10px;
  2137. }
  2138. #controls{
  2139. float: left;
  2140. }
  2141. #amplitude-volume-slider{
  2142. width: 90%;
  2143. float: right;
  2144. }
  2145. #amplitude-play-pause{
  2146. width: 15px;
  2147. height: 17px;
  2148. margin: 0 5px 0 0;
  2149. cursor: pointer;
  2150. float: right;
  2151. }
  2152. #amplitude-current-time{
  2153. font-family: 'PT Sans', sans-serif;
  2154. font-size: 14px;
  2155. font-weight: 400;
  2156. }
  2157. .amplitude-paused{
  2158. background-image: url('img/small-gray-play.png');
  2159. background-repeat: no-repeat;
  2160. }
  2161. .amplitude-playing{
  2162. background-image: url('img/small-gray-pause.png');
  2163. background-repeat: no-repeat;
  2164. }
  2165. #amplitude-now-playing-name{
  2166. }
  2167. #amplitude-now-playing-listeners{
  2168. }
  2169. #amplitude-now-playing-bitrate{
  2170. }
  2171. /*============================================
  2172. Font Awesome
  2173. ==============================================*/
  2174. @font-face {
  2175. font-family: 'FontAwesome';
  2176. src: url('fonts/fontawesome-webfont.eot?v=4.2.0');
  2177. src: url('fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'),
  2178. url('fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'),
  2179. url('fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'),
  2180. url('fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
  2181. font-weight: normal;
  2182. font-style: normal;
  2183. }
  2184. .fa {
  2185. display: inline-block;
  2186. font: normal normal normal 14px/1 FontAwesome;
  2187. font-size: inherit;
  2188. text-rendering: auto;
  2189. -webkit-font-smoothing: antialiased;
  2190. -moz-osx-font-smoothing: grayscale;
  2191. }
  2192. /* makes the font 33% larger relative to the icon container */
  2193. .fa-lg {
  2194. font-size: 1.33333333em;
  2195. line-height: 0.75em;
  2196. vertical-align: -15%;
  2197. }
  2198. .fa-2x {
  2199. font-size: 2em;
  2200. }
  2201. .fa-3x {
  2202. font-size: 3em;
  2203. }
  2204. .fa-4x {
  2205. font-size: 4em;
  2206. }
  2207. .fa-5x {
  2208. font-size: 5em;
  2209. }
  2210. .fa-fw {
  2211. width: 1.28571429em;
  2212. text-align: center;
  2213. }
  2214. .fa-ul {
  2215. padding-left: 0;
  2216. margin-left: 2.14285714em;
  2217. list-style-type: none;
  2218. }
  2219. .fa-ul > li {
  2220. position: relative;
  2221. }
  2222. .fa-li {
  2223. position: absolute;
  2224. left: -2.14285714em;
  2225. width: 2.14285714em;
  2226. top: 0.14285714em;
  2227. text-align: center;
  2228. }
  2229. .fa-li.fa-lg {
  2230. left: -1.85714286em;
  2231. }
  2232. .fa-border {
  2233. padding: .2em .25em .15em;
  2234. border: solid 0.08em #eeeeee;
  2235. border-radius: .1em;
  2236. }
  2237. .pull-right {
  2238. float: right;
  2239. }
  2240. .pull-left {
  2241. float: left;
  2242. }
  2243. .fa.pull-left {
  2244. margin-right: .3em;
  2245. }
  2246. .fa.pull-right {
  2247. margin-left: .3em;
  2248. }
  2249. .fa-spin {
  2250. -webkit-animation: fa-spin 2s infinite linear;
  2251. animation: fa-spin 2s infinite linear;
  2252. }
  2253. @-webkit-keyframes fa-spin {
  2254. 0% {
  2255. -webkit-transform: rotate(0deg);
  2256. transform: rotate(0deg);
  2257. }
  2258. 100% {
  2259. -webkit-transform: rotate(359deg);
  2260. transform: rotate(359deg);
  2261. }
  2262. }
  2263. @keyframes fa-spin {
  2264. 0% {
  2265. -webkit-transform: rotate(0deg);
  2266. transform: rotate(0deg);
  2267. }
  2268. 100% {
  2269. -webkit-transform: rotate(359deg);
  2270. transform: rotate(359deg);
  2271. }
  2272. }
  2273. .fa-rotate-90 {
  2274. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  2275. -webkit-transform: rotate(90deg);
  2276. -ms-transform: rotate(90deg);
  2277. transform: rotate(90deg);
  2278. }
  2279. .fa-rotate-180 {
  2280. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  2281. -webkit-transform: rotate(180deg);
  2282. -ms-transform: rotate(180deg);
  2283. transform: rotate(180deg);
  2284. }
  2285. .fa-rotate-270 {
  2286. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  2287. -webkit-transform: rotate(270deg);
  2288. -ms-transform: rotate(270deg);
  2289. transform: rotate(270deg);
  2290. }
  2291. .fa-flip-horizontal {
  2292. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  2293. -webkit-transform: scale(-1, 1);
  2294. -ms-transform: scale(-1, 1);
  2295. transform: scale(-1, 1);
  2296. }
  2297. .fa-flip-vertical {
  2298. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  2299. -webkit-transform: scale(1, -1);
  2300. -ms-transform: scale(1, -1);
  2301. transform: scale(1, -1);
  2302. }
  2303. :root .fa-rotate-90,
  2304. :root .fa-rotate-180,
  2305. :root .fa-rotate-270,
  2306. :root .fa-flip-horizontal,
  2307. :root .fa-flip-vertical {
  2308. filter: none;
  2309. }
  2310. .fa-stack {
  2311. position: relative;
  2312. display: inline-block;
  2313. width: 2em;
  2314. height: 2em;
  2315. line-height: 2em;
  2316. vertical-align: middle;
  2317. }
  2318. .fa-stack-1x,
  2319. .fa-stack-2x {
  2320. position: absolute;
  2321. left: 0;
  2322. width: 100%;
  2323. text-align: center;
  2324. }
  2325. .fa-stack-1x {
  2326. line-height: inherit;
  2327. }
  2328. .fa-stack-2x {
  2329. font-size: 2em;
  2330. }
  2331. .fa-inverse {
  2332. color: #ffffff;
  2333. }
  2334. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  2335. readers do not read off random characters that represent icons */
  2336. .fa-glass:before {
  2337. content: "\f000";
  2338. }
  2339. .fa-music:before {
  2340. content: "\f001";
  2341. }
  2342. .fa-search:before {
  2343. content: "\f002";
  2344. }
  2345. .fa-envelope-o:before {
  2346. content: "\f003";
  2347. }
  2348. .fa-heart:before {
  2349. content: "\f004";
  2350. }
  2351. .fa-star:before {
  2352. content: "\f005";
  2353. }
  2354. .fa-star-o:before {
  2355. content: "\f006";
  2356. }
  2357. .fa-user:before {
  2358. content: "\f007";
  2359. }
  2360. .fa-film:before {
  2361. content: "\f008";
  2362. }
  2363. .fa-th-large:before {
  2364. content: "\f009";
  2365. }
  2366. .fa-th:before {
  2367. content: "\f00a";
  2368. }
  2369. .fa-th-list:before {
  2370. content: "\f00b";
  2371. }
  2372. .fa-check:before {
  2373. content: "\f00c";
  2374. }
  2375. .fa-remove:before,
  2376. .fa-close:before,
  2377. .fa-times:before {
  2378. content: "\f00d";
  2379. }
  2380. .fa-search-plus:before {
  2381. content: "\f00e";
  2382. }
  2383. .fa-search-minus:before {
  2384. content: "\f010";
  2385. }
  2386. .fa-power-off:before {
  2387. content: "\f011";
  2388. }
  2389. .fa-signal:before {
  2390. content: "\f012";
  2391. }
  2392. .fa-gear:before,
  2393. .fa-cog:before {
  2394. content: "\f013";
  2395. }
  2396. .fa-trash-o:before {
  2397. content: "\f014";
  2398. }
  2399. .fa-home:before {
  2400. content: "\f015";
  2401. }
  2402. .fa-file-o:before {
  2403. content: "\f016";
  2404. }
  2405. .fa-clock-o:before {
  2406. content: "\f017";
  2407. }
  2408. .fa-road:before {
  2409. content: "\f018";
  2410. }
  2411. .fa-download:before {
  2412. content: "\f019";
  2413. }
  2414. .fa-arrow-circle-o-down:before {
  2415. content: "\f01a";
  2416. }
  2417. .fa-arrow-circle-o-up:before {
  2418. content: "\f01b";
  2419. }
  2420. .fa-inbox:before {
  2421. content: "\f01c";
  2422. }
  2423. .fa-play-circle-o:before {
  2424. content: "\f01d";
  2425. }
  2426. .fa-rotate-right:before,
  2427. .fa-repeat:before {
  2428. content: "\f01e";
  2429. }
  2430. .fa-refresh:before {
  2431. content: "\f021";
  2432. }
  2433. .fa-list-alt:before {
  2434. content: "\f022";
  2435. }
  2436. .fa-lock:before {
  2437. content: "\f023";
  2438. }
  2439. .fa-flag:before {
  2440. content: "\f024";
  2441. }
  2442. .fa-headphones:before {
  2443. content: "\f025";
  2444. }
  2445. .fa-volume-off:before {
  2446. content: "\f026";
  2447. }
  2448. .fa-volume-down:before {
  2449. content: "\f027";
  2450. }
  2451. .fa-volume-up:before {
  2452. content: "\f028";
  2453. }
  2454. .fa-qrcode:before {
  2455. content: "\f029";
  2456. }
  2457. .fa-barcode:before {
  2458. content: "\f02a";
  2459. }
  2460. .fa-tag:before {
  2461. content: "\f02b";
  2462. }
  2463. .fa-tags:before {
  2464. content: "\f02c";
  2465. }
  2466. .fa-book:before {
  2467. content: "\f02d";
  2468. }
  2469. .fa-bookmark:before {
  2470. content: "\f02e";
  2471. }
  2472. .fa-print:before {
  2473. content: "\f02f";
  2474. }
  2475. .fa-camera:before {
  2476. content: "\f030";
  2477. }
  2478. .fa-font:before {
  2479. content: "\f031";
  2480. }
  2481. .fa-bold:before {
  2482. content: "\f032";
  2483. }
  2484. .fa-italic:before {
  2485. content: "\f033";
  2486. }
  2487. .fa-text-height:before {
  2488. content: "\f034";
  2489. }
  2490. .fa-text-width:before {
  2491. content: "\f035";
  2492. }
  2493. .fa-align-left:before {
  2494. content: "\f036";
  2495. }
  2496. .fa-align-center:before {
  2497. content: "\f037";
  2498. }
  2499. .fa-align-right:before {
  2500. content: "\f038";
  2501. }
  2502. .fa-align-justify:before {
  2503. content: "\f039";
  2504. }
  2505. .fa-list:before {
  2506. content: "\f03a";
  2507. }
  2508. .fa-dedent:before,
  2509. .fa-outdent:before {
  2510. content: "\f03b";
  2511. }
  2512. .fa-indent:before {
  2513. content: "\f03c";
  2514. }
  2515. .fa-video-camera:before {
  2516. content: "\f03d";
  2517. }
  2518. .fa-photo:before,
  2519. .fa-image:before,
  2520. .fa-picture-o:before {
  2521. content: "\f03e";
  2522. }
  2523. .fa-pencil:before {
  2524. content: "\f040";
  2525. }
  2526. .fa-map-marker:before {
  2527. content: "\f041";
  2528. }
  2529. .fa-adjust:before {
  2530. content: "\f042";
  2531. }
  2532. .fa-tint:before {
  2533. content: "\f043";
  2534. }
  2535. .fa-edit:before,
  2536. .fa-pencil-square-o:before {
  2537. content: "\f044";
  2538. }
  2539. .fa-share-square-o:before {
  2540. content: "\f045";
  2541. }
  2542. .fa-check-square-o:before {
  2543. content: "\f046";
  2544. }
  2545. .fa-arrows:before {
  2546. content: "\f047";
  2547. }
  2548. .fa-step-backward:before {
  2549. content: "\f048";
  2550. }
  2551. .fa-fast-backward:before {
  2552. content: "\f049";
  2553. }
  2554. .fa-backward:before {
  2555. content: "\f04a";
  2556. }
  2557. .fa-play:before {
  2558. content: "\f04b";
  2559. }
  2560. .fa-pause:before {
  2561. content: "\f04c";
  2562. }
  2563. .fa-stop:before {
  2564. content: "\f04d";
  2565. }
  2566. .fa-forward:before {
  2567. content: "\f04e";
  2568. }
  2569. .fa-fast-forward:before {
  2570. content: "\f050";
  2571. }
  2572. .fa-step-forward:before {
  2573. content: "\f051";
  2574. }
  2575. .fa-eject:before {
  2576. content: "\f052";
  2577. }
  2578. .fa-chevron-left:before {
  2579. content: "\f053";
  2580. }
  2581. .fa-chevron-right:before {
  2582. content: "\f054";
  2583. }
  2584. .fa-plus-circle:before {
  2585. content: "\f055";
  2586. }
  2587. .fa-minus-circle:before {
  2588. content: "\f056";
  2589. }
  2590. .fa-times-circle:before {
  2591. content: "\f057";
  2592. }
  2593. .fa-check-circle:before {
  2594. content: "\f058";
  2595. }
  2596. .fa-question-circle:before {
  2597. content: "\f059";
  2598. }
  2599. .fa-info-circle:before {
  2600. content: "\f05a";
  2601. }
  2602. .fa-crosshairs:before {
  2603. content: "\f05b";
  2604. }
  2605. .fa-times-circle-o:before {
  2606. content: "\f05c";
  2607. }
  2608. .fa-check-circle-o:before {
  2609. content: "\f05d";
  2610. }
  2611. .fa-ban:before {
  2612. content: "\f05e";
  2613. }
  2614. .fa-arrow-left:before {
  2615. content: "\f060";
  2616. }
  2617. .fa-arrow-right:before {
  2618. content: "\f061";
  2619. }
  2620. .fa-arrow-up:before {
  2621. content: "\f062";
  2622. }
  2623. .fa-arrow-down:before {
  2624. content: "\f063";
  2625. }
  2626. .fa-mail-forward:before,
  2627. .fa-share:before {
  2628. content: "\f064";
  2629. }
  2630. .fa-expand:before {
  2631. content: "\f065";
  2632. }
  2633. .fa-compress:before {
  2634. content: "\f066";
  2635. }
  2636. .fa-plus:before {
  2637. content: "\f067";
  2638. }
  2639. .fa-minus:before {
  2640. content: "\f068";
  2641. }
  2642. .fa-asterisk:before {
  2643. content: "\f069";
  2644. }
  2645. .fa-exclamation-circle:before {
  2646. content: "\f06a";
  2647. }
  2648. .fa-gift:before {
  2649. content: "\f06b";
  2650. }
  2651. .fa-leaf:before {
  2652. content: "\f06c";
  2653. }
  2654. .fa-fire:before {
  2655. content: "\f06d";
  2656. }
  2657. .fa-eye:before {
  2658. content: "\f06e";
  2659. }
  2660. .fa-eye-slash:before {
  2661. content: "\f070";
  2662. }
  2663. .fa-warning:before,
  2664. .fa-exclamation-triangle:before {
  2665. content: "\f071";
  2666. }
  2667. .fa-plane:before {
  2668. content: "\f072";
  2669. }
  2670. .fa-calendar:before {
  2671. content: "\f073";
  2672. }
  2673. .fa-random:before {
  2674. content: "\f074";
  2675. }
  2676. .fa-comment:before {
  2677. content: "\f075";
  2678. }
  2679. .fa-magnet:before {
  2680. content: "\f076";
  2681. }
  2682. .fa-chevron-up:before {
  2683. content: "\f077";
  2684. }
  2685. .fa-chevron-down:before {
  2686. content: "\f078";
  2687. }
  2688. .fa-retweet:before {
  2689. content: "\f079";
  2690. }
  2691. .fa-shopping-cart:before {
  2692. content: "\f07a";
  2693. }
  2694. .fa-folder:before {
  2695. content: "\f07b";
  2696. }
  2697. .fa-folder-open:before {
  2698. content: "\f07c";
  2699. }
  2700. .fa-arrows-v:before {
  2701. content: "\f07d";
  2702. }
  2703. .fa-arrows-h:before {
  2704. content: "\f07e";
  2705. }
  2706. .fa-bar-chart-o:before,
  2707. .fa-bar-chart:before {
  2708. content: "\f080";
  2709. }
  2710. .fa-twitter-square:before {
  2711. content: "\f081";
  2712. }
  2713. .fa-facebook-square:before {
  2714. content: "\f082";
  2715. }
  2716. .fa-camera-retro:before {
  2717. content: "\f083";
  2718. }
  2719. .fa-key:before {
  2720. content: "\f084";
  2721. }
  2722. .fa-gears:before,
  2723. .fa-cogs:before {
  2724. content: "\f085";
  2725. }
  2726. .fa-comments:before {
  2727. content: "\f086";
  2728. }
  2729. .fa-thumbs-o-up:before {
  2730. content: "\f087";
  2731. }
  2732. .fa-thumbs-o-down:before {
  2733. content: "\f088";
  2734. }
  2735. .fa-star-half:before {
  2736. content: "\f089";
  2737. }
  2738. .fa-heart-o:before {
  2739. content: "\f08a";
  2740. }
  2741. .fa-sign-out:before {
  2742. content: "\f08b";
  2743. }
  2744. .fa-linkedin-square:before {
  2745. content: "\f08c";
  2746. }
  2747. .fa-thumb-tack:before {
  2748. content: "\f08d";
  2749. }
  2750. .fa-external-link:before {
  2751. content: "\f08e";
  2752. }
  2753. .fa-sign-in:before {
  2754. content: "\f090";
  2755. }
  2756. .fa-trophy:before {
  2757. content: "\f091";
  2758. }
  2759. .fa-github-square:before {
  2760. content: "\f092";
  2761. }
  2762. .fa-upload:before {
  2763. content: "\f093";
  2764. }
  2765. .fa-lemon-o:before {
  2766. content: "\f094";
  2767. }
  2768. .fa-phone:before {
  2769. content: "\f095";
  2770. }
  2771. .fa-square-o:before {
  2772. content: "\f096";
  2773. }
  2774. .fa-bookmark-o:before {
  2775. content: "\f097";
  2776. }
  2777. .fa-phone-square:before {
  2778. content: "\f098";
  2779. }
  2780. .fa-twitter:before {
  2781. content: "\f099";
  2782. }
  2783. .fa-facebook:before {
  2784. content: "\f09a";
  2785. }
  2786. .fa-github:before {
  2787. content: "\f09b";
  2788. }
  2789. .fa-unlock:before {
  2790. content: "\f09c";
  2791. }
  2792. .fa-credit-card:before {
  2793. content: "\f09d";
  2794. }
  2795. .fa-rss:before {
  2796. content: "\f09e";
  2797. }
  2798. .fa-hdd-o:before {
  2799. content: "\f0a0";
  2800. }
  2801. .fa-bullhorn:before {
  2802. content: "\f0a1";
  2803. }
  2804. .fa-bell:before {
  2805. content: "\f0f3";
  2806. }
  2807. .fa-certificate:before {
  2808. content: "\f0a3";
  2809. }
  2810. .fa-hand-o-right:before {
  2811. content: "\f0a4";
  2812. }
  2813. .fa-hand-o-left:before {
  2814. content: "\f0a5";
  2815. }
  2816. .fa-hand-o-up:before {
  2817. content: "\f0a6";
  2818. }
  2819. .fa-hand-o-down:before {
  2820. content: "\f0a7";
  2821. }
  2822. .fa-arrow-circle-left:before {
  2823. content: "\f0a8";
  2824. }
  2825. .fa-arrow-circle-right:before {
  2826. content: "\f0a9";
  2827. }
  2828. .fa-arrow-circle-up:before {
  2829. content: "\f0aa";
  2830. }
  2831. .fa-arrow-circle-down:before {
  2832. content: "\f0ab";
  2833. }
  2834. .fa-globe:before {
  2835. content: "\f0ac";
  2836. }
  2837. .fa-wrench:before {
  2838. content: "\f0ad";
  2839. }
  2840. .fa-tasks:before {
  2841. content: "\f0ae";
  2842. }
  2843. .fa-filter:before {
  2844. content: "\f0b0";
  2845. }
  2846. .fa-briefcase:before {
  2847. content: "\f0b1";
  2848. }
  2849. .fa-arrows-alt:before {
  2850. content: "\f0b2";
  2851. }
  2852. .fa-group:before,
  2853. .fa-users:before {
  2854. content: "\f0c0";
  2855. }
  2856. .fa-chain:before,
  2857. .fa-link:before {
  2858. content: "\f0c1";
  2859. }
  2860. .fa-cloud:before {
  2861. content: "\f0c2";
  2862. }
  2863. .fa-flask:before {
  2864. content: "\f0c3";
  2865. }
  2866. .fa-cut:before,
  2867. .fa-scissors:before {
  2868. content: "\f0c4";
  2869. }
  2870. .fa-copy:before,
  2871. .fa-files-o:before {
  2872. content: "\f0c5";
  2873. }
  2874. .fa-paperclip:before {
  2875. content: "\f0c6";
  2876. }
  2877. .fa-save:before,
  2878. .fa-floppy-o:before {
  2879. content: "\f0c7";
  2880. }
  2881. .fa-square:before {
  2882. content: "\f0c8";
  2883. }
  2884. .fa-navicon:before,
  2885. .fa-reorder:before,
  2886. .fa-bars:before {
  2887. content: "\f0c9";
  2888. }
  2889. .fa-list-ul:before {
  2890. content: "\f0ca";
  2891. }
  2892. .fa-list-ol:before {
  2893. content: "\f0cb";
  2894. }
  2895. .fa-strikethrough:before {
  2896. content: "\f0cc";
  2897. }
  2898. .fa-underline:before {
  2899. content: "\f0cd";
  2900. }
  2901. .fa-table:before {
  2902. content: "\f0ce";
  2903. }
  2904. .fa-magic:before {
  2905. content: "\f0d0";
  2906. }
  2907. .fa-truck:before {
  2908. content: "\f0d1";
  2909. }
  2910. .fa-pinterest:before {
  2911. content: "\f0d2";
  2912. }
  2913. .fa-pinterest-square:before {
  2914. content: "\f0d3";
  2915. }
  2916. .fa-google-plus-square:before {
  2917. content: "\f0d4";
  2918. }
  2919. .fa-google-plus:before {
  2920. content: "\f0d5";
  2921. }
  2922. .fa-money:before {
  2923. content: "\f0d6";
  2924. }
  2925. .fa-caret-down:before {
  2926. content: "\f0d7";
  2927. }
  2928. .fa-caret-up:before {
  2929. content: "\f0d8";
  2930. }
  2931. .fa-caret-left:before {
  2932. content: "\f0d9";
  2933. }
  2934. .fa-caret-right:before {
  2935. content: "\f0da";
  2936. }
  2937. .fa-columns:before {
  2938. content: "\f0db";
  2939. }
  2940. .fa-unsorted:before,
  2941. .fa-sort:before {
  2942. content: "\f0dc";
  2943. }
  2944. .fa-sort-down:before,
  2945. .fa-sort-desc:before {
  2946. content: "\f0dd";
  2947. }
  2948. .fa-sort-up:before,
  2949. .fa-sort-asc:before {
  2950. content: "\f0de";
  2951. }
  2952. .fa-envelope:before {
  2953. content: "\f0e0";
  2954. }
  2955. .fa-linkedin:before {
  2956. content: "\f0e1";
  2957. }
  2958. .fa-rotate-left:before,
  2959. .fa-undo:before {
  2960. content: "\f0e2";
  2961. }
  2962. .fa-legal:before,
  2963. .fa-gavel:before {
  2964. content: "\f0e3";
  2965. }
  2966. .fa-dashboard:before,
  2967. .fa-tachometer:before {
  2968. content: "\f0e4";
  2969. }
  2970. .fa-comment-o:before {
  2971. content: "\f0e5";
  2972. }
  2973. .fa-comments-o:before {
  2974. content: "\f0e6";
  2975. }
  2976. .fa-flash:before,
  2977. .fa-bolt:before {
  2978. content: "\f0e7";
  2979. }
  2980. .fa-sitemap:before {
  2981. content: "\f0e8";
  2982. }
  2983. .fa-umbrella:before {
  2984. content: "\f0e9";
  2985. }
  2986. .fa-paste:before,
  2987. .fa-clipboard:before {
  2988. content: "\f0ea";
  2989. }
  2990. .fa-lightbulb-o:before {
  2991. content: "\f0eb";
  2992. }
  2993. .fa-exchange:before {
  2994. content: "\f0ec";
  2995. }
  2996. .fa-cloud-download:before {
  2997. content: "\f0ed";
  2998. }
  2999. .fa-cloud-upload:before {
  3000. content: "\f0ee";
  3001. }
  3002. .fa-user-md:before {
  3003. content: "\f0f0";
  3004. }
  3005. .fa-stethoscope:before {
  3006. content: "\f0f1";
  3007. }
  3008. .fa-suitcase:before {
  3009. content: "\f0f2";
  3010. }
  3011. .fa-bell-o:before {
  3012. content: "\f0a2";
  3013. }
  3014. .fa-coffee:before {
  3015. content: "\f0f4";
  3016. }
  3017. .fa-cutlery:before {
  3018. content: "\f0f5";
  3019. }
  3020. .fa-file-text-o:before {
  3021. content: "\f0f6";
  3022. }
  3023. .fa-building-o:before {
  3024. content: "\f0f7";
  3025. }
  3026. .fa-hospital-o:before {
  3027. content: "\f0f8";
  3028. }
  3029. .fa-ambulance:before {
  3030. content: "\f0f9";
  3031. }
  3032. .fa-medkit:before {
  3033. content: "\f0fa";
  3034. }
  3035. .fa-fighter-jet:before {
  3036. content: "\f0fb";
  3037. }
  3038. .fa-beer:before {
  3039. content: "\f0fc";
  3040. }
  3041. .fa-h-square:before {
  3042. content: "\f0fd";
  3043. }
  3044. .fa-plus-square:before {
  3045. content: "\f0fe";
  3046. }
  3047. .fa-angle-double-left:before {
  3048. content: "\f100";
  3049. }
  3050. .fa-angle-double-right:before {
  3051. content: "\f101";
  3052. }
  3053. .fa-angle-double-up:before {
  3054. content: "\f102";
  3055. }
  3056. .fa-angle-double-down:before {
  3057. content: "\f103";
  3058. }
  3059. .fa-angle-left:before {
  3060. content: "\f104";
  3061. }
  3062. .fa-angle-right:before {
  3063. content: "\f105";
  3064. }
  3065. .fa-angle-up:before {
  3066. content: "\f106";
  3067. }
  3068. .fa-angle-down:before {
  3069. content: "\f107";
  3070. }
  3071. .fa-desktop:before {
  3072. content: "\f108";
  3073. }
  3074. .fa-laptop:before {
  3075. content: "\f109";
  3076. }
  3077. .fa-tablet:before {
  3078. content: "\f10a";
  3079. }
  3080. .fa-mobile-phone:before,
  3081. .fa-mobile:before {
  3082. content: "\f10b";
  3083. }
  3084. .fa-circle-o:before {
  3085. content: "\f10c";
  3086. }
  3087. .fa-quote-left:before {
  3088. content: "\f10d";
  3089. }
  3090. .fa-quote-right:before {
  3091. content: "\f10e";
  3092. }
  3093. .fa-spinner:before {
  3094. content: "\f110";
  3095. }
  3096. .fa-circle:before {
  3097. content: "\f111";
  3098. }
  3099. .fa-mail-reply:before,
  3100. .fa-reply:before {
  3101. content: "\f112";
  3102. }
  3103. .fa-github-alt:before {
  3104. content: "\f113";
  3105. }
  3106. .fa-folder-o:before {
  3107. content: "\f114";
  3108. }
  3109. .fa-folder-open-o:before {
  3110. content: "\f115";
  3111. }
  3112. .fa-smile-o:before {
  3113. content: "\f118";
  3114. }
  3115. .fa-frown-o:before {
  3116. content: "\f119";
  3117. }
  3118. .fa-meh-o:before {
  3119. content: "\f11a";
  3120. }
  3121. .fa-gamepad:before {
  3122. content: "\f11b";
  3123. }
  3124. .fa-keyboard-o:before {
  3125. content: "\f11c";
  3126. }
  3127. .fa-flag-o:before {
  3128. content: "\f11d";
  3129. }
  3130. .fa-flag-checkered:before {
  3131. content: "\f11e";
  3132. }
  3133. .fa-terminal:before {
  3134. content: "\f120";
  3135. }
  3136. .fa-code:before {
  3137. content: "\f121";
  3138. }
  3139. .fa-mail-reply-all:before,
  3140. .fa-reply-all:before {
  3141. content: "\f122";
  3142. }
  3143. .fa-star-half-empty:before,
  3144. .fa-star-half-full:before,
  3145. .fa-star-half-o:before {
  3146. content: "\f123";
  3147. }
  3148. .fa-location-arrow:before {
  3149. content: "\f124";
  3150. }
  3151. .fa-crop:before {
  3152. content: "\f125";
  3153. }
  3154. .fa-code-fork:before {
  3155. content: "\f126";
  3156. }
  3157. .fa-unlink:before,
  3158. .fa-chain-broken:before {
  3159. content: "\f127";
  3160. }
  3161. .fa-question:before {
  3162. content: "\f128";
  3163. }
  3164. .fa-info:before {
  3165. content: "\f129";
  3166. }
  3167. .fa-exclamation:before {
  3168. content: "\f12a";
  3169. }
  3170. .fa-superscript:before {
  3171. content: "\f12b";
  3172. }
  3173. .fa-subscript:before {
  3174. content: "\f12c";
  3175. }
  3176. .fa-eraser:before {
  3177. content: "\f12d";
  3178. }
  3179. .fa-puzzle-piece:before {
  3180. content: "\f12e";
  3181. }
  3182. .fa-microphone:before {
  3183. content: "\f130";
  3184. }
  3185. .fa-microphone-slash:before {
  3186. content: "\f131";
  3187. }
  3188. .fa-shield:before {
  3189. content: "\f132";
  3190. }
  3191. .fa-calendar-o:before {
  3192. content: "\f133";
  3193. }
  3194. .fa-fire-extinguisher:before {
  3195. content: "\f134";
  3196. }
  3197. .fa-rocket:before {
  3198. content: "\f135";
  3199. }
  3200. .fa-maxcdn:before {
  3201. content: "\f136";
  3202. }
  3203. .fa-chevron-circle-left:before {
  3204. content: "\f137";
  3205. }
  3206. .fa-chevron-circle-right:before {
  3207. content: "\f138";
  3208. }
  3209. .fa-chevron-circle-up:before {
  3210. content: "\f139";
  3211. }
  3212. .fa-chevron-circle-down:before {
  3213. content: "\f13a";
  3214. }
  3215. .fa-html5:before {
  3216. content: "\f13b";
  3217. }
  3218. .fa-css3:before {
  3219. content: "\f13c";
  3220. }
  3221. .fa-anchor:before {
  3222. content: "\f13d";
  3223. }
  3224. .fa-unlock-alt:before {
  3225. content: "\f13e";
  3226. }
  3227. .fa-bullseye:before {
  3228. content: "\f140";
  3229. }
  3230. .fa-ellipsis-h:before {
  3231. content: "\f141";
  3232. }
  3233. .fa-ellipsis-v:before {
  3234. content: "\f142";
  3235. }
  3236. .fa-rss-square:before {
  3237. content: "\f143";
  3238. }
  3239. .fa-play-circle:before {
  3240. content: "\f144";
  3241. }
  3242. .fa-ticket:before {
  3243. content: "\f145";
  3244. }
  3245. .fa-minus-square:before {
  3246. content: "\f146";
  3247. }
  3248. .fa-minus-square-o:before {
  3249. content: "\f147";
  3250. }
  3251. .fa-level-up:before {
  3252. content: "\f148";
  3253. }
  3254. .fa-level-down:before {
  3255. content: "\f149";
  3256. }
  3257. .fa-check-square:before {
  3258. content: "\f14a";
  3259. }
  3260. .fa-pencil-square:before {
  3261. content: "\f14b";
  3262. }
  3263. .fa-external-link-square:before {
  3264. content: "\f14c";
  3265. }
  3266. .fa-share-square:before {
  3267. content: "\f14d";
  3268. }
  3269. .fa-compass:before {
  3270. content: "\f14e";
  3271. }
  3272. .fa-toggle-down:before,
  3273. .fa-caret-square-o-down:before {
  3274. content: "\f150";
  3275. }
  3276. .fa-toggle-up:before,
  3277. .fa-caret-square-o-up:before {
  3278. content: "\f151";
  3279. }
  3280. .fa-toggle-right:before,
  3281. .fa-caret-square-o-right:before {
  3282. content: "\f152";
  3283. }
  3284. .fa-euro:before,
  3285. .fa-eur:before {
  3286. content: "\f153";
  3287. }
  3288. .fa-gbp:before {
  3289. content: "\f154";
  3290. }
  3291. .fa-dollar:before,
  3292. .fa-usd:before {
  3293. content: "\f155";
  3294. }
  3295. .fa-rupee:before,
  3296. .fa-inr:before {
  3297. content: "\f156";
  3298. }
  3299. .fa-cny:before,
  3300. .fa-rmb:before,
  3301. .fa-yen:before,
  3302. .fa-jpy:before {
  3303. content: "\f157";
  3304. }
  3305. .fa-ruble:before,
  3306. .fa-rouble:before,
  3307. .fa-rub:before {
  3308. content: "\f158";
  3309. }
  3310. .fa-won:before,
  3311. .fa-krw:before {
  3312. content: "\f159";
  3313. }
  3314. .fa-bitcoin:before,
  3315. .fa-btc:before {
  3316. content: "\f15a";
  3317. }
  3318. .fa-file:before {
  3319. content: "\f15b";
  3320. }
  3321. .fa-file-text:before {
  3322. content: "\f15c";
  3323. }
  3324. .fa-sort-alpha-asc:before {
  3325. content: "\f15d";
  3326. }
  3327. .fa-sort-alpha-desc:before {
  3328. content: "\f15e";
  3329. }
  3330. .fa-sort-amount-asc:before {
  3331. content: "\f160";
  3332. }
  3333. .fa-sort-amount-desc:before {
  3334. content: "\f161";
  3335. }
  3336. .fa-sort-numeric-asc:before {
  3337. content: "\f162";
  3338. }
  3339. .fa-sort-numeric-desc:before {
  3340. content: "\f163";
  3341. }
  3342. .fa-thumbs-up:before {
  3343. content: "\f164";
  3344. }
  3345. .fa-thumbs-down:before {
  3346. content: "\f165";
  3347. }
  3348. .fa-youtube-square:before {
  3349. content: "\f166";
  3350. }
  3351. .fa-youtube:before {
  3352. content: "\f167";
  3353. }
  3354. .fa-xing:before {
  3355. content: "\f168";
  3356. }
  3357. .fa-xing-square:before {
  3358. content: "\f169";
  3359. }
  3360. .fa-youtube-play:before {
  3361. content: "\f16a";
  3362. }
  3363. .fa-dropbox:before {
  3364. content: "\f16b";
  3365. }
  3366. .fa-stack-overflow:before {
  3367. content: "\f16c";
  3368. }
  3369. .fa-instagram:before {
  3370. content: "\f16d";
  3371. }
  3372. .fa-flickr:before {
  3373. content: "\f16e";
  3374. }
  3375. .fa-adn:before {
  3376. content: "\f170";
  3377. }
  3378. .fa-bitbucket:before {
  3379. content: "\f171";
  3380. }
  3381. .fa-bitbucket-square:before {
  3382. content: "\f172";
  3383. }
  3384. .fa-tumblr:before {
  3385. content: "\f173";
  3386. }
  3387. .fa-tumblr-square:before {
  3388. content: "\f174";
  3389. }
  3390. .fa-long-arrow-down:before {
  3391. content: "\f175";
  3392. }
  3393. .fa-long-arrow-up:before {
  3394. content: "\f176";
  3395. }
  3396. .fa-long-arrow-left:before {
  3397. content: "\f177";
  3398. }
  3399. .fa-long-arrow-right:before {
  3400. content: "\f178";
  3401. }
  3402. .fa-apple:before {
  3403. content: "\f179";
  3404. }
  3405. .fa-windows:before {
  3406. content: "\f17a";
  3407. }
  3408. .fa-android:before {
  3409. content: "\f17b";
  3410. }
  3411. .fa-linux:before {
  3412. content: "\f17c";
  3413. }
  3414. .fa-dribbble:before {
  3415. content: "\f17d";
  3416. }
  3417. .fa-skype:before {
  3418. content: "\f17e";
  3419. }
  3420. .fa-foursquare:before {
  3421. content: "\f180";
  3422. }
  3423. .fa-trello:before {
  3424. content: "\f181";
  3425. }
  3426. .fa-female:before {
  3427. content: "\f182";
  3428. }
  3429. .fa-male:before {
  3430. content: "\f183";
  3431. }
  3432. .fa-gittip:before {
  3433. content: "\f184";
  3434. }
  3435. .fa-sun-o:before {
  3436. content: "\f185";
  3437. }
  3438. .fa-moon-o:before {
  3439. content: "\f186";
  3440. }
  3441. .fa-archive:before {
  3442. content: "\f187";
  3443. }
  3444. .fa-bug:before {
  3445. content: "\f188";
  3446. }
  3447. .fa-vk:before {
  3448. content: "\f189";
  3449. }
  3450. .fa-weibo:before {
  3451. content: "\f18a";
  3452. }
  3453. .fa-renren:before {
  3454. content: "\f18b";
  3455. }
  3456. .fa-pagelines:before {
  3457. content: "\f18c";
  3458. }
  3459. .fa-stack-exchange:before {
  3460. content: "\f18d";
  3461. }
  3462. .fa-arrow-circle-o-right:before {
  3463. content: "\f18e";
  3464. }
  3465. .fa-arrow-circle-o-left:before {
  3466. content: "\f190";
  3467. }
  3468. .fa-toggle-left:before,
  3469. .fa-caret-square-o-left:before {
  3470. content: "\f191";
  3471. }
  3472. .fa-dot-circle-o:before {
  3473. content: "\f192";
  3474. }
  3475. .fa-wheelchair:before {
  3476. content: "\f193";
  3477. }
  3478. .fa-vimeo-square:before {
  3479. content: "\f194";
  3480. }
  3481. .fa-turkish-lira:before,
  3482. .fa-try:before {
  3483. content: "\f195";
  3484. }
  3485. .fa-plus-square-o:before {
  3486. content: "\f196";
  3487. }
  3488. .fa-space-shuttle:before {
  3489. content: "\f197";
  3490. }
  3491. .fa-slack:before {
  3492. content: "\f198";
  3493. }
  3494. .fa-envelope-square:before {
  3495. content: "\f199";
  3496. }
  3497. .fa-wordpress:before {
  3498. content: "\f19a";
  3499. }
  3500. .fa-openid:before {
  3501. content: "\f19b";
  3502. }
  3503. .fa-institution:before,
  3504. .fa-bank:before,
  3505. .fa-university:before {
  3506. content: "\f19c";
  3507. }
  3508. .fa-mortar-board:before,
  3509. .fa-graduation-cap:before {
  3510. content: "\f19d";
  3511. }
  3512. .fa-yahoo:before {
  3513. content: "\f19e";
  3514. }
  3515. .fa-google:before {
  3516. content: "\f1a0";
  3517. }
  3518. .fa-reddit:before {
  3519. content: "\f1a1";
  3520. }
  3521. .fa-reddit-square:before {
  3522. content: "\f1a2";
  3523. }
  3524. .fa-stumbleupon-circle:before {
  3525. content: "\f1a3";
  3526. }
  3527. .fa-stumbleupon:before {
  3528. content: "\f1a4";
  3529. }
  3530. .fa-delicious:before {
  3531. content: "\f1a5";
  3532. }
  3533. .fa-digg:before {
  3534. content: "\f1a6";
  3535. }
  3536. .fa-pied-piper:before {
  3537. content: "\f1a7";
  3538. }
  3539. .fa-pied-piper-alt:before {
  3540. content: "\f1a8";
  3541. }
  3542. .fa-drupal:before {
  3543. content: "\f1a9";
  3544. }
  3545. .fa-joomla:before {
  3546. content: "\f1aa";
  3547. }
  3548. .fa-language:before {
  3549. content: "\f1ab";
  3550. }
  3551. .fa-fax:before {
  3552. content: "\f1ac";
  3553. }
  3554. .fa-building:before {
  3555. content: "\f1ad";
  3556. }
  3557. .fa-child:before {
  3558. content: "\f1ae";
  3559. }
  3560. .fa-paw:before {
  3561. content: "\f1b0";
  3562. }
  3563. .fa-spoon:before {
  3564. content: "\f1b1";
  3565. }
  3566. .fa-cube:before {
  3567. content: "\f1b2";
  3568. }
  3569. .fa-cubes:before {
  3570. content: "\f1b3";
  3571. }
  3572. .fa-behance:before {
  3573. content: "\f1b4";
  3574. }
  3575. .fa-behance-square:before {
  3576. content: "\f1b5";
  3577. }
  3578. .fa-steam:before {
  3579. content: "\f1b6";
  3580. }
  3581. .fa-steam-square:before {
  3582. content: "\f1b7";
  3583. }
  3584. .fa-recycle:before {
  3585. content: "\f1b8";
  3586. }
  3587. .fa-automobile:before,
  3588. .fa-car:before {
  3589. content: "\f1b9";
  3590. }
  3591. .fa-cab:before,
  3592. .fa-taxi:before {
  3593. content: "\f1ba";
  3594. }
  3595. .fa-tree:before {
  3596. content: "\f1bb";
  3597. }
  3598. .fa-spotify:before {
  3599. content: "\f1bc";
  3600. }
  3601. .fa-deviantart:before {
  3602. content: "\f1bd";
  3603. }
  3604. .fa-soundcloud:before {
  3605. content: "\f1be";
  3606. }
  3607. .fa-database:before {
  3608. content: "\f1c0";
  3609. }
  3610. .fa-file-pdf-o:before {
  3611. content: "\f1c1";
  3612. }
  3613. .fa-file-word-o:before {
  3614. content: "\f1c2";
  3615. }
  3616. .fa-file-excel-o:before {
  3617. content: "\f1c3";
  3618. }
  3619. .fa-file-powerpoint-o:before {
  3620. content: "\f1c4";
  3621. }
  3622. .fa-file-photo-o:before,
  3623. .fa-file-picture-o:before,
  3624. .fa-file-image-o:before {
  3625. content: "\f1c5";
  3626. }
  3627. .fa-file-zip-o:before,
  3628. .fa-file-archive-o:before {
  3629. content: "\f1c6";
  3630. }
  3631. .fa-file-sound-o:before,
  3632. .fa-file-audio-o:before {
  3633. content: "\f1c7";
  3634. }
  3635. .fa-file-movie-o:before,
  3636. .fa-file-video-o:before {
  3637. content: "\f1c8";
  3638. }
  3639. .fa-file-code-o:before {
  3640. content: "\f1c9";
  3641. }
  3642. .fa-vine:before {
  3643. content: "\f1ca";
  3644. }
  3645. .fa-codepen:before {
  3646. content: "\f1cb";
  3647. }
  3648. .fa-jsfiddle:before {
  3649. content: "\f1cc";
  3650. }
  3651. .fa-life-bouy:before,
  3652. .fa-life-buoy:before,
  3653. .fa-life-saver:before,
  3654. .fa-support:before,
  3655. .fa-life-ring:before {
  3656. content: "\f1cd";
  3657. }
  3658. .fa-circle-o-notch:before {
  3659. content: "\f1ce";
  3660. }
  3661. .fa-ra:before,
  3662. .fa-rebel:before {
  3663. content: "\f1d0";
  3664. }
  3665. .fa-ge:before,
  3666. .fa-empire:before {
  3667. content: "\f1d1";
  3668. }
  3669. .fa-git-square:before {
  3670. content: "\f1d2";
  3671. }
  3672. .fa-git:before {
  3673. content: "\f1d3";
  3674. }
  3675. .fa-hacker-news:before {
  3676. content: "\f1d4";
  3677. }
  3678. .fa-tencent-weibo:before {
  3679. content: "\f1d5";
  3680. }
  3681. .fa-qq:before {
  3682. content: "\f1d6";
  3683. }
  3684. .fa-wechat:before,
  3685. .fa-weixin:before {
  3686. content: "\f1d7";
  3687. }
  3688. .fa-send:before,
  3689. .fa-paper-plane:before {
  3690. content: "\f1d8";
  3691. }
  3692. .fa-send-o:before,
  3693. .fa-paper-plane-o:before {
  3694. content: "\f1d9";
  3695. }
  3696. .fa-history:before {
  3697. content: "\f1da";
  3698. }
  3699. .fa-circle-thin:before {
  3700. content: "\f1db";
  3701. }
  3702. .fa-header:before {
  3703. content: "\f1dc";
  3704. }
  3705. .fa-paragraph:before {
  3706. content: "\f1dd";
  3707. }
  3708. .fa-sliders:before {
  3709. content: "\f1de";
  3710. }
  3711. .fa-share-alt:before {
  3712. content: "\f1e0";
  3713. }
  3714. .fa-share-alt-square:before {
  3715. content: "\f1e1";
  3716. }
  3717. .fa-bomb:before {
  3718. content: "\f1e2";
  3719. }
  3720. .fa-soccer-ball-o:before,
  3721. .fa-futbol-o:before {
  3722. content: "\f1e3";
  3723. }
  3724. .fa-tty:before {
  3725. content: "\f1e4";
  3726. }
  3727. .fa-binoculars:before {
  3728. content: "\f1e5";
  3729. }
  3730. .fa-plug:before {
  3731. content: "\f1e6";
  3732. }
  3733. .fa-slideshare:before {
  3734. content: "\f1e7";
  3735. }
  3736. .fa-twitch:before {
  3737. content: "\f1e8";
  3738. }
  3739. .fa-yelp:before {
  3740. content: "\f1e9";
  3741. }
  3742. .fa-newspaper-o:before {
  3743. content: "\f1ea";
  3744. }
  3745. .fa-wifi:before {
  3746. content: "\f1eb";
  3747. }
  3748. .fa-calculator:before {
  3749. content: "\f1ec";
  3750. }
  3751. .fa-paypal:before {
  3752. content: "\f1ed";
  3753. }
  3754. .fa-google-wallet:before {
  3755. content: "\f1ee";
  3756. }
  3757. .fa-cc-visa:before {
  3758. content: "\f1f0";
  3759. }
  3760. .fa-cc-mastercard:before {
  3761. content: "\f1f1";
  3762. }
  3763. .fa-cc-discover:before {
  3764. content: "\f1f2";
  3765. }
  3766. .fa-cc-amex:before {
  3767. content: "\f1f3";
  3768. }
  3769. .fa-cc-paypal:before {
  3770. content: "\f1f4";
  3771. }
  3772. .fa-cc-stripe:before {
  3773. content: "\f1f5";
  3774. }
  3775. .fa-bell-slash:before {
  3776. content: "\f1f6";
  3777. }
  3778. .fa-bell-slash-o:before {
  3779. content: "\f1f7";
  3780. }
  3781. .fa-trash:before {
  3782. content: "\f1f8";
  3783. }
  3784. .fa-copyright:before {
  3785. content: "\f1f9";
  3786. }
  3787. .fa-at:before {
  3788. content: "\f1fa";
  3789. }
  3790. .fa-eyedropper:before {
  3791. content: "\f1fb";
  3792. }
  3793. .fa-paint-brush:before {
  3794. content: "\f1fc";
  3795. }
  3796. .fa-birthday-cake:before {
  3797. content: "\f1fd";
  3798. }
  3799. .fa-area-chart:before {
  3800. content: "\f1fe";
  3801. }
  3802. .fa-pie-chart:before {
  3803. content: "\f200";
  3804. }
  3805. .fa-line-chart:before {
  3806. content: "\f201";
  3807. }
  3808. .fa-lastfm:before {
  3809. content: "\f202";
  3810. }
  3811. .fa-lastfm-square:before {
  3812. content: "\f203";
  3813. }
  3814. .fa-toggle-off:before {
  3815. content: "\f204";
  3816. }
  3817. .fa-toggle-on:before {
  3818. content: "\f205";
  3819. }
  3820. .fa-bicycle:before {
  3821. content: "\f206";
  3822. }
  3823. .fa-bus:before {
  3824. content: "\f207";
  3825. }
  3826. .fa-ioxhost:before {
  3827. content: "\f208";
  3828. }
  3829. .fa-angellist:before {
  3830. content: "\f209";
  3831. }
  3832. .fa-cc:before {
  3833. content: "\f20a";
  3834. }
  3835. .fa-shekel:before,
  3836. .fa-sheqel:before,
  3837. .fa-ils:before {
  3838. content: "\f20b";
  3839. }
  3840. .fa-meanpath:before {
  3841. content: "\f20c";
  3842. }