style.css 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945
  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. .divider {
  990. border-bottom: 1px solid #cecece;
  991. width:100%;
  992. margin: 30px 0 30px;
  993. }
  994. /*===== Structure =====*/
  995. .a:hover {
  996. color: #1d8;
  997. }
  998. .leader {
  999. padding: 100px 0 0;
  1000. }
  1001. .leader-gap {
  1002. padding: 40px 0;
  1003. }
  1004. .posts-front {
  1005. padding: 40px 0;
  1006. }
  1007. .dark {
  1008. background: #222;
  1009. }
  1010. .bottom {
  1011. padding-top: 50px;
  1012. }
  1013. .footer {
  1014. padding: 50px 0;
  1015. }
  1016. .footer-home {
  1017. padding: 90px 0 50px;
  1018. }
  1019. .centered {
  1020. float: none;
  1021. margin: 0 auto;
  1022. }
  1023. article#main {
  1024. padding: 0px;
  1025. }
  1026. article#main .entry-content {
  1027. padding: 15px;
  1028. }
  1029. article h2 {
  1030. font-size: 28px;
  1031. }
  1032. article.home {
  1033. background: rgba(255, 255, 255, 0.9);
  1034. padding: 70px 60px;
  1035. border-radius: 10px;
  1036. min-height: 280px;
  1037. }
  1038. article.single {
  1039. background: #fff;
  1040. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  1041. }
  1042. .post {
  1043. margin-bottom: 40px;
  1044. }
  1045. article p {
  1046. text-indent: 12px;
  1047. }
  1048. p.nobreak {
  1049. margin: 0 0 10px !important;
  1050. }
  1051. /*===== Footer =====*/
  1052. p.cc {
  1053. float: right;
  1054. font-size: 14px;
  1055. margin: 2px 20px 30px 10px;
  1056. }
  1057. span.quiet {
  1058. display: none;
  1059. }
  1060. span.right {
  1061. float: right;
  1062. }
  1063. .footer {
  1064. padding: 50px 0 30px;
  1065. }
  1066. .form-row {
  1067. margin: 10px 0;
  1068. }
  1069. .form-row.checkbox {
  1070. font-size: 0.85em;
  1071. }
  1072. .form-row.texts:first-of-type {
  1073. margin-top: 30px;
  1074. }
  1075. .form-row.texts + .form-row:not(.texts) {
  1076. margin-top: 30px;
  1077. }
  1078. .checkbox-field input {
  1079. margin-right: 10px;
  1080. }
  1081. .entry-content ul {
  1082. margin: 10px 20px;
  1083. }
  1084. .entry-content ul.sitemap {
  1085. margin: 0;
  1086. }
  1087. /*===== Wordpress =====*/
  1088. #content {
  1089. margin-bottom: 36px;
  1090. margin-top: 100px;
  1091. }
  1092. #content,
  1093. #content input,
  1094. #content textarea {
  1095. color: #111;
  1096. }
  1097. #content p,
  1098. #content ul,
  1099. #content ol,
  1100. #content dd,
  1101. #content pre,
  1102. #content hr {
  1103. margin-bottom: 24px;
  1104. }
  1105. #content ul ul,
  1106. #content ol ol,
  1107. #content ul ol,
  1108. #content ol ul {
  1109. margin-bottom: 0;
  1110. }
  1111. #content pre,
  1112. #content kbd,
  1113. #content tt,
  1114. #content var {
  1115. font-size: 15px;
  1116. line-height: 21px;
  1117. }
  1118. #content code {
  1119. font-size: 13px;
  1120. }
  1121. #content dt,
  1122. #content th {
  1123. color: #000;
  1124. }
  1125. #content h1,
  1126. #content h2,
  1127. #content h3,
  1128. #content h4,
  1129. #content h5,
  1130. #content h6 {
  1131. color: #000;
  1132. line-height: 1.5em;
  1133. margin: 0 0 16px 0;
  1134. }
  1135. #content table {
  1136. border: 1px solid #e7e7e7;
  1137. margin: 0 -1px 24px 0;
  1138. text-align: left;
  1139. width: 100%;
  1140. }
  1141. #content tr th,
  1142. #content thead th {
  1143. color: #888;
  1144. font-size: 12px;
  1145. font-weight: bold;
  1146. line-height: 18px;
  1147. padding: 9px 24px;
  1148. }
  1149. #content tr td {
  1150. border-top: 1px solid #e7e7e7;
  1151. padding: 6px 24px;
  1152. }
  1153. #content tr.odd td {
  1154. background: #f2f7fc;
  1155. }
  1156. .hentry {
  1157. margin: 0 0 30px 0;
  1158. }
  1159. .reserved-gallery {
  1160. float: left;
  1161. padding: 5px;
  1162. }
  1163. .home .sticky {
  1164. background: #f2f7fc;
  1165. border-top: 4px solid #000;
  1166. margin-left: -20px;
  1167. margin-right: -20px;
  1168. padding: 18px 20px;
  1169. }
  1170. .single .hentry {
  1171. margin: 0 0 36px 0;
  1172. }
  1173. .page-title {
  1174. color: #000;
  1175. font-size: 14px;
  1176. font-weight: bold;
  1177. margin: 0 0 36px 0;
  1178. }
  1179. .page-title span {
  1180. color: #333;
  1181. font-size: 16px;
  1182. font-style: italic;
  1183. font-weight: normal;
  1184. }
  1185. .entry-caption-parent .page-title span {
  1186. color: #777;
  1187. font-size: 12px;
  1188. font-style: italic;
  1189. font-weight: normal;
  1190. }
  1191. .nav-previous span.meta-nav {
  1192. color: #888;
  1193. font-size: 12px;
  1194. font-style: italic;
  1195. font-weight: normal;
  1196. }
  1197. .nav-next span.meta-nav {
  1198. color: #888;
  1199. font-size: 12px;
  1200. font-style: italic;
  1201. font-weight: normal;
  1202. }
  1203. .page-title a:link,
  1204. .page-title a:visited {
  1205. color: #888;
  1206. text-decoration: none;
  1207. }
  1208. .page-title a:active,
  1209. .page-title a:hover {
  1210. color: #2a6496;
  1211. }
  1212. #content .entry-title {
  1213. color: #000;
  1214. font-size: 26px;
  1215. line-height: 1.3em;
  1216. margin-bottom: 20px;
  1217. }
  1218. h2.entry-title {
  1219. color: #999;
  1220. }
  1221. .entry-title a:link,
  1222. .entry-title a:visited {
  1223. color: #000;
  1224. text-decoration: none;
  1225. }
  1226. .entry-title a:active,
  1227. .entry-title a:hover {
  1228. color: #2a6496;
  1229. }
  1230. .entry-meta {
  1231. color: #888;
  1232. font-size: 12px;
  1233. }
  1234. .entry-meta-attachment {
  1235. float: right;
  1236. color: #888;
  1237. font: 11px "Courier New", Courier, mono;
  1238. }
  1239. .entry-meta abbr,
  1240. .entry-utility abbr {
  1241. border: none;
  1242. }
  1243. .entry-meta abbr:hover,
  1244. .entry-utility abbr:hover {
  1245. border-bottom: 1px dotted #666;
  1246. }
  1247. .entry-content,
  1248. .entry-summary {
  1249. clear: both;
  1250. padding: 18px 0 20px;
  1251. }
  1252. .entry-guestbook {
  1253. clear: both;
  1254. padding: 3px 0 10px 0;
  1255. }
  1256. .entry-content p {
  1257. font-family: "Computer Modern";
  1258. }
  1259. .signature {
  1260. float: right;
  1261. margin: 10px 150px 40px 0px;
  1262. }
  1263. .bypostauthor {
  1264. }
  1265. #inside h3 {
  1266. font: 16px "Courier New", Courier, mono;
  1267. line-height: 10px;
  1268. margin: 0 0 10px 0;
  1269. }
  1270. #inside p {
  1271. margin: 0 0 10px 0;
  1272. line-height: 20px;
  1273. }
  1274. #content .entry-summary p:last-child {
  1275. margin-bottom: 12px;
  1276. }
  1277. .entry-content fieldset {
  1278. border: 1px solid #e7e7e7;
  1279. margin: 0 0 24px 0;
  1280. padding: 24px;
  1281. }
  1282. .entry-content fieldset legend {
  1283. background: #fff;
  1284. color: #000;
  1285. font-weight: bold;
  1286. padding: 0 24px;
  1287. }
  1288. .entry-content input {
  1289. margin: 0 0 20px 0;
  1290. }
  1291. .entry-content input.file,
  1292. .entry-content input.button {
  1293. margin-right: 24px;
  1294. }
  1295. .entry-content label {
  1296. color: #888;
  1297. font-size: 12px;
  1298. }
  1299. .entry-content select {
  1300. margin: 0 0 24px 0;
  1301. }
  1302. .entry-content sup,
  1303. .entry-content sub {
  1304. font-size: 10px;
  1305. }
  1306. .entry-content blockquote.left {
  1307. float: left;
  1308. margin-left: 0;
  1309. margin-right: 24px;
  1310. text-align: right;
  1311. width: 33%;
  1312. }
  1313. .entry-content blockquote.right {
  1314. float: right;
  1315. margin-left: 24px;
  1316. margin-right: 0;
  1317. text-align: left;
  1318. width: 33%;
  1319. }
  1320. .page-link {
  1321. color: #000;
  1322. font-weight: bold;
  1323. margin: 0 0 22px 0;
  1324. word-spacing: 0.5em;
  1325. }
  1326. .page-link a:link,
  1327. .page-link a:visited {
  1328. background: #f1f1f1;
  1329. color: #333;
  1330. font-weight: normal;
  1331. padding: 0.5em 0.75em;
  1332. text-decoration: none;
  1333. }
  1334. .home .sticky .page-link a {
  1335. background: #d9e8f7;
  1336. }
  1337. .page-link a:active,
  1338. .page-link a:hover {
  1339. color: #ff4b33;
  1340. }
  1341. body.page .edit-link {
  1342. clear: both;
  1343. display: block;
  1344. }
  1345. .entry-utility {
  1346. clear: both;
  1347. color: #888;
  1348. font-size: 12px;
  1349. line-height: 18px;
  1350. }
  1351. .entry-meta a,
  1352. .entry-utility a {
  1353. color: #888;
  1354. }
  1355. .entry-meta a:hover,
  1356. .entry-utility a:hover {
  1357. color: #ff4b33;
  1358. }
  1359. #content .video-player {
  1360. padding: 0;
  1361. }
  1362. .date {
  1363. float: right;
  1364. margin: 0px 0 20px 50px;
  1365. color: #777;
  1366. font: 14px/18px "Courier New", Courier, mono;
  1367. }
  1368. .front-date {
  1369. float: right;
  1370. margin: 0px 0 0px 40px;
  1371. color: #777;
  1372. font: 14px/18px "Courier New", Courier, mono;
  1373. }
  1374. #content ul li li {
  1375. padding: 0 0 0 20px;
  1376. }
  1377. .list-group-horizontal .list-group-item {
  1378. display: inline-block;
  1379. }
  1380. .list-group-horizontal .list-group-item {
  1381. margin-bottom: 0;
  1382. margin-left:-2px;
  1383. margin-right: 0;
  1384. }
  1385. .list-group-horizontal .list-group-item:first-child {
  1386. border-top-right-radius:0;
  1387. border-bottom-left-radius:4px;
  1388. }
  1389. .list-group-horizontal .list-group-item:last-child {
  1390. border-top-right-radius:4px;
  1391. border-bottom-left-radius:0;
  1392. }
  1393. /*============================================
  1394. Meta
  1395. ==============================================*/
  1396. .meta {
  1397. font-size: 11px;
  1398. }
  1399. .categories-fb {
  1400. text-align: right;
  1401. }
  1402. span.fb {
  1403. width: 16px;
  1404. height: 16px;
  1405. margin-left: 5px;
  1406. padding: 3px 4px 2px 5px;
  1407. background-image: url(img/fb1.png) ;
  1408. background-position: 0 16px;
  1409. position: relative;
  1410. -webkit-transition: all ease 0.3s;
  1411. -moz-transition: all ease 0.3s;
  1412. -o-transition: all ease 0.3s;
  1413. -ms-transition: all ease 0.3s;
  1414. transition: all ease 0.3s;
  1415. }
  1416. span.fb:hover {
  1417. background-position: 0 0;
  1418. }
  1419. /*============================================
  1420. Comments
  1421. ==============================================*/
  1422. #commentform input.error,
  1423. #commentform textarea.error {
  1424. background: #FFD2D2;
  1425. color:#000000;
  1426. }
  1427. #commentform .error {
  1428. color: #FF0000;
  1429. }
  1430. .commentbubble {
  1431. font-family:"CM Type";
  1432. font-size: 13px;
  1433. color: #777;
  1434. margin: 0px 15px 0 0;
  1435. }
  1436. .comment {
  1437. padding: 10px;
  1438. }
  1439. .commentbubble a.toogle-comments {
  1440. float: right;
  1441. text-align: right;
  1442. }
  1443. .comments-area {
  1444. background: rgba(242,242,242,.7);
  1445. padding: 15px;
  1446. margin: 60px 0 0 0;
  1447. }
  1448. #content .comments-area p {
  1449. margin: 0 0 8px;
  1450. font-size: 13px;
  1451. }
  1452. #content .comments-area .reply {
  1453. margin: 5px 8px 0px;
  1454. padding: 2px 9px;
  1455. background: rgba(242,242,242,.5);
  1456. font-size: 11px;
  1457. }
  1458. .comments-title {
  1459. margin-bottom: 48px;
  1460. margin-bottom: 3.428571429rem;
  1461. font-size: 16px;
  1462. font-size: 1.142857143rem;
  1463. line-height: 1.5;
  1464. font-weight: normal;
  1465. }
  1466. .comments-area ul {
  1467. margin: 0px 0px;
  1468. list-style: none;
  1469. }
  1470. .comments-area h3 {
  1471. margin: 0 0 0;
  1472. }
  1473. .comments-meta {
  1474. font-size: 10px;
  1475. }
  1476. .comments-area article {
  1477. margin: 24px 0;
  1478. }
  1479. .comments-area article header {
  1480. margin: 0 0 48px;
  1481. overflow: hidden;
  1482. position: relative;
  1483. }
  1484. .comments-area article header img {
  1485. float: left;
  1486. padding: 0;
  1487. line-height: 0;
  1488. }
  1489. .comments-area article header cite,
  1490. .comments-area article header time {
  1491. display: block;
  1492. margin-left: 85px;
  1493. }
  1494. .comments-area article header cite {
  1495. font-style: normal;
  1496. font-size: 15px;
  1497. }
  1498. .comments-area cite b {
  1499. font-weight: normal;
  1500. }
  1501. .comments-area article header time {
  1502. text-decoration: none;
  1503. font-size: 12px;
  1504. color: #5e5e5e;
  1505. }
  1506. .comments-area article header a {
  1507. text-decoration: none;
  1508. color: #5e5e5e;
  1509. }
  1510. .comments-area article header a:hover {
  1511. color: #21759b;
  1512. }
  1513. .comments-area article header cite a {
  1514. color: #444;
  1515. }
  1516. .comments-area article header cite a:hover {
  1517. text-decoration: underline;
  1518. }
  1519. a.comment-reply-link,
  1520. a.comment-edit-link {
  1521. color: #686868;
  1522. font-size: 13px;
  1523. }
  1524. a.comment-reply-link:hover,
  1525. a.comment-edit-link:hover {
  1526. color: #21759b;
  1527. }
  1528. .commentlist .pingback {
  1529. line-height: 1.714285714;
  1530. margin-bottom: 24px;
  1531. }
  1532. li.comment.even {
  1533. background: #fff;
  1534. }
  1535. li.comment.odd {
  1536. background: #f3f3f3;
  1537. }
  1538. li.comment.thread-even {
  1539. background: #f5f5f5;
  1540. }
  1541. li.comment.thread-odd {
  1542. background: #fff;
  1543. }
  1544. .comment-meta {
  1545. font-size: 11px;
  1546. line-height: 12px;
  1547. }
  1548. .comment-meta a {
  1549. color: #777;
  1550. float: right;
  1551. }
  1552. /*====== Comment form ======*/
  1553. #respond {
  1554. margin-top: 10px;
  1555. }
  1556. #respond h3#reply-title {
  1557. margin: 0px 8px 0px;
  1558. padding: 2px 9px;
  1559. font-size: 11px;
  1560. margin: 0;
  1561. }
  1562. #respond h3#reply-title #cancel-comment-reply-link {
  1563. margin-left: 10px;
  1564. font-weight: normal;
  1565. font-size: 12px;
  1566. font-size: 0.857142857rem;
  1567. }
  1568. #respond form {
  1569. margin: 24px 0;
  1570. margin: 1.714285714rem 0;
  1571. }
  1572. #respond form p {
  1573. margin: 11px 0;
  1574. margin: 0.785714286rem 0;
  1575. }
  1576. #respond form p.logged-in-as {
  1577. margin-bottom: 24px;
  1578. margin-bottom: 1.714285714rem;
  1579. }
  1580. #respond form label {
  1581. display: block;
  1582. line-height: 1.714285714;
  1583. }
  1584. #respond form input[type="text"],
  1585. #respond form textarea {
  1586. -moz-box-sizing: border-box;
  1587. box-sizing: border-box;
  1588. line-height: 1.714285714;
  1589. padding: 10px;
  1590. padding: 0.714285714rem;
  1591. width: 100%;
  1592. }
  1593. #respond form p.form-allowed-tags {
  1594. margin: 0;
  1595. font-size: 12px;
  1596. font-size: 0.857142857rem;
  1597. line-height: 2;
  1598. color: #5e5e5e;
  1599. }
  1600. .required {
  1601. color: red;
  1602. }
  1603. .form-submit {
  1604. display: none;
  1605. }
  1606. .comment-form-author,
  1607. .comment-form-email,
  1608. .comment-form-url {
  1609. width: 50%;
  1610. }
  1611. /*============================================
  1612. Media
  1613. ==============================================*/
  1614. .video-container {
  1615. position: relative;
  1616. padding-bottom: 56.25%;
  1617. padding-top: 30px; height: 0; overflow: hidden;
  1618. }
  1619. .video-container iframe,
  1620. .video-container object,
  1621. .video-container embed {
  1622. position: absolute;
  1623. top: 0;
  1624. left: 0;
  1625. width: 100%;
  1626. height: 100%;
  1627. }
  1628. .category-gallery .size-thumbnail img {
  1629. border: 10px solid #f1f1f1;
  1630. margin-bottom: 0;
  1631. }
  1632. .category-gallery .gallery-thumb {
  1633. float: left;
  1634. margin-right: 20px;
  1635. margin-top: -4px;
  1636. }
  1637. .home #content .category-gallery .entry-utility {
  1638. padding-top: 4px;
  1639. }
  1640. /*===== Attachments =====*/
  1641. .single-attachment .hentry {
  1642. margin: 0px;
  1643. }
  1644. .attachment .entry-content .entry-caption {
  1645. font-size: 140%;
  1646. margin-top: 24px;
  1647. }
  1648. .entry-caption-attachment {
  1649. margin: 0px auto 0;
  1650. text-align: center;
  1651. }
  1652. #content .entry-caption-attachment h2.entry-title {
  1653. margin: 0 0 5px;
  1654. font-weight: normal;
  1655. }
  1656. #content .entry-caption-parent p.page-title {
  1657. margin: -30px 0 0 0;
  1658. font: normal 13px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  1659. }
  1660. #content .entry-caption-parent p.page-title a {
  1661. color: #555;
  1662. }
  1663. #content .entry-caption-attachment p {
  1664. font-size: 14px;
  1665. text-indent: 0px;
  1666. line-height: 15px;
  1667. margin-bottom: 0px;
  1668. }
  1669. .entry-caption-attachment h2 {
  1670. font: bold 27px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  1671. }
  1672. .attachment .entry-content .nav-previous a:before {
  1673. content: '\2190\00a0';
  1674. }
  1675. .attachment .entry-content .nav-next a:after {
  1676. content: '\00a0\2192';
  1677. }
  1678. /*===== Images ======*/
  1679. img.avatar {
  1680. width: 50px;
  1681. height: 50px;
  1682. -webkit-border-radius: 30px;
  1683. -moz-border-radius: 30px;
  1684. border-radius: 30px;
  1685. }
  1686. img.me {
  1687. height: 80px;
  1688. margin: 0 10px;
  1689. float: left;
  1690. -webkit-border-radius: 50%;
  1691. -moz-border-radius: 50%;
  1692. border-radius: 50%;
  1693. -webkit-filter: grayscale(1);
  1694. filter:grayscale(1);
  1695. }
  1696. .entry-content img {
  1697. max-width: 100%;
  1698. height: auto;
  1699. }
  1700. .img-rounded {
  1701. border-radius: 6px;
  1702. }
  1703. .img-thumbnail {
  1704. padding: 4px;
  1705. line-height: 1.42857143;
  1706. background-color: #ffffff;
  1707. border: 1px solid #dddddd;
  1708. border-radius: 4px;
  1709. -webkit-transition: all 0.2s ease-in-out;
  1710. -o-transition: all 0.2s ease-in-out;
  1711. transition: all 0.2s ease-in-out;
  1712. display: inline-block;
  1713. width: 100% \9;
  1714. max-width: 100%;
  1715. height: auto;
  1716. }
  1717. .img-circle {
  1718. border-radius: 50%;
  1719. }
  1720. #content .home img {
  1721. border: 15px solid #000;
  1722. }
  1723. #content .attachment img {
  1724. max-width: 900px;
  1725. }
  1726. #content .alignleft,
  1727. #content img.alignleft {
  1728. display: inline;
  1729. float: left;
  1730. margin-right: 24px;
  1731. margin-top: 4px;
  1732. }
  1733. #content .alignright,
  1734. #content img.alignright {
  1735. display: inline;
  1736. float: right;
  1737. margin-left: 24px;
  1738. margin-top: 4px;
  1739. }
  1740. #content .aligncenter,
  1741. #content img.aligncenter {
  1742. clear: both;
  1743. display: block;
  1744. margin-left: auto;
  1745. margin-right: auto;
  1746. }
  1747. #content img.alignleft,
  1748. #content img.alignright,
  1749. #content img.aligncenter {
  1750. margin-bottom: 12px;
  1751. }
  1752. #content .wp-caption {
  1753. background: #f1f1f1;
  1754. line-height: 18px;
  1755. margin-bottom: 20px;
  1756. padding: 4px;
  1757. text-align: center;
  1758. }
  1759. #content .wp-caption img {
  1760. margin: 5px 5px 0;
  1761. }
  1762. #content .wp-caption p.wp-caption-text {
  1763. color: #888;
  1764. font-size: 12px;
  1765. margin: 5px;
  1766. }
  1767. #content .gallery {
  1768. margin: 0 auto 18px;
  1769. }
  1770. #content .gallery .gallery-item {
  1771. float: left;
  1772. margin-top: 0;
  1773. text-align: center;
  1774. width: 33%;
  1775. }
  1776. #content .gallery img {
  1777. border: 2px solid #cfcfcf;
  1778. }
  1779. #content .gallery .gallery-caption {
  1780. color: #888;
  1781. font-size: 12px;
  1782. margin: 0 0 12px;
  1783. }
  1784. #content .gallery dl {
  1785. margin: 0;
  1786. }
  1787. #content .gallery img {
  1788. border: 10px solid #f1f1f1;
  1789. }
  1790. #content .gallery br+br {
  1791. display: none;
  1792. }
  1793. #content .attachment img {
  1794. display: block;
  1795. margin: 0 auto;
  1796. }
  1797. /*============================================
  1798. Pagination
  1799. ==============================================*/
  1800. .navigation {
  1801. color: #888;
  1802. font-size: 12px;
  1803. line-height: 18px;
  1804. overflow: hidden;
  1805. clear: both;
  1806. }
  1807. .navigation a:link,
  1808. .navigation a:visited {
  1809. color: #888;
  1810. text-decoration: none;
  1811. }
  1812. .navigation a:active,
  1813. .navigation a:hover {
  1814. color: #ff4b33;
  1815. }
  1816. .nav-previous {
  1817. float: left;
  1818. width: 50%;
  1819. margin: 0 0 15px 0;
  1820. }
  1821. .nav-next {
  1822. float: right;
  1823. text-align: right;
  1824. width: 50%;
  1825. }
  1826. #nav-above {
  1827. margin: 0 0 18px 0;
  1828. }
  1829. #nav-above {
  1830. display: none;
  1831. }
  1832. .paged #nav-above,
  1833. .single #nav-above {
  1834. display: block;
  1835. }
  1836. #nav-below {
  1837. margin: 50px 0 0px;
  1838. padding: 20px 10px 0;
  1839. border-top: 1px solid #cecece;
  1840. }
  1841. .pagination {
  1842. margin-top: 40px;
  1843. border-top: 1px solid #cecece;
  1844. padding: 20px 0 0;
  1845. }
  1846. .pagination a {
  1847. padding: 4px 5px;
  1848. color: #fff;
  1849. font-weight: bold;
  1850. font-size: 16px;
  1851. }
  1852. .pagination a:active {
  1853. padding: 4px 5px;
  1854. background: #707071;
  1855. color:#fff;
  1856. }
  1857. .pagination a:hover {
  1858. padding: 4px 5px;
  1859. background: #fff;
  1860. color: #ec0000;
  1861. }
  1862. .pagination a.next,
  1863. .pagination a.prev {
  1864. padding: 4px 7px;
  1865. color: #ec0000;
  1866. font-weight: bold;
  1867. font-size: 27px;
  1868. }
  1869. .pagination .current {
  1870. padding: 4px 5px;
  1871. background: #fff;
  1872. color: #ec0000;
  1873. font-weight: bold;
  1874. font-size: 16px;
  1875. }
  1876. /*============================================
  1877. Footer
  1878. ==============================================*/
  1879. /*============================================
  1880. Forms
  1881. ==============================================*/
  1882. .text-field {
  1883. width: 50%;
  1884. float: left;
  1885. display: block;
  1886. -webkit-box-sizing: border-box;
  1887. -moz-box-sizing: border-box;
  1888. box-sizing: border-box;
  1889. position: relative;
  1890. }
  1891. .text-field > strong {
  1892. display: block;
  1893. font-weight: bold;
  1894. color: white;
  1895. font-size: 0.85em;
  1896. margin-top: -3px;
  1897. }
  1898. .text-field > strong > i {
  1899. font-weight: normal;
  1900. font-style: italic;
  1901. font-family: playfair display, serif;
  1902. font-size: 0.9em;
  1903. opacity: 0.8;
  1904. }
  1905. .text-field .req {
  1906. position: relative;
  1907. top: 4px;
  1908. left: 4px;
  1909. color: #1a8;
  1910. opacity: 0.5;
  1911. }
  1912. .text-field [type='email'],
  1913. .text-field [type='text'] {
  1914. -webkit-box-sizing: border-box;
  1915. -moz-box-sizing: border-box;
  1916. box-sizing: border-box;
  1917. -webkit-transition: all 200ms linear;
  1918. transition: all 200ms linear;
  1919. }
  1920. .text-field [type='email']::-webkit-input-placeholder,
  1921. .text-field [type='text']::-webkit-input-placeholder {
  1922. color: rgba(250, 250, 250, 0.2);
  1923. font-weight: normal;
  1924. }
  1925. .text-field [type='email']::-moz-placeholder,
  1926. .text-field [type='text']::-moz-placeholder {
  1927. color: rgba(250, 250, 250, 0.2);
  1928. font-weight: normal;
  1929. }
  1930. .text-field [type='email']:-ms-input-placeholder,
  1931. .text-field [type='text']:-ms-input-placeholder {
  1932. color: rgba(250, 250, 250, 0.2);
  1933. font-weight: normal;
  1934. }
  1935. .text-field [type='email']::placeholder,
  1936. .text-field [type='text']::placeholder {
  1937. color: rgba(250, 250, 250, 0.2);
  1938. font-weight: normal;
  1939. }
  1940. .text-field [type='email'],
  1941. .text-field [type='text'] {
  1942. background: transparent;
  1943. border: 0;
  1944. padding: 5px 0;
  1945. border-bottom: solid 1px rgba(250, 250, 250, 0.2);
  1946. margin: 5px 5px 5px 0;
  1947. color: #1d8;
  1948. font-weight: bold;
  1949. }
  1950. .text-field [type='email']:hover,
  1951. .text-field [type='text']:hover {
  1952. border-bottom-color: rgba(250, 250, 250, 0.5);
  1953. outline: 0;
  1954. }
  1955. .text-field [type='email']:focus,
  1956. .text-field [type='text']:focus {
  1957. color: #1d8;
  1958. border-bottom-color: #1d8;
  1959. outline: 0;
  1960. }
  1961. @media (min-width: 768px) {
  1962. .text-field [type='email'],
  1963. .text-field [type='text'] {
  1964. width: 92%;
  1965. }
  1966. }
  1967. form .actions button{
  1968. margin: 20px 0;
  1969. }
  1970. /*============================================
  1971. Music
  1972. ==============================================*/
  1973. .albums {
  1974. position: relative;
  1975. }
  1976. .albums:after {
  1977. content: "";
  1978. display: table;
  1979. clear: both;
  1980. }
  1981. .album {
  1982. float: left;
  1983. height: auto;
  1984. position: relative;
  1985. font-size: 12px;
  1986. -webkit-transition: -webkit-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1987. -moz-transition: -moz-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1988. -ms-transition: -ms-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1989. -o-transition: -o-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1990. transition: transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1991. -webkit-perspective: 600px;
  1992. perspective: 600px;
  1993. }
  1994. .album img {
  1995. width: 100%;
  1996. height: auto;
  1997. }
  1998. .album h1, .album h2, .album h3 {
  1999. font-size: 13px;
  2000. line-height: 15px;
  2001. }
  2002. .album .front, .album .back {
  2003. float: none;
  2004. width: 100%;
  2005. height: auto;
  2006. -webkit-transform-style: preserve-3d;
  2007. transform-style: preserve-3d;
  2008. -webkit-transition: -webkit-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  2009. -moz-transition: -moz-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  2010. -ms-transition: -ms-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  2011. -o-transition: -o-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  2012. transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  2013. }
  2014. .album .front {
  2015. z-index: 1;
  2016. -webkit-transform: rotateY(0deg);
  2017. -moz-transform: rotateY(0deg);
  2018. -ms-transform: rotateY(0deg);
  2019. -o-transform: rotateY(0deg);
  2020. transform: rotateY(0deg);
  2021. }
  2022. .album .front .alpha {
  2023. -webkit-transition: opacity 0.4s ease-in-out;
  2024. -moz-transition: opacity 0.4s ease-in-out;
  2025. -ms-transition: opacity 0.4s ease-in-out;
  2026. -o-transition: opacity 0.4s ease-in-out;
  2027. transition: opacity 0.4s ease-in-out;
  2028. display: block;
  2029. content: '';
  2030. height: 100%;
  2031. width: 100%;
  2032. position: absolute;
  2033. top: 0;
  2034. left: 0;
  2035. background: rgba(255, 255, 255, 0.85);
  2036. opacity: 0;
  2037. }
  2038. .album .back {
  2039. position: absolute;
  2040. top: 0;
  2041. left: 0;
  2042. z-index: 0;
  2043. text-align: center;
  2044. font-family: sans-serif;
  2045. padding: 10px;
  2046. opacity: 0;
  2047. -webkit-box-sizing: border-box;
  2048. -moz-box-sizing: border-box;
  2049. box-sizing: border-box;
  2050. -webkit-backface-visibility: hidden;
  2051. backface-visibility: hidden;
  2052. -webkit-transform: rotateY(-180deg);
  2053. -moz-transform: rotateY(-180deg);
  2054. -ms-transform: rotateY(-180deg);
  2055. -o-transform: rotateY(-180deg);
  2056. transform: rotateY(-180deg);
  2057. }
  2058. .album.flip {
  2059. -webkit-transform: scale(1.1, 1.1);
  2060. -moz-transform: scale(1.1, 1.1);
  2061. -ms-transform: scale(1.1, 1.1);
  2062. -o-transform: scale(1.1, 1.1);
  2063. transform: scale(1.1, 1.1);
  2064. z-index: 10;
  2065. }
  2066. .album.flip .front {
  2067. -webkit-transform: rotateY(180deg);
  2068. -moz-transform: rotateY(180deg);
  2069. -ms-transform: rotateY(180deg);
  2070. -o-transform: rotateY(180deg);
  2071. transform: rotateY(180deg);
  2072. }
  2073. .album.flip .front .alpha {
  2074. opacity: 1;
  2075. }
  2076. .album.flip .back {
  2077. z-index: 2;
  2078. opacity: 1;
  2079. -webkit-transform: rotateY(0deg);
  2080. -moz-transform: rotateY(0deg);
  2081. -ms-transform: rotateY(0deg);
  2082. -o-transform: rotateY(0deg);
  2083. transform: rotateY(0deg);
  2084. }
  2085. .album {
  2086. width: 20%;
  2087. -webkit-text-size-adjust: none;
  2088. }
  2089. #music li.list-group-item {
  2090. padding: 5px 15px;
  2091. font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  2092. font-size: 12px;
  2093. }
  2094. #music.entry-content ul {
  2095. margin:0 0 24px;
  2096. }
  2097. @media screen and (max-width: 768px) {
  2098. .album h1, .album h2, .album h3 {
  2099. font-size: 13px;
  2100. line-height: 15px;
  2101. }
  2102. .album {
  2103. width: 25%;
  2104. }
  2105. }
  2106. @media screen and (min-width: 992px) {
  2107. .album h1, .album h2, .album h3 {
  2108. font-size: 15px;
  2109. line-height: 17px;
  2110. }
  2111. }
  2112. .doughnut-legend li span {
  2113. display: block;
  2114. width: 14px;
  2115. height: 14px;
  2116. border-radius: 7px;
  2117. float: left;
  2118. margin-top: 4px;
  2119. margin-right: 8px;
  2120. }
  2121. .doughnut-legend {
  2122. font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  2123. list-style: none;
  2124. margin: 0;
  2125. padding: 0;
  2126. font-size: 14px;
  2127. margin-top : 20px;
  2128. }
  2129. div#player{
  2130. width: 100%;
  2131. color: #555555;
  2132. font-family: 'PT Sans', sans-serif;
  2133. font-weight: 700;
  2134. font-size: 12px;
  2135. }
  2136. #song-information{
  2137. text-align: left;
  2138. margin: 0 0 10px;
  2139. }
  2140. #controls{
  2141. float: left;
  2142. }
  2143. #amplitude-volume-slider{
  2144. width: 90%;
  2145. float: right;
  2146. }
  2147. #amplitude-play-pause{
  2148. width: 15px;
  2149. height: 17px;
  2150. margin: 0 5px 0 0;
  2151. cursor: pointer;
  2152. float: right;
  2153. }
  2154. #amplitude-current-time{
  2155. font-family: 'PT Sans', sans-serif;
  2156. font-size: 14px;
  2157. font-weight: 400;
  2158. }
  2159. .amplitude-paused{
  2160. background-image: url('img/small-gray-play.png');
  2161. background-repeat: no-repeat;
  2162. }
  2163. .amplitude-playing{
  2164. background-image: url('img/small-gray-pause.png');
  2165. background-repeat: no-repeat;
  2166. }
  2167. #amplitude-now-playing-name{
  2168. }
  2169. #amplitude-now-playing-listeners{
  2170. }
  2171. #amplitude-now-playing-bitrate{
  2172. }
  2173. /*============================================
  2174. Font Awesome
  2175. ==============================================*/
  2176. @font-face {
  2177. font-family: 'FontAwesome';
  2178. src: url('fonts/fontawesome-webfont.eot?v=4.2.0');
  2179. src: url('fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'),
  2180. url('fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'),
  2181. url('fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'),
  2182. url('fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
  2183. font-weight: normal;
  2184. font-style: normal;
  2185. }
  2186. .fa {
  2187. display: inline-block;
  2188. font: normal normal normal 14px/1 FontAwesome;
  2189. font-size: inherit;
  2190. text-rendering: auto;
  2191. -webkit-font-smoothing: antialiased;
  2192. -moz-osx-font-smoothing: grayscale;
  2193. }
  2194. /* makes the font 33% larger relative to the icon container */
  2195. .fa-lg {
  2196. font-size: 1.33333333em;
  2197. line-height: 0.75em;
  2198. vertical-align: -15%;
  2199. }
  2200. .fa-2x {
  2201. font-size: 2em;
  2202. }
  2203. .fa-3x {
  2204. font-size: 3em;
  2205. }
  2206. .fa-4x {
  2207. font-size: 4em;
  2208. }
  2209. .fa-5x {
  2210. font-size: 5em;
  2211. }
  2212. .fa-fw {
  2213. width: 1.28571429em;
  2214. text-align: center;
  2215. }
  2216. .fa-ul {
  2217. padding-left: 0;
  2218. margin-left: 2.14285714em;
  2219. list-style-type: none;
  2220. }
  2221. .fa-ul > li {
  2222. position: relative;
  2223. }
  2224. .fa-li {
  2225. position: absolute;
  2226. left: -2.14285714em;
  2227. width: 2.14285714em;
  2228. top: 0.14285714em;
  2229. text-align: center;
  2230. }
  2231. .fa-li.fa-lg {
  2232. left: -1.85714286em;
  2233. }
  2234. .fa-border {
  2235. padding: .2em .25em .15em;
  2236. border: solid 0.08em #eeeeee;
  2237. border-radius: .1em;
  2238. }
  2239. .pull-right {
  2240. float: right;
  2241. }
  2242. .pull-left {
  2243. float: left;
  2244. }
  2245. .fa.pull-left {
  2246. margin-right: .3em;
  2247. }
  2248. .fa.pull-right {
  2249. margin-left: .3em;
  2250. }
  2251. .fa-spin {
  2252. -webkit-animation: fa-spin 2s infinite linear;
  2253. animation: fa-spin 2s infinite linear;
  2254. }
  2255. @-webkit-keyframes fa-spin {
  2256. 0% {
  2257. -webkit-transform: rotate(0deg);
  2258. transform: rotate(0deg);
  2259. }
  2260. 100% {
  2261. -webkit-transform: rotate(359deg);
  2262. transform: rotate(359deg);
  2263. }
  2264. }
  2265. @keyframes fa-spin {
  2266. 0% {
  2267. -webkit-transform: rotate(0deg);
  2268. transform: rotate(0deg);
  2269. }
  2270. 100% {
  2271. -webkit-transform: rotate(359deg);
  2272. transform: rotate(359deg);
  2273. }
  2274. }
  2275. .fa-rotate-90 {
  2276. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  2277. -webkit-transform: rotate(90deg);
  2278. -ms-transform: rotate(90deg);
  2279. transform: rotate(90deg);
  2280. }
  2281. .fa-rotate-180 {
  2282. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  2283. -webkit-transform: rotate(180deg);
  2284. -ms-transform: rotate(180deg);
  2285. transform: rotate(180deg);
  2286. }
  2287. .fa-rotate-270 {
  2288. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  2289. -webkit-transform: rotate(270deg);
  2290. -ms-transform: rotate(270deg);
  2291. transform: rotate(270deg);
  2292. }
  2293. .fa-flip-horizontal {
  2294. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  2295. -webkit-transform: scale(-1, 1);
  2296. -ms-transform: scale(-1, 1);
  2297. transform: scale(-1, 1);
  2298. }
  2299. .fa-flip-vertical {
  2300. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  2301. -webkit-transform: scale(1, -1);
  2302. -ms-transform: scale(1, -1);
  2303. transform: scale(1, -1);
  2304. }
  2305. :root .fa-rotate-90,
  2306. :root .fa-rotate-180,
  2307. :root .fa-rotate-270,
  2308. :root .fa-flip-horizontal,
  2309. :root .fa-flip-vertical {
  2310. filter: none;
  2311. }
  2312. .fa-stack {
  2313. position: relative;
  2314. display: inline-block;
  2315. width: 2em;
  2316. height: 2em;
  2317. line-height: 2em;
  2318. vertical-align: middle;
  2319. }
  2320. .fa-stack-1x,
  2321. .fa-stack-2x {
  2322. position: absolute;
  2323. left: 0;
  2324. width: 100%;
  2325. text-align: center;
  2326. }
  2327. .fa-stack-1x {
  2328. line-height: inherit;
  2329. }
  2330. .fa-stack-2x {
  2331. font-size: 2em;
  2332. }
  2333. .fa-inverse {
  2334. color: #ffffff;
  2335. }
  2336. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  2337. readers do not read off random characters that represent icons */
  2338. .fa-glass:before {
  2339. content: "\f000";
  2340. }
  2341. .fa-music:before {
  2342. content: "\f001";
  2343. }
  2344. .fa-search:before {
  2345. content: "\f002";
  2346. }
  2347. .fa-envelope-o:before {
  2348. content: "\f003";
  2349. }
  2350. .fa-heart:before {
  2351. content: "\f004";
  2352. }
  2353. .fa-star:before {
  2354. content: "\f005";
  2355. }
  2356. .fa-star-o:before {
  2357. content: "\f006";
  2358. }
  2359. .fa-user:before {
  2360. content: "\f007";
  2361. }
  2362. .fa-film:before {
  2363. content: "\f008";
  2364. }
  2365. .fa-th-large:before {
  2366. content: "\f009";
  2367. }
  2368. .fa-th:before {
  2369. content: "\f00a";
  2370. }
  2371. .fa-th-list:before {
  2372. content: "\f00b";
  2373. }
  2374. .fa-check:before {
  2375. content: "\f00c";
  2376. }
  2377. .fa-remove:before,
  2378. .fa-close:before,
  2379. .fa-times:before {
  2380. content: "\f00d";
  2381. }
  2382. .fa-search-plus:before {
  2383. content: "\f00e";
  2384. }
  2385. .fa-search-minus:before {
  2386. content: "\f010";
  2387. }
  2388. .fa-power-off:before {
  2389. content: "\f011";
  2390. }
  2391. .fa-signal:before {
  2392. content: "\f012";
  2393. }
  2394. .fa-gear:before,
  2395. .fa-cog:before {
  2396. content: "\f013";
  2397. }
  2398. .fa-trash-o:before {
  2399. content: "\f014";
  2400. }
  2401. .fa-home:before {
  2402. content: "\f015";
  2403. }
  2404. .fa-file-o:before {
  2405. content: "\f016";
  2406. }
  2407. .fa-clock-o:before {
  2408. content: "\f017";
  2409. }
  2410. .fa-road:before {
  2411. content: "\f018";
  2412. }
  2413. .fa-download:before {
  2414. content: "\f019";
  2415. }
  2416. .fa-arrow-circle-o-down:before {
  2417. content: "\f01a";
  2418. }
  2419. .fa-arrow-circle-o-up:before {
  2420. content: "\f01b";
  2421. }
  2422. .fa-inbox:before {
  2423. content: "\f01c";
  2424. }
  2425. .fa-play-circle-o:before {
  2426. content: "\f01d";
  2427. }
  2428. .fa-rotate-right:before,
  2429. .fa-repeat:before {
  2430. content: "\f01e";
  2431. }
  2432. .fa-refresh:before {
  2433. content: "\f021";
  2434. }
  2435. .fa-list-alt:before {
  2436. content: "\f022";
  2437. }
  2438. .fa-lock:before {
  2439. content: "\f023";
  2440. }
  2441. .fa-flag:before {
  2442. content: "\f024";
  2443. }
  2444. .fa-headphones:before {
  2445. content: "\f025";
  2446. }
  2447. .fa-volume-off:before {
  2448. content: "\f026";
  2449. }
  2450. .fa-volume-down:before {
  2451. content: "\f027";
  2452. }
  2453. .fa-volume-up:before {
  2454. content: "\f028";
  2455. }
  2456. .fa-qrcode:before {
  2457. content: "\f029";
  2458. }
  2459. .fa-barcode:before {
  2460. content: "\f02a";
  2461. }
  2462. .fa-tag:before {
  2463. content: "\f02b";
  2464. }
  2465. .fa-tags:before {
  2466. content: "\f02c";
  2467. }
  2468. .fa-book:before {
  2469. content: "\f02d";
  2470. }
  2471. .fa-bookmark:before {
  2472. content: "\f02e";
  2473. }
  2474. .fa-print:before {
  2475. content: "\f02f";
  2476. }
  2477. .fa-camera:before {
  2478. content: "\f030";
  2479. }
  2480. .fa-font:before {
  2481. content: "\f031";
  2482. }
  2483. .fa-bold:before {
  2484. content: "\f032";
  2485. }
  2486. .fa-italic:before {
  2487. content: "\f033";
  2488. }
  2489. .fa-text-height:before {
  2490. content: "\f034";
  2491. }
  2492. .fa-text-width:before {
  2493. content: "\f035";
  2494. }
  2495. .fa-align-left:before {
  2496. content: "\f036";
  2497. }
  2498. .fa-align-center:before {
  2499. content: "\f037";
  2500. }
  2501. .fa-align-right:before {
  2502. content: "\f038";
  2503. }
  2504. .fa-align-justify:before {
  2505. content: "\f039";
  2506. }
  2507. .fa-list:before {
  2508. content: "\f03a";
  2509. }
  2510. .fa-dedent:before,
  2511. .fa-outdent:before {
  2512. content: "\f03b";
  2513. }
  2514. .fa-indent:before {
  2515. content: "\f03c";
  2516. }
  2517. .fa-video-camera:before {
  2518. content: "\f03d";
  2519. }
  2520. .fa-photo:before,
  2521. .fa-image:before,
  2522. .fa-picture-o:before {
  2523. content: "\f03e";
  2524. }
  2525. .fa-pencil:before {
  2526. content: "\f040";
  2527. }
  2528. .fa-map-marker:before {
  2529. content: "\f041";
  2530. }
  2531. .fa-adjust:before {
  2532. content: "\f042";
  2533. }
  2534. .fa-tint:before {
  2535. content: "\f043";
  2536. }
  2537. .fa-edit:before,
  2538. .fa-pencil-square-o:before {
  2539. content: "\f044";
  2540. }
  2541. .fa-share-square-o:before {
  2542. content: "\f045";
  2543. }
  2544. .fa-check-square-o:before {
  2545. content: "\f046";
  2546. }
  2547. .fa-arrows:before {
  2548. content: "\f047";
  2549. }
  2550. .fa-step-backward:before {
  2551. content: "\f048";
  2552. }
  2553. .fa-fast-backward:before {
  2554. content: "\f049";
  2555. }
  2556. .fa-backward:before {
  2557. content: "\f04a";
  2558. }
  2559. .fa-play:before {
  2560. content: "\f04b";
  2561. }
  2562. .fa-pause:before {
  2563. content: "\f04c";
  2564. }
  2565. .fa-stop:before {
  2566. content: "\f04d";
  2567. }
  2568. .fa-forward:before {
  2569. content: "\f04e";
  2570. }
  2571. .fa-fast-forward:before {
  2572. content: "\f050";
  2573. }
  2574. .fa-step-forward:before {
  2575. content: "\f051";
  2576. }
  2577. .fa-eject:before {
  2578. content: "\f052";
  2579. }
  2580. .fa-chevron-left:before {
  2581. content: "\f053";
  2582. }
  2583. .fa-chevron-right:before {
  2584. content: "\f054";
  2585. }
  2586. .fa-plus-circle:before {
  2587. content: "\f055";
  2588. }
  2589. .fa-minus-circle:before {
  2590. content: "\f056";
  2591. }
  2592. .fa-times-circle:before {
  2593. content: "\f057";
  2594. }
  2595. .fa-check-circle:before {
  2596. content: "\f058";
  2597. }
  2598. .fa-question-circle:before {
  2599. content: "\f059";
  2600. }
  2601. .fa-info-circle:before {
  2602. content: "\f05a";
  2603. }
  2604. .fa-crosshairs:before {
  2605. content: "\f05b";
  2606. }
  2607. .fa-times-circle-o:before {
  2608. content: "\f05c";
  2609. }
  2610. .fa-check-circle-o:before {
  2611. content: "\f05d";
  2612. }
  2613. .fa-ban:before {
  2614. content: "\f05e";
  2615. }
  2616. .fa-arrow-left:before {
  2617. content: "\f060";
  2618. }
  2619. .fa-arrow-right:before {
  2620. content: "\f061";
  2621. }
  2622. .fa-arrow-up:before {
  2623. content: "\f062";
  2624. }
  2625. .fa-arrow-down:before {
  2626. content: "\f063";
  2627. }
  2628. .fa-mail-forward:before,
  2629. .fa-share:before {
  2630. content: "\f064";
  2631. }
  2632. .fa-expand:before {
  2633. content: "\f065";
  2634. }
  2635. .fa-compress:before {
  2636. content: "\f066";
  2637. }
  2638. .fa-plus:before {
  2639. content: "\f067";
  2640. }
  2641. .fa-minus:before {
  2642. content: "\f068";
  2643. }
  2644. .fa-asterisk:before {
  2645. content: "\f069";
  2646. }
  2647. .fa-exclamation-circle:before {
  2648. content: "\f06a";
  2649. }
  2650. .fa-gift:before {
  2651. content: "\f06b";
  2652. }
  2653. .fa-leaf:before {
  2654. content: "\f06c";
  2655. }
  2656. .fa-fire:before {
  2657. content: "\f06d";
  2658. }
  2659. .fa-eye:before {
  2660. content: "\f06e";
  2661. }
  2662. .fa-eye-slash:before {
  2663. content: "\f070";
  2664. }
  2665. .fa-warning:before,
  2666. .fa-exclamation-triangle:before {
  2667. content: "\f071";
  2668. }
  2669. .fa-plane:before {
  2670. content: "\f072";
  2671. }
  2672. .fa-calendar:before {
  2673. content: "\f073";
  2674. }
  2675. .fa-random:before {
  2676. content: "\f074";
  2677. }
  2678. .fa-comment:before {
  2679. content: "\f075";
  2680. }
  2681. .fa-magnet:before {
  2682. content: "\f076";
  2683. }
  2684. .fa-chevron-up:before {
  2685. content: "\f077";
  2686. }
  2687. .fa-chevron-down:before {
  2688. content: "\f078";
  2689. }
  2690. .fa-retweet:before {
  2691. content: "\f079";
  2692. }
  2693. .fa-shopping-cart:before {
  2694. content: "\f07a";
  2695. }
  2696. .fa-folder:before {
  2697. content: "\f07b";
  2698. }
  2699. .fa-folder-open:before {
  2700. content: "\f07c";
  2701. }
  2702. .fa-arrows-v:before {
  2703. content: "\f07d";
  2704. }
  2705. .fa-arrows-h:before {
  2706. content: "\f07e";
  2707. }
  2708. .fa-bar-chart-o:before,
  2709. .fa-bar-chart:before {
  2710. content: "\f080";
  2711. }
  2712. .fa-twitter-square:before {
  2713. content: "\f081";
  2714. }
  2715. .fa-facebook-square:before {
  2716. content: "\f082";
  2717. }
  2718. .fa-camera-retro:before {
  2719. content: "\f083";
  2720. }
  2721. .fa-key:before {
  2722. content: "\f084";
  2723. }
  2724. .fa-gears:before,
  2725. .fa-cogs:before {
  2726. content: "\f085";
  2727. }
  2728. .fa-comments:before {
  2729. content: "\f086";
  2730. }
  2731. .fa-thumbs-o-up:before {
  2732. content: "\f087";
  2733. }
  2734. .fa-thumbs-o-down:before {
  2735. content: "\f088";
  2736. }
  2737. .fa-star-half:before {
  2738. content: "\f089";
  2739. }
  2740. .fa-heart-o:before {
  2741. content: "\f08a";
  2742. }
  2743. .fa-sign-out:before {
  2744. content: "\f08b";
  2745. }
  2746. .fa-linkedin-square:before {
  2747. content: "\f08c";
  2748. }
  2749. .fa-thumb-tack:before {
  2750. content: "\f08d";
  2751. }
  2752. .fa-external-link:before {
  2753. content: "\f08e";
  2754. }
  2755. .fa-sign-in:before {
  2756. content: "\f090";
  2757. }
  2758. .fa-trophy:before {
  2759. content: "\f091";
  2760. }
  2761. .fa-github-square:before {
  2762. content: "\f092";
  2763. }
  2764. .fa-upload:before {
  2765. content: "\f093";
  2766. }
  2767. .fa-lemon-o:before {
  2768. content: "\f094";
  2769. }
  2770. .fa-phone:before {
  2771. content: "\f095";
  2772. }
  2773. .fa-square-o:before {
  2774. content: "\f096";
  2775. }
  2776. .fa-bookmark-o:before {
  2777. content: "\f097";
  2778. }
  2779. .fa-phone-square:before {
  2780. content: "\f098";
  2781. }
  2782. .fa-twitter:before {
  2783. content: "\f099";
  2784. }
  2785. .fa-facebook:before {
  2786. content: "\f09a";
  2787. }
  2788. .fa-github:before {
  2789. content: "\f09b";
  2790. }
  2791. .fa-unlock:before {
  2792. content: "\f09c";
  2793. }
  2794. .fa-credit-card:before {
  2795. content: "\f09d";
  2796. }
  2797. .fa-rss:before {
  2798. content: "\f09e";
  2799. }
  2800. .fa-hdd-o:before {
  2801. content: "\f0a0";
  2802. }
  2803. .fa-bullhorn:before {
  2804. content: "\f0a1";
  2805. }
  2806. .fa-bell:before {
  2807. content: "\f0f3";
  2808. }
  2809. .fa-certificate:before {
  2810. content: "\f0a3";
  2811. }
  2812. .fa-hand-o-right:before {
  2813. content: "\f0a4";
  2814. }
  2815. .fa-hand-o-left:before {
  2816. content: "\f0a5";
  2817. }
  2818. .fa-hand-o-up:before {
  2819. content: "\f0a6";
  2820. }
  2821. .fa-hand-o-down:before {
  2822. content: "\f0a7";
  2823. }
  2824. .fa-arrow-circle-left:before {
  2825. content: "\f0a8";
  2826. }
  2827. .fa-arrow-circle-right:before {
  2828. content: "\f0a9";
  2829. }
  2830. .fa-arrow-circle-up:before {
  2831. content: "\f0aa";
  2832. }
  2833. .fa-arrow-circle-down:before {
  2834. content: "\f0ab";
  2835. }
  2836. .fa-globe:before {
  2837. content: "\f0ac";
  2838. }
  2839. .fa-wrench:before {
  2840. content: "\f0ad";
  2841. }
  2842. .fa-tasks:before {
  2843. content: "\f0ae";
  2844. }
  2845. .fa-filter:before {
  2846. content: "\f0b0";
  2847. }
  2848. .fa-briefcase:before {
  2849. content: "\f0b1";
  2850. }
  2851. .fa-arrows-alt:before {
  2852. content: "\f0b2";
  2853. }
  2854. .fa-group:before,
  2855. .fa-users:before {
  2856. content: "\f0c0";
  2857. }
  2858. .fa-chain:before,
  2859. .fa-link:before {
  2860. content: "\f0c1";
  2861. }
  2862. .fa-cloud:before {
  2863. content: "\f0c2";
  2864. }
  2865. .fa-flask:before {
  2866. content: "\f0c3";
  2867. }
  2868. .fa-cut:before,
  2869. .fa-scissors:before {
  2870. content: "\f0c4";
  2871. }
  2872. .fa-copy:before,
  2873. .fa-files-o:before {
  2874. content: "\f0c5";
  2875. }
  2876. .fa-paperclip:before {
  2877. content: "\f0c6";
  2878. }
  2879. .fa-save:before,
  2880. .fa-floppy-o:before {
  2881. content: "\f0c7";
  2882. }
  2883. .fa-square:before {
  2884. content: "\f0c8";
  2885. }
  2886. .fa-navicon:before,
  2887. .fa-reorder:before,
  2888. .fa-bars:before {
  2889. content: "\f0c9";
  2890. }
  2891. .fa-list-ul:before {
  2892. content: "\f0ca";
  2893. }
  2894. .fa-list-ol:before {
  2895. content: "\f0cb";
  2896. }
  2897. .fa-strikethrough:before {
  2898. content: "\f0cc";
  2899. }
  2900. .fa-underline:before {
  2901. content: "\f0cd";
  2902. }
  2903. .fa-table:before {
  2904. content: "\f0ce";
  2905. }
  2906. .fa-magic:before {
  2907. content: "\f0d0";
  2908. }
  2909. .fa-truck:before {
  2910. content: "\f0d1";
  2911. }
  2912. .fa-pinterest:before {
  2913. content: "\f0d2";
  2914. }
  2915. .fa-pinterest-square:before {
  2916. content: "\f0d3";
  2917. }
  2918. .fa-google-plus-square:before {
  2919. content: "\f0d4";
  2920. }
  2921. .fa-google-plus:before {
  2922. content: "\f0d5";
  2923. }
  2924. .fa-money:before {
  2925. content: "\f0d6";
  2926. }
  2927. .fa-caret-down:before {
  2928. content: "\f0d7";
  2929. }
  2930. .fa-caret-up:before {
  2931. content: "\f0d8";
  2932. }
  2933. .fa-caret-left:before {
  2934. content: "\f0d9";
  2935. }
  2936. .fa-caret-right:before {
  2937. content: "\f0da";
  2938. }
  2939. .fa-columns:before {
  2940. content: "\f0db";
  2941. }
  2942. .fa-unsorted:before,
  2943. .fa-sort:before {
  2944. content: "\f0dc";
  2945. }
  2946. .fa-sort-down:before,
  2947. .fa-sort-desc:before {
  2948. content: "\f0dd";
  2949. }
  2950. .fa-sort-up:before,
  2951. .fa-sort-asc:before {
  2952. content: "\f0de";
  2953. }
  2954. .fa-envelope:before {
  2955. content: "\f0e0";
  2956. }
  2957. .fa-linkedin:before {
  2958. content: "\f0e1";
  2959. }
  2960. .fa-rotate-left:before,
  2961. .fa-undo:before {
  2962. content: "\f0e2";
  2963. }
  2964. .fa-legal:before,
  2965. .fa-gavel:before {
  2966. content: "\f0e3";
  2967. }
  2968. .fa-dashboard:before,
  2969. .fa-tachometer:before {
  2970. content: "\f0e4";
  2971. }
  2972. .fa-comment-o:before {
  2973. content: "\f0e5";
  2974. }
  2975. .fa-comments-o:before {
  2976. content: "\f0e6";
  2977. }
  2978. .fa-flash:before,
  2979. .fa-bolt:before {
  2980. content: "\f0e7";
  2981. }
  2982. .fa-sitemap:before {
  2983. content: "\f0e8";
  2984. }
  2985. .fa-umbrella:before {
  2986. content: "\f0e9";
  2987. }
  2988. .fa-paste:before,
  2989. .fa-clipboard:before {
  2990. content: "\f0ea";
  2991. }
  2992. .fa-lightbulb-o:before {
  2993. content: "\f0eb";
  2994. }
  2995. .fa-exchange:before {
  2996. content: "\f0ec";
  2997. }
  2998. .fa-cloud-download:before {
  2999. content: "\f0ed";
  3000. }
  3001. .fa-cloud-upload:before {
  3002. content: "\f0ee";
  3003. }
  3004. .fa-user-md:before {
  3005. content: "\f0f0";
  3006. }
  3007. .fa-stethoscope:before {
  3008. content: "\f0f1";
  3009. }
  3010. .fa-suitcase:before {
  3011. content: "\f0f2";
  3012. }
  3013. .fa-bell-o:before {
  3014. content: "\f0a2";
  3015. }
  3016. .fa-coffee:before {
  3017. content: "\f0f4";
  3018. }
  3019. .fa-cutlery:before {
  3020. content: "\f0f5";
  3021. }
  3022. .fa-file-text-o:before {
  3023. content: "\f0f6";
  3024. }
  3025. .fa-building-o:before {
  3026. content: "\f0f7";
  3027. }
  3028. .fa-hospital-o:before {
  3029. content: "\f0f8";
  3030. }
  3031. .fa-ambulance:before {
  3032. content: "\f0f9";
  3033. }
  3034. .fa-medkit:before {
  3035. content: "\f0fa";
  3036. }
  3037. .fa-fighter-jet:before {
  3038. content: "\f0fb";
  3039. }
  3040. .fa-beer:before {
  3041. content: "\f0fc";
  3042. }
  3043. .fa-h-square:before {
  3044. content: "\f0fd";
  3045. }
  3046. .fa-plus-square:before {
  3047. content: "\f0fe";
  3048. }
  3049. .fa-angle-double-left:before {
  3050. content: "\f100";
  3051. }
  3052. .fa-angle-double-right:before {
  3053. content: "\f101";
  3054. }
  3055. .fa-angle-double-up:before {
  3056. content: "\f102";
  3057. }
  3058. .fa-angle-double-down:before {
  3059. content: "\f103";
  3060. }
  3061. .fa-angle-left:before {
  3062. content: "\f104";
  3063. }
  3064. .fa-angle-right:before {
  3065. content: "\f105";
  3066. }
  3067. .fa-angle-up:before {
  3068. content: "\f106";
  3069. }
  3070. .fa-angle-down:before {
  3071. content: "\f107";
  3072. }
  3073. .fa-desktop:before {
  3074. content: "\f108";
  3075. }
  3076. .fa-laptop:before {
  3077. content: "\f109";
  3078. }
  3079. .fa-tablet:before {
  3080. content: "\f10a";
  3081. }
  3082. .fa-mobile-phone:before,
  3083. .fa-mobile:before {
  3084. content: "\f10b";
  3085. }
  3086. .fa-circle-o:before {
  3087. content: "\f10c";
  3088. }
  3089. .fa-quote-left:before {
  3090. content: "\f10d";
  3091. }
  3092. .fa-quote-right:before {
  3093. content: "\f10e";
  3094. }
  3095. .fa-spinner:before {
  3096. content: "\f110";
  3097. }
  3098. .fa-circle:before {
  3099. content: "\f111";
  3100. }
  3101. .fa-mail-reply:before,
  3102. .fa-reply:before {
  3103. content: "\f112";
  3104. }
  3105. .fa-github-alt:before {
  3106. content: "\f113";
  3107. }
  3108. .fa-folder-o:before {
  3109. content: "\f114";
  3110. }
  3111. .fa-folder-open-o:before {
  3112. content: "\f115";
  3113. }
  3114. .fa-smile-o:before {
  3115. content: "\f118";
  3116. }
  3117. .fa-frown-o:before {
  3118. content: "\f119";
  3119. }
  3120. .fa-meh-o:before {
  3121. content: "\f11a";
  3122. }
  3123. .fa-gamepad:before {
  3124. content: "\f11b";
  3125. }
  3126. .fa-keyboard-o:before {
  3127. content: "\f11c";
  3128. }
  3129. .fa-flag-o:before {
  3130. content: "\f11d";
  3131. }
  3132. .fa-flag-checkered:before {
  3133. content: "\f11e";
  3134. }
  3135. .fa-terminal:before {
  3136. content: "\f120";
  3137. }
  3138. .fa-code:before {
  3139. content: "\f121";
  3140. }
  3141. .fa-mail-reply-all:before,
  3142. .fa-reply-all:before {
  3143. content: "\f122";
  3144. }
  3145. .fa-star-half-empty:before,
  3146. .fa-star-half-full:before,
  3147. .fa-star-half-o:before {
  3148. content: "\f123";
  3149. }
  3150. .fa-location-arrow:before {
  3151. content: "\f124";
  3152. }
  3153. .fa-crop:before {
  3154. content: "\f125";
  3155. }
  3156. .fa-code-fork:before {
  3157. content: "\f126";
  3158. }
  3159. .fa-unlink:before,
  3160. .fa-chain-broken:before {
  3161. content: "\f127";
  3162. }
  3163. .fa-question:before {
  3164. content: "\f128";
  3165. }
  3166. .fa-info:before {
  3167. content: "\f129";
  3168. }
  3169. .fa-exclamation:before {
  3170. content: "\f12a";
  3171. }
  3172. .fa-superscript:before {
  3173. content: "\f12b";
  3174. }
  3175. .fa-subscript:before {
  3176. content: "\f12c";
  3177. }
  3178. .fa-eraser:before {
  3179. content: "\f12d";
  3180. }
  3181. .fa-puzzle-piece:before {
  3182. content: "\f12e";
  3183. }
  3184. .fa-microphone:before {
  3185. content: "\f130";
  3186. }
  3187. .fa-microphone-slash:before {
  3188. content: "\f131";
  3189. }
  3190. .fa-shield:before {
  3191. content: "\f132";
  3192. }
  3193. .fa-calendar-o:before {
  3194. content: "\f133";
  3195. }
  3196. .fa-fire-extinguisher:before {
  3197. content: "\f134";
  3198. }
  3199. .fa-rocket:before {
  3200. content: "\f135";
  3201. }
  3202. .fa-maxcdn:before {
  3203. content: "\f136";
  3204. }
  3205. .fa-chevron-circle-left:before {
  3206. content: "\f137";
  3207. }
  3208. .fa-chevron-circle-right:before {
  3209. content: "\f138";
  3210. }
  3211. .fa-chevron-circle-up:before {
  3212. content: "\f139";
  3213. }
  3214. .fa-chevron-circle-down:before {
  3215. content: "\f13a";
  3216. }
  3217. .fa-html5:before {
  3218. content: "\f13b";
  3219. }
  3220. .fa-css3:before {
  3221. content: "\f13c";
  3222. }
  3223. .fa-anchor:before {
  3224. content: "\f13d";
  3225. }
  3226. .fa-unlock-alt:before {
  3227. content: "\f13e";
  3228. }
  3229. .fa-bullseye:before {
  3230. content: "\f140";
  3231. }
  3232. .fa-ellipsis-h:before {
  3233. content: "\f141";
  3234. }
  3235. .fa-ellipsis-v:before {
  3236. content: "\f142";
  3237. }
  3238. .fa-rss-square:before {
  3239. content: "\f143";
  3240. }
  3241. .fa-play-circle:before {
  3242. content: "\f144";
  3243. }
  3244. .fa-ticket:before {
  3245. content: "\f145";
  3246. }
  3247. .fa-minus-square:before {
  3248. content: "\f146";
  3249. }
  3250. .fa-minus-square-o:before {
  3251. content: "\f147";
  3252. }
  3253. .fa-level-up:before {
  3254. content: "\f148";
  3255. }
  3256. .fa-level-down:before {
  3257. content: "\f149";
  3258. }
  3259. .fa-check-square:before {
  3260. content: "\f14a";
  3261. }
  3262. .fa-pencil-square:before {
  3263. content: "\f14b";
  3264. }
  3265. .fa-external-link-square:before {
  3266. content: "\f14c";
  3267. }
  3268. .fa-share-square:before {
  3269. content: "\f14d";
  3270. }
  3271. .fa-compass:before {
  3272. content: "\f14e";
  3273. }
  3274. .fa-toggle-down:before,
  3275. .fa-caret-square-o-down:before {
  3276. content: "\f150";
  3277. }
  3278. .fa-toggle-up:before,
  3279. .fa-caret-square-o-up:before {
  3280. content: "\f151";
  3281. }
  3282. .fa-toggle-right:before,
  3283. .fa-caret-square-o-right:before {
  3284. content: "\f152";
  3285. }
  3286. .fa-euro:before,
  3287. .fa-eur:before {
  3288. content: "\f153";
  3289. }
  3290. .fa-gbp:before {
  3291. content: "\f154";
  3292. }
  3293. .fa-dollar:before,
  3294. .fa-usd:before {
  3295. content: "\f155";
  3296. }
  3297. .fa-rupee:before,
  3298. .fa-inr:before {
  3299. content: "\f156";
  3300. }
  3301. .fa-cny:before,
  3302. .fa-rmb:before,
  3303. .fa-yen:before,
  3304. .fa-jpy:before {
  3305. content: "\f157";
  3306. }
  3307. .fa-ruble:before,
  3308. .fa-rouble:before,
  3309. .fa-rub:before {
  3310. content: "\f158";
  3311. }
  3312. .fa-won:before,
  3313. .fa-krw:before {
  3314. content: "\f159";
  3315. }
  3316. .fa-bitcoin:before,
  3317. .fa-btc:before {
  3318. content: "\f15a";
  3319. }
  3320. .fa-file:before {
  3321. content: "\f15b";
  3322. }
  3323. .fa-file-text:before {
  3324. content: "\f15c";
  3325. }
  3326. .fa-sort-alpha-asc:before {
  3327. content: "\f15d";
  3328. }
  3329. .fa-sort-alpha-desc:before {
  3330. content: "\f15e";
  3331. }
  3332. .fa-sort-amount-asc:before {
  3333. content: "\f160";
  3334. }
  3335. .fa-sort-amount-desc:before {
  3336. content: "\f161";
  3337. }
  3338. .fa-sort-numeric-asc:before {
  3339. content: "\f162";
  3340. }
  3341. .fa-sort-numeric-desc:before {
  3342. content: "\f163";
  3343. }
  3344. .fa-thumbs-up:before {
  3345. content: "\f164";
  3346. }
  3347. .fa-thumbs-down:before {
  3348. content: "\f165";
  3349. }
  3350. .fa-youtube-square:before {
  3351. content: "\f166";
  3352. }
  3353. .fa-youtube:before {
  3354. content: "\f167";
  3355. }
  3356. .fa-xing:before {
  3357. content: "\f168";
  3358. }
  3359. .fa-xing-square:before {
  3360. content: "\f169";
  3361. }
  3362. .fa-youtube-play:before {
  3363. content: "\f16a";
  3364. }
  3365. .fa-dropbox:before {
  3366. content: "\f16b";
  3367. }
  3368. .fa-stack-overflow:before {
  3369. content: "\f16c";
  3370. }
  3371. .fa-instagram:before {
  3372. content: "\f16d";
  3373. }
  3374. .fa-flickr:before {
  3375. content: "\f16e";
  3376. }
  3377. .fa-adn:before {
  3378. content: "\f170";
  3379. }
  3380. .fa-bitbucket:before {
  3381. content: "\f171";
  3382. }
  3383. .fa-bitbucket-square:before {
  3384. content: "\f172";
  3385. }
  3386. .fa-tumblr:before {
  3387. content: "\f173";
  3388. }
  3389. .fa-tumblr-square:before {
  3390. content: "\f174";
  3391. }
  3392. .fa-long-arrow-down:before {
  3393. content: "\f175";
  3394. }
  3395. .fa-long-arrow-up:before {
  3396. content: "\f176";
  3397. }
  3398. .fa-long-arrow-left:before {
  3399. content: "\f177";
  3400. }
  3401. .fa-long-arrow-right:before {
  3402. content: "\f178";
  3403. }
  3404. .fa-apple:before {
  3405. content: "\f179";
  3406. }
  3407. .fa-windows:before {
  3408. content: "\f17a";
  3409. }
  3410. .fa-android:before {
  3411. content: "\f17b";
  3412. }
  3413. .fa-linux:before {
  3414. content: "\f17c";
  3415. }
  3416. .fa-dribbble:before {
  3417. content: "\f17d";
  3418. }
  3419. .fa-skype:before {
  3420. content: "\f17e";
  3421. }
  3422. .fa-foursquare:before {
  3423. content: "\f180";
  3424. }
  3425. .fa-trello:before {
  3426. content: "\f181";
  3427. }
  3428. .fa-female:before {
  3429. content: "\f182";
  3430. }
  3431. .fa-male:before {
  3432. content: "\f183";
  3433. }
  3434. .fa-gittip:before {
  3435. content: "\f184";
  3436. }
  3437. .fa-sun-o:before {
  3438. content: "\f185";
  3439. }
  3440. .fa-moon-o:before {
  3441. content: "\f186";
  3442. }
  3443. .fa-archive:before {
  3444. content: "\f187";
  3445. }
  3446. .fa-bug:before {
  3447. content: "\f188";
  3448. }
  3449. .fa-vk:before {
  3450. content: "\f189";
  3451. }
  3452. .fa-weibo:before {
  3453. content: "\f18a";
  3454. }
  3455. .fa-renren:before {
  3456. content: "\f18b";
  3457. }
  3458. .fa-pagelines:before {
  3459. content: "\f18c";
  3460. }
  3461. .fa-stack-exchange:before {
  3462. content: "\f18d";
  3463. }
  3464. .fa-arrow-circle-o-right:before {
  3465. content: "\f18e";
  3466. }
  3467. .fa-arrow-circle-o-left:before {
  3468. content: "\f190";
  3469. }
  3470. .fa-toggle-left:before,
  3471. .fa-caret-square-o-left:before {
  3472. content: "\f191";
  3473. }
  3474. .fa-dot-circle-o:before {
  3475. content: "\f192";
  3476. }
  3477. .fa-wheelchair:before {
  3478. content: "\f193";
  3479. }
  3480. .fa-vimeo-square:before {
  3481. content: "\f194";
  3482. }
  3483. .fa-turkish-lira:before,
  3484. .fa-try:before {
  3485. content: "\f195";
  3486. }
  3487. .fa-plus-square-o:before {
  3488. content: "\f196";
  3489. }
  3490. .fa-space-shuttle:before {
  3491. content: "\f197";
  3492. }
  3493. .fa-slack:before {
  3494. content: "\f198";
  3495. }
  3496. .fa-envelope-square:before {
  3497. content: "\f199";
  3498. }
  3499. .fa-wordpress:before {
  3500. content: "\f19a";
  3501. }
  3502. .fa-openid:before {
  3503. content: "\f19b";
  3504. }
  3505. .fa-institution:before,
  3506. .fa-bank:before,
  3507. .fa-university:before {
  3508. content: "\f19c";
  3509. }
  3510. .fa-mortar-board:before,
  3511. .fa-graduation-cap:before {
  3512. content: "\f19d";
  3513. }
  3514. .fa-yahoo:before {
  3515. content: "\f19e";
  3516. }
  3517. .fa-google:before {
  3518. content: "\f1a0";
  3519. }
  3520. .fa-reddit:before {
  3521. content: "\f1a1";
  3522. }
  3523. .fa-reddit-square:before {
  3524. content: "\f1a2";
  3525. }
  3526. .fa-stumbleupon-circle:before {
  3527. content: "\f1a3";
  3528. }
  3529. .fa-stumbleupon:before {
  3530. content: "\f1a4";
  3531. }
  3532. .fa-delicious:before {
  3533. content: "\f1a5";
  3534. }
  3535. .fa-digg:before {
  3536. content: "\f1a6";
  3537. }
  3538. .fa-pied-piper:before {
  3539. content: "\f1a7";
  3540. }
  3541. .fa-pied-piper-alt:before {
  3542. content: "\f1a8";
  3543. }
  3544. .fa-drupal:before {
  3545. content: "\f1a9";
  3546. }
  3547. .fa-joomla:before {
  3548. content: "\f1aa";
  3549. }
  3550. .fa-language:before {
  3551. content: "\f1ab";
  3552. }
  3553. .fa-fax:before {
  3554. content: "\f1ac";
  3555. }
  3556. .fa-building:before {
  3557. content: "\f1ad";
  3558. }
  3559. .fa-child:before {
  3560. content: "\f1ae";
  3561. }
  3562. .fa-paw:before {
  3563. content: "\f1b0";
  3564. }
  3565. .fa-spoon:before {
  3566. content: "\f1b1";
  3567. }
  3568. .fa-cube:before {
  3569. content: "\f1b2";
  3570. }
  3571. .fa-cubes:before {
  3572. content: "\f1b3";
  3573. }
  3574. .fa-behance:before {
  3575. content: "\f1b4";
  3576. }
  3577. .fa-behance-square:before {
  3578. content: "\f1b5";
  3579. }
  3580. .fa-steam:before {
  3581. content: "\f1b6";
  3582. }
  3583. .fa-steam-square:before {
  3584. content: "\f1b7";
  3585. }
  3586. .fa-recycle:before {
  3587. content: "\f1b8";
  3588. }
  3589. .fa-automobile:before,
  3590. .fa-car:before {
  3591. content: "\f1b9";
  3592. }
  3593. .fa-cab:before,
  3594. .fa-taxi:before {
  3595. content: "\f1ba";
  3596. }
  3597. .fa-tree:before {
  3598. content: "\f1bb";
  3599. }
  3600. .fa-spotify:before {
  3601. content: "\f1bc";
  3602. }
  3603. .fa-deviantart:before {
  3604. content: "\f1bd";
  3605. }
  3606. .fa-soundcloud:before {
  3607. content: "\f1be";
  3608. }
  3609. .fa-database:before {
  3610. content: "\f1c0";
  3611. }
  3612. .fa-file-pdf-o:before {
  3613. content: "\f1c1";
  3614. }
  3615. .fa-file-word-o:before {
  3616. content: "\f1c2";
  3617. }
  3618. .fa-file-excel-o:before {
  3619. content: "\f1c3";
  3620. }
  3621. .fa-file-powerpoint-o:before {
  3622. content: "\f1c4";
  3623. }
  3624. .fa-file-photo-o:before,
  3625. .fa-file-picture-o:before,
  3626. .fa-file-image-o:before {
  3627. content: "\f1c5";
  3628. }
  3629. .fa-file-zip-o:before,
  3630. .fa-file-archive-o:before {
  3631. content: "\f1c6";
  3632. }
  3633. .fa-file-sound-o:before,
  3634. .fa-file-audio-o:before {
  3635. content: "\f1c7";
  3636. }
  3637. .fa-file-movie-o:before,
  3638. .fa-file-video-o:before {
  3639. content: "\f1c8";
  3640. }
  3641. .fa-file-code-o:before {
  3642. content: "\f1c9";
  3643. }
  3644. .fa-vine:before {
  3645. content: "\f1ca";
  3646. }
  3647. .fa-codepen:before {
  3648. content: "\f1cb";
  3649. }
  3650. .fa-jsfiddle:before {
  3651. content: "\f1cc";
  3652. }
  3653. .fa-life-bouy:before,
  3654. .fa-life-buoy:before,
  3655. .fa-life-saver:before,
  3656. .fa-support:before,
  3657. .fa-life-ring:before {
  3658. content: "\f1cd";
  3659. }
  3660. .fa-circle-o-notch:before {
  3661. content: "\f1ce";
  3662. }
  3663. .fa-ra:before,
  3664. .fa-rebel:before {
  3665. content: "\f1d0";
  3666. }
  3667. .fa-ge:before,
  3668. .fa-empire:before {
  3669. content: "\f1d1";
  3670. }
  3671. .fa-git-square:before {
  3672. content: "\f1d2";
  3673. }
  3674. .fa-git:before {
  3675. content: "\f1d3";
  3676. }
  3677. .fa-hacker-news:before {
  3678. content: "\f1d4";
  3679. }
  3680. .fa-tencent-weibo:before {
  3681. content: "\f1d5";
  3682. }
  3683. .fa-qq:before {
  3684. content: "\f1d6";
  3685. }
  3686. .fa-wechat:before,
  3687. .fa-weixin:before {
  3688. content: "\f1d7";
  3689. }
  3690. .fa-send:before,
  3691. .fa-paper-plane:before {
  3692. content: "\f1d8";
  3693. }
  3694. .fa-send-o:before,
  3695. .fa-paper-plane-o:before {
  3696. content: "\f1d9";
  3697. }
  3698. .fa-history:before {
  3699. content: "\f1da";
  3700. }
  3701. .fa-circle-thin:before {
  3702. content: "\f1db";
  3703. }
  3704. .fa-header:before {
  3705. content: "\f1dc";
  3706. }
  3707. .fa-paragraph:before {
  3708. content: "\f1dd";
  3709. }
  3710. .fa-sliders:before {
  3711. content: "\f1de";
  3712. }
  3713. .fa-share-alt:before {
  3714. content: "\f1e0";
  3715. }
  3716. .fa-share-alt-square:before {
  3717. content: "\f1e1";
  3718. }
  3719. .fa-bomb:before {
  3720. content: "\f1e2";
  3721. }
  3722. .fa-soccer-ball-o:before,
  3723. .fa-futbol-o:before {
  3724. content: "\f1e3";
  3725. }
  3726. .fa-tty:before {
  3727. content: "\f1e4";
  3728. }
  3729. .fa-binoculars:before {
  3730. content: "\f1e5";
  3731. }
  3732. .fa-plug:before {
  3733. content: "\f1e6";
  3734. }
  3735. .fa-slideshare:before {
  3736. content: "\f1e7";
  3737. }
  3738. .fa-twitch:before {
  3739. content: "\f1e8";
  3740. }
  3741. .fa-yelp:before {
  3742. content: "\f1e9";
  3743. }
  3744. .fa-newspaper-o:before {
  3745. content: "\f1ea";
  3746. }
  3747. .fa-wifi:before {
  3748. content: "\f1eb";
  3749. }
  3750. .fa-calculator:before {
  3751. content: "\f1ec";
  3752. }
  3753. .fa-paypal:before {
  3754. content: "\f1ed";
  3755. }
  3756. .fa-google-wallet:before {
  3757. content: "\f1ee";
  3758. }
  3759. .fa-cc-visa:before {
  3760. content: "\f1f0";
  3761. }
  3762. .fa-cc-mastercard:before {
  3763. content: "\f1f1";
  3764. }
  3765. .fa-cc-discover:before {
  3766. content: "\f1f2";
  3767. }
  3768. .fa-cc-amex:before {
  3769. content: "\f1f3";
  3770. }
  3771. .fa-cc-paypal:before {
  3772. content: "\f1f4";
  3773. }
  3774. .fa-cc-stripe:before {
  3775. content: "\f1f5";
  3776. }
  3777. .fa-bell-slash:before {
  3778. content: "\f1f6";
  3779. }
  3780. .fa-bell-slash-o:before {
  3781. content: "\f1f7";
  3782. }
  3783. .fa-trash:before {
  3784. content: "\f1f8";
  3785. }
  3786. .fa-copyright:before {
  3787. content: "\f1f9";
  3788. }
  3789. .fa-at:before {
  3790. content: "\f1fa";
  3791. }
  3792. .fa-eyedropper:before {
  3793. content: "\f1fb";
  3794. }
  3795. .fa-paint-brush:before {
  3796. content: "\f1fc";
  3797. }
  3798. .fa-birthday-cake:before {
  3799. content: "\f1fd";
  3800. }
  3801. .fa-area-chart:before {
  3802. content: "\f1fe";
  3803. }
  3804. .fa-pie-chart:before {
  3805. content: "\f200";
  3806. }
  3807. .fa-line-chart:before {
  3808. content: "\f201";
  3809. }
  3810. .fa-lastfm:before {
  3811. content: "\f202";
  3812. }
  3813. .fa-lastfm-square:before {
  3814. content: "\f203";
  3815. }
  3816. .fa-toggle-off:before {
  3817. content: "\f204";
  3818. }
  3819. .fa-toggle-on:before {
  3820. content: "\f205";
  3821. }
  3822. .fa-bicycle:before {
  3823. content: "\f206";
  3824. }
  3825. .fa-bus:before {
  3826. content: "\f207";
  3827. }
  3828. .fa-ioxhost:before {
  3829. content: "\f208";
  3830. }
  3831. .fa-angellist:before {
  3832. content: "\f209";
  3833. }
  3834. .fa-cc:before {
  3835. content: "\f20a";
  3836. }
  3837. .fa-shekel:before,
  3838. .fa-sheqel:before,
  3839. .fa-ils:before {
  3840. content: "\f20b";
  3841. }
  3842. .fa-meanpath:before {
  3843. content: "\f20c";
  3844. }