<br />
<b>Warning</b>:  Incorrect CDN engine in <b>/home4/michele/public_html/wp-content/plugins/w3-total-cache/CdnEngine.php</b> on line <b>95</b><br />
/* Minify_CSS_UriRewriter::$debugText

*/

/* styles.css */

/* 1   */ .wpcf7 .screen-reader-response {
/* 2   */ 	position: absolute;
/* 3   */ 	overflow: hidden;
/* 4   */ 	clip: rect(1px, 1px, 1px, 1px);
/* 5   */ 	clip-path: inset(50%);
/* 6   */ 	height: 1px;
/* 7   */ 	width: 1px;
/* 8   */ 	margin: -1px;
/* 9   */ 	padding: 0;
/* 10  */ 	border: 0;
/* 11  */ 	word-wrap: normal !important;
/* 12  */ }
/* 13  */
/* 14  */ .wpcf7 .hidden-fields-container {
/* 15  */ 	display: none;
/* 16  */ }
/* 17  */
/* 18  */ .wpcf7 form .wpcf7-response-output {
/* 19  */ 	margin: 2em 0.5em 1em;
/* 20  */ 	padding: 0.2em 1em;
/* 21  */ 	border: 2px solid #00a0d2; /* Blue */
/* 22  */ }
/* 23  */
/* 24  */ .wpcf7 form.init .wpcf7-response-output,
/* 25  */ .wpcf7 form.resetting .wpcf7-response-output,
/* 26  */ .wpcf7 form.submitting .wpcf7-response-output {
/* 27  */ 	display: none;
/* 28  */ }
/* 29  */
/* 30  */ .wpcf7 form.sent .wpcf7-response-output {
/* 31  */ 	border-color: #46b450; /* Green */
/* 32  */ }
/* 33  */
/* 34  */ .wpcf7 form.failed .wpcf7-response-output,
/* 35  */ .wpcf7 form.aborted .wpcf7-response-output {
/* 36  */ 	border-color: #dc3232; /* Red */
/* 37  */ }
/* 38  */
/* 39  */ .wpcf7 form.spam .wpcf7-response-output {
/* 40  */ 	border-color: #f56e28; /* Orange */
/* 41  */ }
/* 42  */
/* 43  */ .wpcf7 form.invalid .wpcf7-response-output,
/* 44  */ .wpcf7 form.unaccepted .wpcf7-response-output,
/* 45  */ .wpcf7 form.payment-required .wpcf7-response-output {
/* 46  */ 	border-color: #ffb900; /* Yellow */
/* 47  */ }
/* 48  */
/* 49  */ .wpcf7-form-control-wrap {
/* 50  */ 	position: relative;

/* styles.css */

/* 51  */ }
/* 52  */
/* 53  */ .wpcf7-not-valid-tip {
/* 54  */ 	color: #dc3232; /* Red */
/* 55  */ 	font-size: 1em;
/* 56  */ 	font-weight: normal;
/* 57  */ 	display: block;
/* 58  */ }
/* 59  */
/* 60  */ .use-floating-validation-tip .wpcf7-not-valid-tip {
/* 61  */ 	position: relative;
/* 62  */ 	top: -2ex;
/* 63  */ 	left: 1em;
/* 64  */ 	z-index: 100;
/* 65  */ 	border: 1px solid #dc3232;
/* 66  */ 	background: #fff;
/* 67  */ 	padding: .2em .8em;
/* 68  */ 	width: 24em;
/* 69  */ }
/* 70  */
/* 71  */ .wpcf7-list-item {
/* 72  */ 	display: inline-block;
/* 73  */ 	margin: 0 0 0 1em;
/* 74  */ }
/* 75  */
/* 76  */ .wpcf7-list-item-label::before,
/* 77  */ .wpcf7-list-item-label::after {
/* 78  */ 	content: " ";
/* 79  */ }
/* 80  */
/* 81  */ .wpcf7-spinner {
/* 82  */ 	visibility: hidden;
/* 83  */ 	display: inline-block;
/* 84  */ 	background-color: #23282d; /* Dark Gray 800 */
/* 85  */ 	opacity: 0.75;
/* 86  */ 	width: 24px;
/* 87  */ 	height: 24px;
/* 88  */ 	border: none;
/* 89  */ 	border-radius: 100%;
/* 90  */ 	padding: 0;
/* 91  */ 	margin: 0 24px;
/* 92  */ 	position: relative;
/* 93  */ }
/* 94  */
/* 95  */ form.submitting .wpcf7-spinner {
/* 96  */ 	visibility: visible;
/* 97  */ }
/* 98  */
/* 99  */ .wpcf7-spinner::before {
/* 100 */ 	content: '';

/* styles.css */

/* 101 */ 	position: absolute;
/* 102 */ 	background-color: #fbfbfc; /* Light Gray 100 */
/* 103 */ 	top: 4px;
/* 104 */ 	left: 4px;
/* 105 */ 	width: 6px;
/* 106 */ 	height: 6px;
/* 107 */ 	border: none;
/* 108 */ 	border-radius: 100%;
/* 109 */ 	transform-origin: 8px 8px;
/* 110 */ 	animation-name: spin;
/* 111 */ 	animation-duration: 1000ms;
/* 112 */ 	animation-timing-function: linear;
/* 113 */ 	animation-iteration-count: infinite;
/* 114 */ }
/* 115 */
/* 116 */ @media (prefers-reduced-motion: reduce) {
/* 117 */ 	.wpcf7-spinner::before {
/* 118 */ 		animation-name: blink;
/* 119 */ 		animation-duration: 2000ms;
/* 120 */ 	}
/* 121 */ }
/* 122 */
/* 123 */ @keyframes spin {
/* 124 */ 	from {
/* 125 */ 		transform: rotate(0deg);
/* 126 */ 	}
/* 127 */
/* 128 */ 	to {
/* 129 */ 		transform: rotate(360deg);
/* 130 */ 	}
/* 131 */ }
/* 132 */
/* 133 */ @keyframes blink {
/* 134 */ 	from {
/* 135 */ 		opacity: 0;
/* 136 */ 	}
/* 137 */
/* 138 */ 	50% {
/* 139 */ 		opacity: 1;
/* 140 */ 	}
/* 141 */
/* 142 */ 	to {
/* 143 */ 		opacity: 0;
/* 144 */ 	}
/* 145 */ }
/* 146 */
/* 147 */ .wpcf7 [inert] {
/* 148 */ 	opacity: 0.5;
/* 149 */ }
/* 150 */

/* styles.css */

/* 151 */ .wpcf7 input[type="file"] {
/* 152 */ 	cursor: pointer;
/* 153 */ }
/* 154 */
/* 155 */ .wpcf7 input[type="file"]:disabled {
/* 156 */ 	cursor: default;
/* 157 */ }
/* 158 */
/* 159 */ .wpcf7 .wpcf7-submit:disabled {
/* 160 */ 	cursor: not-allowed;
/* 161 */ }
/* 162 */
/* 163 */ .wpcf7 input[type="url"],
/* 164 */ .wpcf7 input[type="email"],
/* 165 */ .wpcf7 input[type="tel"] {
/* 166 */ 	direction: ltr;
/* 167 */ }
/* 168 */
/* 169 */ .wpcf7-reflection > output {
/* 170 */ 	display: list-item;
/* 171 */ 	list-style: none;
/* 172 */ }
/* 173 */
/* 174 */ .wpcf7-reflection > output[hidden] {
/* 175 */ 	display: none;
/* 176 */ }
/* 177 */
/* Minify_CSS_UriRewriter::$debugText

*/

/* style.css */

/* 1     */  -------------------------------wizedesign--
/* 2     */
/* 3     */ Theme Name: Sowe
/* 4     */
/* 5     */ Theme URI: http://sowe.wizedesign.com
/* 6     */
/* 7     */ Description: Sowe theme will give you access to any type of information combined with a tasteful vibe for the latest technology and business aspects. The multitude of options of this theme will give you a variety of features from which you can choose whatever pleases the clients or visitors, from news to local information, from travel destinations to entertainment industry, all of it managed with a wonderful blend of photo and video galleries.
/* 8     */
/* 9     */ Author: wizedesign
/* 10    */
/* 11    */ Author URI:  http://wizedesign.com
/* 12    */
/* 13    */ Version: 1.1.1
/* 14    */
/* 15    */ Text Domain: sowe
/* 16    */
/* 17    */ Tags: one-column, two-columns, left-sidebar, right-sidebar, custom-menu, sticky-post, theme-options
/* 18    */
/* 19    */ License: GNU GENERAL PUBLIC LICENSE
/* 20    */
/* 21    */ License URI: http://themeforest.net/licenses
/* 22    */
/* 23    */
/* 24    */
/* 25    */    -------------------------------------------
/* 26    */
/* 27    */       01. CSS RESET
/* 28    */
/* 29    */       02. GENERAL
/* 30    */
/* 31    */ 	  03. MISC
/* 32    */
/* 33    */ 	  04. LAYOUT
/* 34    */
/* 35    */ 	  05. HEADER
/* 36    */
/* 37    */ 	  06. FOOTER
/* 38    */
/* 39    */ 	  07. PAGE
/* 40    */
/* 41    */ 	  08. ERROR
/* 42    */
/* 43    */ 	  09. CONTACT
/* 44    */
/* 45    */ 	  10. INFO BLOG
/* 46    */
/* 47    */ 	  11. SINGLE PAGE
/* 48    */
/* 49    */ 	  12. COMMENTS
/* 50    */

/* style.css */

/* 51    */ 	  13. AUTHOR PAGE
/* 52    */
/* 53    */ 	  14. TEMPLATE
/* 54    */
/* 55    */ 	  15. WIDGET
/* 56    */
/* 57    */ 	  16. TOP MENU
/* 58    */
/* 59    */ 	  17. HEADER MENU
/* 60    */
/* 61    */ 	  18. MEGA MENU
/* 62    */
/* 63    */ 	  19. NEWS
/* 64    */
/* 65    */ 	  20. FEATURE
/* 66    */
/* 67    */ 	  21. PAGINATION
/* 68    */
/* 69    */ 	  22. WORDPRESS CORE
/* 70    */
/* 71    */  -------------------------------------------
/* 72    */
/* 73    */ */
/* 74    */
/* 75    */
/* 76    */
/* 77    */ /* -------------------------------wizedesign--
/* 78    *|
/* 79    *|      01. CSS RESET
/* 80    *|
/* 81    *|    ------------------------------------------- */
/* 82    */
/* 83    */
/* 84    */
/* 85    */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
/* 86    */
/* 87    */     font-style: inherit;
/* 88    */
/* 89    */     font-weight: inherit;
/* 90    */
/* 91    */     font-family: inherit;
/* 92    */
/* 93    */     vertical-align: baseline;
/* 94    */
/* 95    */     margin: 0;
/* 96    */
/* 97    */     border: 0;
/* 98    */
/* 99    */     padding: 0;
/* 100   */

/* style.css */

/* 101   */     outline: 0;
/* 102   */
/* 103   */     font-size: 100%;
/* 104   */
/* 105   */     }
/* 106   */
/* 107   */
/* 108   */
/* 109   */ acronym:hover::after {
/* 110   */
/* 111   */     background: #000;
/* 112   */
/* 113   */     left: 100%;
/* 114   */
/* 115   */     color: #fff;
/* 116   */
/* 117   */     bottom: 100%;
/* 118   */
/* 119   */     display: block;
/* 120   */
/* 121   */     padding: 10px 15px;
/* 122   */
/* 123   */     content: attr(title);
/* 124   */
/* 125   */     position: absolute;
/* 126   */
/* 127   */     }
/* 128   */
/* 129   */
/* 130   */
/* 131   */ abbr:hover::after {
/* 132   */
/* 133   */     background: #fffd75;
/* 134   */
/* 135   */     left: 100%;
/* 136   */
/* 137   */     bottom: 100%;
/* 138   */
/* 139   */     display: block;
/* 140   */
/* 141   */     padding: 10px 15px;
/* 142   */
/* 143   */     content: attr(title);
/* 144   */
/* 145   */     position: absolute;
/* 146   */
/* 147   */     }
/* 148   */
/* 149   */
/* 150   */

/* style.css */

/* 151   */ blockquote:before {
/* 152   */
/* 153   */     top: 0px;
/* 154   */
/* 155   */     left: 0px;
/* 156   */
/* 157   */     display: block;
/* 158   */
/* 159   */     content: "\201C";
/* 160   */
/* 161   */     position: absolute;
/* 162   */
/* 163   */     font-size: 40px;
/* 164   */
/* 165   */     }
/* 166   */
/* 167   */
/* 168   */
/* 169   */ ul {
/* 170   */
/* 171   */     list-style-type: circle;
/* 172   */
/* 173   */     padding: 0 0 0 25px;
/* 174   */
/* 175   */     }
/* 176   */
/* 177   */
/* 178   */
/* 179   */ ol {
/* 180   */
/* 181   */     list-style-type: decimal;
/* 182   */
/* 183   */     padding: 0 0 0 25px;
/* 184   */
/* 185   */     }
/* 186   */
/* 187   */
/* 188   */
/* 189   */ table {
/* 190   */
/* 191   */     border-spacing: 0;
/* 192   */
/* 193   */     border-collapse: separate;
/* 194   */
/* 195   */     }
/* 196   */
/* 197   */
/* 198   */
/* 199   */ table {
/* 200   */

/* style.css */

/* 201   */     border-spacing: 0;
/* 202   */
/* 203   */     border-collapse: separate;
/* 204   */
/* 205   */     }
/* 206   */
/* 207   */
/* 208   */
/* 209   */ some_nowhitespace { nowhitespace: afterproperty }
/* 210   */
/* 211   */
/* 212   */
/* 213   */ caption, th, td {
/* 214   */
/* 215   */     text-align: left;
/* 216   */
/* 217   */     font-weight: normal;
/* 218   */
/* 219   */     }
/* 220   */
/* 221   */
/* 222   */
/* 223   */ p { line-height: 1.7em }
/* 224   */
/* 225   */ #search-header {
/* 226   */
/* 227   */ display:none !important;
/* 228   */
/* 229   */ }
/* 230   */
/* 231   */ @media (max-width: 1280px) {
/* 232   */
/* 233   */   #wizemenu > ul > li > a {
/* 234   */
/* 235   */     font-size: 11px !important;
/* 236   */     width: auto !important;
/* 237   */         margin: 0 10px !important;
/* 238   */
/* 239   */   }
/* 240   */
/* 241   */ @media (max-width: 1265px) {
/* 242   */     #header-banner {
/* 243   */         top: 38px;
/* 244   */             right: 0px;
/* 245   */             position: absolute;
/* 246   */     }
/* 247   */
/* 248   */ }
/* 249   */
/* 250   */ .megamenu > li {

/* style.css */

/* 251   */
/* 252   */     padding: 15px 0 !important;
/* 253   */
/* 254   */ }
/* 255   */
/* 256   */ }
/* 257   */
/* 258   */ blockquote {
/* 259   */
/* 260   */     font-style: italic;
/* 261   */
/* 262   */     line-height: 1.45;
/* 263   */
/* 264   */     width: 600px;
/* 265   */
/* 266   */     margin: 0 0;
/* 267   */
/* 268   */     padding: 10px 30px;
/* 269   */
/* 270   */     position: relative;
/* 271   */
/* 272   */     font-size: 16px;
/* 273   */
/* 274   */     }
/* 275   */
/* 276   */
/* 277   */
/* 278   */ dt {
/* 279   */
/* 280   */ 	font-weight: bold;
/* 281   */
/* 282   */ 	padding-left: 20px;
/* 283   */
/* 284   */ 	}
/* 285   */
/* 286   */
/* 287   */
/* 288   */ dd {
/* 289   */
/* 290   */     background: none no-repeat left top;
/* 291   */
/* 292   */     padding-left: 20px;
/* 293   */
/* 294   */     }
/* 295   */
/* 296   */
/* 297   */
/* 298   */ big { font-size: 16px }
/* 299   */
/* 300   */

/* style.css */

/* 301   */
/* 302   */ address {
/* 303   */
/* 304   */ 	font-style: italic;
/* 305   */
/* 306   */ 	margin: 0px 0px 15px;
/* 307   */
/* 308   */ 	}
/* 309   */
/* 310   */
/* 311   */
/* 312   */ abbr {
/* 313   */
/* 314   */     border-bottom: 1px dotted #000;
/* 315   */
/* 316   */     position: relative;
/* 317   */
/* 318   */     }
/* 319   */
/* 320   */
/* 321   */
/* 322   */ acronym {
/* 323   */
/* 324   */     border-bottom: 1px dotted #000;
/* 325   */
/* 326   */     position: relative;
/* 327   */
/* 328   */     }
/* 329   */
/* 330   */
/* 331   */
/* 332   */ cite {
/* 333   */
/* 334   */     font-style: italic;
/* 335   */
/* 336   */     font-weight: 400;
/* 337   */
/* 338   */     color: #c5c5c5;
/* 339   */
/* 340   */     }
/* 341   */
/* 342   */
/* 343   */
/* 344   */ sub {
/* 345   */
/* 346   */     vertical-align: sub;
/* 347   */
/* 348   */     font-size: smaller;
/* 349   */
/* 350   */     }

/* style.css */

/* 351   */
/* 352   */
/* 353   */
/* 354   */ sup {
/* 355   */
/* 356   */     vertical-align: super;
/* 357   */
/* 358   */     font-size: smaller;
/* 359   */
/* 360   */     }
/* 361   */
/* 362   */
/* 363   */
/* 364   */ ins {
/* 365   */
/* 366   */     background: #fff9c0;
/* 367   */
/* 368   */     text-decoration: none;
/* 369   */
/* 370   */     }
/* 371   */
/* 372   */
/* 373   */
/* 374   */ var { font-style: oblique }
/* 375   */
/* 376   */
/* 377   */
/* 378   */ tt { font-family: "Lucida Console", monospace }
/* 379   */
/* 380   */
/* 381   */
/* 382   */ kbd { font-family: monospace }
/* 383   */
/* 384   */
/* 385   */
/* 386   */ embed, iframe, object, video { width: 100% }
/* 387   */
/* 388   */
/* 389   */
/* 390   */ /* -------------------------------wizedesign--
/* 391   *|
/* 392   *|      02. GENERAL
/* 393   *|
/* 394   *|    ------------------------------------------- */
/* 395   */
/* 396   */
/* 397   */
/* 398   */ html, body { height: 100% }
/* 399   */
/* 400   */

/* style.css */

/* 401   */
/* 402   */ body {
/* 403   */
/* 404   */     background: #000;
/* 405   */
/* 406   */     line-height: 1.7em;
/* 407   */
/* 408   */     font-weight: 400;
/* 409   */
/* 410   */     color: #000;
/* 411   */
/* 412   */     font-size: 14px;
/* 413   */
/* 414   */     }
/* 415   */
/* 416   */
/* 417   */
/* 418   */ h1, h2, h3, h4, h5, h6 {
/* 419   */
/* 420   */     font-weight: 600;
/* 421   */
/* 422   */     line-height: 1.25em;
/* 423   */
/* 424   */     word-wrap: break-word;
/* 425   */
/* 426   */ 	margin: 15px 0px;
/* 427   */
/* 428   */     }
/* 429   */
/* 430   */
/* 431   */
/* 432   */ h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover { text-decoration: none }
/* 433   */
/* 434   */
/* 435   */
/* 436   */ h1 { font-size: 48px }
/* 437   */
/* 438   */
/* 439   */
/* 440   */ h2 { font-size: 36px }
/* 441   */
/* 442   */
/* 443   */
/* 444   */ h3 { font-size: 28px }
/* 445   */
/* 446   */
/* 447   */
/* 448   */ h4 { font-size: 22px }
/* 449   */
/* 450   */

/* style.css */

/* 451   */
/* 452   */ h5 { font-size: 18px }
/* 453   */
/* 454   */
/* 455   */
/* 456   */ h6 { font-size: 14px }
/* 457   */
/* 458   */
/* 459   */
/* 460   */ a:hover {
/* 461   */
/* 462   */     text-decoration: none;
/* 463   */
/* 464   */     color: #222;
/* 465   */
/* 466   */     }
/* 467   */
/* 468   */
/* 469   */
/* 470   */ a img { border: none }
/* 471   */
/* 472   */
/* 473   */
/* 474   */ strong { font-weight: bold }
/* 475   */
/* 476   */
/* 477   */
/* 478   */ em { font-style: italic }
/* 479   */
/* 480   */
/* 481   */
/* 482   */ p, ul, ol, pre, code { margin-bottom: 10px }
/* 483   */
/* 484   */
/* 485   */
/* 486   */ code { font-family: monospace }
/* 487   */
/* 488   */
/* 489   */
/* 490   */ pre {
/* 491   */
/* 492   */     background: #f5f5f5;
/* 493   */
/* 494   */     font-family: monospace;
/* 495   */
/* 496   */     white-space: pre;
/* 497   */
/* 498   */     white-space: pre-wrap;
/* 499   */
/* 500   */     color: #666;

/* style.css */

/* 501   */
/* 502   */     margin: 20px 0;
/* 503   */
/* 504   */     padding: 20px;
/* 505   */
/* 506   */     overflow: auto;
/* 507   */
/* 508   */     font-size: 14px;
/* 509   */
/* 510   */     word-wrap: break-word;
/* 511   */
/* 512   */     }
/* 513   */
/* 514   */
/* 515   */
/* 516   */ table {
/* 517   */
/* 518   */     margin-bottom: 20px;
/* 519   */
/* 520   */     border-spacing: 0;
/* 521   */
/* 522   */     border-collapse: separate;
/* 523   */
/* 524   */     border-top-width: 5px;
/* 525   */
/* 526   */     border: 1px solid #efefef;
/* 527   */
/* 528   */     }
/* 529   */
/* 530   */
/* 531   */
/* 532   */ th {
/* 533   */
/* 534   */     font-weight: bold;
/* 535   */
/* 536   */     text-transform: uppercase;
/* 537   */
/* 538   */     padding: 10px 15px;
/* 539   */
/* 540   */     }
/* 541   */
/* 542   */
/* 543   */
/* 544   */ td {
/* 545   */
/* 546   */     border-top: 1px solid #efefef;
/* 547   */
/* 548   */     padding: 10px 15px;
/* 549   */
/* 550   */     }

/* style.css */

/* 551   */
/* 552   */
/* 553   */
/* 554   */ tr.alt { background-color: #f5f5f5 }
/* 555   */
/* 556   */
/* 557   */
/* 558   */ /* -------------------------------wizedesign--
/* 559   *|
/* 560   *|      03. MISC
/* 561   *|
/* 562   *|    ------------------------------------------- */
/* 563   */
/* 564   */
/* 565   */
/* 566   */ .fixed { display: block }
/* 567   */
/* 568   */
/* 569   */
/* 570   */ .fixed:after {
/* 571   */
/* 572   */     visibility: hidden;
/* 573   */
/* 574   */     clear: both;
/* 575   */
/* 576   */     height: 0;
/* 577   */
/* 578   */     display: block;
/* 579   */
/* 580   */     content: ".";
/* 581   */
/* 582   */     }
/* 583   */
/* 584   */
/* 585   */
/* 586   */ .fixed { min-height: 1% }
/* 587   */
/* 588   */
/* 589   */
/* 590   */ * html .fixed { height: 1% }
/* 591   */
/* 592   */
/* 593   */
/* 594   */ .hidden { display: none }
/* 595   */
/* 596   */
/* 597   */
/* 598   */ .clear { clear: both }
/* 599   */
/* 600   */

/* style.css */

/* 601   */
/* 602   */ .block { display: block }
/* 603   */
/* 604   */
/* 605   */
/* 606   */ .hide { display: none }
/* 607   */
/* 608   */
/* 609   */
/* 610   */ /* ==== hover ==== */
/* 611   */
/* 612   */
/* 613   */
/* 614   */ a, .news-wrap, #search-header form .submit, .news-wrap .news-cover img, .news-wrap .news-bg, .tp-bullets.simplebullets.round .bullet, .widget_search #search-button, .widget_rss .rsswidget img, .wd-tmpbl2-posts .wd-tmpbl2-bg, .wd-tmpbl2-posts .wd-tmpbl2-vc, .wd-tmpbl3-posts .wd-tmpbl3-bg, .wd-tmpbl3-posts .wd-tmpbl3-vc, #tmpbl2 .tmpbl2-bg, #tmpbl2 .tmpbl2-text, #tmpbl2 h2, .wd-lk .wd-lk-bg, .wd-lk .info-likeW, .wd-slider .wd-slider-bg, .wd-social-fb .wd-social-number, .wd-social-gp .wd-social-number, .wd-social-tw .wd-social-number, ul.contactform #submitmail, .feat-cover .feat-bg, #wizemenu > ul ul.megapost .megapost-bg, #wizemenu > ul ul.megapost .megapost-title span, .feat-cover .feat-title span, .news-wrap .news-date, #sld-left .sldleft-bg, #sld-top .sldtb-bg, #sld-bottom .sldtb-bg, #sld-big .sldbig-bg, .wd-tmpbl3-posts .wd-tmpbl3-date, #tmpbl2 .info-dateC, .wd-slider .wd-slider-date, .sng-pagination a span, .mss-row, .reply, .sng-facebook, .sng-twitter, .sng-google, .sng-linkedin, .rsFullscreenIcn, .shrmedia2 .shrmedia2-play, .tweets_list li, .form-submit #submit, li.recentcomments, .widget li, .wd-review-posts .wd-review-bg, .wd-video-posts .wd-video-bg, .wd-photo-posts .wd-photo-bg, .videoGallery .rsThumb, #tmprw .tmprw-note, #tmprw, .tmprw-bg, #tmprw, .info-dateC, .wd-photo-button, .wd-video-play, #tmpbl1 .tmpbl1-wrap p, #tmpbl3 .tmpbl3-wrap p, #tmpbl4 .tmpbl4-wrap p, #tmpph .tmpph-play, #tmpvd .tmpvd-play, #tmprw .tmprw-qualifying, .widget_rss li .rssSummary, #wd-tmpbl2 .wd-tmpbl2-text, #wizemenu ul ul, #wizemenu ul ul li ul,  .megapost .megapost-bg, #wizemenu ul.megamenu li .megamenu-width, .sng-aut .sng-aut-description p, #sld-left .sldleft-video, .sldleft-video, #sld-top .sldtop-video, .sldtop-video, #sld-bottom .sldbottom-video, .sldbottom-video, #sld-big .sldbig-video, .sldbig-video, .wpcf7-form input.wpcf7-submit {
/* 615   */
/* 616   */     transition: .3s ease-in-out;
/* 617   */
/* 618   */     text-decoration: none;
/* 619   */
/* 620   */     -moz-transition: .3s ease-in-out;
/* 621   */
/* 622   */     -webkit-transition: .3s ease-in-out;
/* 623   */
/* 624   */     }
/* 625   */
/* 626   */
/* 627   */
/* 628   */ /* -------------------------------wizedesign--
/* 629   *|
/* 630   *|      04. LAYOUT
/* 631   *|
/* 632   *|    ------------------------------------------- */
/* 633   */
/* 634   */
/* 635   */
/* 636   */ #contback {
/* 637   */
/* 638   */     padding-top: 0px;
/* 639   */
/* 640   */     width: 100%;
/* 641   */
/* 642   */     position: relative;
/* 643   */
/* 644   */     }
/* 645   */
/* 646   */
/* 647   */
/* 648   */ #wrap {
/* 649   */
/* 650   */     width: 1160px;

/* style.css */

/* 651   */
/* 652   */     margin: 0px auto 0px auto;
/* 653   */
/* 654   */ 	padding:40px;
/* 655   */
/* 656   */ 	background:#fff;
/* 657   */
/* 658   */ 	overflow: hidden;
/* 659   */
/* 660   */     }
/* 661   */
/* 662   */
/* 663   */
/* 664   */ /* ==== layout ==== */
/* 665   */
/* 666   */
/* 667   */
/* 668   */ #layout-left {
/* 669   */
/* 670   */     float: left;
/* 671   */
/* 672   */     width: 760px;
/* 673   */
/* 674   */     overflow: hidden;
/* 675   */
/* 676   */     margin-bottom: -40px;
/* 677   */
/* 678   */     }
/* 679   */
/* 680   */
/* 681   */
/* 682   */ #layout-left-home {
/* 683   */
/* 684   */     float: left;
/* 685   */
/* 686   */     width: 760px;
/* 687   */
/* 688   */     overflow: hidden;
/* 689   */
/* 690   */ 	margin-bottom:-60px;
/* 691   */
/* 692   */     }
/* 693   */
/* 694   */
/* 695   */
/* 696   */ #layout-right {
/* 697   */
/* 698   */     float: right;
/* 699   */
/* 700   */     width: 760px;

/* style.css */

/* 701   */
/* 702   */     overflow: hidden;
/* 703   */
/* 704   */     margin-bottom: -40px;
/* 705   */
/* 706   */     }
/* 707   */
/* 708   */
/* 709   */
/* 710   */ #layout-right-home {
/* 711   */
/* 712   */     float: right;
/* 713   */
/* 714   */     width: 760px;
/* 715   */
/* 716   */     overflow: hidden;
/* 717   */
/* 718   */ 	margin-bottom:-60px;
/* 719   */
/* 720   */     }
/* 721   */
/* 722   */
/* 723   */
/* 724   */ #layout-full {
/* 725   */
/* 726   */     margin-left: 0px;
/* 727   */
/* 728   */     width: 1240px;
/* 729   */
/* 730   */     overflow: hidden;
/* 731   */
/* 732   */     }
/* 733   */
/* 734   */
/* 735   */
/* 736   */ #layout-full-home {
/* 737   */
/* 738   */     margin-left: 0px;
/* 739   */
/* 740   */     width: 1240px;
/* 741   */
/* 742   */     overflow: hidden;
/* 743   */
/* 744   */ 	margin-bottom:-60px;
/* 745   */
/* 746   */     }
/* 747   */
/* 748   */
/* 749   */
/* 750   */ .layout-full-fixed {

/* style.css */

/* 751   */
/* 752   */     margin-bottom: 20px;
/* 753   */
/* 754   */     width: 1200px;
/* 755   */
/* 756   */     }
/* 757   */
/* 758   */
/* 759   */
/* 760   */ .layout-fixed {
/* 761   */
/* 762   */     margin-bottom: 20px;
/* 763   */
/* 764   */     width: 800px;
/* 765   */
/* 766   */     }
/* 767   */
/* 768   */
/* 769   */
/* 770   */ #layout-pg-left {
/* 771   */
/* 772   */     width: 760px;
/* 773   */
/* 774   */     float: left;
/* 775   */
/* 776   */     overflow: hidden;
/* 777   */
/* 778   */     }
/* 779   */
/* 780   */
/* 781   */
/* 782   */ #layout-pg-right {
/* 783   */
/* 784   */     width: 760px;
/* 785   */
/* 786   */     float: right;
/* 787   */
/* 788   */     }
/* 789   */
/* 790   */
/* 791   */
/* 792   */ #layout-pg-left img, #layout-pg-right img, #layout-pg-full img {
/* 793   */
/* 794   */     height: auto;
/* 795   */
/* 796   */     max-width: 100%;
/* 797   */
/* 798   */     }
/* 799   */
/* 800   */

/* style.css */

/* 801   */
/* 802   */ #layout-pg-full {
/* 803   */
/* 804   */     width: 1160px;
/* 805   */
/* 806   */     }
/* 807   */
/* 808   */
/* 809   */
/* 810   */ #layout-home {
/* 811   */
/* 812   */     margin-top: -2px;
/* 813   */
/* 814   */     margin-bottom: 20px;
/* 815   */
/* 816   */     width: 890px;
/* 817   */
/* 818   */     }
/* 819   */
/* 820   */
/* 821   */
/* 822   */ #layout-media {
/* 823   */
/* 824   */     width: 1200px;
/* 825   */
/* 826   */     overflow: hidden;
/* 827   */
/* 828   */     margin-bottom: -40px;
/* 829   */
/* 830   */     }
/* 831   */
/* 832   */
/* 833   */
/* 834   */ .layout-media-fixed { width: 1240px }
/* 835   */
/* 836   */
/* 837   */
/* 838   */ /* ==== sidebar ==== */
/* 839   */
/* 840   */
/* 841   */
/* 842   */ #sidebar-left {
/* 843   */
/* 844   */     float: left;
/* 845   */
/* 846   */     width: 360px;
/* 847   */
/* 848   */ 	border-right:1px solid #f1f1f1;
/* 849   */
/* 850   */ 	margin-left:-40px;

/* style.css */

/* 851   */
/* 852   */ 	padding-right:40px;
/* 853   */
/* 854   */     }
/* 855   */
/* 856   */
/* 857   */
/* 858   */ #sidebar-right {
/* 859   */
/* 860   */     float: right;
/* 861   */
/* 862   */     width: 360px;
/* 863   */
/* 864   */ 	border-left:1px solid #f1f1f1;
/* 865   */
/* 866   */     }
/* 867   */
/* 868   */
/* 869   */
/* 870   */ /* -------------------------------wizedesign--
/* 871   *|
/* 872   *|      05. HEADER
/* 873   *|
/* 874   *|    ------------------------------------------- */
/* 875   */
/* 876   */
/* 877   */
/* 878   */ #header {
/* 879   */
/* 880   */     margin: 0 auto 0px auto;
/* 881   */
/* 882   */     z-index: 3;
/* 883   */
/* 884   */     position: relative;
/* 885   */
/* 886   */ 	width: 1240px;
/* 887   */
/* 888   */     }
/* 889   */
/* 890   */
/* 891   */
/* 892   */ .header-row {
/* 893   */
/* 894   */     background: rgba(0,0,0,0.85);
/* 895   */
/* 896   */     width: 1160px;
/* 897   */
/* 898   */     height: 90px;
/* 899   */
/* 900   */     margin: 0 auto 0 auto;

/* style.css */

/* 901   */
/* 902   */     padding: 40px 40px 40px 40px;
/* 903   */
/* 904   */     position: relative;
/* 905   */
/* 906   */     }
/* 907   */
/* 908   */
/* 909   */
/* 910   */ /* ==== logo ==== */
/* 911   */
/* 912   */
/* 913   */
/* 914   */ #logo {
/* 915   */
/* 916   */     float: left;
/* 917   */
/* 918   */     width: 320px;
/* 919   */
/* 920   */     height: 90px;
/* 921   */
/* 922   */     overflow: hidden;
/* 923   */
/* 924   */     }
/* 925   */
/* 926   */
/* 927   */
/* 928   */ /* ==== banner ==== */
/* 929   */
/* 930   */
/* 931   */
/* 932   */ #header-banner {
/* 933   */
/* 934   */     width: 728px;
/* 935   */
/* 936   */     float: right;
/* 937   */
/* 938   */     height: 90px;
/* 939   */
/* 940   */     overflow: hidden;
/* 941   */
/* 942   */     }
/* 943   */
/* 944   */
/* 945   */
/* 946   */ #header-banner-none {
/* 947   */
/* 948   */     background: url("images/banner.png");
/* 949   */
/* 950   */     width: 728px;

/* style.css */

/* 951   */
/* 952   */     float: right;
/* 953   */
/* 954   */     height: 90px;
/* 955   */
/* 956   */     overflow: hidden;
/* 957   */
/* 958   */     }
/* 959   */
/* 960   */
/* 961   */
/* 962   */ #leaderboard-banner {
/* 963   */
/* 964   */ 	width: 970px;
/* 965   */
/* 966   */ 	height: 90px;
/* 967   */
/* 968   */ 	margin: 0px auto 40px auto;
/* 969   */
/* 970   */ 	display: block;
/* 971   */
/* 972   */ 	background: #eee;
/* 973   */
/* 974   */ 	}
/* 975   */
/* 976   */
/* 977   */
/* 978   */ /* ==== menu / social / search ==== */
/* 979   */
/* 980   */
/* 981   */
/* 982   */ #mss {
/* 983   */
/* 984   */     width: 100%;
/* 985   */
/* 986   */     height: 57px;
/* 987   */
/* 988   */     z-index: 999;
/* 989   */
/* 990   */     }
/* 991   */
/* 992   */
/* 993   */
/* 994   */ .mss-row {
/* 995   */
/* 996   */     background: rgba(0,0,0, 0.5);
/* 997   */
/* 998   */     width: 1160px;
/* 999   */
/* 1000  */     height: 57px;

/* style.css */

/* 1001  */
/* 1002  */     margin: 0 auto 0 auto;
/* 1003  */
/* 1004  */     padding: 0 40px;
/* 1005  */
/* 1006  */     }
/* 1007  */
/* 1008  */
/* 1009  */
/* 1010  */ .mss-row.glue { background: rgba(0, 0, 0,  0.8) }
/* 1011  */
/* 1012  */
/* 1013  */
/* 1014  */ /* ==== social ==== */
/* 1015  */
/* 1016  */
/* 1017  */
/* 1018  */ #social-header {
/* 1019  */
/* 1020  */     margin-top: 6px;
/* 1021  */
/* 1022  */     float: right;
/* 1023  */
/* 1024  */     }
/* 1025  */
/* 1026  */
/* 1027  */
/* 1028  */ #social-header .instagram {
/* 1029  */
/* 1030  */     margin-right: 10px;
/* 1031  */
/* 1032  */     background-image: url("images/social/icon/instagram.png");
/* 1033  */
/* 1034  */     width: 16px;
/* 1035  */
/* 1036  */     float: left;
/* 1037  */
/* 1038  */     height: 16px;
/* 1039  */
/* 1040  */ 	opacity:0.3;
/* 1041  */
/* 1042  */     }
/* 1043  */
/* 1044  */
/* 1045  */
/* 1046  */ #social-header .facebook {
/* 1047  */
/* 1048  */     margin-right: 6px;
/* 1049  */
/* 1050  */     background-image: url("images/social/icon/facebook.png");

/* style.css */

/* 1051  */
/* 1052  */     width: 16px;
/* 1053  */
/* 1054  */     float: left;
/* 1055  */
/* 1056  */     height: 16px;
/* 1057  */
/* 1058  */ 	opacity:0.3;
/* 1059  */
/* 1060  */     }
/* 1061  */
/* 1062  */
/* 1063  */
/* 1064  */ #social-header .twitter {
/* 1065  */
/* 1066  */     margin-right: 8px;
/* 1067  */
/* 1068  */     background-image: url("images/social/icon/twitter.png");
/* 1069  */
/* 1070  */     width: 16px;
/* 1071  */
/* 1072  */     float: left;
/* 1073  */
/* 1074  */     height: 16px;
/* 1075  */
/* 1076  */ 	opacity:0.3;
/* 1077  */
/* 1078  */ 	margin-top:-1px;
/* 1079  */
/* 1080  */
/* 1081  */
/* 1082  */     }
/* 1083  */
/* 1084  */
/* 1085  */
/* 1086  */ #social-header .youtube {
/* 1087  */
/* 1088  */     margin-right: 9px;
/* 1089  */
/* 1090  */     background-image: url("images/social/icon/youtube.png");
/* 1091  */
/* 1092  */     width: 16px;
/* 1093  */
/* 1094  */     float: left;
/* 1095  */
/* 1096  */     height: 16px;
/* 1097  */
/* 1098  */ 	opacity:0.3;
/* 1099  */
/* 1100  */     }

/* style.css */

/* 1101  */
/* 1102  */
/* 1103  */
/* 1104  */ #social-header .google {
/* 1105  */
/* 1106  */     margin-right: 9px;
/* 1107  */
/* 1108  */     background-image: url("images/social/icon/google.png");
/* 1109  */
/* 1110  */     width: 16px;
/* 1111  */
/* 1112  */     float: left;
/* 1113  */
/* 1114  */     height: 16px;
/* 1115  */
/* 1116  */ 	opacity:0.3;
/* 1117  */
/* 1118  */     }
/* 1119  */
/* 1120  */
/* 1121  */
/* 1122  */ #social-header .flickr {
/* 1123  */
/* 1124  */     margin-right: 10px;
/* 1125  */
/* 1126  */     background-image: url("images/social/icon/flickr.png");
/* 1127  */
/* 1128  */     width: 16px;
/* 1129  */
/* 1130  */     float: left;
/* 1131  */
/* 1132  */     height: 16px;
/* 1133  */
/* 1134  */ 	opacity:0.3;
/* 1135  */
/* 1136  */     }
/* 1137  */
/* 1138  */
/* 1139  */
/* 1140  */ #social-header .vimeo {
/* 1141  */
/* 1142  */     margin-right: 10px;
/* 1143  */
/* 1144  */     background-image: url("images/social/icon/vimeo.png");
/* 1145  */
/* 1146  */     width: 16px;
/* 1147  */
/* 1148  */     float: left;
/* 1149  */
/* 1150  */     height: 16px;

/* style.css */

/* 1151  */
/* 1152  */ 	margin-top:-1px;
/* 1153  */
/* 1154  */ 	opacity:0.3;
/* 1155  */
/* 1156  */     }
/* 1157  */
/* 1158  */
/* 1159  */
/* 1160  */ #social-header .instagram:hover, #social-header .facebook:hover, #social-header .twitter:hover, #social-header .youtube:hover, #social-header .google:hover, #social-header .flickr:hover, #social-header .vimeo:hover { opacity:1 }
/* 1161  */
/* 1162  */
/* 1163  */
/* 1164  */ /* ==== search ==== */
/* 1165  */
/* 1166  */
/* 1167  */
/* 1168  */ #search-header {
/* 1169  */
/* 1170  */     margin-top: 12px;
/* 1171  */
/* 1172  */     float: right;
/* 1173  */
/* 1174  */     width: 33px;
/* 1175  */
/* 1176  */     height: 33px;
/* 1177  */
/* 1178  */     display: block;
/* 1179  */
/* 1180  */     }
/* 1181  */
/* 1182  */
/* 1183  */
/* 1184  */ #search-header #submit { display: none }
/* 1185  */
/* 1186  */
/* 1187  */
/* 1188  */ #search-header form { position: relative }
/* 1189  */
/* 1190  */
/* 1191  */
/* 1192  */ #search-header form:hover .submit { opacity: 0.7 }
/* 1193  */
/* 1194  */
/* 1195  */
/* 1196  */ #search-header form .iconsearh, form .submit {
/* 1197  */
/* 1198  */     top: 0px;
/* 1199  */
/* 1200  */     width: 33px;

/* style.css */

/* 1201  */
/* 1202  */     right: 0px;
/* 1203  */
/* 1204  */     height: 33px;
/* 1205  */
/* 1206  */     display: block;
/* 1207  */
/* 1208  */     position: absolute;
/* 1209  */
/* 1210  */     }
/* 1211  */
/* 1212  */
/* 1213  */
/* 1214  */ #search-header form .submit {
/* 1215  */
/* 1216  */     background-image: url("images/search.png");
/* 1217  */
/* 1218  */     width: 33px;
/* 1219  */
/* 1220  */     cursor: pointer;
/* 1221  */
/* 1222  */     height: 33px;
/* 1223  */
/* 1224  */     }
/* 1225  */
/* 1226  */
/* 1227  */
/* 1228  */ #search-header form #search {
/* 1229  */
/* 1230  */     border-top: none;
/* 1231  */
/* 1232  */     border-left: 1px solid rgba(0, 0, 0, 0.1);
/* 1233  */
/* 1234  */     border-right: 1px solid rgba(0, 0, 0, 0.1);
/* 1235  */
/* 1236  */     border-bottom: 1px solid rgba(0, 0, 0, 0.1);
/* 1237  */
/* 1238  */     text-transform: uppercase;
/* 1239  */
/* 1240  */     background-color: rgba(255, 255, 255, 0.7);
/* 1241  */
/* 1242  */     -webkit-appearance: none;
/* 1243  */
/* 1244  */     top: 45px;
/* 1245  */
/* 1246  */     width: 0;
/* 1247  */
/* 1248  */     right: 0px;
/* 1249  */
/* 1250  */     color: #000;

/* style.css */

/* 1251  */
/* 1252  */     opacity: 0;
/* 1253  */
/* 1254  */     outline: none;
/* 1255  */
/* 1256  */     position: absolute;
/* 1257  */
/* 1258  */     font-size: 12px;
/* 1259  */
/* 1260  */     z-index:9999;
/* 1261  */
/* 1262  */     }
/* 1263  */
/* 1264  */
/* 1265  */
/* 1266  */ /* -------------------------------wizedesign--
/* 1267  *|
/* 1268  *|      06. FOOTER
/* 1269  *|
/* 1270  *|    ------------------------------------------- */
/* 1271  */
/* 1272  */
/* 1273  */
/* 1274  */ #footer {
/* 1275  */
/* 1276  */     background: rgba(0, 0, 0, 0.85);
/* 1277  */
/* 1278  */     padding-top: 0px;
/* 1279  */
/* 1280  */     padding-bottom: 0px;
/* 1281  */
/* 1282  */     width: 1240px;
/* 1283  */
/* 1284  */     margin: 0px auto 0px auto;
/* 1285  */
/* 1286  */     }
/* 1287  */
/* 1288  */
/* 1289  */
/* 1290  */ .footer-wrap {
/* 1291  */
/* 1292  */     width: 1240px;
/* 1293  */
/* 1294  */     margin: 0px auto 0px auto;
/* 1295  */
/* 1296  */     overflow: hidden;
/* 1297  */
/* 1298  */     }
/* 1299  */
/* 1300  */

/* style.css */

/* 1301  */
/* 1302  */ .footer-row { width: 1240px; margin-top:87px; }
/* 1303  */
/* 1304  */
/* 1305  */
/* 1306  */
/* 1307  */
/* 1308  */ .footer-col {
/* 1309  */
/* 1310  */     float: left;
/* 1311  */
/* 1312  */     width: 360px;
/* 1313  */
/* 1314  */ 	margin-left:40px;
/* 1315  */
/* 1316  */ 	margin-bottom:-67px;
/* 1317  */
/* 1318  */     }
/* 1319  */
/* 1320  */
/* 1321  */
/* 1322  */ .footer-col	h3.wd-title-footer {
/* 1323  */
/* 1324  */ 	margin-bottom:43px;
/* 1325  */
/* 1326  */ 	margin-top:-73px;
/* 1327  */
/* 1328  */ 	text-transform: uppercase;
/* 1329  */
/* 1330  */ 	font-size:24px;
/* 1331  */
/* 1332  */ 	font-weight:400;
/* 1333  */
/* 1334  */ 	color:#fff;
/* 1335  */
/* 1336  */ 	margin-left:-20px;
/* 1337  */
/* 1338  */     }
/* 1339  */
/* 1340  */
/* 1341  */
/* 1342  */ .footer-col .widget {
/* 1343  */
/* 1344  */     margin-top: 0px;
/* 1345  */
/* 1346  */     margin-bottom: 107px !important;
/* 1347  */
/* 1348  */     width: 320px;
/* 1349  */
/* 1350  */     padding: 20px;

/* style.css */

/* 1351  */
/* 1352  */     position: relative;
/* 1353  */
/* 1354  */ 	background: #000;
/* 1355  */
/* 1356  */     color: #fff;
/* 1357  */
/* 1358  */     }
/* 1359  */
/* 1360  */
/* 1361  */
/* 1362  */ .footer-col .widget:last-child { margin-bottom: 0px }
/* 1363  */
/* 1364  */
/* 1365  */
/* 1366  */ .footer-col a { color:#fff }
/* 1367  */
/* 1368  */
/* 1369  */
/* 1370  */ /* ==== copyright ==== */
/* 1371  */
/* 1372  */
/* 1373  */
/* 1374  */ #copyright {
/* 1375  */
/* 1376  */     background: #000;
/* 1377  */
/* 1378  */     text-align: center;
/* 1379  */
/* 1380  */     width: 1240px;
/* 1381  */
/* 1382  */     color: rgba(255, 255, 255, 0.7);
/* 1383  */
/* 1384  */     padding: 16px 0;
/* 1385  */
/* 1386  */     font-size: 13px;
/* 1387  */
/* 1388  */ 	margin: 0px auto 0px auto;
/* 1389  */
/* 1390  */     }
/* 1391  */
/* 1392  */
/* 1393  */
/* 1394  */ /* ==== social ==== */
/* 1395  */
/* 1396  */
/* 1397  */
/* 1398  */ #footer-social {
/* 1399  */
/* 1400  */     text-align: center;

/* style.css */

/* 1401  */
/* 1402  */     background: rgba(255, 255, 255, 0.2);
/* 1403  */
/* 1404  */     width: 1240px;
/* 1405  */
/* 1406  */     padding: 40px 0;
/* 1407  */
/* 1408  */ 	margin: 0px auto 0px auto;
/* 1409  */
/* 1410  */     }
/* 1411  */
/* 1412  */ .header-banner-content {
/* 1413  */ 	line-height: 14px;
/* 1414  */ }
/* 1415  */
/* 1416  */ .footer-social-wrap a.instagram {
/* 1417  */
/* 1418  */     background: url("images/social/logo/instagram.png");
/* 1419  */
/* 1420  */     margin-right: 30px;
/* 1421  */
/* 1422  */     margin-bottom: -6px;
/* 1423  */
/* 1424  */     width: 106px;
/* 1425  */
/* 1426  */     height: 30px;
/* 1427  */
/* 1428  */     display: inline-block;
/* 1429  */
/* 1430  */     }
/* 1431  */
/* 1432  */
/* 1433  */
/* 1434  */ .footer-social-wrap a.facebook {
/* 1435  */
/* 1436  */     background: url("images/social/logo/facebook.png") no-repeat left;
/* 1437  */
/* 1438  */     margin-right: 30px;
/* 1439  */
/* 1440  */     width: 125px;
/* 1441  */
/* 1442  */     height: 25px;
/* 1443  */
/* 1444  */     display: inline-block;
/* 1445  */
/* 1446  */     }
/* 1447  */
/* 1448  */
/* 1449  */
/* 1450  */ .footer-social-wrap a.youtube {

/* style.css */

/* 1451  */
/* 1452  */     background: url("images/social/logo/youtube.png");
/* 1453  */
/* 1454  */     margin-right: 30px;
/* 1455  */
/* 1456  */     width: 63px;
/* 1457  */
/* 1458  */     height: 25px;
/* 1459  */
/* 1460  */     display: inline-block;
/* 1461  */
/* 1462  */     }
/* 1463  */
/* 1464  */
/* 1465  */
/* 1466  */ .footer-social-wrap a.twitter {
/* 1467  */
/* 1468  */     background: url("images/social/logo/twitter.png");
/* 1469  */
/* 1470  */     margin-right: 30px;
/* 1471  */
/* 1472  */     width: 125px;
/* 1473  */
/* 1474  */     height: 25px;
/* 1475  */
/* 1476  */     display: inline-block;
/* 1477  */
/* 1478  */     }
/* 1479  */
/* 1480  */
/* 1481  */
/* 1482  */ .footer-social-wrap a.flickr {
/* 1483  */
/* 1484  */     background: url("images/social/logo/flickr.png");
/* 1485  */
/* 1486  */     margin-right: 30px;
/* 1487  */
/* 1488  */     width: 83px;
/* 1489  */
/* 1490  */     height: 25px;
/* 1491  */
/* 1492  */     display: inline-block;
/* 1493  */
/* 1494  */     }
/* 1495  */
/* 1496  */
/* 1497  */
/* 1498  */ .footer-social-wrap a.google {
/* 1499  */
/* 1500  */     background: url("images/social/logo/google.png");

/* style.css */

/* 1501  */
/* 1502  */     margin-right: 30px;
/* 1503  */
/* 1504  */     margin-bottom: -6px;
/* 1505  */
/* 1506  */     width: 112px;
/* 1507  */
/* 1508  */     height: 30px;
/* 1509  */
/* 1510  */     display: inline-block;
/* 1511  */
/* 1512  */     }
/* 1513  */
/* 1514  */
/* 1515  */
/* 1516  */ .footer-social-wrap a.vimeo {
/* 1517  */
/* 1518  */     background: url("images/social/logo/vimeo.png");
/* 1519  */
/* 1520  */     margin-right: 30px;
/* 1521  */
/* 1522  */     width: 88px;
/* 1523  */
/* 1524  */     height: 25px;
/* 1525  */
/* 1526  */     display: inline-block;
/* 1527  */
/* 1528  */     }
/* 1529  */
/* 1530  */
/* 1531  */
/* 1532  */ .footer-social-wrap a.facebook:hover, .footer-social-wrap a.google:hover, .footer-social-wrap a.twitter:hover, .footer-social-wrap a.vimeo:hover, .footer-social-wrap a.youtube:hover, .footer-social-wrap a.flickr:hover, .footer-social-wrap a.instagram:hover { opacity: 0.5 }
/* 1533  */
/* 1534  */
/* 1535  */
/* 1536  */ /* -------------------------------wizedesign--
/* 1537  *|
/* 1538  *|      07. PAGE
/* 1539  *|
/* 1540  *|    ------------------------------------------- */
/* 1541  */
/* 1542  */
/* 1543  */
/* 1544  */ /* ==== page title ==== */
/* 1545  */
/* 1546  */
/* 1547  */
/* 1548  */ #page-title {
/* 1549  */
/* 1550  */     text-align: center;

/* style.css */

/* 1551  */
/* 1552  */     margin-top: -15px;
/* 1553  */
/* 1554  */     margin-bottom: 25px;
/* 1555  */
/* 1556  */     width: 1160px;
/* 1557  */
/* 1558  */     }
/* 1559  */
/* 1560  */
/* 1561  */
/* 1562  */ #page-title h1 {
/* 1563  */
/* 1564  */     line-height: 46px;
/* 1565  */
/* 1566  */     text-transform: uppercase;
/* 1567  */
/* 1568  */     color: #000;
/* 1569  */
/* 1570  */     height: 46px;
/* 1571  */
/* 1572  */     font-size: 48px;
/* 1573  */
/* 1574  */ 	font-weight:400;
/* 1575  */
/* 1576  */ 	border-top:3px solid #000;
/* 1577  */
/* 1578  */ 	border-bottom:3px solid #f1f1f1;
/* 1579  */
/* 1580  */ 	display:inline-block;
/* 1581  */
/* 1582  */ 	padding:9px 2px;
/* 1583  */
/* 1584  */     }
/* 1585  */
/* 1586  */
/* 1587  */
/* 1588  */ /* ==== page cover ==== */
/* 1589  */
/* 1590  */
/* 1591  */
/* 1592  */ #page-cover {
/* 1593  */
/* 1594  */     width: 1240px;
/* 1595  */
/* 1596  */     height: 300px;
/* 1597  */
/* 1598  */     margin-top: -40px;
/* 1599  */
/* 1600  */ 	margin-left: -40px;

/* style.css */

/* 1601  */
/* 1602  */ 	margin-bottom: 60px;
/* 1603  */
/* 1604  */     overflow: hidden;
/* 1605  */
/* 1606  */     position: relative;
/* 1607  */
/* 1608  */     }
/* 1609  */
/* 1610  */
/* 1611  */
/* 1612  */ #page-cover img {
/* 1613  */
/* 1614  */     width: 1240px;
/* 1615  */
/* 1616  */     height: 300px;
/* 1617  */
/* 1618  */     }
/* 1619  */
/* 1620  */
/* 1621  */
/* 1622  */ #page-cover h1 {
/* 1623  */
/* 1624  */     text-align: center;
/* 1625  */
/* 1626  */     font-weight: 900;
/* 1627  */
/* 1628  */     text-transform: uppercase;
/* 1629  */
/* 1630  */     color:#fff;
/* 1631  */
/* 1632  */     width: 1240px;
/* 1633  */
/* 1634  */     bottom: 7px;
/* 1635  */
/* 1636  */     position: absolute;
/* 1637  */
/* 1638  */     font-size: 68px;
/* 1639  */
/* 1640  */     }
/* 1641  */
/* 1642  */
/* 1643  */
/* 1644  */ .page-cover-bg {
/* 1645  */
/* 1646  */     background: url("images/bg3.png");
/* 1647  */
/* 1648  */     left: 0px;
/* 1649  */
/* 1650  */     width: 100%;

/* style.css */

/* 1651  */
/* 1652  */     bottom: 0px;
/* 1653  */
/* 1654  */     height: 300px;
/* 1655  */
/* 1656  */     position: absolute;
/* 1657  */
/* 1658  */     }
/* 1659  */
/* 1660  */
/* 1661  */
/* 1662  */ /* ==== page comments ==== */
/* 1663  */
/* 1664  */
/* 1665  */
/* 1666  */ #layout-pg-left #comments, #layout-pg-right #comments, #layout-pg-full #comments {
/* 1667  */
/* 1668  */     margin-top:12px;
/* 1669  */
/* 1670  */     margin-bottom:-7px;
/* 1671  */
/* 1672  */     }
/* 1673  */
/* 1674  */
/* 1675  */
/* 1676  */ /* -------------------------------wizedesign--
/* 1677  *|
/* 1678  *|      08. ERROR
/* 1679  *|
/* 1680  *|    ------------------------------------------- */
/* 1681  */
/* 1682  */
/* 1683  */
/* 1684  */ #error-404 {
/* 1685  */
/* 1686  */     text-align: center;
/* 1687  */
/* 1688  */     margin-top: -15px;
/* 1689  */
/* 1690  */     margin-bottom: 25px;
/* 1691  */
/* 1692  */     width: 1160px;
/* 1693  */
/* 1694  */     }
/* 1695  */
/* 1696  */
/* 1697  */
/* 1698  */ #error-404 h1 {
/* 1699  */
/* 1700  */     line-height: 46px;

/* style.css */

/* 1701  */
/* 1702  */     text-transform: uppercase;
/* 1703  */
/* 1704  */     color: #000;
/* 1705  */
/* 1706  */     height: 46px;
/* 1707  */
/* 1708  */     font-size: 48px;
/* 1709  */
/* 1710  */ 	font-weight:400;
/* 1711  */
/* 1712  */ 	border-top:3px solid #000;
/* 1713  */
/* 1714  */ 	border-bottom:3px solid #f1f1f1;
/* 1715  */
/* 1716  */ 	display:inline-block;
/* 1717  */
/* 1718  */ 	padding:9px 2px;
/* 1719  */
/* 1720  */     }
/* 1721  */
/* 1722  */
/* 1723  */
/* 1724  */ .error-subtitle { text-align: center }
/* 1725  */
/* 1726  */
/* 1727  */
/* 1728  */ .error-subtitle h4 {
/* 1729  */
/* 1730  */     line-height: 43px;
/* 1731  */
/* 1732  */     margin-bottom: -14px;
/* 1733  */
/* 1734  */     text-transform: uppercase;
/* 1735  */
/* 1736  */     color: #000;
/* 1737  */
/* 1738  */     height: 43px;
/* 1739  */
/* 1740  */     font-size: 22px;
/* 1741  */
/* 1742  */ 	font-weight:900;
/* 1743  */
/* 1744  */ 	margin-top:-13px;
/* 1745  */
/* 1746  */     }
/* 1747  */
/* 1748  */
/* 1749  */
/* 1750  */ .error-search {

/* style.css */

/* 1751  */
/* 1752  */     text-align: center;
/* 1753  */
/* 1754  */     margin-top: -54px;
/* 1755  */
/* 1756  */     }
/* 1757  */
/* 1758  */
/* 1759  */
/* 1760  */ .error-search h4 {
/* 1761  */
/* 1762  */     line-height: 43px;
/* 1763  */
/* 1764  */     margin-bottom: 26px;
/* 1765  */
/* 1766  */     text-transform: uppercase;
/* 1767  */
/* 1768  */     color: #000;
/* 1769  */
/* 1770  */     height: 43px;
/* 1771  */
/* 1772  */     font-size: 22px;
/* 1773  */
/* 1774  */ 	font-weight:900;
/* 1775  */
/* 1776  */ 	margin-top:66px;
/* 1777  */
/* 1778  */     }
/* 1779  */
/* 1780  */
/* 1781  */
/* 1782  */ /* -------------------------------wizedesign--
/* 1783  *|
/* 1784  *|      09. CONTACT
/* 1785  *|
/* 1786  *|    ------------------------------------------- */
/* 1787  */
/* 1788  */
/* 1789  */
/* 1790  */ .wpcf7-form p {
/* 1791  */
/* 1792  */     text-transform: uppercase;
/* 1793  */
/* 1794  */     letter-spacing: 0.5px;
/* 1795  */
/* 1796  */     font-size: 12px;
/* 1797  */
/* 1798  */     font-weight: 600;
/* 1799  */
/* 1800  */     }

/* style.css */

/* 1801  */
/* 1802  */
/* 1803  */
/* 1804  */ .wpcf7-form input {
/* 1805  */
/* 1806  */     margin-top: 5px;
/* 1807  */
/* 1808  */     background: #fafafa;
/* 1809  */
/* 1810  */     line-height: 24px;
/* 1811  */
/* 1812  */     border-radius: 3px;
/* 1813  */
/* 1814  */     color: #333;
/* 1815  */
/* 1816  */     border: 1px solid #e5e5e5 !important;
/* 1817  */
/* 1818  */     padding: 10px;
/* 1819  */
/* 1820  */     font-size: 14px;
/* 1821  */
/* 1822  */     width: 50%;
/* 1823  */
/* 1824  */     margin-bottom: 6px;
/* 1825  */
/* 1826  */     }
/* 1827  */
/* 1828  */
/* 1829  */
/* 1830  */ .wpcf7-form textarea {
/* 1831  */
/* 1832  */     margin-top: 5px;
/* 1833  */
/* 1834  */     background: #fafafa;
/* 1835  */
/* 1836  */     line-height: 24px;
/* 1837  */
/* 1838  */     border-radius: 3px;
/* 1839  */
/* 1840  */     color: #333;
/* 1841  */
/* 1842  */     border: 1px solid #e5e5e5 !important;
/* 1843  */
/* 1844  */     padding: 10px;
/* 1845  */
/* 1846  */     font-size: 14px;
/* 1847  */
/* 1848  */     width: 96%;
/* 1849  */
/* 1850  */     margin-bottom: 6px;

/* style.css */

/* 1851  */
/* 1852  */     }
/* 1853  */
/* 1854  */
/* 1855  */
/* 1856  */ .wpcf7-form input:focus, .wpcf7-form textarea:focus { background: #fefefe }
/* 1857  */
/* 1858  */
/* 1859  */
/* 1860  */ .wpcf7-form input.wpcf7-submit {
/* 1861  */
/* 1862  */     background: #000;
/* 1863  */
/* 1864  */     color: #fff;
/* 1865  */
/* 1866  */     text-transform: uppercase;
/* 1867  */
/* 1868  */     width: auto;
/* 1869  */
/* 1870  */     line-height: 24px;
/* 1871  */
/* 1872  */     padding: 3px 10px;
/* 1873  */
/* 1874  */     border: none !important;
/* 1875  */
/* 1876  */     border-radius: 1.5px;
/* 1877  */
/* 1878  */     }
/* 1879  */
/* 1880  */
/* 1881  */
/* 1882  */ /* -------------------------------wizedesign--
/* 1883  *|
/* 1884  *|      10. INFO BLOG
/* 1885  *|
/* 1886  *|    ------------------------------------------- */
/* 1887  */
/* 1888  */
/* 1889  */
/* 1890  */ .info-vcl {
/* 1891  */
/* 1892  */ 	text-align:left;
/* 1893  */
/* 1894  */ 	float:left;
/* 1895  */
/* 1896  */ 	}
/* 1897  */
/* 1898  */
/* 1899  */
/* 1900  */ .info-vclC {

/* style.css */

/* 1901  */
/* 1902  */     left: 30px;
/* 1903  */
/* 1904  */     bottom: 22px;
/* 1905  */
/* 1906  */     position: absolute;
/* 1907  */
/* 1908  */ 	text-align:left;
/* 1909  */
/* 1910  */     }
/* 1911  */
/* 1912  */
/* 1913  */
/* 1914  */ /* ==== sticky ==== */
/* 1915  */
/* 1916  */
/* 1917  */
/* 1918  */ .info-sticky {
/* 1919  */
/* 1920  */     font-weight: 400;
/* 1921  */
/* 1922  */     line-height: 17px;
/* 1923  */
/* 1924  */     text-transform: uppercase;
/* 1925  */
/* 1926  */     background-color: rgba(0, 0, 0, 0.7);
/* 1927  */
/* 1928  */     background-image: url("images/sticky.png");
/* 1929  */
/* 1930  */     background-repeat: no-repeat;
/* 1931  */
/* 1932  */     background-position: 7px 3px;
/* 1933  */
/* 1934  */     top: 23px;
/* 1935  */
/* 1936  */     left: 30px;
/* 1937  */
/* 1938  */     color: #fff;
/* 1939  */
/* 1940  */     float: left;
/* 1941  */
/* 1942  */     hieght: 17px;
/* 1943  */
/* 1944  */     padding: 3px 9px 3px 30px;
/* 1945  */
/* 1946  */     position: absolute;
/* 1947  */
/* 1948  */     font-size: 11px;
/* 1949  */
/* 1950  */ 	font-weight:600;

/* style.css */

/* 1951  */
/* 1952  */ 	letter-spacing: 1.7px;
/* 1953  */
/* 1954  */     }
/* 1955  */
/* 1956  */
/* 1957  */
/* 1958  */ /* ==== date ==== */
/* 1959  */
/* 1960  */
/* 1961  */
/* 1962  */ .info-date {
/* 1963  */
/* 1964  */     line-height: 17px;
/* 1965  */
/* 1966  */     text-transform: uppercase;
/* 1967  */
/* 1968  */     color: #c5c5c5;
/* 1969  */
/* 1970  */     float: right;
/* 1971  */
/* 1972  */     hieght: 17px;
/* 1973  */
/* 1974  */     font-size: 10px;
/* 1975  */
/* 1976  */ 	font-weight:400;
/* 1977  */
/* 1978  */ 	font-family: "Montserrat";
/* 1979  */
/* 1980  */ 	margin-top:4px;
/* 1981  */
/* 1982  */     }
/* 1983  */
/* 1984  */
/* 1985  */
/* 1986  */ .info-dateC {
/* 1987  */
/* 1988  */     text-transform: uppercase;
/* 1989  */
/* 1990  */     right: 25px;
/* 1991  */
/* 1992  */     color: rgba(255,255,255,0.7);
/* 1993  */
/* 1994  */     bottom: 25px;
/* 1995  */
/* 1996  */     position: absolute;
/* 1997  */
/* 1998  */ 	font-family: "Montserrat";
/* 1999  */
/* 2000  */ 	font-weight:400;

/* style.css */

/* 2001  */
/* 2002  */ 	font-size: 10px;
/* 2003  */
/* 2004  */ 	line-height: 17px;
/* 2005  */
/* 2006  */ 	hieght: 17px;
/* 2007  */
/* 2008  */     }
/* 2009  */
/* 2010  */
/* 2011  */
/* 2012  */ /* ==== category ==== */
/* 2013  */
/* 2014  */
/* 2015  */
/* 2016  */ .info-cat {
/* 2017  */
/* 2018  */     line-height: 15px;
/* 2019  */
/* 2020  */     letter-spacing: 1.7px;
/* 2021  */
/* 2022  */     text-transform: uppercase;
/* 2023  */
/* 2024  */     top: 0px;
/* 2025  */
/* 2026  */     left: 30px;
/* 2027  */
/* 2028  */     color: #fff;
/* 2029  */
/* 2030  */     height: 15px;
/* 2031  */
/* 2032  */     padding: 4px 10px ;
/* 2033  */
/* 2034  */     position: absolute;
/* 2035  */
/* 2036  */     font-size: 9px;
/* 2037  */
/* 2038  */ 	font-weight:900;
/* 2039  */
/* 2040  */     }
/* 2041  */
/* 2042  */
/* 2043  */
/* 2044  */ /* ==== view ==== */
/* 2045  */
/* 2046  */
/* 2047  */
/* 2048  */ .info-view {
/* 2049  */
/* 2050  */     line-height: 16px;

/* style.css */

/* 2051  */
/* 2052  */     margin-right: 20px;
/* 2053  */
/* 2054  */     padding-left: 30px;
/* 2055  */
/* 2056  */     background-image: url("images/viewT.png");
/* 2057  */
/* 2058  */     background-repeat: no-repeat;
/* 2059  */
/* 2060  */     background-position: 0px 0px;
/* 2061  */
/* 2062  */     color: #c5c5c5;
/* 2063  */
/* 2064  */     hieght: 16px;
/* 2065  */
/* 2066  */     font-size: 12px;
/* 2067  */
/* 2068  */ 	font-weight:700;
/* 2069  */
/* 2070  */ 	display:inline-block;
/* 2071  */
/* 2072  */ 	font-family: "Montserrat"
/* 2073  */
/* 2074  */     }
/* 2075  */
/* 2076  */
/* 2077  */
/* 2078  */ .info-viewC {
/* 2079  */
/* 2080  */     line-height: 16px;
/* 2081  */
/* 2082  */     margin-right: 20px;
/* 2083  */
/* 2084  */     padding-left: 30px;
/* 2085  */
/* 2086  */     background-image: url("images/view.png");
/* 2087  */
/* 2088  */     background-repeat: no-repeat;
/* 2089  */
/* 2090  */     background-position: 0px 0px;
/* 2091  */
/* 2092  */     color: #fff;
/* 2093  */
/* 2094  */     display:inline-block;
/* 2095  */
/* 2096  */     hieght: 16px;
/* 2097  */
/* 2098  */     font-size: 12px;
/* 2099  */
/* 2100  */ 	font-family: "Montserrat";

/* style.css */

/* 2101  */
/* 2102  */     }
/* 2103  */
/* 2104  */
/* 2105  */
/* 2106  */ /* ==== comment ==== */
/* 2107  */
/* 2108  */
/* 2109  */
/* 2110  */ .info-com {
/* 2111  */
/* 2112  */     line-height: 16px;
/* 2113  */
/* 2114  */     margin-right: 20px;
/* 2115  */
/* 2116  */     padding-left: 25px;
/* 2117  */
/* 2118  */     background-image: url("images/comT.png");
/* 2119  */
/* 2120  */     background-repeat: no-repeat;
/* 2121  */
/* 2122  */     background-position: 0px 0px;
/* 2123  */
/* 2124  */     color: #c5c5c5;
/* 2125  */
/* 2126  */     display:inline-block;
/* 2127  */
/* 2128  */     hieght: 16px;
/* 2129  */
/* 2130  */     font-size: 12px;
/* 2131  */
/* 2132  */ 	font-weight:700;
/* 2133  */
/* 2134  */ 	font-family: "Montserrat"
/* 2135  */
/* 2136  */     }
/* 2137  */
/* 2138  */
/* 2139  */
/* 2140  */ .info-comC {
/* 2141  */
/* 2142  */     line-height: 16px;
/* 2143  */
/* 2144  */     margin-right: 20px;
/* 2145  */
/* 2146  */     padding-left: 25px;
/* 2147  */
/* 2148  */     background-image: url("images/com.png");
/* 2149  */
/* 2150  */     background-repeat: no-repeat;

/* style.css */

/* 2151  */
/* 2152  */     background-position: 0px 0px;
/* 2153  */
/* 2154  */     color: #fff;
/* 2155  */
/* 2156  */     display:inline-block;
/* 2157  */
/* 2158  */     hieght: 16px;
/* 2159  */
/* 2160  */     font-size: 12px;
/* 2161  */
/* 2162  */ 	font-family: "Montserrat";
/* 2163  */
/* 2164  */     }
/* 2165  */
/* 2166  */
/* 2167  */
/* 2168  */ /* ==== like ==== */
/* 2169  */
/* 2170  */
/* 2171  */
/* 2172  */ a.info-like, a.info-liked {
/* 2173  */
/* 2174  */     font-weight: 400;
/* 2175  */
/* 2176  */     line-height: 16px;
/* 2177  */
/* 2178  */     padding-left: 25px;
/* 2179  */
/* 2180  */     text-transform: uppercase;
/* 2181  */
/* 2182  */     background-image: url("images/likeT.png");
/* 2183  */
/* 2184  */     background-repeat: no-repeat;
/* 2185  */
/* 2186  */     background-position: 0px 0px;
/* 2187  */
/* 2188  */     color: #c5c5c5;
/* 2189  */
/* 2190  */     display:inline-block;
/* 2191  */
/* 2192  */     hieght: 16px;
/* 2193  */
/* 2194  */     font-size: 12px;
/* 2195  */
/* 2196  */ 	font-weight:700;
/* 2197  */
/* 2198  */ 	font-family: "Montserrat"
/* 2199  */
/* 2200  */     }

/* style.css */

/* 2201  */
/* 2202  */
/* 2203  */
/* 2204  */ a.info-likeC, a.info-likedC {
/* 2205  */
/* 2206  */     font-weight: 400;
/* 2207  */
/* 2208  */     line-height: 16px;
/* 2209  */
/* 2210  */     padding-left: 25px;
/* 2211  */
/* 2212  */     text-transform: uppercase;
/* 2213  */
/* 2214  */     background-image: url("images/like.png");
/* 2215  */
/* 2216  */     background-repeat: no-repeat;
/* 2217  */
/* 2218  */     background-position: 0px 0px;
/* 2219  */
/* 2220  */     color: #fff;
/* 2221  */
/* 2222  */     display:inline-block;
/* 2223  */
/* 2224  */     hieght: 16px;
/* 2225  */
/* 2226  */     font-size: 12px;
/* 2227  */
/* 2228  */ 	font-weight:700;
/* 2229  */
/* 2230  */ 	font-family: "Montserrat"
/* 2231  */
/* 2232  */     }
/* 2233  */
/* 2234  */
/* 2235  */
/* 2236  */ a.info-likeCB, a.info-likedCB {
/* 2237  */
/* 2238  */     font-weight: 400;
/* 2239  */
/* 2240  */     line-height: 18px;
/* 2241  */
/* 2242  */     padding-left: 29px;
/* 2243  */
/* 2244  */     text-transform: uppercase;
/* 2245  */
/* 2246  */     background-image: url("images/likeB.png");
/* 2247  */
/* 2248  */     background-repeat: no-repeat;
/* 2249  */
/* 2250  */     background-position: 0px 0px;

/* style.css */

/* 2251  */
/* 2252  */     color: #fff;
/* 2253  */
/* 2254  */     float: left;
/* 2255  */
/* 2256  */     hieght: 18px;
/* 2257  */
/* 2258  */     font-size: 14px;
/* 2259  */
/* 2260  */ 	font-family: "Montserrat"
/* 2261  */
/* 2262  */     }
/* 2263  */
/* 2264  */
/* 2265  */
/* 2266  */ a.info-likeS, a.info-likedS {
/* 2267  */
/* 2268  */     font-weight: 600;
/* 2269  */
/* 2270  */     padding-left: 31px;
/* 2271  */
/* 2272  */     text-transform: uppercase;
/* 2273  */
/* 2274  */     background-image: url("images/likeBT.png");
/* 2275  */
/* 2276  */     background-repeat: no-repeat;
/* 2277  */
/* 2278  */     background-position: 0px -1px;
/* 2279  */
/* 2280  */     color: #000;
/* 2281  */
/* 2282  */     float: right;
/* 2283  */
/* 2284  */     font-size: 14px;
/* 2285  */
/* 2286  */ 	font-family: "Montserrat";
/* 2287  */
/* 2288  */ 	margin-top:2px;
/* 2289  */
/* 2290  */     }
/* 2291  */
/* 2292  */
/* 2293  */
/* 2294  */ a.info-like, a.info-like.like:hover, a.info-liked.unlike, a.info-liked:hover {
/* 2295  */
/* 2296  */     background-image: url("images/likeT.png");
/* 2297  */
/* 2298  */     color: #c5c5c5;
/* 2299  */
/* 2300  */     }

/* style.css */

/* 2301  */
/* 2302  */
/* 2303  */
/* 2304  */ .info-likeW {
/* 2305  */
/* 2306  */     text-align: center;
/* 2307  */
/* 2308  */     font-weight: 700;
/* 2309  */
/* 2310  */     padding-left: 1px;
/* 2311  */
/* 2312  */     text-transform: uppercase;
/* 2313  */
/* 2314  */     background-image: url("images/likeBT2.png");
/* 2315  */
/* 2316  */     background-repeat: no-repeat;
/* 2317  */
/* 2318  */     background-position: 0px 0px;
/* 2319  */
/* 2320  */     top: 20px;
/* 2321  */
/* 2322  */     left: 30px;
/* 2323  */
/* 2324  */     color: #fff !important;
/* 2325  */
/* 2326  */     float: left;
/* 2327  */
/* 2328  */     width: 31px;
/* 2329  */
/* 2330  */     height: 28px;
/* 2331  */
/* 2332  */     position: absolute;
/* 2333  */
/* 2334  */     font-size: 10px;
/* 2335  */
/* 2336  */ 	font-family: "Montserrat";
/* 2337  */
/* 2338  */     }
/* 2339  */
/* 2340  */
/* 2341  */
/* 2342  */ a.info-liked, a.info-liked.unlike:hover, a.info-like.like, a.info-liked.unlike:hover, a.info-like:hover {
/* 2343  */
/* 2344  */     background-image: url("images/likeC.png");
/* 2345  */
/* 2346  */     color: #c5c5c5;
/* 2347  */
/* 2348  */     }
/* 2349  */
/* 2350  */

/* style.css */

/* 2351  */
/* 2352  */ #tmpbl1:hover a.info-like, #tmpbl3:hover a.info-like, #tmpbl1:hover a.info-liked, #tmpbl3:hover a.info-liked { color: #000 !important }
/* 2353  */
/* 2354  */
/* 2355  */
/* 2356  */ a.info-likeC, a.info-likeC.like:hover, a.info-likedC.unlike, a.info-likedC:hover {
/* 2357  */
/* 2358  */     background-image: url("images/like.png");
/* 2359  */
/* 2360  */     color: #fff;
/* 2361  */
/* 2362  */     }
/* 2363  */
/* 2364  */
/* 2365  */
/* 2366  */ a.info-likedC, a.info-likedC.unlike:hover, a.info-likeC.like, a.info-likedC.unlike:hover, a.info-likeC:hover {
/* 2367  */
/* 2368  */     background-image: url("images/likeC.png");
/* 2369  */
/* 2370  */     color: #fff;
/* 2371  */
/* 2372  */     }
/* 2373  */
/* 2374  */
/* 2375  */
/* 2376  */ a.info-likeCB, a.info-likeCB.like:hover, a.info-likedCB.unlike, a.info-likedCB:hover {
/* 2377  */
/* 2378  */     background-image: url("images/likeB.png");
/* 2379  */
/* 2380  */     color: #fff;
/* 2381  */
/* 2382  */     }
/* 2383  */
/* 2384  */
/* 2385  */
/* 2386  */ a.info-likeS, a.info-likeS.like:hover, a.info-likedS.unlike, a.info-likedS:hover {
/* 2387  */
/* 2388  */     background-image: url("images/likeBT.png");
/* 2389  */
/* 2390  */     color: #000;
/* 2391  */
/* 2392  */     }
/* 2393  */
/* 2394  */
/* 2395  */
/* 2396  */ a.info-likedCB, a.info-likedCB.unlike:hover, a.info-likeCB.like, a.info-likedCB.unlike:hover, a.info-likeCB:hover {
/* 2397  */
/* 2398  */     background-image: url("images/likeCB.png");
/* 2399  */
/* 2400  */     color: #fff;

/* style.css */

/* 2401  */
/* 2402  */     }
/* 2403  */
/* 2404  */
/* 2405  */
/* 2406  */ a.info-likedS, a.info-likedS.unlike:hover, a.info-likeS.like, a.info-likedS.unlike:hover, a.info-likeS:hover {
/* 2407  */
/* 2408  */     background-image: url("images/likeCB2.png");
/* 2409  */
/* 2410  */     color: #000;
/* 2411  */
/* 2412  */     }
/* 2413  */
/* 2414  */
/* 2415  */
/* 2416  */ /* -------------------------------wizedesign--
/* 2417  *|
/* 2418  *|      11. SINGLE PAGE
/* 2419  *|
/* 2420  *|    ------------------------------------------- */
/* 2421  */
/* 2422  */
/* 2423  */
/* 2424  */ /* ==== great cover ==== */
/* 2425  */
/* 2426  */
/* 2427  */
/* 2428  */ #snggreat {
/* 2429  */
/* 2430  */     width: 1240px;
/* 2431  */
/* 2432  */     height: 460px;
/* 2433  */
/* 2434  */ 	margin-bottom:40px;
/* 2435  */
/* 2436  */ 	margin-top:-40px;
/* 2437  */
/* 2438  */ 	margin-left:-40px;
/* 2439  */
/* 2440  */     }
/* 2441  */
/* 2442  */
/* 2443  */
/* 2444  */ .snggreat-cover { position: relative }
/* 2445  */
/* 2446  */
/* 2447  */
/* 2448  */ .snggreat-cover img {
/* 2449  */
/* 2450  */     width: 1240px;

/* style.css */

/* 2451  */
/* 2452  */     height: 460px;
/* 2453  */
/* 2454  */     }
/* 2455  */
/* 2456  */
/* 2457  */
/* 2458  */ .snggreat-cover h1 {
/* 2459  */
/* 2460  */     font-weight: 900;
/* 2461  */
/* 2462  */     line-height: 1.2em;
/* 2463  */
/* 2464  */     text-transform: uppercase;
/* 2465  */
/* 2466  */     left: 40px;
/* 2467  */
/* 2468  */     color: #fff;
/* 2469  */
/* 2470  */     width: 1100px;
/* 2471  */
/* 2472  */     bottom: 83px;
/* 2473  */
/* 2474  */     position: absolute;
/* 2475  */
/* 2476  */     font-size: 56px;
/* 2477  */
/* 2478  */     margin: 0;
/* 2479  */
/* 2480  */     }
/* 2481  */
/* 2482  */
/* 2483  */
/* 2484  */ .snggreat-bg {
/* 2485  */
/* 2486  */     background: url("images/bg4.png");
/* 2487  */
/* 2488  */     left: 0px;
/* 2489  */
/* 2490  */     width: 100%;
/* 2491  */
/* 2492  */     bottom: 7px;
/* 2493  */
/* 2494  */     height: 460px;
/* 2495  */
/* 2496  */     position: absolute;
/* 2497  */
/* 2498  */     }
/* 2499  */
/* 2500  */

/* style.css */

/* 2501  */
/* 2502  */ .snggreat-cat {
/* 2503  */
/* 2504  */     font-weight: 900;
/* 2505  */
/* 2506  */     line-height: 18px;
/* 2507  */
/* 2508  */     letter-spacing: 2px;
/* 2509  */
/* 2510  */     text-transform: uppercase;
/* 2511  */
/* 2512  */     top: 0px;
/* 2513  */
/* 2514  */     left: 40px;
/* 2515  */
/* 2516  */     color: #fff;
/* 2517  */
/* 2518  */     height: 18px;
/* 2519  */
/* 2520  */     padding: 4px 11px;
/* 2521  */
/* 2522  */     position: absolute;
/* 2523  */
/* 2524  */     font-size: 11px;
/* 2525  */
/* 2526  */     }
/* 2527  */
/* 2528  */
/* 2529  */
/* 2530  */ .snggreat-like {
/* 2531  */
/* 2532  */     top: 36px;
/* 2533  */
/* 2534  */     right: 40px;
/* 2535  */
/* 2536  */     position: absolute;
/* 2537  */
/* 2538  */ 	font-family: "Montserrat";
/* 2539  */
/* 2540  */     }
/* 2541  */
/* 2542  */
/* 2543  */
/* 2544  */ .snggreat-info {
/* 2545  */
/* 2546  */     left: 40px;
/* 2547  */
/* 2548  */     bottom: 40px;
/* 2549  */
/* 2550  */     position: absolute;

/* style.css */

/* 2551  */
/* 2552  */ 	width:1160px;
/* 2553  */
/* 2554  */     }
/* 2555  */
/* 2556  */
/* 2557  */
/* 2558  */ .snggreat-date {
/* 2559  */
/* 2560  */     line-height: 16px;
/* 2561  */
/* 2562  */     padding-left: 24px;
/* 2563  */
/* 2564  */     text-transform: uppercase;
/* 2565  */
/* 2566  */     background-image: url("images/write.png");
/* 2567  */
/* 2568  */     background-repeat: no-repeat;
/* 2569  */
/* 2570  */     background-position: 0px 0px;
/* 2571  */
/* 2572  */     color: #fff;
/* 2573  */
/* 2574  */     hieght: 16px;
/* 2575  */
/* 2576  */     display: inline-block;
/* 2577  */
/* 2578  */     font-size: 12px;
/* 2579  */
/* 2580  */ 	font-family: "Montserrat";
/* 2581  */
/* 2582  */     }
/* 2583  */
/* 2584  */
/* 2585  */
/* 2586  */ .snggreat-view {
/* 2587  */
/* 2588  */     line-height: 16px;
/* 2589  */
/* 2590  */     margin-left: 20px;
/* 2591  */
/* 2592  */     padding-left: 30px;
/* 2593  */
/* 2594  */     text-transform: uppercase;
/* 2595  */
/* 2596  */     background-image: url("images/view.png");
/* 2597  */
/* 2598  */     background-repeat: no-repeat;
/* 2599  */
/* 2600  */     background-position: 0px 0px;

/* style.css */

/* 2601  */
/* 2602  */     color: #fff;
/* 2603  */
/* 2604  */     hieght: 16px;
/* 2605  */
/* 2606  */     display: inline-block;
/* 2607  */
/* 2608  */     font-size: 12px;
/* 2609  */
/* 2610  */ 	font-family: "Montserrat";
/* 2611  */
/* 2612  */     }
/* 2613  */
/* 2614  */
/* 2615  */
/* 2616  */ .snggreat-com {
/* 2617  */
/* 2618  */     line-height: 16px;
/* 2619  */
/* 2620  */     margin-left: 20px;
/* 2621  */
/* 2622  */     padding-left: 25px;
/* 2623  */
/* 2624  */     text-transform: uppercase;
/* 2625  */
/* 2626  */     background-image: url("images/com.png");
/* 2627  */
/* 2628  */     background-repeat: no-repeat;
/* 2629  */
/* 2630  */     background-position: 0px 0px;
/* 2631  */
/* 2632  */     color: #fff;
/* 2633  */
/* 2634  */     hieght: 16px;
/* 2635  */
/* 2636  */     display: inline-block;
/* 2637  */
/* 2638  */     font-size: 12px;
/* 2639  */
/* 2640  */ 	font-family: "Montserrat";
/* 2641  */
/* 2642  */     }
/* 2643  */
/* 2644  */
/* 2645  */
/* 2646  */ .snggreat-time {
/* 2647  */
/* 2648  */     line-height: 16px;
/* 2649  */
/* 2650  */     margin-left: 20px;

/* style.css */

/* 2651  */
/* 2652  */     padding-left: 25px;
/* 2653  */
/* 2654  */     text-transform: uppercase;
/* 2655  */
/* 2656  */     background-image: url("images/time.png");
/* 2657  */
/* 2658  */     background-repeat: no-repeat;
/* 2659  */
/* 2660  */     background-position: 0px -1px;
/* 2661  */
/* 2662  */     color: #fff;
/* 2663  */
/* 2664  */     hieght: 16px;
/* 2665  */
/* 2666  */     display: inline-block;
/* 2667  */
/* 2668  */     font-size: 12px;
/* 2669  */
/* 2670  */ 	font-family: "Montserrat";
/* 2671  */
/* 2672  */     }
/* 2673  */
/* 2674  */
/* 2675  */
/* 2676  */ /* ==== article ==== */
/* 2677  */
/* 2678  */
/* 2679  */
/* 2680  */ .sng-art {
/* 2681  */
/* 2682  */     background: #fff;
/* 2683  */
/* 2684  */     margin-bottom: 40px;
/* 2685  */
/* 2686  */     width: 760px;
/* 2687  */
/* 2688  */     }
/* 2689  */
/* 2690  */
/* 2691  */
/* 2692  */ .sng-art img {
/* 2693  */
/* 2694  */ 	height: auto;
/* 2695  */
/* 2696  */ 	max-width: 100%
/* 2697  */
/* 2698  */ 	}
/* 2699  */
/* 2700  */

/* style.css */

/* 2701  */
/* 2702  */ .sng-art h1 {
/* 2703  */
/* 2704  */     line-height: 1.25em;
/* 2705  */
/* 2706  */     font-weight: 900;
/* 2707  */
/* 2708  */     margin-bottom: 21px;
/* 2709  */
/* 2710  */     font-size: 46px;
/* 2711  */
/* 2712  */     }
/* 2713  */
/* 2714  */
/* 2715  */
/* 2716  */ .sng-cl {
/* 2717  */
/* 2718  */     margin-bottom: 28px;
/* 2719  */
/* 2720  */     width: 760px;
/* 2721  */
/* 2722  */     height: 25px;
/* 2723  */
/* 2724  */     }
/* 2725  */
/* 2726  */
/* 2727  */
/* 2728  */ .sng-cat {
/* 2729  */
/* 2730  */     font-weight: 900;
/* 2731  */
/* 2732  */     line-height: 18px;
/* 2733  */
/* 2734  */     letter-spacing: 2px;
/* 2735  */
/* 2736  */     text-transform: uppercase;
/* 2737  */
/* 2738  */     color: #fff;
/* 2739  */
/* 2740  */     height: 18px;
/* 2741  */
/* 2742  */     padding: 4px 11px;
/* 2743  */
/* 2744  */     font-size: 11px;
/* 2745  */
/* 2746  */ 	float:left;
/* 2747  */
/* 2748  */     }
/* 2749  */
/* 2750  */

/* style.css */

/* 2751  */
/* 2752  */ .sng-cover {
/* 2753  */
/* 2754  */     margin-bottom: 37px;
/* 2755  */
/* 2756  */     width: 760px;
/* 2757  */
/* 2758  */     height: 422px;
/* 2759  */
/* 2760  */     overflow: hidden;
/* 2761  */
/* 2762  */     }
/* 2763  */
/* 2764  */
/* 2765  */
/* 2766  */ .sng-cover img {
/* 2767  */
/* 2768  */     width: 760px;
/* 2769  */
/* 2770  */     height: 422px;
/* 2771  */
/* 2772  */     }
/* 2773  */
/* 2774  */
/* 2775  */
/* 2776  */ .sng-dvct {
/* 2777  */
/* 2778  */     margin-bottom: 32px;
/* 2779  */
/* 2780  */     width: 790px;
/* 2781  */
/* 2782  */     height: 25px;
/* 2783  */
/* 2784  */     }
/* 2785  */
/* 2786  */
/* 2787  */
/* 2788  */ .sng-date {
/* 2789  */
/* 2790  */     line-height: 16px;
/* 2791  */
/* 2792  */     padding-left: 24px;
/* 2793  */
/* 2794  */     text-transform: uppercase;
/* 2795  */
/* 2796  */     background-image: url("images/writeT.png");
/* 2797  */
/* 2798  */     background-repeat: no-repeat;
/* 2799  */
/* 2800  */     background-position: 0px 0px;

/* style.css */

/* 2801  */
/* 2802  */     color: #c5c5c5;
/* 2803  */
/* 2804  */     hieght: 16px;
/* 2805  */
/* 2806  */     display: inline-block;
/* 2807  */
/* 2808  */     font-size: 12px;
/* 2809  */
/* 2810  */ 	font-family: "Montserrat";
/* 2811  */
/* 2812  */     }
/* 2813  */
/* 2814  */
/* 2815  */
/* 2816  */ .sng-view {
/* 2817  */
/* 2818  */     line-height: 16px;
/* 2819  */
/* 2820  */     margin-left: 20px;
/* 2821  */
/* 2822  */     padding-left: 30px;
/* 2823  */
/* 2824  */     text-transform: uppercase;
/* 2825  */
/* 2826  */     background-image: url("images/viewT.png");
/* 2827  */
/* 2828  */     background-repeat: no-repeat;
/* 2829  */
/* 2830  */     background-position: 0px 0px;
/* 2831  */
/* 2832  */     color: #c5c5c5;
/* 2833  */
/* 2834  */     hieght: 16px;
/* 2835  */
/* 2836  */     display: inline-block;
/* 2837  */
/* 2838  */     font-size: 12px;
/* 2839  */
/* 2840  */ 	font-family: "Montserrat";
/* 2841  */
/* 2842  */     }
/* 2843  */
/* 2844  */
/* 2845  */
/* 2846  */ .sng-com {
/* 2847  */
/* 2848  */     line-height: 16px;
/* 2849  */
/* 2850  */     margin-left: 20px;

/* style.css */

/* 2851  */
/* 2852  */     padding-left: 24px;
/* 2853  */
/* 2854  */     text-transform: uppercase;
/* 2855  */
/* 2856  */     background-image: url("images/comT.png");
/* 2857  */
/* 2858  */     background-repeat: no-repeat;
/* 2859  */
/* 2860  */     background-position: 0px 0px;
/* 2861  */
/* 2862  */     color: #c5c5c5;
/* 2863  */
/* 2864  */     hieght: 16px;
/* 2865  */
/* 2866  */     display: inline-block;
/* 2867  */
/* 2868  */     font-size: 12px;
/* 2869  */
/* 2870  */ 	font-family: "Montserrat";
/* 2871  */
/* 2872  */     }
/* 2873  */
/* 2874  */
/* 2875  */
/* 2876  */ .sng-time {
/* 2877  */
/* 2878  */     line-height: 16px;
/* 2879  */
/* 2880  */     margin-left: 20px;
/* 2881  */
/* 2882  */     padding-left: 24px;
/* 2883  */
/* 2884  */     text-transform: uppercase;
/* 2885  */
/* 2886  */     background-image: url("images/timeT.png");
/* 2887  */
/* 2888  */     background-repeat: no-repeat;
/* 2889  */
/* 2890  */     background-position: 0px -1px;
/* 2891  */
/* 2892  */     color: #c5c5c5;
/* 2893  */
/* 2894  */     hieght: 16px;
/* 2895  */
/* 2896  */     display: inline-block;
/* 2897  */
/* 2898  */     font-size: 12px;
/* 2899  */
/* 2900  */ 	font-family: "Montserrat";

/* style.css */

/* 2901  */
/* 2902  */     }
/* 2903  */
/* 2904  */
/* 2905  */
/* 2906  */ .sng-bottom {
/* 2907  */
/* 2908  */     margin-bottom: 16px;
/* 2909  */
/* 2910  */     width: 760px;
/* 2911  */
/* 2912  */ 	height:10px;
/* 2913  */
/* 2914  */     }
/* 2915  */
/* 2916  */
/* 2917  */
/* 2918  */ .sng-ts { margin-bottom:40px; }
/* 2919  */
/* 2920  */
/* 2921  */
/* 2922  */ .sng-fix {
/* 2923  */
/* 2924  */     width: 700px;
/* 2925  */
/* 2926  */     height: 10px;
/* 2927  */
/* 2928  */     float: left;
/* 2929  */
/* 2930  */     margin-bottom: 25px;
/* 2931  */
/* 2932  */     }
/* 2933  */
/* 2934  */
/* 2935  */
/* 2936  */ /* ==== gallery ==== */
/* 2937  */
/* 2938  */
/* 2939  */
/* 2940  */ #sng-gallery {
/* 2941  */
/* 2942  */     margin-bottom: 39px;
/* 2943  */
/* 2944  */     width: 760px;
/* 2945  */
/* 2946  */     height: 526px;
/* 2947  */
/* 2948  */     }
/* 2949  */
/* 2950  */

/* style.css */

/* 2951  */
/* 2952  */ .sng-video {
/* 2953  */
/* 2954  */     margin-bottom: 40px;
/* 2955  */
/* 2956  */ 	height:400px;
/* 2957  */
/* 2958  */ 	width:760px;
/* 2959  */
/* 2960  */     }
/* 2961  */
/* 2962  */
/* 2963  */
/* 2964  */
/* 2965  */
/* 2966  */
/* 2967  */
/* 2968  */ /* ==== tag ==== */
/* 2969  */
/* 2970  */
/* 2971  */
/* 2972  */ .sng-tag {
/* 2973  */
/* 2974  */     padding-left: 29px;
/* 2975  */
/* 2976  */     margin-bottom: -5px;
/* 2977  */
/* 2978  */     background-image: url("images/tag.png");
/* 2979  */
/* 2980  */     background-repeat: no-repeat;
/* 2981  */
/* 2982  */     background-position: 0px 4px;
/* 2983  */
/* 2984  */     width: 500px;
/* 2985  */
/* 2986  */     float: left;
/* 2987  */
/* 2988  */     }
/* 2989  */
/* 2990  */
/* 2991  */
/* 2992  */ .sng-tag a {
/* 2993  */
/* 2994  */     margin-top: -3px;
/* 2995  */
/* 2996  */     background: #000;
/* 2997  */
/* 2998  */     font-weight: 600;
/* 2999  */
/* 3000  */     line-height: 18px;

/* style.css */

/* 3001  */
/* 3002  */     margin-right: 0px;
/* 3003  */
/* 3004  */     margin-bottom: 3px;
/* 3005  */
/* 3006  */     border-radius: 1.5px;
/* 3007  */
/* 3008  */     color: #fff;
/* 3009  */
/* 3010  */     height: 18px;
/* 3011  */
/* 3012  */     display: inline-block;
/* 3013  */
/* 3014  */     padding: 3px 8px;
/* 3015  */
/* 3016  */     font-size: 12px;
/* 3017  */
/* 3018  */     }
/* 3019  */
/* 3020  */
/* 3021  */
/* 3022  */ .sng-tag a:hover { color: #fff }
/* 3023  */
/* 3024  */
/* 3025  */
/* 3026  */ /* ==== social ==== */
/* 3027  */
/* 3028  */
/* 3029  */
/* 3030  */ .sng-social {
/* 3031  */
/* 3032  */     margin-top: 1px;
/* 3033  */
/* 3034  */     padding-left: 29px;
/* 3035  */
/* 3036  */     background-image: url("images/social.png");
/* 3037  */
/* 3038  */     background-repeat: no-repeat;
/* 3039  */
/* 3040  */     background-position: 0px 3px;
/* 3041  */
/* 3042  */     float: right;
/* 3043  */
/* 3044  */     }
/* 3045  */
/* 3046  */
/* 3047  */
/* 3048  */ .sng-facebook {
/* 3049  */
/* 3050  */     background: url("images/social/share/facebook.png");

/* style.css */

/* 3051  */
/* 3052  */     margin-right: 3px;
/* 3053  */
/* 3054  */     width: 24px;
/* 3055  */
/* 3056  */     float: left;
/* 3057  */
/* 3058  */     height: 24px;
/* 3059  */
/* 3060  */     }
/* 3061  */
/* 3062  */
/* 3063  */
/* 3064  */ .sng-twitter {
/* 3065  */
/* 3066  */     background: url("images/social/share/twitter.png");
/* 3067  */
/* 3068  */     margin-right: 3px;
/* 3069  */
/* 3070  */     width: 24px;
/* 3071  */
/* 3072  */     float: left;
/* 3073  */
/* 3074  */     height: 24px;
/* 3075  */
/* 3076  */     }
/* 3077  */
/* 3078  */
/* 3079  */
/* 3080  */ .sng-google {
/* 3081  */
/* 3082  */     background: url("images/social/share/google.png");
/* 3083  */
/* 3084  */     margin-right: 3px;
/* 3085  */
/* 3086  */     width: 24px;
/* 3087  */
/* 3088  */     float: left;
/* 3089  */
/* 3090  */     height: 24px;
/* 3091  */
/* 3092  */     }
/* 3093  */
/* 3094  */
/* 3095  */
/* 3096  */ .sng-linkedin {
/* 3097  */
/* 3098  */     background: url("images/social/share/linkedin.png");
/* 3099  */
/* 3100  */     width: 24px;

/* style.css */

/* 3101  */
/* 3102  */     float: left;
/* 3103  */
/* 3104  */     height: 24px;
/* 3105  */
/* 3106  */     }
/* 3107  */
/* 3108  */
/* 3109  */
/* 3110  */ .sng-facebook:hover, .sng-twitter:hover, .sng-google:hover, .sng-linkedin:hover { opacity:0.7 }
/* 3111  */
/* 3112  */
/* 3113  */
/* 3114  */ /* ==== prev&next ==== */
/* 3115  */
/* 3116  */
/* 3117  */
/* 3118  */ .sng-links {
/* 3119  */
/* 3120  */ 	margin-top:-6px;
/* 3121  */
/* 3122  */     margin-bottom: 40px;
/* 3123  */
/* 3124  */     text-transform: uppercase;
/* 3125  */
/* 3126  */     width: 760px;
/* 3127  */
/* 3128  */     float: left;
/* 3129  */
/* 3130  */     }
/* 3131  */
/* 3132  */
/* 3133  */
/* 3134  */ .sng-links-prev {
/* 3135  */
/* 3136  */     text-align: left;
/* 3137  */
/* 3138  */     margin-right: 40px;
/* 3139  */
/* 3140  */     letter-spacing: 1.5px;
/* 3141  */
/* 3142  */     width: 360px;
/* 3143  */
/* 3144  */     float: left;
/* 3145  */
/* 3146  */     color: #c5c5c5;
/* 3147  */
/* 3148  */     font-size: 14px;
/* 3149  */
/* 3150  */     }

/* style.css */

/* 3151  */
/* 3152  */
/* 3153  */
/* 3154  */ .sng-links-prev span a, .sng-links-next span a {
/* 3155  */
/* 3156  */     background: #f5f5f5;
/* 3157  */
/* 3158  */     line-height: 1.3em;
/* 3159  */
/* 3160  */     font-weight: 900;
/* 3161  */
/* 3162  */     border-radius: 1.5px;
/* 3163  */
/* 3164  */     letter-spacing: normal;
/* 3165  */
/* 3166  */     color: #000;
/* 3167  */
/* 3168  */     float: left;
/* 3169  */
/* 3170  */     width: 320px;
/* 3171  */
/* 3172  */     padding: 20px;
/* 3173  */
/* 3174  */     font-size: 20px;
/* 3175  */
/* 3176  */ 	margin-top:3px;
/* 3177  */
/* 3178  */     }
/* 3179  */
/* 3180  */
/* 3181  */
/* 3182  */ .sng-links-prev span a:hover, .sng-links-next span a:hover { background: #eee }
/* 3183  */
/* 3184  */
/* 3185  */
/* 3186  */ .sng-links-next {
/* 3187  */
/* 3188  */     text-align: right;
/* 3189  */
/* 3190  */     letter-spacing: 1.5px;
/* 3191  */
/* 3192  */     width: 360px;
/* 3193  */
/* 3194  */     float: left;
/* 3195  */
/* 3196  */     color: #c5c5c5;
/* 3197  */
/* 3198  */     font-size: 14px;
/* 3199  */
/* 3200  */     }

/* style.css */

/* 3201  */
/* 3202  */
/* 3203  */
/* 3204  */ /* ==== author ==== */
/* 3205  */
/* 3206  */
/* 3207  */
/* 3208  */ .sng-aut {
/* 3209  */
/* 3210  */     margin-bottom: 40px;
/* 3211  */
/* 3212  */     width: 760px;
/* 3213  */
/* 3214  */     color: #fff;
/* 3215  */
/* 3216  */ 	float:left;
/* 3217  */
/* 3218  */     height: 130px;
/* 3219  */
/* 3220  */ 	border-top:3px solid #000;
/* 3221  */
/* 3222  */ 	border-bottom:3px solid #f1f1f1;
/* 3223  */
/* 3224  */ 	padding:20px 0;
/* 3225  */
/* 3226  */     }
/* 3227  */
/* 3228  */
/* 3229  */
/* 3230  */ .sng-autR {
/* 3231  */
/* 3232  */     margin-bottom: 0px;
/* 3233  */
/* 3234  */     width: 760px;
/* 3235  */
/* 3236  */     color: #fff;
/* 3237  */
/* 3238  */ 	float:left;
/* 3239  */
/* 3240  */     height: 130px;
/* 3241  */
/* 3242  */ 	border-top:3px solid #000;
/* 3243  */
/* 3244  */ 	border-bottom:3px solid #f1f1f1;
/* 3245  */
/* 3246  */ 	padding:20px 0;
/* 3247  */
/* 3248  */     }
/* 3249  */
/* 3250  */

/* style.css */

/* 3251  */
/* 3252  */ .sng-aut .wp-user-avatar, .sng-autR .wp-user-avatar  {
/* 3253  */
/* 3254  */     margin-top: 0px;
/* 3255  */
/* 3256  */     margin-right: 0px;
/* 3257  */
/* 3258  */     border-radius: 50%;
/* 3259  */
/* 3260  */     float: left;
/* 3261  */
/* 3262  */     }
/* 3263  */
/* 3264  */
/* 3265  */
/* 3266  */ .sng-aut-avatar {
/* 3267  */
/* 3268  */     margin-right: 30px;
/* 3269  */
/* 3270  */     float: left;
/* 3271  */
/* 3272  */     }
/* 3273  */
/* 3274  */
/* 3275  */
/* 3276  */ .sng-aut-avatar img {
/* 3277  */
/* 3278  */     width: 130px;
/* 3279  */
/* 3280  */     height: 130px;
/* 3281  */
/* 3282  */     overflow: hidden;
/* 3283  */
/* 3284  */     }
/* 3285  */
/* 3286  */
/* 3287  */
/* 3288  */ .sng-aut-description {
/* 3289  */
/* 3290  */     margin-top: 1px;
/* 3291  */
/* 3292  */     width: 600px;
/* 3293  */
/* 3294  */     float: left;
/* 3295  */
/* 3296  */     display: block;
/* 3297  */
/* 3298  */     }
/* 3299  */
/* 3300  */

/* style.css */

/* 3301  */
/* 3302  */ .sng-aut-description p {
/* 3303  */
/* 3304  */     margin-top: 11px;
/* 3305  */
/* 3306  */     font-weight: 400;
/* 3307  */
/* 3308  */     line-height: 1.5em;
/* 3309  */
/* 3310  */     margin-bottom: 12px;
/* 3311  */
/* 3312  */     color: #666;
/* 3313  */
/* 3314  */     font-size: 13px;
/* 3315  */
/* 3316  */     }
/* 3317  */
/* 3318  */
/* 3319  */
/* 3320  */ .sng-aut:hover .sng-aut-description p { color:#000 }
/* 3321  */
/* 3322  */
/* 3323  */
/* 3324  */ a.sng-aut-user {
/* 3325  */
/* 3326  */     font-weight: 800;
/* 3327  */
/* 3328  */     color: #000;
/* 3329  */
/* 3330  */     font-size: 20px;
/* 3331  */
/* 3332  */     }
/* 3333  */
/* 3334  */
/* 3335  */
/* 3336  */ a.sng-aut-url {
/* 3337  */
/* 3338  */     background: #000;
/* 3339  */
/* 3340  */     color: #fff;
/* 3341  */
/* 3342  */     margin-top: 3px;
/* 3343  */
/* 3344  */     font-weight: 400;
/* 3345  */
/* 3346  */     line-height: 14px;
/* 3347  */
/* 3348  */     letter-spacing: 0.5px;
/* 3349  */
/* 3350  */     float: right;

/* style.css */

/* 3351  */
/* 3352  */     color:#fff;
/* 3353  */
/* 3354  */     height: 14px;
/* 3355  */
/* 3356  */     padding: 2px 8px;
/* 3357  */
/* 3358  */     font-size: 10px;
/* 3359  */
/* 3360  */ 	border-radius:1.5px;
/* 3361  */
/* 3362  */     }
/* 3363  */
/* 3364  */
/* 3365  */
/* 3366  */ .sng-aut-post {
/* 3367  */
/* 3368  */     padding-left: 22px;
/* 3369  */
/* 3370  */     margin-right: 25px;
/* 3371  */
/* 3372  */     text-transform: uppercase;
/* 3373  */
/* 3374  */     background-image: url("images/posts.png");
/* 3375  */
/* 3376  */     background-repeat: no-repeat;
/* 3377  */
/* 3378  */     background-position: 0px 4px;
/* 3379  */
/* 3380  */     color: #000;
/* 3381  */
/* 3382  */     float: left;
/* 3383  */
/* 3384  */     font-size: 13px;
/* 3385  */
/* 3386  */ 	font-family: "Montserrat";
/* 3387  */
/* 3388  */     }
/* 3389  */
/* 3390  */
/* 3391  */
/* 3392  */ .sng-aut-com {
/* 3393  */
/* 3394  */     padding-left: 24px;
/* 3395  */
/* 3396  */     text-transform: uppercase;
/* 3397  */
/* 3398  */     background-image: url("images/comT2.png");
/* 3399  */
/* 3400  */     background-repeat: no-repeat;

/* style.css */

/* 3401  */
/* 3402  */     background-position: 0px 4px;
/* 3403  */
/* 3404  */     color: #000;
/* 3405  */
/* 3406  */     float: left;
/* 3407  */
/* 3408  */     font-size: 13px;
/* 3409  */
/* 3410  */ 	font-family: "Montserrat";
/* 3411  */
/* 3412  */     }
/* 3413  */
/* 3414  */
/* 3415  */
/* 3416  */ /* ==== review great cover ==== */
/* 3417  */
/* 3418  */
/* 3419  */
/* 3420  */ #rwgreat {
/* 3421  */
/* 3422  */     width: 760px;
/* 3423  */
/* 3424  */     height: 422px;
/* 3425  */
/* 3426  */     }
/* 3427  */
/* 3428  */
/* 3429  */
/* 3430  */ .rwgreat-cover { position: relative }
/* 3431  */
/* 3432  */
/* 3433  */
/* 3434  */ .rwgreat-cover img {
/* 3435  */
/* 3436  */     width: 760px;
/* 3437  */
/* 3438  */     height: 422px;
/* 3439  */
/* 3440  */     }
/* 3441  */
/* 3442  */
/* 3443  */
/* 3444  */ .rwgreat-cover h1 {
/* 3445  */
/* 3446  */     font-weight: 900;
/* 3447  */
/* 3448  */     line-height: 1.2em;
/* 3449  */
/* 3450  */     text-transform: uppercase;

/* style.css */

/* 3451  */
/* 3452  */     left: 40px;
/* 3453  */
/* 3454  */     color: #fff;
/* 3455  */
/* 3456  */     width: 680px;
/* 3457  */
/* 3458  */     bottom: 70px;
/* 3459  */
/* 3460  */     position: absolute;
/* 3461  */
/* 3462  */     font-size: 44px;
/* 3463  */
/* 3464  */     }
/* 3465  */
/* 3466  */
/* 3467  */
/* 3468  */ .rwgreat-bg {
/* 3469  */
/* 3470  */     background: url("images/bg5.png");
/* 3471  */
/* 3472  */     left: 0px;
/* 3473  */
/* 3474  */     width: 100%;
/* 3475  */
/* 3476  */     bottom: 7px;
/* 3477  */
/* 3478  */     height: 422px;
/* 3479  */
/* 3480  */     position: absolute;
/* 3481  */
/* 3482  */     }
/* 3483  */
/* 3484  */
/* 3485  */
/* 3486  */ .rwgreat-cat {
/* 3487  */
/* 3488  */     font-weight: 600;
/* 3489  */
/* 3490  */     line-height: 15px;
/* 3491  */
/* 3492  */     letter-spacing: 1.5px;
/* 3493  */
/* 3494  */     text-transform: uppercase;
/* 3495  */
/* 3496  */     top: 4px;
/* 3497  */
/* 3498  */     left: 4px;
/* 3499  */
/* 3500  */     color: #fff;

/* style.css */

/* 3501  */
/* 3502  */     height: 15px;
/* 3503  */
/* 3504  */     padding: 3px 9px;
/* 3505  */
/* 3506  */     position: absolute;
/* 3507  */
/* 3508  */     font-size: 10px;
/* 3509  */
/* 3510  */     }
/* 3511  */
/* 3512  */
/* 3513  */
/* 3514  */ .rwgreat-like {
/* 3515  */
/* 3516  */     bottom: 43px;
/* 3517  */
/* 3518  */     right: 40px;
/* 3519  */
/* 3520  */     position: absolute;
/* 3521  */
/* 3522  */     }
/* 3523  */
/* 3524  */
/* 3525  */
/* 3526  */ .rwgreat-info {
/* 3527  */
/* 3528  */     left: 40px;
/* 3529  */
/* 3530  */     bottom: 40px;
/* 3531  */
/* 3532  */     position: absolute;
/* 3533  */
/* 3534  */     }
/* 3535  */
/* 3536  */
/* 3537  */
/* 3538  */ .rwgreat-date {
/* 3539  */
/* 3540  */     line-height: 16px;
/* 3541  */
/* 3542  */     padding-left: 24px;
/* 3543  */
/* 3544  */     text-transform: uppercase;
/* 3545  */
/* 3546  */     background-image: url("images/write.png");
/* 3547  */
/* 3548  */     background-repeat: no-repeat;
/* 3549  */
/* 3550  */     background-position: 0px 0px;

/* style.css */

/* 3551  */
/* 3552  */     color: #fff;
/* 3553  */
/* 3554  */     hieght: 16px;
/* 3555  */
/* 3556  */     display: inline-block;
/* 3557  */
/* 3558  */     font-size: 12px;
/* 3559  */
/* 3560  */ 	font-family: "Montserrat"
/* 3561  */
/* 3562  */     }
/* 3563  */
/* 3564  */
/* 3565  */
/* 3566  */ .rwgreat-view {
/* 3567  */
/* 3568  */     line-height: 16px;
/* 3569  */
/* 3570  */     margin-left: 20px;
/* 3571  */
/* 3572  */     padding-left: 30px;
/* 3573  */
/* 3574  */     text-transform: uppercase;
/* 3575  */
/* 3576  */     background-image: url("images/view.png");
/* 3577  */
/* 3578  */     background-repeat: no-repeat;
/* 3579  */
/* 3580  */     background-position: 0px 0px;
/* 3581  */
/* 3582  */     color: #fff;
/* 3583  */
/* 3584  */     hieght: 16px;
/* 3585  */
/* 3586  */     display: inline-block;
/* 3587  */
/* 3588  */     font-size: 12px;
/* 3589  */
/* 3590  */ 	font-family: "Montserrat"
/* 3591  */
/* 3592  */     }
/* 3593  */
/* 3594  */
/* 3595  */
/* 3596  */ .rwgreat-social {
/* 3597  */
/* 3598  */ 	right:40px;
/* 3599  */
/* 3600  */     top: 40px;

/* style.css */

/* 3601  */
/* 3602  */ 	position: absolute;
/* 3603  */
/* 3604  */     }
/* 3605  */
/* 3606  */
/* 3607  */
/* 3608  */ /* ==== review ==== */
/* 3609  */
/* 3610  */
/* 3611  */
/* 3612  */ #sngrw {
/* 3613  */
/* 3614  */     background: #000;
/* 3615  */
/* 3616  */     margin-bottom: 37px;
/* 3617  */
/* 3618  */     float: left;
/* 3619  */
/* 3620  */     width: 680px;
/* 3621  */
/* 3622  */     color: #fff;
/* 3623  */
/* 3624  */     padding: 40px 40px 36px 40px;
/* 3625  */
/* 3626  */     position: relative;
/* 3627  */
/* 3628  */     }
/* 3629  */
/* 3630  */
/* 3631  */
/* 3632  */ .sngrw-comment {
/* 3633  */
/* 3634  */     margin-top: 20px;
/* 3635  */
/* 3636  */     line-height: 1.5em;
/* 3637  */
/* 3638  */     color: #bbb;
/* 3639  */
/* 3640  */     float: left;
/* 3641  */
/* 3642  */     font-size: 14px;
/* 3643  */
/* 3644  */     }
/* 3645  */
/* 3646  */
/* 3647  */
/* 3648  */ .sngrw-note {
/* 3649  */
/* 3650  */     text-align: center;

/* style.css */

/* 3651  */
/* 3652  */     line-height: 120px;
/* 3653  */
/* 3654  */     font-weight: 900;
/* 3655  */
/* 3656  */     top: 21px;
/* 3657  */
/* 3658  */     width: 170px;
/* 3659  */
/* 3660  */     right: 40px;
/* 3661  */
/* 3662  */     height: 120px;
/* 3663  */
/* 3664  */     position: absolute;
/* 3665  */
/* 3666  */     font-size: 100px;
/* 3667  */
/* 3668  */ 	font-family: "Montserrat";
/* 3669  */
/* 3670  */     }
/* 3671  */
/* 3672  */
/* 3673  */
/* 3674  */ .sngrw-qualifying {
/* 3675  */
/* 3676  */     font-weight: 800;
/* 3677  */
/* 3678  */     text-transform: uppercase;
/* 3679  */
/* 3680  */     top: 70px;
/* 3681  */
/* 3682  */     font-size: 18px;
/* 3683  */
/* 3684  */ 	text-align: center;
/* 3685  */
/* 3686  */ 	color: #fff;
/* 3687  */
/* 3688  */ 	height:20px;
/* 3689  */
/* 3690  */ 	width: 170px;
/* 3691  */
/* 3692  */ 	position: absolute;
/* 3693  */
/* 3694  */     }
/* 3695  */
/* 3696  */
/* 3697  */
/* 3698  */ .sngrw-rw {
/* 3699  */
/* 3700  */     background: #222;

/* style.css */

/* 3701  */
/* 3702  */     margin-bottom: 4px;
/* 3703  */
/* 3704  */     width: 480px;
/* 3705  */
/* 3706  */     padding: 0px;
/* 3707  */
/* 3708  */     position: relative;
/* 3709  */
/* 3710  */     }
/* 3711  */
/* 3712  */
/* 3713  */
/* 3714  */ .sngrw-rw-title {
/* 3715  */
/* 3716  */     font-weight: 700;
/* 3717  */
/* 3718  */     text-transform: uppercase;
/* 3719  */
/* 3720  */     top: 8px;
/* 3721  */
/* 3722  */     left: 15px;
/* 3723  */
/* 3724  */     color: #fff;
/* 3725  */
/* 3726  */     z-index: 2;
/* 3727  */
/* 3728  */     position: absolute;
/* 3729  */
/* 3730  */     font-size: 16px;
/* 3731  */
/* 3732  */     }
/* 3733  */
/* 3734  */
/* 3735  */
/* 3736  */ .sngrw-rw-score {
/* 3737  */
/* 3738  */     text-align: center;
/* 3739  */
/* 3740  */     font-weight: 600;
/* 3741  */
/* 3742  */     top: 8px;
/* 3743  */
/* 3744  */     right: 15px;
/* 3745  */
/* 3746  */     width: 44px;
/* 3747  */
/* 3748  */     z-index: 2;
/* 3749  */
/* 3750  */     position: absolute;

/* style.css */

/* 3751  */
/* 3752  */     font-size: 31px;
/* 3753  */
/* 3754  */ 	font-family: "Montserrat";
/* 3755  */
/* 3756  */     }
/* 3757  */
/* 3758  */
/* 3759  */
/* 3760  */ .sngrw-rating { background: #222 }
/* 3761  */
/* 3762  */
/* 3763  */
/* 3764  */ .jRatingColor {
/* 3765  */
/* 3766  */     top: 0;
/* 3767  */
/* 3768  */     left: 0;
/* 3769  */
/* 3770  */     height: 100%;
/* 3771  */
/* 3772  */     z-index: 2;
/* 3773  */
/* 3774  */     position: relative;
/* 3775  */
/* 3776  */     }
/* 3777  */
/* 3778  */
/* 3779  */
/* 3780  */ /* ==== media - video & photo ==== */
/* 3781  */
/* 3782  */
/* 3783  */
/* 3784  */ #sngmedia iframe {
/* 3785  */
/* 3786  */ 	margin-bottom:-7px;
/* 3787  */
/* 3788  */ 	}
/* 3789  */
/* 3790  */
/* 3791  */
/* 3792  */ .sngmedia-title h1 {
/* 3793  */
/* 3794  */     line-height: 1.25em;
/* 3795  */
/* 3796  */     margin-bottom: 20px;
/* 3797  */
/* 3798  */     color: #000;
/* 3799  */
/* 3800  */     float: left;

/* style.css */

/* 3801  */
/* 3802  */     font-size: 46px;
/* 3803  */
/* 3804  */ 	font-weight: 900;
/* 3805  */
/* 3806  */     }
/* 3807  */
/* 3808  */
/* 3809  */
/* 3810  */ .sngmedia-cat {
/* 3811  */
/* 3812  */ 	font-weight: 900;
/* 3813  */
/* 3814  */     line-height: 18px;
/* 3815  */
/* 3816  */     letter-spacing: 2px;
/* 3817  */
/* 3818  */     text-transform: uppercase;
/* 3819  */
/* 3820  */     color: #fff;
/* 3821  */
/* 3822  */     height: 18px;
/* 3823  */
/* 3824  */     padding: 4px 11px;
/* 3825  */
/* 3826  */     font-size: 11px;
/* 3827  */
/* 3828  */ 	float:left;
/* 3829  */
/* 3830  */ 	margin-right:3px;
/* 3831  */
/* 3832  */     }
/* 3833  */
/* 3834  */
/* 3835  */
/* 3836  */ .sngmedia-nr {
/* 3837  */
/* 3838  */ 	font-weight: 900;
/* 3839  */
/* 3840  */     line-height: 18px;
/* 3841  */
/* 3842  */     letter-spacing: 2px;
/* 3843  */
/* 3844  */     text-transform: uppercase;
/* 3845  */
/* 3846  */     color: #fff;
/* 3847  */
/* 3848  */     height: 18px;
/* 3849  */
/* 3850  */     padding: 4px 11px;

/* style.css */

/* 3851  */
/* 3852  */     font-size: 11px;
/* 3853  */
/* 3854  */ 	float:left;
/* 3855  */
/* 3856  */ 	background:#000;
/* 3857  */
/* 3858  */     }
/* 3859  */
/* 3860  */
/* 3861  */
/* 3862  */ .sngmedia-cl {
/* 3863  */
/* 3864  */     margin-bottom: 14px;
/* 3865  */
/* 3866  */     height: 25px;
/* 3867  */
/* 3868  */     }
/* 3869  */
/* 3870  */
/* 3871  */
/* 3872  */ .sngmedia-vdvl {
/* 3873  */
/* 3874  */     margin-bottom: 32px;
/* 3875  */
/* 3876  */     width: 1160px;
/* 3877  */
/* 3878  */     float: left;
/* 3879  */
/* 3880  */     height: 25px;
/* 3881  */
/* 3882  */     }
/* 3883  */
/* 3884  */
/* 3885  */
/* 3886  */ .sngmedia-venue {
/* 3887  */
/* 3888  */     line-height: 16px;
/* 3889  */
/* 3890  */     padding-left: 24px;
/* 3891  */
/* 3892  */     margin-right: 20px;
/* 3893  */
/* 3894  */     text-transform: uppercase;
/* 3895  */
/* 3896  */     background-image: url("images/venue.png");
/* 3897  */
/* 3898  */     background-repeat: no-repeat;
/* 3899  */
/* 3900  */     background-position: 0px 0px;

/* style.css */

/* 3901  */
/* 3902  */     color: #c5c5c5;
/* 3903  */
/* 3904  */     hieght: 16px;
/* 3905  */
/* 3906  */     display: inline-block;
/* 3907  */
/* 3908  */     font-size: 12px;
/* 3909  */
/* 3910  */ 	font-family: "Montserrat";
/* 3911  */
/* 3912  */     }
/* 3913  */
/* 3914  */
/* 3915  */
/* 3916  */ .sngmedia-date {
/* 3917  */
/* 3918  */     line-height: 16px;
/* 3919  */
/* 3920  */     padding-left: 24px;
/* 3921  */
/* 3922  */     margin-right: 20px;
/* 3923  */
/* 3924  */     text-transform: uppercase;
/* 3925  */
/* 3926  */     background-image: url("images/date.png");
/* 3927  */
/* 3928  */     background-repeat: no-repeat;
/* 3929  */
/* 3930  */     background-position: 0px -1px;
/* 3931  */
/* 3932  */     color: #c5c5c5;
/* 3933  */
/* 3934  */     hieght: 16px;
/* 3935  */
/* 3936  */     display: inline-block;
/* 3937  */
/* 3938  */     font-size: 12px;
/* 3939  */
/* 3940  */ 	font-family: "Montserrat";
/* 3941  */
/* 3942  */     }
/* 3943  */
/* 3944  */
/* 3945  */
/* 3946  */ .sngmedia-view {
/* 3947  */
/* 3948  */     line-height: 16px;
/* 3949  */
/* 3950  */     margin-right: 20px;

/* style.css */

/* 3951  */
/* 3952  */     padding-left: 30px;
/* 3953  */
/* 3954  */     text-transform: uppercase;
/* 3955  */
/* 3956  */     background-image: url("images/viewT.png");
/* 3957  */
/* 3958  */     background-repeat: no-repeat;
/* 3959  */
/* 3960  */     background-position: 0px 0px;
/* 3961  */
/* 3962  */     color: #c5c5c5;
/* 3963  */
/* 3964  */     hieght: 16px;
/* 3965  */
/* 3966  */     display: inline-block;
/* 3967  */
/* 3968  */     font-size: 12px;
/* 3969  */
/* 3970  */ 	font-family: "Montserrat";
/* 3971  */
/* 3972  */     }
/* 3973  */
/* 3974  */
/* 3975  */
/* 3976  */ .sngmedia-social {
/* 3977  */
/* 3978  */     margin-top: -2px;
/* 3979  */
/* 3980  */     padding-left: 29px;
/* 3981  */
/* 3982  */     background-image: url("images/social.png");
/* 3983  */
/* 3984  */     background-repeat: no-repeat;
/* 3985  */
/* 3986  */     background-position: 0px 3px;
/* 3987  */
/* 3988  */     float: right;
/* 3989  */
/* 3990  */     }
/* 3991  */
/* 3992  */
/* 3993  */
/* 3994  */ .phsng-col {
/* 3995  */
/* 3996  */     width: 1165px;
/* 3997  */
/* 3998  */     float: left;
/* 3999  */
/* 4000  */ 	margin-top:-3px;

/* style.css */

/* 4001  */
/* 4002  */     }
/* 4003  */
/* 4004  */
/* 4005  */
/* 4006  */ img.sngph-photo {
/* 4007  */
/* 4008  */     margin-top: 3px;
/* 4009  */
/* 4010  */     margin-right: 3px;
/* 4011  */
/* 4012  */     width: 230px;
/* 4013  */
/* 4014  */     float: left;
/* 4015  */
/* 4016  */     height: 229px;
/* 4017  */
/* 4018  */     }
/* 4019  */
/* 4020  */
/* 4021  */
/* 4022  */ /* -------------------------------wizedesign--
/* 4023  *|
/* 4024  *|      12. COMMENTS
/* 4025  *|
/* 4026  *|    ------------------------------------------- */
/* 4027  */
/* 4028  */
/* 4029  */
/* 4030  */ #comments {
/* 4031  */
/* 4032  */     float: left;
/* 4033  */
/* 4034  */     width: 760px;
/* 4035  */
/* 4036  */ 	margin-top:-21px;
/* 4037  */
/* 4038  */     }
/* 4039  */
/* 4040  */
/* 4041  */
/* 4042  */ #comments strong { font-weight: normal }
/* 4043  */
/* 4044  */
/* 4045  */
/* 4046  */ #comments cite {
/* 4047  */
/* 4048  */     font-style: normal;
/* 4049  */
/* 4050  */     color: #000;

/* style.css */

/* 4051  */
/* 4052  */     }
/* 4053  */
/* 4054  */
/* 4055  */
/* 4056  */ #comments ol { padding: 0 }
/* 4057  */
/* 4058  */
/* 4059  */
/* 4060  */ #comments em { font-style: normal }
/* 4061  */
/* 4062  */
/* 4063  */
/* 4064  */ h3#reply-title {
/* 4065  */
/* 4066  */     font-weight: 700;
/* 4067  */
/* 4068  */     margin-bottom: 5px;
/* 4069  */
/* 4070  */     text-transform: uppercase;
/* 4071  */
/* 4072  */     color: #000;
/* 4073  */
/* 4074  */     display: inline-block;
/* 4075  */
/* 4076  */     font-size: 24px;
/* 4077  */
/* 4078  */     }
/* 4079  */
/* 4080  */
/* 4081  */
/* 4082  */ .required {
/* 4083  */
/* 4084  */     font-weight: 400;
/* 4085  */
/* 4086  */     color: #ff0000;
/* 4087  */
/* 4088  */     }
/* 4089  */
/* 4090  */
/* 4091  */
/* 4092  */ .comment-notes {
/* 4093  */
/* 4094  */     margin-bottom: 21px;
/* 4095  */
/* 4096  */     text-transform: uppercase;
/* 4097  */
/* 4098  */     color: #b5b5b5;
/* 4099  */
/* 4100  */     font-size: 12px;

/* style.css */

/* 4101  */
/* 4102  */     }
/* 4103  */
/* 4104  */
/* 4105  */
/* 4106  */ .logged-in-as {
/* 4107  */
/* 4108  */     margin-bottom: 21px;
/* 4109  */
/* 4110  */     text-transform: uppercase;
/* 4111  */
/* 4112  */     color: #b5b5b5;
/* 4113  */
/* 4114  */     font-size: 12px;
/* 4115  */
/* 4116  */     }
/* 4117  */
/* 4118  */
/* 4119  */
/* 4120  */ .logged-in-as a {
/* 4121  */
/* 4122  */     font-weight: 800;
/* 4123  */
/* 4124  */     text-transform: none;
/* 4125  */
/* 4126  */     color: #000;
/* 4127  */
/* 4128  */     }
/* 4129  */
/* 4130  */
/* 4131  */
/* 4132  */ .comment-form-author, .comment-form-email, .comment-form-url {
/* 4133  */
/* 4134  */     font-weight: 600;
/* 4135  */
/* 4136  */     margin-bottom: 16px;
/* 4137  */
/* 4138  */     text-transform: uppercase;
/* 4139  */
/* 4140  */     letter-spacing: 0.5px;
/* 4141  */
/* 4142  */     width: 50%;
/* 4143  */
/* 4144  */     color: #000;
/* 4145  */
/* 4146  */     font-size: 12px;
/* 4147  */
/* 4148  */     }
/* 4149  */
/* 4150  */

/* style.css */

/* 4151  */
/* 4152  */ .comment-form-author #author, .comment-form-email #email, .comment-form-url #url {
/* 4153  */
/* 4154  */     background: #f7f7f7;
/* 4155  */
/* 4156  */     margin-top: 0px;
/* 4157  */
/* 4158  */     border-radius: 3px;
/* 4159  */
/* 4160  */     text-transform: none;
/* 4161  */
/* 4162  */     color: #333;
/* 4163  */
/* 4164  */     border: 1px solid #e5e5e5;
/* 4165  */
/* 4166  */     padding: 10px;
/* 4167  */
/* 4168  */     font-size: 14px;
/* 4169  */
/* 4170  */     }
/* 4171  */
/* 4172  */
/* 4173  */
/* 4174  */ .comment-form-author input, .comment-form-email input, .comment-form-url input { width: 100% }
/* 4175  */
/* 4176  */
/* 4177  */
/* 4178  */ .comment-form-comment {
/* 4179  */
/* 4180  */     font-weight: 600;
/* 4181  */
/* 4182  */     text-transform: uppercase;
/* 4183  */
/* 4184  */     letter-spacing: 0.5px;
/* 4185  */
/* 4186  */     width: 760px;
/* 4187  */
/* 4188  */     color: #000;
/* 4189  */
/* 4190  */     font-size: 12px;
/* 4191  */
/* 4192  */     }
/* 4193  */
/* 4194  */
/* 4195  */
/* 4196  */ .comment-form-author input#author:focus, .comment-form-email input#email:focus, .comment-form-url input#url:focus, .comment-form-comment textarea#comment:focus { background: #fefefe }
/* 4197  */
/* 4198  */
/* 4199  */
/* 4200  */ .comment-form-comment #comment {

/* style.css */

/* 4201  */
/* 4202  */     margin-top: 5px;
/* 4203  */
/* 4204  */     background: #fafafa;
/* 4205  */
/* 4206  */     line-height: 24px;
/* 4207  */
/* 4208  */     border-radius: 3px;
/* 4209  */
/* 4210  */     color: #333;
/* 4211  */
/* 4212  */     border: 1px solid #e5e5e5 !important;
/* 4213  */
/* 4214  */     padding: 10px;
/* 4215  */
/* 4216  */     font-size: 14px;
/* 4217  */
/* 4218  */ 	width:738px;
/* 4219  */
/* 4220  */     }
/* 4221  */
/* 4222  */
/* 4223  */
/* 4224  */ .comment-form-comment textarea {
/* 4225  */
/* 4226  */     width: 100%;
/* 4227  */
/* 4228  */     height: 160px;
/* 4229  */
/* 4230  */     }
/* 4231  */
/* 4232  */
/* 4233  */
/* 4234  */ .form-submit {
/* 4235  */
/* 4236  */     margin-top: 26px;
/* 4237  */
/* 4238  */     margin-bottom: 0;
/* 4239  */
/* 4240  */ 	height:40px;
/* 4241  */
/* 4242  */     }
/* 4243  */
/* 4244  */
/* 4245  */
/* 4246  */ .form-submit #submit {
/* 4247  */
/* 4248  */     font-weight: 500;
/* 4249  */
/* 4250  */     line-height: 20px;

/* style.css */

/* 4251  */
/* 4252  */ 	background:#000;
/* 4253  */
/* 4254  */     border-radius: 1.5px;
/* 4255  */
/* 4256  */     text-transform: uppercase;
/* 4257  */
/* 4258  */     color: #fff;
/* 4259  */
/* 4260  */     border: none;
/* 4261  */
/* 4262  */     cursor: pointer;
/* 4263  */
/* 4264  */     height: 33px;
/* 4265  */
/* 4266  */     padding: 3px 13px;
/* 4267  */
/* 4268  */     position: relative;
/* 4269  */
/* 4270  */     font-size: 14px !important;
/* 4271  */
/* 4272  */     }
/* 4273  */
/* 4274  */
/* 4275  */
/* 4276  */ .form-submit #submit:hover { background: #000 }
/* 4277  */
/* 4278  */
/* 4279  */
/* 4280  */ .commentlist {
/* 4281  */
/* 4282  */     list-style: none;
/* 4283  */
/* 4284  */     margin-top: 16px;
/* 4285  */
/* 4286  */     margin-bottom: 32px;
/* 4287  */
/* 4288  */     width: 760px;
/* 4289  */
/* 4290  */     }
/* 4291  */
/* 4292  */
/* 4293  */
/* 4294  */ .commentlist li.comment > div {
/* 4295  */
/* 4296  */     margin-bottom: 14px;
/* 4297  */
/* 4298  */     border-bottom: 1px solid #f1f1f1;
/* 4299  */
/* 4300  */     padding: 5px 0px;

/* style.css */

/* 4301  */
/* 4302  */     }
/* 4303  */
/* 4304  */
/* 4305  */
/* 4306  */ .commentlist li.comment > div:hover .reply { opacity: 1 }
/* 4307  */
/* 4308  */
/* 4309  */
/* 4310  */ .commentlist .comment-respond {
/* 4311  */
/* 4312  */     margin-top: 27px;
/* 4313  */
/* 4314  */     border-bottom: 0 !important;
/* 4315  */
/* 4316  */     }
/* 4317  */
/* 4318  */
/* 4319  */
/* 4320  */ .commentlist .comment-respond .comment-form-comment { width: 100% }
/* 4321  */
/* 4322  */
/* 4323  */
/* 4324  */ .commentlist .comment-respond .comment-form-comment textarea#comment {
/* 4325  */
/* 4326  */     width: 96% !important;
/* 4327  */
/* 4328  */     height: 160px;
/* 4329  */
/* 4330  */     }
/* 4331  */
/* 4332  */
/* 4333  */
/* 4334  */ .commentlist ul.children {
/* 4335  */
/* 4336  */     margin-top: 10px;
/* 4337  */
/* 4338  */     background: url("images/reply.png") no-repeat;
/* 4339  */
/* 4340  */     background-position: 23px 22px;
/* 4341  */
/* 4342  */     }
/* 4343  */
/* 4344  */
/* 4345  */
/* 4346  */ .commentlist ul.children .comment-respond {
/* 4347  */
/* 4348  */     margin-top: 27px !important;
/* 4349  */
/* 4350  */     margin-bottom: 24px !important;

/* style.css */

/* 4351  */
/* 4352  */     }
/* 4353  */
/* 4354  */
/* 4355  */
/* 4356  */ .commentlist .children { list-style: none }
/* 4357  */
/* 4358  */
/* 4359  */
/* 4360  */ .commentlist .children li {
/* 4361  */
/* 4362  */     margin-left: 60px;
/* 4363  */
/* 4364  */     border: none;
/* 4365  */
/* 4366  */     }
/* 4367  */
/* 4368  */
/* 4369  */
/* 4370  */ .commentlist .avatar {
/* 4371  */
/* 4372  */     margin-right: 20px;
/* 4373  */
/* 4374  */     margin-bottom: 0px;
/* 4375  */
/* 4376  */     border-radius: 50%;
/* 4377  */
/* 4378  */     top: 0;
/* 4379  */
/* 4380  */     left: 0;
/* 4381  */
/* 4382  */     float: left;
/* 4383  */
/* 4384  */     width: 60px;
/* 4385  */
/* 4386  */     height: 60px;
/* 4387  */
/* 4388  */     overflow: hidden;
/* 4389  */
/* 4390  */     }
/* 4391  */
/* 4392  */
/* 4393  */
/* 4394  */ .commentlist ol { list-style: decimal }
/* 4395  */
/* 4396  */
/* 4397  */
/* 4398  */ .comment-author cite {
/* 4399  */
/* 4400  */     font-weight: 600;

/* style.css */

/* 4401  */
/* 4402  */     color: #000;
/* 4403  */
/* 4404  */     font-size: 16px;
/* 4405  */
/* 4406  */     }
/* 4407  */
/* 4408  */
/* 4409  */
/* 4410  */ .comment-author cite a {
/* 4411  */
/* 4412  */     font-weight: 800;
/* 4413  */
/* 4414  */     color: #000;
/* 4415  */
/* 4416  */     }
/* 4417  */
/* 4418  */
/* 4419  */
/* 4420  */ .comment-meta {
/* 4421  */
/* 4422  */     text-transform: uppercase;
/* 4423  */
/* 4424  */     color: #c5c5c5;
/* 4425  */
/* 4426  */     font-size: 12px;
/* 4427  */
/* 4428  */     }
/* 4429  */
/* 4430  */
/* 4431  */
/* 4432  */ .comment-meta a { color: #b5b5b5 }
/* 4433  */
/* 4434  */
/* 4435  */
/* 4436  */ a.comment-edit-link {
/* 4437  */
/* 4438  */     font-weight: 600;
/* 4439  */
/* 4440  */     color: #000;
/* 4441  */
/* 4442  */     font-size: 10px;
/* 4443  */
/* 4444  */     }
/* 4445  */
/* 4446  */
/* 4447  */
/* 4448  */ .comment-body {
/* 4449  */
/* 4450  */     margin-top: 9px;

/* style.css */

/* 4451  */
/* 4452  */     margin-left: 80px;
/* 4453  */
/* 4454  */     }
/* 4455  */
/* 4456  */
/* 4457  */
/* 4458  */ .comment-body ol { padding: 0 0 0 25px !important }
/* 4459  */
/* 4460  */
/* 4461  */
/* 4462  */ .reply {
/* 4463  */
/* 4464  */     margin-top: -40px;
/* 4465  */
/* 4466  */     margin-right: 0px;
/* 4467  */
/* 4468  */     text-decoration: none;
/* 4469  */
/* 4470  */     float: right;
/* 4471  */
/* 4472  */     opacity: 0;
/* 4473  */
/* 4474  */     }
/* 4475  */
/* 4476  */
/* 4477  */
/* 4478  */ .reply a {
/* 4479  */
/* 4480  */     font-weight: 400;
/* 4481  */
/* 4482  */     border-radius: 1.5px;
/* 4483  */
/* 4484  */     text-transform: uppercase;
/* 4485  */
/* 4486  */     color: #fff;
/* 4487  */
/* 4488  */     padding: 5px 10px;
/* 4489  */
/* 4490  */     font-size: 10px;
/* 4491  */
/* 4492  */ 	line-height:14px;
/* 4493  */
/* 4494  */ 	height:14px;
/* 4495  */
/* 4496  */ 	background:#000;
/* 4497  */
/* 4498  */     }
/* 4499  */
/* 4500  */

/* style.css */

/* 4501  */
/* 4502  */ .nopassword { display: none }
/* 4503  */
/* 4504  */
/* 4505  */
/* 4506  */ .nocomments {
/* 4507  */
/* 4508  */     text-align: center;
/* 4509  */
/* 4510  */     margin-top: -9px;
/* 4511  */
/* 4512  */     font-weight: 600;
/* 4513  */
/* 4514  */     margin-bottom: -8px;
/* 4515  */
/* 4516  */     color: #c5c5c5;
/* 4517  */
/* 4518  */     font-size: 16px;
/* 4519  */
/* 4520  */     }
/* 4521  */
/* 4522  */
/* 4523  */
/* 4524  */ #respond { margin-top: -7px }
/* 4525  */
/* 4526  */
/* 4527  */
/* 4528  */ #respond .form-allowed-tags {
/* 4529  */
/* 4530  */     margin-top: 10px;
/* 4531  */
/* 4532  */     background: #f3f3f3;
/* 4533  */
/* 4534  */     line-height: 18px;
/* 4535  */
/* 4536  */     color: #000;
/* 4537  */
/* 4538  */     padding: 10px;
/* 4539  */
/* 4540  */     font-size: 14px;
/* 4541  */
/* 4542  */     }
/* 4543  */
/* 4544  */
/* 4545  */
/* 4546  */ #respond .form-allowed-tags code { font-size: 14px }
/* 4547  */
/* 4548  */
/* 4549  */
/* 4550  */ #respond .form-submit input {

/* style.css */

/* 4551  */
/* 4552  */     width: auto;
/* 4553  */
/* 4554  */     font-size: 12px;
/* 4555  */
/* 4556  */     }
/* 4557  */
/* 4558  */
/* 4559  */
/* 4560  */ .form-allowed-tags { line-height: 1em }
/* 4561  */
/* 4562  */
/* 4563  */
/* 4564  */ .children #respond {
/* 4565  */
/* 4566  */     margin-top: 10px;
/* 4567  */
/* 4568  */     margin-bottom: 20px;
/* 4569  */
/* 4570  */     }
/* 4571  */
/* 4572  */
/* 4573  */
/* 4574  */ #cancel-comment-reply-link {
/* 4575  */
/* 4576  */     font-weight: normal;
/* 4577  */
/* 4578  */     line-height: 18px;
/* 4579  */
/* 4580  */     font-size: 12px;
/* 4581  */
/* 4582  */     }
/* 4583  */
/* 4584  */
/* 4585  */
/* 4586  */ ul.children { list-style-type: none }
/* 4587  */
/* 4588  */
/* 4589  */
/* 4590  */ ul.children li { list-style-type: none }
/* 4591  */
/* 4592  */
/* 4593  */
/* 4594  */ form#commentform input {
/* 4595  */
/* 4596  */     margin-top: 5px;
/* 4597  */
/* 4598  */     padding: 7px;
/* 4599  */
/* 4600  */     }

/* style.css */

/* 4601  */
/* 4602  */
/* 4603  */
/* 4604  */ /* -------------------------------wizedesign--
/* 4605  *|
/* 4606  *|      13. AUTHOR PAGE
/* 4607  *|
/* 4608  *|    ------------------------------------------- */
/* 4609  */
/* 4610  */
/* 4611  */
/* 4612  */ #author-info {
/* 4613  */
/* 4614  */     background: #fff;
/* 4615  */
/* 4616  */     margin-top: -36px;
/* 4617  */
/* 4618  */     width: 250px;
/* 4619  */
/* 4620  */     padding: 30px 30px;
/* 4621  */
/* 4622  */     }
/* 4623  */
/* 4624  */
/* 4625  */
/* 4626  */ #author-info .author-description {
/* 4627  */
/* 4628  */     margin-top: 15px;
/* 4629  */
/* 4630  */     width: 250px;
/* 4631  */
/* 4632  */     display: block;
/* 4633  */
/* 4634  */     }
/* 4635  */
/* 4636  */
/* 4637  */
/* 4638  */ #author-info .author-description a:hover { color: #000 }
/* 4639  */
/* 4640  */
/* 4641  */
/* 4642  */ #author-info .author-description p.url { margin-bottom: 0px }
/* 4643  */
/* 4644  */
/* 4645  */
/* 4646  */ #author-info .author-description p { margin-bottom: 20px }
/* 4647  */
/* 4648  */
/* 4649  */
/* 4650  */ #author-info .author-avatar {

/* style.css */

/* 4651  */
/* 4652  */     margin-bottom: 20px;
/* 4653  */
/* 4654  */     width: 290x;
/* 4655  */
/* 4656  */     height: 90px;
/* 4657  */
/* 4658  */     }
/* 4659  */
/* 4660  */
/* 4661  */
/* 4662  */ #author-info .author-avatar img {
/* 4663  */
/* 4664  */     margin-top: 0px;
/* 4665  */
/* 4666  */     margin-right: 20px;
/* 4667  */
/* 4668  */     border-radius: 50%;
/* 4669  */
/* 4670  */     width: 83px;
/* 4671  */
/* 4672  */     float: left;
/* 4673  */
/* 4674  */     height: 83px;
/* 4675  */
/* 4676  */     overflow: hidden;
/* 4677  */
/* 4678  */     }
/* 4679  */
/* 4680  */
/* 4681  */
/* 4682  */ #author-info p.aut {
/* 4683  */
/* 4684  */     font-weight: 600;
/* 4685  */
/* 4686  */     margin-bottom: 18px;
/* 4687  */
/* 4688  */     font-size: 18px;
/* 4689  */
/* 4690  */     }
/* 4691  */
/* 4692  */
/* 4693  */
/* 4694  */ #author-info p.nr, #author-info p.com {
/* 4695  */
/* 4696  */     margin-top: -15px;
/* 4697  */
/* 4698  */     text-transform: uppercase;
/* 4699  */
/* 4700  */     color: #c5c5c5;

/* style.css */

/* 4701  */
/* 4702  */     font-size: 14px;
/* 4703  */
/* 4704  */     }
/* 4705  */
/* 4706  */
/* 4707  */
/* 4708  */ .author-description p { margin-bottom: 10px }
/* 4709  */
/* 4710  */
/* 4711  */
/* 4712  */ .author-description a { color: #fff }
/* 4713  */
/* 4714  */
/* 4715  */
/* 4716  */ /* -------------------------------wizedesign--
/* 4717  *|
/* 4718  *|      14. TEMPLATE
/* 4719  *|
/* 4720  *|    ------------------------------------------- */
/* 4721  */
/* 4722  */
/* 4723  */
/* 4724  */ /* ==== blog style 1 ==== */
/* 4725  */
/* 4726  */
/* 4727  */
/* 4728  */ #tmpbl1 {
/* 4729  */
/* 4730  */     margin-bottom: 40px;
/* 4731  */
/* 4732  */     width: 760px;
/* 4733  */
/* 4734  */     height: 252px;
/* 4735  */
/* 4736  */     }
/* 4737  */
/* 4738  */
/* 4739  */
/* 4740  */ .tmpbl1-cover {
/* 4741  */
/* 4742  */     float: left;
/* 4743  */
/* 4744  */     width: 330px;
/* 4745  */
/* 4746  */     height: 252px;
/* 4747  */
/* 4748  */     overflow: hidden;
/* 4749  */
/* 4750  */     position: relative;

/* style.css */

/* 4751  */
/* 4752  */ 	margin-right:30px;
/* 4753  */
/* 4754  */     }
/* 4755  */
/* 4756  */
/* 4757  */
/* 4758  */ .tmpbl1-cover img {
/* 4759  */
/* 4760  */     width: 330px;
/* 4761  */
/* 4762  */     height: 252px;
/* 4763  */
/* 4764  */     }
/* 4765  */
/* 4766  */
/* 4767  */
/* 4768  */ .tmpbl1-wrap {
/* 4769  */
/* 4770  */     float: right;
/* 4771  */
/* 4772  */     width: 400px;
/* 4773  */
/* 4774  */     }
/* 4775  */
/* 4776  */
/* 4777  */
/* 4778  */ .tmpbl1-wrap h2 {
/* 4779  */
/* 4780  */     margin-top: -1px;
/* 4781  */
/* 4782  */     font-weight: 700;
/* 4783  */
/* 4784  */     line-height: 1.4em;
/* 4785  */
/* 4786  */     margin-bottom: 14px;
/* 4787  */
/* 4788  */     font-size: 20px;
/* 4789  */
/* 4790  */     }
/* 4791  */
/* 4792  */
/* 4793  */
/* 4794  */ .tmpbl1-wrap h2 a { color: #000 }
/* 4795  */
/* 4796  */
/* 4797  */
/* 4798  */ .tmpbl1-wrap p { margin-bottom: 15px !important; color:#666; }
/* 4799  */
/* 4800  */

/* style.css */

/* 4801  */
/* 4802  */
/* 4803  */
/* 4804  */ #tmpbl1:hover .tmpbl1-wrap p {  color:#000; }
/* 4805  */
/* 4806  */
/* 4807  */
/* 4808  */ /* ==== blog style 2 ==== */
/* 4809  */
/* 4810  */
/* 4811  */
/* 4812  */ #tmpbl2 {
/* 4813  */
/* 4814  */     margin-right: 40px;
/* 4815  */
/* 4816  */     margin-bottom: 40px;
/* 4817  */
/* 4818  */     float: left;
/* 4819  */
/* 4820  */     width: 360px;
/* 4821  */
/* 4822  */     height: 278px;
/* 4823  */
/* 4824  */     position: relative;
/* 4825  */
/* 4826  */     }
/* 4827  */
/* 4828  */
/* 4829  */
/* 4830  */ #tmpbl2:hover .tmpbl2-text { opacity: 1 }
/* 4831  */
/* 4832  */
/* 4833  */
/* 4834  */ #tmpbl2:hover .tmpbl2-bg {
/* 4835  */
/* 4836  */     background: rgba(0, 0, 0, 0.7);
/* 4837  */
/* 4838  */     width: 360px;
/* 4839  */
/* 4840  */     height: 278px;
/* 4841  */
/* 4842  */     }
/* 4843  */
/* 4844  */
/* 4845  */
/* 4846  */ #tmpbl2:hover h2 {
/* 4847  */
/* 4848  */     text-transform: uppercase;
/* 4849  */
/* 4850  */     left: 30px;

/* style.css */

/* 4851  */
/* 4852  */     bottom: 128px;
/* 4853  */
/* 4854  */     position: absolute;
/* 4855  */
/* 4856  */     }
/* 4857  */
/* 4858  */
/* 4859  */
/* 4860  */ #tmpbl2 h2 {
/* 4861  */
/* 4862  */     line-height: 1.3em;
/* 4863  */
/* 4864  */     text-transform: uppercase;
/* 4865  */
/* 4866  */     left: 30px;
/* 4867  */
/* 4868  */     width: 300px;
/* 4869  */
/* 4870  */     bottom: 48px;
/* 4871  */
/* 4872  */     position: absolute;
/* 4873  */
/* 4874  */     font-size: 20px;
/* 4875  */
/* 4876  */     }
/* 4877  */
/* 4878  */
/* 4879  */
/* 4880  */ #tmpbl2 h2 a {
/* 4881  */
/* 4882  */     font-weight: 900;
/* 4883  */
/* 4884  */     color: #fff;
/* 4885  */
/* 4886  */     }
/* 4887  */
/* 4888  */
/* 4889  */
/* 4890  */ #tmpbl2 h2 a:hover { color:rgba(255,255,255,0.7) }
/* 4891  */
/* 4892  */
/* 4893  */
/* 4894  */ .tmpbl2-cover {
/* 4895  */
/* 4896  */     float: left;
/* 4897  */
/* 4898  */     width: 360px;
/* 4899  */
/* 4900  */     height: 278px;

/* style.css */

/* 4901  */
/* 4902  */     overflow: hidden;
/* 4903  */
/* 4904  */     position: relative;
/* 4905  */
/* 4906  */     }
/* 4907  */
/* 4908  */
/* 4909  */
/* 4910  */ .tmpbl2-cover img {
/* 4911  */
/* 4912  */     width: 360px;
/* 4913  */
/* 4914  */     height: 278px;
/* 4915  */
/* 4916  */     }
/* 4917  */
/* 4918  */
/* 4919  */
/* 4920  */ .tmpbl2-bg {
/* 4921  */
/* 4922  */     background: url("images/bg6.png");
/* 4923  */
/* 4924  */     left: 0px;
/* 4925  */
/* 4926  */     width: 360px;
/* 4927  */
/* 4928  */     bottom: 0px;
/* 4929  */
/* 4930  */     height: 278px;
/* 4931  */
/* 4932  */     position: absolute;
/* 4933  */
/* 4934  */     }
/* 4935  */
/* 4936  */
/* 4937  */
/* 4938  */ .tmpbl2-text {
/* 4939  */
/* 4940  */     font-weight: 400;
/* 4941  */
/* 4942  */     line-height: 1.5em;
/* 4943  */
/* 4944  */     left: 30px;
/* 4945  */
/* 4946  */     color: rgba(255, 255, 255, 0.8);
/* 4947  */
/* 4948  */     width: 300px;
/* 4949  */
/* 4950  */     bottom: 64px;

/* style.css */

/* 4951  */
/* 4952  */     opacity: 0;
/* 4953  */
/* 4954  */     position: absolute;
/* 4955  */
/* 4956  */     font-size: 14px;
/* 4957  */
/* 4958  */     }
/* 4959  */
/* 4960  */
/* 4961  */
/* 4962  */ /* ==== blog style 3 ==== */
/* 4963  */
/* 4964  */
/* 4965  */
/* 4966  */ #tmpbl3 {
/* 4967  */
/* 4968  */     margin-right: 40px;
/* 4969  */
/* 4970  */     margin-bottom: 33px;
/* 4971  */
/* 4972  */     width: 360px;
/* 4973  */
/* 4974  */     }
/* 4975  */
/* 4976  */
/* 4977  */
/* 4978  */ .tmpbl3-cover {
/* 4979  */
/* 4980  */     float: left;
/* 4981  */
/* 4982  */     width: 360px;
/* 4983  */
/* 4984  */     height: 200px;
/* 4985  */
/* 4986  */     overflow: hidden;
/* 4987  */
/* 4988  */     position: relative;
/* 4989  */
/* 4990  */ 	margin-bottom:30px;
/* 4991  */
/* 4992  */     }
/* 4993  */
/* 4994  */
/* 4995  */
/* 4996  */ .tmpbl3-cover img {
/* 4997  */
/* 4998  */     width: 360px;
/* 4999  */
/* 5000  */     height: 200px;

/* style.css */

/* 5001  */
/* 5002  */     }
/* 5003  */
/* 5004  */
/* 5005  */
/* 5006  */ .tmpbl3-wrap {
/* 5007  */
/* 5008  */     background: #fff;
/* 5009  */
/* 5010  */     float: left;
/* 5011  */
/* 5012  */     width: 350px;
/* 5013  */
/* 5014  */     }
/* 5015  */
/* 5016  */
/* 5017  */
/* 5018  */ .tmpbl3-wrap h2 {
/* 5019  */
/* 5020  */     margin-top: -6px;
/* 5021  */
/* 5022  */     line-height: 1.4em;
/* 5023  */
/* 5024  */     margin-bottom: 13px;
/* 5025  */
/* 5026  */     font-size: 20px;
/* 5027  */
/* 5028  */     }
/* 5029  */
/* 5030  */
/* 5031  */
/* 5032  */ .tmpbl3-wrap h2 a {
/* 5033  */
/* 5034  */     font-weight: 700;
/* 5035  */
/* 5036  */     color: #000;
/* 5037  */
/* 5038  */     }
/* 5039  */
/* 5040  */
/* 5041  */
/* 5042  */ .tmpbl3-wrap p { margin-bottom: 13px !important; color:#666; }
/* 5043  */
/* 5044  */
/* 5045  */
/* 5046  */ #tmpbl3:hover .tmpbl3-wrap p {  color:#000; }
/* 5047  */
/* 5048  */
/* 5049  */
/* 5050  */ /* ==== blog style 4 ==== */

/* style.css */

/* 5051  */
/* 5052  */
/* 5053  */
/* 5054  */ #tmpbl4 {
/* 5055  */
/* 5056  */     margin-bottom: 33px;
/* 5057  */
/* 5058  */     float: left;
/* 5059  */
/* 5060  */     width: 760px;
/* 5061  */
/* 5062  */     }
/* 5063  */
/* 5064  */
/* 5065  */
/* 5066  */ .tmpbl4-cover {
/* 5067  */
/* 5068  */     float: left;
/* 5069  */
/* 5070  */     width: 760px;
/* 5071  */
/* 5072  */     height: 333px;
/* 5073  */
/* 5074  */     overflow: hidden;
/* 5075  */
/* 5076  */     position: relative;
/* 5077  */
/* 5078  */ 	margin-bottom:30px;
/* 5079  */
/* 5080  */     }
/* 5081  */
/* 5082  */
/* 5083  */
/* 5084  */ .tmpbl4-cover img {
/* 5085  */
/* 5086  */     width: 760px;
/* 5087  */
/* 5088  */     height: 333px;
/* 5089  */
/* 5090  */     }
/* 5091  */
/* 5092  */
/* 5093  */
/* 5094  */ .tmpbl4-wrap {
/* 5095  */
/* 5096  */     background: #fff;
/* 5097  */
/* 5098  */     float: right;
/* 5099  */
/* 5100  */     width: 760px;

/* style.css */

/* 5101  */
/* 5102  */     }
/* 5103  */
/* 5104  */
/* 5105  */
/* 5106  */ .tmpbl4-wrap h2 {
/* 5107  */
/* 5108  */     margin-top: -9px;
/* 5109  */
/* 5110  */     line-height: 1.4em;
/* 5111  */
/* 5112  */     margin-bottom: 11px;
/* 5113  */
/* 5114  */     font-size: 28px;
/* 5115  */
/* 5116  */     }
/* 5117  */
/* 5118  */
/* 5119  */
/* 5120  */ .tmpbl4-wrap h2 a {
/* 5121  */
/* 5122  */     font-weight: 700;
/* 5123  */
/* 5124  */     color: #000;
/* 5125  */
/* 5126  */     }
/* 5127  */
/* 5128  */
/* 5129  */
/* 5130  */ .tmpbl4-wrap p { margin-bottom: 14px !important; color:#666; }
/* 5131  */
/* 5132  */
/* 5133  */
/* 5134  */ #tmpbl4:hover .tmpbl4-wrap p {  color:#000; }
/* 5135  */
/* 5136  */
/* 5137  */
/* 5138  */ /* ==== review ==== */
/* 5139  */
/* 5140  */
/* 5141  */
/* 5142  */ #tmprw {
/* 5143  */
/* 5144  */     margin-bottom: 40px;
/* 5145  */
/* 5146  */     float: left;
/* 5147  */
/* 5148  */     width: 760px;
/* 5149  */
/* 5150  */     height: 333px;

/* style.css */

/* 5151  */
/* 5152  */     position: relative;
/* 5153  */
/* 5154  */     }
/* 5155  */
/* 5156  */
/* 5157  */
/* 5158  */ #tmprw:hover .tmprw-bg {
/* 5159  */
/* 5160  */     background: rgba(0, 0, 0, 0.7);
/* 5161  */
/* 5162  */     width: 760px;
/* 5163  */
/* 5164  */     height: 333px;
/* 5165  */
/* 5166  */     }
/* 5167  */
/* 5168  */
/* 5169  */
/* 5170  */ .tmprw-cover {
/* 5171  */
/* 5172  */     float: left;
/* 5173  */
/* 5174  */     width: 760px;
/* 5175  */
/* 5176  */     height: 333px;
/* 5177  */
/* 5178  */     overflow: hidden;
/* 5179  */
/* 5180  */     position: relative;
/* 5181  */
/* 5182  */     }
/* 5183  */
/* 5184  */
/* 5185  */
/* 5186  */ .tmprw-cover img {
/* 5187  */
/* 5188  */     width: 760px;
/* 5189  */
/* 5190  */     height: 333px;
/* 5191  */
/* 5192  */     }
/* 5193  */
/* 5194  */
/* 5195  */
/* 5196  */ .tmprw-wrap	{
/* 5197  */
/* 5198  */ 	background:rgba(0,0,0,0.7);
/* 5199  */
/* 5200  */ 	width:400px;

/* style.css */

/* 5201  */
/* 5202  */ 	height:273px;
/* 5203  */
/* 5204  */ 	top:30px;
/* 5205  */
/* 5206  */ 	right:30px;
/* 5207  */
/* 5208  */ 	position:absolute;
/* 5209  */
/* 5210  */ }
/* 5211  */
/* 5212  */
/* 5213  */
/* 5214  */ .tmprw-wrap h2 {
/* 5215  */
/* 5216  */     line-height: 1.3em;
/* 5217  */
/* 5218  */     text-transform: uppercase;
/* 5219  */
/* 5220  */     left: 30px;
/* 5221  */
/* 5222  */     width: 340px;
/* 5223  */
/* 5224  */     bottom: 145px;
/* 5225  */
/* 5226  */     position: absolute;
/* 5227  */
/* 5228  */     font-size: 22px;
/* 5229  */
/* 5230  */     }
/* 5231  */
/* 5232  */
/* 5233  */
/* 5234  */ .tmprw-wrap h2 a {
/* 5235  */
/* 5236  */     font-weight: 900;
/* 5237  */
/* 5238  */     color: #fff;
/* 5239  */
/* 5240  */     }
/* 5241  */
/* 5242  */
/* 5243  */
/* 5244  */ .tmprw-wrap h2 a:hover { color: rgba(255, 255, 255, 0.7) }
/* 5245  */
/* 5246  */
/* 5247  */
/* 5248  */ .tmprw-text {
/* 5249  */
/* 5250  */     color: rgba(255, 255, 255, 0.8);

/* style.css */

/* 5251  */
/* 5252  */     left: 30px;
/* 5253  */
/* 5254  */     width: 340px;
/* 5255  */
/* 5256  */     top: 125px;
/* 5257  */
/* 5258  */     position: absolute;
/* 5259  */
/* 5260  */ 	font-size: 14px;
/* 5261  */
/* 5262  */ 	line-height:1.5em;
/* 5263  */
/* 5264  */     }
/* 5265  */
/* 5266  */
/* 5267  */
/* 5268  */ .tmprw-bg {
/* 5269  */
/* 5270  */     background: rgba(0, 0, 0, 0.0);
/* 5271  */
/* 5272  */     left: 0px;
/* 5273  */
/* 5274  */     width: 760px;
/* 5275  */
/* 5276  */     bottom: 0px;
/* 5277  */
/* 5278  */     height: 333px;
/* 5279  */
/* 5280  */     position: absolute;
/* 5281  */
/* 5282  */     }
/* 5283  */
/* 5284  */
/* 5285  */
/* 5286  */ .tmprw-cat {
/* 5287  */
/* 5288  */     font-weight: 600;
/* 5289  */
/* 5290  */     line-height: 15px;
/* 5291  */
/* 5292  */     letter-spacing: 1.7px;
/* 5293  */
/* 5294  */     text-transform: uppercase;
/* 5295  */
/* 5296  */     top: 0px;
/* 5297  */
/* 5298  */     left: 30px;
/* 5299  */
/* 5300  */     color: #fff;

/* style.css */

/* 5301  */
/* 5302  */     height: 15px;
/* 5303  */
/* 5304  */     padding: 4px 10px;
/* 5305  */
/* 5306  */     position: absolute;
/* 5307  */
/* 5308  */     font-size: 9px;
/* 5309  */
/* 5310  */ 	font-weight:900;
/* 5311  */
/* 5312  */     }
/* 5313  */
/* 5314  */
/* 5315  */
/* 5316  */ .tmprw-review {
/* 5317  */
/* 5318  */     background: rgba(255, 255, 255, 0.1);
/* 5319  */
/* 5320  */     right: 30px;
/* 5321  */
/* 5322  */     bottom: 73px;
/* 5323  */
/* 5324  */     padding: 4px 4px 0px 4px;
/* 5325  */
/* 5326  */     position: absolute;
/* 5327  */
/* 5328  */     }
/* 5329  */
/* 5330  */
/* 5331  */
/* 5332  */ .tmprw-note {
/* 5333  */
/* 5334  */     font-weight: 600;
/* 5335  */
/* 5336  */     top: 130px;
/* 5337  */
/* 5338  */     left: 30px;
/* 5339  */
/* 5340  */     color: rgba(255, 255, 255, 0.7);
/* 5341  */
/* 5342  */     position: absolute;
/* 5343  */
/* 5344  */     font-size: 150px;
/* 5345  */
/* 5346  */ 	font-family: "Montserrat";
/* 5347  */
/* 5348  */ 	text-align:center;
/* 5349  */
/* 5350  */ 	width:270px;

/* style.css */

/* 5351  */
/* 5352  */     }
/* 5353  */
/* 5354  */
/* 5355  */
/* 5356  */ .tmprw-qualifying {
/* 5357  */
/* 5358  */ 	    font-weight: 900;
/* 5359  */
/* 5360  */     bottom: 90px;
/* 5361  */
/* 5362  */     left: 30px;
/* 5363  */
/* 5364  */     color: rgba(255, 255, 255, 0.7);
/* 5365  */
/* 5366  */     position: absolute;
/* 5367  */
/* 5368  */     font-size: 30px;
/* 5369  */
/* 5370  */ 	text-align:center;
/* 5371  */
/* 5372  */ 	width:270px;
/* 5373  */
/* 5374  */ 	text-transform: uppercase;
/* 5375  */
/* 5376  */ }
/* 5377  */
/* 5378  */
/* 5379  */
/* 5380  */ #tmprw:hover .tmprw-note, #tmprw:hover .tmprw-qualifying { color: rgba(255, 255, 255, 1) }
/* 5381  */
/* 5382  */
/* 5383  */
/* 5384  */ /* ==== media ==== */
/* 5385  */
/* 5386  */
/* 5387  */
/* 5388  */ .tmpmedia-cat {
/* 5389  */
/* 5390  */     font-weight: 600;
/* 5391  */
/* 5392  */     line-height: 15px;
/* 5393  */
/* 5394  */     letter-spacing: 1.7px;
/* 5395  */
/* 5396  */     text-transform: uppercase;
/* 5397  */
/* 5398  */     top: 0px;
/* 5399  */
/* 5400  */     left: 30px;

/* style.css */

/* 5401  */
/* 5402  */     color: #fff;
/* 5403  */
/* 5404  */     height: 15px;
/* 5405  */
/* 5406  */     padding: 4px 10px;
/* 5407  */
/* 5408  */     position: absolute;
/* 5409  */
/* 5410  */     font-size: 9px;
/* 5411  */
/* 5412  */ 	font-weight:900;
/* 5413  */
/* 5414  */     }
/* 5415  */
/* 5416  */
/* 5417  */
/* 5418  */ /* ==== video ==== */
/* 5419  */
/* 5420  */
/* 5421  */
/* 5422  */ #tmpvd {
/* 5423  */
/* 5424  */     margin-right: 40px;
/* 5425  */
/* 5426  */     margin-bottom: 40px;
/* 5427  */
/* 5428  */     float: left;
/* 5429  */
/* 5430  */     width: 360px;
/* 5431  */
/* 5432  */     height: 275px;
/* 5433  */
/* 5434  */     position: relative;
/* 5435  */
/* 5436  */     }
/* 5437  */
/* 5438  */
/* 5439  */
/* 5440  */ .tmpvd-title {
/* 5441  */
/* 5442  */ 	left: 30px;
/* 5443  */
/* 5444  */     width: 300px;
/* 5445  */
/* 5446  */     bottom: 47px;
/* 5447  */
/* 5448  */     position: absolute;
/* 5449  */
/* 5450  */ 	}

/* style.css */

/* 5451  */
/* 5452  */
/* 5453  */
/* 5454  */ .tmpvd-title h2 {
/* 5455  */
/* 5456  */     line-height: 1.3em;
/* 5457  */
/* 5458  */     text-transform: uppercase;
/* 5459  */
/* 5460  */     font-size: 20px;
/* 5461  */
/* 5462  */ 	margin-top:8px;
/* 5463  */
/* 5464  */     }
/* 5465  */
/* 5466  */
/* 5467  */
/* 5468  */ .tmpvd-title h2 a {
/* 5469  */
/* 5470  */     font-weight: 900;
/* 5471  */
/* 5472  */     color: #fff;
/* 5473  */
/* 5474  */     }
/* 5475  */
/* 5476  */
/* 5477  */
/* 5478  */ .tmpvd-title h2 a:hover { color: rgba(255, 255, 255, 0.7) }
/* 5479  */
/* 5480  */
/* 5481  */
/* 5482  */ .tmpvd-title span {
/* 5483  */
/* 5484  */     font-size: 12px;
/* 5485  */
/* 5486  */ 	color:#fff;
/* 5487  */
/* 5488  */ 	text-transform: uppercase;
/* 5489  */
/* 5490  */ 	font-family: "Montserrat";
/* 5491  */
/* 5492  */ 	border-bottom:3px solid #fff;
/* 5493  */
/* 5494  */ 	padding:1px 3px;
/* 5495  */
/* 5496  */     }
/* 5497  */
/* 5498  */
/* 5499  */
/* 5500  */ .tmpvd-cover {

/* style.css */

/* 5501  */
/* 5502  */     float: left;
/* 5503  */
/* 5504  */     width: 360px;
/* 5505  */
/* 5506  */     height: 275px;
/* 5507  */
/* 5508  */     overflow: hidden;
/* 5509  */
/* 5510  */     position: relative;
/* 5511  */
/* 5512  */     }
/* 5513  */
/* 5514  */
/* 5515  */
/* 5516  */ .tmpvd-cover img {
/* 5517  */
/* 5518  */     width: 360px;
/* 5519  */
/* 5520  */     height: 278px;
/* 5521  */
/* 5522  */     }
/* 5523  */
/* 5524  */
/* 5525  */
/* 5526  */ .tmpvd-bg {
/* 5527  */
/* 5528  */     background: url("images/bg7.png");
/* 5529  */
/* 5530  */     left: 0px;
/* 5531  */
/* 5532  */     width: 360px;
/* 5533  */
/* 5534  */     bottom: 0px;
/* 5535  */
/* 5536  */     height: 275px;
/* 5537  */
/* 5538  */     position: absolute;
/* 5539  */
/* 5540  */     }
/* 5541  */
/* 5542  */
/* 5543  */
/* 5544  */ .tmpvd-play {
/* 5545  */
/* 5546  */     background: url("images/playM.png");
/* 5547  */
/* 5548  */     top: 20px;
/* 5549  */
/* 5550  */     width: 86px;

/* style.css */

/* 5551  */
/* 5552  */     float: left;
/* 5553  */
/* 5554  */     right: 20px;
/* 5555  */
/* 5556  */     height: 86px;
/* 5557  */
/* 5558  */     position: absolute;
/* 5559  */
/* 5560  */ 	opacity: 0.3;
/* 5561  */
/* 5562  */ 	cursor:pointer
/* 5563  */
/* 5564  */     }
/* 5565  */
/* 5566  */
/* 5567  */
/* 5568  */ .tmpvd-play:hover { opacity: 0.6 }
/* 5569  */
/* 5570  */
/* 5571  */
/* 5572  */ #tmpvd:hover .tmpvd-play { opacity: 1 }
/* 5573  */
/* 5574  */
/* 5575  */
/* 5576  */ .tmpvd-play:hover { opacity: 0.7 !important }
/* 5577  */
/* 5578  */
/* 5579  */
/* 5580  */ /* ==== photo ==== */
/* 5581  */
/* 5582  */
/* 5583  */
/* 5584  */ #tmpph {
/* 5585  */
/* 5586  */     margin-right: 40px;
/* 5587  */
/* 5588  */     margin-bottom: 40px;
/* 5589  */
/* 5590  */     float: left;
/* 5591  */
/* 5592  */     width: 360px;
/* 5593  */
/* 5594  */     height: 360px;
/* 5595  */
/* 5596  */     position: relative;
/* 5597  */
/* 5598  */     }
/* 5599  */
/* 5600  */

/* style.css */

/* 5601  */
/* 5602  */
/* 5603  */
/* 5604  */ .tmpph-title {
/* 5605  */
/* 5606  */ 	left: 30px;
/* 5607  */
/* 5608  */     width: 300px;
/* 5609  */
/* 5610  */     bottom: 47px;
/* 5611  */
/* 5612  */     position: absolute;
/* 5613  */
/* 5614  */ }
/* 5615  */
/* 5616  */
/* 5617  */
/* 5618  */ .tmpph-title h2 {
/* 5619  */
/* 5620  */     line-height: 1.3em;
/* 5621  */
/* 5622  */     text-transform: uppercase;
/* 5623  */
/* 5624  */     font-size: 24px;
/* 5625  */
/* 5626  */ 	margin-top:6px;
/* 5627  */
/* 5628  */     }
/* 5629  */
/* 5630  */
/* 5631  */
/* 5632  */ .tmpph-title h2 a {
/* 5633  */
/* 5634  */     font-weight: 900;
/* 5635  */
/* 5636  */     color: #fff;
/* 5637  */
/* 5638  */     }
/* 5639  */
/* 5640  */
/* 5641  */
/* 5642  */ .tmpph-title h2 a:hover { color: rgba(255, 255, 255, 0.7) }
/* 5643  */
/* 5644  */
/* 5645  */
/* 5646  */ .tmpph-title span {
/* 5647  */
/* 5648  */     font-size: 12px;
/* 5649  */
/* 5650  */ 	color: #fff;

/* style.css */

/* 5651  */
/* 5652  */ 	text-transform: uppercase;
/* 5653  */
/* 5654  */ 	font-family: "Montserrat";
/* 5655  */
/* 5656  */ 	border-bottom:3px solid #fff;
/* 5657  */
/* 5658  */ 	padding:1px 3px;
/* 5659  */
/* 5660  */     }
/* 5661  */
/* 5662  */
/* 5663  */
/* 5664  */ .tmpph-cover {
/* 5665  */
/* 5666  */     float: left;
/* 5667  */
/* 5668  */     width: 360px;
/* 5669  */
/* 5670  */     height: 360px;
/* 5671  */
/* 5672  */     overflow: hidden;
/* 5673  */
/* 5674  */     position: relative;
/* 5675  */
/* 5676  */     }
/* 5677  */
/* 5678  */
/* 5679  */
/* 5680  */ .tmpph-cover img {
/* 5681  */
/* 5682  */     width: 360px;
/* 5683  */
/* 5684  */     height: 360px;
/* 5685  */
/* 5686  */     }
/* 5687  */
/* 5688  */
/* 5689  */
/* 5690  */ .tmpph-bg {
/* 5691  */
/* 5692  */     background: url("images/bg8.png");
/* 5693  */
/* 5694  */     left: 0px;
/* 5695  */
/* 5696  */     width: 360px;
/* 5697  */
/* 5698  */     bottom: 0px;
/* 5699  */
/* 5700  */     height: 360px;

/* style.css */

/* 5701  */
/* 5702  */     position: absolute;
/* 5703  */
/* 5704  */     }
/* 5705  */
/* 5706  */
/* 5707  */
/* 5708  */ .tmpph-play {
/* 5709  */
/* 5710  */     background: url("images/photo.png");
/* 5711  */
/* 5712  */     top: 20px;
/* 5713  */
/* 5714  */     width: 86px;
/* 5715  */
/* 5716  */     float: left;
/* 5717  */
/* 5718  */     right: 20px;
/* 5719  */
/* 5720  */     height: 62px;
/* 5721  */
/* 5722  */     position: absolute;
/* 5723  */
/* 5724  */ 	opacity: 0.3;
/* 5725  */
/* 5726  */ 	cursor:pointer
/* 5727  */
/* 5728  */     }
/* 5729  */
/* 5730  */
/* 5731  */
/* 5732  */ #tmpph:hover .tmpph-play { opacity: 1 }
/* 5733  */
/* 5734  */
/* 5735  */
/* 5736  */ .tmpph-play:hover { opacity: 0.7 !important }
/* 5737  */
/* 5738  */
/* 5739  */
/* 5740  */ /* ==== cinema ==== */
/* 5741  */
/* 5742  */
/* 5743  */
/* 5744  */ #shrcinema {
/* 5745  */
/* 5746  */     margin-bottom: 40px;
/* 5747  */
/* 5748  */     width: 760px;
/* 5749  */
/* 5750  */     height: 345px;

/* style.css */

/* 5751  */
/* 5752  */     }
/* 5753  */
/* 5754  */
/* 5755  */
/* 5756  */ .rsDefault .rsTmb h2 {
/* 5757  */
/* 5758  */     text-transform: uppercase;
/* 5759  */
/* 5760  */     color: #fff;
/* 5761  */
/* 5762  */     font-size: 14px;
/* 5763  */
/* 5764  */ 	font-weight:900;
/* 5765  */
/* 5766  */     }
/* 5767  */
/* 5768  */
/* 5769  */
/* 5770  */ .rsABlock {
/* 5771  */
/* 5772  */     line-height: 16px;
/* 5773  */
/* 5774  */     text-transform: uppercase;
/* 5775  */
/* 5776  */     left: 30px;
/* 5777  */
/* 5778  */     bottom: 35px;
/* 5779  */
/* 5780  */     height: 16px;
/* 5781  */
/* 5782  */     z-index: 15;
/* 5783  */
/* 5784  */     position: absolute;
/* 5785  */
/* 5786  */     }
/* 5787  */
/* 5788  */
/* 5789  */
/* 5790  */ .rsABlock span.length {
/* 5791  */
/* 5792  */     background: #000;
/* 5793  */
/* 5794  */     font-weight: 600;
/* 5795  */
/* 5796  */     margin-right: -4px;
/* 5797  */
/* 5798  */     text-transform: uppercase;
/* 5799  */
/* 5800  */     top: 1px;

/* style.css */

/* 5801  */
/* 5802  */     color: #fff;
/* 5803  */
/* 5804  */     padding: 3px 7px;
/* 5805  */
/* 5806  */     position: relative;
/* 5807  */
/* 5808  */     font-size: 14px;
/* 5809  */
/* 5810  */ 	font-family: "Montserrat";
/* 5811  */
/* 5812  */     }
/* 5813  */
/* 5814  */
/* 5815  */
/* 5816  */ .rsABlock span.date {
/* 5817  */
/* 5818  */     background: #fff;
/* 5819  */
/* 5820  */     text-transform: uppercase;
/* 5821  */
/* 5822  */     color: #000;
/* 5823  */
/* 5824  */     padding: 2px 7px;
/* 5825  */
/* 5826  */     font-size: 11px;
/* 5827  */
/* 5828  */ 	font-family: "Montserrat";
/* 5829  */
/* 5830  */     }
/* 5831  */
/* 5832  */
/* 5833  */
/* 5834  */ .rsDefault .rsPlayBtnIcon {
/* 5835  */
/* 5836  */     background: url("images/playB.png");
/* 5837  */
/* 5838  */     width: 128px;
/* 5839  */
/* 5840  */     height: 128px;
/* 5841  */
/* 5842  */     display: block;
/* 5843  */
/* 5844  */     }
/* 5845  */
/* 5846  */
/* 5847  */
/* 5848  */ .rsNavSelected { background: #222 }
/* 5849  */
/* 5850  */

/* style.css */

/* 5851  */
/* 5852  */ .videoGallery .rsTmb { padding: 2px 20px }
/* 5853  */
/* 5854  */
/* 5855  */
/* 5856  */ .videoGallery .rsThumbs .rsThumb {
/* 5857  */
/* 5858  */     border-bottom: 1px solid #222;
/* 5859  */
/* 5860  */     width: 230px;
/* 5861  */
/* 5862  */     height: 86px;
/* 5863  */
/* 5864  */     }
/* 5865  */
/* 5866  */
/* 5867  */
/* 5868  */ /* ==== shortcode title ==== */
/* 5869  */
/* 5870  */
/* 5871  */
/* 5872  */ h3.sh-title {
/* 5873  */
/* 5874  */     font-weight: 400;
/* 5875  */
/* 5876  */     line-height: 23px;
/* 5877  */
/* 5878  */     margin-bottom: 26px;
/* 5879  */
/* 5880  */ 	margin-top:0px;
/* 5881  */
/* 5882  */     text-transform: uppercase;
/* 5883  */
/* 5884  */     letter-spacing: 0.5px;
/* 5885  */
/* 5886  */     top: -3px;
/* 5887  */
/* 5888  */     color: #000;
/* 5889  */
/* 5890  */     height: 23px;
/* 5891  */
/* 5892  */     display: inline-block;
/* 5893  */
/* 5894  */     position: relative;
/* 5895  */
/* 5896  */     font-size: 24px;
/* 5897  */
/* 5898  */     }
/* 5899  */
/* 5900  */

/* style.css */

/* 5901  */
/* 5902  */ /* -------------------------------wizedesign--
/* 5903  *|
/* 5904  *|      15. WIDGET
/* 5905  *|
/* 5906  *|    ------------------------------------------- */
/* 5907  */
/* 5908  */
/* 5909  */
/* 5910  */ .widget {
/* 5911  */
/* 5912  */     margin-top: 0px;
/* 5913  */
/* 5914  */     margin-bottom: 20px;
/* 5915  */
/* 5916  */     width: 320px;
/* 5917  */
/* 5918  */     padding: 40px;
/* 5919  */
/* 5920  */     position: relative;
/* 5921  */
/* 5922  */     }
/* 5923  */
/* 5924  */
/* 5925  */
/* 5926  */ .widget:last-child { margin-bottom: -40px; }
/* 5927  */
/* 5928  */
/* 5929  */
/* 5930  */ .widget img.wp-smiley { width: auto }
/* 5931  */
/* 5932  */
/* 5933  */
/* 5934  */ .widget .wp-caption { width: 304px }
/* 5935  */
/* 5936  */
/* 5937  */
/* 5938  */ .widget select { width: 320px }
/* 5939  */
/* 5940  */
/* 5941  */
/* 5942  */ .widget iframe { width: 320px }
/* 5943  */
/* 5944  */
/* 5945  */
/* 5946  */ .widget p img { width: 320px }
/* 5947  */
/* 5948  */
/* 5949  */
/* 5950  */ .widget ul { padding: 0 0 0 0 }

/* style.css */

/* 5951  */
/* 5952  */
/* 5953  */
/* 5954  */ .widget ul ul { margin-left: 20px }
/* 5955  */
/* 5956  */
/* 5957  */
/* 5958  */ .widget ul ul li { margin-top: 12px }
/* 5959  */
/* 5960  */
/* 5961  */
/* 5962  */ /* ==== title ==== */
/* 5963  */
/* 5964  */
/* 5965  */
/* 5966  */ h3.wd-title {
/* 5967  */
/* 5968  */ margin-bottom:21px;
/* 5969  */
/* 5970  */ margin-top:-47px;
/* 5971  */
/* 5972  */ text-transform: uppercase;
/* 5973  */
/* 5974  */ font-size:24px;
/* 5975  */
/* 5976  */ font-weight:400;
/* 5977  */
/* 5978  */     }
/* 5979  */
/* 5980  */
/* 5981  */
/* 5982  */ h3.wd-title a {
/* 5983  */
/* 5984  */     color: #000;
/* 5985  */
/* 5986  */ 	font-weight:800;
/* 5987  */
/* 5988  */     }
/* 5989  */
/* 5990  */
/* 5991  */
/* 5992  */ h3.wd-title a:hover { color: #666 }
/* 5993  */
/* 5994  */
/* 5995  */
/* 5996  */ /* ==== archives list / dropdown ==== */
/* 5997  */
/* 5998  */
/* 5999  */
/* 6000  */ .widget_archive ul { margin-bottom: 0 }

/* style.css */

/* 6001  */
/* 6002  */
/* 6003  */
/* 6004  */ .widget_archive li {
/* 6005  */
/* 6006  */     list-style: none;
/* 6007  */
/* 6008  */     font-weight: 700;
/* 6009  */
/* 6010  */     margin-bottom: 11px;
/* 6011  */
/* 6012  */     font-size: 12px;
/* 6013  */
/* 6014  */     }
/* 6015  */
/* 6016  */
/* 6017  */
/* 6018  */ .widget_archive li:last-child {
/* 6019  */
/* 6020  */     margin-bottom: -3px;
/* 6021  */
/* 6022  */     }
/* 6023  */
/* 6024  */
/* 6025  */
/* 6026  */ .widget_archive li a {
/* 6027  */
/* 6028  */     margin-right: 4px;
/* 6029  */
/* 6030  */     font-size: 16px;
/* 6031  */
/* 6032  */     }
/* 6033  */
/* 6034  */
/* 6035  */
/* 6036  */ .widget_archive label {
/* 6037  */
/* 6038  */     margin-top: -2px;
/* 6039  */
/* 6040  */     font-weight: 700;
/* 6041  */
/* 6042  */     margin-bottom: 6px;
/* 6043  */
/* 6044  */     float: left;
/* 6045  */
/* 6046  */     }
/* 6047  */
/* 6048  */
/* 6049  */
/* 6050  */ /* ==== calendar ==== */

/* style.css */

/* 6051  */
/* 6052  */
/* 6053  */
/* 6054  */ .widget_calendar #calendar_wrap {
/* 6055  */
/* 6056  */     margin-top: 76px;
/* 6057  */
/* 6058  */ 	margin-bottom:-30px;
/* 6059  */
/* 6060  */     overflow: hidden;
/* 6061  */
/* 6062  */     }
/* 6063  */
/* 6064  */
/* 6065  */
/* 6066  */ .widget_calendar #wp-calendar caption {
/* 6067  */
/* 6068  */     text-align: center;
/* 6069  */
/* 6070  */     background: #f1f1f1;
/* 6071  */
/* 6072  */     line-height: 15px;
/* 6073  */
/* 6074  */     margin-bottom: 10px;
/* 6075  */
/* 6076  */     text-transform: uppercase;
/* 6077  */
/* 6078  */     top: 46px;
/* 6079  */
/* 6080  */     left: 40px;
/* 6081  */
/* 6082  */     color: #c5c5c5;
/* 6083  */
/* 6084  */     width: 320px;
/* 6085  */
/* 6086  */     height: 15px;
/* 6087  */
/* 6088  */     padding: 15px 0 16px 0;
/* 6089  */
/* 6090  */     position: absolute;
/* 6091  */
/* 6092  */     font-size: 16px;
/* 6093  */
/* 6094  */ 	font-family: "Montserrat";
/* 6095  */
/* 6096  */     }
/* 6097  */
/* 6098  */
/* 6099  */
/* 6100  */ .widget_calendar table { }

/* style.css */

/* 6101  */
/* 6102  */
/* 6103  */
/* 6104  */ .widget_calendar table td { border: none }
/* 6105  */
/* 6106  */
/* 6107  */
/* 6108  */ .widget_calendar table#wp-calendar { border: none }
/* 6109  */
/* 6110  */
/* 6111  */
/* 6112  */ .widget_calendar thead>tr>th {
/* 6113  */
/* 6114  */     text-align: center;
/* 6115  */
/* 6116  */     color: #000;
/* 6117  */
/* 6118  */     padding: 4px 14px;
/* 6119  */
/* 6120  */     font-size: 16px;
/* 6121  */
/* 6122  */     }
/* 6123  */
/* 6124  */
/* 6125  */
/* 6126  */ .widget_calendar tbody>tr>td {
/* 6127  */
/* 6128  */     text-align: center;
/* 6129  */
/* 6130  */     line-height: 30px;
/* 6131  */
/* 6132  */     height: 30px;
/* 6133  */
/* 6134  */ 	width:50px;
/* 6135  */
/* 6136  */     padding: 2px;
/* 6137  */
/* 6138  */ 	font-family: "Montserrat";
/* 6139  */
/* 6140  */ 	font-size: 14px;
/* 6141  */
/* 6142  */     }
/* 6143  */
/* 6144  */
/* 6145  */
/* 6146  */ .widget_calendar tbody>tr>td a { font-weight: 700 }
/* 6147  */
/* 6148  */
/* 6149  */
/* 6150  */ .widget_calendar tbody>tr>td#today {

/* style.css */

/* 6151  */
/* 6152  */     font-weight: 700;
/* 6153  */
/* 6154  */     font-size: 18px;
/* 6155  */
/* 6156  */     }
/* 6157  */
/* 6158  */
/* 6159  */
/* 6160  */ .widget_calendar tfoot {
/* 6161  */
/* 6162  */     top: 0px;
/* 6163  */
/* 6164  */     left: 0px;
/* 6165  */
/* 6166  */     width: 320px;
/* 6167  */
/* 6168  */     position: absolute;
/* 6169  */
/* 6170  */     }
/* 6171  */
/* 6172  */
/* 6173  */
/* 6174  */ .widget_calendar tfoot>tr>td#next {
/* 6175  */
/* 6176  */     top: 56px;
/* 6177  */
/* 6178  */     right: 55px;
/* 6179  */
/* 6180  */     padding: 0;
/* 6181  */
/* 6182  */     position: absolute;
/* 6183  */
/* 6184  */     }
/* 6185  */
/* 6186  */
/* 6187  */
/* 6188  */ .widget_calendar tfoot>tr>td#prev a, .widget_calendar tfoot>tr>td#next a {
/* 6189  */
/* 6190  */     background: #000;
/* 6191  */
/* 6192  */     font-weight: 700;
/* 6193  */
/* 6194  */     text-height: 15px;
/* 6195  */
/* 6196  */     border-radius: 3px;
/* 6197  */
/* 6198  */     text-transform: uppercase;
/* 6199  */
/* 6200  */     color: #fff;

/* style.css */

/* 6201  */
/* 6202  */     height: 15px;
/* 6203  */
/* 6204  */     padding: 2px 7px;
/* 6205  */
/* 6206  */     font-size: 11px;
/* 6207  */
/* 6208  */     }
/* 6209  */
/* 6210  */
/* 6211  */
/* 6212  */ .widget_calendar tfoot>tr>td#prev a:hover, .widget_calendar tfoot>tr>td#next a:hover { color: #fff }
/* 6213  */
/* 6214  */
/* 6215  */
/* 6216  */ .widget_calendar tfoot>tr>td#prev {
/* 6217  */
/* 6218  */     top: 56px;
/* 6219  */
/* 6220  */     left: 55px;
/* 6221  */
/* 6222  */     padding: 0;
/* 6223  */
/* 6224  */     position: absolute;
/* 6225  */
/* 6226  */     }
/* 6227  */
/* 6228  */
/* 6229  */
/* 6230  */ .footer-col .widget_calendar #calendar_wrap {
/* 6231  */
/* 6232  */     margin-top: 95px;
/* 6233  */
/* 6234  */ 	margin-bottom:-30px;
/* 6235  */
/* 6236  */     overflow: hidden;
/* 6237  */
/* 6238  */     }
/* 6239  */
/* 6240  */
/* 6241  */
/* 6242  */ .footer-col .widget_calendar #wp-calendar caption {
/* 6243  */
/* 6244  */     text-align: center;
/* 6245  */
/* 6246  */     background: #f1f1f1;
/* 6247  */
/* 6248  */     line-height: 15px;
/* 6249  */
/* 6250  */     margin-bottom: 10px;

/* style.css */

/* 6251  */
/* 6252  */     text-transform: uppercase;
/* 6253  */
/* 6254  */     top: 20px;
/* 6255  */
/* 6256  */     left: 20px;
/* 6257  */
/* 6258  */     color: #c5c5c5;
/* 6259  */
/* 6260  */     width: 320px;
/* 6261  */
/* 6262  */     height: 15px;
/* 6263  */
/* 6264  */     padding: 15px 0 16px 0;
/* 6265  */
/* 6266  */     position: absolute;
/* 6267  */
/* 6268  */     font-size: 16px;
/* 6269  */
/* 6270  */ 	font-family: "Montserrat";
/* 6271  */
/* 6272  */     }
/* 6273  */
/* 6274  */
/* 6275  */
/* 6276  */ .footer-col .widget_calendar tfoot>tr>td#prev {
/* 6277  */
/* 6278  */     top: 31px;
/* 6279  */
/* 6280  */     left: 35px;
/* 6281  */
/* 6282  */     padding: 0;
/* 6283  */
/* 6284  */     position: absolute;
/* 6285  */
/* 6286  */     }
/* 6287  */
/* 6288  */
/* 6289  */
/* 6290  */ .footer-col .widget_calendar tfoot>tr>td#next {
/* 6291  */
/* 6292  */     top: 31px;
/* 6293  */
/* 6294  */     right: 35px;
/* 6295  */
/* 6296  */     padding: 0;
/* 6297  */
/* 6298  */     position: absolute;
/* 6299  */
/* 6300  */     }

/* style.css */

/* 6301  */
/* 6302  */
/* 6303  */
/* 6304  */ .footer-col .widget_calendar thead>tr>th {
/* 6305  */
/* 6306  */     text-align: center;
/* 6307  */
/* 6308  */     color: #fff;
/* 6309  */
/* 6310  */     padding: 4px 14px;
/* 6311  */
/* 6312  */     font-size: 16px;
/* 6313  */
/* 6314  */     }
/* 6315  */
/* 6316  */
/* 6317  */
/* 6318  */ /* ==== categories list / dropdown ==== */
/* 6319  */
/* 6320  */
/* 6321  */
/* 6322  */ .widget_categories ul { margin-bottom: 0 }
/* 6323  */
/* 6324  */
/* 6325  */
/* 6326  */ .widget_categories li {
/* 6327  */
/* 6328  */     list-style: none;
/* 6329  */
/* 6330  */     font-weight: 700;
/* 6331  */
/* 6332  */     margin-bottom: 11px;
/* 6333  */
/* 6334  */     font-size: 12px;
/* 6335  */
/* 6336  */     }
/* 6337  */
/* 6338  */
/* 6339  */
/* 6340  */ .widget_categories li:last-child {
/* 6341  */
/* 6342  */     margin-bottom: -3px;
/* 6343  */
/* 6344  */     }
/* 6345  */
/* 6346  */
/* 6347  */
/* 6348  */ .widget_categories li a {
/* 6349  */
/* 6350  */     margin-right: 4px;

/* style.css */

/* 6351  */
/* 6352  */     font-size: 16px;
/* 6353  */
/* 6354  */     }
/* 6355  */
/* 6356  */
/* 6357  */
/* 6358  */ .widget_categories label {
/* 6359  */
/* 6360  */     margin-top: -2px;
/* 6361  */
/* 6362  */     font-weight: 700;
/* 6363  */
/* 6364  */     margin-bottom: 6px;
/* 6365  */
/* 6366  */     float: left;
/* 6367  */
/* 6368  */     }
/* 6369  */
/* 6370  */
/* 6371  */
/* 6372  */ /* ==== pages ==== */
/* 6373  */
/* 6374  */
/* 6375  */
/* 6376  */ .widget_pages ul { margin-bottom: 0 }
/* 6377  */
/* 6378  */
/* 6379  */
/* 6380  */ .widget_pages li {
/* 6381  */
/* 6382  */     list-style: none;
/* 6383  */
/* 6384  */     font-weight: 700;
/* 6385  */
/* 6386  */     margin-bottom: 11px;
/* 6387  */
/* 6388  */     font-size: 12px;
/* 6389  */
/* 6390  */     }
/* 6391  */
/* 6392  */
/* 6393  */
/* 6394  */ .widget_pages li:last-child { margin-bottom: -3px }
/* 6395  */
/* 6396  */
/* 6397  */
/* 6398  */ .widget_pages li a {
/* 6399  */
/* 6400  */     margin-right: 4px;

/* style.css */

/* 6401  */
/* 6402  */     font-size: 16px;
/* 6403  */
/* 6404  */     }
/* 6405  */
/* 6406  */
/* 6407  */
/* 6408  */ /* ==== meta ==== */
/* 6409  */
/* 6410  */
/* 6411  */
/* 6412  */ .widget_meta ul { margin-bottom: 0 }
/* 6413  */
/* 6414  */
/* 6415  */
/* 6416  */ .widget_meta li {
/* 6417  */
/* 6418  */     list-style: none;
/* 6419  */
/* 6420  */     font-weight: 700;
/* 6421  */
/* 6422  */     margin-bottom: 11px;
/* 6423  */
/* 6424  */     }
/* 6425  */
/* 6426  */
/* 6427  */
/* 6428  */ .widget_meta li {
/* 6429  */
/* 6430  */     list-style: none;
/* 6431  */
/* 6432  */     font-weight: 700;
/* 6433  */
/* 6434  */     margin-bottom: 11px;
/* 6435  */
/* 6436  */     font-size: 12px;
/* 6437  */
/* 6438  */     }
/* 6439  */
/* 6440  */
/* 6441  */
/* 6442  */ .widget_meta li:last-child {
/* 6443  */
/* 6444  */     margin-bottom: -3px;
/* 6445  */
/* 6446  */     }
/* 6447  */
/* 6448  */
/* 6449  */
/* 6450  */ .widget_meta li a {

/* style.css */

/* 6451  */
/* 6452  */     margin-right: 4px;
/* 6453  */
/* 6454  */     font-size: 16px;
/* 6455  */
/* 6456  */     }
/* 6457  */
/* 6458  */
/* 6459  */
/* 6460  */ .widget_meta li a abbr { border-bottom: 0 }
/* 6461  */
/* 6462  */
/* 6463  */
/* 6464  */ /* ==== recent comments ==== */
/* 6465  */
/* 6466  */
/* 6467  */
/* 6468  */ .widget_recent_comments a.url { font-weight: 500 }
/* 6469  */
/* 6470  */
/* 6471  */
/* 6472  */ .widget_recent_comments span { text-transform: none }
/* 6473  */
/* 6474  */
/* 6475  */
/* 6476  */ .widget_recent_comments li {
/* 6477  */
/* 6478  */     text-align: left;
/* 6479  */
/* 6480  */     line-height: 1.6em;
/* 6481  */
/* 6482  */     font-weight: 500;
/* 6483  */
/* 6484  */     margin-bottom: 15px;
/* 6485  */
/* 6486  */     list-style-type: none;
/* 6487  */
/* 6488  */     width: 320px;
/* 6489  */
/* 6490  */ 	padding-bottom:15px;
/* 6491  */
/* 6492  */ 	border-bottom:1px solid #f1f1f1;
/* 6493  */
/* 6494  */     }
/* 6495  */
/* 6496  */
/* 6497  */
/* 6498  */ .widget_recent_comments li a { font-weight: 700 }
/* 6499  */
/* 6500  */

/* style.css */

/* 6501  */
/* 6502  */ .widget_recent_comments li:last-child {
/* 6503  */
/* 6504  */     border-bottom:0;
/* 6505  */
/* 6506  */ 	margin-bottom: -17px;
/* 6507  */
/* 6508  */     }
/* 6509  */
/* 6510  */
/* 6511  */
/* 6512  */ .widget_recent_comments ul {
/* 6513  */
/* 6514  */     list-style-type: circle;
/* 6515  */
/* 6516  */     list-style-image: url("images/comSD.png");
/* 6517  */
/* 6518  */     list-style-position: inside;
/* 6519  */
/* 6520  */     overflow: hidden;
/* 6521  */
/* 6522  */ 	margin-bottom: 0;
/* 6523  */
/* 6524  */     }
/* 6525  */
/* 6526  */
/* 6527  */
/* 6528  */ .footer-col .widget_recent_comments li {
/* 6529  */
/* 6530  */     text-align: left;
/* 6531  */
/* 6532  */     line-height: 1.6em;
/* 6533  */
/* 6534  */     font-weight: 500;
/* 6535  */
/* 6536  */     margin-bottom: 15px;
/* 6537  */
/* 6538  */     list-style-type: none;
/* 6539  */
/* 6540  */     width: 320px;
/* 6541  */
/* 6542  */ 	padding-bottom:15px;
/* 6543  */
/* 6544  */ 	border-bottom:1px solid #222;
/* 6545  */
/* 6546  */     }
/* 6547  */
/* 6548  */
/* 6549  */
/* 6550  */ .footer-col .widget_recent_comments li:last-child {

/* style.css */

/* 6551  */
/* 6552  */     border-bottom:0;
/* 6553  */
/* 6554  */ 	margin-bottom: -17px;
/* 6555  */
/* 6556  */     }
/* 6557  */
/* 6558  */
/* 6559  */
/* 6560  */ .footer-col .widget_recent_comments ul {
/* 6561  */
/* 6562  */     list-style-type: circle;
/* 6563  */
/* 6564  */     list-style-image: url("images/comSL.png");
/* 6565  */
/* 6566  */     list-style-position: inside;
/* 6567  */
/* 6568  */     overflow: hidden;
/* 6569  */
/* 6570  */ 	margin-bottom: 0;
/* 6571  */
/* 6572  */     }
/* 6573  */
/* 6574  */
/* 6575  */
/* 6576  */ /* ==== recent posts ==== */
/* 6577  */
/* 6578  */
/* 6579  */
/* 6580  */ .widget_recent_entries ul {
/* 6581  */
/* 6582  */     list-style-type: circle;
/* 6583  */
/* 6584  */     list-style-image: url("images/writeSD.png");
/* 6585  */
/* 6586  */     list-style-position: inside;
/* 6587  */
/* 6588  */     overflow: hidden;
/* 6589  */
/* 6590  */ 	margin-bottom: 0;
/* 6591  */
/* 6592  */     }
/* 6593  */
/* 6594  */
/* 6595  */
/* 6596  */ .widget_recent_entries li {
/* 6597  */
/* 6598  */     text-align: left;
/* 6599  */
/* 6600  */     line-height: 1.6em;

/* style.css */

/* 6601  */
/* 6602  */     font-weight: 500;
/* 6603  */
/* 6604  */     margin-bottom: 15px;
/* 6605  */
/* 6606  */     list-style-type: none;
/* 6607  */
/* 6608  */     width: 320px;
/* 6609  */
/* 6610  */ 	padding-bottom:15px;
/* 6611  */
/* 6612  */ 	border-bottom:1px solid #f1f1f1;
/* 6613  */
/* 6614  */     }
/* 6615  */
/* 6616  */
/* 6617  */
/* 6618  */ .widget_recent_entries li a { font-weight: 700 }
/* 6619  */
/* 6620  */
/* 6621  */
/* 6622  */ .widget_recent_entries li:last-child {
/* 6623  */
/* 6624  */     border-bottom:0;
/* 6625  */
/* 6626  */ 	margin-bottom: -17px;
/* 6627  */
/* 6628  */     }
/* 6629  */
/* 6630  */
/* 6631  */
/* 6632  */ .footer-col .widget_recent_entries li {
/* 6633  */
/* 6634  */     text-align: left;
/* 6635  */
/* 6636  */     line-height: 1.6em;
/* 6637  */
/* 6638  */     font-weight: 500;
/* 6639  */
/* 6640  */     margin-bottom: 15px;
/* 6641  */
/* 6642  */     list-style-type: none;
/* 6643  */
/* 6644  */     width: 320px;
/* 6645  */
/* 6646  */ 	padding-bottom:15px;
/* 6647  */
/* 6648  */ 	border-bottom:1px solid #222;
/* 6649  */
/* 6650  */     }

/* style.css */

/* 6651  */
/* 6652  */
/* 6653  */
/* 6654  */ .footer-col .widget_recent_entries li:last-child {
/* 6655  */
/* 6656  */     border-bottom:0;
/* 6657  */
/* 6658  */ 	margin-bottom: -17px;
/* 6659  */
/* 6660  */     }
/* 6661  */
/* 6662  */
/* 6663  */
/* 6664  */ .footer-col .widget_recent_entries ul {
/* 6665  */
/* 6666  */     list-style-type: circle;
/* 6667  */
/* 6668  */     list-style-image: url("images/writeSL.png");
/* 6669  */
/* 6670  */     list-style-position: inside;
/* 6671  */
/* 6672  */     overflow: hidden;
/* 6673  */
/* 6674  */ 	margin-bottom: 0;
/* 6675  */
/* 6676  */     }
/* 6677  */
/* 6678  */
/* 6679  */
/* 6680  */ /* ==== rss ==== */
/* 6681  */
/* 6682  */
/* 6683  */
/* 6684  */ .widget_rss .rsswidget img {
/* 6685  */
/* 6686  */     margin-right: 2px;
/* 6687  */
/* 6688  */     top: -1px;
/* 6689  */
/* 6690  */     position: relative;
/* 6691  */
/* 6692  */     }
/* 6693  */
/* 6694  */
/* 6695  */
/* 6696  */ .widget_rss .rsswidget img:hover { opacity: 0.7 }
/* 6697  */
/* 6698  */
/* 6699  */
/* 6700  */ .widget_rss ul {

/* style.css */

/* 6701  */
/* 6702  */     list-style-type: circle;
/* 6703  */
/* 6704  */     list-style-image: url("images/rssD.png");
/* 6705  */
/* 6706  */     list-style-position: inside;
/* 6707  */
/* 6708  */     overflow: hidden;
/* 6709  */
/* 6710  */ 	margin-bottom: 0;
/* 6711  */
/* 6712  */     }
/* 6713  */
/* 6714  */
/* 6715  */
/* 6716  */ .widget_rss li {
/* 6717  */
/* 6718  */     text-align: left;
/* 6719  */
/* 6720  */     font-weight: 500;
/* 6721  */
/* 6722  */     margin-bottom: 15px;
/* 6723  */
/* 6724  */     list-style-type: none;
/* 6725  */
/* 6726  */     width: 320px;
/* 6727  */
/* 6728  */ 	padding-bottom:15px;
/* 6729  */
/* 6730  */ 	border-bottom:1px solid #f1f1f1;
/* 6731  */
/* 6732  */ 	color:#666;
/* 6733  */
/* 6734  */     }
/* 6735  */
/* 6736  */
/* 6737  */
/* 6738  */ .widget_rss li a { font-weight: 700 }
/* 6739  */
/* 6740  */
/* 6741  */
/* 6742  */ .widget_rss li span.rss-date {
/* 6743  */
/* 6744  */     font-weight: 700;
/* 6745  */
/* 6746  */ 	display:block;
/* 6747  */
/* 6748  */ 	font-size:10px;
/* 6749  */
/* 6750  */ 	font-family: "Montserrat";

/* style.css */

/* 6751  */
/* 6752  */ 	margin-top:3px;
/* 6753  */
/* 6754  */ 	margin-bottom:3px;
/* 6755  */
/* 6756  */     }
/* 6757  */
/* 6758  */
/* 6759  */
/* 6760  */ .widget_rss li:last-child {
/* 6761  */
/* 6762  */     border-bottom:0;
/* 6763  */
/* 6764  */ 	margin-bottom: -18px;
/* 6765  */
/* 6766  */     }
/* 6767  */
/* 6768  */
/* 6769  */
/* 6770  */ .widget_rss li .rssSummary { color:#666; font-weight:400; margin-bottom:6px; }
/* 6771  */
/* 6772  */
/* 6773  */
/* 6774  */ .widget_rss li:hover .rssSummary { color:#000 }
/* 6775  */
/* 6776  */
/* 6777  */
/* 6778  */ .footer-col .widget_rss li {
/* 6779  */
/* 6780  */     text-align: left;
/* 6781  */
/* 6782  */     line-height: 1.6em;
/* 6783  */
/* 6784  */     font-weight: 500;
/* 6785  */
/* 6786  */     margin-bottom: 15px;
/* 6787  */
/* 6788  */     list-style-type: none;
/* 6789  */
/* 6790  */     width: 320px;
/* 6791  */
/* 6792  */ 	padding-bottom:15px;
/* 6793  */
/* 6794  */ 	border-bottom:1px solid #222;
/* 6795  */
/* 6796  */     }
/* 6797  */
/* 6798  */
/* 6799  */
/* 6800  */ .footer-col .widget_rss li:last-child {

/* style.css */

/* 6801  */
/* 6802  */     border-bottom:0;
/* 6803  */
/* 6804  */ 	margin-bottom: -17px;
/* 6805  */
/* 6806  */     }
/* 6807  */
/* 6808  */
/* 6809  */
/* 6810  */ .footer-col .widget_rss ul {
/* 6811  */
/* 6812  */     list-style-type: circle;
/* 6813  */
/* 6814  */     list-style-image: url("images/rssL.png");
/* 6815  */
/* 6816  */     list-style-position: inside;
/* 6817  */
/* 6818  */     overflow: hidden;
/* 6819  */
/* 6820  */ 	margin-bottom: 0;
/* 6821  */
/* 6822  */     }
/* 6823  */
/* 6824  */
/* 6825  */
/* 6826  */ .footer-col .widget_rss li .rssSummary { color:#ccc; font-weight:400; margin-bottom:6px; }
/* 6827  */
/* 6828  */
/* 6829  */
/* 6830  */ .footer-col .widget_rss li:hover .rssSummary { color:#fff; }
/* 6831  */
/* 6832  */
/* 6833  */
/* 6834  */ /* ==== search ==== */
/* 6835  */
/* 6836  */
/* 6837  */
/* 6838  */ .widget_search #search-button {
/* 6839  */
/* 6840  */     background: #000 url("images/searchB.png");
/* 6841  */
/* 6842  */     left: 278px;
/* 6843  */
/* 6844  */     width: 42px;
/* 6845  */
/* 6846  */     height: 42px;
/* 6847  */
/* 6848  */     cursor: pointer;
/* 6849  */
/* 6850  */     border: none;

/* style.css */

/* 6851  */
/* 6852  */     bottom: -3px;
/* 6853  */
/* 6854  */     position: relative;
/* 6855  */
/* 6856  */     }
/* 6857  */
/* 6858  */
/* 6859  */
/* 6860  */ .widget_search #searchinput {
/* 6861  */
/* 6862  */     line-height: 30px;
/* 6863  */
/* 6864  */     font-weight: 400;
/* 6865  */
/* 6866  */     text-transform: uppercase;
/* 6867  */
/* 6868  */     width: 241px;
/* 6869  */
/* 6870  */     color: #999;
/* 6871  */
/* 6872  */     float: left;
/* 6873  */
/* 6874  */     height: 30px;
/* 6875  */
/* 6876  */     border: 1px solid #e5e5e5;
/* 6877  */
/* 6878  */     padding: 5px 15px;
/* 6879  */
/* 6880  */     position: absolute;
/* 6881  */
/* 6882  */     overflow: hidden;
/* 6883  */
/* 6884  */     font-size: 14px;
/* 6885  */
/* 6886  */ 	background:#fafafa;
/* 6887  */
/* 6888  */ 	margin-top:3px;
/* 6889  */
/* 6890  */     }
/* 6891  */
/* 6892  */
/* 6893  */
/* 6894  */ .widget_search	#searchform { margin-bottom:3px }
/* 6895  */
/* 6896  */
/* 6897  */
/* 6898  */ /* ==== tag cloud ==== */
/* 6899  */
/* 6900  */

/* style.css */

/* 6901  */
/* 6902  */ .widget_tag_cloud { margin-bottom: 20px }
/* 6903  */
/* 6904  */
/* 6905  */
/* 6906  */ .widget_tag_cloud .tagcloud a {
/* 6907  */
/* 6908  */     background: #000;
/* 6909  */
/* 6910  */     margin-left: 0px;
/* 6911  */
/* 6912  */     line-height: 21px;
/* 6913  */
/* 6914  */     margin-top: 3px;
/* 6915  */
/* 6916  */     color: #fff;
/* 6917  */
/* 6918  */     height: 21px;
/* 6919  */
/* 6920  */     display: inline-block;
/* 6921  */
/* 6922  */     padding: 3px 9px;
/* 6923  */
/* 6924  */ 	border-radius:1.5px;
/* 6925  */
/* 6926  */     font-size: 12px !important;
/* 6927  */
/* 6928  */     }
/* 6929  */
/* 6930  */
/* 6931  */
/* 6932  */ .widget_tag_cloud .tagcloud a:hover {
/* 6933  */
/* 6934  */     text-decoration: none;
/* 6935  */
/* 6936  */     color: #fff;
/* 6937  */
/* 6938  */     }
/* 6939  */
/* 6940  */
/* 6941  */
/* 6942  */ .footer-col .widget_tag_cloud .tagcloud a {
/* 6943  */
/* 6944  */     background: #fff;
/* 6945  */
/* 6946  */     margin-left: 0px;
/* 6947  */
/* 6948  */     line-height: 21px;
/* 6949  */
/* 6950  */     margin-top: 3px;

/* style.css */

/* 6951  */
/* 6952  */     color: #000;
/* 6953  */
/* 6954  */     height: 21px;
/* 6955  */
/* 6956  */     display: inline-block;
/* 6957  */
/* 6958  */     padding: 3px 9px;
/* 6959  */
/* 6960  */ 	border-radius:1.5px;
/* 6961  */
/* 6962  */     font-size: 12px !important;
/* 6963  */
/* 6964  */     }
/* 6965  */
/* 6966  */
/* 6967  */
/* 6968  */ .footer-col .widget_tag_cloud .tagcloud a:hover {
/* 6969  */
/* 6970  */ 	color: #fff;
/* 6971  */
/* 6972  */     }
/* 6973  */
/* 6974  */
/* 6975  */
/* 6976  */ /* ==== nav menu ==== */
/* 6977  */
/* 6978  */
/* 6979  */
/* 6980  */ .widget_nav_menu ul {
/* 6981  */
/* 6982  */ 	margin-bottom: 0;
/* 6983  */
/* 6984  */     }
/* 6985  */
/* 6986  */
/* 6987  */
/* 6988  */ .widget_nav_menu li {
/* 6989  */
/* 6990  */     list-style: none;
/* 6991  */
/* 6992  */     font-weight: 700;
/* 6993  */
/* 6994  */     margin-bottom: 11px;
/* 6995  */
/* 6996  */     font-size: 14px;
/* 6997  */
/* 6998  */     }
/* 6999  */
/* 7000  */

/* style.css */

/* 7001  */
/* 7002  */ .widget_nav_menu li:last-child {
/* 7003  */
/* 7004  */     margin-bottom: -3px;
/* 7005  */
/* 7006  */     }
/* 7007  */
/* 7008  */
/* 7009  */
/* 7010  */ .widget_nav_menu li a { font-size: 16px }
/* 7011  */
/* 7012  */
/* 7013  */
/* 7014  */ /* ==== recent posts #1 ==== */
/* 7015  */
/* 7016  */
/* 7017  */
/* 7018  */ #wd-tmpbl1 {
/* 7019  */
/* 7020  */ 	margin-bottom: -30px;
/* 7021  */
/* 7022  */ 	margin-top: 24px
/* 7023  */
/* 7024  */ 	}
/* 7025  */
/* 7026  */
/* 7027  */
/* 7028  */ .wd-tmpbl1-posts {
/* 7029  */
/* 7030  */     line-height: 1.6em;
/* 7031  */
/* 7032  */     margin-bottom: 15px;
/* 7033  */
/* 7034  */     width: 320px;
/* 7035  */
/* 7036  */     height: 93px;
/* 7037  */
/* 7038  */ 	padding-bottom:15px;
/* 7039  */
/* 7040  */     }
/* 7041  */
/* 7042  */
/* 7043  */
/* 7044  */ .wd-tmpbl1-posts img {
/* 7045  */
/* 7046  */     margin-right: 15px;
/* 7047  */
/* 7048  */     float: left;
/* 7049  */
/* 7050  */     width: 93px;

/* style.css */

/* 7051  */
/* 7052  */     height: 93px;
/* 7053  */
/* 7054  */     overflow: hidden;
/* 7055  */
/* 7056  */     }
/* 7057  */
/* 7058  */
/* 7059  */
/* 7060  */ .wd-tmpbl1-posts a {
/* 7061  */
/* 7062  */     font-weight: 700;
/* 7063  */
/* 7064  */     font-size: 16px;
/* 7065  */
/* 7066  */ 	display:block;
/* 7067  */
/* 7068  */ 	margin-top:2px;
/* 7069  */
/* 7070  */ 	margin-bottom:4px;
/* 7071  */
/* 7072  */     }
/* 7073  */
/* 7074  */
/* 7075  */
/* 7076  */ .wd-tmpbl1-date {
/* 7077  */
/* 7078  */ 	color:#c5c5c5;
/* 7079  */
/* 7080  */     font-size: 10px;
/* 7081  */
/* 7082  */ 	font-family: "Montserrat";
/* 7083  */
/* 7084  */ 	text-transform: uppercase;
/* 7085  */
/* 7086  */ 	float:left;
/* 7087  */
/* 7088  */     }
/* 7089  */
/* 7090  */
/* 7091  */
/* 7092  */ .wd-tmpbl1-cat {
/* 7093  */
/* 7094  */     font-weight: 900;
/* 7095  */
/* 7096  */     text-transform: uppercase;
/* 7097  */
/* 7098  */     letter-spacing: 1.7px;
/* 7099  */
/* 7100  */     top: 0px;

/* style.css */

/* 7101  */
/* 7102  */     color: #000;
/* 7103  */
/* 7104  */     font-size: 10px;
/* 7105  */
/* 7106  */ 	position:relative;
/* 7107  */
/* 7108  */ 	top:-2px;
/* 7109  */
/* 7110  */     }
/* 7111  */
/* 7112  */
/* 7113  */
/* 7114  */ .footer-col .wd-tmpbl1-posts {
/* 7115  */
/* 7116  */     line-height: 1.6em;
/* 7117  */
/* 7118  */     margin-bottom: 15px;
/* 7119  */
/* 7120  */     width: 320px;
/* 7121  */
/* 7122  */     height: 93px;
/* 7123  */
/* 7124  */ 	border-bottom:1px solid #222;
/* 7125  */
/* 7126  */ 	padding-bottom:15px;
/* 7127  */
/* 7128  */     }
/* 7129  */
/* 7130  */
/* 7131  */
/* 7132  */ .footer-col .wd-tmpbl1-cat {
/* 7133  */
/* 7134  */     font-weight: 900;
/* 7135  */
/* 7136  */     text-transform: uppercase;
/* 7137  */
/* 7138  */     letter-spacing: 1.7px;
/* 7139  */
/* 7140  */     top: 0px;
/* 7141  */
/* 7142  */     color: #fff;
/* 7143  */
/* 7144  */     font-size: 10px;
/* 7145  */
/* 7146  */ 	position:relative;
/* 7147  */
/* 7148  */ 	top:-2px;
/* 7149  */
/* 7150  */     }

/* style.css */

/* 7151  */
/* 7152  */
/* 7153  */
/* 7154  */ .footer-col .wd-tmpbl1-posts:last-child { border-bottom:0px }
/* 7155  */
/* 7156  */
/* 7157  */
/* 7158  */ /* ==== recent posts #2 ==== */
/* 7159  */
/* 7160  */
/* 7161  */
/* 7162  */ #wd-tmpbl2 { margin-bottom: -30px; margin-top:24px }
/* 7163  */
/* 7164  */
/* 7165  */
/* 7166  */ .wd-tmpbl2-posts {
/* 7167  */
/* 7168  */     margin-bottom: 15px;
/* 7169  */
/* 7170  */     width: 320px;
/* 7171  */
/* 7172  */ 	padding-bottom:31px;
/* 7173  */
/* 7174  */     }
/* 7175  */
/* 7176  */
/* 7177  */
/* 7178  */ .wd-tmpbl2-posts:hover .wd-tmpbl2-bg { background: rgba(0, 0, 0, 0.7) }
/* 7179  */
/* 7180  */
/* 7181  */
/* 7182  */ .wd-tmpbl2-cover {
/* 7183  */
/* 7184  */ 	position: relative;
/* 7185  */
/* 7186  */ 	width: 320px;
/* 7187  */
/* 7188  */ 	height: 178px;
/* 7189  */
/* 7190  */ 	margin-bottom:14px;
/* 7191  */
/* 7192  */ 	}
/* 7193  */
/* 7194  */
/* 7195  */
/* 7196  */ .wd-tmpbl2-cover img {
/* 7197  */
/* 7198  */     width: 320px;
/* 7199  */
/* 7200  */     height: 178px;

/* style.css */

/* 7201  */
/* 7202  */     }
/* 7203  */
/* 7204  */
/* 7205  */
/* 7206  */ .wd-tmpbl2-title {
/* 7207  */
/* 7208  */     width: 270px;
/* 7209  */
/* 7210  */     bottom: 10px;
/* 7211  */
/* 7212  */ 	left:30px;
/* 7213  */
/* 7214  */     position: absolute;
/* 7215  */
/* 7216  */     }
/* 7217  */
/* 7218  */
/* 7219  */
/* 7220  */ .wd-tmpbl2-title h2 {
/* 7221  */
/* 7222  */     font-weight: 900;
/* 7223  */
/* 7224  */     line-height: 1.3em;
/* 7225  */
/* 7226  */     font-size: 16px;
/* 7227  */
/* 7228  */ 	color:#fff;
/* 7229  */
/* 7230  */ 	text-transform: uppercase;
/* 7231  */
/* 7232  */     }
/* 7233  */
/* 7234  */
/* 7235  */
/* 7236  */ .wd-tmpbl2-title h2 a { color:#fff }
/* 7237  */
/* 7238  */
/* 7239  */
/* 7240  */ .wd-tmpbl2-title h2 a:hover { color:rgba(255,255,255,0.7) !important }
/* 7241  */
/* 7242  */
/* 7243  */
/* 7244  */ .wd-tmpbl2-bg {
/* 7245  */
/* 7246  */     background: url("images/bg9.png");
/* 7247  */
/* 7248  */     bottom: 0;
/* 7249  */
/* 7250  */     left: 0;

/* style.css */

/* 7251  */
/* 7252  */     width: 320px;
/* 7253  */
/* 7254  */     height: 178px;
/* 7255  */
/* 7256  */     position: absolute;
/* 7257  */
/* 7258  */     }
/* 7259  */
/* 7260  */
/* 7261  */
/* 7262  */ .wd-tmpbl2-text {
/* 7263  */
/* 7264  */     color: #666;
/* 7265  */
/* 7266  */ 	margin-bottom:5px;
/* 7267  */
/* 7268  */     }
/* 7269  */
/* 7270  */
/* 7271  */
/* 7272  */ .wd-tmpbl2-posts:hover .wd-tmpbl2-text {
/* 7273  */
/* 7274  */     color: #000;
/* 7275  */
/* 7276  */     }
/* 7277  */
/* 7278  */
/* 7279  */
/* 7280  */ .wd-tmpbl2-date {
/* 7281  */
/* 7282  */     font-weight: 400;
/* 7283  */
/* 7284  */     text-transform: uppercase;
/* 7285  */
/* 7286  */     color: #c5c5c5;
/* 7287  */
/* 7288  */     font-size: 10px;
/* 7289  */
/* 7290  */ 	float:right;
/* 7291  */
/* 7292  */ 	font-family: "Montserrat";
/* 7293  */
/* 7294  */     }
/* 7295  */
/* 7296  */
/* 7297  */
/* 7298  */ .wd-tmpbl2-cat {
/* 7299  */
/* 7300  */     font-weight: 900;

/* style.css */

/* 7301  */
/* 7302  */     text-transform: uppercase;
/* 7303  */
/* 7304  */     letter-spacing: 1.7px;
/* 7305  */
/* 7306  */     top: 0px;
/* 7307  */
/* 7308  */     color: #000;
/* 7309  */
/* 7310  */     font-size: 10px;
/* 7311  */
/* 7312  */ 	float:left;
/* 7313  */
/* 7314  */     }
/* 7315  */
/* 7316  */
/* 7317  */
/* 7318  */ .wd-tmpbl2-vcl {
/* 7319  */
/* 7320  */     top: 12px;
/* 7321  */
/* 7322  */     right: 20px;
/* 7323  */
/* 7324  */     position: absolute;
/* 7325  */
/* 7326  */     }
/* 7327  */
/* 7328  */
/* 7329  */
/* 7330  */ .footer-col .wd-tmpbl2-posts {
/* 7331  */
/* 7332  */     margin-bottom: 15px;
/* 7333  */
/* 7334  */     width: 320px;
/* 7335  */
/* 7336  */ 	border-bottom:1px solid #222;
/* 7337  */
/* 7338  */ 	padding-bottom:31px;
/* 7339  */
/* 7340  */     }
/* 7341  */
/* 7342  */
/* 7343  */
/* 7344  */ .footer-col .wd-tmpbl2-cat {
/* 7345  */
/* 7346  */     font-weight: 900;
/* 7347  */
/* 7348  */     text-transform: uppercase;
/* 7349  */
/* 7350  */     letter-spacing: 1.7px;

/* style.css */

/* 7351  */
/* 7352  */     top: 0px;
/* 7353  */
/* 7354  */     color: #fff;
/* 7355  */
/* 7356  */     font-size: 10px;
/* 7357  */
/* 7358  */ 	float:left;
/* 7359  */
/* 7360  */     }
/* 7361  */
/* 7362  */
/* 7363  */
/* 7364  */ .footer-col .wd-tmpbl2-text {
/* 7365  */
/* 7366  */     color: #ccc;
/* 7367  */
/* 7368  */ 	margin-bottom:5px;
/* 7369  */
/* 7370  */     }
/* 7371  */
/* 7372  */
/* 7373  */
/* 7374  */ .footer-col .wd-tmpbl2-posts:hover .wd-tmpbl2-text { color: #fff }
/* 7375  */
/* 7376  */
/* 7377  */
/* 7378  */ .footer-col .wd-tmpbl2-posts:last-child { border-bottom:0 }
/* 7379  */
/* 7380  */
/* 7381  */
/* 7382  */ /* ==== recent posts #3 ==== */
/* 7383  */
/* 7384  */
/* 7385  */
/* 7386  */ #wd-tmpbl3 { margin-bottom: -2px; margin-top:23px }
/* 7387  */
/* 7388  */
/* 7389  */
/* 7390  */ .wd-tmpbl3-posts {
/* 7391  */
/* 7392  */     margin-bottom: 3px;
/* 7393  */
/* 7394  */     width: 320px;
/* 7395  */
/* 7396  */     height: 244px;
/* 7397  */
/* 7398  */     position: relative;
/* 7399  */
/* 7400  */     }

/* style.css */

/* 7401  */
/* 7402  */
/* 7403  */
/* 7404  */ .wd-tmpbl3-posts:hover .wd-tmpbl3-bg { background: rgba(0, 0, 0, 0.7) }
/* 7405  */
/* 7406  */
/* 7407  */
/* 7408  */ .wd-tmpbl3-posts img {
/* 7409  */
/* 7410  */     width: 320px;
/* 7411  */
/* 7412  */     height: 244px;
/* 7413  */
/* 7414  */     }
/* 7415  */
/* 7416  */
/* 7417  */
/* 7418  */ .wd-tmpbl3-bg {
/* 7419  */
/* 7420  */     background: url("images/bg10.png");
/* 7421  */
/* 7422  */     left: 0;
/* 7423  */
/* 7424  */     width: 320px;
/* 7425  */
/* 7426  */     height: 244px;
/* 7427  */
/* 7428  */     bottom: 0px;
/* 7429  */
/* 7430  */     position: absolute;
/* 7431  */
/* 7432  */     }
/* 7433  */
/* 7434  */
/* 7435  */
/* 7436  */ .wd-tmpbl3-posts h2 {
/* 7437  */
/* 7438  */     font-weight: 900;
/* 7439  */
/* 7440  */     line-height: 1.3em;
/* 7441  */
/* 7442  */     text-transform: uppercase;
/* 7443  */
/* 7444  */     width: 260px;
/* 7445  */
/* 7446  */     font-size: 18px;
/* 7447  */
/* 7448  */ 	left: 30px;
/* 7449  */
/* 7450  */     bottom: 48px;

/* style.css */

/* 7451  */
/* 7452  */     position: absolute;
/* 7453  */
/* 7454  */     }
/* 7455  */
/* 7456  */
/* 7457  */
/* 7458  */ .wd-tmpbl3-posts h2 a { color: #fff }
/* 7459  */
/* 7460  */
/* 7461  */
/* 7462  */ .wd-tmpbl3-posts h2 a:hover { color: rgba(255,255,255, 0.7) !important }
/* 7463  */
/* 7464  */
/* 7465  */
/* 7466  */ .wd-tmpbl3-cat {
/* 7467  */
/* 7468  */     line-height: 15px;
/* 7469  */
/* 7470  */     letter-spacing: 1.7px;
/* 7471  */
/* 7472  */     text-transform: uppercase;
/* 7473  */
/* 7474  */     top: 0px;
/* 7475  */
/* 7476  */     left: 30px;
/* 7477  */
/* 7478  */     color: #fff;
/* 7479  */
/* 7480  */     height: 15px;
/* 7481  */
/* 7482  */     padding: 4px 10px 4px 10px ;
/* 7483  */
/* 7484  */     position: absolute;
/* 7485  */
/* 7486  */     font-size: 9px;
/* 7487  */
/* 7488  */ 	font-weight: 900;
/* 7489  */
/* 7490  */     }
/* 7491  */
/* 7492  */
/* 7493  */
/* 7494  */ .wd-tmpbl3-date {
/* 7495  */
/* 7496  */     text-transform: uppercase;
/* 7497  */
/* 7498  */     right: 20px;
/* 7499  */
/* 7500  */     color: #fff;

/* style.css */

/* 7501  */
/* 7502  */     top: 20px;
/* 7503  */
/* 7504  */     position: absolute;
/* 7505  */
/* 7506  */ 	font-family: "Montserrat";
/* 7507  */
/* 7508  */ 	font-weight:400;
/* 7509  */
/* 7510  */ 	font-size: 10px;
/* 7511  */
/* 7512  */ 	background:rgba(255,255,255,0.2);
/* 7513  */
/* 7514  */ 	padding:0 5px;
/* 7515  */
/* 7516  */ 	line-height: 17px;
/* 7517  */
/* 7518  */ 	hieght: 17px;
/* 7519  */
/* 7520  */     }
/* 7521  */
/* 7522  */
/* 7523  */
/* 7524  */ .wd-tmpbl3-vcl {
/* 7525  */
/* 7526  */     bottom: 23px;
/* 7527  */
/* 7528  */     left: 30px;
/* 7529  */
/* 7530  */     position: absolute;
/* 7531  */
/* 7532  */     }
/* 7533  */
/* 7534  */
/* 7535  */
/* 7536  */ /* ==== advertising ==== */
/* 7537  */
/* 7538  */
/* 7539  */
/* 7540  */ .widget_advertising {
/* 7541  */
/* 7542  */     background: #eee;
/* 7543  */
/* 7544  */     width: 300px;
/* 7545  */
/* 7546  */     height: 250px;
/* 7547  */
/* 7548  */     padding: 10px;
/* 7549  */
/* 7550  */     margin-left: 40px;

/* style.css */

/* 7551  */
/* 7552  */     margin-bottom: 60px;
/* 7553  */
/* 7554  */     }
/* 7555  */
/* 7556  */
/* 7557  */
/* 7558  */ /* ==== flickr ==== */
/* 7559  */
/* 7560  */
/* 7561  */
/* 7562  */ .widget_flickr:after {
/* 7563  */
/* 7564  */     visibility: hidden;
/* 7565  */
/* 7566  */     margin-bottom: -3px;
/* 7567  */
/* 7568  */     clear: both;
/* 7569  */
/* 7570  */     height: 0;
/* 7571  */
/* 7572  */     display: block;
/* 7573  */
/* 7574  */     content: ".";
/* 7575  */
/* 7576  */     }
/* 7577  */
/* 7578  */
/* 7579  */
/* 7580  */ #wd-flickr { width: 324px; margin-top:24px; }
/* 7581  */
/* 7582  */
/* 7583  */
/* 7584  */ .flickr_badge_image {
/* 7585  */
/* 7586  */     margin-right: 3px;
/* 7587  */
/* 7588  */     margin-bottom: 3px;
/* 7589  */
/* 7590  */     width: 105px;
/* 7591  */
/* 7592  */     float: left;
/* 7593  */
/* 7594  */     height: 105px;
/* 7595  */
/* 7596  */     }
/* 7597  */
/* 7598  */
/* 7599  */
/* 7600  */ .flickr_badge_image img {

/* style.css */

/* 7601  */
/* 7602  */     width: 105px;
/* 7603  */
/* 7604  */     height: 105px;
/* 7605  */
/* 7606  */     }
/* 7607  */
/* 7608  */
/* 7609  */
/* 7610  */ /* ==== like posts ==== */
/* 7611  */
/* 7612  */
/* 7613  */
/* 7614  */ .widget_like li {
/* 7615  */
/* 7616  */     text-align: center;
/* 7617  */
/* 7618  */     font-weight: 700;
/* 7619  */
/* 7620  */     right: 20px;
/* 7621  */
/* 7622  */     color: #fff;
/* 7623  */
/* 7624  */     width: 40px;
/* 7625  */
/* 7626  */     top: 27px;
/* 7627  */
/* 7628  */     cursor: default;
/* 7629  */
/* 7630  */     display: block;
/* 7631  */
/* 7632  */     position: absolute;
/* 7633  */
/* 7634  */     font-size: 54px;
/* 7635  */
/* 7636  */ 	font-family: "Montserrat";
/* 7637  */
/* 7638  */     }
/* 7639  */
/* 7640  */
/* 7641  */
/* 7642  */ .widget_like li:before {
/* 7643  */
/* 7644  */     counter-increment: item;
/* 7645  */
/* 7646  */     content: counter(item) " ";
/* 7647  */
/* 7648  */     }
/* 7649  */
/* 7650  */

/* style.css */

/* 7651  */
/* 7652  */ ol#wd-like {
/* 7653  */
/* 7654  */     counter-reset: item;
/* 7655  */
/* 7656  */     list-style-type: decimal;
/* 7657  */
/* 7658  */ 	padding-left:0;
/* 7659  */
/* 7660  */ 	margin-bottom:-3px;
/* 7661  */
/* 7662  */ 	margin-top:24px;
/* 7663  */
/* 7664  */     }
/* 7665  */
/* 7666  */
/* 7667  */
/* 7668  */ .wd-lk {
/* 7669  */
/* 7670  */     width: 320px;
/* 7671  */
/* 7672  */     height: 178px;
/* 7673  */
/* 7674  */ 	margin-bottom:3px;
/* 7675  */
/* 7676  */     }
/* 7677  */
/* 7678  */
/* 7679  */
/* 7680  */ .wd-lk:hover .wd-lk-bg { background: rgba(0, 0, 0, 0.7) }
/* 7681  */
/* 7682  */
/* 7683  */
/* 7684  */ .wd-lk-cover {
/* 7685  */
/* 7686  */     width: 320px;
/* 7687  */
/* 7688  */     height: 178px;
/* 7689  */
/* 7690  */     position: relative;
/* 7691  */
/* 7692  */     }
/* 7693  */
/* 7694  */
/* 7695  */
/* 7696  */ .wd-lk-cover img {
/* 7697  */
/* 7698  */     width: 320px;
/* 7699  */
/* 7700  */     height: 178px;

/* style.css */

/* 7701  */
/* 7702  */     }
/* 7703  */
/* 7704  */
/* 7705  */
/* 7706  */ .wd-lk-bg {
/* 7707  */
/* 7708  */     background: url("images/bg11.png");
/* 7709  */
/* 7710  */     left: 0;
/* 7711  */
/* 7712  */     width: 100%;
/* 7713  */
/* 7714  */     bottom: 0;
/* 7715  */
/* 7716  */     height: 178px;
/* 7717  */
/* 7718  */     position: absolute;
/* 7719  */
/* 7720  */     }
/* 7721  */
/* 7722  */
/* 7723  */
/* 7724  */ .wd-lk h2 {
/* 7725  */
/* 7726  */     font-weight: 900;
/* 7727  */
/* 7728  */     line-height: 1.3em;
/* 7729  */
/* 7730  */     text-transform: uppercase;
/* 7731  */
/* 7732  */     width: 260px;
/* 7733  */
/* 7734  */     color: #fff;
/* 7735  */
/* 7736  */     font-size: 18px;
/* 7737  */
/* 7738  */ 	margin: 0;
/* 7739  */
/* 7740  */ 	left: 30px;
/* 7741  */
/* 7742  */     width: 260px;
/* 7743  */
/* 7744  */     bottom: 24px;
/* 7745  */
/* 7746  */     position: absolute;
/* 7747  */
/* 7748  */     }
/* 7749  */
/* 7750  */

/* style.css */

/* 7751  */
/* 7752  */ .wd-lk h2 a {
/* 7753  */
/* 7754  */     color: #fff;
/* 7755  */
/* 7756  */     }
/* 7757  */
/* 7758  */
/* 7759  */
/* 7760  */ .wd-lk h2 a:hover {
/* 7761  */
/* 7762  */     color: rgba(255,255,255,0.7) !important;
/* 7763  */
/* 7764  */     }
/* 7765  */
/* 7766  */
/* 7767  */
/* 7768  */ /* ==== photo ==== */
/* 7769  */
/* 7770  */
/* 7771  */
/* 7772  */ #wd-photo {
/* 7773  */
/* 7774  */   	margin-bottom:-3px;
/* 7775  */
/* 7776  */ 	margin-top:24px;
/* 7777  */
/* 7778  */     }
/* 7779  */
/* 7780  */
/* 7781  */
/* 7782  */ .wd-photo-posts {
/* 7783  */
/* 7784  */     margin-bottom: 3px;
/* 7785  */
/* 7786  */     width: 320px;
/* 7787  */
/* 7788  */     height: 178px;
/* 7789  */
/* 7790  */     position: relative;
/* 7791  */
/* 7792  */     }
/* 7793  */
/* 7794  */
/* 7795  */
/* 7796  */ .wd-photo-posts:hover .wd-photo-bg {
/* 7797  */
/* 7798  */     background: rgba(0, 0, 0, 0.7);
/* 7799  */
/* 7800  */     }

/* style.css */

/* 7801  */
/* 7802  */
/* 7803  */
/* 7804  */ .wd-photo-posts img {
/* 7805  */
/* 7806  */     width: 320px;
/* 7807  */
/* 7808  */     height: 178px;
/* 7809  */
/* 7810  */ 	margin: 0;
/* 7811  */
/* 7812  */     }
/* 7813  */
/* 7814  */
/* 7815  */
/* 7816  */ .wd-photo-bg {
/* 7817  */
/* 7818  */     background: url("images/bg11.png");
/* 7819  */
/* 7820  */     left: 0;
/* 7821  */
/* 7822  */     width: 100%;
/* 7823  */
/* 7824  */     height: 178px;
/* 7825  */
/* 7826  */     bottom: 0px;
/* 7827  */
/* 7828  */     position: absolute;
/* 7829  */
/* 7830  */     }
/* 7831  */
/* 7832  */
/* 7833  */
/* 7834  */ .wd-photo-title {
/* 7835  */
/* 7836  */     left: 30px;
/* 7837  */
/* 7838  */     bottom: 24px;
/* 7839  */
/* 7840  */     position: absolute;
/* 7841  */
/* 7842  */     }
/* 7843  */
/* 7844  */
/* 7845  */
/* 7846  */ .wd-photo-title span {
/* 7847  */
/* 7848  */     background: #000;
/* 7849  */
/* 7850  */     font-weight: 600;

/* style.css */

/* 7851  */
/* 7852  */     line-height: 15px;
/* 7853  */
/* 7854  */     letter-spacing: 1.5px;
/* 7855  */
/* 7856  */     text-transform: uppercase;
/* 7857  */
/* 7858  */     top: -5px;
/* 7859  */
/* 7860  */     color: #fff;
/* 7861  */
/* 7862  */     float: left;
/* 7863  */
/* 7864  */     height: 15px;
/* 7865  */
/* 7866  */     padding: 3px 9px;
/* 7867  */
/* 7868  */     position: relative;
/* 7869  */
/* 7870  */     font-size: 10px;
/* 7871  */
/* 7872  */ 	font-family: "Montserrat";
/* 7873  */
/* 7874  */     }
/* 7875  */
/* 7876  */
/* 7877  */
/* 7878  */ .wd-photo-title h2 {
/* 7879  */
/* 7880  */     font-weight: 900;
/* 7881  */
/* 7882  */     line-height: 1.3em;
/* 7883  */
/* 7884  */     text-transform: uppercase;
/* 7885  */
/* 7886  */     width: 260px;
/* 7887  */
/* 7888  */     float: left;
/* 7889  */
/* 7890  */     font-size: 18px;
/* 7891  */
/* 7892  */ 	margin: 0;
/* 7893  */
/* 7894  */     }
/* 7895  */
/* 7896  */
/* 7897  */
/* 7898  */ .wd-photo-title h2 a { color: #fff }
/* 7899  */
/* 7900  */

/* style.css */

/* 7901  */
/* 7902  */ .wd-photo-title h2 a:hover { color: rgba(255,255,255,0.7) !important }
/* 7903  */
/* 7904  */
/* 7905  */
/* 7906  */ .wd-photo-button {
/* 7907  */
/* 7908  */     background: url("images/photoS.png");
/* 7909  */
/* 7910  */     top: 20px;
/* 7911  */
/* 7912  */     right: 20px;
/* 7913  */
/* 7914  */     width: 64px;
/* 7915  */
/* 7916  */     height: 46px;
/* 7917  */
/* 7918  */     position: absolute;
/* 7919  */
/* 7920  */     }
/* 7921  */
/* 7922  */
/* 7923  */
/* 7924  */ .wd-photo-button:hover { opacity: 0.7 }
/* 7925  */
/* 7926  */
/* 7927  */
/* 7928  */ /* ==== review ==== */
/* 7929  */
/* 7930  */
/* 7931  */
/* 7932  */ #wd-review {
/* 7933  */
/* 7934  */     margin-bottom:-3px;
/* 7935  */
/* 7936  */ 	margin-top:24px;
/* 7937  */
/* 7938  */     }
/* 7939  */
/* 7940  */
/* 7941  */
/* 7942  */ .wd-review-posts {
/* 7943  */
/* 7944  */     margin-bottom: 3px;
/* 7945  */
/* 7946  */     width: 320px;
/* 7947  */
/* 7948  */     height: 244px;
/* 7949  */
/* 7950  */     position: relative;

/* style.css */

/* 7951  */
/* 7952  */     }
/* 7953  */
/* 7954  */
/* 7955  */
/* 7956  */ .wd-review-posts:hover .wd-review-bg {
/* 7957  */
/* 7958  */     background: rgba(0, 0, 0, 0.7);
/* 7959  */
/* 7960  */     }
/* 7961  */
/* 7962  */
/* 7963  */
/* 7964  */ .wd-review-posts img {
/* 7965  */
/* 7966  */     width: 320px;
/* 7967  */
/* 7968  */     height: 244px;
/* 7969  */
/* 7970  */     }
/* 7971  */
/* 7972  */
/* 7973  */
/* 7974  */ .wd-review-bg {
/* 7975  */
/* 7976  */     background: url("images/bg10.png");
/* 7977  */
/* 7978  */     left: 0;
/* 7979  */
/* 7980  */     width: 320px;
/* 7981  */
/* 7982  */     height: 244px;
/* 7983  */
/* 7984  */     bottom: 0px;
/* 7985  */
/* 7986  */     position: absolute;
/* 7987  */
/* 7988  */     }
/* 7989  */
/* 7990  */
/* 7991  */
/* 7992  */ .wd-review-title {
/* 7993  */
/* 7994  */     left: 30px;
/* 7995  */
/* 7996  */     bottom: 24px;
/* 7997  */
/* 7998  */     position: absolute;
/* 7999  */
/* 8000  */     }

/* style.css */

/* 8001  */
/* 8002  */
/* 8003  */
/* 8004  */ .wd-review-title span {
/* 8005  */
/* 8006  */     background: #000;
/* 8007  */
/* 8008  */     font-weight: 600;
/* 8009  */
/* 8010  */     line-height: 15px;
/* 8011  */
/* 8012  */     letter-spacing: 1.5px;
/* 8013  */
/* 8014  */     text-transform: uppercase;
/* 8015  */
/* 8016  */     top: -5px;
/* 8017  */
/* 8018  */     color: #fff;
/* 8019  */
/* 8020  */     float: left;
/* 8021  */
/* 8022  */     height: 15px;
/* 8023  */
/* 8024  */     padding: 3px 9px;
/* 8025  */
/* 8026  */     position: relative;
/* 8027  */
/* 8028  */     font-size: 10px;
/* 8029  */
/* 8030  */ 	font-family: "Montserrat";
/* 8031  */
/* 8032  */     }
/* 8033  */
/* 8034  */
/* 8035  */
/* 8036  */ .wd-review-title h2 {
/* 8037  */
/* 8038  */     font-weight: 900;
/* 8039  */
/* 8040  */     line-height: 1.3em;
/* 8041  */
/* 8042  */     text-transform: uppercase;
/* 8043  */
/* 8044  */     width: 260px;
/* 8045  */
/* 8046  */     color: #fff;
/* 8047  */
/* 8048  */     float: left;
/* 8049  */
/* 8050  */     font-size: 20px;

/* style.css */

/* 8051  */
/* 8052  */ 	margin: 0;
/* 8053  */
/* 8054  */     }
/* 8055  */
/* 8056  */
/* 8057  */
/* 8058  */ .wd-review-title h2 a { color: #fff }
/* 8059  */
/* 8060  */
/* 8061  */
/* 8062  */ .wd-review-title h2 a:hover { color: rgba(255,255,255,0.7) !important }
/* 8063  */
/* 8064  */
/* 8065  */
/* 8066  */ .wd-review-note {
/* 8067  */
/* 8068  */     text-align: center;
/* 8069  */
/* 8070  */     font-weight: 600;
/* 8071  */
/* 8072  */     top: 27px;
/* 8073  */
/* 8074  */     right: 30px;
/* 8075  */
/* 8076  */     color: #fff;
/* 8077  */
/* 8078  */     position: absolute;
/* 8079  */
/* 8080  */     font-size: 48px;
/* 8081  */
/* 8082  */ 	font-family: "Montserrat";
/* 8083  */
/* 8084  */ 	text-align:center;
/* 8085  */
/* 8086  */ 	width:80px;
/* 8087  */
/* 8088  */     }
/* 8089  */
/* 8090  */
/* 8091  */
/* 8092  */ /* ==== like slider ==== */
/* 8093  */
/* 8094  */
/* 8095  */
/* 8096  */ .wd-slider {
/* 8097  */
/* 8098  */     margin-bottom:0px;
/* 8099  */
/* 8100  */ 	margin-top:24px;

/* style.css */

/* 8101  */
/* 8102  */     position: relative;
/* 8103  */
/* 8104  */ 	width: 320px;
/* 8105  */
/* 8106  */     height: 320px;
/* 8107  */
/* 8108  */     }
/* 8109  */
/* 8110  */
/* 8111  */
/* 8112  */ .wd-slider:hover .wd-slider-bg {
/* 8113  */
/* 8114  */     background: rgba(0, 0, 0, 0.7);
/* 8115  */
/* 8116  */     }
/* 8117  */
/* 8118  */
/* 8119  */
/* 8120  */ .wd-slider li { position: relative }
/* 8121  */
/* 8122  */
/* 8123  */
/* 8124  */ .wd-slider li img {
/* 8125  */
/* 8126  */     width: 320px;
/* 8127  */
/* 8128  */     height: 320px;
/* 8129  */
/* 8130  */     }
/* 8131  */
/* 8132  */
/* 8133  */
/* 8134  */ .wd-slider-bg {
/* 8135  */
/* 8136  */     background: url("images/bg12.png");
/* 8137  */
/* 8138  */     left: 0;
/* 8139  */
/* 8140  */     width: 100%;
/* 8141  */
/* 8142  */     height: 320px;
/* 8143  */
/* 8144  */     bottom: 7px;
/* 8145  */
/* 8146  */     position: absolute;
/* 8147  */
/* 8148  */     }
/* 8149  */
/* 8150  */

/* style.css */

/* 8151  */
/* 8152  */ .wd-slider-title {
/* 8153  */
/* 8154  */     left: 30px;
/* 8155  */
/* 8156  */     bottom: 40px;
/* 8157  */
/* 8158  */     position: absolute;
/* 8159  */
/* 8160  */     }
/* 8161  */
/* 8162  */
/* 8163  */
/* 8164  */ .wd-slider-title span {
/* 8165  */
/* 8166  */     background: #000;
/* 8167  */
/* 8168  */     font-weight: 600;
/* 8169  */
/* 8170  */     line-height: 15px;
/* 8171  */
/* 8172  */     letter-spacing: 1.5px;
/* 8173  */
/* 8174  */     text-transform: uppercase;
/* 8175  */
/* 8176  */     top: -5px;
/* 8177  */
/* 8178  */     color: #fff;
/* 8179  */
/* 8180  */     float: left;
/* 8181  */
/* 8182  */     height: 15px;
/* 8183  */
/* 8184  */     padding: 3px 9px;
/* 8185  */
/* 8186  */     position: relative;
/* 8187  */
/* 8188  */     font-size: 10px;
/* 8189  */
/* 8190  */ 	font-family: "Montserrat";
/* 8191  */
/* 8192  */     }
/* 8193  */
/* 8194  */
/* 8195  */
/* 8196  */ .wd-slider-title h2 {
/* 8197  */
/* 8198  */     margin-top: 0px;
/* 8199  */
/* 8200  */     font-weight: 900;

/* style.css */

/* 8201  */
/* 8202  */     line-height: 1.3em;
/* 8203  */
/* 8204  */     text-transform: uppercase;
/* 8205  */
/* 8206  */     color: #fff;
/* 8207  */
/* 8208  */     width: 260px;
/* 8209  */
/* 8210  */     font-size: 22px;
/* 8211  */
/* 8212  */ 	float:left;
/* 8213  */
/* 8214  */     }
/* 8215  */
/* 8216  */
/* 8217  */
/* 8218  */ .wd-slider-title h2 a { color: #fff }
/* 8219  */
/* 8220  */
/* 8221  */
/* 8222  */ .wd-slider-title h2 a:hover { color: rgba(255,255,255,0.7) !important }
/* 8223  */
/* 8224  */
/* 8225  */
/* 8226  */ .wd-slider-title {
/* 8227  */
/* 8228  */     left: 30px;
/* 8229  */
/* 8230  */     bottom: 15px;
/* 8231  */
/* 8232  */     position: absolute;
/* 8233  */
/* 8234  */     }
/* 8235  */
/* 8236  */
/* 8237  */
/* 8238  */ .wd-slider-vcl {
/* 8239  */
/* 8240  */     right: 10px;
/* 8241  */
/* 8242  */     top: 22px;
/* 8243  */
/* 8244  */     position: absolute;
/* 8245  */
/* 8246  */     }
/* 8247  */
/* 8248  */
/* 8249  */
/* 8250  */ ol.flex-control-nav {

/* style.css */

/* 8251  */
/* 8252  */     list-style-type: none;
/* 8253  */
/* 8254  */     right: 30px;
/* 8255  */
/* 8256  */     bottom: 2px;
/* 8257  */
/* 8258  */     position: absolute;
/* 8259  */
/* 8260  */     }
/* 8261  */
/* 8262  */
/* 8263  */
/* 8264  */ ol.flex-control-nav li {
/* 8265  */
/* 8266  */     line-height: 14px;
/* 8267  */
/* 8268  */     float: left;
/* 8269  */
/* 8270  */     height: 14px;
/* 8271  */
/* 8272  */     }
/* 8273  */
/* 8274  */
/* 8275  */
/* 8276  */ ol.flex-control-nav li a {
/* 8277  */
/* 8278  */     background: #fff;
/* 8279  */
/* 8280  */     text-align: center;
/* 8281  */
/* 8282  */     margin-left: 3px;
/* 8283  */
/* 8284  */     font-weight: 700;
/* 8285  */
/* 8286  */     padding-left: 1px;
/* 8287  */
/* 8288  */     border-radius: 50%;
/* 8289  */
/* 8290  */     width: 14px;
/* 8291  */
/* 8292  */     color: #000;
/* 8293  */
/* 8294  */     height: 14px;
/* 8295  */
/* 8296  */     cursor: pointer;
/* 8297  */
/* 8298  */     display: block;
/* 8299  */
/* 8300  */     opacity: 0.3;

/* style.css */

/* 8301  */
/* 8302  */     font-size: 9px;
/* 8303  */
/* 8304  */ 	font-family: "Montserrat";
/* 8305  */
/* 8306  */     }
/* 8307  */
/* 8308  */
/* 8309  */
/* 8310  */ ol.flex-control-nav li a:hover { opacity: 1 }
/* 8311  */
/* 8312  */
/* 8313  */
/* 8314  */ /* ==== social followers ==== */
/* 8315  */
/* 8316  */
/* 8317  */
/* 8318  */ .widget_social_media { width:322px }
/* 8319  */
/* 8320  */
/* 8321  */
/* 8322  */ .wd-social-fb {
/* 8323  */
/* 8324  */     background: #3b5998 url("images/social/widget/facebook.png") no-repeat;
/* 8325  */
/* 8326  */     margin-right: 0px;
/* 8327  */
/* 8328  */     text-transform: uppercase;
/* 8329  */
/* 8330  */     background-position: 37px 24px;
/* 8331  */
/* 8332  */     width: 105px;
/* 8333  */
/* 8334  */     height: 125px;
/* 8335  */
/* 8336  */     display: inline-block;
/* 8337  */
/* 8338  */     position: relative;
/* 8339  */
/* 8340  */ 	margin-top:3px;
/* 8341  */
/* 8342  */ 	margin-bottom:-6px;
/* 8343  */
/* 8344  */     }
/* 8345  */
/* 8346  */
/* 8347  */
/* 8348  */ .wd-social-fb:hover .wd-social-number, .wd-social-gp:hover .wd-social-number, .wd-social-tw:hover .wd-social-number { background: rgba(0, 0, 0, 0.7) }
/* 8349  */
/* 8350  */

/* style.css */

/* 8351  */
/* 8352  */ .wd-social-gp {
/* 8353  */
/* 8354  */     background: #db4437 url("images/social/widget/google.png") no-repeat;
/* 8355  */
/* 8356  */     margin-right: -1px;
/* 8357  */
/* 8358  */     text-transform: uppercase;
/* 8359  */
/* 8360  */     background-position: 37px 24px;
/* 8361  */
/* 8362  */     width: 105px;
/* 8363  */
/* 8364  */     height: 125px;
/* 8365  */
/* 8366  */     display: inline-block;
/* 8367  */
/* 8368  */     position: relative;
/* 8369  */
/* 8370  */ 	margin-top:3px;
/* 8371  */
/* 8372  */ 	margin-bottom:-6px;
/* 8373  */
/* 8374  */     }
/* 8375  */
/* 8376  */
/* 8377  */
/* 8378  */ .wd-social-tw {
/* 8379  */
/* 8380  */     background: #55acee url("images/social/widget/twitter.png") no-repeat;
/* 8381  */
/* 8382  */     margin-right: 0px;
/* 8383  */
/* 8384  */     text-transform: uppercase;
/* 8385  */
/* 8386  */     background-position: 36px 24px;
/* 8387  */
/* 8388  */     width: 105px;
/* 8389  */
/* 8390  */     height: 125px;
/* 8391  */
/* 8392  */     display: inline-block;
/* 8393  */
/* 8394  */     position: relative;
/* 8395  */
/* 8396  */ 	margin-top:3px;
/* 8397  */
/* 8398  */ 	margin-bottom:-6px;
/* 8399  */
/* 8400  */     }

/* style.css */

/* 8401  */
/* 8402  */
/* 8403  */
/* 8404  */ .wd-social-number {
/* 8405  */
/* 8406  */     text-align: center;
/* 8407  */
/* 8408  */     background: rgba(0, 0, 0, 0.1);
/* 8409  */
/* 8410  */     left: 0px;
/* 8411  */
/* 8412  */     color: #fff;
/* 8413  */
/* 8414  */     width: 105px;
/* 8415  */
/* 8416  */     bottom: 0px;
/* 8417  */
/* 8418  */     height: 37px;
/* 8419  */
/* 8420  */     padding: 4px 0;
/* 8421  */
/* 8422  */     position: absolute;
/* 8423  */
/* 8424  */     font-size: 18px;
/* 8425  */
/* 8426  */ 	font-family: "Montserrat";
/* 8427  */
/* 8428  */ 	font-weight:700;
/* 8429  */
/* 8430  */     }
/* 8431  */
/* 8432  */
/* 8433  */
/* 8434  */ .wd-social-number span {
/* 8435  */
/* 8436  */     margin-top: -7px;
/* 8437  */
/* 8438  */     display: block;
/* 8439  */
/* 8440  */     font-size: 10px;
/* 8441  */
/* 8442  */     }
/* 8443  */
/* 8444  */
/* 8445  */
/* 8446  */ .footer-col .widget_social_media { width:322px }
/* 8447  */
/* 8448  */
/* 8449  */
/* 8450  */ /* ==== soundcloud ==== */

/* style.css */

/* 8451  */
/* 8452  */
/* 8453  */
/* 8454  */ .widget_soundcloud iframe {
/* 8455  */
/* 8456  */     width: 320px;
/* 8457  */
/* 8458  */     height: 200px;
/* 8459  */
/* 8460  */ 	margin-top:2px;
/* 8461  */
/* 8462  */ 	margin-bottom:-6px;
/* 8463  */
/* 8464  */     }
/* 8465  */
/* 8466  */
/* 8467  */
/* 8468  */ /* ==== twitter ==== */
/* 8469  */
/* 8470  */
/* 8471  */
/* 8472  */ .widget_tweet ul {
/* 8473  */
/* 8474  */     list-style-type: circle;
/* 8475  */
/* 8476  */     list-style-image: url("images/twitterD.png");
/* 8477  */
/* 8478  */     list-style-position: inside;
/* 8479  */
/* 8480  */     overflow: hidden;
/* 8481  */
/* 8482  */ 	margin-bottom:0;
/* 8483  */
/* 8484  */     }
/* 8485  */
/* 8486  */
/* 8487  */
/* 8488  */ .tweets_list li {
/* 8489  */
/* 8490  */     text-align: left;
/* 8491  */
/* 8492  */     font-weight: 500;
/* 8493  */
/* 8494  */     line-height: 1.6em;
/* 8495  */
/* 8496  */     margin-bottom: 15px;
/* 8497  */
/* 8498  */     list-style-type: none;
/* 8499  */
/* 8500  */ 	padding-bottom:15px;

/* style.css */

/* 8501  */
/* 8502  */ 	border-bottom:1px solid #f1f1f1;
/* 8503  */
/* 8504  */ 	width: 320px;
/* 8505  */
/* 8506  */ 	color:#666;
/* 8507  */
/* 8508  */     }
/* 8509  */
/* 8510  */
/* 8511  */
/* 8512  */ .tweets_list li:hover { color:#000 }
/* 8513  */
/* 8514  */
/* 8515  */
/* 8516  */
/* 8517  */
/* 8518  */ .tweets_list li:last-child {
/* 8519  */
/* 8520  */     border-bottom:0;
/* 8521  */
/* 8522  */ 	margin-bottom: -17px;
/* 8523  */
/* 8524  */     }
/* 8525  */
/* 8526  */
/* 8527  */
/* 8528  */ .footer-col .widget_tweet ul {
/* 8529  */
/* 8530  */     list-style-type: circle;
/* 8531  */
/* 8532  */     list-style-image: url("images/twitterL.png");
/* 8533  */
/* 8534  */     list-style-position: inside;
/* 8535  */
/* 8536  */     overflow: hidden;
/* 8537  */
/* 8538  */ 	margin-bottom:0;
/* 8539  */
/* 8540  */     }
/* 8541  */
/* 8542  */
/* 8543  */
/* 8544  */ .footer-col .tweets_list li {
/* 8545  */
/* 8546  */     text-align: left;
/* 8547  */
/* 8548  */     font-weight: 500;
/* 8549  */
/* 8550  */     line-height: 1.6em;

/* style.css */

/* 8551  */
/* 8552  */     margin-bottom: 15px;
/* 8553  */
/* 8554  */     list-style-type: none;
/* 8555  */
/* 8556  */ 	padding-bottom:15px;
/* 8557  */
/* 8558  */ 	border-bottom:1px solid #222;
/* 8559  */
/* 8560  */ 	width: 320px;
/* 8561  */
/* 8562  */ 	color:#ccc;
/* 8563  */
/* 8564  */     }
/* 8565  */
/* 8566  */
/* 8567  */
/* 8568  */ .footer-col .tweets_list li:hover { color:#fff }
/* 8569  */
/* 8570  */
/* 8571  */
/* 8572  */ .footer-col .tweets_list li:last-child {
/* 8573  */
/* 8574  */     border-bottom:0;
/* 8575  */
/* 8576  */ 	margin-bottom: -17px;
/* 8577  */
/* 8578  */     }
/* 8579  */
/* 8580  */
/* 8581  */
/* 8582  */ /* ==== video ==== */
/* 8583  */
/* 8584  */
/* 8585  */
/* 8586  */ #wd-video {
/* 8587  */
/* 8588  */   	margin-bottom:-2px;
/* 8589  */
/* 8590  */ 	margin-top:25px;
/* 8591  */
/* 8592  */     }
/* 8593  */
/* 8594  */
/* 8595  */
/* 8596  */ .wd-video-posts {
/* 8597  */
/* 8598  */     margin-bottom: 3px;
/* 8599  */
/* 8600  */     width: 320px;

/* style.css */

/* 8601  */
/* 8602  */     height: 178px;
/* 8603  */
/* 8604  */     position: relative;
/* 8605  */
/* 8606  */     }
/* 8607  */
/* 8608  */
/* 8609  */
/* 8610  */ .wd-video-posts:hover .wd-video-bg {
/* 8611  */
/* 8612  */     background: rgba(0, 0, 0, 0.7);
/* 8613  */
/* 8614  */     }
/* 8615  */
/* 8616  */
/* 8617  */
/* 8618  */ .wd-video-posts img {
/* 8619  */
/* 8620  */     width: 320px;
/* 8621  */
/* 8622  */     height: 178px;
/* 8623  */
/* 8624  */     }
/* 8625  */
/* 8626  */
/* 8627  */
/* 8628  */ .wd-video-bg {
/* 8629  */
/* 8630  */     background: url("images/bg11.png");
/* 8631  */
/* 8632  */     left: 0;
/* 8633  */
/* 8634  */     width: 100%;
/* 8635  */
/* 8636  */     height: 178px;
/* 8637  */
/* 8638  */     bottom: 0px;
/* 8639  */
/* 8640  */     position: absolute;
/* 8641  */
/* 8642  */     }
/* 8643  */
/* 8644  */
/* 8645  */
/* 8646  */ .wd-video-title {
/* 8647  */
/* 8648  */     left: 30px;
/* 8649  */
/* 8650  */     bottom: 24px;

/* style.css */

/* 8651  */
/* 8652  */     position: absolute;
/* 8653  */
/* 8654  */     }
/* 8655  */
/* 8656  */
/* 8657  */
/* 8658  */ .wd-video-title span {
/* 8659  */
/* 8660  */     background: #000;
/* 8661  */
/* 8662  */     font-weight: 600;
/* 8663  */
/* 8664  */     line-height: 15px;
/* 8665  */
/* 8666  */     letter-spacing: 1.5px;
/* 8667  */
/* 8668  */     text-transform: uppercase;
/* 8669  */
/* 8670  */     top: -5px;
/* 8671  */
/* 8672  */     color: #fff;
/* 8673  */
/* 8674  */     float: left;
/* 8675  */
/* 8676  */     height: 15px;
/* 8677  */
/* 8678  */     padding: 3px 9px;
/* 8679  */
/* 8680  */     position: relative;
/* 8681  */
/* 8682  */     font-size: 10px;
/* 8683  */
/* 8684  */ 	font-family: "Montserrat";
/* 8685  */
/* 8686  */     }
/* 8687  */
/* 8688  */
/* 8689  */
/* 8690  */ .wd-video-title h2 {
/* 8691  */
/* 8692  */     font-weight: 900;
/* 8693  */
/* 8694  */     line-height: 1.3em;
/* 8695  */
/* 8696  */     text-transform: uppercase;
/* 8697  */
/* 8698  */     width: 260px;
/* 8699  */
/* 8700  */     color: #fff;

/* style.css */

/* 8701  */
/* 8702  */     float: left;
/* 8703  */
/* 8704  */     font-size: 18px;
/* 8705  */
/* 8706  */ 	margin: 0;
/* 8707  */
/* 8708  */     }
/* 8709  */
/* 8710  */
/* 8711  */
/* 8712  */ .wd-video-title h2 a { color: #fff }
/* 8713  */
/* 8714  */
/* 8715  */
/* 8716  */ .wd-video-title h2 a:hover { color: rba(255,255,255,0.7) !important }
/* 8717  */
/* 8718  */
/* 8719  */
/* 8720  */ .wd-video-play {
/* 8721  */
/* 8722  */     background: url("images/playL.png");
/* 8723  */
/* 8724  */     top: 17px;
/* 8725  */
/* 8726  */     right: 20px;
/* 8727  */
/* 8728  */     width: 64px;
/* 8729  */
/* 8730  */     height: 64px;
/* 8731  */
/* 8732  */     position: absolute;
/* 8733  */
/* 8734  */     }
/* 8735  */
/* 8736  */
/* 8737  */
/* 8738  */ .wd-video-play:hover { opacity: 0.6 }
/* 8739  */
/* 8740  */
/* 8741  */
/* 8742  */ /* ==== youtube / vimeo ==== */
/* 8743  */
/* 8744  */
/* 8745  */
/* 8746  */ .widget_youtube iframe, .widget_vimeo iframe {
/* 8747  */
/* 8748  */     width: 320px;
/* 8749  */
/* 8750  */     height: 220px;

/* style.css */

/* 8751  */
/* 8752  */ 	margin-top:2px;
/* 8753  */
/* 8754  */ 	margin-bottom:-6px;
/* 8755  */
/* 8756  */     }
/* 8757  */
/* 8758  */
/* 8759  */
/* 8760  */ /* -------------------------------wizedesign--
/* 8761  *|
/* 8762  *|      16. TOP MENU
/* 8763  *|
/* 8764  *|    ------------------------------------------- */
/* 8765  */
/* 8766  */
/* 8767  */
/* 8768  */ #top-menu {
/* 8769  */
/* 8770  */ 	background:#000;
/* 8771  */
/* 8772  */ 	width:1160px;
/* 8773  */
/* 8774  */ 	height:29px;
/* 8775  */
/* 8776  */ 	padding:0px 40px;
/* 8777  */
/* 8778  */ 	margin-top:-10px;
/* 8779  */
/* 8780  */ 	}
/* 8781  */
/* 8782  */
/* 8783  */
/* 8784  */ #wizetopmenu ul {
/* 8785  */
/* 8786  */ 	margin-left:-25px;
/* 8787  */
/* 8788  */ 	list-style-type: none;
/* 8789  */
/* 8790  */     }
/* 8791  */
/* 8792  */
/* 8793  */
/* 8794  */ #wizetopmenu ul ul { display:none }
/* 8795  */
/* 8796  */
/* 8797  */
/* 8798  */ #wizetopmenu > ul li {
/* 8799  */
/* 8800  */     list-style: none;

/* style.css */

/* 8801  */
/* 8802  */     float: left;
/* 8803  */
/* 8804  */ 	margin-top:7px;
/* 8805  */
/* 8806  */     }
/* 8807  */
/* 8808  */
/* 8809  */
/* 8810  */ #wizetopmenu > ul > li > a {
/* 8811  */
/* 8812  */ 	font-weight: 700;
/* 8813  */
/* 8814  */     line-height: 15px;
/* 8815  */
/* 8816  */ 	height:15px;
/* 8817  */
/* 8818  */     margin-right: 25px;
/* 8819  */
/* 8820  */     text-transform: uppercase;
/* 8821  */
/* 8822  */     color: rgba(255,255,255,0.7);
/* 8823  */
/* 8824  */     display: block;
/* 8825  */
/* 8826  */     font-size: 9px;
/* 8827  */
/* 8828  */ 	letter-spacing: 1px;
/* 8829  */
/* 8830  */ 	z-index: 999;
/* 8831  */
/* 8832  */ 	position:relative;
/* 8833  */
/* 8834  */     }
/* 8835  */
/* 8836  */
/* 8837  */
/* 8838  */ #wizetopmenu > ul > li.current-menu-item > a {
/* 8839  */
/* 8840  */     color: #fff;
/* 8841  */
/* 8842  */ 	font-weight:900;
/* 8843  */
/* 8844  */     }
/* 8845  */
/* 8846  */
/* 8847  */
/* 8848  */ #wizetopmenu > ul > li.current-menu-item > a:hover { color: rgba(255,255,255,0.7) }
/* 8849  */
/* 8850  */

/* style.css */

/* 8851  */
/* 8852  */ #wizetopmenu > ul > li:hover > a { color:#fff }
/* 8853  */
/* 8854  */
/* 8855  */
/* 8856  */ /* ==== current time ==== */
/* 8857  */
/* 8858  */
/* 8859  */
/* 8860  */ .top-menu-time {
/* 8861  */
/* 8862  */ 	float:right;
/* 8863  */
/* 8864  */ 	color:#fff;
/* 8865  */
/* 8866  */ 	text-transform: uppercase;
/* 8867  */
/* 8868  */ 	font-size:12px;
/* 8869  */
/* 8870  */ 	color: rgba(255,255,255,0.3);
/* 8871  */
/* 8872  */ 	font-family: "Montserrat";
/* 8873  */
/* 8874  */ 	font-weight:500;
/* 8875  */
/* 8876  */ 	margin-top:7px;
/* 8877  */
/* 8878  */ 	border-left:2px solid rgba(255,255,255,0.3);
/* 8879  */
/* 8880  */ 	height:15px;
/* 8881  */
/* 8882  */ 	line-height:15px;
/* 8883  */
/* 8884  */ 	padding-left:8px;
/* 8885  */
/* 8886  */ 	}
/* 8887  */
/* 8888  */
/* 8889  */
/* 8890  */ /* -------------------------------wizedesign--
/* 8891  *|
/* 8892  *|      17. HEADER MENU
/* 8893  *|
/* 8894  *|    ------------------------------------------- */
/* 8895  */
/* 8896  */
/* 8897  */
/* 8898  */ #menu {
/* 8899  */
/* 8900  */     float: left;

/* style.css */

/* 8901  */
/* 8902  */     margin: 22px auto 0px auto;
/* 8903  */
/* 8904  */     z-index: 999;
/* 8905  */
/* 8906  */     opacity: 1;
/* 8907  */
/* 8908  */     position: absolute;
/* 8909  */
/* 8910  */     }
/* 8911  */
/* 8912  */
/* 8913  */
/* 8914  */ #menu ul {
/* 8915  */
/* 8916  */     list-style-type: none;
/* 8917  */
/* 8918  */     }
/* 8919  */
/* 8920  */
/* 8921  */
/* 8922  */ #wizemenu > ul li {
/* 8923  */
/* 8924  */     list-style: none;
/* 8925  */
/* 8926  */     float: left;
/* 8927  */
/* 8928  */     }
/* 8929  */
/* 8930  */
/* 8931  */
/* 8932  */ #wizemenu > ul li:hover ul, #wizemenu > ul li li:hover ul, #wizemenu > ul li li li:hover ul, #wizemenu > ul li.over ul, #wizemenu > ul li li.over ul, #wizemenu >ul li li li.over ul { display: block }
/* 8933  */
/* 8934  */
/* 8935  */
/* 8936  */ #wizemenu > ul > li.has-sub { position: relative }
/* 8937  */
/* 8938  */
/* 8939  */
/* 8940  */
/* 8941  */
/* 8942  */ #wizemenu > ul > li > a {
/* 8943  */
/* 8944  */ 	font-weight: bold;
/* 8945  */
/* 8946  */     line-height: 15px;
/* 8947  */
/* 8948  */ 	height:15px;
/* 8949  */
/* 8950  */     margin-right: 35px;

/* style.css */

/* 8951  */
/* 8952  */     text-transform: uppercase;
/* 8953  */
/* 8954  */     color: rgba(255,255,255,1) !important;
/* 8955  */
/* 8956  */     display: block;
/* 8957  */
/* 8958  */     font-size: 13px;
/* 8959  */
/* 8960  */ 	letter-spacing: 1px;
/* 8961  */
/* 8962  */ 	z-index: 999;
/* 8963  */
/* 8964  */ 	position:relative;
/* 8965  */
/* 8966  */     }
/* 8967  */
/* 8968  */
/* 8969  */
/* 8970  */ #wizemenu > ul > li.active > a {
/* 8971  */
/* 8972  */     color: #fff;
/* 8973  */
/* 8974  */ 	font-weight:900;
/* 8975  */
/* 8976  */     }
/* 8977  */
/* 8978  */
/* 8979  */
/* 8980  */ #wizemenu > ul > li.active > a:hover { color: rgba(255,255,255,0.7) }
/* 8981  */
/* 8982  */
/* 8983  */
/* 8984  */ #wizemenu > ul > li:hover > a { color:#fff;  }
/* 8985  */
/* 8986  */
/* 8987  */
/* 8988  */ /* ==== childs ==== */
/* 8989  */
/* 8990  */
/* 8991  */
/* 8992  */ #wizemenu > ul li:hover ul {
/* 8993  */
/* 8994  */     visibility: visible;
/* 8995  */
/* 8996  */     top: 9px !important;
/* 8997  */
/* 8998  */     left: -20px;
/* 8999  */
/* 9000  */     margin: 0;

/* style.css */

/* 9001  */
/* 9002  */     opacity: 1;
/* 9003  */
/* 9004  */     z-index: 2;
/* 9005  */
/* 9006  */     }
/* 9007  */
/* 9008  */
/* 9009  */
/* 9010  */ #wizemenu > ul ul {
/* 9011  */
/* 9012  */     visibility: hidden;
/* 9013  */
/* 9014  */     padding: 36px 0px 0px 0px;
/* 9015  */
/* 9016  */     opacity: 0;
/* 9017  */
/* 9018  */     z-index: 2;
/* 9019  */
/* 9020  */     position: absolute;
/* 9021  */
/* 9022  */ 	top: 0px;
/* 9023  */
/* 9024  */     left: -20px;
/* 9025  */
/* 9026  */     }
/* 9027  */
/* 9028  */
/* 9029  */
/* 9030  */ #wizemenu > ul ul li.has-sub:first-child > a:after { top: 18px }
/* 9031  */
/* 9032  */
/* 9033  */
/* 9034  */ #wizemenu > ul ul li.has-sub > a:after {
/* 9035  */
/* 9036  */     font-weight: 400;
/* 9037  */
/* 9038  */     top: 10px;
/* 9039  */
/* 9040  */     right: 20px;
/* 9041  */
/* 9042  */     content: "+";
/* 9043  */
/* 9044  */     position: absolute;
/* 9045  */
/* 9046  */     font-size: 18px;
/* 9047  */
/* 9048  */ 	font-family: "Montserrat";
/* 9049  */
/* 9050  */     }

/* style.css */

/* 9051  */
/* 9052  */
/* 9053  */
/* 9054  */ #wizemenu > ul ul li {
/* 9055  */
/* 9056  */     list-style: none;
/* 9057  */
/* 9058  */     background: #000;
/* 9059  */
/* 9060  */     width: 100%;
/* 9061  */
/* 9062  */     margin: 0;
/* 9063  */
/* 9064  */     padding: 0px;
/* 9065  */
/* 9066  */     position: relative;
/* 9067  */
/* 9068  */     }
/* 9069  */
/* 9070  */
/* 9071  */
/* 9072  */ #wizemenu > ul ul li:first-child a { padding-top: 17px }
/* 9073  */
/* 9074  */
/* 9075  */
/* 9076  */ #wizemenu > ul ul li:last-child a { padding-bottom: 17px }
/* 9077  */
/* 9078  */
/* 9079  */
/* 9080  */ #wizemenu > ul ul li a {
/* 9081  */
/* 9082  */     font-weight: 600;
/* 9083  */
/* 9084  */     text-transform: uppercase;
/* 9085  */
/* 9086  */     text-decoration: none;
/* 9087  */
/* 9088  */     width: 170px;
/* 9089  */
/* 9090  */     color: #fff;
/* 9091  */
/* 9092  */     display: block;
/* 9093  */
/* 9094  */     padding: 9px 20px;
/* 9095  */
/* 9096  */     z-index: 999;
/* 9097  */
/* 9098  */     position: relative;
/* 9099  */
/* 9100  */     font-size: 12px;

/* style.css */

/* 9101  */
/* 9102  */ 	line-height:1.3em;
/* 9103  */
/* 9104  */     }
/* 9105  */
/* 9106  */
/* 9107  */
/* 9108  */ #wizemenu > ul ul li a:hover { color: rgba(255,255,255,0.7) }
/* 9109  */
/* 9110  */
/* 9111  */
/* 9112  */ /* ==== 3-level childs ==== */
/* 9113  */
/* 9114  */
/* 9115  */
/* 9116  */ #wizemenu > ul ul li:hover ul {
/* 9117  */
/* 9118  */     top: -28px;
/* 9119  */
/* 9120  */     left: 210px;
/* 9121  */
/* 9122  */ 	opacity:1;
/* 9123  */
/* 9124  */ 	visibility: visible;
/* 9125  */
/* 9126  */     }
/* 9127  */
/* 9128  */
/* 9129  */
/* 9130  */ #wizemenu > ul ul ul {
/* 9131  */
/* 9132  */     padding-left: 3px;
/* 9133  */
/* 9134  */ 	position: absolute;
/* 9135  */
/* 9136  */ 	top: -28px;
/* 9137  */
/* 9138  */     left: 210px;
/* 9139  */
/* 9140  */ 	visibility: hidden;
/* 9141  */
/* 9142  */ 	opacity:0;
/* 9143  */
/* 9144  */     }
/* 9145  */
/* 9146  */
/* 9147  */
/* 9148  */ #wizemenu > ul ul ul li {
/* 9149  */
/* 9150  */     list-style: none;

/* style.css */

/* 9151  */
/* 9152  */     margin-left: 0px;
/* 9153  */
/* 9154  */     }
/* 9155  */
/* 9156  */
/* 9157  */
/* 9158  */ #wizemenu > ul ul ul li:first-child a { padding-top: 17px }
/* 9159  */
/* 9160  */
/* 9161  */
/* 9162  */ #wizemenu > ul ul ul li:last-child a { padding-bottom: 17px }
/* 9163  */
/* 9164  */
/* 9165  */
/* 9166  */ #wizemenu > ul ul ul li a {
/* 9167  */
/* 9168  */     font-weight: 700;
/* 9169  */
/* 9170  */     text-transform: uppercase;
/* 9171  */
/* 9172  */     text-decoration: none;
/* 9173  */
/* 9174  */     width: 170px;
/* 9175  */
/* 9176  */     color: #fff;
/* 9177  */
/* 9178  */     display: block;
/* 9179  */
/* 9180  */     padding: 1px 20px;
/* 9181  */
/* 9182  */     z-index: 999;
/* 9183  */
/* 9184  */     position: relative;
/* 9185  */
/* 9186  */     font-size: 12px;
/* 9187  */
/* 9188  */ 	line-height:1.3em;
/* 9189  */
/* 9190  */     }
/* 9191  */
/* 9192  */
/* 9193  */
/* 9194  */ #wizemenu ul ul ul > li {
/* 9195  */
/* 9196  */     display: block;
/* 9197  */
/* 9198  */     position: relative;
/* 9199  */
/* 9200  */     }

/* style.css */

/* 9201  */
/* 9202  */
/* 9203  */
/* 9204  */ #wizemenu > ul li:hover ul ul { display: none }
/* 9205  */
/* 9206  */
/* 9207  */
/* 9208  */ #wizemenu > ul ul li:hover ul { display: block }
/* 9209  */
/* 9210  */
/* 9211  */
/* 9212  */ /* -------------------------------wizedesign--
/* 9213  *|
/* 9214  *|      18. MEGA MENU
/* 9215  *|
/* 9216  *|    ------------------------------------------- */
/* 9217  */
/* 9218  */
/* 9219  */
/* 9220  */ .megamenu {
/* 9221  */
/* 9222  */     list-style: none;
/* 9223  */
/* 9224  */     line-height: 1;
/* 9225  */
/* 9226  */     margin: 0;
/* 9227  */
/* 9228  */     padding: 0;
/* 9229  */
/* 9230  */     position: relative;
/* 9231  */
/* 9232  */     }
/* 9233  */
/* 9234  */
/* 9235  */
/* 9236  */ ul.megamenu li:hover .megamenu-width {
/* 9237  */
/* 9238  */     top: 0px;
/* 9239  */
/* 9240  */     left: -40px;
/* 9241  */
/* 9242  */ 	visibility: visible;
/* 9243  */
/* 9244  */ 	opacity:1;
/* 9245  */
/* 9246  */     }
/* 9247  */
/* 9248  */
/* 9249  */
/* 9250  */ .megamenu-width {

/* style.css */

/* 9251  */
/* 9252  */ 	visibility: hidden;
/* 9253  */
/* 9254  */     width: 1240px;
/* 9255  */
/* 9256  */     margin: 0px auto 0px auto;
/* 9257  */
/* 9258  */     z-index: 998;
/* 9259  */
/* 9260  */     overflow: hidden;
/* 9261  */
/* 9262  */ 	top: 0px;
/* 9263  */
/* 9264  */     left: -40px;
/* 9265  */
/* 9266  */ 	position: absolute;
/* 9267  */
/* 9268  */ 	opacity:0;
/* 9269  */
/* 9270  */     }
/* 9271  */
/* 9272  */
/* 9273  */
/* 9274  */ .megamenu-back {
/* 9275  */
/* 9276  */     background: #000;
/* 9277  */
/* 9278  */     width: 1160px;
/* 9279  */
/* 9280  */     height: 219px;
/* 9281  */
/* 9282  */     padding: 40px;
/* 9283  */
/* 9284  */     }
/* 9285  */
/* 9286  */
/* 9287  */
/* 9288  */ .megapost {
/* 9289  */
/* 9290  */     margin-right: 3px;
/* 9291  */
/* 9292  */     width: 287px;
/* 9293  */
/* 9294  */     float: left;
/* 9295  */
/* 9296  */     height: 219px;
/* 9297  */
/* 9298  */     position: relative;
/* 9299  */
/* 9300  */     }

/* style.css */

/* 9301  */
/* 9302  */
/* 9303  */
/* 9304  */ .megapost img {
/* 9305  */
/* 9306  */     width: 287px;
/* 9307  */
/* 9308  */     height: 219px;
/* 9309  */
/* 9310  */     opacity: 1;
/* 9311  */
/* 9312  */     }
/* 9313  */
/* 9314  */
/* 9315  */
/* 9316  */ .megapost-bg {
/* 9317  */
/* 9318  */     background: url("images/bg13.png");
/* 9319  */
/* 9320  */     left: 0;
/* 9321  */
/* 9322  */     width: 100%;
/* 9323  */
/* 9324  */     height: 219px;
/* 9325  */
/* 9326  */     bottom: 0;
/* 9327  */
/* 9328  */     z-index: 1;
/* 9329  */
/* 9330  */     position: absolute;
/* 9331  */
/* 9332  */     }
/* 9333  */
/* 9334  */
/* 9335  */
/* 9336  */ .megapost:hover .megapost-bg { background: rgba(0,0,0,0.7) }
/* 9337  */
/* 9338  */
/* 9339  */
/* 9340  */ .megapost h2 {
/* 9341  */
/* 9342  */ 	text-transform: uppercase;
/* 9343  */
/* 9344  */     font-weight: 900;
/* 9345  */
/* 9346  */     line-height: 1.3em;
/* 9347  */
/* 9348  */     font-size: 18px;
/* 9349  */
/* 9350  */ 	left: 20px;

/* style.css */

/* 9351  */
/* 9352  */     width: 250px;
/* 9353  */
/* 9354  */     bottom: -1px;
/* 9355  */
/* 9356  */     z-index: 3;
/* 9357  */
/* 9358  */     position: absolute;
/* 9359  */
/* 9360  */     }
/* 9361  */
/* 9362  */
/* 9363  */
/* 9364  */ .megapost h2 a { color: #fff }
/* 9365  */
/* 9366  */
/* 9367  */
/* 9368  */ .megapost h2 a:hover { color: rgba(255,255,255,0.7) }
/* 9369  */
/* 9370  */
/* 9371  */
/* 9372  */ .megapost-date {
/* 9373  */
/* 9374  */     background: #000;
/* 9375  */
/* 9376  */     text-transform: uppercase;
/* 9377  */
/* 9378  */     left: 15px;
/* 9379  */
/* 9380  */     color: #fff;
/* 9381  */
/* 9382  */     bottom: 100px;
/* 9383  */
/* 9384  */     padding: 3px 10px;
/* 9385  */
/* 9386  */     z-index: 3;
/* 9387  */
/* 9388  */     display: inline;
/* 9389  */
/* 9390  */     position: absolute;
/* 9391  */
/* 9392  */     font-size: 12px;
/* 9393  */
/* 9394  */     }
/* 9395  */
/* 9396  */
/* 9397  */
/* 9398  */ .megapost-vcl {
/* 9399  */
/* 9400  */     right: 20px;

/* style.css */

/* 9401  */
/* 9402  */     top: 17px;
/* 9403  */
/* 9404  */     z-index: 3;
/* 9405  */
/* 9406  */     display: inline;
/* 9407  */
/* 9408  */     position: absolute;
/* 9409  */
/* 9410  */     }
/* 9411  */
/* 9412  */
/* 9413  */
/* 9414  */ #wizemenu > ul ul.megapost {
/* 9415  */
/* 9416  */     background: none;
/* 9417  */
/* 9418  */     top: 0px;
/* 9419  */
/* 9420  */     padding: 0;
/* 9421  */
/* 9422  */     }
/* 9423  */
/* 9424  */
/* 9425  */
/* 9426  */ #wizemenu ul > li > .megamenu-width {
/* 9427  */
/* 9428  */     padding-top: 36px;
/* 9429  */
/* 9430  */     position: absolute;
/* 9431  */
/* 9432  */     }
/* 9433  */
/* 9434  */
/* 9435  */
/* 9436  */ #wizemenu > ul ul.megapost:hover .megapost-title span { color: rgba(255, 255, 255, 0.6) }
/* 9437  */
/* 9438  */
/* 9439  */
/* 9440  */ #wizemenu > ul ul.megapost:hover .megapost-bg { background-color: rgba(0, 0, 0, 0.8) }
/* 9441  */
/* 9442  */
/* 9443  */
/* 9444  */ #wizemenu > ul ul.megapost li a { padding: 0px }
/* 9445  */
/* 9446  */
/* 9447  */
/* 9448  */ #wizemenu > ul li:hover ul.megapost { top: 0px }
/* 9449  */
/* 9450  */

/* style.css */

/* 9451  */
/* 9452  */ /* -------------------------------wizedesign--
/* 9453  *|
/* 9454  *|      19. NEWS
/* 9455  *|
/* 9456  *|    ------------------------------------------- */
/* 9457  */
/* 9458  */
/* 9459  */
/* 9460  */ #news {
/* 9461  */
/* 9462  */     width: 786px;
/* 9463  */
/* 9464  */     height: 90px;
/* 9465  */
/* 9466  */ 	float:right;
/* 9467  */
/* 9468  */ 	margin-right:0px;
/* 9469  */
/* 9470  */     }
/* 9471  */
/* 9472  */
/* 9473  */
/* 9474  */ #news .overflowholder {
/* 9475  */
/* 9476  */     width: 100%;
/* 9477  */
/* 9478  */     z-index: 2;
/* 9479  */
/* 9480  */     overflow: hidden;
/* 9481  */
/* 9482  */     position: relative;
/* 9483  */
/* 9484  */     }
/* 9485  */
/* 9486  */
/* 9487  */
/* 9488  */ #news .overflowholder ul {
/* 9489  */
/* 9490  */     top: 0px;
/* 9491  */
/* 9492  */     left: 0px;
/* 9493  */
/* 9494  */     width: 786px;
/* 9495  */
/* 9496  */     position: absolute;
/* 9497  */
/* 9498  */     }
/* 9499  */
/* 9500  */

/* style.css */

/* 9501  */
/* 9502  */ #news .overflowholder ul li {
/* 9503  */
/* 9504  */     transition: all 0.25s ease-in-out;
/* 9505  */
/* 9506  */     margin-right: 3px;
/* 9507  */
/* 9508  */     -o-transition: all 0.25s ease-in-out;
/* 9509  */
/* 9510  */     -ms-transition: all 0.25s ease-in-out;
/* 9511  */
/* 9512  */     -moz-transition: all 0.25s ease-in-out;
/* 9513  */
/* 9514  */     list-style-type: none;
/* 9515  */
/* 9516  */     -webkit-transition: all 0.25s ease;
/* 9517  */
/* 9518  */     float: left !important;
/* 9519  */
/* 9520  */     width: 260px !important;
/* 9521  */
/* 9522  */     position: relative;
/* 9523  */
/* 9524  */     }
/* 9525  */
/* 9526  */
/* 9527  */
/* 9528  */ #news ul, #news li {
/* 9529  */
/* 9530  */     list-style: none;
/* 9531  */
/* 9532  */     margin: 0;
/* 9533  */
/* 9534  */     padding: 0;
/* 9535  */
/* 9536  */     }
/* 9537  */
/* 9538  */
/* 9539  */
/* 9540  */ #news ul li {
/* 9541  */
/* 9542  */     margin-right: 3px;
/* 9543  */
/* 9544  */     -webkit-transform: translateZ(10);
/* 9545  */
/* 9546  */     -webkit-perspective: 1000;
/* 9547  */
/* 9548  */     -webkit-backface-visibility: hidden;
/* 9549  */
/* 9550  */     position: relative;

/* style.css */

/* 9551  */
/* 9552  */     }
/* 9553  */
/* 9554  */
/* 9555  */
/* 9556  */ .news-wrap {
/* 9557  */
/* 9558  */     width: 260px;
/* 9559  */
/* 9560  */     height: 90px;
/* 9561  */
/* 9562  */     }
/* 9563  */
/* 9564  */
/* 9565  */
/* 9566  */ .news-wrap:hover .news-bg { background: rgba(0, 0, 0, 0.5) }
/* 9567  */
/* 9568  */
/* 9569  */
/* 9570  */ .news-bg {
/* 9571  */
/* 9572  */     background: rgba(255, 255, 255, 0.1);
/* 9573  */
/* 9574  */     top: 0px;
/* 9575  */
/* 9576  */     left: 0px;
/* 9577  */
/* 9578  */     width: 260px;
/* 9579  */
/* 9580  */     height: 90px;
/* 9581  */
/* 9582  */     position: absolute;
/* 9583  */
/* 9584  */     }
/* 9585  */
/* 9586  */
/* 9587  */
/* 9588  */ .news-title {
/* 9589  */
/* 9590  */     left: 20px;
/* 9591  */
/* 9592  */     width: 230px;
/* 9593  */
/* 9594  */     bottom: 1px;
/* 9595  */
/* 9596  */     position: absolute;
/* 9597  */
/* 9598  */     }
/* 9599  */
/* 9600  */

/* style.css */

/* 9601  */
/* 9602  */ .news-title h3 {
/* 9603  */
/* 9604  */     line-height: 1.3em;
/* 9605  */
/* 9606  */     font-weight: 900;
/* 9607  */
/* 9608  */     text-transform: uppercase;
/* 9609  */
/* 9610  */     color: #fff;
/* 9611  */
/* 9612  */     font-size: 14px;
/* 9613  */
/* 9614  */     }
/* 9615  */
/* 9616  */
/* 9617  */
/* 9618  */ .news-date {
/* 9619  */
/* 9620  */     text-transform: uppercase;
/* 9621  */
/* 9622  */     top: 12px;
/* 9623  */
/* 9624  */     left: 20px;
/* 9625  */
/* 9626  */     color: rgba(255,255,255,0.7);
/* 9627  */
/* 9628  */     position: absolute;
/* 9629  */
/* 9630  */     font-size: 10px;
/* 9631  */
/* 9632  */ 	font-family: "Montserrat";
/* 9633  */
/* 9634  */     }
/* 9635  */
/* 9636  */
/* 9637  */
/* 9638  */ .news-cat {
/* 9639  */
/* 9640  */ 	line-height: 15px;
/* 9641  */
/* 9642  */     letter-spacing: 1.7px;
/* 9643  */
/* 9644  */     text-transform: uppercase;
/* 9645  */
/* 9646  */     top: 0px;
/* 9647  */
/* 9648  */     right: 20px;
/* 9649  */
/* 9650  */     color: #fff;

/* style.css */

/* 9651  */
/* 9652  */     height: 15px;
/* 9653  */
/* 9654  */     padding: 3px 8px;
/* 9655  */
/* 9656  */     position: absolute;
/* 9657  */
/* 9658  */     font-size: 9px;
/* 9659  */
/* 9660  */ 	font-weight:900;
/* 9661  */
/* 9662  */     }
/* 9663  */
/* 9664  */
/* 9665  */
/* 9666  */ /* -------------------------------wizedesign--
/* 9667  *|
/* 9668  *|      20. FEATURE
/* 9669  *|
/* 9670  *|    ------------------------------------------- */
/* 9671  */
/* 9672  */
/* 9673  */
/* 9674  */ #feat {
/* 9675  */
/* 9676  */     margin: 0 auto;
/* 9677  */
/* 9678  */     height: 275px;
/* 9679  */
/* 9680  */ 	width:1240px;
/* 9681  */
/* 9682  */ 	overflow: hidden;
/* 9683  */
/* 9684  */     }
/* 9685  */
/* 9686  */
/* 9687  */
/* 9688  */ .feat-wrap {
/* 9689  */
/* 9690  */     width:1240px;
/* 9691  */
/* 9692  */     height: 275px;
/* 9693  */
/* 9694  */     overflow: hidden;
/* 9695  */
/* 9696  */     position: absolute;
/* 9697  */
/* 9698  */     }
/* 9699  */
/* 9700  */

/* style.css */

/* 9701  */
/* 9702  */ .feat-cover {
/* 9703  */
/* 9704  */     float: left;
/* 9705  */
/* 9706  */     width: 495px;
/* 9707  */
/* 9708  */     height: 275px;
/* 9709  */
/* 9710  */     display: block;
/* 9711  */
/* 9712  */     position: relative;
/* 9713  */
/* 9714  */     }
/* 9715  */
/* 9716  */
/* 9717  */
/* 9718  */ .feat-cover:hover .feat-bg { background: rgba(0, 0, 0, 0.7) }
/* 9719  */
/* 9720  */
/* 9721  */
/* 9722  */ .feat-cover span {
/* 9723  */
/* 9724  */     font-weight: 400;
/* 9725  */
/* 9726  */     padding-top: 3px;
/* 9727  */
/* 9728  */     color: #000;
/* 9729  */
/* 9730  */     display: block;
/* 9731  */
/* 9732  */     font-size: 12px;
/* 9733  */
/* 9734  */     }
/* 9735  */
/* 9736  */
/* 9737  */
/* 9738  */ .feat-cover img {
/* 9739  */
/* 9740  */     width: 495px;
/* 9741  */
/* 9742  */     height: 275px;
/* 9743  */
/* 9744  */     }
/* 9745  */
/* 9746  */
/* 9747  */
/* 9748  */ .feat-title {
/* 9749  */
/* 9750  */     left: 30px;

/* style.css */

/* 9751  */
/* 9752  */     width: 430px;
/* 9753  */
/* 9754  */     bottom: 7px;
/* 9755  */
/* 9756  */     z-index: 3;
/* 9757  */
/* 9758  */     position: absolute;
/* 9759  */
/* 9760  */     }
/* 9761  */
/* 9762  */
/* 9763  */
/* 9764  */ .feat-title span {
/* 9765  */
/* 9766  */ 	font-size: 12px;
/* 9767  */
/* 9768  */ 	color: #fff;
/* 9769  */
/* 9770  */ 	text-transform: uppercase;
/* 9771  */
/* 9772  */ 	font-family: "Montserrat";
/* 9773  */
/* 9774  */ 	border-bottom: 3px solid #fff;
/* 9775  */
/* 9776  */ 	padding: 3px 3px;
/* 9777  */
/* 9778  */ 	line-height:12px;
/* 9779  */
/* 9780  */ 	float:left;
/* 9781  */
/* 9782  */     }
/* 9783  */
/* 9784  */
/* 9785  */
/* 9786  */ .feat-title h2 {
/* 9787  */
/* 9788  */     line-height: 1.3em;
/* 9789  */
/* 9790  */     font-weight: 900;
/* 9791  */
/* 9792  */     text-transform: uppercase;
/* 9793  */
/* 9794  */     color: #fff;
/* 9795  */
/* 9796  */     font-size: 26px;
/* 9797  */
/* 9798  */ 	float:left;
/* 9799  */
/* 9800  */ 	margin-top:8px;

/* style.css */

/* 9801  */
/* 9802  */     }
/* 9803  */
/* 9804  */
/* 9805  */
/* 9806  */ .feat-cat {
/* 9807  */
/* 9808  */     font-weight: 900;
/* 9809  */
/* 9810  */     line-height: 15px;
/* 9811  */
/* 9812  */     letter-spacing: 1.7px;
/* 9813  */
/* 9814  */     text-transform: uppercase;
/* 9815  */
/* 9816  */     top: 0px;
/* 9817  */
/* 9818  */     left: 30px;
/* 9819  */
/* 9820  */     color: #fff;
/* 9821  */
/* 9822  */     height: 15px;
/* 9823  */
/* 9824  */     padding: 4px 10px ;
/* 9825  */
/* 9826  */     z-index: 3;
/* 9827  */
/* 9828  */     position: absolute;
/* 9829  */
/* 9830  */     position: absolute;
/* 9831  */
/* 9832  */     font-size: 9px;
/* 9833  */
/* 9834  */     }
/* 9835  */
/* 9836  */
/* 9837  */
/* 9838  */ .feat-bg {
/* 9839  */
/* 9840  */     background: url("images/bg14.png");
/* 9841  */
/* 9842  */     top: 0;
/* 9843  */
/* 9844  */     left: 0;
/* 9845  */
/* 9846  */     width: 100%;
/* 9847  */
/* 9848  */     height: 275px;
/* 9849  */
/* 9850  */     z-index: 1;

/* style.css */

/* 9851  */
/* 9852  */     position: absolute;
/* 9853  */
/* 9854  */     }
/* 9855  */
/* 9856  */
/* 9857  */
/* 9858  */ .feat-vcl {
/* 9859  */
/* 9860  */     top: 22px;
/* 9861  */
/* 9862  */     right: 30px;
/* 9863  */
/* 9864  */     z-index: 3;
/* 9865  */
/* 9866  */     position: absolute;
/* 9867  */
/* 9868  */     }
/* 9869  */
/* 9870  */
/* 9871  */
/* 9872  */ .feat-prev {
/* 9873  */
/* 9874  */     background-position: left;
/* 9875  */
/* 9876  */     top: 0;
/* 9877  */
/* 9878  */     width: 50%;
/* 9879  */
/* 9880  */     height: 275px;
/* 9881  */
/* 9882  */     display: block;
/* 9883  */
/* 9884  */     z-index: 4;
/* 9885  */
/* 9886  */     position: absolute;
/* 9887  */
/* 9888  */ 	background-color: rgba(0, 0, 0, 1);
/* 9889  */
/* 9890  */     background-image: url("images/leftB.png");
/* 9891  */
/* 9892  */     background-repeat: no-repeat;
/* 9893  */
/* 9894  */     background-position: right 105px;
/* 9895  */
/* 9896  */ 	opacity:0.5;
/* 9897  */
/* 9898  */     }
/* 9899  */
/* 9900  */

/* style.css */

/* 9901  */
/* 9902  */ .feat-prev:hover {
/* 9903  */
/* 9904  */ 	opacity:8;
/* 9905  */
/* 9906  */ 	background-color: rgba(0, 0, 0, 0.7);
/* 9907  */
/* 9908  */     }
/* 9909  */
/* 9910  */
/* 9911  */
/* 9912  */ .feat-next {
/* 9913  */
/* 9914  */     background-position: right;
/* 9915  */
/* 9916  */     top: 0;
/* 9917  */
/* 9918  */     width: 50%;
/* 9919  */
/* 9920  */     height: 275px;
/* 9921  */
/* 9922  */     display: block;
/* 9923  */
/* 9924  */     z-index: 4;
/* 9925  */
/* 9926  */     position: absolute;
/* 9927  */
/* 9928  */ 	background-color: rgba(0, 0, 0, 1);
/* 9929  */
/* 9930  */     background-image: url("images/rightB.png");
/* 9931  */
/* 9932  */     background-repeat: no-repeat;
/* 9933  */
/* 9934  */     background-position: left 105px;
/* 9935  */
/* 9936  */ 	opacity:0.5;
/* 9937  */
/* 9938  */     }
/* 9939  */
/* 9940  */
/* 9941  */
/* 9942  */ .feat-next:hover {
/* 9943  */
/* 9944  */ 	opacity:8;
/* 9945  */
/* 9946  */ 	background-color: rgba(0, 0, 0, 0.7);
/* 9947  */
/* 9948  */     }
/* 9949  */
/* 9950  */

/* style.css */

/* 9951  */
/* 9952  */ .feat-prev { left: -495px }
/* 9953  */
/* 9954  */
/* 9955  */
/* 9956  */ .feat-next { right: -495px }
/* 9957  */
/* 9958  */
/* 9959  */
/* 9960  */ /* -------------------------------wizedesign--
/* 9961  *|
/* 9962  *|      21. PAGINATION
/* 9963  *|
/* 9964  *|    ------------------------------------------- */
/* 9965  */
/* 9966  */
/* 9967  */
/* 9968  */ #pagination-posts {
/* 9969  */
/* 9970  */     margin-bottom: 40px;
/* 9971  */
/* 9972  */     text-align: center;
/* 9973  */
/* 9974  */     float: left;
/* 9975  */
/* 9976  */     width: 100%;
/* 9977  */
/* 9978  */     height: 33px;
/* 9979  */
/* 9980  */     bottom: 0px;
/* 9981  */
/* 9982  */     display: block;
/* 9983  */
/* 9984  */     position: relative;
/* 9985  */
/* 9986  */     }
/* 9987  */
/* 9988  */
/* 9989  */
/* 9990  */ .pagination {
/* 9991  */
/* 9992  */     line-height: 33px;
/* 9993  */
/* 9994  */     height: 33px;
/* 9995  */
/* 9996  */     }
/* 9997  */
/* 9998  */
/* 9999  */
/* 10000 */ .pagination .current { opacity: 0.3 }

/* style.css */

/* 10001 */
/* 10002 */
/* 10003 */
/* 10004 */ .pagination span, .pagination a {
/* 10005 */
/* 10006 */     background: #000;
/* 10007 */
/* 10008 */     font-weight: 700;
/* 10009 */
/* 10010 */     margin-right: 3px;
/* 10011 */
/* 10012 */     border-radius: 1.5px;
/* 10013 */
/* 10014 */     text-decoration: none;
/* 10015 */
/* 10016 */     width: 32px;
/* 10017 */
/* 10018 */     color: #fff;
/* 10019 */
/* 10020 */     padding: 5px 13px;
/* 10021 */
/* 10022 */     font-size: 16px;
/* 10023 */
/* 10024 */ 	font-family: "Montserrat";
/* 10025 */
/* 10026 */     }
/* 10027 */
/* 10028 */
/* 10029 */
/* 10030 */ .pagination a:hover { color: #fff }
/* 10031 */
/* 10032 */
/* 10033 */
/* 10034 */ .sng-pagination {
/* 10035 */
/* 10036 */     margin-top: 18px;
/* 10037 */
/* 10038 */     text-align: center;
/* 10039 */
/* 10040 */     margin-bottom: 29px;
/* 10041 */
/* 10042 */     width: 810px;
/* 10043 */
/* 10044 */     float: left;
/* 10045 */
/* 10046 */     }
/* 10047 */
/* 10048 */
/* 10049 */
/* 10050 */ .sng-pagination a span {

/* style.css */

/* 10051 */
/* 10052 */     background: #000;
/* 10053 */
/* 10054 */     color: #fff;
/* 10055 */
/* 10056 */     }
/* 10057 */
/* 10058 */
/* 10059 */
/* 10060 */ .sng-pagination span {
/* 10061 */
/* 10062 */     background: rgba(0, 0, 0, 0.2);
/* 10063 */
/* 10064 */     font-weight: 600;
/* 10065 */
/* 10066 */     border-radius: 3px;
/* 10067 */
/* 10068 */     color: rgba(255, 255, 255, 0.9);
/* 10069 */
/* 10070 */     padding: 3px 11px;
/* 10071 */
/* 10072 */     font-size: 14px;
/* 10073 */
/* 10074 */     }
/* 10075 */
/* 10076 */
/* 10077 */
/* 10078 */ /* -------------------------------wizedesign--
/* 10079 *|
/* 10080 *|      22. WORDPRESS CORE
/* 10081 *|
/* 10082 *|    ------------------------------------------- */
/* 10083 */
/* 10084 */
/* 10085 */
/* 10086 */ .alignnone { margin: 5px 0 }
/* 10087 */
/* 10088 */
/* 10089 */
/* 10090 */ .aligncenter, div.aligncenter {
/* 10091 */
/* 10092 */     margin: 5px auto 5px auto;
/* 10093 */
/* 10094 */     display: block;
/* 10095 */
/* 10096 */     }
/* 10097 */
/* 10098 */
/* 10099 */
/* 10100 */ .alignright {

/* style.css */

/* 10101 */
/* 10102 */     float: right;
/* 10103 */
/* 10104 */     margin: 5px 0 20px 20px;
/* 10105 */
/* 10106 */     }
/* 10107 */
/* 10108 */
/* 10109 */
/* 10110 */ .alignleft {
/* 10111 */
/* 10112 */     float: left;
/* 10113 */
/* 10114 */     margin: 5px 20px 20px 0;
/* 10115 */
/* 10116 */     }
/* 10117 */
/* 10118 */
/* 10119 */
/* 10120 */ .aligncenter {
/* 10121 */
/* 10122 */     margin: 5px auto 5px auto;
/* 10123 */
/* 10124 */     display: block;
/* 10125 */
/* 10126 */     }
/* 10127 */
/* 10128 */
/* 10129 */
/* 10130 */ a img.alignright {
/* 10131 */
/* 10132 */     float: right;
/* 10133 */
/* 10134 */     margin: margin: 5px 0;
/* 10135 */
/* 10136 */     }
/* 10137 */
/* 10138 */
/* 10139 */
/* 10140 */ a img.alignnone { margin: 5px 0 }
/* 10141 */
/* 10142 */
/* 10143 */
/* 10144 */ a img.alignleft {
/* 10145 */
/* 10146 */     float: left;
/* 10147 */
/* 10148 */     margin: 5px 20px 20px 0;
/* 10149 */
/* 10150 */     }

/* style.css */

/* 10151 */
/* 10152 */
/* 10153 */
/* 10154 */ a img.aligncenter {
/* 10155 */
/* 10156 */     margin-left: auto;
/* 10157 */
/* 10158 */     margin-right: auto;
/* 10159 */
/* 10160 */     display: block;
/* 10161 */
/* 10162 */     }
/* 10163 */
/* 10164 */
/* 10165 */
/* 10166 */ .sticky {
/* 10167 */
/* 10168 */     background: #f7f7f7;
/* 10169 */
/* 10170 */     text-transform: uppercase;
/* 10171 */
/* 10172 */     right: 5px;
/* 10173 */
/* 10174 */     color: #aaa;
/* 10175 */
/* 10176 */     bottom: 5px;
/* 10177 */
/* 10178 */     padding: 0 5px;
/* 10179 */
/* 10180 */     position: absolute;
/* 10181 */
/* 10182 */     font-size: 14px;
/* 10183 */
/* 10184 */     }
/* 10185 */
/* 10186 */
/* 10187 */
/* 10188 */ .gallery-caption { }
/* 10189 */
/* 10190 */
/* 10191 */
/* 10192 */ .bypostauthor { }
/* 10193 */
/* 10194 */
/* 10195 */
/* 10196 */ .wp-caption {
/* 10197 */
/* 10198 */     background: #000;
/* 10199 */
/* 10200 */     text-align: center;

/* style.css */

/* 10201 */
/* 10202 */     padding: 8px;
/* 10203 */
/* 10204 */     max-width: 100%;
/* 10205 */
/* 10206 */     }
/* 10207 */
/* 10208 */
/* 10209 */
/* 10210 */ .footer-col .wp-caption {
/* 10211 */
/* 10212 */     background: #222;
/* 10213 */
/* 10214 */     text-align: center;
/* 10215 */
/* 10216 */     padding: 8px;
/* 10217 */
/* 10218 */     max-width: 100%;
/* 10219 */
/* 10220 */     }
/* 10221 */
/* 10222 */
/* 10223 */
/* 10224 */ .wp-caption p.wp-caption-text {
/* 10225 */
/* 10226 */     line-height: 16px;
/* 10227 */
/* 10228 */     color: #fff;
/* 10229 */
/* 10230 */     margin: 0;
/* 10231 */
/* 10232 */     padding: 4px 4px;
/* 10233 */
/* 10234 */     font-size: 12px;
/* 10235 */
/* 10236 */     }
/* 10237 */
/* 10238 */
/* 10239 */
/* 10240 */ .wp-caption img {
/* 10241 */
/* 10242 */     width: auto;
/* 10243 */
/* 10244 */     border: 0 none;
/* 10245 */
/* 10246 */     height: auto;
/* 10247 */
/* 10248 */     margin: 0;
/* 10249 */
/* 10250 */     padding: 0;

/* style.css */

/* 10251 */
/* 10252 */     max-width: 100%;
/* 10253 */
/* 10254 */     }
/* 10255 */
/* 10256 */
/* 10257 */
/* 10258 */ .wp-caption.alignnone { margin: 5px 20px 20px 0 }
/* 10259 */
/* 10260 */
/* 10261 */
/* 10262 */ .wp-caption.alignleft { margin: 5px 20px 20px 0 }
/* 10263 */
/* 10264 */
/* 10265 */
/* 10266 */ .wp-caption.alignright { margin: 5px 0 20px 20px }
/* 10267 */
/* 10268 */
/* 10269 */
/* 10270 */ .screen-reader-text {
/* 10271 */
/* 10272 */ 	clip: rect(1px, 1px, 1px, 1px);
/* 10273 */
/* 10274 */ 	position: absolute !important;
/* 10275 */
/* 10276 */ 	height: 1px;
/* 10277 */
/* 10278 */ 	width: 1px;
/* 10279 */
/* 10280 */ 	overflow: hidden;
/* 10281 */
/* 10282 */ }
/* 10283 */
/* 10284 */
/* 10285 */
/* 10286 */ .screen-reader-text:focus {
/* 10287 */
/* 10288 */ 	background-color: #f1f1f1;
/* 10289 */
/* 10290 */ 	border-radius: 3px;
/* 10291 */
/* 10292 */ 	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
/* 10293 */
/* 10294 */ 	clip: auto !important;
/* 10295 */
/* 10296 */ 	color: #21759b;
/* 10297 */
/* 10298 */ 	display: block;
/* 10299 */
/* 10300 */ 	font-size: 14px;

/* style.css */

/* 10301 */
/* 10302 */ 	font-size: 0.875rem;
/* 10303 */
/* 10304 */ 	font-weight: bold;
/* 10305 */
/* 10306 */ 	height: auto;
/* 10307 */
/* 10308 */ 	left: 5px;
/* 10309 */
/* 10310 */ 	line-height: normal;
/* 10311 */
/* 10312 */ 	padding: 15px 23px 14px;
/* 10313 */
/* 10314 */ 	text-decoration: none;
/* 10315 */
/* 10316 */ 	top: 5px;
/* 10317 */
/* 10318 */ 	width: auto;
/* 10319 */
/* 10320 */ 	z-index: 100000;
/* 10321 */
/* 10322 */ }
/* 10323 */
/* 10324 */
/* 10325 */
/* 10326 */ form > p > input {
/* 10327 */
/* 10328 */     text-transform: uppercase;
/* 10329 */
/* 10330 */     color: #fff;
/* 10331 */
/* 10332 */     border: 0px;
/* 10333 */
/* 10334 */     padding: 5px;
/* 10335 */
/* 10336 */     }
/* 10337 */
/* 10338 */
/* 10339 */
/* 10340 */ #display-none { display: none !important }
/* 10341 */
/* 10342 */
/* 10343 */
/* 10344 */
/* 10345 */
/* 10346 */ .as-seen-on {
/* 10347 */
/* 10348 */     width: 100%;
/* 10349 */
/* 10350 */     margin-bottom: 40px;

/* style.css */

/* 10351 */
/* 10352 */ }
/* 10353 */
/* 10354 */ .as-seen-on img {
/* 10355 */
/* 10356 */     width: 100%;
/* 10357 */
/* 10358 */ }
/* 10359 */
/* 10360 */
/* 10361 */
/* 10362 */ /* Miguel was here */
/* 10363 */
/* 10364 */ #header-banner a {
/* 10365 */
/* 10366 */     font-family: "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif !important;
/* 10367 */
/* 10368 */     font-weight: 500 !important;
/* 10369 */
/* 10370 */ }
/* 10371 */
/* 10372 */ .megamenu > li {
/* 10373 */
/* 10374 */     margin: 0 !important;
/* 10375 */
/* 10376 */     padding: 15px 0 !important;
/* 10377 */
/* 10378 */     margin-top: -10px !important;
/* 10379 */
/* 10380 */ }
/* 10381 */
/* 10382 */ .megamenu > li.active, .megamenu li:hover {
/* 10383 */
/* 10384 */     background: #0066ba !important;
/* 10385 */
/* 10386 */ }
/* 10387 */
/* 10388 */ .megamenu > li > a{
/* 10389 */
/* 10390 */     width: 100% !important;
/* 10391 */
/* 10392 */     text-align: center;
/* 10393 */
/* 10394 */ }
/* 10395 */
/* 10396 */ .megamenu li:hover > a {
/* 10397 */
/* 10398 */     font-weight: bold !important;
/* 10399 */
/* 10400 */     opacity: 1 !important;

/* style.css */

/* 10401 */
/* 10402 */     color: #fff !important;
/* 10403 */
/* 10404 */ }
/* 10405 */
/* 10406 */ #wizemenu > ul ul {
/* 10407 */
/* 10408 */     top: 9px !important;
/* 10409 */
/* 10410 */     left: 0px !important;
/* 10411 */
/* 10412 */ }
/* 10413 */
/* 10414 */ .info-viewC {
/* 10415 */
/* 10416 */     display: none !important;
/* 10417 */
/* 10418 */ }
/* 10419 */
/* 10420 */ .info-comC {
/* 10421 */
/* 10422 */     float: right !important;
/* 10423 */
/* 10424 */     text-shadow: rgba(0,0,0,0.5) 1px 2px 3px !important;
/* 10425 */
/* 10426 */ }
/* 10427 */
/* 10428 */ #menu {
/* 10429 */
/* 10430 */     margin-top: 10px !important;
/* 10431 */
/* 10432 */ }
/* 10433 */
/* 10434 */ .mss-row, #mss{
/* 10435 */
/* 10436 */     height: 45px !important;
/* 10437 */
/* 10438 */ }
/* 10439 */
/* 10440 */ #searchforms {
/* 10441 */
/* 10442 */     margin-top: -12px !important;
/* 10443 */
/* 10444 */ }
/* 10445 */
/* 10446 */ #searchforms .submit {
/* 10447 */
/* 10448 */     margin-top: 6px !important;
/* 10449 */
/* 10450 */ }

/* style.css */

/* 10451 */
/* 10452 */ .bars{
/* 10453 */
/* 10454 */     margin: 0 !important;
/* 10455 */
/* 10456 */     background-color: #0066ba !important;
/* 10457 */
/* 10458 */     width: 45px !important;
/* 10459 */
/* 10460 */     height: 45px !important;
/* 10461 */
/* 10462 */     background-size: 90%;
/* 10463 */
/* 10464 */ }
/* 10465 */
/* 10466 */ ul.megamenu > li > a{
/* 10467 */
/* 10468 */     color: #fff !important;
/* 10469 */
/* 10470 */ }
/* 10471 */
/* 10472 */
/* 10473 */
/* 10474 */ /*@media screen and (min-width: 1px) and (max-width: 4000px){*/
/* 10475 */
/* 10476 */ /*    #sld-left, .slider-boxed:nth-child(1){
/* 10477 *|
/* 10478 *|         float: left !important;
/* 10479 *|
/* 10480 *|         display: inline-block !important;
/* 10481 *|
/* 10482 *|         width: 70% !important;
/* 10483 *|
/* 10484 *|         height: 540px !important;
/* 10485 *|
/* 10486 *|     }
/* 10487 *|
/* 10488 *|     #sld-left {
/* 10489 *|
/* 10490 *|         width: 59% !important;
/* 10491 *|
/* 10492 *|         height: 532px !important;
/* 10493 *|
/* 10494 *|         position: relative !important;
/* 10495 *|
/* 10496 *|         display: inline-block !important;
/* 10497 *|
/* 10498 *|         float: left;
/* 10499 *|
/* 10500 *|     }

/* style.css *|

/* 10501 *|
/* 10502 *|     .slider-boxed #af-form-318534403 {
/* 10503 *|
/* 10504 *|         width: 40% !important;
/* 10505 *|
/* 10506 *|         height: 532px !important;
/* 10507 *|
/* 10508 *|         position: relative !important;
/* 10509 *|
/* 10510 *|         display: inline-block !important;
/* 10511 *|
/* 10512 *|         float: left;
/* 10513 *|
/* 10514 *|     }
/* 10515 *|
/* 10516 *|     #slider .slider-boxed:nth-child(2), #slider .slider-boxed:nth-child(3){
/* 10517 *|
/* 10518 *|         float: left;
/* 10519 *|
/* 10520 *|         display: inline-block;
/* 10521 *|
/* 10522 *|         width: 30% !important;
/* 10523 *|
/* 10524 *|         height: 270px !important;
/* 10525 *|
/* 10526 *|     }
/* 10527 *|
/* 10528 *|     #sld-top,#sld-bottom{
/* 10529 *|
/* 10530 *|         width: 100% !important;
/* 10531 *|
/* 10532 *|         height: 270px !important;
/* 10533 *|
/* 10534 *|     }
/* 10535 *|
/* 10536 *|     #aweber-8 {
/* 10537 *|
/* 10538 *|         display: none !important;
/* 10539 *|
/* 10540 *|     }*/
/* 10541 */
/* 10542 */ /*}*/
/* 10543 */
/* 10544 */     #sld-left {
/* 10545 */
/* 10546 */         height: 540px !important;
/* 10547 */
/* 10548 */     }
/* 10549 */
/* 10550 */     #sld-top,#sld-bottom{

/* style.css */

/* 10551 */
/* 10552 */         height: 270px !important;
/* 10553 */
/* 10554 */     }
/* 10555 */
/* 10556 */ /* Miguel was here
/* Minify_CSS_UriRewriter::$debugText

*/

/* royal.css */

/* 1   */ /* v1.0.5 */
/* 2   */ /* Core RS CSS file. 95% of time you shouldn't change anything here. */
/* 3   */ .royalSlider {
/* 4   */     width: 600px;
/* 5   */     height: 400px;
/* 6   */     position: relative;
/* 7   */     direction: ltr;
/* 8   */     }
/* 9   */ .royalSlider > * { float: left }
/* 10  */ .rsWebkit3d .rsSlide { -webkit-transform: translateZ() }
/* 11  */ .rsWebkit3d .rsSlide, .rsWebkit3d .rsContainer, .rsWebkit3d .rsThumbs, .rsWebkit3d .rsPreloader, .rsWebkit3d img, .rsWebkit3d .rsOverflow, .rsWebkit3d .rsBtnCenterer, .rsWebkit3d .rsAbsoluteEl, .rsWebkit3d .rsABlock, .rsWebkit3d .rsLink { -webkit-backface-visibility: hidden }
/* 12  */ .rsFade.rsWebkit3d .rsSlide, .rsFade.rsWebkit3d img, .rsFade.rsWebkit3d .rsContainer { -webkit-transform: none }
/* 13  */ .rsOverflow {
/* 14  */     width: 100%;
/* 15  */     height: 100%;
/* 16  */     position: relative;
/* 17  */     overflow: hidden;
/* 18  */     float: left;
/* 19  */     -webkit-tap-highlight-color: rgba(0,0,0,0);
/* 20  */     }
/* 21  */ .rsVisibleNearbyWrap {
/* 22  */     width: 100%;
/* 23  */     height: 100%;
/* 24  */     position: relative;
/* 25  */     overflow: hidden;
/* 26  */     left: 0;
/* 27  */     top: 0;
/* 28  */     -webkit-tap-highlight-color: rgba(0,0,0,0);
/* 29  */     }
/* 30  */ .rsVisibleNearbyWrap .rsOverflow {
/* 31  */     position: absolute;
/* 32  */     left: 0;
/* 33  */     top: 0;
/* 34  */     }
/* 35  */ .rsContainer {
/* 36  */     position: relative;
/* 37  */     width: 100%;
/* 38  */     height: 100%;
/* 39  */     -webkit-tap-highlight-color: rgba(0,0,0,0);
/* 40  */     }
/* 41  */ .rsArrow, .rsThumbsArrow { cursor: pointer }
/* 42  */ .rsThumb {
/* 43  */     float: left;
/* 44  */     position: relative;
/* 45  */     }
/* 46  */ .rsArrow, .rsNav, .rsThumbsArrow {
/* 47  */     opacity: 1;
/* 48  */     -webkit-transition: opacity 0.3s linear;
/* 49  */     -moz-transition: opacity 0.3s linear;
/* 50  */     -o-transition: opacity 0.3s linear;

/* royal.css */

/* 51  */     transition: opacity 0.3s linear;
/* 52  */     }
/* 53  */ .rsHidden {
/* 54  */     opacity: 0;
/* 55  */     visibility: hidden;
/* 56  */     -webkit-transition: visibility 0s linear 0.3s,opacity 0.3s linear;
/* 57  */     -moz-transition: visibility 0s linear 0.3s,opacity 0.3s linear;
/* 58  */     -o-transition: visibility 0s linear 0.3s,opacity 0.3s linear;
/* 59  */     transition: visibility 0s linear 0.3s,opacity 0.3s linear;
/* 60  */     }
/* 61  */ .rsGCaption {
/* 62  */     width: 100%;
/* 63  */     float: left;
/* 64  */     text-align: center;
/* 65  */     }
/* 66  */ /* Fullscreen options, very important ^^ */
/* 67  */ .royalSlider.rsFullscreen {
/* 68  */     position: fixed !important;
/* 69  */     height: auto !important;
/* 70  */     width: auto !important;
/* 71  */     margin: 0 !important;
/* 72  */     padding: 0 !important;
/* 73  */     z-index: 2147483647 !important;
/* 74  */     top: 0 !important;
/* 75  */     left: 0 !important;
/* 76  */     bottom: 0 !important;
/* 77  */     right: 0 !important;
/* 78  */     }
/* 79  */ .royalSlider .rsSlide.rsFakePreloader {
/* 80  */     opacity: 1 !important;
/* 81  */     -webkit-transition: 0s;
/* 82  */     -moz-transition: 0s;
/* 83  */     -o-transition: 0s;
/* 84  */     transition: 0s;
/* 85  */     display: none;
/* 86  */     }
/* 87  */ .rsSlide {
/* 88  */     position: absolute;
/* 89  */     left: 0;
/* 90  */     top: 0;
/* 91  */     display: block;
/* 92  */     overflow: hidden;
/* 93  */     height: 100%;
/* 94  */     width: 100%;
/* 95  */     }
/* 96  */ .royalSlider.rsAutoHeight, .rsAutoHeight .rsSlide { height: auto }
/* 97  */ .rsContent {
/* 98  */     width: 100%;
/* 99  */     height: 100%;
/* 100 */     position: relative;

/* royal.css */

/* 101 */     }
/* 102 */ .rsPreloader {
/* 103 */     position: absolute;
/* 104 */     z-index: 0;
/* 105 */     }
/* 106 */ .rsNav {
/* 107 */     -moz-user-select: -moz-none;
/* 108 */     -webkit-user-select: none;
/* 109 */     user-select: none;
/* 110 */     }
/* 111 */ .rsNavItem { -webkit-tap-highlight-color: rgba(0,0,0,0.25) }
/* 112 */ .rsThumbs {
/* 113 */     cursor: pointer;
/* 114 */     position: relative;
/* 115 */     overflow: hidden;
/* 116 */     float: left;
/* 117 */     z-index: 22;
/* 118 */     position:relative;
/* 119 */     }
/* 120 */ .rsTabs {
/* 121 */     float: left;
/* 122 */     background: none !important;
/* 123 */     }
/* 124 */ .rsTabs, .rsThumbs {
/* 125 */     -webkit-tap-highlight-color: rgba(0,0,0,0);
/* 126 */     -webkit-tap-highlight-color: rgba(0,0,0,0);
/* 127 */     }
/* 128 */ .rsVideoContainer {
/* 129 */     /*left: 0;;
/* 130 *|     top: 0;
/* 131 *|     position: absolute;*/
/* 132 */     /*width: 100%;;
/* 133 *|     height: 100%;
/* 134 *|     position: absolute;
/* 135 *|     left: 0;
/* 136 *|     top: 0;
/* 137 *|     float: left;*/
/* 138 */     width: 300px;
/* 139 */     height: 300px;
/* 140 */     line-height: 0;
/* 141 */     position: relative;
/* 142 */     }
/* 143 */ .rsVideoFrameHolder {
/* 144 */     position: absolute;
/* 145 */     left: 0;
/* 146 */     top: 0;
/* 147 */     background: #141414;
/* 148 */     opacity: 0;
/* 149 */     -webkit-transition: .3s;
/* 150 */     }

/* royal.css */

/* 151 */ .rsVideoFrameHolder.rsVideoActive { opacity: 1 }
/* 152 */ .rsVideoContainer iframe, .rsVideoContainer video, .rsVideoContainer embed, .rsVideoContainer .rsVideoObj {
/* 153 */     position: absolute;
/* 154 */     z-index: 50;
/* 155 */     left: 0;
/* 156 */     top: 0;
/* 157 */     width: 100%;
/* 158 */     height: 100%;
/* 159 */     }
/* 160 */ /* ios controls over video bug, shifting video */
/* 161 */ .rsVideoContainer.rsIOSVideo iframe, .rsVideoContainer.rsIOSVideo video, .rsVideoContainer.rsIOSVideo embed {
/* 162 */     -webkit-box-sizing: border-box;
/* 163 */     -moz-box-sizing: border-box;
/* 164 */     box-sizing: border-box;
/* 165 */     padding-right: 44px;
/* 166 */     }
/* 167 */ img.rsImg { }
/* 168 */ .grab-cursor { cursor: url(grab.png) 8 8, move }
/* 169 */ .grabbing-cursor { cursor: url(grabbing.png) 8 8, move }
/* 170 */ .rsNoDrag { cursor: auto }
/* 171 */ .rsLink {
/* 172 */     left: 0;
/* 173 */     top: 0;
/* 174 */     position: absolute;
/* 175 */     width: 100%;
/* 176 */     height: 100%;
/* 177 */     display: block;
/* 178 */     z-index: 20;
/* 179 */     background: url(blank.gif);
/* 180 */     }
/* 181 */ /******************************
/* 182 *| *
/* 183 *| *  RoyalSlider Default Skin
/* 184 *| *
/* 185 *| *    1. Arrows
/* 186 *| *    2. Bullets
/* 187 *| *    3. Thumbnails
/* 188 *| *    4. Tabs
/* 189 *| *    5. Fullscreen button
/* 190 *| *    6. Play/close video button
/* 191 *| *    7. Preloader
/* 192 *| *    8. Caption
/* 193 *| *
/* 194 *| *  Sprite: 'rs-default.png'
/* 195 *| *  Feel free to edit anything
/* 196 *| *  If you don't some part - just delete it
/* 197 *| *
/* 198 *| ******************************/
/* 199 */ /* Background */
/* 200 */ .rsDefault, .rsDefault .rsOverflow, .rsDefault .rsSlide, .rsDefault .rsVideoFrameHolder, .rsDefault .rsThumbs {

/* royal.css */

/* 201 */     background: #000;
/* 202 */     color: #fff;
/* 203 */     }
/* 204 */ /***************
/* 205 *| *
/* 206 *| *  1. Arrows
/* 207 *| *
/* 208 *| ****************/
/* 209 */ .rsDefault .rsArrow {
/* 210 */     height: 100%;
/* 211 */     width: 44px;
/* 212 */     position: absolute;
/* 213 */     display: block;
/* 214 */     cursor: pointer;
/* 215 */     z-index: 21;
/* 216 */     }
/* 217 */ .rsDefault.rsVer .rsArrow {
/* 218 */     width: 100%;
/* 219 */     height: 44px;
/* 220 */     }
/* 221 */ .rsDefault.rsVer .rsArrowLeft {
/* 222 */     top: 0;
/* 223 */     left: 0;
/* 224 */     }
/* 225 */ .rsDefault.rsVer .rsArrowRight {
/* 226 */     bottom: 0;
/* 227 */     left: 0;
/* 228 */     }
/* 229 */ .rsDefault.rsHor .rsArrowLeft {
/* 230 */     left: 0;
/* 231 */     top: 0;
/* 232 */     }
/* 233 */ .rsDefault.rsHor .rsArrowRight {
/* 234 */     right: 0;
/* 235 */     top: 0;
/* 236 */     }
/* 237 */ .rsDefault .rsArrowIcn {
/* 238 */     width: 32px;
/* 239 */     height: 32px;
/* 240 */     top: 50%;
/* 241 */     left: 50%;
/* 242 */     margin-top: -16px;
/* 243 */     margin-left: -16px;
/* 244 */     position: absolute;
/* 245 */     cursor: pointer;
/* 246 */     }
/* 247 */ .rsDefault .rsArrowIcn:hover {
/* 248 */     opacity: 0.7;
/* 249 */     filter: alpha(opacity=70);
/* 250 */     }

/* royal.css */

/* 251 */ .rsDefault.rsHor .rsArrowLeft .rsArrowIcn { background: url("../images/galleryL.png") }
/* 252 */ .rsDefault.rsHor .rsArrowRight .rsArrowIcn { background: url("../images/galleryR.png") }
/* 253 */ .rsDefault .rsArrowDisabled .rsArrowIcn {
/* 254 */     opacity: .2;
/* 255 */     filter: alpha(opacity=20);
/* 256 */     *display: none;
/* 257 */     }
/* 258 */ /***************
/* 259 *| *
/* 260 *| *  2. Bullets
/* 261 *| *
/* 262 *| ****************/
/* 263 */ .rsDefault .rsBullets {
/* 264 */     position: absolute;
/* 265 */     z-index: 35;
/* 266 */     left: 0;
/* 267 */     bottom: 0;
/* 268 */     width: 100%;
/* 269 */     height: auto;
/* 270 */     margin: 0 auto;
/* 271 */     background: #000;
/* 272 */     background: rgba(0,0,0,0.75);
/* 273 */     text-align: center;
/* 274 */     line-height: 8px;
/* 275 */     overflow: hidden;
/* 276 */     }
/* 277 */ .rsDefault .rsBullet {
/* 278 */     width: 8px;
/* 279 */     height: 8px;
/* 280 */     display: inline-block;
/* 281 */     *display: inline;
/* 282 */     *zoom: 1;
/* 283 */     padding: 6px 5px 6px;
/* 284 */     }
/* 285 */ .rsDefault .rsBullet span {
/* 286 */     display: block;
/* 287 */     width: 8px;
/* 288 */     height: 8px;
/* 289 */     border-radius: 50%;
/* 290 */     background: #777;
/* 291 */     background: rgba(255,255,255,0.5);
/* 292 */     }
/* 293 */ .rsDefault .rsBullet.rsNavSelected span { background-color: #FFF }
/* 294 */ /***************
/* 295 *| *
/* 296 *| *  3. Thumbnails
/* 297 *| *
/* 298 *| ****************/
/* 299 */
/* 300 */

/* royal.css */

/* 301 */ .rsDefault .rsThumbsHor {
/* 302 */     width: 756px;
/* 303 */     height: 72px;
/* 304 */     padding:0px;
/* 305 */     margin-top:0px;
/* 306 */     margin-left:1px;
/* 307 */     }
/* 308 */
/* 309 */ .rsFullscreen > .rsThumbsHor {
/* 310 */     width: 100% !important;
/* 311 */     }
/* 312 */
/* 313 */ .rsDefault .rsThumbsVer {
/* 314 */     width: 220px;
/* 315 */     height: 100%;
/* 316 */     position: absolute;
/* 317 */     top: 0;
/* 318 */     right: 0;
/* 319 */     }
/* 320 */ .rsDefault.rsWithThumbsHor .rsThumbsContainer {
/* 321 */     position: relative;
/* 322 */     height: 100%;
/* 323 */     }
/* 324 */ .rsDefault.rsWithThumbsVer .rsThumbsContainer {
/* 325 */     position: relative;
/* 326 */     width: 100%;
/* 327 */     }
/* 328 */ .rsDefault .rsThumb {
/* 329 */     float: left;
/* 330 */     overflow: hidden;
/* 331 */     width: 96px;
/* 332 */     height: 72px;
/* 333 */     }
/* 334 */ .rsDefault .rsThumb img {
/* 335 */     width: 100%;
/* 336 */     height: 100%;
/* 337 */     }
/* 338 */ .rsDefault .rsThumb.rsNavSelected img {
/* 339 */     opacity: 0.3;
/* 340 */     filter: alpha(opacity=30);
/* 341 */     }
/* 342 */ .rsDefault .rsTmb { display: block }
/* 343 */ /* Thumbnails with text */
/* 344 */ /* Thumbnails arrow icons */
/* 345 */ .rsDefault .rsThumbsArrow {
/* 346 */     height: 100%;
/* 347 */     width: 20px;
/* 348 */     position: absolute;
/* 349 */     display: block;
/* 350 */     cursor: pointer;

/* royal.css */

/* 351 */     z-index: 21;
/* 352 */     background: #000;
/* 353 */     background: rgba(0,0,0,0.75);
/* 354 */     }
/* 355 */ .rsDefault .rsThumbsArrow:hover { background: rgba(0,0,0,0.9) }
/* 356 */ .rsDefault.rsWithThumbsVer .rsThumbsArrow {
/* 357 */     width: 100%;
/* 358 */     height: 20px;
/* 359 */     }
/* 360 */ .rsDefault.rsWithThumbsVer .rsThumbsArrowLeft {
/* 361 */     top: 0;
/* 362 */     left: 0;
/* 363 */     }
/* 364 */ .rsDefault.rsWithThumbsVer .rsThumbsArrowRight {
/* 365 */     bottom: 0;
/* 366 */     left: 0;
/* 367 */     }
/* 368 */ .rsDefault.rsWithThumbsHor .rsThumbsArrowLeft {
/* 369 */     left: 0;
/* 370 */     top: 0;
/* 371 */     }
/* 372 */ .rsDefault.rsWithThumbsHor .rsThumbsArrowRight {
/* 373 */     right: 0;
/* 374 */     top: 0;
/* 375 */     }
/* 376 */ .rsDefault .rsThumbsArrowDisabled { display: none !important }
/* 377 */ /* Thumbnails resizing on smaller screens */
/* 378 */ @media screen and (min-width: 0px) and (max-width: 800px) {
/* 379 */     .rsDefault .rsThumb {
/* 380 */         width: 59px;
/* 381 */         height: 44px;
/* 382 */         }
/* 383 */     .rsDefault .rsThumbsHor { height: 44px }
/* 384 */     .rsDefault .rsThumbsVer { width: 59px }
/* 385 */ }
/* 386 */ /***************
/* 387 *| *
/* 388 *| *  4. Tabs
/* 389 *| *
/* 390 *| ****************/
/* 391 */ .rsDefault .rsTabs {
/* 392 */     width: 100%;
/* 393 */     height: auto;
/* 394 */     margin: 0 auto;
/* 395 */     text-align: center;
/* 396 */     overflow: hidden;
/* 397 */     padding-top: 12px;
/* 398 */     position: relative;
/* 399 */     }
/* 400 */ .rsDefault .rsTab {

/* royal.css */

/* 401 */     display: inline-block;
/* 402 */     cursor: pointer;
/* 403 */     text-align: center;
/* 404 */     height: auto;
/* 405 */     width: auto;
/* 406 */     color: #333;
/* 407 */     padding: 5px 13px 6px;
/* 408 */     min-width: 72px;
/* 409 */     border: 1px solid #D9D9DD;
/* 410 */     border-right: 1px solid #f5f5f5;
/* 411 */     text-decoration: none;
/* 412 */     background-color: #FFF;
/* 413 */     background-image: -webkit-linear-gradient(top, #fefefe, #f4f4f4);
/* 414 */     background-image: -moz-linear-gradient(top, #fefefe, #f4f4f4);
/* 415 */     background-image: linear-gradient(to bottom, #fefefe, #f4f4f4);
/* 416 */     -webkit-box-shadow: inset 1px 0 0 #fff;
/* 417 */     box-shadow: inset 1px 0 0 #fff;
/* 418 */     *display: inline;
/* 419 */     *zoom: 1;
/* 420 */     }
/* 421 */ .rsDefault .rsTab:first-child {
/* 422 */     -webkit-border-top-left-radius: 4px;
/* 423 */     border-top-left-radius: 4px;
/* 424 */     -webkit-border-bottom-left-radius: 4px;
/* 425 */     border-bottom-left-radius: 4px;
/* 426 */     }
/* 427 */ .rsDefault .rsTab:last-child {
/* 428 */     -webkit-border-top-right-radius: 4px;
/* 429 */     border-top-right-radius: 4px;
/* 430 */     -webkit-border-bottom-right-radius: 4px;
/* 431 */     border-bottom-right-radius: 4px;
/* 432 */     border-right: 1px solid #cfcfcf;
/* 433 */     }
/* 434 */ .rsDefault .rsTab:active {
/* 435 */     border: 1px solid #D9D9DD;
/* 436 */     background-color: #f4f4f4;
/* 437 */     box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset;
/* 438 */     }
/* 439 */ .rsDefault .rsTab.rsNavSelected {
/* 440 */     color: #FFF;
/* 441 */     border: 1px solid #999;
/* 442 */     text-shadow: 1px 1px #838383;
/* 443 */     box-shadow: 0 1px 9px rgba(102, 102, 102, 0.65) inset;
/* 444 */     background: #ACACAC;
/* 445 */     background-image: -webkit-linear-gradient(top, #ACACAC, #BBB);
/* 446 */     background-image: -moz-llinear-gradient(top, #ACACAC, #BBB);
/* 447 */     background-image: linear-gradient(to bottom, #ACACAC, #BBB);
/* 448 */     }
/* 449 */ /***************
/* 450 *| *

/* royal.css *|

/* 451 *| *  5. Fullscreen button
/* 452 *| *
/* 453 *| ****************/
/* 454 */ .rsDefault .rsFullscreenBtn {
/* 455 */     right: 20px;
/* 456 */     top: 20px;
/* 457 */     width: 32px;
/* 458 */     height: 32px;
/* 459 */     z-index: 22;
/* 460 */     display: block;
/* 461 */     position: absolute;
/* 462 */     cursor: pointer;
/* 463 */     }
/* 464 */ .rsDefault .rsFullscreenIcn {
/* 465 */     display: block;
/* 466 */     width: 32px;
/* 467 */     height: 32px;
/* 468 */     background: url("../images/extend.png");
/* 469 */     background-color: #000;
/* 470 */     }
/* 471 */ /***************
/* 472 *| *
/* 473 *| *  6. Play/close video button
/* 474 *| *
/* 475 *| ****************/
/* 476 */ .rsDefault .rsPlayBtn {
/* 477 */     width: 128px;
/* 478 */     height: 128px;
/* 479 */     margin-left: -64px;
/* 480 */     margin-top: -64px;
/* 481 */     cursor: pointer;
/* 482 */     }
/* 483 */ .rsDefault .rsBtnCenterer {
/* 484 */     position: absolute;
/* 485 */     left: 50%;
/* 486 */     top: 50%;
/* 487 */     }
/* 488 */ .rsDefault .rsCloseVideoBtn {
/* 489 */     left: 20px;
/* 490 */     top: 20px;
/* 491 */     width: 32px;
/* 492 */     height: 32px;
/* 493 */     z-index: 500;
/* 494 */     position: absolute;
/* 495 */     cursor: pointer;
/* 496 */     -webkit-backface-visibility: hidden;
/* 497 */     -webkit-transform: translateZ();
/* 498 */     }
/* 499 */ .rsDefault .rsCloseVideoIcn {
/* 500 */     width: 32px;

/* royal.css */

/* 501 */     height: 32px;
/* 502 */     background: #000 url("../images/close.png");
/* 503 */     opacity: 1;
/* 504 */     -webkit-transition: .3s;
/* 505 */     -moz-transition: .3s;
/* 506 */     transition: .3s;
/* 507 */     }
/* 508 */ /***************
/* 509 *| *
/* 510 *| *  7. Preloader
/* 511 *| *
/* 512 *| ****************/
/* 513 */ .rsDefault .rsPreloader {
/* 514 */     width: 20px;
/* 515 */     height: 20px;
/* 516 */     background-image: url(../preloaders/preloader-white.gif);
/* 517 */     left: 50%;
/* 518 */     top: 50%;
/* 519 */     margin-left: -10px;
/* 520 */     margin-top: -10px;
/* 521 */     }
/* 522 */ /***************
/* 523 *| *
/* 524 *| *  8. Global caption
/* 525 *| *
/* 526 *| ****************/
/* 527 */ .rsDefault .rsGCaption {
/* 528 */     position: absolute;
/* 529 */     float: none;
/* 530 */     bottom: 6px;
/* 531 */     left: 6px;
/* 532 */     text-align: left;
/* 533 */     background: rgb(0, 0, 0);
/* 534 */     background: rgba(0, 0, 0, 0.75);
/* 535 */     color: #FFF;
/* 536 */     padding: 2px 8px;
/* 537 */     width: auto;
/* 538 */     font-size: 12px;
/* 539 */     border-radius: 2px;
/* 540 */     }
/* Minify_CSS_UriRewriter::$debugText

*/

/* hover.css */

/* 1   */ .grid {
/* 2   */ 	position: relative;
/* 3   */ 	clear: both;
/* 4   */ 	margin: 0;
/* 5   */ 	max-width: 1000px;
/* 6   */ 	list-style: none;
/* 7   */ 	text-align: center;
/* 8   */ }
/* 9   */
/* 10  */ /* Common style */
/* 11  */
/* 12  */ .grid figure {
/* 13  */ 	position: relative;
/* 14  */ 	float: left;
/* 15  */ 	overflow: hidden;
/* 16  */ 	margin: 0;
/* 17  */ 	height: auto;
/* 18  */ 	background: #000;
/* 19  */ 	text-align: center;
/* 20  */ }
/* 21  */
/* 22  */ .grid figure img {
/* 23  */ 	position: relative;
/* 24  */ 	display: block;
/* 25  */ 	min-height: 100%;
/* 26  */ 	max-width: 100%;
/* 27  */ 	opacity: 0.8;
/* 28  */ }
/* 29  */
/* 30  */ .grid figure figcaption {
/* 31  */ 	padding: 2em;
/* 32  */ 	color: #fff;
/* 33  */ 	text-transform: uppercase;
/* 34  */ 	font-size: 1.25em;
/* 35  */ 	-webkit-backface-visibility: hidden;
/* 36  */ 	backface-visibility: hidden;
/* 37  */ }
/* 38  */
/* 39  */ .grid figure figcaption::before,
/* 40  */ .grid figure figcaption::after {
/* 41  */ 	pointer-events: none;
/* 42  */ }
/* 43  */
/* 44  */ .grid figure figcaption,
/* 45  */ .grid figure figcaption > a {
/* 46  */ 	position: absolute;
/* 47  */ 	top: 0;
/* 48  */ 	left: 0;
/* 49  */ 	width: 100%;
/* 50  */ 	height: 100%;

/* hover.css */

/* 51  */ }
/* 52  */
/* 53  */ /* Anchor will cover the whole item by default */
/* 54  */ /* For some effects it will show as a button */
/* 55  */
/* 56  */ .grid figure figcaption > a {
/* 57  */ 	z-index: 1000;
/* 58  */ 	text-indent: 200%;
/* 59  */ 	white-space: nowrap;
/* 60  */ 	font-size: 0;
/* 61  */ 	opacity: 0;
/* 62  */ }
/* 63  */
/* 64  */ /*-----------------*/
/* 65  */ /***** Apollo *****/
/* 66  */ /*-----------------*/
/* 67  */
/* 68  */ figure.effect-apollo {
/* 69  */ 	background: #000;
/* 70  */ }
/* 71  */
/* 72  */ figure.effect-apollo img {
/* 73  */ 	opacity: 0.95;
/* 74  */ 	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
/* 75  */ 	transition: opacity 0.35s, transform 0.35s;
/* 76  */ 	-webkit-transform: scale3d(1.05,1.05,1);
/* 77  */ 	transform: scale3d(1.05,1.05,1);
/* 78  */ }
/* 79  */
/* 80  */ figure.effect-apollo figcaption::before {
/* 81  */ 	position: absolute;
/* 82  */ 	top: 0;
/* 83  */ 	left: 0;
/* 84  */ 	width: 100%;
/* 85  */ 	height: 100%;
/* 86  */ 	background: rgba(255,255,255,0.5);
/* 87  */ 	content: '';
/* 88  */ 	-webkit-transition: -webkit-transform 0.6s;
/* 89  */ 	transition: transform 0.6s;
/* 90  */ 	-webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
/* 91  */ 	transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
/* 92  */ }
/* 93  */
/* 94  */ figure.effect-apollo p {
/* 95  */ 	position: absolute;
/* 96  */ 	right: 0;
/* 97  */ 	bottom: 0;
/* 98  */ 	margin: 3em;
/* 99  */ 	padding: 0 1em;
/* 100 */ 	max-width: 150px;

/* hover.css */

/* 101 */ 	border-right: 4px solid #fff;
/* 102 */ 	text-align: right;
/* 103 */ 	opacity: 0;
/* 104 */ 	-webkit-transition: opacity 0.35s;
/* 105 */ 	transition: opacity 0.35s;
/* 106 */ }
/* 107 */
/* 108 */ figure.effect-apollo h2 {
/* 109 */ 	text-align: left;
/* 110 */ }
/* 111 */
/* 112 */ figure.effect-apollo:hover img {
/* 113 */ 	opacity: 0.6;
/* 114 */ 	-webkit-transform: scale3d(1,1,1);
/* 115 */ 	transform: scale3d(1,1,1);
/* 116 */ }
/* 117 */
/* 118 */ figure.effect-apollo:hover figcaption::before {
/* 119 */ 	-webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
/* 120 */ 	transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
/* 121 */ }
/* 122 */
/* 123 */ figure.effect-apollo:hover p {
/* 124 */ 	opacity: 1;
/* 125 */ 	-webkit-transition-delay: 0.1s;
/* 126 */ 	transition-delay: 0.1s;
/* 127 */ }
/* Minify_CSS_UriRewriter::$debugText

*/

/* shortcodes.css */

/* 1   */ /* ==== columns ==== */
/* 2   */
/* 3   */ .one_half { width: 48% }
/* 4   */
/* 5   */ .one_third { width: 30.66% }
/* 6   */
/* 7   */ .two_third { width: 65.33% }
/* 8   */
/* 9   */ .one_fourth { width: 22% }
/* 10  */
/* 11  */ .three_fourth { width: 74% }
/* 12  */
/* 13  */ .one_fifth { width: 16.8% }
/* 14  */
/* 15  */ .two_fifth { width: 37.6% }
/* 16  */
/* 17  */ .three_fifth { width: 58.4% }
/* 18  */
/* 19  */ .four_fifth { width: 79.2% }
/* 20  */
/* 21  */ .one_sixth { width: 13.33% }
/* 22  */
/* 23  */ .five_sixth { width: 82.67% }
/* 24  */
/* 25  */ .one_half, .one_third, .two_third, .three_fourth, .one_fourth, .one_fifth, .two_fifth, .three_fifth, .four_fifth, .one_sixth, .five_sixth {
/* 26  */     margin-right: 4%;
/* 27  */     margin-bottom: 20px;
/* 28  */     float: left;
/* 29  */     position: relative;
/* 30  */     }
/* 31  */
/* 32  */ .last {
/* 33  */     margin-right: 0;
/* 34  */     clear: right;
/* 35  */     }
/* 36  */
/* 37  */ .clearboth {
/* 38  */     line-height: 0;
/* 39  */     clear: both;
/* 40  */     width: 100%;
/* 41  */     height: 0;
/* 42  */     display: block;
/* 43  */     font-size: 0;
/* 44  */     }
/* 45  */
/* 46  */ /* ==== buttons ==== */
/* 47  */
/* 48  */ .button-link { margin: 4px }
/* 49  */
/* 50  */ .button-link a {

/* shortcodes.css */

/* 51  */     line-height: 16px;
/* 52  */     color: #fff;
/* 53  */     padding: 4px 8px;
/* 54  */     }
/* 55  */
/* 56  */ .button-link a:hover { background: #000 }
/* 57  */
/* 58  */ /* ==== tabs ==== */
/* 59  */
/* 60  */ ul.tabs { margin: 0 }
/* 61  */
/* 62  */ ul.tabs .selected { background: #000 }
/* 63  */
/* 64  */ ul.tabs li {
/* 65  */     list-style: none;
/* 66  */     display: inline;
/* 67  */     }
/* 68  */
/* 69  */ ul.tabs li a {
/* 70  */     line-height: 25px;
/* 71  */     float: left;
/* 72  */     color: #fff;
/* 73  */     margin: 0 4px 0px 0;
/* 74  */     padding: 3px 15px 1px;
/* 75  */     position: relative;
/* 76  */     overflow: hidden;
/* 77  */     }
/* 78  */
/* 79  */ .pane {
/* 80  */     background: #f5f5f5;
/* 81  */     border-style: solid;
/* 82  */     margin-bottom: 29px;
/* 83  */     clear: both;
/* 84  */     color: #000;
/* 85  */     display: block;
/* 86  */     padding: 20px 20px;
/* 87  */     font-size: 14px;
/* 88  */     }
/* 89  */
/* 90  */ /* ==== toggle ==== */
/* 91  */
/* 92  */ .trigger {
/* 93  */     background: url("../images/toggle-plus.png") no-repeat;
/* 94  */     background-position: 0px 5px;
/* 95  */     margin: 0 0 20px;
/* 96  */     cursor: pointer;
/* 97  */     padding: 0px 0px 0px 26px;
/* 98  */     }
/* 99  */
/* 100 */ .trigger a {

/* shortcodes.css */

/* 101 */     text-transform: uppercase;
/* 102 */     text-decoration: none;
/* 103 */     cursor: pointer;
/* 104 */     display: block;
/* 105 */     font-size: 16px;
/* 106 */     }
/* 107 */
/* 108 */ .trigger.active {
/* 109 */     background: url("../images/toggle-minus.png") no-repeat;
/* 110 */     background-position: 0px 5px;
/* 111 */     }
/* 112 */
/* 113 */ .trigger.active a { color: #000 }
/* 114 */
/* 115 */ .toggle_container {
/* 116 */     background: #f5f5f5;
/* 117 */     margin-bottom: 20px;
/* 118 */     clear: both;
/* 119 */     padding: 0px 0px 0px 10px;
/* 120 */     overflow: hidden;
/* 121 */     }
/* 122 */
/* 123 */ .toggle_container .block {
/* 124 */     nowhitespace: afterproperty;
/* 125 */     margin: 0;
/* 126 */     padding: 20px;
/* 127 */     overflow: hidden;
/* 128 */     }
/* 129 */
/* 130 */ /* ==== highlight ==== */
/* 131 */
/* 132 */ .highlight {
/* 133 */     color: #fff;
/* 134 */     padding: 0 3px;
/* 135 */     }
/* 136 */
/* 137 */ .highlight2 {
/* 138 */     background: #000;
/* 139 */     color: #fff;
/* 140 */     padding: 0 3px;
/* 141 */     }
/* 142 */
/* 143 */ /* ==== dropcaps ==== */
/* 144 */
/* 145 */ .dropcap {
/* 146 */     padding-top: 0;
/* 147 */     line-height: 40px;
/* 148 */     left: -2px;
/* 149 */     float: left;
/* 150 */     margin: 0 6px 0 0;

/* shortcodes.css */

/* 151 */     display: block;
/* 152 */     position: relative;
/* 153 */     font-size: 40px;
/* 154 */     }
/* 155 */
/* 156 */ /* ==== quotes ==== */
/* 157 */
/* 158 */ .pullquote_left, .pullquote_right {
/* 159 */     background: url("../images/quotes.png") no-repeat scroll 0 0 transparent;
/* 160 */     top: 0px;
/* 161 */     color: #888;
/* 162 */     clear: none;
/* 163 */     padding: 0 0 0 30px;
/* 164 */     position: relative;
/* 165 */     font-size: 14px;
/* 166 */     }
/* 167 */
/* 168 */ .pullquote_left {
/* 169 */     float: left;
/* 170 */     width: 30%;
/* 171 */     margin: 20px 20px 20px 0;
/* 172 */     padding: 0 0 0 30px;
/* 173 */     }
/* 174 */
/* 175 */ .pullquote_right {
/* 176 */     float: right;
/* 177 */     width: 29%;
/* 178 */     margin: 20px 0 20px 20px;
/* 179 */     padding: 0 0 0 30px;
/* 180 */     }
/* 181 */
/* 182 */ /* ==== space ==== */
/* 183 */
/* 184 */ .space_hr {
/* 185 */     margin-bottom: 40px;
/* 186 */     width: 100%;
/* 187 */     display: block;
/* 188 */     }
/* 189 */
/* 190 */ /* ==== bar ==== */
/* 191 */
/* 192 */ .bar_hr {
/* 193 */     margin-top: 10px;
/* 194 */     border-bottom: 1px solid #c5c5c5;
/* 195 */     margin-bottom: 10px;
/* 196 */     display: block;
/* 197 */     }
/* 198 */
/* 199 */ /* ==== media ==== */
/* 200 */

/* shortcodes.css */

/* 201 */ .shrmedia, .shrmedia2 {
/* 202 */     margin: 20px 0 20px 0;
/* 203 */     display: block;
/* 204 */     overflow: hidden;
/* 205 */     position: relative;
/* 206 */     }
/* 207 */
/* 208 */ .shrmedia2:hover .shrmedia2-play { opacity: 0.6 }
/* 209 */
/* 210 */ .shrmedia2-play {
/* 211 */     background: #000;
/* 212 */     background: url("../images/playM.png") no-repeat;
/* 213 */     top: 40%;
/* 214 */     left: 40%;
/* 215 */     width: 86px;
/* 216 */     height: 86px;
/* 217 */     display: block;
/* 218 */     position: absolute;
/* 219 */     }
/* Minify_CSS_UriRewriter::$debugText

*/

/* slider.css */

/* 1   */ /* -------------------------------wizedesign--
/* 2   *|      SLIDER
/* 3   *|    ------------------------------------------- */
/* 4   */
/* 5   */ #slider {
/* 6   */     width: 1240px;
/* 7   */     height: 540px;
/* 8   */     margin-top:-40px;
/* 9   */ 	margin-left:-40px;
/* 10  */ 	margin-bottom:40px;
/* 11  */     position: relative;
/* 12  */     overflow: hidden;
/* 13  */ 	background:#222;
/* 14  */     }
/* 15  */
/* 16  */ /* -------------------------------wizedesign--
/* 17  *|      BIG
/* 18  *|    ------------------------------------------- */
/* 19  */
/* 20  */ #sld-big {
/* 21  */     width: 100%;
/* 22  */     position: relative;
/* 23  */     }
/* 24  */
/* 25  */ .sldbig-bg {
/* 26  */     background: url("../images/bg1.png");
/* 27  */     left: 0px;
/* 28  */     width: 100%;
/* 29  */     bottom: 0px;
/* 30  */     height: 540px;
/* 31  */     z-index: 3;
/* 32  */     position: absolute;
/* 33  */     }
/* 34  */
/* 35  */ #sld-big:hover .sldbig-bg {
/* 36  */     background: rgba(0, 0, 0, 0.7);
/* 37  */     }
/* 38  */
/* 39  */ .sldbig-title h2 { line-height: 1.45em }
/* 40  */
/* 41  */ .sldbig-title h2 a {
/* 42  */     font-weight: 900;
/* 43  */     text-transform: uppercase;
/* 44  */     color: #fff;
/* 45  */     font-size: 58px;
/* 46  */     }
/* 47  */
/* 48  */ .sldbig-title h2 a:hover { opacity: 0.7 }
/* 49  */
/* 50  */ .sldbig-title span {

/* slider.css */

/* 51  */     font-weight: 700;
/* 52  */     text-transform: uppercase;
/* 53  */     top: -12px;
/* 54  */     left: 0px;
/* 55  */     color: rgba(255, 255, 255, 0.4);
/* 56  */     position: absolute;
/* 57  */     font-size: 14px;
/* 58  */ 	font-family: "Montserrat"
/* 59  */     }
/* 60  */
/* 61  */ .sldbig-text p {
/* 62  */     font-weight: 400;
/* 63  */     color: rgba(255, 255, 255, 0.7);
/* 64  */     font-size: 16px;
/* 65  */ 	line-height:1.4em;
/* 66  */     }
/* 67  */
/* 68  */ .sldbig-cat {
/* 69  */     line-height: 15px;
/* 70  */     letter-spacing: 1.7px;
/* 71  */     text-transform: uppercase;
/* 72  */     color: #fff;
/* 73  */     height: 15px;
/* 74  */     padding: 4px 10px ;
/* 75  */     font-size: 9px;
/* 76  */ 	font-weight:900;
/* 77  */     }
/* 78  */
/* 79  */ .sldbig-video {
/* 80  */ 	background: url("../images/playB.png");
/* 81  */ 	width:128px;
/* 82  */ 	height:128px;
/* 83  */ 	float:left;
/* 84  */ 	opacity:0.3
/* 85  */     }
/* 86  */
/* 87  */ #sld-big:hover .sldbig-video { opacity:1 }
/* 88  */
/* 89  */ .sldbig-video:hover { opacity:0.7 !important }
/* 90  */
/* 91  */ /* -------------------------------wizedesign--
/* 92  *|      LEFT
/* 93  *|    ------------------------------------------- */
/* 94  */
/* 95  */ #sld-left {
/* 96  */     width: 740px;
/* 97  */ 	height: 540px;
/* 98  */     float: left;
/* 99  */     z-index: 2;
/* 100 */     position: relative;

/* slider.css */

/* 101 */     overflow: hidden;
/* 102 */     }
/* 103 */
/* 104 */ .sldleft-bg {
/* 105 */     background: url("../images/bg1.png");
/* 106 */     left: 0px;
/* 107 */     width: 100%;
/* 108 */     bottom: 0px;
/* 109 */     height: 540px;
/* 110 */     z-index: 3;
/* 111 */     position: absolute;
/* 112 */     }
/* 113 */
/* 114 */ #sld-left:hover .sldleft-bg {
/* 115 */ 	background: rgba(0, 0, 0, 0.7);
/* 116 */     }
/* 117 */
/* 118 */ .sldleft-title h2 { line-height: 1.2em }
/* 119 */
/* 120 */ .sldleft-title h2 a {
/* 121 */     font-weight: 900;
/* 122 */     text-transform: uppercase;
/* 123 */     color: #fff;
/* 124 */     font-size: 44px;
/* 125 */     }
/* 126 */
/* 127 */ .sldleft-title h2 a:hover { opacity: 0.7 }
/* 128 */
/* 129 */ .sldleft-title span {
/* 130 */     font-weight: 700;
/* 131 */     text-transform: uppercase;
/* 132 */     top: -12px;
/* 133 */     left: 0px;
/* 134 */     color: rgba(255, 255, 255, 0.4);
/* 135 */     position: absolute;
/* 136 */     font-size: 14px;
/* 137 */ 	font-family: "Montserrat"
/* 138 */     }
/* 139 */
/* 140 */ .sldleft-text p {
/* 141 */     font-weight: 400;
/* 142 */     color: rgba(255, 255, 255, 0.7);
/* 143 */     font-size: 16px;
/* 144 */ 	line-height:1.4em;
/* 145 */     }
/* 146 */
/* 147 */ .sldleft-cat {
/* 148 */     line-height: 15px;
/* 149 */     letter-spacing: 1.7px;
/* 150 */     text-transform: uppercase;

/* slider.css */

/* 151 */     color: #fff;
/* 152 */     height: 15px;
/* 153 */     padding: 4px 10px ;
/* 154 */     font-size: 9px;
/* 155 */ 	font-weight:900;
/* 156 */     }
/* 157 */
/* 158 */ .sldleft-video {
/* 159 */ 	background: url("../images/playM.png");
/* 160 */ 	width: 86px;
/* 161 */ 	height: 86px;
/* 162 */ 	float: left;
/* 163 */ 	opacity:0.3;
/* 164 */     }
/* 165 */
/* 166 */ #sld-left:hover .sldleft-video {opacity:1;}
/* 167 */
/* 168 */ .sldleft-video:hover { opacity:0.7 !important }
/* 169 */
/* 170 */ /* -------------------------------wizedesign--
/* 171 *|      TOP / BOTTOM
/* 172 *|    ------------------------------------------- */
/* 173 */
/* 174 */ #sld-top, #sld-bottom {
/* 175 */     width: 500px;
/* 176 */     height: 270px;
/* 177 */     z-index: 2;
/* 178 */     position: relative;
/* 179 */     overflow: hidden;
/* 180 */     }
/* 181 */
/* 182 */ #sld-left .tp-rightarrow, #sld-top .tp-rightarrow, #sld-bottom .tp-rightarrow { right: 3px !important }
/* 183 */
/* 184 */ #sld-left .tp-leftarrow, #sld-top .tp-leftarrow, #sld-bottom .tp-leftarrow { left: 3px !important }
/* 185 */
/* 186 */ #sld-left .tp-caption, #sld-top .tp-caption, #sld-bottom .tp-caption, #sld-big .tp-caption { position: absolute }
/* 187 */
/* 188 */ .sldtb-bg {
/* 189 */     background: url("../images/bg2.png");
/* 190 */     left: 0px;
/* 191 */     width: 100%;
/* 192 */     bottom: 0px;
/* 193 */     height: 270px;
/* 194 */     z-index: 3;
/* 195 */     position: absolute;
/* 196 */     }
/* 197 */
/* 198 */ #sld-top:hover .sldtb-bg, #sld-bottom:hover .sldtb-bg { background: rgba(0, 0, 0, 0.7) }
/* 199 */
/* 200 */ .sldtb-title h2 {

/* slider.css */

/* 201 */     font-weight: 900;
/* 202 */     line-height: 1.23em;
/* 203 */ 	font-size: 26px;
/* 204 */     }
/* 205 */
/* 206 */ .sldtb-title h2 a {
/* 207 */     text-transform: uppercase;
/* 208 */     color: #fff;
/* 209 */     }
/* 210 */
/* 211 */ .sldtb-title h2 a:hover { opacity: 0.7 }
/* 212 */
/* 213 */ .sldtb-title span {
/* 214 */     font-weight: 700;
/* 215 */     text-transform: uppercase;
/* 216 */     top: -11px;
/* 217 */     left: 0px;
/* 218 */     color: rgba(255, 255, 255, 0.4);
/* 219 */     position: absolute;
/* 220 */     font-size: 14px;
/* 221 */ 	font-family: "Montserrat"
/* 222 */     }
/* 223 */
/* 224 */ .sldtb-cat {
/* 225 */     line-height: 15px;
/* 226 */     letter-spacing: 1.7px;
/* 227 */     text-transform: uppercase;
/* 228 */     color: #fff;
/* 229 */     height: 15px;
/* 230 */     padding: 4px 10px ;
/* 231 */     font-size: 9px;
/* 232 */ 	font-weight:900;
/* 233 */     }
/* 234 */
/* 235 */ .sldtb-video {
/* 236 */ 	background: url("../images/playL.png");
/* 237 */ 	width: 64px;
/* 238 */ 	height: 64px;
/* 239 */ 	float: left;
/* 240 */ 	opacity:0.3
/* 241 */     }
/* 242 */
/* 243 */ #sld-top:hover .sldtb-video, #sld-bottom:hover .sldtb-video  {opacity:1;}
/* 244 */
/* 245 */ .sldleft-video:hover { opacity:0.7 !important }
/* 246 */
/* 247 */ /* -------------------------------wizedesign--
/* 248 *|      SETTINGS
/* 249 *|    ------------------------------------------- */
/* 250 */

/* slider.css */

/* 251 */ .tparrows {
/* 252 */     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
/* 253 */     -moz-opacity: 1;
/* 254 */     -o-transition: opacity 0.3s ease-out;
/* 255 */     -khtml-opacity: 1;
/* 256 */     -ms-transition: opacity 0.3s ease-out;
/* 257 */     -moz-transition: opacity 0.3s ease-out;
/* 258 */     -webkit-transform: translateZ(5000px);
/* 259 */     -webkit-transition: opacity 0.3s ease-out;
/* 260 */     -webkit-transform-style: flat;
/* 261 */     -webkit-backface-visibility: hidden;
/* 262 */     opacity: 1;
/* 263 */     z-index: 600;
/* 264 */     position: absolute;
/* 265 */ 	top:258px !important;
/* 266 */     }
/* 267 */
/* 268 */ #sld-top .tparrows, #sld-bottom .tparrows  { top:123px !important }
/* 269 */
/* 270 */ .tparrows.hidearrows {
/* 271 */     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
/* 272 */     -moz-opacity: 0;
/* 273 */     -khtml-opacity: 0;
/* 274 */     opacity: 0;
/* 275 */     }
/* 276 */
/* 277 */ .tp-leftarrow {
/* 278 */     background: url("../images/leftS.png") no-Repeat 0 0;
/* 279 */     width: 24px;
/* 280 */     cursor: pointer;
/* 281 */     height: 24px;
/* 282 */     z-index: 100;
/* 283 */ 	margin-left:5px;
/* 284 */     }
/* 285 */
/* 286 */ .tp-rightarrow {
/* 287 */     background: url("../images/rightS.png") no-Repeat 0 0;
/* 288 */     width: 24px;
/* 289 */     cursor: pointer;
/* 290 */     height: 24px;
/* 291 */     z-index: 100;
/* 292 */ 	margin-right:5px;
/* 293 */     }
/* 294 */
/* 295 */ .tp-leftarrow:hover, .tp-rightarrow:hover { opacity: 0.7 }
/* 296 */
/* 297 */ .tpclear { clear: both }
/* 298 */
/* 299 */ .tp-bullets {
/* 300 */     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";

/* slider.css */

/* 301 */     -moz-opacity: 1;
/* 302 */     -o-transition: opacity 0.3s ease-out;
/* 303 */     -khtml-opacity: 1;
/* 304 */     -ms-transition: opacity 0.3s ease-out;
/* 305 */     -moz-transition: opacity 0.3s ease-out;
/* 306 */     -webkit-transform: translateZ(5000px);
/* 307 */     -webkit-transition: opacity 0.3s ease-out;
/* 308 */     top: 515px;
/* 309 */     opacity: 1;
/* 310 */     z-index: 1000;
/* 311 */     position: absolute;
/* 312 */     }
/* 313 */
/* 314 */ #sld-top .tp-bullets, #sld-bottom .tp-bullets { top: 245px }
/* 315 */
/* 316 */ .tp-bullets .bullet {
/* 317 */     background: rgba(255, 255, 255, 0.2);
/* 318 */     margin-top: 0px;
/* 319 */     margin-left: 4px;
/* 320 */     margin-right: 0px;
/* 321 */     border-radius: 50%;
/* 322 */     float: left;
/* 323 */     width: 10px;
/* 324 */     cursor: pointer;
/* 325 */     height: 10px;
/* 326 */     position: relative;
/* 327 */     }
/* 328 */
/* 329 */ .tp-bullets .bullet:hover, .tp-bullets .bullet.selected { background: rgba(255, 255, 255, 0.5) }
/* 330 */
/* 331 */ .tp-bannertimer {
/* 332 */     background: rgba(255, 255, 255, 0.2);
/* 333 */     bottom: 0px;
/* 334 */     width: 100%;
/* 335 */     height: 4px;
/* 336 */     z-index: 200;
/* 337 */     position: absolute;
/* 338 */     }
/* 339 */
/* 340 */ #sld-big:hover .tp-bannertimer, #sld-left:hover .tp-bannertimer, #sld-top:hover .tp-bannertimer, #sld-bottom:hover .tp-bannertimer {
/* 341 */     background: rgba(255, 255, 255, 0.5);
/* 342 */     }
/* 343 */
/* 344 */ .tp-simpleresponsive img { max-width: none }
/* 345 */
/* 346 */ .noFilterClass { filter: none !important }
/* 347 */
/* 348 */ .tp-simpleresponsive img {
/* 349 */     -o-user-select: none;
/* 350 */     -moz-user-select: none;

/* slider.css */

/* 351 */     -khtml-user-select: none;
/* 352 */     -webkit-user-select: none;
/* 353 */     }
/* 354 */
/* 355 */ .tp-simpleresponsive a { text-decoration: none }
/* 356 */
/* 357 */ .tp-simpleresponsive ul {
/* 358 */     list-style: none;
/* 359 */     margin: 0;
/* 360 */     padding: 0;
/* 361 */     }
/* 362 */
/* 363 */ .tp-simpleresponsive >ul >li {
/* 364 */     visibility: hidden;
/* 365 */     position: absolute;
/* 366 */     list-stye: none;
/* 367 */     }
/* 368 */
/* 369 */ .tp-banner-container {
/* 370 */     width: 100%;
/* 371 */     padding: 0;
/* 372 */     position: relative;
/* 373 */     }
/* 374 */
/* 375 */ .tp-banner {
/* 376 */     width: 100%;
/* 377 */     position: relative;
/* 378 */     }
/* 379 */
/* 380 */ .tp-banner-fullscreen-container {
/* 381 */     width: 100%;
/* 382 */     padding: 0;
/* 383 */     position: relative;
/* 384 */     }
/* 385 */
/* 386 */ .boxedcontainer {
/* 387 */     margin: auto;
/* 388 */     padding: 0px 30px;
/* 389 */     max-width: 1170px;
/* 390 */     }
/* Minify_CSS_UriRewriter::$debugText

*/

/* global.css */

/* 1  */ /* CSS style for RL description window and html content */
/* 2  */ .white{
/* 3  */ 	color:#FFFFFF;
/* 4  */ }
/* 5  */
/* 6  */ /* Soundcloud description */
/* 7  */ .FWDRLSoundCloudDescription{
/* 8  */ 	background-color:#FFFFFF !important;
/* 9  */ 	color:#000000 !important;
/* 10 */ 	margin:0px !important;
/* 11 */ 	padding:12px !important;
/* 12 */ }
/* 13 */
/* 14 */ .FWDRLFlickrDescription{
/* 15 */ 	background-color:#FFFFFF !important;
/* 16 */ 	color:#000000 !important;
/* 17 */ 	margin:0px !important;
/* 18 */ 	padding:12px !important;
/* 19 */ }
/* 20 */
/* 21 */ .FWDRLYoutubeDescription{
/* 22 */ 	background-color:#FFFFFF !important;
/* 23 */ 	color:#000000 !important;
/* 24 */ 	margin:0px !important;
/* 25 */ 	padding:12px !important;
/* 26 */ }
/* 27 */
/* 28 */ .FWDRLFacebookDescription{
/* 29 */ 	background-color:#FFFFFF !important;
/* 30 */ 	color:#000000 !important;
/* 31 */ 	margin:0px !important;
/* 32 */ 	padding:12px !important;
/* 33 */ }
/* Minify_CSS_UriRewriter::$debugText

*/

/* responsive.css */

/* 1    */ /* -------------------------------wizedesign--
/* 2    *|      02. RESPONSIVE
/* 3    *|    ------------------------------------------- */
/* 4    */
/* 5    */ .bars {
/* 6    */     display: none
/* 7    */ }
/* 8    */ .grid figure img {
/* 9    */     min-height:0 !important;
/* 10   */     height:auto !important;
/* 11   */ }
/* 12   */
/* 13   */ /* ==== landscape tablet ==== */
/* 14   */
/* 15   */ @media (max-width: 1280px) {
/* 16   */
/* 17   */     #error-404, .commentlist {
/* 18   */         width:100%
/* 19   */     }
/* 20   */     .footer-col .wd-tmpbl2-posts {
/* 21   */         overflow: hidden;
/* 22   */     }
/* 23   */     .tmpbl2-cover img,
/* 24   */     img.rsImg, #layout-left-home #tmpvd img, #layout-left-home #tmpph img, .tmpvd-cover {
/* 25   */         width: 100% !important;
/* 26   */         height: auto !important;
/* 27   */         display: block !important;
/* 28   */         margin-left: 0 !important;
/* 29   */     }
/* 30   */     #tmpvd {
/* 31   */         height: auto !important
/* 32   */     }
/* 33   */     .footer-col h3.wd-title-footer {
/* 34   */         margin-left: 0
/* 35   */     }
/* 36   */     #author-info,#author-info .author-description {
/* 37   */         width: 100%;
/* 38   */         box-sizing: border-box;
/* 39   */         padding: 0;
/* 40   */     }
/* 41   */     #wd-youtube, #wd-vimeo {
/* 42   */         position: relative;
/* 43   */         padding-bottom: 50.25%;
/* 44   */         padding-top: 35px;
/* 45   */         height: 0;
/* 46   */         overflow: hidden;
/* 47   */     }
/* 48   */     #wd-youtube iframe, #wd-vimeo iframe {
/* 49   */         position: absolute;
/* 50   */         top: 0;

/* responsive.css */

/* 51   */         left: 0;
/* 52   */         width: 100%;
/* 53   */         height: 100%;
/* 54   */     }
/* 55   */     .footer-col * {
/* 56   */         max-width: 100%
/* 57   */     }
/* 58   */
/* 59   */     .wd-tmpbl2-title {
/* 60   */         max-width: 80%;
/* 61   */     }
/* 62   */
/* 63   */     #contback {
/* 64   */         max-width: 90%;
/* 65   */         margin: 0 auto;
/* 66   */     }
/* 67   */
/* 68   */     .header-row {
/* 69   */         height: 170px;
/* 70   */     }
/* 71   */
/* 72   */     #news {
/* 73   */         width: 520px
/* 74   */     }
/* 75   */
/* 76   */     #slider {
/* 77   */         width: -webkit-calc(100% + 80px) !important;
/* 78   */         width: -moz-calc(100% + 80px) !important;
/* 79   */         width: calc(100% + 80px) !important;
/* 80   */     }
/* 81   */
/* 82   */     #sld-left {
/* 83   */         width: 100% !important
/* 84   */     }
/* 85   */
/* 86   */     #sld-top, #sld-bottom {
/* 87   */         display: none !important
/* 88   */     }
/* 89   */
/* 90   */     #header, #top-menu, #mss, #wrap, #feat, #footer, #footer-social, #copyright, .header-row, .mss-row, .megamenu-width, .feat-wrap, .footer-wrap, .footer-row {
/* 91   */         max-width: 100%;
/* 92   */         box-sizing: border-box;
/* 93   */     }
/* 94   */
/* 95   */     .megamenu-back {
/* 96   */         height: auto;
/* 97   */         max-width: 100%;
/* 98   */         padding: 10px 0;
/* 99   */     }
/* 100  */

/* responsive.css */

/* 101  */     .megamenu-width .megapost {
/* 102  */         width: 100%;
/* 103  */         height: auto;
/* 104  */         float: none;
/* 105  */         display: block
/* 106  */     }
/* 107  */
/* 108  */     .megamenu-width .megapost * {
/* 109  */         display: none;
/* 110  */     }
/* 111  */
/* 112  */     .megamenu-width .megapost h2,.megamenu-width .megapost h2 * {
/* 113  */         display: block;
/* 114  */         position: relative;
/* 115  */         width: 100%;
/* 116  */         margin: 0;
/* 117  */         top: auto;
/* 118  */         bottom: auto;
/* 119  */         left: 0;
/* 120  */     }
/* 121  */
/* 122  */     .megamenu-width .megapost h2 a {
/* 123  */         padding: 2px 20px;
/* 124  */         box-sizing: border-box;
/* 125  */         white-space: nowrap;
/* 126  */         overflow: hidden;
/* 127  */         text-overflow: ellipsis;
/* 128  */         font-weight: 600;
/* 129  */         text-transform: uppercase;
/* 130  */         text-decoration: none;
/* 131  */         /* width: 170px; */
/* 132  */         color: #fff;
/* 133  */         display: block;
/* 134  */         padding: 9px 20px;
/* 135  */         z-index: 999;
/* 136  */         position: relative;
/* 137  */         font-size: 12px;
/* 138  */         line-height: 1.3em;
/* 139  */     }
/* 140  */
/* 141  */     #page-title, #tmpbl4, .tmpbl4-cover, .tmpbl4-wrap {
/* 142  */         max-width: 100%
/* 143  */     }
/* 144  */
/* 145  */     .wd-review-title, .wd-lk h2, .wd-slider-title h2, .wd-tmpbl2-title h2 {
/* 146  */         max-width: 80%
/* 147  */     }
/* 148  */
/* 149  */     .wd-review-title h2 {
/* 150  */         max-width: 100%

/* responsive.css */

/* 151  */     }
/* 152  */
/* 153  */     #layout-left-home, #layout-left, #layout-pg-left {
/* 154  */         max-width: 62.66%;
/* 155  */         margin-right: 4%;
/* 156  */     }
/* 157  */     #layout-right {
/* 158  */         max-width: 62.66%;
/* 159  */         margin-left: 4%;
/* 160  */     }
/* 161  */     #sidebar-left {
/* 162  */         padding: 0;
/* 163  */         margin-left: 0;
/* 164  */     }
/* 165  */     #sidebar-right, #sidebar-left {
/* 166  */         width: 33.33%;
/* 167  */         box-sizing: border-box;
/* 168  */         margin-top: 21px;
/* 169  */     }
/* 170  */     #sidebar-left {
/* 171  */         margin-top: 40px;
/* 172  */     }
/* 173  */     .sng-aut-description {
/* 174  */         width: 62.66%;
/* 175  */         margin-left: 4%;
/* 176  */     }
/* 177  */
/* 178  */     .sng-aut-avatar {
/* 179  */         max-width: 33.33%;
/* 180  */         box-sizing: border-box;
/* 181  */     }
/* 182  */
/* 183  */     #comments, .comment-form-comment, .comment-form-comment #comment {
/* 184  */         width: 100%;
/* 185  */         box-sizing: border-box;
/* 186  */     }
/* 187  */
/* 188  */     .sng-aut {
/* 189  */         height: auto
/* 190  */     }
/* 191  */
/* 192  */     .feat-prev {
/* 193  */         left: 0;
/* 194  */         right: auto;
/* 195  */         width: 100px
/* 196  */     }
/* 197  */
/* 198  */     .feat-next {
/* 199  */         left: auto;
/* 200  */         right: 0;

/* responsive.css */

/* 201  */         width: 100px
/* 202  */     }
/* 203  */
/* 204  */     .footer-col h3.wd-title-footer {
/* 205  */         text-align: center
/* 206  */     }
/* 207  */
/* 208  */     .footer-col .widget, ul.contactform {
/* 209  */         width: 100%;
/* 210  */         box-sizing: border-box;
/* 211  */         margin-left: 0;
/* 212  */     }
/* 213  */
/* 214  */     .footer-col {
/* 215  */         width: 33.33%;
/* 216  */         margin-left: 0%;
/* 217  */         margin-right: 0%;
/* 218  */     }
/* 219  */
/* 220  */     #layout-home, .sng-dvct, .sng-cl {
/* 221  */         width: 100%;
/* 222  */         height: auto;
/* 223  */         overflow: hidden;
/* 224  */     }
/* 225  */
/* 226  */     .sng-dvct > * {
/* 227  */         margin-left: 0;
/* 228  */         margin-right: 10px
/* 229  */     }
/* 230  */
/* 231  */     .sng-cover img, .sng-cover {
/* 232  */         width: 100%;
/* 233  */         height: auto
/* 234  */     }
/* 235  */
/* 236  */     #layout-home > * {
/* 237  */         max-width: 100%
/* 238  */     }
/* 239  */
/* 240  */     .tmpbl1-cover {
/* 241  */         width: 48%;
/* 242  */         margin-right: 2%
/* 243  */     }
/* 244  */
/* 245  */     .tmpbl1-wrap {
/* 246  */         width: 48%;
/* 247  */         margin-left: 2%;
/* 248  */     }
/* 249  */
/* 250  */     #layout-home .tmpbl1-wrap p {

/* responsive.css */

/* 251  */         -webkit-line-clamp: 3;
/* 252  */         -webkit-box-orient: vertical;
/* 253  */         overflow: hidden;
/* 254  */         text-overflow: ellipsis;
/* 255  */         height: 120px;
/* 256  */     }
/* 257  */
/* 258  */     .widget {
/* 259  */         width: 100%;
/* 260  */         box-sizing: border-box;
/* 261  */         padding: 20px;
/* 262  */         margin-bottom: 40px;
/* 263  */     }
/* 264  */
/* 265  */     .widget select {
/* 266  */         max-width: 100%
/* 267  */     }
/* 268  */
/* 269  */     .flickr_badge_image {
/* 270  */         width: 31.33%;
/* 271  */         margin: 3px 1%;
/* 272  */         height: auto;
/* 273  */     }
/* 274  */
/* 275  */     .flickr_badge_image a img, .snggreat-cover img {
/* 276  */         width: 100%;
/* 277  */         height: auto;
/* 278  */         display: block
/* 279  */     }
/* 280  */
/* 281  */     #tmpbl1 {
/* 282  */         max-width: 100%;
/* 283  */         height: auto;
/* 284  */         overflow: hidden;
/* 285  */     }
/* 286  */
/* 287  */     #wd-flickr, .widget_rss li, #snggreat {
/* 288  */         width: 100%;
/* 289  */     }
/* 290  */     #snggreat {
/* 291  */         margin: 0px 0 40px;
/* 292  */         height: auto !important;
/* 293  */     }
/* 294  */     .widget_calendar {
/* 295  */         display: none
/* 296  */     }
/* 297  */
/* 298  */     #sidebar-right .widget {
/* 299  */         padding-right: 0
/* 300  */     }

/* responsive.css */

/* 301  */
/* 302  */     .widget_search #searchinput {
/* 303  */         width: 80%;
/* 304  */         box-sizing: border-box;
/* 305  */         height: 40px;
/* 306  */     }
/* 307  */
/* 308  */     .widget_search #search-button {
/* 309  */         left: auto;
/* 310  */         right: 0;
/* 311  */         float: right;
/* 312  */     }
/* 313  */
/* 314  */     .widget_search #searchform {
/* 315  */         overflow: hidden
/* 316  */     }
/* 317  */
/* 318  */     .widget p img {
/* 319  */         width: 100%;
/* 320  */
/* 321  */     }
/* 322  */     .widget img {
/* 323  */         max-width: 100%
/* 324  */     }
/* 325  */
/* 326  */     .widget_blog_one *,.widget_blog_two *, .widget_blog_three * {
/* 327  */         width: 100%;
/* 328  */     }
/* 329  */     .wd-tmpbl2-vcl {
/* 330  */         left: 20px
/* 331  */     }
/* 332  */     .wd-tmpbl2-vcl > * {
/* 333  */         width: auto
/* 334  */     }
/* 335  */
/* 336  */     .widget_blog_two .wd-tmpbl2-title, .widget_blog_three .wd-tmpbl3-posts h2, .wd-lk h2, .wd-photo-title h2, .wd-review-title h2, .snggreat-cover h1 {
/* 337  */         max-width: 80%
/* 338  */     }
/* 339  */     .snggreat-cover h1 {
/* 340  */         font-size: 30px;
/* 341  */     }
/* 342  */     .wd-video-title {
/* 343  */         max-width: 100%
/* 344  */     }
/* 345  */
/* 346  */     .footer-social-wrap a {
/* 347  */         margin-right: 15px !important;
/* 348  */     }
/* 349  */
/* 350  */     .footer-social-wrap a:last-child {

/* responsive.css */

/* 351  */         margin-right: 0px !important
/* 352  */     }
/* 353  */
/* 354  */     .wd-video-title h2, .tmpph-title h2 {
/* 355  */         max-width: 80%;
/* 356  */         clear: both;
/* 357  */     }
/* 358  */
/* 359  */     .wd-tmpbl3-posts img {
/* 360  */         width: 320px;
/* 361  */         height: 244px;
/* 362  */     }
/* 363  */
/* 364  */     .wd-lk, .wd-lk-cover, .wd-photo-posts, .wd-review-posts, .wd-review-bg, .wd-slider, .widget_soundcloud iframe, .tweets_list li, .wd-video-posts, .widget_youtube iframe, .widget_vimeo iframe {
/* 365  */         width: 100%;
/* 366  */     }
/* 367  */
/* 368  */     #tmpbl2:nth-child(odd), #tmpvd:nth-child(odd), #tmpbl3:nth-child(odd), #tmpph:nth-child(odd), .sng-links-prev {
/* 369  */         width: 48%;
/* 370  */         margin-right: 2%;
/* 371  */         margin-left: 0;
/* 372  */         overflow: hidden;
/* 373  */         clear: left;
/* 374  */
/* 375  */         left: 0 !important;
/* 376  */         top: auto !important;
/* 377  */         float: left;
/* 378  */         position: relative !important;
/* 379  */     }
/* 380  */     #tmpbl3 {
/* 381  */         height: 500px;
/* 382  */     }
/* 383  */     #tmpbl2:nth-child(even), #tmpvd:nth-child(even), #tmpbl3:nth-child(even), #tmpph:nth-child(even), .sng-links-next {
/* 384  */         width: 48%;
/* 385  */         margin-left: 2%;
/* 386  */         margin-right: 0;
/* 387  */         overflow: hidden;
/* 388  */         position: relative !important;
/* 389  */         left: auto !important;
/* 390  */         float: right;
/* 391  */
/* 392  */         clear: right;
/* 393  */         top: auto !important;
/* 394  */     }
/* 395  */
/* 396  */     .widget .wp-caption {
/* 397  */         box-sizing: border-box
/* 398  */     }
/* 399  */
/* 400  */     .tmpbl2-cover, .tmpbl2-bg, .tmpvd-bg, .tmpvd-cover, .tmprw-cover, .tmprw-bg, .tmprw-cover img, .tmpbl3-wrap, .tmpph-title, .widget .wp-caption, .widget_recent_comments li, .widget_recent_entries li, .sng-links-prev span a, .sng-links-next span a {

/* responsive.css */

/* 401  */         width: 100%;
/* 402  */     }
/* 403  */
/* 404  */     .sng-links-prev span a, .sng-links-next span a {
/* 405  */         box-sizing: border-box
/* 406  */     }
/* 407  */
/* 408  */     .tmprw-wrap {
/* 409  */         max-width: 100%;
/* 410  */     }
/* 411  */
/* 412  */     .tmprw-note {
/* 413  */         max-width: 30%;
/* 414  */         font-size: 120px
/* 415  */     }
/* 416  */
/* 417  */     .tmprw-qualifying {
/* 418  */         max-width: 30%;
/* 419  */         font-size: 25px
/* 420  */     }
/* 421  */
/* 422  */     #tmpbl2 h2, .tmpbl2-text, .tmpvd-title, .wd-tmpbl3-posts h2, .wd-photo-title h2 {
/* 423  */         max-width: 80%
/* 424  */     }
/* 425  */
/* 426  */     .info-dateC {
/* 427  */         bottom: 10px
/* 428  */     }
/* 429  */
/* 430  */     .layout-fixed, .tmpbl3-cover, .sng-art, .sng-links, .sng-aut {
/* 431  */         width: 100%;
/* 432  */     }
/* 433  */
/* 434  */     .tmprw-wrap h2 {
/* 435  */         max-width: 50%;
/* 436  */         top: 0;
/* 437  */         left: auto;
/* 438  */         right: 20px;
/* 439  */     }
/* 440  */
/* 441  */     .tmprw-text {
/* 442  */         display: none
/* 443  */     }
/* 444  */
/* 445  */     #logo {
/* 446  */         width: 300px;
/* 447  */     }
/* 448  */
/* 449  */     .wd-tmpbl1-posts a {
/* 450  */         font-size: 12px;

/* responsive.css */

/* 451  */     }
/* 452  */
/* 453  */     body {
/* 454  */         overflow-x: hidden;
/* 455  */     }
/* 456  */
/* 457  */     .tmpbl1-wrap p, .tmpbl3-wrap p {
/* 458  */         -webkit-line-clamp: 5;
/* 459  */         -webkit-box-orient: vertical;
/* 460  */         overflow: hidden;
/* 461  */         text-overflow: ellipsis;
/* 462  */         height: 120px;
/* 463  */     }
/* 464  */
/* 465  */     .sng-bottom, #tmprw, #layout-media, .layout-media-fixed {
/* 466  */         max-width: 100%
/* 467  */     }
/* 468  */
/* 469  */     .layout-media-fixed {
/* 470  */         max-width: 100%;
/* 471  */         overflow: hidden
/* 472  */     }
/* 473  */
/* 474  */     #sngrw {
/* 475  */         max-width: 100%;
/* 476  */         box-sizing: border-box
/* 477  */     }
/* 478  */
/* 479  */     .sngrw-rw {
/* 480  */         width: 50%;
/* 481  */     }
/* 482  */
/* 483  */     #rwgreat {
/* 484  */         max-width: 100%;
/* 485  */         height: auto
/* 486  */     }
/* 487  */
/* 488  */     .rwgreat-cover h1 {
/* 489  */         max-width: 80%
/* 490  */     }
/* 491  */
/* 492  */     .rwgreat-cover img {
/* 493  */         max-width: 100%;
/* 494  */         height: auto
/* 495  */     }
/* 496  */
/* 497  */     .sng-tag {
/* 498  */         width: 100%;
/* 499  */         margin-bottom: 20px;
/* 500  */         float: none;

/* responsive.css */

/* 501  */         box-sizing: border-box;
/* 502  */     }
/* 503  */
/* 504  */     .sng-social {
/* 505  */         width: 100%;
/* 506  */         margin-bottom: 20px;
/* 507  */         float: left;
/* 508  */     }
/* 509  */
/* 510  */     .sng-art h1 {
/* 511  */         font-size: 28px;
/* 512  */     }
/* 513  */
/* 514  */     .tmpvd-cover img {
/* 515  */         width: 100%;
/* 516  */         height: auto;
/* 517  */     }
/* 518  */
/* 519  */     .jRatingColor {
/* 520  */         display: none
/* 521  */     }
/* 522  */
/* 523  */     .sng-autR, .tmpbl2-cover, .tmpbl2-cover img, #tmpbl2, #tmpph, .tmpph-cover {
/* 524  */         max-width: 100%;
/* 525  */         height: auto;
/* 526  */     }
/* 527  */
/* 528  */     .tmpph-cover, .tmpph-bg {
/* 529  */         width: 100%
/* 530  */     }
/* 531  */     .tmpph-cover img {
/* 532  */         display: block
/* 533  */     }
/* 534  */     .tmpph-title {
/* 535  */         max-width: 100%;
/* 536  */     }
/* 537  */
/* 538  */     #tmpph img, #tmpph-cover {
/* 539  */         width: 100%;
/* 540  */         height: auto
/* 541  */     }
/* 542  */
/* 543  */     #layout-left-home #tmpvd img, #layout-left-home #tmpph img {
/* 544  */         width: initial;
/* 545  */     }
/* 546  */
/* 547  */     .sngmedia-vdvl {
/* 548  */         max-width: 100%;
/* 549  */         height: auto !important;
/* 550  */     }

/* responsive.css */

/* 551  */
/* 552  */     .phsng-col {
/* 553  */         max-width: 100%
/* 554  */     }
/* 555  */
/* 556  */     ul.contactform #contactName, ul.contactform #email, ul.contactform #commentsText {
/* 557  */         width: 100%;
/* 558  */         box-sizing: border-box
/* 559  */     }
/* 560  */     .wd-tmpbl3-cat, .wd-tmpbl3-date {
/* 561  */         width: auto
/* 562  */     }
/* 563  */     .wd-tmpbl3-vcl * {
/* 564  */         width: auto !important
/* 565  */     }
/* 566  */     .wd-tmpbl2-bg, .wd-tmpbl3-bg, .wd-lk-bg, .wd-photo-bg, .wd-review-bg,
/* 567  */     .wd-video-bg, .wd-slider-bg, .tmpvd-bg, .snggreat-bg, .tmpbl2-bg, .tmpph-bg, .tmprw-wrap {
/* 568  */         height: 100% !important;
/* 569  */         top: 0;
/* 570  */         left: 0;
/* 571  */         right: 0;
/* 572  */         bottom: 0;
/* 573  */         background-size: contain;
/* 574  */         width: 100%
/* 575  */     }
/* 576  */
/* 577  */ }
/* 578  */
/* 579  */ /* ==== portrait tablet ==== */
/* 580  */
/* 581  */ @media(max-width: 1020px) {
/* 582  */     #copyright {
/* 583  */         padding:12px;
/* 584  */     }
/* 585  */     .wd-slider li img {
/* 586  */         width: 100% !important;
/* 587  */         height: auto !important;
/* 588  */         display: block;
/* 589  */     }
/* 590  */     .footer-col .wd-tmpbl2-cat, .footer-col .wd-tmpbl2-date {
/* 591  */         width: auto !important
/* 592  */     }
/* 593  */     .footer-col .wd-tmpbl2-posts, .footer-col .tweets_list li {
/* 594  */         width: 100%
/* 595  */     }
/* 596  */     #feat {
/* 597  */         display: none
/* 598  */     }
/* 599  */
/* 600  */     .footer-col {

/* responsive.css */

/* 601  */         width: 100%;
/* 602  */         float: none;
/* 603  */         margin-bottom: 0;
/* 604  */     }
/* 605  */     .wd-photo-title h2, .wd-review-title h2 {
/* 606  */         width: 100%;
/* 607  */         float: none;
/* 608  */         clear: both;
/* 609  */         display: block;
/* 610  */     }
/* 611  */     .wd-lk, .wd-lk-cover, .wd-lk-cover img,
/* 612  */     .wd-photo-posts, .wd-photo-posts img,
/* 613  */     .wd-review-posts, .wd-review-posts img,
/* 614  */     .wd-video-posts, .wd-video-posts img, .tmpvd-cover, #tmpvd, .tmpvd-cover img {
/* 615  */         width: 100%;
/* 616  */         height: auto !important;
/* 617  */         display: block
/* 618  */     }
/* 619  */
/* 620  */     .wd-tmpbl2-cover img, .wd-tmpbl3-posts img {
/* 621  */         width: 100%;
/* 622  */         display: block;
/* 623  */     }
/* 624  */     .wd-tmpbl2-vcl {
/* 625  */         left: 0;
/* 626  */         padding: 0 20px;
/* 627  */     }
/* 628  */     .wd-tmpbl2-cover {
/* 629  */         position: relative
/* 630  */     }
/* 631  */     .wd-tmpbl1-posts, .wd-tmpbl1-posts img,
/* 632  */     .wd-tmpbl2-cover, .wd-tmpbl2-posts, .wd-tmpbl2-posts img,
/* 633  */     .wd-tmpbl3-posts img, .wd-tmpbl3-cover, .wd-tmpbl3-posts, .wd-tmpbl3-bg
/* 634  */     {
/* 635  */         height: auto !important;
/* 636  */
/* 637  */     }
/* 638  */
/* 639  */     #news {
/* 640  */         width: 260px
/* 641  */     }
/* 642  */     #wizemenu > ul li {
/* 643  */         float: none;
/* 644  */         display: block
/* 645  */     }
/* 646  */     #wizemenu > ul li a {
/* 647  */         padding: 5px 0
/* 648  */     }
/* 649  */     #wizemenu > ul {
/* 650  */         background: rgba(0,0,0,0.95);

/* responsive.css */

/* 651  */         padding: 20px;
/* 652  */         margin-top: 00px;
/* 653  */         display: none;
/* 654  */     }
/* 655  */     #wizemenu > ul li > div,
/* 656  */     #wizemenu > ul li ul {
/* 657  */         display: block;
/* 658  */         visibility: visible;
/* 659  */         opacity: 1;
/* 660  */         position: relative;
/* 661  */         left: 0px;
/* 662  */         top: 100%;
/* 663  */         padding: 0;
/* 664  */         background: transparent;
/* 665  */     }
/* 666  */      #wizemenu > ul li > div li,
/* 667  */      #wizemenu > ul li ul li {
/* 668  */
/* 669  */         background: transparent;
/* 670  */     }
/* 671  */       #wizemenu > ul li > div li a,
/* 672  */      #wizemenu > ul li ul li a{
/* 673  */         color: rgba(255,255,255,0.7);
/* 674  */         padding:5px !important;
/* 675  */     }
/* 676  */       #wizemenu > ul li > div li a:before,
/* 677  */      #wizemenu > ul li ul li a:before {
/* 678  */          content:"- "
/* 679  */      }
/* 680  */     .bars {
/* 681  */         display: inline-block;
/* 682  */         width: 60px;
/* 683  */         height: 40px;
/* 684  */         background-color: #000;
/* 685  */         background-image: url("../images/bars.png");
/* 686  */         background-size: contain;
/* 687  */         background-repeat: no-repeat;
/* 688  */         background-position: center;
/* 689  */         margin-top: 8.5px;
/* 690  */         -webkit-user-select: none;
/* 691  */         -moz-user-select: none;
/* 692  */         -ms-user-select: none;
/* 693  */         user-select: none;
/* 694  */         cursor: pointer;
/* 695  */     }
/* 696  */     #menu {
/* 697  */         margin-top: 0
/* 698  */     }
/* 699  */     #slider {
/* 700  */         height: auto !important

/* responsive.css */

/* 701  */     }
/* 702  */     #layout-left-home, #layout-left, #layout-pg-left, #layout-right {
/* 703  */         width: 100%;
/* 704  */         float: none;
/* 705  */         margin-right: 0;
/* 706  */         max-width: 100%;
/* 707  */         margin-left: 0;
/* 708  */     }
/* 709  */     #sidebar-right, #sidebar-left {
/* 710  */         width: 100%;
/* 711  */         float: none;
/* 712  */         margin-right: 0;
/* 713  */         max-width: 100%;
/* 714  */         margin-top: 50px;
/* 715  */         margin-left: 0;
/* 716  */         padding: 0;
/* 717  */     }
/* 718  */     .rsDefault .rsThumbsVer {
/* 719  */         width: 50% !important;
/* 720  */         float: right !important
/* 721  */     }
/* 722  */     .rsOverflow {
/* 723  */         width: 50% !important;
/* 724  */         float: left !important
/* 725  */     }
/* 726  */     .videoGallery .rsThumbs .rsThumb {
/* 727  */         width: 100%
/* 728  */     }
/* 729  */     .widget label {
/* 730  */         display: block;
/* 731  */         clear: both;
/* 732  */         float: none;
/* 733  */     }
/* 734  */     h3.sh-title {
/* 735  */         top: 0
/* 736  */     }
/* 737  */     .wd-slider {
/* 738  */         height: auto
/* 739  */     }
/* 740  */     .wd-slider-title h2 {
/* 741  */         clear: both
/* 742  */     }
/* 743  */     #sngmedia iframe {
/* 744  */         height: 330px;
/* 745  */     }
/* 746  */
/* 747  */     #header-banner, #header-banner-none, #leaderboard-banner {
/* 748  */         display: none;
/* 749  */     }
/* 750  */

/* responsive.css */

/* 751  */ }
/* 752  */
/* 753  */ /* ==== landscape phone ==== */
/* 754  */
/* 755  */ @media (max-width: 735px) {
/* 756  */     .header-row {
/* 757  */         height: 230px !important;
/* 758  */         padding-top: 10px;
/* 759  */     }
/* 760  */     #logo {
/* 761  */         float: none;
/* 762  */         margin: 0 auto 0;
/* 763  */     }
/* 764  */     #news {
/* 765  */         margin: 20px auto 0;
/* 766  */         float: none;
/* 767  */     }
/* 768  */     #social-header {
/* 769  */         float: left;
/* 770  */     }
/* 771  */     #top-menu {
/* 772  */         height: 50px;
/* 773  */     }
/* 774  */     #slider h2 a, #slider h2, .sngmedia-title h1 {
/* 775  */         font-size: 20px;
/* 776  */         line-height: 1.4
/* 777  */     }
/* 778  */     #slider p {
/* 779  */         display: none
/* 780  */     }
/* 781  */     .tmpbl1-cover {
/* 782  */         width: 100%;
/* 783  */         margin-right: 0;
/* 784  */         margin-left: 0;
/* 785  */         float: none
/* 786  */     }
/* 787  */     .tmpbl1-wrap {
/* 788  */         width: 100%;
/* 789  */         margin-left: 0;
/* 790  */         margin-right: 0;
/* 791  */         float: none;
/* 792  */         padding-top: 20px;
/* 793  */     }
/* 794  */     .grid figure figcaption {
/* 795  */         box-sizing: border-box
/* 796  */     }
/* 797  */     figure img {
/* 798  */         width: 100% !important;
/* 799  */         height: auto !important;
/* 800  */         transform: none !important;

/* responsive.css */

/* 801  */
/* 802  */     }
/* 803  */     .info-date {
/* 804  */         margin-top: 0;
/* 805  */         margin-right: 5px
/* 806  */     }
/* 807  */     #tmpbl1 {
/* 808  */         margin-bottom: 80px;
/* 809  */     }
/* 810  */     .rsDefault .rsThumbsVer {
/* 811  */         display: none
/* 812  */     }
/* 813  */     #tmpbl2:nth-child(odd), #tmpvd:nth-child(odd), #tmpbl3:nth-child(odd),
/* 814  */     #tmpph:nth-child(odd), .sng-links-prev, #tmpbl2:nth-child(even),
/* 815  */     #tmpvd:nth-child(even), #tmpbl3:nth-child(even), #tmpph:nth-child(even), .sng-links-next, .rsOverflow {
/* 816  */         width: 100% !important;
/* 817  */         float: none !important;
/* 818  */         margin-left: 0;
/* 819  */         margin-right: 0
/* 820  */     }
/* 821  */     .rsOverflow .rsSlide {
/* 822  */         left: 0 !important
/* 823  */     }
/* 824  */     .tmprw-wrap h2, .info-dateC, .info-vclC {
/* 825  */         display: none
/* 826  */     }
/* 827  */     .tmprw-cover img {
/* 828  */         display: block
/* 829  */     }
/* 830  */     .tmprw-note {
/* 831  */         max-width: 100%;
/* 832  */         font-size: 120px;
/* 833  */         color: rgba(255, 255, 255, 0.9);
/* 834  */     }
/* 835  */
/* 836  */     .tmprw-qualifying {
/* 837  */         max-width: 100%;
/* 838  */         font-size: 25px;
/* 839  */         color: rgba(255, 255, 255, 1);
/* 840  */     }
/* 841  */     .tmprw-qualifying span {
/* 842  */         color: rgba(255, 255, 255, 0.9);
/* 843  */     }
/* 844  */     .tmpbl4-cover {
/* 845  */         height: auto !important;
/* 846  */     }
/* 847  */     #sidebar-right {
/* 848  */         border-left: 0
/* 849  */     }
/* 850  */     #sidebar-right .widget {

/* responsive.css */

/* 851  */         padding-left: 0;
/* 852  */     }
/* 853  */     h3.wd-title {
/* 854  */         margin-top: -20px;
/* 855  */     }
/* 856  */     #wrap {
/* 857  */         padding-left: 20px;
/* 858  */         padding-right: 20px;
/* 859  */     }
/* 860  */     #slider {
/* 861  */         width: -webkit-calc(100% + 40px) !important;
/* 862  */         width: -moz-calc(100% + 40px) !important;
/* 863  */         width: calc(100% + 40px) !important;
/* 864  */     }
/* 865  */     #slider {
/* 866  */         margin-left: -20px !important;
/* 867  */         margin-right: -20px !important;
/* 868  */         ;
/* 869  */     }
/* 870  */
/* 871  */     #contback {
/* 872  */         max-width: 95%
/* 873  */     }
/* 874  */     .grid figure {
/* 875  */         float: none !important;
/* 876  */         width: 100%;
/* 877  */         height: auto !important;
/* 878  */     }
/* 879  */     img.sngph-photo, .snggreat-info {
/* 880  */         width: 100%;
/* 881  */         height: auto;
/* 882  */         display: block;
/* 883  */         margin-left: 0 !important;
/* 884  */     }
/* 885  */     .tmpbl2-cover img,
/* 886  */     img.rsImg, #layout-left-home #tmpvd img, #layout-left-home #tmpph img {
/* 887  */         width: 100% !important;
/* 888  */         height: auto !important;
/* 889  */         display: block !important;
/* 890  */         margin-left: 0 !important;
/* 891  */     }
/* 892  */     .snggreat-cover h1, .rwgreat-cover h1 {
/* 893  */         font-size: 20px;
/* 894  */         bottom: 40px
/* 895  */     }
/* 896  */     .snggreat-info {
/* 897  */         bottom: 5px
/* 898  */     }
/* 899  */     .rwgreat-info {
/* 900  */         bottom: 15px;

/* responsive.css */

/* 901  */     }
/* 902  */     .rwgreat-like {
/* 903  */         top: 40px;
/* 904  */         right: 9px;
/* 905  */     }
/* 906  */     .snggreat-view, .snggreat-time {
/* 907  */         display: none
/* 908  */     }
/* 909  */     .snggreat-like, .rwgreat-social {
/* 910  */         top: 10px;
/* 911  */         right: 10px;
/* 912  */     }
/* 913  */     .sng-aut-avatar {
/* 914  */         display: none
/* 915  */     }
/* 916  */     .sng-aut-description {
/* 917  */         width: 100%;
/* 918  */         margin-left: 0;
/* 919  */     }
/* 920  */     .sngrw-rw {
/* 921  */         width: 100%
/* 922  */     }
/* 923  */     .sngrw-note {
/* 924  */         right: 0;
/* 925  */         margin: 0 auto;
/* 926  */         float: none;
/* 927  */         left: 0;
/* 928  */         display: block;
/* 929  */         /* top: 210px; */
/* 930  */         position: relative;
/* 931  */         padding-bottom: 40px;
/* 932  */     }
/* 933  */     .tmpbl3-cover, .tmprw-bg, .tmprw-cover, .tmprw-cover img, .sng-bottom, #tmprw, #layout-media, .layout-media-fixed {
/* 934  */         height: auto !important
/* 935  */     }
/* 936  */     .tmprw-qualifying span, .tmprw-note {
/* 937  */         clear: both;
/* 938  */         display: block;
/* 939  */         float: none;
/* 940  */         width: 200px;
/* 941  */         margin: 0 auto;
/* 942  */         left: 0;
/* 943  */         right: 0;
/* 944  */         float: none;
/* 945  */         top: 25px;
/* 946  */     }
/* 947  */     .tmprw-note {
/* 948  */         top: auto;
/* 949  */         bottom: 30px;
/* 950  */         font-size: 60px;

/* responsive.css */

/* 951  */     }
/* 952  */     .tmprw-qualifying {
/* 953  */         top: auto;
/* 954  */         bottom: 70px;
/* 955  */         margin: 0 auto;
/* 956  */         left: 0;
/* 957  */         right: 0;
/* 958  */     }
/* 959  */
/* 960  */     #header-banner, #header-banner-none, #leaderboard-banner {
/* 961  */         display: none;
/* 962  */     }
/* 963  */ }
/* 964  */
/* 965  */ /* ==== portrait phone ==== */
/* 966  */
/* 967  */ @media (max-width: 450px) {
/* 968  */     #logo {
/* 969  */         max-width: 284px;
/* 970  */     }
/* 971  */     #logo img {
/* 972  */         width: 100%;
/* 973  */         height: auto
/* 974  */     }
/* 975  */
/* 976  */     #top-menu {
/* 977  */         padding: 0 10px;
/* 978  */     }
/* 979  */     #wizetopmenu > ul > li > a {
/* 980  */
/* 981  */         margin: 0
/* 982  */     }
/* 983  */     #wizetopmenu > ul li, #social-header, #social-header a {
/* 984  */         display: inline-block;
/* 985  */         float: none;
/* 986  */         margin: 0 3px;
/* 987  */     }
/* 988  */     #wizetopmenu ul, #top-menu {
/* 989  */         text-align: center;
/* 990  */         margin-top: 0;
/* 991  */         margin-left: 0;
/* 992  */         padding: 0;
/* 993  */         margin-bottom: 0;
/* 994  */         max-height: 45px;
/* 995  */     }
/* 996  */     .top-menu-time {
/* 997  */         display: none
/* 998  */     }
/* 999  */     .header-row {
/* 1000 */         padding: 10px;

/* responsive.css */

/* 1001 */     }
/* 1002 */     .mss-row {
/* 1003 */         padding: 0 10px;
/* 1004 */     }
/* 1005 */     ul.contactform {
/* 1006 */         padding: 0;
/* 1007 */         margin-left: 0;
/* 1008 */     }
/* 1009 */
/* 1010 */     .tp-caption.sldleft-cat {
/* 1011 */         display: none
/* 1012 */     }
/* 1013 */     #tmpbl2 h2, .tmpvd-title h2, .wd-video-title h2, .tmpph-title h2, .sng-art h1 {
/* 1014 */         font-size: 16px;
/* 1015 */     }
/* 1016 */
/* 1017 */     #tmpbl3 {
/* 1018 */         height: 450px;
/* 1019 */     }
/* 1020 */
/* 1021 */     #sngrw {
/* 1022 */         padding: 10px
/* 1023 */     }
/* 1024 */     .wd-tmpbl2-title h2, .wd-lk h2, .wd-photo-title h2, .wd-review-title h2,
/* 1025 */     .wd-slider-title h2, .widget_blog_two .wd-tmpbl2-title, .widget_blog_three .wd-tmpbl3-posts h2,
/* 1026 */     .wd-lk h2, .wd-photo-title h2, .wd-review-title h2, .snggreat-cover h1, #tmpbl2 h2,
/* 1027 */     .tmpvd-title h2, .wd-video-title h2, .tmpph-title h2, .rwgreat-cover h1, .sngrw-rw-title {
/* 1028 */         font-size: 14px;
/* 1029 */     }
/* 1030 */     #page-title h1, #page-title h1 span {
/* 1031 */         font-size: 20px !important;
/* 1032 */         line-height: 25px !important;
/* 1033 */         height: auto;
/* 1034 */     }
/* 1035 */     .tmpbl4-wrap h2 {
/* 1036 */         font-size: 20px
/* 1037 */     }
/* 1038 */     .sng-links-prev span a, .sng-links-next span a {
/* 1039 */         padding: 10px;
/* 1040 */         font-size: 12px;
/* 1041 */     }
/* 1042 */     .snggreat-com {
/* 1043 */         font-size: 0px !important;
/* 1044 */         line-height: 20px;
/* 1045 */     }
/* 1046 */     #sngmedia iframe {
/* 1047 */         height: 200px;
/* 1048 */     }
/* 1049 */
/* 1050 */     #header-banner, #header-banner-none, #leaderboard-banner {

/* responsive.css */

/* 1051 */         display: none;
/* 1052 */     }
/* 1053 */
/* 1054 */ }
