style.css 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973
  1. /**
  2. * Theme Name: Suffusion
  3. * Description: An elegant, responsive and versatile theme with a power-packed set of options and semantic HTML5-based markup. It supports Mega-Menus, custom layout templates, advanced support for custom post types, customizable drop-down menus, featured sliders, tabbed sidebars, a magazine layout and lots of enhanced widgets for Twitter, Flickr, Google etc. It has 19 widget areas, one-column, two-column and three-column responsive, fixed-width and flexible-width layouts, 9 pre-defined templates and 19 pre-defined color schemes. Responsive capabilities are switched on by a single click. RTL support is built-in and translations in many languages are available. Custom Post Types and Custom Taxonomies are integrated. Compatibility packs for BuddyPress, bbPress, Jigoshop and WooCommerce are available as plugins for smooth integration. Support forum at http://www.aquoid.com/forum.
  4. * Theme URI: http://aquoid.com/news/themes/suffusion/
  5. * Version: 4.4.7
  6. * Author: Sayontan Sinha
  7. * Author URI: http://mynethome.net/blog
  8. * Announcements Feed: http://aquoid.com/news/category/theme-releases/feed/
  9. * License: GNU General Public License (GPL), v3 (or newer)
  10. * License URI: http://www.gnu.org/licenses/gpl-3.0.html
  11. * Tags: theme-options, green, blue, silver, red, orange, purple, white, black, light, dark, one-column, two-columns, three-columns, left-sidebar, right-sidebar, fixed-width, flexible-width, custom-colors, custom-header, custom-background, custom-menu, threaded-comments, sticky-post, rtl-language-support, microformats, featured-images, post-formats, photoblogging, blavatar
  12. *
  13. * Copyright (c) 2009 - 2013 Sayontan Sinha. All rights reserved.
  14. *
  15. * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  17. */
  18. /* Standard Styles */
  19. html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del,
  20. 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,
  21. label, legend,table, caption, tbody, tfoot, thead, tr, th, td {
  22. margin: 0;
  23. padding: 0;
  24. border: 0;
  25. outline: 0;
  26. font-size: 100%;
  27. }
  28. article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  29. display: block;
  30. }
  31. input:focus, textarea:focus { outline: none; }
  32. body {/* Default styling for everything that is un-styled and doesn't inherit*/
  33. color:#000;
  34. font-family: Arial, Helvetica, sans-serif;
  35. font-size: 12px;
  36. font-size-adjust:none;
  37. font-style:normal;
  38. font-variant:normal;
  39. font-weight:normal;
  40. line-height: 1.5;
  41. background-color: #444;
  42. }
  43. a {
  44. text-decoration: none;
  45. }
  46. a:hover {
  47. text-decoration: underline;
  48. }
  49. p,.p {
  50. margin-bottom: 1.5em;
  51. text-align: left;
  52. }
  53. img {
  54. border: none;
  55. }
  56. ul li {
  57. margin: 0;
  58. }
  59. ul, ol {
  60. margin: 0.5em 0 1.5em 1.5em;
  61. padding-left: 20px;
  62. }
  63. ol {
  64. list-style: decimal;
  65. }
  66. ol ol {
  67. list-style:lower-latin;
  68. }
  69. ol ol ol {
  70. list-style:lower-roman;
  71. }
  72. ol ol ol ol {
  73. list-style:lower-latin;
  74. }
  75. ul ul, ol ol, ul ol, ol ul {
  76. margin-bottom:0;
  77. }
  78. dl {
  79. margin:0 1.5em;
  80. }
  81. dt {
  82. font-weight: bold;
  83. }
  84. dd {
  85. margin: 0 0 1em 1.5em;
  86. }
  87. form {
  88. margin: 0;
  89. padding: 0;
  90. }
  91. small {
  92. font-size: 0.68em;
  93. }
  94. code, pre {
  95. font-family: "Courier New", Courier, Monaco, "Lucida Console", monospace;
  96. overflow: auto;
  97. background-color: #F7F7F7;
  98. }
  99. pre {
  100. padding: 1em;
  101. line-height: 1.5em;
  102. border: 1px solid #ddd;
  103. margin: 1.5em 0;
  104. }
  105. hr{
  106. border: 1px dotted #666;
  107. margin-bottom: 1.5em;
  108. }
  109. blockquote{
  110. background: url(images/blockquote-l.png) no-repeat left top;
  111. padding: 10px 15px;
  112. margin: 0 3em 1em;
  113. font-size: 1em;
  114. text-indent: 2em;
  115. }
  116. blockquote > div {
  117. background: url(images/blockquote-r.png) no-repeat right bottom;
  118. padding-bottom: 0.1em;
  119. }
  120. blockquote cite {
  121. float: right;
  122. }
  123. abbr, acronym { cursor: help; border-bottom: 1px dotted #888; }
  124. /* Headers */
  125. h1, h2, h3, h4, h5, h6 {
  126. color: #333;
  127. margin: 0.5em 0;
  128. padding: 0;
  129. line-height: 1.1em;
  130. }
  131. h2.suf-mag-category-title {
  132. margin: 0;
  133. }
  134. h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  135. color: #333;
  136. }
  137. h1, h2 {
  138. font-weight: normal;
  139. }
  140. h3, h4, h5, h6 {
  141. font-weight: bold;
  142. }
  143. h1 {
  144. font-size: 200%;
  145. }
  146. h2 {
  147. font-size: 183%;
  148. }
  149. h3 {
  150. font-size: 166%;
  151. }
  152. h4 {
  153. font-size: 150%;
  154. font-weight: bold;
  155. }
  156. h5 {
  157. font-size: 133%;
  158. font-weight: bold;
  159. }
  160. h6 {
  161. font-size: 116%;
  162. font-weight: bold;
  163. }
  164. .entry table, .comment-body table { width: 100%; border-collapse: collapse; }
  165. .entry th, .comment-body th { text-align: left; padding: 6px; border-bottom: 1px dotted #ccc; }
  166. .entry td, .comment-body td { padding: 6px; border-bottom: 1px dotted #ccc; }
  167. sup, sub {
  168. height: 0;
  169. line-height: 1;
  170. vertical-align: baseline;
  171. position: relative;
  172. font-size: 0.7em;
  173. }
  174. sup {
  175. bottom: 1ex;
  176. }
  177. sub {
  178. top: .5ex;
  179. }
  180. /* WordPress Standard Elements */
  181. .border{
  182. padding: 2.5px;
  183. border: 1px solid #ccc;
  184. }
  185. .hidden {
  186. display: none;
  187. visibility: hidden;
  188. }
  189. .aligncenter {
  190. display: block;
  191. margin-left: auto;
  192. margin-right: auto;
  193. }
  194. .alignleft {
  195. float: left;
  196. margin:0 10px 5px 0;
  197. }
  198. .alignright {
  199. float: right;
  200. margin:0 0 5px 10px;
  201. }
  202. .floatleft{
  203. float:left;
  204. margin:3px 7px 0 0;
  205. }
  206. .floatright{
  207. float:right;
  208. margin:3px 0 0 7px;
  209. }
  210. .block{
  211. display:block;
  212. }
  213. .clear{
  214. clear:both;
  215. }
  216. .center {
  217. text-align: center;
  218. }
  219. dl.gallery-item {margin:0}
  220. .suf-widget{
  221. background: #fff;
  222. border: 1px solid #c0c0c0;
  223. }
  224. #wrapper {
  225. width: 1000px;
  226. margin: 20px auto;
  227. position: relative;
  228. border: 1px solid #008000;
  229. background-color: #EDF3E6;
  230. padding: 10px;
  231. }
  232. #wrapper.shadow {
  233. /* Shadows - CSS3 for browsers that support it */
  234. box-shadow: 10px 10px 5px #888;
  235. }
  236. #header {
  237. min-height: 55px;
  238. padding: 15px 0;
  239. }
  240. /* Blog title */
  241. .blogtitle {
  242. font-size: 333%;
  243. float: left;
  244. line-height: 47px;
  245. position:relative;
  246. margin: 0;
  247. padding: 0;
  248. text-align: left;
  249. }
  250. .blogtitle.center {
  251. float: none;
  252. text-align: center;
  253. }
  254. .blogtitle.hidden {
  255. display: none;
  256. visibility: hidden;
  257. }
  258. .blogtitle.right {
  259. float: right;
  260. text-align: right;
  261. }
  262. .blogtitle a {
  263. color: #000;
  264. }
  265. .blogtitle a:hover {
  266. text-decoration: none;
  267. }
  268. /* Blog description on the right side of the title */
  269. .description {
  270. float: right;
  271. margin-top: 21px;
  272. margin-right: 20px;
  273. margin-left: 20px;
  274. text-transform: uppercase;
  275. font-size: 116%;
  276. text-align: right;
  277. }
  278. .description.center {
  279. float: none;
  280. margin-top: 0;
  281. text-align: center;
  282. }
  283. .description.hidden {
  284. display: none;
  285. visibility: hidden;
  286. }
  287. .description.left {
  288. float: left;
  289. text-align: left;
  290. }
  291. /* search form */
  292. .searchform {
  293. display: inline-block;
  294. font-size: 100%;
  295. padding: 0;
  296. margin: -1px 0 1px;
  297. }
  298. .searchfield {
  299. /* width: 158px;*/
  300. padding: 4px 7px 2px 5px;
  301. color: #999;
  302. border: 1px solid #888;
  303. margin-top: 4px;
  304. line-height: 1.2em;
  305. }
  306. input[type="submit"].searchsubmit {
  307. background: no-repeat 0 0;
  308. height: 24px;
  309. width: 24px;
  310. border: none;
  311. cursor: pointer;
  312. text-indent: -999%;
  313. margin: 0;
  314. padding: 0 3px 0 3px;
  315. }
  316. #right-header-widgets .searchform,
  317. #top-bar-right-widgets .searchform {
  318. float: right;
  319. }
  320. .dbx-content .searchform {
  321. float: left;
  322. text-align: center;
  323. width: 100%;
  324. }
  325. .dbx-content .searchform .searchfield {
  326. width: 70%;
  327. }
  328. /*
  329. * The layout has "page" as the base element.
  330. * Inside the "page" is a "wrapper". The "wrapper" has 4 rows:
  331. * 1. A "header"
  332. * 2. A navigation bar ("nav")
  333. * 3. A "container" with two columns:
  334. * a. A main column ("main-col")
  335. * b. A "sidebar"
  336. * 4. A section for credits ("cred")
  337. */
  338. /* Main column */
  339. #main-col {
  340. width: 725px;
  341. float: left;
  342. position: relative;
  343. margin-left: 0;
  344. margin-right: 0;
  345. }
  346. #single-col {
  347. width: 100%;
  348. float: left;
  349. }
  350. /* See Ruthsarian Menus: Ruthsarian Layouts at http://webhost.bridgew.edu/etribou/layouts/rMenu/rMenu.css
  351. * There are details for z-index settings to avoid overlaps on the second line for IE 7
  352. */
  353. /* main menu */
  354. #nav {
  355. font-size: 108%;
  356. border-bottom: 1px solid;
  357. }
  358. .float-ptr {
  359. font-size: 130%;
  360. float: right;
  361. background: url(images/arrows.gif) no-repeat scroll -16px 0 transparent;
  362. height: 8px;
  363. width: 8px;
  364. top: 45%;
  365. right: 3px;
  366. position: absolute;
  367. }
  368. .down-ptr {
  369. font-size: 130%;
  370. float: right;
  371. background: url(images/arrows.gif) no-repeat scroll 0 0 transparent;
  372. height: 8px;
  373. width: 8px;
  374. top: 45%;
  375. right: 5px;
  376. position: absolute;
  377. margin-left: 5px;
  378. }
  379. img.home-icon { height: 21px; }
  380. #nav ul li a.with-arrow, #nav-top ul li a.with-arrow { padding-right: 22px;}
  381. /* remove all the bullets, borders and padding from the default list styling */
  382. #nav ul {
  383. list-style: none;
  384. display: block;
  385. margin: 0 0 -1px 0;
  386. padding: 0;
  387. float: left;
  388. vertical-align: bottom;
  389. }
  390. #nav ul li {
  391. margin: 0 4px 0 0;
  392. padding: 0;
  393. float: left;
  394. border: 1px solid;
  395. }
  396. #nav.continuous ul, #nav-top.continuous ul {
  397. margin-left: 10px;
  398. }
  399. #nav.continuous ul ul, #nav-top.continuous ul ul {
  400. margin-left: 0;
  401. }
  402. #nav.continuous ul li {
  403. margin: 0;
  404. border: none;
  405. }
  406. #nav ul ul { position: absolute; }
  407. #nav ul .mm-tab ul { position: relative; }
  408. #nav ul li a {
  409. padding: 8px 8px 5px 8px;
  410. text-decoration: none;
  411. display: inline-block;
  412. }
  413. #nav ul ul li,
  414. #nav ul ul li a {
  415. z-index: 100;
  416. }
  417. #nav .current_page_item a,
  418. #nav .current_page_item a:hover,
  419. #nav li a:active {
  420. text-decoration: none;
  421. }
  422. /* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
  423. #nav li {
  424. float:left;
  425. position:relative;
  426. z-index: 1;
  427. }
  428. #nav li a:hover,
  429. #nav li:hover {
  430. z-index: 100;
  431. }
  432. #nav ul.sf-menu, #nav-top ul.sf-menu { display: inline-block; }
  433. #nav .col-control.center, #nav-top .col-control.center { text-align: center; }
  434. #nav .col-control.center ul.sf-menu, #nav-top .col-control.center ul.sf-menu { float: none; }
  435. #nav .col-control.right ul.sf-menu { float: right; }
  436. /* Styling for navigation menus */
  437. #nav ul ul li a,
  438. #nav ul ul li a:visited {
  439. padding: 8px 8px 5px 8px;
  440. text-decoration: none;
  441. display: block;
  442. line-height:22px;
  443. }
  444. /* style the links for the top level */
  445. #nav a,
  446. #nav a:visited {
  447. display:block;
  448. font-size: 100%;
  449. text-decoration:none;
  450. height:22px;
  451. padding: 8px 8px 5px 8px;
  452. line-height:22px;
  453. font-weight:bold;
  454. }
  455. .sf-menu ul { visibility: hidden; }
  456. .mm-tab:hover ul, .mm-tab .keep-open ul { visibility: visible; }
  457. /* hide the sub levels and give them a positon absolute so that they take up no room */
  458. #nav ul .pagenav ul, #nav-top ul .pagenav ul, #nav ul .categories ul, #nav-top ul .categories ul { visibility:hidden; position:absolute; }
  459. #nav ul .dd-tab ul {
  460. visibility:hidden;
  461. position:absolute;
  462. /*height:0;*/
  463. top:35px;
  464. left:0;
  465. width:149px;
  466. }
  467. /* position the third level flyout menu */
  468. #nav ul .dd-tab ul ul {
  469. left:145px;
  470. top:-1px;
  471. width:149px;
  472. }
  473. /* position the third level flyout menu for a left flyout */
  474. #nav ul ul ul.left {
  475. left:-149px;
  476. }
  477. /* style the second level links */
  478. #nav ul ul a,
  479. #nav ul ul a:visited {
  480. height:auto;
  481. line-height:1em;
  482. padding:8px 10px 5px 10px;
  483. width:128px;
  484. border-width:1px 1px 1px 1px;
  485. text-align: left;
  486. }
  487. #nav-top {
  488. font-size: 100%;
  489. border-bottom: 1px solid;
  490. padding: 0 10px;
  491. }
  492. /* remove all the bullets, borders and padding from the default list styling */
  493. #nav-top ul {
  494. list-style: none;
  495. display: block;
  496. margin: 0 0 -1px 0;
  497. padding: 0;
  498. vertical-align: bottom;
  499. }
  500. #nav-top ul li {
  501. margin: 0 0 0 0;
  502. padding: 0;
  503. float: left;
  504. border: 1px solid;
  505. }
  506. #nav-top ul ul { position: absolute; }
  507. #nav-top ul .mm-tab ul { position: relative; }
  508. #nav-top ul li a {
  509. line-height: 22px;
  510. padding: 8px 8px 5px 8px;
  511. text-decoration: none;
  512. display: inline-block;
  513. }
  514. #nav-top ul ul li,
  515. #nav-top ul ul li a {
  516. z-index: 100;
  517. }
  518. #nav-top .current_page_item a,
  519. #nav-top .current_page_item a:hover,
  520. #nav-top li a:active {
  521. text-decoration: none;
  522. }
  523. /* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
  524. #nav-top li {
  525. float:left;
  526. position:relative;
  527. z-index: 1;
  528. }
  529. #nav-top li a:hover,
  530. #nav-top li:hover {
  531. z-index: 100;
  532. }
  533. /* Styling for navigation menus */
  534. #nav-top ul ul li a,
  535. #nav-top ul ul li a:visited {
  536. padding: 8px 8px 5px 8px;
  537. text-decoration: none;
  538. display: block;
  539. line-height:22px;
  540. }
  541. /* style the links for the top level */
  542. #nav-top a,
  543. #nav-top a:visited {
  544. display:block;
  545. font-size: 108%;
  546. text-decoration:none;
  547. height:22px;
  548. padding: 8px 8px 5px 8px;
  549. line-height:22px;
  550. font-weight:bold;
  551. }
  552. #nav-top.continuous ul {
  553. margin: 0;
  554. }
  555. #nav-top.continuous ul li {
  556. margin: 0;
  557. border: none;
  558. }
  559. #nav-top.continuous a,
  560. #nav-top.continuous a:visited {
  561. font-size: 100%;
  562. min-height:22px;
  563. padding: 8px 8px 5px 8px;
  564. line-height:22px;
  565. font-weight:bold;
  566. }
  567. /* hide the sub levels and give them a positon absolute so that they take up no room */
  568. #nav-top ul .dd-tab ul {
  569. visibility:hidden;
  570. position:absolute;
  571. /*height:0;*/
  572. top:35px;
  573. left:0;
  574. width:149px;
  575. }
  576. /* position the third level flyout menu */
  577. #nav-top ul .dd-tab ul ul {
  578. left:145px;
  579. top:-1px;
  580. width:149px;
  581. }
  582. /* position the third level flyout menu for a left flyout */
  583. #nav-top ul ul ul.left {
  584. left:-149px;
  585. }
  586. /* style the second level links */
  587. #nav-top ul ul a,
  588. #nav-top ul ul a:visited {
  589. height:auto;
  590. line-height:1em;
  591. padding:8px 10px 5px 10px;
  592. width:128px;
  593. border-width:1px 1px 1px 1px;
  594. text-align: left;
  595. }
  596. /* sub menu */
  597. #subnav {
  598. background: #fff;
  599. margin-top: 15px;
  600. border: 1px solid #c0c0c0;
  601. }
  602. #subnav ul {
  603. margin: 0;
  604. padding: 0 0 0 5px;
  605. list-style: none;
  606. }
  607. #subnav li {
  608. border-right: 1px solid #D8D8D8;
  609. padding: 4px 7px;
  610. margin: 0;
  611. float: left;
  612. font-weight: bold;
  613. }
  614. #subnav li a, #subnav li a:visited, #subnav .page_item {
  615. text-decoration: none;
  616. color: #c0c0c0;
  617. }
  618. #subnav li a:hover {
  619. text-decoration: none;
  620. }
  621. #subnav ul ul li{display: none;}
  622. /* Level 3 */
  623. .hier-nav {
  624. background: #EDF3E6;
  625. margin-top: 3px;
  626. border: 1px solid #c0c0c0;
  627. }
  628. .hier-nav ul {
  629. margin: 0;
  630. padding: 0 0 0 5px;
  631. list-style: none;
  632. }
  633. .hier-nav li {
  634. border-right: 1px solid #D8D8D8;
  635. padding: 4px 7px;
  636. margin: 0;
  637. float: left;
  638. font-weight: normal;
  639. font-size: 91.67%;
  640. }
  641. .hier-nav li a, .hier-nav li a:visited, .hier-nav .page_item {
  642. text-decoration: none;
  643. color: #c0c0c0;
  644. }
  645. .hier-nav .current_page_item, .hier-nav .current_page_parent {
  646. background: #fff;
  647. border-left: 1px solid #D8D8D8;
  648. }
  649. .hier-nav li a:hover {
  650. text-decoration: none;
  651. }
  652. .hier-nav ul ul li {
  653. display: none;
  654. }
  655. .breadcrumb {
  656. font-size: 108%;
  657. padding: 3px 5px 3px 8px;
  658. }
  659. /* content */
  660. #content {
  661. clear: both;
  662. overflow: hidden;
  663. margin-top: 15px;
  664. }
  665. .no-header.no-main-nav #content { margin-top: 0; }
  666. .post, article.page {
  667. border: 1px solid #c0c0c0;
  668. background: #FFF;
  669. padding: 25px 15px 1em 15px;
  670. clear: both;
  671. overflow: hidden;
  672. margin-bottom: 10px;
  673. }
  674. .post .date {
  675. height: 48px;
  676. width: 48px;
  677. right: 58px;
  678. font: normal 150% Arial, Helvetica, sans-serif;
  679. color: #ffffff;
  680. text-align: center;
  681. padding: 0;
  682. line-height: 100%;
  683. margin-left: -100%;
  684. float: left;
  685. position: relative;
  686. }
  687. .post .date span.day {
  688. font: normal 100% Arial, Helvetica, sans-serif;
  689. color: #ffffff;
  690. text-align: center;
  691. padding: 0;
  692. line-height: 100%;
  693. }
  694. .post .date span.month {
  695. height: 12px;
  696. display: block;
  697. font: normal 50% Arial, Helvetica, sans-serif;
  698. color: #ffffff;
  699. text-align: center;
  700. padding-top: 2px;
  701. }
  702. .post .date span.year {
  703. height: 12px;
  704. display: block;
  705. font: normal 50% Arial, Helvetica, sans-serif;
  706. color: #ffffff;
  707. text-align: center;
  708. padding-top: 0;
  709. }
  710. .post .title {
  711. float: left;
  712. margin-left: 10px;
  713. width: 635px;
  714. -moz-box-sizing: border-box;
  715. -webkit-box-sizing: border-box;
  716. -ms-box-sizing: border-box;
  717. box-sizing: border-box;
  718. }
  719. .page-links {
  720. width: 100%;
  721. clear: both;
  722. }
  723. .page-links span {
  724. border: 1px solid;
  725. padding-left: 4px;
  726. padding-right: 4px;
  727. }
  728. .page-links a:hover {
  729. text-decoration: none;
  730. }
  731. span.more-link {
  732. width: 100%;
  733. }
  734. a.more-link {
  735. font-size: 100%;
  736. font-weight: bold;
  737. float: right;
  738. }
  739. .postdata {
  740. font-size: 90%;
  741. color: #999999;
  742. }
  743. .postdata a, .postdata a:visited {
  744. color: #999999;
  745. text-decoration: none;
  746. }
  747. .postdata a:hover {
  748. text-decoration: none;
  749. }
  750. .postdata .icon { display: none; width: 16px; height: 16px; margin-right: 4px; margin-left: 4px; }
  751. .postdata .category{ padding-right: 10px; float: left; }
  752. .postdata .category .icon { background: no-repeat 0 0;}
  753. .postdata .author .icon { background: no-repeat -32px -128px;}
  754. .postdata .tax .icon { background: no-repeat -32px -144px;}
  755. .postdata .permalink { padding-right: 10px; float: left; }
  756. .postdata .permalink .icon { background: no-repeat 0 -16px; }
  757. .postdata .comments { padding-right: 10px; float: right; }
  758. .postdata .comments .icon { background: no-repeat 0 -64px;}
  759. .postdata .edit{ padding-right: 10px; float: right; }
  760. .postdata .edit .icon { background: no-repeat 0 -112px;}
  761. .postdata .line-date .icon { background: no-repeat 0 -32px;}
  762. .postdata.line { text-align: center; padding: 0.8em; }
  763. .postdata.line span, .postdata.line span.author, .postdata.line span.comments { float: none; margin: 0 0.5em; padding: 0; }
  764. .postdata.line span.icon { margin-right: 4px; margin-left: 0; }
  765. .postdata.line span.vcard { margin-left: 0; margin-right: 0; }
  766. .entry,
  767. .non-wp-entry {
  768. padding: 15px 0 5px;
  769. clear: both;
  770. font-size: 116%;
  771. line-height: 1.6em;
  772. margin-bottom: 1em;
  773. overflow: hidden;
  774. }
  775. .post-footer {
  776. font-size: 91.67%;
  777. margin: 5px 0;
  778. width: 100%;
  779. }
  780. /* post title */
  781. h1.posttitle,
  782. h2.posttitle {
  783. color: #000;
  784. margin: 3px 0 2px;
  785. padding-bottom: 4px;
  786. font-size: 200%;
  787. border-bottom: dotted 1px #CCCCCC;
  788. }
  789. h1.posttitle a,
  790. h1.posttitle a:visited,
  791. h2.posttitle a,
  792. h2.posttitle a:visited {
  793. color: #000;
  794. text-decoration: none;
  795. }
  796. h1.posttitle a:hover,
  797. h2.posttitle a:hover {
  798. text-decoration: none;
  799. }
  800. span.author {
  801. float: left;
  802. display: inline-block;
  803. color: #aaa;
  804. max-width: 250px;
  805. }
  806. .post .meta-pullout span.author, .page .meta-pullout span.author {
  807. float: none;
  808. padding-right: 0;
  809. }
  810. .tags {
  811. float: right;
  812. display: inline-block;
  813. color: #aaa;
  814. text-align: right;
  815. }
  816. /* next & previous page navigation */
  817. .page-nav {
  818. clear: both;
  819. padding: 5px 0 5px 0;
  820. margin-bottom: .6em;
  821. background-color: #ffffff;
  822. border: 1px solid #c0c0c0;
  823. }
  824. .page-nav a, .page-nav a:visited {
  825. color: #000;
  826. text-decoration: none;
  827. }
  828. .page-nav a:hover,
  829. .navigation .suf-page-nav a:hover {
  830. text-decoration: none;
  831. }
  832. .previous-entries a { float: left; margin-left: 10px;}
  833. .previous-entries .icon { width: 16px; height: 16px; background: no-repeat 0 -80px; float: left; margin-right: 4px;}
  834. .next-entries a { float: right; margin-right: 10px; }
  835. .next-entries .icon { width: 16px; height: 16px; background: no-repeat 0 -96px; float: right; margin-left: 4px; }
  836. .suf-page-nav {
  837. text-align: center;
  838. margin: 5px 0;
  839. }
  840. .suf-page-nav a,
  841. .suf-page-nav span {
  842. padding: 2px 5px;
  843. border: 1px solid;
  844. margin: 2px;
  845. }
  846. .suf-page-nav span.dots {
  847. border: none;
  848. }
  849. .suf-page-nav a.page-numbers:hover {
  850. color: #ffffff;
  851. }
  852. /* next & previous post navigation */
  853. .post-nav {
  854. clear: both;
  855. padding: 5px;
  856. margin: 0 0 15px 0;
  857. font-size: 100%;
  858. background-color: #ffffff;
  859. border: 1px solid #c0c0c0;
  860. }
  861. .post-nav table {
  862. width: 100%;
  863. }
  864. .post-nav a, .post-nav a:visited {
  865. color: #999999;
  866. text-decoration: none;
  867. }
  868. .post-nav a:hover {
  869. text-decoration: none;
  870. }
  871. .post-nav .previous a { float: left;}
  872. .post-nav .previous .icon { width: 16px; height: 16px; background: no-repeat 0 -144px; float: left; margin-right: 4px;}
  873. .post-nav .next a { float: right; text-align: right; }
  874. .post-nav .next .icon { width: 16px; height: 16px; background: no-repeat 0 -128px; float: right; margin-left: 4px;}
  875. /* Comments */
  876. h3.comments { padding: 10px; font-size: 116%; clear: both; }
  877. h3.comments .icon { width: 24px; height: 24px; background: no-repeat -16px -80px; margin: -5px 10px 0 0; float: left;}
  878. h3#respond, h3.respond, #reply-title {
  879. padding: 7px;
  880. margin: 20px 0 0;
  881. clear: both;
  882. font-size: 116%;
  883. }
  884. #reply-title .icon {width: 24px; height: 24px; background: no-repeat -16px -104px; margin: -5px 10px 0 0; float: left;}
  885. /* Comment navigation */
  886. div.navigation {
  887. padding: 5px;
  888. }
  889. /* commentform */
  890. #commentform {
  891. margin-top: 10px;
  892. }
  893. #commentform label.suf-comment-label {
  894. font-weight: bold;
  895. color:#000000;
  896. font-size: 100%;
  897. padding: 5px;
  898. margin: 0;
  899. display: inline;
  900. float: left;
  901. text-align: right;
  902. height: 20px;
  903. width: 80px;
  904. border: solid 1px #999;
  905. }
  906. #commentform label.textarea {
  907. display: block;
  908. float: none;
  909. width: 140px;
  910. text-align: center;
  911. }
  912. #commentform small {
  913. color: #999999;
  914. font-size: 90%;
  915. }
  916. #commentform input[type="text"] {
  917. height: 20px;
  918. margin: 0 0 0 0;
  919. padding: 5px;
  920. }
  921. #commentform input.inside { width: 300px; padding: 5px 5px 5px 40px; }
  922. input.inside { background-repeat: no-repeat; }
  923. #author.inside { background-position: -76px -27px; }
  924. #email.inside { background-position: -76px -75px; }
  925. #url.inside { background-position: -78px -120px; }
  926. #commentform textarea {
  927. font: 110% Arial, Helvetica, sans-serif;
  928. height: 140px;
  929. border: solid 1px #999999;
  930. padding: 5px 3px 3px 7px;
  931. margin-top: -1px;
  932. width: 90%;
  933. max-width: 90%;
  934. }
  935. #commentform textarea:focus, #commentform input[type="text"]:focus {
  936. border: solid 1px #999;
  937. }
  938. div.reply {
  939. text-align: right;
  940. width: 100%;
  941. }
  942. .comment-author {
  943. padding: 10px 0 5px 0;
  944. margin: 0 0 10px 0;
  945. border-bottom: 1px dotted #ccc;
  946. }
  947. .comment-author img.avatar {
  948. margin-top: -5px;
  949. }
  950. .comment-author-link {
  951. padding: 0 0 5px 0;
  952. }
  953. .author-below .comment-author, .author-above .comment-author { border-bottom: none; }
  954. .author-above .comment-author { display: inline; }
  955. .author-below .comment-author img.avatar, .author-above .comment-author img.avatar { float: left; }
  956. .comment-author-details { float: left; }
  957. .comment-body p {
  958. line-height: 1.5em;
  959. }
  960. .comment-holder { display: inline-block; width: 100%; }
  961. p.moderation {
  962. font-style: italic;
  963. color: #000;
  964. background-color: #f9f6a7;
  965. border: 1px solid #e7d605;
  966. padding: 5px;
  967. }
  968. a.comment-reply-link, a.comment-reply-login {
  969. border: solid 1px #999999;
  970. padding: 0 6px;
  971. margin: 5px;
  972. }
  973. .author-below .comment-reply-link, .author-above .comment-reply-link, .author-below .comment-reply-login, .author-above .comment-reply-login { border-width: 0 0 0 1px; border-radius: 0; }
  974. li.comment div.reply { margin: 0 0 10px 0; }
  975. .comment-response-types {
  976. margin: 5px 0 5px 0;
  977. display: block;
  978. width: 100%;
  979. }
  980. .comment-response-type, .response-type {
  981. float: left;
  982. border: solid 1px #999999;
  983. padding: 6px;
  984. margin: 5px;
  985. font-weight: bold;
  986. }
  987. .comment-response-type:hover {
  988. text-decoration: none;
  989. }
  990. /* comment list */
  991. .commentlist { margin: 10px 0; padding-left: 30px; line-height: 130%; }
  992. .commentlist li.comment, .commentlist li.pingback, .commentlist li.trackback { padding: 5px 10px; background-color: #fbfbfb; margin-bottom: 5px; border: 1px solid #ccc; }
  993. .commentlist ul li.comment, .commentlist ul li.pingback, .commentlist ul li.trackback { list-style: none; }
  994. .commentlist li.comment.author-below, .commentlist li.pingback.author-below, .commentlist li.trackback.author-below,
  995. .commentlist li.comment.author-above, .commentlist li.pingback.author-above, .commentlist li.trackback.author-above {
  996. background-color: transparent;
  997. border: none;
  998. padding: 5px 0 0;
  999. margin-bottom: 1.5em;
  1000. }
  1001. .author-below ul.children li:last-child { margin-bottom: 0; }
  1002. .author-below .comment-body, .author-above .comment-body { padding: 1.1em 0.7em; }
  1003. .author-below .arrow { position: relative; left: 50px; width: 14px; display: block; border-left: 14px solid transparent; border-bottom: 14px solid transparent; margin-top: -16px; }
  1004. .author-above .arrow { position: relative; left: 50px; width: 14px; display: block; border-left: 14px solid transparent; border-top: 14px solid transparent; margin-bottom: -16px; }
  1005. .author-below .comment-body, .author-above .comment-body { background-color: #eee; }
  1006. .author-below .arrow, .author-above .arrow { border-left-color: #eee; }
  1007. .commentlist cite {
  1008. font-weight: bold;
  1009. font-style: normal;
  1010. font-size: 110%;
  1011. }
  1012. img.avatar {
  1013. float: right;
  1014. margin: 5px;
  1015. }
  1016. .format-status img.avatar { float: left; margin: 0 1em 0 0; }
  1017. .commentlist small {
  1018. margin-bottom: 5px;
  1019. display: block;
  1020. font-size: 87%;
  1021. }
  1022. .commentlist small a, .commentlist small a:visited{
  1023. color: #999999;
  1024. }
  1025. ul.children { padding-left: 20px; }
  1026. /* Credits */
  1027. #cred {
  1028. font-size: 91.67%;
  1029. padding: 0;
  1030. clear: both;
  1031. height: auto;
  1032. overflow: hidden;
  1033. }
  1034. #page-footer { margin-top: 10px; overflow: hidden; }
  1035. #page-footer #cred {
  1036. border-top: none;
  1037. }
  1038. #cred .designer {
  1039. padding: 8px 22px;
  1040. float: left;
  1041. }
  1042. #cred a {
  1043. color: #000;
  1044. }
  1045. #cred a:hover {
  1046. text-decoration: underline;
  1047. }
  1048. #cred .valid {
  1049. padding: 8px 22px;
  1050. float: right;
  1051. }
  1052. #cred table {
  1053. border: none;
  1054. padding: 0;
  1055. margin: 10px 0;
  1056. width: 100%;
  1057. }
  1058. #cred td {
  1059. width: 33%;
  1060. }
  1061. #cred td.cred-left {
  1062. text-align: left;
  1063. }
  1064. #cred td.cred-center {
  1065. text-align: center;
  1066. }
  1067. #cred td.cred-right {
  1068. text-align: right;
  1069. }
  1070. /* Emphasis */
  1071. .download, .announcement, .warning, .note {
  1072. padding: 10px 5px 10px 5px;
  1073. margin: 10px 0 10px 0;
  1074. width: 98%;
  1075. color: #000000;
  1076. }
  1077. .download {
  1078. background-color: #E3F5F9;
  1079. border: 1px solid #0000ff;
  1080. }
  1081. .announcement {
  1082. background-color: #b8f9d5;
  1083. border: 1px solid #088c43;
  1084. }
  1085. .warning {
  1086. background-color: #ffdbea;
  1087. border: 1px solid #ff0000;
  1088. }
  1089. .note {
  1090. background-color: #f9f6a7;
  1091. border: 1px solid #e7d605;
  1092. }
  1093. /* Excerpts */
  1094. img.left-thumbnail,
  1095. .left-thumbnail {
  1096. float: left;
  1097. margin: 10px;
  1098. }
  1099. img.right-thumbnail,
  1100. .right-thumbnail {
  1101. float: right;
  1102. margin: 10px;
  1103. }
  1104. /* Forms */
  1105. legend {
  1106. padding: 0.75em;
  1107. }
  1108. fieldset {
  1109. border: 1px solid #ccc;
  1110. padding: 0.75em;
  1111. background: transparent;
  1112. }
  1113. /* commentform */
  1114. label {
  1115. color:#333;
  1116. font-size: 90%;
  1117. display: block;
  1118. }
  1119. small {
  1120. color: #555;
  1121. font-size: 90%;
  1122. }
  1123. input{
  1124. padding: 5px 3px 3px 5px;
  1125. border: 1px solid #ccc;
  1126. border-right-color: #aaa;
  1127. border-bottom-color: #aaa;
  1128. line-height: 1.5em;
  1129. }
  1130. textarea {
  1131. height: 140px;
  1132. border: 1px solid #ccc;
  1133. border-right-color: #aaa;
  1134. border-bottom-color: #aaa;
  1135. padding: 5px 3px 3px 7px;
  1136. line-height: 1.5em;
  1137. }
  1138. textarea:focus, input[type="text"]:focus {
  1139. border: solid 1px #666;
  1140. }
  1141. .button, input[type="submit"], .submit {
  1142. font-weight: normal;
  1143. margin:0;
  1144. padding:3px 15px 3px 15px;
  1145. }
  1146. .button:hover, input[type="submit"]:hover,
  1147. .button:active, input[type="submit"]:active {
  1148. font-weight: bold;
  1149. }
  1150. /* sidebar */
  1151. #sidebar, #sidebar-b,
  1152. #sidebar-2, #sidebar-2-b {
  1153. margin-top: 15px;
  1154. width: 260px;
  1155. color: #666666;
  1156. line-height: 160%;
  1157. }
  1158. #sidebar.left, #sidebar-b.left,
  1159. #sidebar-2.left, #sidebar-2-b.left,
  1160. #wsidebar-top.left, #wsidebar-bottom.left {
  1161. float:left;
  1162. }
  1163. #sidebar.right, #sidebar-b.right,
  1164. #sidebar-2.right, #sidebar-2-b.right,
  1165. #wsidebar-top.right, #wsidebar-bottom.right {
  1166. float:right;
  1167. }
  1168. #wsidebar-top {
  1169. margin: 15px 0 0 0;
  1170. padding: 0;
  1171. }
  1172. #wsidebar-top, #wsidebar-bottom { color: #666666; }
  1173. #wsidebar-bottom { padding: 10px 0; }
  1174. .suf-widget:last-child {
  1175. margin-bottom: 0;
  1176. }
  1177. .flattened:last-child {
  1178. margin-bottom: 15px;
  1179. }
  1180. .sidebar-shell {position:relative; display:block}
  1181. #sidebar-wrap {position:relative;}
  1182. .sidebar-wrap-left {
  1183. float: left;
  1184. }
  1185. .sidebar-wrap-right {
  1186. float: left;
  1187. }
  1188. .sidebar-shell-left {
  1189. float: left;
  1190. margin-right: 15px;
  1191. }
  1192. .sidebar-shell-right {
  1193. float: left;
  1194. margin-left: 15px;
  1195. }
  1196. .suf-widget, .warea p {
  1197. margin: 0 0 15px;
  1198. }
  1199. .suf-widget h3 {
  1200. font: bold 100%/100% Arial, Helvetica, sans-serif;
  1201. color: #444;
  1202. }
  1203. .suf-widget h3 a,
  1204. .suf-widget h3 a:visited {
  1205. color: #333;
  1206. }
  1207. .suf-widget h3 img {
  1208. vertical-align: middle;
  1209. }
  1210. div.sidebar-tab-content a,
  1211. .suf-widget a,
  1212. .suf-widget a:visited {
  1213. color: #000000;
  1214. text-decoration:none;
  1215. }
  1216. div.sidebar-tab-content a:hover,
  1217. div.sidebar-tab-content a:focus,
  1218. div.sidebar-tab-content a:active,
  1219. .warea div.sidebar-tab-content a:hover,
  1220. .warea div.sidebar-tab-content a:focus,
  1221. .warea div.sidebar-tab-content a:active,
  1222. .suf-widget a:hover,
  1223. .suf-widget a:focus,
  1224. .suf-widget a:active {
  1225. text-decoration:underline;
  1226. }
  1227. .suf-widget a.openid_link,
  1228. .recentcomments a.openid_link,
  1229. a.openid_link {
  1230. padding-left: 16px;
  1231. }
  1232. .suf-mag-category ul,
  1233. .sidebar-tab-content ul,
  1234. .suf-widget ul,
  1235. .suf-flat-widget ul,
  1236. .suf-panel-widget ul, .widget_categories ul, .widget_archive ul {
  1237. list-style: none;
  1238. margin: 0 ;
  1239. padding: 0 ;
  1240. }
  1241. .suf-mag-category ul { margin: 8px; }
  1242. .suf-mag-category ul li,
  1243. .sidebar-tab-content ul li,
  1244. .suf-widget ul li,
  1245. .suf-flat-widget ul li,
  1246. .suf-panel-widget ul li {
  1247. background-repeat: no-repeat;
  1248. padding-left: 22px ;
  1249. background-position: 0 1px;
  1250. padding-bottom: 3px;
  1251. }
  1252. .tab-box div.sbtab-content-archives ul li,
  1253. .tabbed-sidebar div.sbtab-content-archives ul li,
  1254. .widget_archive ul li {
  1255. background: url(images/icons/calendar_date.png) no-repeat;
  1256. padding-left: 20px;
  1257. padding-bottom: 3px;
  1258. }
  1259. .tab-box div.sbtab-content-categories ul li,
  1260. .tabbed-sidebar div.sbtab-content-categories ul li,
  1261. .widget_categories ul li {
  1262. background: no-repeat 0 2px;
  1263. padding-bottom: 3px;
  1264. }
  1265. /* Other Widget Areas */
  1266. #right-header-widgets, #top-bar-right-widgets {
  1267. float: right;
  1268. display: inline-block;
  1269. margin-left: 10px;
  1270. }
  1271. #left-header-widgets,
  1272. #top-bar-left-widgets {
  1273. float: left;
  1274. display: inline-block;
  1275. margin-right: 10px;
  1276. }
  1277. #horizontal-outer-widgets-1,
  1278. #horizontal-outer-widgets-2 {
  1279. width: 100%;
  1280. padding: 10px 0 10px 0;
  1281. display: inline-block;
  1282. float: left;
  1283. text-align: center;
  1284. }
  1285. .suf-horizontal-widget {
  1286. margin: 5px;
  1287. float: none;
  1288. display: inline-block;
  1289. text-align: left;
  1290. vertical-align: top;
  1291. }
  1292. /* Settings for Twitter widget */
  1293. .widget-suf-twitter {
  1294. text-align: center;
  1295. margin: 0;
  1296. }
  1297. .widget-suf-follow-twitter ul li {
  1298. background: url(images/icons/comment.png) no-repeat;
  1299. }
  1300. #right-header-widgets .widget-suf-twitter,
  1301. #left-header-widgets .widget-suf-twitter,
  1302. #top-bar-right-widgets .widget-suf-twitter,
  1303. #top-bar-left-widgets .widget-suf-twitter {
  1304. padding: 0;
  1305. }
  1306. .widget-suf-twitter-boxed {
  1307. padding: 10px;
  1308. }
  1309. .twitter-icon-and-tag img {
  1310. margin: 5px 10px 0 0;
  1311. float: left;
  1312. }
  1313. .twitter-icon-and-tag {
  1314. margin: 10px 5px 10px 0;
  1315. display: inline-block;
  1316. font-size: 125%;
  1317. }
  1318. .twitter-header {
  1319. text-align: center;
  1320. }
  1321. #right-header-widgets a.twitter-icon-and-tag,
  1322. #right-header-widgets a.twitter-icon-and-tag img,
  1323. #left-header-widgets a.twitter-icon-and-tag,
  1324. #left-header-widgets a.twitter-icon-and-tag img,
  1325. #top-bar-right-widgets a.twitter-icon-and-tag,
  1326. #top-bar-right-widgets a.twitter-icon-and-tag img,
  1327. #top-bar-left-widgets a.twitter-icon-and-tag,
  1328. #top-bar-left-widgets a.twitter-icon-and-tag img {
  1329. margin: 0 0 0 0;
  1330. padding: 0 0 0 0;
  1331. }
  1332. a.twitter-icon-and-tag, a.twitter-icon-and-tag:hover, a.twitter-icon-and-tag:active,
  1333. .warea a.twitter-icon-and-tag, .warea a.twitter-icon-and-tag:hover, .warea a.twitter-icon-and-tag:active,
  1334. #nav a.twitter-icon-and-tag:hover,
  1335. #nav a.twitter-icon-and-tag:active,
  1336. #nav a.twitter-icon-and-tag,
  1337. #nav-top a.twitter-icon-and-tag:hover,
  1338. #nav-top a.twitter-icon-and-tag:active,
  1339. #nav-top a.twitter-icon-and-tag {
  1340. text-decoration: none;
  1341. background: none;
  1342. }
  1343. /* End Twitter widget settings */
  1344. #widgets-above-header {
  1345. text-align: center;
  1346. margin: 10px 0;
  1347. display:block;
  1348. }
  1349. #widgets-above-header .col-control { text-align: center; }
  1350. #widgets-above-header .suf-widget{
  1351. display: inline-block;
  1352. text-align: left;
  1353. float: none;
  1354. vertical-align: top;
  1355. }
  1356. #header-widgets {
  1357. display: inline;
  1358. float: right;
  1359. }
  1360. #header-widgets .suf-widget {
  1361. display: inline-block;
  1362. float: none;
  1363. vertical-align: top;
  1364. }
  1365. /* Featured Posts */
  1366. #featured-posts {
  1367. margin-top: 15px;
  1368. padding: 0;
  1369. border-color: #c0c0c0;
  1370. background-color: #ffffff;
  1371. position: relative;
  1372. }
  1373. #featured-posts.index-below, .featured-content.index-below { padding-bottom: 35px; }
  1374. .featured-content { position: relative; }
  1375. .featured-content .top,
  1376. #featured-posts .top {
  1377. top: 0;
  1378. left: 0;
  1379. }
  1380. .featured-content .bottom,
  1381. #featured-posts .bottom {
  1382. bottom: 0;
  1383. left: 0;
  1384. }
  1385. .featured-content .left,
  1386. #featured-posts .left {
  1387. top: 0;
  1388. left: 0;
  1389. }
  1390. .featured-content .right,
  1391. #featured-posts .right {
  1392. right: 0;
  1393. bottom: 0;
  1394. }
  1395. #featured-posts ul {
  1396. list-style: none;
  1397. }
  1398. #sliderPager, .sliderPager, #sliderControl, .sliderControl { margin: 5px; }
  1399. .index-overlaid #sliderIndex, .index-overlaid .sliderIndex { bottom: 5px; z-index: 30; padding: 0; }
  1400. .show-border.index-overlaid #sliderIndex, .show-border.index-overlaid .sliderIndex { bottom: 0; }
  1401. .index-overlaid #sliderPager, .index-overlaid .sliderPager, .index-overlaid #sliderControl, .index-overlaid .sliderControl { padding: 0 5px; }
  1402. .index-overlaid #sliderIndex a, .index-overlaid .sliderIndex a { background-color: #eee; }
  1403. .pager-bullets #sliderPager a, .pager-bullets .sliderPager a { width: 18px; height: 18px; padding: 0; display: inline-block; border: none; margin: 0; }
  1404. ul.sliderContent { margin: 0; }
  1405. .no-border #slider, .no-border .slider { margin: 0; }
  1406. .featured-content ul, .featured-content ul li {
  1407. padding-left: 0;
  1408. }
  1409. .featured-content ul.sliderContent li {
  1410. background-image: none;
  1411. }
  1412. .featured-content-title {
  1413. font-weight: bold;
  1414. }
  1415. /* JQuery Cycle is used for the featured posts */
  1416. #slider {
  1417. position: relative; /* important */
  1418. overflow: hidden; /* important */
  1419. margin: 5px 5px 0 5px;
  1420. }
  1421. .slider {
  1422. position: relative; /* important */
  1423. overflow: hidden; /* important */
  1424. }
  1425. #sliderContent {
  1426. width: 100%;
  1427. margin: 0;
  1428. padding-left: 0;
  1429. }
  1430. .sliderImage {
  1431. float: left; /* important */
  1432. position: relative; /* important */
  1433. display: none; /* important */
  1434. width: 100%;
  1435. padding: 0;
  1436. margin: 0;
  1437. }
  1438. .sliderImage div {
  1439. position: absolute; /* important */
  1440. width: 100%;
  1441. background-color: #222222;
  1442. filter: alpha(opacity=70); /* here you can set the opacity of box with text */
  1443. color: #fff;
  1444. text-align: left;
  1445. }
  1446. .sliderImage div p {
  1447. margin: 10px;
  1448. font-size: 108%;
  1449. text-align: left;
  1450. }
  1451. .sliderImage div a {
  1452. font-weight: bold;
  1453. }
  1454. .sliderImage div a:hover {
  1455. text-decoration: none;
  1456. }
  1457. .sliderImage div ins {
  1458. text-decoration: none;
  1459. font-weight: bolder;
  1460. }
  1461. img.featured-excerpt-left {
  1462. float: right;
  1463. }
  1464. img.featured-excerpt-right {
  1465. float: left;
  1466. }
  1467. .sliderImage.center { text-align: center; }
  1468. .sliderImage.full-width img { width: 100%; height: auto; }
  1469. .sliderImage.center img.featured-excerpt-left, .sliderImage.center img.featured-excerpt-right { float: none; }
  1470. .sliderIndex a,
  1471. #sliderIndex a {
  1472. border: 1px solid;
  1473. margin: 1px;
  1474. padding: 2px 5px;
  1475. font-weight: bold;
  1476. }
  1477. .sliderIndex a:hover,
  1478. #sliderIndex a:hover {
  1479. cursor: pointer;
  1480. text-decoration: none;
  1481. }
  1482. #sliderIndex, .sliderIndex { padding: 0; position: absolute; width: 100%; text-align: center; }
  1483. .show-border #sliderIndex, .show-border .sliderIndex { padding: 0; }
  1484. #sliderPager, .sliderPager, #sliderControl, .sliderControl { height: 20px; padding: 5px 0; }
  1485. .sliderPager.left, #sliderPager.left, .sliderControl.left, #sliderControl.left { float: left; }
  1486. .sliderPager.right, #sliderPager.right, .sliderControl.right, #sliderControl.right { float: right; }
  1487. .controller-icons #sliderControl, .controller-icons .sliderControl { position: absolute; width: 100%; margin: 0; padding: 0; z-index: 30; height: 0; }
  1488. .controller-icons .sliderPrev { float: left; background-position: -16px 0; background-color: transparent; }
  1489. .controller-icons .sliderNext { float: right; background-position: -46px 0; background-color: transparent; }
  1490. .controller-icons .sliderPause { display: none; }
  1491. .controller-icons #sliderControl .sliderPrev, .controller-icons #sliderControl .sliderNext, .controller-icons .sliderControl .sliderPrev, .controller-icons .sliderControl .sliderNext { height: 30px; width: 30px; padding: 0; margin: 0 10px; border: none; background-color: transparent; visibility: hidden; }
  1492. .controller-icons #sliderControl .slide-hovered, .controller-icons .sliderControl .slide-hovered { visibility: visible; opacity:0.5; }
  1493. .controller-icons #sliderControl .control-hovered, .controller-icons .sliderControl .control-hovered { visibility: visible; opacity:1; }
  1494. .controller-icons .sliderControl .sliderPrev:hover, .controller-icons .sliderControl .sliderNext:hover { background-color: transparent; }
  1495. .controller-icons #sliderControl a:hover, .controller-icons.index-overlaid #sliderControl a:hover { background-color: transparent; }
  1496. .sliderPager.below, #sliderPager.below {
  1497. margin-top: auto;
  1498. position: static;
  1499. }
  1500. .bottom-center, .top-center { text-align: center; }
  1501. .sliderPager.bottom-center, #sliderPager.bottom-center, .sliderPager.top-center, #sliderPager.top-center { float: none; }
  1502. .sliderPager.bottom-right, #sliderPager.bottom-right, .sliderPager.top-right, #sliderPager.top-right { float: right; }
  1503. .sliderControl.over, #sliderControl.over { float: none; text-align: center; position: relative; z-index: 20; }
  1504. .over .sliderPrev { float: left; }
  1505. .over .sliderNext { float: right; }
  1506. .over .sliderPause { float: none; }
  1507. .featured-content img.left-thumbnail,
  1508. .featured-content img.right-thumbnail,
  1509. #featured-posts img.left-thumbnail,
  1510. #featured-posts img.right-thumbnail {
  1511. margin: 0;
  1512. }
  1513. .featured-content .sliderIndex a, .featured-content .sliderIndex a:hover, .featured-content .sliderIndex a:visited,
  1514. .featured-content .sliderIndex a:active, .featured-content .sliderIndex a:focus {
  1515. text-decoration: none;
  1516. }
  1517. #recent-comments ul li {
  1518. background: url(images/icons/comments.png) no-repeat;
  1519. padding-bottom: 3px;
  1520. }
  1521. .widget_categories ul li {
  1522. background: no-repeat 0 2px;
  1523. padding-left: 20px;
  1524. padding-bottom: 3px;
  1525. }
  1526. /* meta */
  1527. .tab-box div.sbtab-content-meta .rss,
  1528. .tabbed-sidebar div.sbtab-content-meta .rss,
  1529. .suf-widget .rss {
  1530. background: no-repeat left center;
  1531. padding-bottom: 3px;
  1532. }
  1533. /* calendar */
  1534. .widget_calendar caption { font-weight: bold; padding: 0 0 0.5em; }
  1535. .widget_calendar table { margin: 1em auto; width: 90%; max-width: 300px; }
  1536. .widget_calendar td { text-align: center; margin: 1px; }
  1537. .widget_calendar a { font-weight: bold; }
  1538. /* alignments */
  1539. img.center, img[align="center"] {
  1540. display: block;
  1541. margin-left: auto;
  1542. margin-right: auto;
  1543. }
  1544. img[align="left"] {
  1545. float:left;
  1546. margin: 2px 10px 5px 0;
  1547. }
  1548. img[align="right"] {
  1549. float:right;
  1550. margin: 2px 0 5px 10px;
  1551. }
  1552. .clear {
  1553. clear:both;
  1554. }
  1555. hr.clear {
  1556. clear:both;
  1557. visibility: hidden;
  1558. margin: 0;
  1559. padding: 0;
  1560. }
  1561. .author-profile,
  1562. .info-tag,
  1563. .info-category {
  1564. padding: 15px;
  1565. margin-bottom: 15px;
  1566. background-color: #ffffff;
  1567. font-size: 116%;
  1568. border: solid 1px #c0c0c0;
  1569. }
  1570. .author-profile h2,
  1571. .info-tag h2,
  1572. h2.category-title, .info-category h2.posttitle {
  1573. margin: 0.5em 0 10px 0;
  1574. padding-bottom: 5px;
  1575. border-bottom: dotted 1px #CCCCCC;
  1576. }
  1577. .author-profile img.avatar {
  1578. margin: 5px 10px;
  1579. }
  1580. .author-even img.avatar {
  1581. float: right;
  1582. margin: 5px 0 5px 15px;
  1583. }
  1584. .author-odd img.avatar {
  1585. float: left;
  1586. margin: 5px 15px 5px 0;
  1587. }
  1588. .info-category a img {
  1589. float: right;
  1590. margin: 5px 0 5px 10px;
  1591. }
  1592. .entry img {
  1593. max-width: 100%;
  1594. }
  1595. .entry img.attachment-thumbnail { max-width: none; } /* Fix for IE8 */
  1596. .wp-caption {
  1597. text-align: center;
  1598. background: #fff;
  1599. padding: 4px;
  1600. margin-bottom: 1em;
  1601. }
  1602. .entry .wp-caption {
  1603. max-width: 100%;
  1604. }
  1605. .wp-caption-text, .gallery-caption {
  1606. font-size: 100%;
  1607. font-style: italic;
  1608. margin:0;
  1609. padding:6px 3px 2px;
  1610. line-height: 16px;
  1611. text-align: center;
  1612. }
  1613. .wp-caption img {
  1614. margin: 5px 0 0;
  1615. padding: 0;
  1616. border: 0 none;
  1617. max-width: 100%;
  1618. }
  1619. .wp-caption-dd {
  1620. font-size: 91.67%;
  1621. line-height: 17px;
  1622. padding: 0 4px 5px;
  1623. margin: 0;
  1624. }
  1625. .sticky, .bypostauthor { }
  1626. /* Clearfix: Courtesy http://www.positioniseverything.net/easyclearing.html */
  1627. .fix:after {
  1628. content:".";
  1629. display:block;
  1630. height:0;
  1631. clear:both;
  1632. visibility:hidden;
  1633. }
  1634. .fix { display: inline-block; }
  1635. /* Hide from IE Mac \*/
  1636. .fix {display:block;}
  1637. /* End hide from IE Mac */
  1638. #sidebar-container {
  1639. display: inline-block;
  1640. margin-top: 15px;
  1641. position: relative;
  1642. }
  1643. .sidebar-container-left {
  1644. float: left;
  1645. }
  1646. .sidebar-container-right {
  1647. float: left;
  1648. }
  1649. #sidebar-container.sidebar-container-left #sidebar-shell-1, #sidebar-container.sidebar-container-left #sidebar-shell-2 { float: left; margin-left: 0; margin-right: 15px; right: auto; }
  1650. #sidebar-container.sidebar-container-right #sidebar-shell-1, #sidebar-container.sidebar-container-right #sidebar-shell-2 { float: right; margin-right: 0; margin-left: 15px; right: auto; left: auto; }
  1651. /* Contains the entire.tab-box section */
  1652. .tab-box, .tabbed-sidebar {
  1653. display: block;
  1654. /* margin-top: 15px;*/
  1655. }
  1656. .tab-box-left {
  1657. margin-right: 15px;
  1658. }
  1659. .sidebar-shell .tab-box-left {
  1660. margin-right: 0;
  1661. }
  1662. .tab-box-right {
  1663. margin-left: 15px;
  1664. }
  1665. .sidebar-shell .tab-box-right {
  1666. margin-left: 0;
  1667. }
  1668. .sidebar-container-left .tab-box { float: left; }
  1669. .sidebar-container-right .tab-box { float: right; }
  1670. /* List of tabs */
  1671. ul.sidebar-tabs {
  1672. font: bold 100%/100% Arial, Helvetica, sans-serif;
  1673. display: inline-block;
  1674. width: 100%;
  1675. margin: 0;
  1676. padding: 0;
  1677. }
  1678. ul.sidebar-tabs li {
  1679. list-style: none;
  1680. float: left;
  1681. margin: 0 2px 0 0;
  1682. padding: 0;
  1683. }
  1684. ul.sidebar-tabs li a, .warea ul.sidebar-tabs li a {
  1685. overflow: hidden;
  1686. display: block;
  1687. padding: 7px;
  1688. text-decoration: none;
  1689. border: 1px solid #c0c0c0;
  1690. cursor: pointer;
  1691. color: #444;
  1692. background-color: #fff;
  1693. }
  1694. .warea .sidebar-tabs a, .warea .sidebar-tabs a:hover {
  1695. text-decoration: none;
  1696. }
  1697. /* The content shown when a tab is selected */
  1698. div.sidebar-tab-content {
  1699. display: block;
  1700. padding: 10px;
  1701. background: #fff;
  1702. border: 1px solid #c0c0c0;
  1703. margin-top: -5px;
  1704. }
  1705. /* Magazine */
  1706. .suf-mag-headlines {
  1707. margin-top: 3px;
  1708. display: block;
  1709. background: #fff;
  1710. border: 1px solid #c0c0c0;
  1711. }
  1712. .suf-mag-headline-photo-box {
  1713. padding: 5px;
  1714. overflow: hidden;
  1715. float:left;
  1716. margin: 5px 3px 5px -100%;
  1717. text-align: center;
  1718. position: relative;
  1719. }
  1720. .suf-mag-headline-photo {
  1721. display: inline-block;
  1722. padding: 5px;
  1723. }
  1724. .suf-mag-headline-block {
  1725. float: left;
  1726. margin: 5px 5px 5px 2px;
  1727. position: relative;
  1728. }
  1729. .suf-mag-headline-block ul.mag-headlines {
  1730. border-collapse: collapse;
  1731. list-style: none;
  1732. margin: 10px;
  1733. padding-left: 10px;
  1734. }
  1735. .suf-mag-headline-block li.suf-mag-headline a {
  1736. padding: 3px 8px;
  1737. text-decoration: none;
  1738. color: #000;
  1739. }
  1740. .suf-mag-headline-block li.suf-mag-headline a.tab-current {
  1741. padding: 2px 7px;
  1742. border: none;
  1743. }
  1744. .suf-mag-headline {
  1745. display: block;
  1746. line-height: 22px;
  1747. font-size: 108%;
  1748. }
  1749. .suf-mag-excerpts {
  1750. width: 100%;
  1751. padding: 0;
  1752. margin: 10px 0;
  1753. display: inline-block;
  1754. }
  1755. suf-mag-category-description {
  1756. margin: 5px;
  1757. }
  1758. .suf-tiles {
  1759. width: 100%;
  1760. padding: 0;
  1761. }
  1762. .suf-mag-category,
  1763. .suf-mag-excerpt,
  1764. .suf-tile {
  1765. padding: 0 0 8px;
  1766. font-size: 108%;
  1767. line-height: 20px;
  1768. text-align: center;
  1769. border: 1px solid #c0c0c0;
  1770. vertical-align: top;
  1771. background-color: #ffffff;
  1772. position: relative;
  1773. display: inline-block;
  1774. vertical-align: top;
  1775. width: 100%;
  1776. margin-top: 5px;
  1777. }
  1778. .suf-tile-1c {
  1779. -moz-box-sizing: border-box;
  1780. -webkit-box-sizing: border-box;
  1781. -ms-box-sizing: border-box;
  1782. box-sizing: border-box;
  1783. }
  1784. .suf-mag-category { padding: 0 0 8px; text-align: left; }
  1785. .suf-tile.bottom, .suf-mag-excerpt.bottom, .suf-mag-category.bottom { padding-bottom: 35px; }
  1786. .suf-mag-excerpt-image { overflow: hidden; }
  1787. div.suf-tile-image {
  1788. float: none;
  1789. display: inline-block;
  1790. }
  1791. h2.suf-mag-excerpt-title a,
  1792. h2.suf-mag-excerpt-title a:hover,
  1793. h2.suf-mag-excerpt-title a:visited,
  1794. h2.suf-mag-excerpt-title a:active,
  1795. h2.suf-tile-title a,
  1796. h2.suf-tile-title a:hover,
  1797. h2.suf-tile-title a:visited,
  1798. h2.suf-tile-title a:active {
  1799. font-weight: bold;
  1800. font-size: 48%;
  1801. text-decoration: none;
  1802. color: #444;
  1803. }
  1804. h2.suf-mag-excerpt-title,
  1805. h2.suf-tile-title {
  1806. border-top: 1px dotted #c0c0c0;
  1807. border-bottom: 1px dotted #c0c0c0;
  1808. line-height: 18px;
  1809. padding: 5px 0;
  1810. margin-right: 8px;
  1811. margin-left: 8px;
  1812. }
  1813. .suf-tiles .left { text-align: left; }
  1814. .suf-tiles .center { text-align: center; }
  1815. .suf-tiles .right { text-align: right; }
  1816. .suf-mag-excerpt-image,
  1817. .suf-tile-image {
  1818. overflow: hidden;
  1819. height: 100px;
  1820. width: auto;
  1821. margin: 0 8px 12px;
  1822. text-align: center;
  1823. }
  1824. .suf-mag-excerpt, .suf-tile {
  1825. padding-top: 0;
  1826. }
  1827. .suf-tile-image img {
  1828. margin: auto;
  1829. max-width: 100%;
  1830. -moz-box-sizing: border-box;
  1831. -webkit-box-sizing: border-box;
  1832. -ms-box-sizing: border-box;
  1833. box-sizing: border-box;
  1834. }
  1835. .suf-tile-topmost {
  1836. width: 100%;
  1837. margin: 0;
  1838. border-top-left-radius: 5px;
  1839. border-top-right-radius: 5px;
  1840. }
  1841. .suf-mag-excerpt-image.suf-tile-topmost a, .suf-tile-image.suf-tile-topmost a {
  1842. overflow: hidden;
  1843. margin: 8px 10px;
  1844. }
  1845. .suf-mag-excerpt-text,
  1846. .suf-tile-text {
  1847. margin: 12px 8px;
  1848. }
  1849. .suf-mag-categories {
  1850. width: 100%;
  1851. padding: 0;
  1852. margin: 10px 0;
  1853. }
  1854. h2.suf-mag-headlines-title,
  1855. .suf-mag-excerpts-header,
  1856. .suf-mag-categories-header {
  1857. padding: 5px;
  1858. border: 1px solid #c0c0c0;
  1859. background-color: #ffffff;
  1860. font-size: 108%;
  1861. color: #444;
  1862. font-weight: bold;
  1863. line-height: 26px;
  1864. }
  1865. .suf-mag-excerpts-header.left, .suf-mag-categories-header.left { text-align: left; }
  1866. .suf-mag-excerpts-header.center, .suf-mag-categories-header.center { text-align: center; }
  1867. .suf-mag-excerpts-header.right, .suf-mag-categories-header.right { text-align: right; }
  1868. .suf-mag-category-image {
  1869. overflow: hidden;
  1870. height: 100px;
  1871. width: 100%;
  1872. margin-bottom: 10px;
  1873. text-align: center;
  1874. }
  1875. h2.suf-mag-category-title {
  1876. font-size: 100%;
  1877. font-family: Arial, Verdana, sans-serif;
  1878. font-weight: bold;
  1879. padding: 5px;
  1880. }
  1881. .widget-suf-cat-posts ul.suf-cat-posts-list,
  1882. .suf-mag-category ul.suf-mag-catblock-posts {
  1883. border-collapse: collapse;
  1884. list-style: none;
  1885. padding-left: 0;
  1886. }
  1887. .widget-suf-cat-posts li.suf-cat-post,
  1888. .suf-mag-category li.suf-mag-catblock-post {
  1889. padding: 6px 1px 6px 20px;
  1890. border-bottom: 1px dotted #c0c0c0;
  1891. background: url(images/right_arrow.png) no-repeat 0 10px;
  1892. }
  1893. .widget-suf-cat-posts li.suf-cat-post a,
  1894. .suf-mag-category li.suf-mag-catblock-post a {
  1895. text-decoration: none;
  1896. color: #000;
  1897. }
  1898. .widget-suf-cat-posts li.suf-cat-post:hover,
  1899. .suf-mag-category li.suf-mag-catblock-post:hover {
  1900. padding: 5px 0 5px 19px;
  1901. border: 1px solid #c0c0c0;
  1902. }
  1903. .suf-cat-post,
  1904. .suf-mag-catblock-post {
  1905. display: block;
  1906. line-height: 22px;
  1907. font-size: 108%;
  1908. }
  1909. .suf-mag-category-footer {
  1910. vertical-align: bottom;
  1911. }
  1912. .suf-mag-excerpt-footer { display: inline-block; width: 100%; }
  1913. a.excerpt-more-append,
  1914. a.suf-mag-excerpt-full-story,
  1915. a.suf-mag-category-all-posts {
  1916. float: right;
  1917. margin: 5px;
  1918. padding: 4px 10px;
  1919. text-decoration: none;
  1920. }
  1921. .bottom .suf-mag-excerpt-footer, .bottom .suf-mag-category-footer { position: absolute; bottom: 0; left: 0; width: 100%; }
  1922. .suf-cat-posts-widget-image {
  1923. overflow: hidden;
  1924. height: 80px;
  1925. width: 100%;
  1926. margin-bottom: 10px;
  1927. text-align: center;
  1928. }
  1929. .follow-icon-and-tag {
  1930. margin: 10px 5px 10px 0;
  1931. display: inline-block;
  1932. font-size: 125%;
  1933. vertical-align: middle;
  1934. }
  1935. #right-header-widgets .follow-icon-and-tag,
  1936. #left-header-widgets .follow-icon-and-tag {
  1937. display: inline-block;
  1938. margin: 0;
  1939. }
  1940. #top-bar-right-widgets .follow-icon-and-tag,
  1941. #top-bar-left-widgets .follow-icon-and-tag {
  1942. display: inline-block;
  1943. margin: 0;
  1944. }
  1945. #right-header-widgets a.follow-icon-and-tag:hover,
  1946. #right-header-widgets a.follow-icon-and-tag:active,
  1947. #right-header-widgets a.follow-icon-and-tag,
  1948. #left-header-widgets a.follow-icon-and-tag:hover,
  1949. #left-header-widgets a.follow-icon-and-tag:active,
  1950. #left-header-widgets a.follow-icon-and-tag,
  1951. #top-bar-right-widgets a.follow-icon-and-tag:hover,
  1952. #top-bar-right-widgets a.follow-icon-and-tag:active,
  1953. #top-bar-right-widgets a.follow-icon-and-tag,
  1954. #top-bar-left-widgets a.follow-icon-and-tag:hover,
  1955. #top-bar-left-widgets a.follow-icon-and-tag:active,
  1956. #top-bar-left-widgets a.follow-icon-and-tag {
  1957. padding: 3px 2px;
  1958. }
  1959. a.follow-icon-and-tag:hover, a.follow-icon-and-tag:active, a.follow-icon-and-tag,
  1960. .warea a.follow-icon-and-tag:hover, .warea a.follow-icon-and-tag:active, .warea a.follow-icon-and-tag {
  1961. text-decoration: none;
  1962. background: none;
  1963. }
  1964. .widget-suf-subscription form p,
  1965. .widget-suf-subscription p {
  1966. text-align: center;
  1967. }
  1968. .widget-suf-subscription form {
  1969. margin: 10px auto;
  1970. text-align: center;
  1971. }
  1972. .widget-suf-subscription div {
  1973. text-align: center;
  1974. }
  1975. .widget-suf-subscription input[type='text'].subscription-email {
  1976. color: #999;
  1977. border: 1px solid #888;
  1978. margin: 10px 0;
  1979. width: 140px;
  1980. }
  1981. .subscription-stats-icon {
  1982. height: 26px;
  1983. width: 88px;
  1984. border: none;
  1985. }
  1986. .suf-flat-widget {
  1987. margin: 15px 8px;
  1988. }
  1989. .suf-flat-widget h3 {
  1990. font-size: 133%;
  1991. border-top: 1px dotted #666;
  1992. border-bottom: 1px dotted #666;
  1993. margin-bottom: 10px;
  1994. padding: 5px 0;
  1995. }
  1996. .flattened {
  1997. background-color: #fff;
  1998. border: 1px solid #c0c0c0;
  1999. }
  2000. #horizontal-outer-widgets-1.flattened {
  2001. margin-top: 10px;
  2002. }
  2003. #horizontal-outer-widgets-2.flattened {
  2004. margin: 10px 0;
  2005. }
  2006. .author-info {
  2007. border: 1px solid #c0c0c0;
  2008. margin-top: 15px;
  2009. padding: 5px;
  2010. }
  2011. .author-info h4 {
  2012. padding: 5px 0 5px 5px;
  2013. font-family: Arial, sans-serif;
  2014. }
  2015. .title-container {
  2016. padding-left: 58px;
  2017. /*padding-right: 10px;*/
  2018. }
  2019. .post .title {
  2020. float: left;
  2021. width: 100%;
  2022. position: relative;
  2023. margin: 0;
  2024. padding: 0;
  2025. }
  2026. .widget_tag_cloud {
  2027. font-family: Arial, Trebuchet, "Trebuchet MS", sans-serif;
  2028. }
  2029. .col-control {
  2030. margin: 0 auto;
  2031. padding: 0;
  2032. }
  2033. /* Sliding panel. */
  2034. #top-bar-right-spanel {
  2035. text-align: center;
  2036. display: none;
  2037. padding: 10px;
  2038. background-color: #040D0F;
  2039. border: 1px solid #222;
  2040. }
  2041. /* The part of the panel that actually slides. */
  2042. .spanel {
  2043. overflow: hidden;
  2044. position: relative;
  2045. z-index: 10;
  2046. }
  2047. /* Widget container. */
  2048. .spanel .spanel-content {
  2049. display: block;
  2050. overflow: hidden;
  2051. margin: 0 auto;
  2052. padding: 0;
  2053. text-align: left;
  2054. }
  2055. /* Sliding panel widgets. */
  2056. .spanel .suf-panel-widget {
  2057. overflow: hidden;
  2058. float: left;
  2059. color: #AAA;
  2060. background: transparent;
  2061. font-family: Arial, Helvetica, sans-serif;
  2062. border: none;
  2063. }
  2064. .spanel .suf-panel-widget h3 {
  2065. color: #999;
  2066. font: bold 14px/100% Arial, Helvetica, sans-serif;
  2067. }
  2068. .spanel .suf-widget,
  2069. .spanel .suf-flat-widget {
  2070. float: left;
  2071. }
  2072. #top-bar-right-spanel-tab {
  2073. float: right;
  2074. display: inline-block;
  2075. margin-left: 10px;
  2076. }
  2077. /* Wrapper for the open/close button. */
  2078. #top-bar-right-spanel-tab .toggle {
  2079. }
  2080. /* Open/close link. */
  2081. #top-bar-right-spanel-tab a {
  2082. margin: 0;
  2083. padding: 8px 8px 5px 8px;
  2084. text-align: center;
  2085. }
  2086. /* Open link. */
  2087. #top-bar-right-spanel-tab a.open {
  2088. }
  2089. /* Close link. */
  2090. #top-bar-right-spanel-tab a.close {
  2091. display: none;
  2092. }
  2093. /* Open/close link hover. */
  2094. #top-bar-right-spanel-tab a:hover {
  2095. cursor: pointer;
  2096. }
  2097. /* Open/close link array (&urarr;). */
  2098. #top-bar-right-spanel-tab a .arrow {
  2099. font-style: normal;
  2100. }
  2101. /* Now Reading Plugin */
  2102. .nr-post {
  2103. }
  2104. .nr-post h3 {
  2105. border: 1px solid #c0c0c0;
  2106. padding: 5px;
  2107. font-size: 116%;
  2108. margin: 5px 0;
  2109. clear: both;
  2110. }
  2111. div.booklisting {
  2112. list-style: none;
  2113. }
  2114. div.booklisting,
  2115. div.bookentry {
  2116. margin: 10px 0;
  2117. }
  2118. div.bookentry {
  2119. display: inline-block;
  2120. }
  2121. div.booklisting img,
  2122. div.bookentry img {
  2123. border: 1px solid #c0c0c0;
  2124. padding: 5px 5px 5px 5px;
  2125. margin: 0 12px 12px 12px;
  2126. width: 108px;
  2127. height: 160px;
  2128. }
  2129. .nr_widget img {
  2130. padding: 5px 5px 5px 5px;
  2131. width: 65px;
  2132. height: 100px;
  2133. }
  2134. .nr_widget h4 {
  2135. border: 1px solid #c0c0c0;
  2136. padding: 5px 5px 5px 5px;
  2137. font: bold 100%/100% Arial, Helvetica, sans-serif;
  2138. margin: 20px 0 5px 0;
  2139. clear: both;
  2140. }
  2141. div.bookentry .stats {
  2142. float: left;
  2143. font-size: 100%;
  2144. line-height: 20px;
  2145. }
  2146. div.bookentry .stats p {
  2147. text-align: left;
  2148. margin-bottom: 7px;
  2149. }
  2150. div.bookentry .review {
  2151. float: right;
  2152. padding: 0 0 0 10px;
  2153. }
  2154. .bookdata {
  2155. margin-top: 5px;
  2156. font-size: 90%;
  2157. color: #999999;
  2158. }
  2159. .bookdata a, .bookdata a:visited {
  2160. color: #999999;
  2161. text-decoration: none;
  2162. }
  2163. .bookdata a:hover {
  2164. text-decoration: none;
  2165. }
  2166. .bookdata .icon { width: 16px; height: 16px; display: inline-block;}
  2167. .bookdata .edit, .bookdata .manage { float: right; margin-right: 10px; line-height: 1.5em; padding: 4px 0;}
  2168. .bookdata .rating { float: right; line-height: 1.5em; padding: 4px 0;}
  2169. .bookdata .edit .icon {background: no-repeat 0 -112px;}
  2170. .bookdata .manage .icon {background: no-repeat -16px -128px;}
  2171. .bookdata .author {
  2172. padding: 4px 10px 4px 0;
  2173. float: left;
  2174. line-height: 1.5em;
  2175. }
  2176. .bookentry {
  2177. padding: 15px 0 5px;
  2178. clear: both;
  2179. font-size: 116%;
  2180. line-height: 1.6em;
  2181. margin-bottom: 1em;
  2182. }
  2183. .post .libtitle {
  2184. float: left;
  2185. margin-left: 0;
  2186. width: 745px;
  2187. }
  2188. .nr-shelf {
  2189. width: 100%;
  2190. padding: 0;
  2191. }
  2192. .nr-shelf-slot {
  2193. margin: 8px;
  2194. font-size: 108%;
  2195. line-height: 20px;
  2196. text-align: center;
  2197. }
  2198. .now-reading form input{
  2199. margin: 3px 2px;
  2200. }
  2201. /* WP PageNavi Plugin */
  2202. .wp-pagenavi {
  2203. text-align: center;
  2204. margin: 5px 0px;
  2205. }
  2206. .wp-pagenavi a,
  2207. .wp-pagenavi span {
  2208. padding: 2px 5px 2px 5px;
  2209. border-width: 1px;
  2210. border-style: solid;
  2211. margin: 3px;
  2212. }
  2213. .wp-pagenavi span.pages {
  2214. padding: 2px 8px;
  2215. }
  2216. .wp-pagenavi span.extend {
  2217. border: none;
  2218. }
  2219. /* WP-Recaptcha Plugin */
  2220. #commentform label.recaptcha_input_area_text {
  2221. border: none;
  2222. }
  2223. /* WPML Plugin */
  2224. #language-selector span {
  2225. font-weight: normal;
  2226. font-size: 12px;
  2227. }
  2228. #language-selector ul li,
  2229. #language-selector ul ul li {
  2230. height: 30px;
  2231. border-width: 0;
  2232. }
  2233. #language-selector ul li,
  2234. #language-selector ul ul li,
  2235. #language-selector ul li a,
  2236. #language-selector ul ul li a {
  2237. line-height: 18px;
  2238. margin: 0;
  2239. }
  2240. #language-selector ul li a.lang_sel_sel,
  2241. #language-selector ul li a.lang_sel_sel:visited,
  2242. #language-selector ul ul li a,
  2243. #language-selector ul ul li a:visited {
  2244. width: 147px;
  2245. }
  2246. #language-selector ul ul {
  2247. width: auto;
  2248. }
  2249. #language-selector ul li a.lang_sel_sel,
  2250. #language-selector ul li a.lang_sel_sel:visited,
  2251. #language-selector ul ul li a,
  2252. #language-selector ul ul li a:visited {
  2253. padding: 5px 0 3px 0;
  2254. }
  2255. #language-selector img {
  2256. margin: 0 0 0 10px;
  2257. }
  2258. #language-selector ul li a.lang_sel_sel,
  2259. #language-selector ul li a.lang_sel_sel:visited,
  2260. #language-selector ul li a.lang_sel_sel:hover,
  2261. #language-selector ul li a.lang_sel_sel:active,
  2262. #lang_sel ul li a:active,
  2263. #language-selector ul ul li a,
  2264. #language-selector ul ul li a:visited,
  2265. #language-selector ul ul li a:hover,
  2266. #language-selector ul ul li a:active,
  2267. #lang_sel ul ul li a:active {
  2268. background-image: none;
  2269. }
  2270. #language-selector ul ul {
  2271. top: auto;
  2272. }
  2273. #lang_sel li:before{
  2274. content:'';
  2275. }
  2276. /* Docking Boxes */
  2277. .dbx-clone{position:absolute; visibility:hidden}
  2278. .dbx-clone, .dbx-clone .dbx-handle-cursor{cursor:move !important}
  2279. .dbx-dummy{display:block; width:0; height:0; overflow:hidden}
  2280. .dbx-group, .dbx-box, .dbx-handle{position:relative; display:block}
  2281. .dbx-box{margin:0 0 15px 0; padding:0; clear:both; }
  2282. .dbx-group{width:210px; padding:0 0 10px}
  2283. #ie6 .dbx-group{width:210px; padding-bottom:0}
  2284. .dbx-handle{position:relative; margin:0; padding:8px 24px 7px 10px; border-bottom:1px dotted #c0c0c0}
  2285. .dbx-handle-cursor{cursor:move}
  2286. .dbx-handle.plain-borderless { border-bottom: none; }
  2287. a.dbx-toggle, a.dbx-toggle:visited{display:block; width:20px; height:20px; overflow:hidden; position:absolute; top:4px; right:3px; text-indent:-50px; text-decoration:none}
  2288. a.dbx-toggle-open, a.dbx-toggle-open:visited{background-position:0 0}
  2289. a.dbx-toggle-closed, a.dbx-toggle-closed:visited{background-position:0 -20px}
  2290. a.dbx-toggle-hilite-open, a.dbx-toggle-hilite-open:visited{background-position:-20px 0}
  2291. a.dbx-toggle-hilite-closed, a.dbx-toggle-hilite-closed:visited{background-position:-20px -20px}
  2292. .dbx-tooltip{display:block; position:absolute; margin:36px 0 0 125px; width:185px; border:1px solid #000; background:#ffd; color:#000; font:normal normal normal 0.85em tahoma,arial,sans-serif; padding:2px 4px 3px 5px; text-align:left}
  2293. #ie6 .dbx-tooltip{width:210px}
  2294. *[class="dbx-tooltip"]:lang(en){border-color:InfoText; background:InfoBackground; color:InfoText; font:small-caption; font-weight:normal}
  2295. .dbx-content{margin:0; padding:5px 10px 9px 10px; overflow:hidden}
  2296. .dbx-box-closed .dbx-content{display:block; height:4px; padding:0; overflow:hidden}
  2297. .dbx-box-closed .dbx-content *{display:none}
  2298. .dbx-clone{opacity:0.8; filter:alpha(opacity=80)}
  2299. /* Multi-column short code */
  2300. .suf-multic { display: block; width: 100%; float: left; margin: 10px 0;}
  2301. .suf-mc-col {display: inline-block; float: left; margin: 0 3px; padding: 4px}
  2302. .suf-mc-col-025 {width: 23%}
  2303. .suf-mc-col-033 {width: 31%}
  2304. .suf-mc-col-050 {width: 48%}
  2305. .suf-mc-col-066 {width: 64%}
  2306. .suf-mc-col-075 {width: 73%}
  2307. .suf-mc-col-100 {
  2308. width: 100%;
  2309. margin: 0;
  2310. -moz-box-sizing: border-box;
  2311. -webkit-box-sizing: border-box;
  2312. -ms-box-sizing: border-box;
  2313. box-sizing: border-box;
  2314. }
  2315. .suf-multic .suf-mc-col:first-child {padding-left: 0; margin-left: 0}
  2316. .suf-multic .suf-mc-col:last-child {padding-right: 0; margin-right: 0}
  2317. form.search-info { padding: 1.5em 0}
  2318. .search-hl { display: inline;}
  2319. span.search-highlight {background:#ff0; color: #000}
  2320. .post-pullout { width: 200px }
  2321. .entry-container { padding: 0; position: relative; }
  2322. /*
  2323. .meta-position-left-pullout { padding-left: 150px; }
  2324. .meta-position-right-pullout { padding-right: 150px; }
  2325. */
  2326. .meta-position-left-pullout .entry-container { padding-left: 150px; }
  2327. .meta-position-right-pullout .entry-container { padding-right: 150px; }
  2328. .meta-position-left-pullout .entry, .meta-position-right-pullout .entry {
  2329. width: 100%;
  2330. float: left;
  2331. -moz-box-sizing: border-box;
  2332. -webkit-box-sizing: border-box;
  2333. -ms-box-sizing: border-box;
  2334. box-sizing: border-box;
  2335. }
  2336. .meta-pullout { position: relative; width: 150px; float: left; font-size: 95%; }
  2337. .meta-left-pullout { text-align: right; margin-left: -100%; right: 150px; }
  2338. .meta-right-pullout { text-align: left; margin-right: -150px; }
  2339. .meta-pullout ul { list-style: none; }
  2340. .meta-left-pullout ul { margin-left: 0; margin-right: 10px; padding-left: 0; padding-right: 10px; border-right: 1px dotted #ccc; }
  2341. .meta-right-pullout ul { margin-left: 10px; margin-right: 0; padding-left: 10px; padding-right: 0; border-left: 1px dotted #ccc; }
  2342. .meta-pullout li { border-bottom: 1px dotted #ccc; padding: 0.6em 0; line-height: 1.5em; }
  2343. .meta-pullout .icon { display: inline-block; width: 16px; height: 16px; margin-right: 4px;}
  2344. .meta-pullout .tax { float: none; max-width: none; text-align: inherit; }
  2345. .meta-pullout .category { float: none; }
  2346. .meta-pullout .comments { float: none; }
  2347. .meta-pullout .edit { float: none; }
  2348. .meta-pullout .pullout-date .icon { background: no-repeat 0 -32px; }
  2349. .meta-pullout .category .icon { background: no-repeat 0 0;}
  2350. .meta-pullout .permalink .icon { background: no-repeat 0 -16px; }
  2351. .meta-pullout .comments .icon { background: no-repeat 0 -64px;}
  2352. .meta-pullout .edit .icon { background: no-repeat 0 -112px;}
  2353. .meta-pullout .author .icon { background: no-repeat -32px -128px; }
  2354. .meta-pullout .tax .icon { background: no-repeat -32px -144px; }
  2355. table.exif { margin: 10px 0; border-collapse: collapse; }
  2356. table.exif td { padding: 0.25em 2em 0.2em 0; border-bottom: 1px dotted #ccc; }
  2357. .format-standard, .format-gallery, .format-aside, .format-link, .format-chat, .format-video, .format-audio, .format-quote, .format-status { }
  2358. ul.image-sizes { list-style: none; clear: both; margin: 0 0 10px 0; padding: 0; }
  2359. ul.image-sizes li { float: left; padding: 5px 10px; margin: 0 10px 0 0; text-decoration: none; }
  2360. .suf-widget { overflow: hidden; }
  2361. .suf-widget-1c, .suf-widget-2c, .suf-widget-3c, .suf-widget-4c, .suf-widget-5c {
  2362. -moz-box-sizing: border-box;
  2363. -webkit-box-sizing: border-box;
  2364. -ms-box-sizing: border-box;
  2365. box-sizing: border-box;
  2366. }
  2367. .suf-widget-1c {
  2368. width: 100%;
  2369. margin: 5px 0;
  2370. }
  2371. .suf-widget-2c { width: 49%; margin: 5px 0.39%; }
  2372. .suf-widget-3c { width: 32%; margin: 5px 0.49%; }
  2373. .suf-widget-4c { width: 24%; margin: 5px 0.38%; }
  2374. .suf-widget-5c { width: 19%; margin: 5px 0.35%; }
  2375. .flattened .suf-widget-1c { display: block; float: none; }
  2376. .cl-widget {
  2377. margin-top: 8px;
  2378. margin-bottom: 8px;
  2379. background: #fff;
  2380. border: 1px solid #c0c0c0;
  2381. display: inline-block;
  2382. width: 99%;
  2383. -moz-box-sizing: border-box;
  2384. -webkit-box-sizing: border-box;
  2385. -ms-box-sizing: border-box;
  2386. box-sizing: border-box;
  2387. }
  2388. .cl-content { margin: 8px; }
  2389. .cl-widget h3 { text-align: center; }
  2390. .cl-warea-1 .cl-widget {
  2391. float: none;
  2392. margin-left: auto;
  2393. margin-right: auto;
  2394. }
  2395. .cl-warea {
  2396. text-align: justify;
  2397. -ms-text-justify: distribute;
  2398. text-justify: distribute;
  2399. }
  2400. .cl-warea:after {
  2401. content: '';
  2402. width: 100%;
  2403. display: inline-block;
  2404. font-size: 0;
  2405. line-height: 0
  2406. }
  2407. .cl-warea .cl-widget { display: inline-block; vertical-align: top; float: none; }
  2408. .cl-warea-1 .cl-widget { width: 100%; }
  2409. .cl-warea-2 .cl-widget { width: 49%; }
  2410. .cl-warea-3 .cl-widget { width: 32%; }
  2411. .cl-warea-4 .cl-widget { width: 24%; }
  2412. .cl-warea-5 .cl-widget { width: 19%; }
  2413. /* Props to the brilliant technique highlighted here: http://stackoverflow.com/questions/6865194/fluid-width-with-equally-spaced-divs.
  2414. This distributes divs equally in a fluid-width row without any JS hack and without using CSS multi-columns. */
  2415. .suf-tiles, .suf-mag-excerpts, .suf-mag-categories { text-align: justify; -ms-text-justify: distribute; text-justify: distribute;}
  2416. .suf-tiles:after, .suf-mag-excerpts:after, .suf-mag-categories:after {
  2417. content: '';
  2418. width: 100%;
  2419. display: inline-block;
  2420. font-size: 0;
  2421. line-height: 0
  2422. }
  2423. .suf-tile-1c { width: 100%; }
  2424. .suf-tile-2c { width: 49%; }
  2425. .suf-tile-3c { width: 32%; }
  2426. .suf-tile-4c { width: 24%; }
  2427. .suf-tile-5c { width: 19%; }
  2428. .suf-tile-6c { width: 16%; }
  2429. .suf-tile-7c { width: 13%; }
  2430. .suf-tile-8c { width: 12%; }
  2431. .suf-tile-9c { width: 10.5%; }
  2432. .suf-tile-10c { width: 9.5%; }
  2433. .suf-gallery-1c { width: 98%; }
  2434. .suf-gallery-2c { width: 49%; }
  2435. .suf-gallery-3c { width: 32%; }
  2436. .suf-gallery-4c { width: 24%; }
  2437. .suf-gallery-5c { width: 19%; }
  2438. .suf-gallery-6c { width: 16%; }
  2439. .suf-gallery-7c { width: 14%; }
  2440. .suf-gallery-8c { width: 12%; }
  2441. .suf-gallery-9c { width: 10.5%; }
  2442. .suf-gallery-10c { width: 9.5%; }
  2443. .suf-gallery-11c { width: 8.6%; }
  2444. .suf-gallery-12c { width: 8%; }
  2445. .suf-gallery-13c { width: 7.2%; }
  2446. .suf-gallery-14c { width: 6.8%; }
  2447. .suf-gallery-15c { width: 6.5%; }
  2448. .suf-mosaic { padding: 0 30px; position: relative; }
  2449. .suf-mosaic-thumbs { text-align: center; position: relative; float: left; width: 100%; }
  2450. .suf-mosaic-thumb-container { position: relative; display: inline-block; text-align: center; }
  2451. .suf-mosaic-thumb-container a img {float: none;}
  2452. .mosaic-page-nav-left { width: 30px; float: left; position: relative; margin-left: -100%; left: -30px; }
  2453. .mosaic-page-nav-right { width: 30px; float: left; position: relative; margin-right: -100%; }
  2454. .mosaic-page-nav-left a, .mosaic-page-nav-right a { display: inline-block; position: relative; top: 50px; width: 30px; height: 30px; text-decoration: none; }
  2455. .mosaic-page-nav-left a {background: -16px 0 no-repeat; }
  2456. .mosaic-page-nav-right a {background: -46px 0 no-repeat; }
  2457. .suf-mosaic-img { border: 1px solid #c0c0c0; padding: 4px; }
  2458. .suf-mosaic-post-title { display: block;}
  2459. /*a:hover .suf-mosaic-img { filter: alpha(opacity=100); opacity: 1; }*/
  2460. .mosaic-overlay { background: #000; filter: alpha(opacity=0); opacity: 0; position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
  2461. .mosaic-overlay a { position: relative; top: 50%; text-decoration: none; }
  2462. a.suf-mosaic-thumb span { display: inline-block; width: 16px; height: 16px; background-position: -16px -32px; background-repeat: no-repeat; padding: 0 5px; }
  2463. a.suf-mosaic-post span { display: inline-block; width: 16px; height: 16px; background-position: -16px -48px; background-repeat: no-repeat; padding: 0 5px;}
  2464. .flickr_badge_image { display: inline-block; list-style: none; vertical-align: top; text-align: center; }
  2465. .flickr_badge_image img, .suf-post-gallery-nav img { border: 1px solid #c0c0c0; padding: 5px; margin: 5px; filter: alpha(opacity=75); opacity: 0.75; }
  2466. .flickr_badge_image a { display: inline-block; text-align: center; text-decoration: none; font-size: 0.9em; vertical-align: middle; }
  2467. .flickr_badge_image a span { display: block; padding: 3px; width: 90%; }
  2468. .flickr_badge_image a:hover img { filter: alpha(opacity=100); opacity: 1; }
  2469. .suf-flickr-wrap { text-align: center; }
  2470. .suf-twitter-avatar { float: left; margin: 0 5px 5px 0; padding: 2px; border-width: 1px; border-style: solid; border-color: #c0c0c0; }
  2471. .suf-twitter-rest ul li { background: none; padding: 10px 0; border-bottom-style: dotted; border-bottom-width: 1px; }
  2472. .suf-twitter-rest ul li:last-child { border-bottom: none; }
  2473. .suf-tile-bylines { text-align: center; margin: 0 8px; }
  2474. .suf-tile-byline-icons { padding: 0; margin: 0; display: inline-block; }
  2475. .suf-tile-byline-icons li { list-style: none; float: left; padding: 0 3px; }
  2476. a.suf-tile-icon { width: 16px; height: 16px; overflow: hidden; text-decoration: none; display: inline-block; }
  2477. .suf-tile-date-icon { background: transparent url(images/icons/byline-icons.png) no-repeat 0 -48px; }
  2478. .suf-tile-permalink-icon { background: transparent url(images/icons/byline-icons.png) no-repeat 0 -32px; }
  2479. .suf-tile-postedby-icon { background: transparent url(images/icons/byline-icons.png) no-repeat 0 -80px; }
  2480. .suf-tile-cats-icon { background: transparent url(images/icons/byline-icons.png) no-repeat 0 -64px; }
  2481. .suf-tile-tax-icon { background: transparent url(images/icons/byline-icons.png) no-repeat 0 0; }
  2482. .suf-tile-comments-icon { background: transparent url(images/icons/byline-icons.png) no-repeat 0 -16px; }
  2483. .suf-tile-edit-icon { background: transparent url(images/icons/byline-icons.png) no-repeat 0 -96px; }
  2484. .suf-tile-icon-text { list-style: none; padding-left: 5px; display: none; }
  2485. .suf-tile-icon-text span.author { float: none; }
  2486. .suf-tile-date-icon-text .icon, .suf-tile-date-icon.clicked, .suf-tile-date-icon:hover { background: transparent url(images/icons/byline-icons.png) no-repeat -16px -48px; }
  2487. .suf-tile-permalink-icon-text .icon, .suf-tile-permalink-icon.clicked, .suf-tile-permalink-icon:hover { background: transparent url(images/icons/byline-icons.png) no-repeat -16px -32px; }
  2488. .suf-tile-postedby-icon-text .icon, .suf-tile-postedby-icon.clicked, .suf-tile-postedby-icon:hover { background: transparent url(images/icons/byline-icons.png) no-repeat -16px -80px; }
  2489. .suf-tile-cats-icon-text .icon, .suf-tile-cats-icon.clicked, .suf-tile-cats-icon:hover { background: transparent url(images/icons/byline-icons.png) no-repeat -16px -64px; }
  2490. .suf-tile-tax-icon-text .icon, .suf-tile-tax-icon.clicked, .suf-tile-tax-icon:hover { background: transparent url(images/icons/byline-icons.png) no-repeat -16px 0; }
  2491. .suf-tile-comments-icon-text .icon, .suf-tile-comments-icon.clicked, .suf-tile-comments-icon:hover { background: transparent url(images/icons/byline-icons.png) no-repeat -16px -16px; }
  2492. .suf-tile-edit-icon-text .icon, .suf-tile-edit-icon.clicked, .suf-tile-edit-icon:hover { background: transparent url(images/icons/byline-icons.png) no-repeat -16px -96px; }
  2493. .suf-tile-byline-texts { text-align: left; margin: 10px 10px 0; padding: 0; font-size: 85%; }
  2494. .suf-tile-byline-texts .icon { width: 16px; height: 16px; display: inline-block; padding: 0 5px; }
  2495. .cl-warea ul.suf-posts-thumbnail { margin: 10px; padding-left: 0; }
  2496. .warea ul.suf-posts-thumbnail li, ul.suf-posts-thumbnail li { background: none; padding: 5px 0; border-bottom: 1px dotted #ccc; }
  2497. ul.suf-posts-thumbnail li:last-child { border-bottom: none; }
  2498. img.suf-widget-thumb { border: 1px solid #ccc; padding: 3px; }
  2499. div.suf-widget-thumb { float: left; display: inline-block; margin: 0 5px 5px 0; }
  2500. .suf-widget-mosaic { display: inline-block; list-style: none; float: left; }
  2501. div.suf-post-gallery { width: 100%; }
  2502. ul.suf-post-gallery { float: left; }
  2503. .suf-post-gallery ul { margin: 0; padding: 0; position: relative;}
  2504. .suf-post-gallery li { list-style: none; }
  2505. .suf-post-gallery-nav li { float: left; text-align: center; }
  2506. .suf-post-gallery-nav a { display: inline-block; }
  2507. ul.full-display-users { list-style: none; }
  2508. .widget-suf-users ul.full-display-users li { list-style: none; background: none; padding: 5px 0; border-bottom: 1px dotted #ccc; }
  2509. .widget-suf-users ul.full-display-users li:last-child { border-bottom: none; }
  2510. .widget-suf-users ul.full-display-users h5 { margin-top: 0; }
  2511. .full-display-users img.avatar { float: left; margin: 0 5px 5px 0; border: 1px solid #ccc; padding: 3px; }
  2512. .full-display-users .user-details { padding-left: 10px; float: none; }
  2513. .full-display-users .user-description { display: inline; }
  2514. ul.gravatar-display-users { list-style: none; }
  2515. ul.gravatar-display-users a { float: left; }
  2516. .widget-suf-users ul.gravatar-display-users li { float: left; list-style: none; background: none; padding: 0; }
  2517. .gravatar-display-users .user-details { font-size: 80%; border: 1px solid #e7d605; background: #f9f6a7; position: absolute; z-index:999; left:-9999px; padding: 5px; }
  2518. .gravatar-display-users img.avatar { float: left; margin: 0 5px 5px 0; border: 1px solid #ccc; padding: 3px; }
  2519. .widget-suf-users { overflow: visible; }
  2520. .suf-thumbnail-anchor-left { float: left; }
  2521. .suf-thumbnail-anchor-right { float: right; }
  2522. .post-format-icon { position: absolute; width: 50px; height: 50px; left: -25px; background-repeat: no-repeat; }
  2523. article.page .post-format-icon { background: none; }
  2524. .format-aside .post-format-icon { background-position: 0 0; }
  2525. .format-audio .post-format-icon { background-position: -50px 0; }
  2526. .format-chat .post-format-icon { background-position: -100px 0; }
  2527. .format-gallery .post-format-icon { background-position: -150px 0; }
  2528. .format-image .post-format-icon { background-position: -200px 0; }
  2529. .format-link .post-format-icon { background-position: 0 -50px; }
  2530. .format-quote .post-format-icon { background-position: -50px -50px; }
  2531. .format-standard .post-format-icon { background-position: -100px -50px; }
  2532. .format-status .post-format-icon { background-position: -150px -50px; }
  2533. .format-video .post-format-icon { background-position: -200px -50px; }
  2534. .nleft { float: left; font-size: 1%; }
  2535. .nright { float: right; font-size: 1%; }
  2536. .fancy-letter { font-size: 350%; float: left; padding: 0.2em 0.2em 0.2em 0; }
  2537. .gallery-leading { width: 100%; position: relative; float: left; text-align: center;}
  2538. .gallery-contents { position: relative; float: left; padding: 0 8px;}
  2539. .gallery-contents.left { margin-left: -100%; }
  2540. .gallery-contents.below { width: 100%; display: inline-block; }
  2541. .gallery-container { position: relative; }
  2542. .gallery-photo-counter { float: none; font-style: italic; width: 100%; text-align: center; display: inline-block;}
  2543. .gallery-thumbs { text-align: center; }
  2544. .gallery-thumbs img { float: none;}
  2545. .image-container { text-align: center; margin-bottom: 1em;}
  2546. .exif-button { float: right; border: 1px solid; padding: 0 1em 0 0.8em; }
  2547. .exif-button a { text-decoration: none; line-height: 1.2em; padding: 0.3em 0; display: inline-block;}
  2548. .exif-button .icon { width: 16px; height: 16px; background-repeat: no-repeat; display: inline-block; margin-right: 0.5em; }
  2549. .exif-panel { display: none; }
  2550. .navigation-attachment { width: 100%; display: inline-block; border-top: 1px dotted #c0c0c0; margin-top: 1em; }
  2551. .mm-warea { padding: 1em; visibility: hidden; position: absolute; top: 35px; text-align: center; opacity: 0; }
  2552. .mm-warea.keep-open { visibility: visible !important; }
  2553. .mm-warea.keep-open ul { visibility: visible !important; opacity: 1}
  2554. #nav .mm-warea { top: 36px; }
  2555. .mm-warea-1 { width: 180px; }
  2556. .mm-warea-2 { width: 360px; }
  2557. .mm-warea-3 { width: 540px; }
  2558. .mm-warea-4 { width: 720px; }
  2559. .mm-warea-5 { width: 900px; }
  2560. .mm-warea-6 { width: 1080px; }
  2561. .mm-warea-7 { width: 1260px; }
  2562. .mm-warea-8 { width: 1440px; }
  2563. .col-control.center .mm-warea { left: auto; right: auto; }
  2564. #nav ul li:hover .mm-warea, #nav-top ul li:hover .mm-warea { visibility:visible; opacity: 1; }
  2565. .mm-warea .mm-widget { float: none; position: relative; width: 160px; padding: 5px; margin: 5px; display: inline-block; vertical-align: top; overflow-x: hidden; }
  2566. #nav .mm-warea ul, #nav.continuous .mm-warea ul,
  2567. #nav-top .mm-warea ul, #nav-top.continuous .mm-warea ul {
  2568. float: none;
  2569. position: relative;
  2570. left: auto;
  2571. top: 0;
  2572. width: auto;
  2573. border: none;
  2574. }
  2575. #nav .mm-warea .mm-widget ul li, #nav-top .mm-warea .mm-widget ul li { border: none; line-height: 1.3em; margin: 3px 0; display: inline-block; clear: both; width: auto; padding-left: 20px; }
  2576. #nav .mm-warea .mm-widget, #nav-top .mm-warea .mm-widget { text-align: left; }
  2577. #nav .mm-warea .mm-widget a, #nav-top .mm-warea .mm-widget a { height: auto; line-height: inherit; padding: 0 0 3px; width: auto; font-weight: normal; }
  2578. #nav .mm-warea .mm-widget a:hover, #nav-top .mm-warea .mm-widget a:hover { text-decoration: underline; }
  2579. #nav .mm-warea .searchfield, #nav-top .mm-warea .searchfield { width: 105px; }
  2580. ul.user-profiles { margin: 0.5em auto; padding: 0; }
  2581. .user-profiles li { list-style: none; float: none; display: inline-block; margin: 0 1em; }
  2582. .user-profiles .icon { width: 24px; height: 24px; background-repeat: no-repeat; display: inline-block; margin-right: 0.5em; }
  2583. .user-profiles .twitter { background-position: 0 -180px; }
  2584. .user-profiles .google { background-position: 0 -204px; }
  2585. .user-profiles .facebook { background-position: 0 -228px; }
  2586. .user-profiles .linkedin { background-position: 0 -252px; }
  2587. .user-profiles .flickr { background-position: -24px -180px; }
  2588. .user-profiles .digg { background-position: -24px -204px; }
  2589. .user-profiles .delicious { background-position: -24px -228px; }
  2590. .user-profiles .reddit { background-position: -24px -252px; }
  2591. .user-profiles .technorati { background-position: -48px -180px; }
  2592. .user-profiles .stumbleupon { background-position: -48px -204px; }
  2593. span.updated { display: none; }
  2594. .outer-pullout-container .post, .outer-pullout-container .page {
  2595. width: 100%;
  2596. float: left;
  2597. margin-bottom: 0;
  2598. padding-left: 0;
  2599. padding-right: 0;
  2600. -moz-box-sizing: border-box;
  2601. -webkit-box-sizing: border-box;
  2602. -ms-box-sizing: border-box;
  2603. box-sizing: border-box;
  2604. }
  2605. .outer-pullout-container .post-header {
  2606. margin-left: 15px;
  2607. margin-right: 15px;
  2608. }
  2609. .outer-pullout-container { padding-bottom: 15px; }
  2610. .outer-pullout-container .meta-pullout ul { margin-left: 0; margin-right: 0; padding: 10px; }
  2611. .container-left-outer-pullout { padding-left: 170px; }
  2612. .container-left-outer-pullout .meta-left-outer-pullout { right: 170px; margin-left: -100%; }
  2613. .container-right-outer-pullout { padding-right: 170px; }
  2614. .outer-pullout-container .meta-right-outer-pullout {
  2615. margin-right: -170px;
  2616. left: 16px;
  2617. }
  2618. .outer-pullout-container .entry-container { padding-left: 1em; padding-right: 1em; }
  2619. .outer-pullout-container .entry { padding-left: 0; padding-right: 0;}
  2620. .outer-pullout-container .meta-pullout {
  2621. background: #fff;
  2622. border-style: solid;
  2623. border-width: 1px;
  2624. border-color: #c0c0c0;
  2625. }
  2626. .outer-pullout-container #comments {
  2627. padding: 15px;
  2628. }
  2629. .tinynav {
  2630. display: none;
  2631. }