
/* style.css */

/* 1    */ /*--------------------------------------------------------------------------------------------------
/* 2    *| 
/* 3    *|     Theme Name: Give
/* 4    *|     Theme URI: http://demo.icypixels.com/themes/give/
/* 5    *|     Description: NGO and Charities oriented WordPress Theme
/* 6    *|     Author: Icy Pixels
/* 7    *|     Author URI: http://www.icypixels.com/
/* 8    *|     License: GNU General Public License version 3.0
/* 9    *|     License URI: http://www.gnu.org/licenses/gpl-3.0.html
/* 10   *|     Version: 1.2.1
/* 11   *|     Tags: white, custom-background, custom-menu, featured-images, flexible-width, gray, light, microformats, post-formats, theme-options, translation-ready
/* 12   *| 
/* 13   *|     Designed & Handcrafted by Paul from Icy Pixels
/* 14   *|     All files, unless otherwise stated, are released under the GNU General Public License
/* 15   *|     version 3.0 (http://www.gnu.org/licenses/gpl-3.0.html)
/* 16   *| 
/* 17   *| --------------------------------------------------------------------------------------------------*/
/* 18   */ 
/* 19   */ /*--------------------------------------------------------------------------------------------------
/* 20   *| 
/* 21   *|     Table of Contents 
/* 22   *| 
/* 23   *|     1. CSS Reset
/* 24   *|     2. Setup
/* 25   *|     3. Header Styling
/* 26   *|     4. Navigation
/* 27   *|     5. Content Styling
/* 28   *|         5.a.  Main Content
/* 29   *|         5.b.  Sidebar
/* 30   *|     6. Post Styling
/* 31   *|     7. Comments Styling
/* 32   *|     8. Pagination Styling
/* 33   *|     9. Footer Styling
/* 34   *|     10. Custom Page Templates
/* 35   *|         10.a. Homepage
/* 36   *|     11. Widgets
/* 37   *|     12. External Scripts Styling
/* 38   *| 
/* 39   *| --------------------------------------------------------------------------------------------------*/
/* 40   */ 
/* 41   */ /*--------------------------------------------------------------------------------------------------
/* 42   *|     1.  CSS Reset
/* 43   *| --------------------------------------------------------------------------------------------------*/
/* 44   */ 
/* 45   */     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, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
/* 46   */         margin: 0;
/* 47   */         padding: 0;
/* 48   */         border: 0;
/* 49   */         font-size: 100%;
/* 50   */         font: inherit;

/* style.css */

/* 51   */         vertical-align: baseline; }
/* 52   */     article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
/* 53   */         display: block; }
/* 54   */     body {
/* 55   */         line-height: 1; }
/* 56   */     ol, ul {
/* 57   */         list-style: none; }
/* 58   */     blockquote, q {
/* 59   */         quotes: none; }
/* 60   */     blockquote:before, blockquote:after,
/* 61   */     q:before, q:after {
/* 62   */         content: '';
/* 63   */         content: none; }
/* 64   */     table {
/* 65   */         border-collapse: collapse;
/* 66   */         border-spacing: 0; }
/* 67   */     html {
/* 68   */         -webkit-text-size-adjust: none;
/* 69   */     }
/* 70   */ 
/* 71   */ /*--------------------------------------------------------------------------------------------------
/* 72   *|     2.  Setup
/* 73   *| --------------------------------------------------------------------------------------------------*/
/* 74   */ 
/* 75   */ body,
/* 76   */ input,
/* 77   */ textarea,
/* 78   */ button {
/* 79   */     margin:0;
/* 80   */     vertical-align:bottom;
/* 81   */     font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
/* 82   */     font-weight: 400;
/* 83   */     font-size: 16px;
/* 84   */     line-height: 30px;
/* 85   */     border: none;
/* 86   */     -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
/* 87   */     -webkit-text-size-adjust: auto;
/* 88   */ }
/* 89   */ 
/* 90   */ body {    
/* 91   */     box-sizing: border-box;
/* 92   */     background: #2193cc
/* 93   */     color: #000;    
/* 94   */ }
/* 95   */ 
/* 96   */ button,
/* 97   */ input[type="submit"] {
/* 98   */     border-radius: 0;
/* 99   */     -moz-border-radius: 0;
/* 100  */     -webkit-border-radius: 0;

/* style.css */

/* 101  */     -o-border-radius: 0;
/* 102  */ 
/* 103  */     border: none;
/* 104  */ 
/* 105  */     clear: both;
/* 106  */     float: left;
/* 107  */     font-family: 'Source Sans Pro';
/* 108  */     font-size: 14px;
/* 109  */     line-height: 14px;
/* 110  */     text-transform: uppercase;
/* 111  */     font-weight: 300;
/* 112  */     color: #fff;
/* 113  */     padding: 15px 15px;
/* 114  */     background: #222;
/* 115  */ }
/* 116  */ 
/* 117  */ button:hover,
/* 118  */ input[type="submit"]:hover {
/* 119  */     background-color: #ADC671;
/* 120  */ }
/* 121  */ 
/* 122  */ input[type=submit] {
/* 123  */     -webkit-appearance: none;
/* 124  */ }
/* 125  */ 
/* 126  */ .wrapper {
/* 127  */     position: relative;
/* 128  */     width:1140px;
/* 129  */     margin: 0 auto;
/* 130  */     padding: 0 20px;
/* 131  */     box-sizing: border-box; -moz-box-sizing: border-box; 
/* 132  */ }
/* 133  */ 
/* 134  */ .row-fluid {
/* 135  */   width: 100%;
/* 136  */   *zoom: 1;
/* 137  */ }
/* 138  */ .row-fluid:before,
/* 139  */ .row-fluid:after {
/* 140  */   display: table;
/* 141  */   content: "";
/* 142  */ }
/* 143  */ .row-fluid:after {
/* 144  */   clear: both;
/* 145  */ }
/* 146  */ .row-fluid [class*="span"] {
/* 147  */   display: block;
/* 148  */   width: 100%;
/* 149  */   min-height: 28px;
/* 150  */   -webkit-box-sizing: border-box;

/* style.css */

/* 151  */   -moz-box-sizing: border-box;
/* 152  */   -ms-box-sizing: border-box;
/* 153  */   box-sizing: border-box;
/* 154  */   float: left;
/* 155  */   margin-left: 2.127659574%;
/* 156  */   *margin-left: 2.0744680846382977%;
/* 157  */ }
/* 158  */ .row-fluid [class*="span"]:first-child {
/* 159  */   margin-left: 0;
/* 160  */ }
/* 161  */ .row-fluid .span12 {
/* 162  */   width: 99.99999998999999%;
/* 163  */   *width: 99.94680850063828%;
/* 164  */ }
/* 165  */ .row-fluid .span11 {
/* 166  */   width: 91.489361693%;
/* 167  */   *width: 91.4361702036383%;
/* 168  */ }
/* 169  */ .row-fluid .span10 {
/* 170  */   width: 82.97872339599999%;
/* 171  */   *width: 82.92553190663828%;
/* 172  */ }
/* 173  */ .row-fluid .span9 {
/* 174  */   width: 74.468085099%;
/* 175  */   *width: 74.4148936096383%;
/* 176  */ }
/* 177  */ .row-fluid .span8 {
/* 178  */   width: 65.95744680199999%;
/* 179  */   *width: 65.90425531263828%;
/* 180  */ }
/* 181  */ .row-fluid .span7 {
/* 182  */   width: 57.446808505%;
/* 183  */   *width: 57.3936170156383%;
/* 184  */ }
/* 185  */ .row-fluid .span6 {
/* 186  */   width: 48.93617020799999%;
/* 187  */   *width: 48.88297871863829%;
/* 188  */ }
/* 189  */ .row-fluid .span5 {
/* 190  */   width: 40.425531911%;
/* 191  */   *width: 40.3723404216383%;
/* 192  */ }
/* 193  */ .row-fluid .span4 {
/* 194  */   width: 31.914893614%;
/* 195  */   *width: 31.8617021246383%;
/* 196  */ }
/* 197  */ .row-fluid .span3 {
/* 198  */   width: 23.404255317%;
/* 199  */   *width: 23.3510638276383%;
/* 200  */ }

/* style.css */

/* 201  */ .row-fluid .span2 {
/* 202  */   width: 14.89361702%;
/* 203  */   *width: 14.8404255306383%;
/* 204  */ }
/* 205  */ .row-fluid .span1 {
/* 206  */   width: 6.382978723%;
/* 207  */   *width: 6.329787233638298%;
/* 208  */ }
/* 209  */ 
/* 210  */ .row-fluid .offset12 {
/* 211  */   margin-left: 104.25531914893617%;
/* 212  */   *margin-left: 104.14893617021275%;
/* 213  */ }
/* 214  */ 
/* 215  */ .row-fluid .offset12:first-child {
/* 216  */   margin-left: 102.12765957446808%;
/* 217  */   *margin-left: 102.02127659574467%;
/* 218  */ }
/* 219  */ 
/* 220  */ .row-fluid .offset11 {
/* 221  */   margin-left: 95.74468085106382%;
/* 222  */   *margin-left: 95.6382978723404%;
/* 223  */ }
/* 224  */ 
/* 225  */ .row-fluid .offset11:first-child {
/* 226  */   margin-left: 93.61702127659574%;
/* 227  */   *margin-left: 93.51063829787232%;
/* 228  */ }
/* 229  */ 
/* 230  */ .row-fluid .offset10 {
/* 231  */   margin-left: 87.23404255319149%;
/* 232  */   *margin-left: 87.12765957446807%;
/* 233  */ }
/* 234  */ 
/* 235  */ .row-fluid .offset10:first-child {
/* 236  */   margin-left: 85.1063829787234%;
/* 237  */   *margin-left: 84.99999999999999%;
/* 238  */ }
/* 239  */ 
/* 240  */ .row-fluid .offset9 {
/* 241  */   margin-left: 78.72340425531914%;
/* 242  */   *margin-left: 78.61702127659572%;
/* 243  */ }
/* 244  */ 
/* 245  */ .row-fluid .offset9:first-child {
/* 246  */   margin-left: 76.59574468085106%;
/* 247  */   *margin-left: 76.48936170212764%;
/* 248  */ }
/* 249  */ 
/* 250  */ .row-fluid .offset8 {

/* style.css */

/* 251  */   margin-left: 70.2127659574468%;
/* 252  */   *margin-left: 70.10638297872339%;
/* 253  */ }
/* 254  */ 
/* 255  */ .row-fluid .offset8:first-child {
/* 256  */   margin-left: 68.08510638297872%;
/* 257  */   *margin-left: 67.9787234042553%;
/* 258  */ }
/* 259  */ 
/* 260  */ .row-fluid .offset7 {
/* 261  */   margin-left: 61.70212765957446%;
/* 262  */   *margin-left: 61.59574468085106%;
/* 263  */ }
/* 264  */ 
/* 265  */ .row-fluid .offset7:first-child {
/* 266  */   margin-left: 59.574468085106375%;
/* 267  */   *margin-left: 59.46808510638297%;
/* 268  */ }
/* 269  */ 
/* 270  */ .row-fluid .offset6 {
/* 271  */   margin-left: 53.191489361702125%;
/* 272  */   *margin-left: 53.085106382978715%;
/* 273  */ }
/* 274  */ 
/* 275  */ .row-fluid .offset6:first-child {
/* 276  */   margin-left: 51.063829787234035%;
/* 277  */   *margin-left: 50.95744680851063%;
/* 278  */ }
/* 279  */ 
/* 280  */ .row-fluid .offset5 {
/* 281  */   margin-left: 44.68085106382979%;
/* 282  */   *margin-left: 44.57446808510638%;
/* 283  */ }
/* 284  */ 
/* 285  */ .row-fluid .offset5:first-child {
/* 286  */   margin-left: 42.5531914893617%;
/* 287  */   *margin-left: 42.4468085106383%;
/* 288  */ }
/* 289  */ 
/* 290  */ .row-fluid .offset4 {
/* 291  */   margin-left: 36.170212765957444%;
/* 292  */   *margin-left: 36.06382978723405%;
/* 293  */ }
/* 294  */ 
/* 295  */ .row-fluid .offset4:first-child {
/* 296  */   margin-left: 34.04255319148936%;
/* 297  */   *margin-left: 33.93617021276596%;
/* 298  */ }
/* 299  */ 
/* 300  */ .row-fluid .offset3 {

/* style.css */

/* 301  */   margin-left: 27.659574468085104%;
/* 302  */   *margin-left: 27.5531914893617%;
/* 303  */ }
/* 304  */ 
/* 305  */ .row-fluid .offset3:first-child {
/* 306  */   margin-left: 25.53191489361702%;
/* 307  */   *margin-left: 25.425531914893618%;
/* 308  */ }
/* 309  */ 
/* 310  */ .row-fluid .offset2 {
/* 311  */   margin-left: 19.148936170212764%;
/* 312  */   *margin-left: 19.04255319148936%;
/* 313  */ }
/* 314  */ 
/* 315  */ .row-fluid .offset2:first-child {
/* 316  */   margin-left: 17.02127659574468%;
/* 317  */   *margin-left: 16.914893617021278%;
/* 318  */ }
/* 319  */ 
/* 320  */ .row-fluid .offset1 {
/* 321  */   margin-left: 10.638297872340425%;
/* 322  */   *margin-left: 10.53191489361702%;
/* 323  */ }
/* 324  */ 
/* 325  */ .row-fluid .offset1:first-child {
/* 326  */   margin-left: 8.51063829787234%;
/* 327  */   *margin-left: 8.404255319148938%;
/* 328  */ }
/* 329  */ 
/* 330  */ a {
/* 331  */     color: #333;
/* 332  */     text-decoration: none;
/* 333  */     border: none;    
/* 334  */ }
/* 335  */ 
/* 336  */ p { font-weight: 400; }
/* 337  */ 
/* 338  */ a:hover { text-decoration: none; color: #ADC671;}
/* 339  */ 
/* 340  */ a img { border: none }
/* 341  */ 
/* 342  */ a, .transition {
/* 343  */     -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;
/* 344  */ }
/* 345  */ 
/* 346  */ ul.posts-list li.post { 
/* 347  */     margin: 0px 0px 60px 0px;
/* 348  */     padding-bottom: 20px;
/* 349  */     border-bottom: 5px solid #efefef;
/* 350  */ }

/* style.css */

/* 351  */ ul.posts-list li.post:first-child {
/* 352  */     margin-top: 0;
/* 353  */ }
/* 354  */ 
/* 355  */ ul.posts-list li.post:last-child {
/* 356  */     border-bottom: none;
/* 357  */     margin-bottom: 0;
/* 358  */ }
/* 359  */ 
/* 360  */ section h1,
/* 361  */ section h2,
/* 362  */ section h3,
/* 363  */ section h4,
/* 364  */ section h5,
/* 365  */ section h6 { margin-bottom: 20px; }
/* 366  */ 
/* 367  */ .module-image { 
/* 368  */     display:block; 
/* 369  */     overflow:hidden; 
/* 370  */     position:relative; 
/* 371  */ }
/* 372  */ 
/* 373  */ .post .module-image a {
/* 374  */     display:block; 
/* 375  */     position:relative;
/* 376  */     margin-bottom: 17px;
/* 377  */ }
/* 378  */ 
/* 379  */ .single .module-image a {
/* 380  */     max-height: 100%;
/* 381  */ }
/* 382  */ 
/* 383  */ .alignleft { float: left }
/* 384  */ 
/* 385  */ .alignright { float: right }
/* 386  */ 
/* 387  */ .aligncenter {
/* 388  */     margin-left: auto;
/* 389  */     margin-right: auto;
/* 390  */     display: block;
/* 391  */     clear: both;
/* 392  */ }
/* 393  */ 
/* 394  */ .hidden { display: none }
/* 395  */ 
/* 396  */ .navigation-links, p, .bot-margin { margin-bottom: 20px; }
/* 397  */ 
/* 398  */ .top-margin { margin-top: 20px !important; }
/* 399  */ .no-bottom { margin-bottom: 0 !important; }
/* 400  */ .bot-margin-double { margin-bottom: 40px; }

/* style.css */

/* 401  */ .bot-margin-triple { margin-bottom: 60px; }
/* 402  */ .float-right { float: right !important; }
/* 403  */ 
/* 404  */ ::-webkit-input-placeholder  { color: #d3d1d1; }
/* 405  */ input:-moz-placeholder { color:#d3d1d1;}
/* 406  */ .sticky {}
/* 407  */ 
/* 408  */ 
/* 409  */ .page-template-template-full-width-php .container.background .full-width {
/* 410  */ overflow: hidden;
/* 411  */ padding-bottom: 20px;
/* 412  */ }
/* 413  */ 
/* 414  */ .main-container.layour-st aside.sidebar { float: left !important; }
/* 415  */ 
/* 416  */ 
/* 417  */ /*--------------------------------------------------------------------------------------------------
/* 418  *|     3.  Header Styling      
/* 419  *| --------------------------------------------------------------------------------------------------*/
/* 420  */ 
/* 421  */ header {
/* 422  */     margin: 0;
/* 423  */     display: block;
/* 424  */     overflow: hidden;
/* 425  */ }
/* 426  */ 
/* 427  */ #hello-bar {    
/* 428  */     
/* 429  */     padding: 10px 0;
/* 430  */ 
/* 431  */     vertical-align: text-bottom;
/* 432  */ 
/* 433  */     -webkit-box-shadow: inset 0 -1px 2px rgba(0,0,0,.15);
/* 434  */     -moz-box-shadow: inset 0 -1px 2px rgba(0,0,0,.15);
/* 435  */     box-shadow: inset 0 -1px 2px rgba(0,0,0,.15);
/* 436  */ }
/* 437  */ 
/* 438  */ 
/* 439  */ #hello-bar .widget {
/* 440  */     color: #f2f3f5;
/* 441  */     font-family: "Source Sans Pro";
/* 442  */     font-size: 18px;
/* 443  */     font-style: italic;
/* 444  */     color: #fff;
/* 445  */     text-shadow: 0 1px 1px rgba(0,0,0,.25);
/* 446  */     text-align: left;
/* 447  */ }
/* 448  */ 
/* 449  */ #hello-bar .social .widget {
/* 450  */     text-align: right;

/* style.css */

/* 451  */ }
/* 452  */ 
/* 453  */ #hello-bar .zilla-social { 
/* 454  */     margin-bottom: -10px; 
/* 455  */     margin-top: 3px;
/* 456  */ }
/* 457  */ 
/* 458  */ 
/* 459  */ #headerTop {
/* 460  */     background-color: #fff;
/* 461  */     -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
/* 462  */     -moz-box-shadow: 0 1px 2px rgba(0,0,0,.15);
/* 463  */     box-shadow: 0 1px 2px rgba(0,0,0,.15);
/* 464  */ 
/* 465  */ }
/* 466  */ 
/* 467  */ .logo {
/* 468  */     text-align: left;
/* 469  */     display: block;
/* 470  */     padding: 25px 0;
/* 471  */     position: relative;
/* 472  */ }
/* 473  */ 
/* 474  */     .logo a:hover { text-decoration: none; color: #111;}
/* 475  */ 
/* 476  */     .logo a {            
/* 477  */         font: 48px/48px 'Source Sans Pro';
/* 478  */         font-weight: 900;                        
/* 479  */         color: #222;            
/* 480  */     }
/* 481  */ 
/* 482  */     .logo a img { display: block; width: 500px; height: 91px; }
/* 483  */ 
/* 484  */     .logo a:hover { text-decoration: none; }
/* 485  */ 
/* 486  */ 
/* 487  */ .icy-donate-btn a {
/* 488  */     background: #ADC671 repeat; 
/* 489  */     min-height: 100% !important;
/* 490  */     display: block;
/* 491  */     color: #fff;
/* 492  */     font-weight: 200;
/* 493  */     font-family: 'Source Sans Pro', Helvetica, Arial;
/* 494  */     font-size: 24px;
/* 495  */     padding: 42px 20px;
/* 496  */     width: auto;
/* 497  */     float: right;
/* 498  */ }
/* 499  */ 
/* 500  */ .icy-donate-btn a:hover,

/* style.css */

/* 501  */ .icy-blog-widget .entry-meta a:hover,
/* 502  */ ul.posts-list .entry-meta a:hover {
/* 503  */   color: #fff !important;
/* 504  */ }
/* 505  */ 
/* 506  */ 
/* 507  */ /*--------------------------------------------------------------------------------------------------
/* 508  *|     4.  Navigation
/* 509  *| --------------------------------------------------------------------------------------------------*/
/* 510  */ 
/* 511  */ #topNav {
/* 512  */     z-index: -1;
/* 513  */     -webkit-box-shadow: inset 0 -1px 2px rgba(0,0,0,.15), inset 0 1px 2px rgba(0,0,0,.15);
/* 514  */     -moz-box-shadow: inset 0 -1px 2px rgba(0,0,0,.15), inset 0 1px 2px rgba(0,0,0,.15);
/* 515  */     box-shadow: inset 0 -1px 2px rgba(0,0,0,.15), inset 0 1px 2px rgba(0,0,0,.15); 
/* 516  */ }
/* 517  */ 
/* 518  */ nav {
/* 519  */     font-size: 24px;
/* 520  */     font-family: 'Source Sans Pro', Helvetica , Arial, Sans;
/* 521  */     font-weight: 700;    
/* 522  */     display: block;
/* 523  */     position: relative;
/* 524  */ }
/* 525  */ 
/* 526  */ 
/* 527  */ #hello-bar select {
/* 528  */     display: inline-block;
/* 529  */     background: #f1f2f3;
/* 530  */     color: #666;
/* 531  */     padding: 5px;
/* 532  */     border: 1px solid #ddd;
/* 533  */     text-align: center;
/* 534  */     margin: 0 auto;
/* 535  */     margin-top: 20px;
/* 536  */     margin-bottom: 20px;
/* 537  */ }
/* 538  */ #hello-bar .styled-select { text-align: center;}
/* 539  */ #hello-bar .styled-select select {
/* 540  */     width: 41.5%;
/* 541  */     min-width: 280px;
/* 542  */ 
/* 543  */     background-position: center right;
/* 544  */     background-repeat: no-repeat; 
/* 545  */ 
/* 546  */     text-align: center;
/* 547  */ 
/* 548  */     -webkit-appearance: none;
/* 549  */     -moz-border-radius: 0px;
/* 550  */     -webkit-border-radius: 0px;

/* style.css */

/* 551  */     border-radius: 0px;
/* 552  */ }
/* 553  */ 
/* 554  */     nav ul li:first-child span,
/* 555  */     nav ul ul span { display: none }
/* 556  */ 
/* 557  */     nav ul {
/* 558  */         margin: 0;
/* 559  */         padding: 0;
/* 560  */         list-style: none;
/* 561  */         line-height: 50px;
/* 562  */         float: left;
/* 563  */     }
/* 564  */ 
/* 565  */         nav ul a {
/* 566  */             display: inline;
/* 567  */             position: relative;
/* 568  */         }
/* 569  */ 
/* 570  */         nav ul li {
/* 571  */             float: left;
/* 572  */             display: inline-block;
/* 573  */             margin: 0;
/* 574  */             position: relative;
/* 575  */             z-index: 1;
/* 576  */             list-style: none;
/* 577  */             letter-spacing: 0px;
/* 578  */         }
/* 579  */ 
/* 580  */         nav ul li span { font-weight: bold; font-size: 12px; letter-spacing: -2px;}
/* 581  */ 
/* 582  */         nav ul li:hover {
/* 583  */             visibility: inherit;
/* 584  */         }
/* 585  */ 
/* 586  */         nav ul ul {
/* 587  */             position: absolute;
/* 588  */             top: -9999em;
/* 589  */             width: 160px;
/* 590  */             line-height: 20px; 
/* 591  */         }
/* 592  */ 
/* 593  */         nav ul ul li { width: 100% }
/* 594  */ 
/* 595  */         nav ul li:hover ul,
/* 596  */         nav ul li.sfHover ul {
/* 597  */             left: 0px;
/* 598  */             top: 50px; 
/* 599  */             z-index: 100;
/* 600  */             overflow: hidden;

/* style.css */

/* 601  */         }
/* 602  */ 
/* 603  */         nav ul a {            
/* 604  */             line-height: 28px;
/* 605  */             transition: all ease-in-out .4s;
/* 606  */             -webkit-transition: all ease-in-out .4s;
/* 607  */             -moz-transition: all ease-in-out .4s;
/* 608  */             -o-transition: all ease-in-out .4s;
/* 609  */         }
/* 610  */ 
/* 611  */         nav ul a:hover {
/* 612  */             color: #efefef;
/* 613  */             text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
/* 614  */         }
/* 615  */ 
/* 616  */         nav ul li a { 
/* 617  */             color: #fff;
/* 618  */             padding: 5px 18px;
/* 619  */             text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
/* 620  */         }
/* 621  */         
/* 622  */         nav ul ul li:first-child a {
/* 623  */             padding-left: 10px !important;
/* 624  */         }
/* 625  */ 
/* 626  */         nav ul li:hover li ul,
/* 627  */         nav ul li.sfHover li ul,
/* 628  */         nav ul li li:hover li ul,
/* 629  */         nav ul li li.sfHover li ul,
/* 630  */         nav ul li li li:hover li ul,
/* 631  */         nav ul li li li.sfHover li ul { top: -9999em }
/* 632  */ 
/* 633  */         nav ul li li:hover ul,
/* 634  */         nav ul li li.sfHover ul,
/* 635  */         nav ul li li li:hover ul,
/* 636  */         nav ul li li li.sfHover ul,
/* 637  */         nav ul li li li li:hover ul,
/* 638  */         nav ul li li li li.sfHover ul {
/* 639  */             left: 155px; 
/* 640  */             top:0;
/* 641  */         }
/* 642  */ 
/* 643  */         nav ul a:hover,
/* 644  */         nav ul li.current-cat a,
/* 645  */         nav ul li.current_page_item a,
/* 646  */         nav ul li.sfHover a,
/* 647  */         nav ul li.current-menu-item a { 
/* 648  */             color: #efefef;
/* 649  */             text-decoration: none 
/* 650  */         }

/* style.css */

/* 651  */ 
/* 652  */         nav ul ul {
/* 653  */             padding: 0 0 0 0;
/* 654  */             background: #f3f3f3;
/* 655  */             background-image: inherit;
/* 656  */             
/* 657  */             
/* 658  */             box-shadow: inset 0 -2px 2px rgba(0, 0, 0, 0.15);
/* 659  */                 
/* 660  */         }
/* 661  */ 
/* 662  */             nav ul ul li {                                
/* 663  */                 padding: 0 10px;
/* 664  */                 line-height: 50px;                                                              
/* 665  */                 font-size: 16px;                
/* 666  */                 font-weight: normal;
/* 667  */                 letter-spacing: 0px;
/* 668  */                 border-bottom: 1px dashed rgba(255, 255, 255, 0.75);
/* 669  */             }
/* 670  */ 
/* 671  */             nav ul ul li:last-child { border-bottom: none }
/* 672  */ 
/* 673  */             nav ul li ul li a {
/* 674  */                 font-size: 16px;
/* 675  */                 color: #000000 !important;                
/* 676  */                 padding: 15px 10px;
/* 677  */             }
/* 678  */ 
/* 679  */ .nav-prev {float: left;}
/* 680  */ .nav-next {float: right;}
/* 681  */ 
/* 682  */ .navigation-posts {
/* 683  */     overflow: hidden;
/* 684  */     background: #f6f5f4;
/* 685  */     padding: 10px;
/* 686  */     margin: 10px 0;
/* 687  */ }
/* 688  */ 
/* 689  */ .navigation-posts a {
/* 690  */     color: #666;
/* 691  */     font-weight: 300;
/* 692  */     font-family: 'Source Sans Pro', Arial, sans-serif;
/* 693  */     font-size: 14px;
/* 694  */ }
/* 695  */ 
/* 696  */ .navigation-posts a:hover { 
/* 697  */     color: #ADC671;
/* 698  */ }
/* 699  */ 
/* 700  */ 

/* style.css */

/* 701  */ /*--------------------------------------------------------------------------------------------------
/* 702  *|     5.  Content Styling
/* 703  *| --------------------------------------------------------------------------------------------------*/
/* 704  */ 
/* 705  */ /*--------------------------*
/* 706  *| /*  WordPress Styles
/* 707  *| /*--------------------------*/
/* 708  */ .aligncenter{ display:block;  margin:0 auto}
/* 709  */ .alignright{ float:right;  margin:10px 0 10px 10px}
/* 710  */ .alignleft{ float:left;  margin:10px 10px 10px 0}
/* 711  */ .floatleft{ float:left}
/* 712  */ .floatright{ float:right}
/* 713  */ .textcenter{ text-align:center}
/* 714  */ .textright{ text-align:right}
/* 715  */ .textleft{ text-align:left}
/* 716  */ .wp-caption{ border:1px solid #ddd;  text-align:center;  background-color:#f3f3f3;  padding-top:4px;  margin:10px;  -moz-border-radius:3px;  -khtml-border-radius:3px;  -webkit-border-radius:3px;  border-radius:3px}
/* 717  */ .wp-caption img{ margin:0;  padding:0;  border:0 none}
/* 718  */ .wp-caption p.wp-caption-text{font-size:11px;  line-height:17px;  padding:0 4px 5px;  margin:0}
/* 719  */ 
/* 720  */ /* Wrapper div for the entire comment form. */
/* 721  */ div#respond { clear: both; }
/* 722  */ 
/* 723  */ /* Reply title. */
/* 724  */ h3#reply-title { }
/* 725  */ 
/* 726  */ /* Cancel comment link. */
/* 727  */ h3#reply-title small { }
/* 728  */ 
/* 729  */ /* The comment form. */
/* 730  */ form#commentform { }
/* 731  */ 
/* 732  */ /* Comment author field. */
/* 733  */ p.comment-form-author { }
/* 734  */ p.comment-form-author label { display: none; }
/* 735  */ p.comment-form-author input#author { }
/* 736  */ 
/* 737  */ /* Comment email field. */
/* 738  */ p.comment-form-email { }
/* 739  */ p.comment-form-email label { display: none; }
/* 740  */ p.comment-form-email input#email { }
/* 741  */ 
/* 742  */ /* Comment URL field. */
/* 743  */ p.comment-form-url { }
/* 744  */ p.comment-form-url label { display: none; }
/* 745  */ p.comment-form-url input#url { }
/* 746  */ 
/* 747  */ /* Required (*) text. */
/* 748  */ span.required { display: none; }
/* 749  */ 
/* 750  */ /* Comment form text. */

/* style.css */

/* 751  */ p.comment-form-comment { }
/* 752  */ p.comment-form-comment label { display: none; }
/* 753  */ p.comment-form-comment textarea#comment { }
/* 754  */ 
/* 755  */ /* Must log in paragraph. */
/* 756  */ p.must-log-in { }
/* 757  */ 
/* 758  */ /* Logged in paragraph. */
/* 759  */ p.logged-in-as { }
/* 760  */ 
/* 761  */ /* Comment notes paragraph. */
/* 762  */ p.comment-notes { }
/* 763  */ 
/* 764  */ /* Allowed tags paragraph. */
/* 765  */ p.form-allowed-tags { }
/* 766  */ p.form-allowed-tags code { }
/* 767  */ 
/* 768  */ /* Paragraph that wraps the submit button and hidden comment ID fields. */
/* 769  */ p.form-submit { }
/* 770  */ 
/* 771  */ /* Submit button. */
/* 772  */ input#submit { }
/* 773  */ .wp-smiley{margin:0 !important; max-height:1em}
/* 774  */ 
/* 775  */ blockquote.left{margin-right:20px; text-align:right; margin-left:0; width:33%; float:left}
/* 776  */ blockquote.right{margin-left:20px; text-align:left; margin-right:0; width:33%; float:right}
/* 777  */ 
/* 778  */ address{font-style:italic}abbr[title],acronym[title]{cursor:help}strong{font-weight:bold}em,cite{font-style:italic}sup{font-size:11px;vertical-align:top}sub{font-size:11px;vertical-align:bottom}caption{text-align:left}small{font-size:10px}code,pre{font:12px/18px Courier, "Courier New", monospace}pre{white-space:pre;line-height:18px;font-size:11px;clear:both;overflow:auto;padding:0 10px}thead tr th{font-size:1em}button{
/* 779  */     padding: 2px 10px;cursor: pointer;}
/* 780  */ 
/* 781  */ table {
/* 782  */     width: 100%;
/* 783  */     padding: 0;
/* 784  */     margin: 0 0 20px 0;
/* 785  */     font-size: 11px;
/* 786  */ }
/* 787  */ 
/* 788  */ table caption {
/* 789  */     padding: 0 0 5px 0;
/* 790  */     width: auto;     
/* 791  */     font-style:italic;
/* 792  */     text-align: right;
/* 793  */ }
/* 794  */ 
/* 795  */ th {
/* 796  */     font-weight:bold;
/* 797  */     line-height: 1.5em;
/* 798  */     text-transform: uppercase;
/* 799  */     text-align: left;
/* 800  */ }

/* style.css */

/* 801  */ 
/* 802  */ td {
/* 803  */     font-size: 12px;
/* 804  */     padding: 6px 6px 6px 12px;
/* 805  */ }
/* 806  */ 
/* 807  */ tr th:first-child, tr td:first-child{ }
/* 808  */ 
/* 809  */ 
/* 810  */ h1,
/* 811  */ h2,
/* 812  */ h3,
/* 813  */ h4,
/* 814  */ h5,
/* 815  */ h6 {
/* 816  */     font-weight: 700;
/* 817  */     -webkit-font-smoothing: antialiased;
/* 818  */     font-family: 'Source Sans Pro', Helvetica, Arial;
/* 819  */     color: #444;
/* 820  */ }
/* 821  */ 
/* 822  */ h1 {
/* 823  */     font-size: 42px;
/* 824  */     line-height: 64px;
/* 825  */ }
/* 826  */ 
/* 827  */ h2 {
/* 828  */     font-size: 32px;
/* 829  */     line-height: 48px;
/* 830  */ }
/* 831  */ 
/* 832  */ h3 {
/* 833  */     font-size: 24px;
/* 834  */     line-height: 36px;
/* 835  */ }
/* 836  */ 
/* 837  */ h4 {
/* 838  */     font-size: 18px;
/* 839  */     line-height: 26px;
/* 840  */ }
/* 841  */ 
/* 842  */ h5 {
/* 843  */     font-size: 14px;
/* 844  */     line-height: 21px;
/* 845  */ }
/* 846  */ 
/* 847  */ h6 {
/* 848  */     font-size: 12px;
/* 849  */     line-height: 18px;
/* 850  */ }

/* style.css */

/* 851  */ 
/* 852  */ blockquote {
/* 853  */     border-left: 3px solid #ADC671;
/* 854  */     margin: 30px;
/* 855  */     padding: 2.5% 5% 2.5% 5%;
/* 856  */     font-family: 'Source Sans Pro', Georgia, Serif;
/* 857  */     font-style: italic;
/* 858  */     font-weight: 400;
/* 859  */     position: relative;
/* 860  */     font-size: 18px;
/* 861  */     line-height: 1.3em;
/* 862  */ 
/* 863  */     color: #999;
/* 864  */      
/* 865  */ }
/* 866  */ 
/* 867  */ blockquote p {
/* 868  */     margin-bottom: 0;
/* 869  */ }
/* 870  */ 
/* 871  */ .post-type .blockquote:before {
/* 872  */     content: ",, ";
/* 873  */     letter-spacing: -8px;
/* 874  */     font-size: xx-large;
/* 875  */     font-weight: bold;
/* 876  */ 
/* 877  */     color: #fff;
/* 878  */ 
/* 879  */     font-size: 150px;
/* 880  */     position: absolute;
/* 881  */     font-style: italic;
/* 882  */     bottom: 55px;
/* 883  */     left: 15px;
/* 884  */ }
/* 885  */ 
/* 886  */ .post-type .blockquote:after {
/* 887  */     content: "“ ";
/* 888  */     font-size: xx-large;
/* 889  */     font-weight: bold;
/* 890  */ 
/* 891  */     color: #fff;
/* 892  */ 
/* 893  */     font-size: 150px;
/* 894  */     position: absolute;
/* 895  */     font-style: italic;
/* 896  */     top: 25px;
/* 897  */     right: 15px;
/* 898  */ }
/* 899  */ 
/* 900  */ input {

/* style.css */

/* 901  */     height: 40px;
/* 902  */ }
/* 903  */ 
/* 904  */ .ie input {
/* 905  */     height: 30px;
/* 906  */ }
/* 907  */ 
/* 908  */ .ie .widget_wp_email_capture_widget_class #wp_email_capture input[type="text"] {
/* 909  */     width: 40%;
/* 910  */     height: 30px;
/* 911  */ }
/* 912  */ 
/* 913  */ .ie .widget_wp_email_capture_widget_class #wp_email_capture input[type="submit"] {
/* 914  */     height: 50px;
/* 915  */ }
/* 916  */ 
/* 917  */ input,
/* 918  */ textarea {
/* 919  */     color: #666;    
/* 920  */     background: #f5f5f5;
/* 921  */     width: 50%;
/* 922  */     padding: 10px;
/* 923  */     font-size: 16px;
/* 924  */     line-height: 25px;
/* 925  */     -moz-box-sizing: border-box;
/* 926  */     -webkit-box-sizing: border-box;
/* 927  */     -o-box-sizing: border-box;
/* 928  */     font-weight: 400;
/* 929  */ }
/* 930  */ 
/* 931  */ /*--------------------------------------------------------------------------------------------------
/* 932  *|     5.a.  Main Content Styling
/* 933  *| --------------------------------------------------------------------------------------------------*/
/* 934  */ 
/* 935  */ #primary { background: #fff; padding-bottom: 30px;}
/* 936  */ 
/* 937  */ .main-content {
/* 938  */     float:left !important;
/* 939  */     margin-top: 30px;
/* 940  */     margin-left: 2.127659574%;
/* 941  */ }
/* 942  */ 
/* 943  */ .page-template-template-home-php .main-content { margin-top: 0;}
/* 944  */ 
/* 945  */ .entry-content ul:not(.zilla-nav),
/* 946  */ .entry-content ul:not(.slides),
/* 947  */ .entry-content ol {
/* 948  */     width: auto;
/* 949  */     padding-left: 6%;
/* 950  */     margin-bottom: 20px;

/* style.css */

/* 951  */ }
/* 952  */ 
/* 953  */ .flexslider ul { padding-left: 0 !important;}
/* 954  */ 
/* 955  */ .main-content .entry-content ul { list-style-type: square; }
/* 956  */ .main-content .entry-content ol { list-style-type: decimal; }
/* 957  */ 
/* 958  */ img.alignleft {
/* 959  */     float: left;
/* 960  */     margin: 10px 25px 20px 0;
/* 961  */ }
/* 962  */ 
/* 963  */ img.alignright {
/* 964  */     display: block;
/* 965  */     margin: 10px 0 25px 20px;
/* 966  */ }
/* 967  */ 
/* 968  */ img.aligncenter {
/* 969  */     margin-left: auto;
/* 970  */     margin-right: auto;
/* 971  */     display: block;
/* 972  */     clear: both;
/* 973  */     margin-top: 5px;
/* 974  */ }
/* 975  */ 
/* 976  */ embed,
/* 977  */ object,
/* 978  */ iframe {
/* 979  */     max-width: 100%;
/* 980  */ }
/* 981  */ 
/* 982  */ .icy_video .video-post iframe {
/* 983  */     display: block;
/* 984  */     min-height: 300px;
/* 985  */ }
/* 986  */ 
/* 987  */ .icy_video {
/* 988  */     box-sizing: border-box;
/* 989  */     -moz-box-sizing: border-box;
/* 990  */     -webkit-box-sizing: border-box;    
/* 991  */ }
/* 992  */ 
/* 993  */ .icy_video .video-post p {
/* 994  */     display: none;
/* 995  */ }
/* 996  */ 
/* 997  */ .wp-caption {
/* 998  */     text-align: center;
/* 999  */     margin: 10px 20px 20px 20px;
/* 1000 */     font-family: "Source Sans Pro", Georgia, serif;

/* style.css */

/* 1001 */     font-style: italic;
/* 1002 */ }
/* 1003 */ 
/* 1004 */ .wp-caption img,
/* 1005 */ .wp-caption img a {
/* 1006 */     margin: 0;
/* 1007 */     padding: 0;
/* 1008 */     border: 0 none;
/* 1009 */ }
/* 1010 */ 
/* 1011 */ .wp-caption
/* 1012 */ .wp-caption-text {
/* 1013 */     margin: 0;
/* 1014 */     padding: 5px;
/* 1015 */ }
/* 1016 */ 
/* 1017 */ .wp-caption{margin-top:0.4em;}.wp-caption{background:#ddd;margin-bottom:1.625em;max-width:96%;padding:9px;}.wp-caption img{display:block;margin:0 auto;max-width:98%;}.wp-caption .wp-caption-text,
/* 1018 */ .gallery-caption{color:#666;font-family:Georgia, serif;font-size:12px;}.wp-caption .wp-caption-text{margin-bottom:0.6em;padding:10px 0 5px 40px;position:relative;}.wp-caption .wp-caption-text:before{color:#666;content:'\2014';font-size:14px;font-style:normal;font-weight:bold;margin-right:5px;position:absolute;left:10px;top:7px;}#content .gallery{margin:0 auto 1.625em;}#content .gallery a img{border:none;}img#wpstats{display:block;margin:0 auto 1.625em;}#content .gallery-columns-4 .gallery-item{width:23%;padding-right:2%;}#content .gallery-columns-4 .gallery-item img{width:100%;height:auto;}#content .gallery .gallery-icon img{border:1px solid #e2e2e2;padding:6px; background: #fff;}.wp-caption img{border-color:#ddd;}a:focus img[class*="align"],
/* 1019 */ a:hover img[class*="align"],
/* 1020 */ a:active img[class*="align"],
/* 1021 */ a:focus img[class*="wp-image-"],
/* 1022 */ a:hover img[class*="wp-image-"],
/* 1023 */ a:active img[class*="wp-image-"],
/* 1024 */ #content .gallery .gallery-icon a:focus img,
/* 1025 */ #content .gallery .gallery-icon a:hover img,
/* 1026 */ #content .gallery .gallery-icon a:active img{background:#fff;border-color:#e2e2e2;}.wp-caption a:focus img,
/* 1027 */ .wp-caption a:active img,
/* 1028 */ .wp-caption a:hover img{background:#fff;border-color:#e2e2e2;}
/* 1029 */ 
/* 1030 */ #submit { cursor: pointer; margin: 0 0 0px 0; }
/* 1031 */ 
/* 1032 */ /*--------------------------------------------------------------------------------------------------
/* 1033 *|     5.b.  Sidebar Styling
/* 1034 *| --------------------------------------------------------------------------------------------------*/
/* 1035 */ 
/* 1036 */ aside.sidebar {
/* 1037 */     float: left;        
/* 1038 */     font-family: 'Source Sans Pro', Arial, sans-serif;
/* 1039 */ 
/* 1040 */     margin-top: 0px;
/* 1041 */ }
/* 1042 */ 
/* 1043 */ aside #s,
/* 1044 */ .icy-header-search input {
/* 1045 */     margin-bottom: 0;
/* 1046 */     width: 100px;
/* 1047 */     padding-left: 50px;
/* 1048 */     padding-top: 10px;
/* 1049 */     color: #999;
/* 1050 */     transition: all .3s ease;

/* style.css */

/* 1051 */     -webkit-transition: all .3s ease;
/* 1052 */     -moz-transition: all .3s ease;
/* 1053 */     -o-transition: all .3s ease;
/* 1054 */     position: relative;
/* 1055 */ }
/* 1056 */ 
/* 1057 */ aside #searchform {
/* 1058 */     position: relative;
/* 1059 */ }
/* 1060 */ 
/* 1061 */ aside #searchform i {
/* 1062 */     position: absolute;
/* 1063 */     font-size: 24px;
/* 1064 */     left: 10px;
/* 1065 */     top: 8px;
/* 1066 */     color: #999;
/* 1067 */ }
/* 1068 */ 
/* 1069 */ aside #s:focus,
/* 1070 */ .icy-header-search input:focus {
/* 1071 */     width: 200px;
/* 1072 */     outline: none;
/* 1073 */ }
/* 1074 */ 
/* 1075 */ .icy-header-search {
/* 1076 */ 
/* 1077 */     position: absolute;
/* 1078 */     right: 120px;
/* 1079 */     float: right;
/* 1080 */     padding: 34px 30px;
/* 1081 */ }
/* 1082 */ 
/* 1083 */ .icy-header-search #searchform {
/* 1084 */     text-align: right;
/* 1085 */     float: right;
/* 1086 */     position: relative;
/* 1087 */ }
/* 1088 */ 
/* 1089 */ .icy-header-search input { width: 100px; padding-right: 40px !important; padding-left: 20px !important;}
/* 1090 */ 
/* 1091 */ .icy-header-search i {
/* 1092 */     position: absolute;
/* 1093 */     font-size: 24px;
/* 1094 */     right: 10px;
/* 1095 */     top: 8px;
/* 1096 */     color: #999;
/* 1097 */ }
/* 1098 */ 
/* 1099 */ .sidebar-left section.main-content {
/* 1100 */   float: right !important;

/* style.css */

/* 1101 */ }
/* 1102 */ 
/* 1103 */ .sidebar-left aside.sidebar {
/* 1104 */   float: left !important;
/* 1105 */   margin-left: 0 !important;
/* 1106 */ }
/* 1107 */ 
/* 1108 */ .sidebar-left .widget-separator { float: left; clear: both;}
/* 1109 */ 
/* 1110 */ .sidebar-left .widget-title { text-align: left; }
/* 1111 */ .sidebar-left .widget { text-align: left; }
/* 1112 */ 
/* 1113 */ /*--------------------------------------------------------------------------------------------------
/* 1114 *|     6.  Post Styling
/* 1115 *| --------------------------------------------------------------------------------------------------*/
/* 1116 */ 
/* 1117 */ .post {
/* 1118 */     overflow: hidden;
/* 1119 */     list-style-type: none;
/* 1120 */ }
/* 1121 */ 
/* 1122 */ .entry-title,
/* 1123 */ .more-link {
/* 1124 */     cursor: pointer;
/* 1125 */ }
/* 1126 */ 
/* 1127 */ li.post:last-child hr {
/* 1128 */     display: none;
/* 1129 */ } 
/* 1130 */ 
/* 1131 */ .entry-title {
/* 1132 */     line-height: 1em;
/* 1133 */     margin-left: 0 !important;
/* 1134 */     margin-bottom: 20px !important;
/* 1135 */ }
/* 1136 */ 
/* 1137 */ .entry-title a { 
/* 1138 */     color: #494949;
/* 1139 */     line-height: 1.3em;
/* 1140 */ }
/* 1141 */ 
/* 1142 */ .entry-title a:hover {
/* 1143 */     color: #222;
/* 1144 */ }
/* 1145 */ 
/* 1146 */ .small-entry-title { 
/* 1147 */   font-size: 26px; 
/* 1148 */   line-height: 32px;
/* 1149 */   margin: 0px 0 15px 0; 
/* 1150 */   color: #444;

/* style.css */

/* 1151 */ }
/* 1152 */ 
/* 1153 */ .small-entry-title a { color: #444; }
/* 1154 */ .small-entry-title a:hover { color: #ADC671;}
/* 1155 */ 
/* 1156 */ .entry-meta {
/* 1157 */ 
/* 1158 */     clear: both;
/* 1159 */     font-size: 13px;
/* 1160 */     line-height: 16px;
/* 1161 */     font-family: 'Source Sans Pro', Arial, sans-serif;
/* 1162 */     vertical-align: middle;
/* 1163 */     font-weight: 300;
/* 1164 */     color: #999;
/* 1165 */ }
/* 1166 */ 
/* 1167 */ .entry-meta a {
/* 1168 */     color: #999;
/* 1169 */ }
/* 1170 */ 
/* 1171 */ .icy-meta-data {
/* 1172 */     margin-bottom: 20px;
/* 1173 */ }
/* 1174 */ 
/* 1175 */ .entry-content ul { list-style-type: disc; }
/* 1176 */ 
/* 1177 */ .entry-content ol { list-style-type: decimal }
/* 1178 */ 
/* 1179 */ .entry-content .the-content {
/* 1180 */     margin-left: 0 !important;
/* 1181 */     overflow: hidden;
/* 1182 */     clear: both;
/* 1183 */ }
/* 1184 */ 
/* 1185 */ .post-thumb {
/* 1186 */     margin-bottom: 0px;
/* 1187 */ }
/* 1188 */ 
/* 1189 */ .post-thumb a:hover {
/* 1190 */     border-bottom-color: transparent;
/* 1191 */ }
/* 1192 */ 
/* 1193 */ img {
/* 1194 */     max-width: 100%;
/* 1195 */     height: auto;
/* 1196 */ }
/* 1197 */ 
/* 1198 */ .container.single-post { margin-top: 30px; }
/* 1199 */ 
/* 1200 */ .share-post {

/* style.css */

/* 1201 */     padding: 10px 20px;
/* 1202 */     text-align: center;
/* 1203 */     color: #ededed;
/* 1204 */     font-weight: 300;
/* 1205 */ }
/* 1206 */ 
/* 1207 */ .share-post a {
/* 1208 */     color: #000000;
/* 1209 */ }
/* 1210 */ 
/* 1211 */ .post-media { 
/* 1212 */   margin-bottom: 20px;
/* 1213 */ }
/* 1214 */ 
/* 1215 */ .format-gallery .post-media { margin-bottom: 0px; }
/* 1216 */ 
/* 1217 */ 
/* 1218 */ /*--------------------------------------------------------------------------------------------------
/* 1219 *|     7.  Comments Styling                                
/* 1220 *| --------------------------------------------------------------------------------------------------*/
/* 1221 */ 
/* 1222 */ .comments-container {
/* 1223 */     margin-left: 0 !important;
/* 1224 */     margin-top: 50px;
/* 1225 */ 
/* 1226 */     padding: 0 20px;
/* 1227 */ 
/* 1228 */     box-sizing: border-box;
/* 1229 */     -moz-box-sizing: border-box;
/* 1230 */     -webkit-box-sizing: border-box;
/* 1231 */ 
/* 1232 */     background: #f9f9f9;
/* 1233 */ }
/* 1234 */ 
/* 1235 */ .comments-message { 
/* 1236 */     margin-bottom: 40px;
/* 1237 */     padding: 20px;
/* 1238 */     color: #fff;
/* 1239 */     font-style: normal;
/* 1240 */     font-weight: 300;
/* 1241 */     font-family: 'Source Sans Pro', Georgia, Serif; 
/* 1242 */     font-size: 24px;
/* 1243 */     text-align: center;
/* 1244 */     background: #ADC671;
/* 1245 */ 
/* 1246 */     margin: 0 -20px;
/* 1247 */ }
/* 1248 */ 
/* 1249 */ .commentaries-border {
/* 1250 */     margin-left: 0 !important;

/* style.css */

/* 1251 */     margin-top: 20px;
/* 1252 */ }
/* 1253 */ 
/* 1254 */ .list-of-comments {
/* 1255 */     float: left;
/* 1256 */     list-style-type: none;
/* 1257 */     width: 100%;
/* 1258 */ }
/* 1259 */ 
/* 1260 */ .list-of-comments .comment-entry p { margin-bottom: 0 !important; }
/* 1261 */ .list-of-comments ul { margin-left: 40px; }
/* 1262 */ .list-of-comments ul ul { margin-left: 40px; margin-top: 0px; }
/* 1263 */ .list-of-comments li #comments-form { margin-top: 20px; margin-bottom: 20px; }
/* 1264 */ .list-of-comments li .respond { padding-top: 5px }
/* 1265 */ 
/* 1266 */ .comment-content { 
/* 1267 */     margin-bottom: 20px;
/* 1268 */     overflow: hidden;
/* 1269 */     position: relative;
/* 1270 */ }
/* 1271 */ 
/* 1272 */ 
/* 1273 */ .comment { margin: 0; margin-bottom: 20px; }
/* 1274 */ 
/* 1275 */ .pinglist {
/* 1276 */     margin: 20px 0 40px 40px;
/* 1277 */     list-style-type: decimal;
/* 1278 */ }
/* 1279 */ 
/* 1280 */ .children { list-style-type: none }
/* 1281 */ 
/* 1282 */ #comments-form {
/* 1283 */     margin-top: 0px;
/* 1284 */     float: left;
/* 1285 */     padding-bottom: 30px;
/* 1286 */ }
/* 1287 */ 
/* 1288 */ #comments-form input {
/* 1289 */     margin-right: 20px;
/* 1290 */     margin-left: 0;
/* 1291 */     width: auto;
/* 1292 */ }
/* 1293 */ 
/* 1294 */ #comments-form textarea { width: 85% }
/* 1295 */ 
/* 1296 */ .list-of-comments .avatar {
/* 1297 */     position: relative;
/* 1298 */     border-radius: 50%;
/* 1299 */ }
/* 1300 */ 

/* style.css */

/* 1301 */ .list-of-comments .bypostauthor .comment-author .avatar {
/* 1302 */ }
/* 1303 */ 
/* 1304 */ .comment-meta {
/* 1305 */     position: absolute; 
/* 1306 */     top: 10px;
/* 1307 */     right: 0;
/* 1308 */     color: #ccc;
/* 1309 */ }
/* 1310 */ 
/* 1311 */     .comment-meta a {
/* 1312 */         font-family: 'Source Sans Pro', Arial, sans-serif;
/* 1313 */         color: #ccc;
/* 1314 */         font-weight: 100;
/* 1315 */     }
/* 1316 */ 
/* 1317 */     .comment-meta a:hover { color: #777 }
/* 1318 */ 
/* 1319 */ .says { display: none }    
/* 1320 */ 
/* 1321 */ .comment-author-admin { background-color: #f9f9f9; }
/* 1322 */ 
/* 1323 */ .comment-author,
/* 1324 */ .comment-meta { padding-left: 0px; }
/* 1325 */ 
/* 1326 */ .comment-author {
/* 1327 */     position: relative;
/* 1328 */     font-size: 24px;
/* 1329 */     font-weight: bold; 
/* 1330 */     font-family: 'Source Sans Pro', Georgia, Serif;
/* 1331 */ }
/* 1332 */ 
/* 1333 */ .comment-author figure {
/* 1334 */     float: left;
/* 1335 */     display: inline-block;
/* 1336 */ }
/* 1337 */ 
/* 1338 */ .comment-author span {
/* 1339 */     margin-left: 20px;
/* 1340 */ }
/* 1341 */ .comment-author cite { font-style: normal;
/* 1342 */     display: inline-block;
/* 1343 */     margin-top: 10px;
/* 1344 */     color: #777;
/* 1345 */  }
/* 1346 */ 
/* 1347 */ .comment-entry ul,
/* 1348 */ .comment-entry ol,
/* 1349 */ .comment-entry dl { margin-left: 20px }
/* 1350 */ 

/* style.css */

/* 1351 */ ol .comments-form { width: 100% }
/* 1352 */ 
/* 1353 */ .nocomments {
/* 1354 */     text-align: left;
/* 1355 */     padding: 20px;
/* 1356 */ }
/* 1357 */ 
/* 1358 */ .moderation {
/* 1359 */     padding-left: 0px;
/* 1360 */     color: #999;
/* 1361 */     font-size: 11px;
/* 1362 */ }
/* 1363 */ 
/* 1364 */ .comment-entry ul {
/* 1365 */     list-style-type: disc;
/* 1366 */     margin-bottom: 20px;
/* 1367 */ }
/* 1368 */ 
/* 1369 */ .comment-entry { 
/* 1370 */     background: #fff;
/* 1371 */     margin-left: 0 !important;
/* 1372 */     border: 1px solid #f1f2f3;
/* 1373 */     color: #777;
/* 1374 */     font-size: 16px;
/* 1375 */     line-height: 24px;
/* 1376 */     padding: 30px 30px 30px 30px;
/* 1377 */     margin-top: 12px;
/* 1378 */     position: relative;
/* 1379 */ }
/* 1380 */ 
/* 1381 */ span.reply-to a {
/* 1382 */     position: absolute;
/* 1383 */     bottom: 0;
/* 1384 */     right: 0;
/* 1385 */     font-family: 'Source Sans Pro';
/* 1386 */     font-size: 14px;
/* 1387 */     line-height: 14px;
/* 1388 */     text-transform: uppercase;
/* 1389 */     font-weight: 300;
/* 1390 */     color: #fff;
/* 1391 */     padding: 7px 10px;
/* 1392 */     background: #222;
/* 1393 */     color: #fff;
/* 1394 */     border-radius: 2px 0 2px 0;
/* 1395 */ }
/* 1396 */ 
/* 1397 */ span.reply-to a:hover {
/* 1398 */     background-color: #ADC671;
/* 1399 */ }
/* 1400 */ 

/* style.css */

/* 1401 */ 
/* 1402 */ 
/* 1403 */ /*--------------------------------------------------------------------------------------------------
/* 1404 *|     8.  Pagination Styling
/* 1405 *| --------------------------------------------------------------------------------------------------*/
/* 1406 */ 
/* 1407 */ /*--------------------------------------------------------------------------------------------------
/* 1408 *|     9.  Footer Styling                                                  
/* 1409 *| --------------------------------------------------------------------------------------------------*/
/* 1410 */ 
/* 1411 */ .footer-container {     
/* 1412 */     clear: both; 
/* 1413 */     background: inherit;
/* 1414 */     padding: 10px 0;
/* 1415 */ 
/* 1416 */     color: #fff;
/* 1417 */     text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
/* 1418 */ 
/* 1419 */     box-shadow: inset 0 -1px 2px rgba(0,0,0,.15), inset 0 1px 2px rgba(0,0,0,.15);
/* 1420 */     -webkit-box-shadow: inset 0 -1px 2px rgba(0,0,0,.15), inset 0 1px 2px rgba(0,0,0,.15);
/* 1421 */     -moz-webkit-box-shadow: inset 0 -1px 2px rgba(0,0,0,.15), inset 0 1px 2px rgba(0,0,0,.15);
/* 1422 */     -o-webkit-box-shadow: inset 0 -1px 2px rgba(0,0,0,.15), inset 0 1px 2px rgba(0,0,0,.15);
/* 1423 */ }
/* 1424 */ 
/* 1425 */ footer .widget { 
/* 1426 */   margin-top: 0px; 
/* 1427 */ float: left;
/* 1428 */     text-align:left;
/* 1429 */     font-size:14px;
/* 1430 */     line-height: 21px;
/* 1431 */     margin-bottom: 0px;
/* 1432 */     margin-top: 5px;
/* 1433 */     color: #fff;
/* 1434 */     font-style: italic;
/* 1435 */ 
/* 1436 */     text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
/* 1437 */ }
/* 1438 */ 
/* 1439 */ footer .widget-title { color: #fff; }
/* 1440 */ 
/* 1441 */ footer .widget a { color: #f1f1f1; }
/* 1442 */ footer .widget a:hover { color: #f1f1f1; }
/* 1443 */ 
/* 1444 */ footer .widget-title { border-bottom: none; }
/* 1445 */ 
/* 1446 */ footer .widget ul li { border-top: 1px solid #efefef; }
/* 1447 */ 
/* 1448 */ footer .widget ul li:first-child { border-top: none; }
/* 1449 */ footer .widget ul li:last-child { margin-bottom: 0; }
/* 1450 */ 

/* style.css */

/* 1451 */ footer .copyright a {
/* 1452 */     color: #f1f1f1;
/* 1453 */     border-bottom: 1px solid #efefef;
/* 1454 */ }
/* 1455 */ 
/* 1456 */ /*--------------------------------------------------------------------------------------------------
/* 1457 *|     10. Custom Page Templates                                                   
/* 1458 *| /*------------------------------------------------------------------------------------------------*/
/* 1459 */ 
/* 1460 */ /*--------------------------------------------------------------------------------------------------
/* 1461 *|     10.a. Archives
/* 1462 *| --------------------------------------------------------------------------------------------------*/
/* 1463 */ 
/* 1464 */ .list-of-archives .children { margin-bottom: 0 }
/* 1465 */ 
/* 1466 */ .archive-list { overflow: hidden; margin-bottom: 40px;}
/* 1467 */ 
/* 1468 */ /*--------------------------------------------------------------------------------------------------
/* 1469 *|     10.b. Homepage
/* 1470 *| --------------------------------------------------------------------------------------------------*/
/* 1471 */ 
/* 1472 */ .featured-message {    
/* 1473 */     float: left;
/* 1474 */     position: relative;
/* 1475 */     display: block;
/* 1476 */     overflow: hidden;
/* 1477 */     clear: both;
/* 1478 */     /*min-height: 200px;*/
/* 1479 */     width: 100%;
/* 1480 */     margin-bottom: -10px;
/* 1481 */ }
/* 1482 */ 
/* 1483 */ /* This parent can be any width and height */
/* 1484 */ .featured-message {
/* 1485 */   text-align: center;
/* 1486 */   vertical-align: middle
/* 1487 */ }
/* 1488 */ 
/* 1489 */ /* The element to be centered, can
/* 1490 *|    also be of any width and height */ 
/* 1491 */ .featured-message .centered {
/* 1492 */     display: inline-block;
/* 1493 */     vertical-align: middle;
/* 1494 */     position: absolute;
/* 1495 */     width: 90%;
/* 1496 */     top: 50%;
/* 1497 */     left: 50%;
/* 1498 */     height: 50%;
/* 1499 */     margin-top: -50px;    
/* 1500 */     margin-left: -45%;

/* style.css */

/* 1501 */     color: #fff !important;
/* 1502 */ }
/* 1503 */ 
/* 1504 */ .featured-message .centered h1,
/* 1505 */ .featured-message .centered h3 { color: #fff; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25); }
/* 1506 */ 
/* 1507 */ .featured-message .centered h1 { font-size: 60px; line-height: 60px; font-weight: 900; letter-spacing: -5px; }
/* 1508 */ .featured-message .centered h3 { font-size: 36px; line-height: 42px; font-weight: 200; letter-spacing: -2px; }
/* 1509 */ 
/* 1510 */ img.featured-source-image {
/* 1511 */   width: 100%;
/* 1512 */   position: absolute;
/* 1513 */   top: 0;
/* 1514 */   left: 0;
/* 1515 */   z-index: -1;
/* 1516 */ }
/* 1517 */ 
/* 1518 */ /* 
/* 1519 *|   ADDED v1.0.1
/* 1520 *|   Firefox fixes 
/* 1521 *| 
/* 1522 *| 
/* 1523 *| .gecko .featured-message img {
/* 1524 *|     margin: -40px 0 !important;
/* 1525 *| }
/* 1526 *| 
/* 1527 *| .gecko .featured-message .centered { position: relative; width: 90%; height: 100%; vertical-align: middle; margin: 0; margin-top: -12.5%; left: 0; }
/* 1528 *| */
/* 1529 */ /*--------------------------------------------------------------------------------------------------
/* 1530 *|     11.  Widgets                                                                   
/* 1531 *| --------------------------------------------------------------------------------------------------*/
/* 1532 */ 
/* 1533 */ .widget-separator {
/* 1534 */     margin-top: 0px;
/* 1535 */     margin-bottom: 0px;
/* 1536 */     width: 30px;
/* 1537 */     float: left;
/* 1538 */     clear: both;
/* 1539 */ }
/* 1540 */ 
/* 1541 */ .widget-separator:last-child { display: none;}
/* 1542 */ 
/* 1543 */ .widget { 
/* 1544 */     font-size:16px;
/* 1545 */     line-height:25px;
/* 1546 */     color: #888;
/* 1547 */     float: left;
/* 1548 */     text-align: left;
/* 1549 */ }
/* 1550 */ 

/* style.css */

/* 1551 */ .widget a { color: #444; }
/* 1552 */ .widget a:hover { color: #ADC671; }
/* 1553 */ 
/* 1554 */ .widget ol {
/* 1555 */     list-style-type: decimal;
/* 1556 */     margin: 0;
/* 1557 */ }
/* 1558 */ 
/* 1559 */ .widget ul { 
/* 1560 */     margin: 0; 
/* 1561 */     list-style: none; 
/* 1562 */ }
/* 1563 */ 
/* 1564 */ .widget ul li {
/* 1565 */     font-size:16px;
/* 1566 */     line-height:30px;
/* 1567 */     color: #888;
/* 1568 */ }
/* 1569 */ 
/* 1570 */ .widget ul li:first-child { border-top: none; }
/* 1571 */ 
/* 1572 */ 
/* 1573 */ 
/* 1574 */ .widget ul li:first-child { margin:0; }
/* 1575 */ .widget ul li:last-child { border-bottom: none; margin-bottom: 0; }
/* 1576 */ 
/* 1577 */ 
/* 1578 */ .widget-title {
/* 1579 */     margin-bottom: 30px;
/* 1580 */     margin-top: 30px;
/* 1581 */     font-size: 16px;
/* 1582 */     position: relative;
/* 1583 */     display: block;
/* 1584 */     clear: both;
/* 1585 */     text-align: left;
/* 1586 */     color: #999;
/* 1587 */     font-weight: 400;
/* 1588 */     text-transform: uppercase;
/* 1589 */     letter-spacing: 5px;
/* 1590 */     line-height: 24px;
/* 1591 */ }
/* 1592 */ .widget ul li:first-child .widget-title { margin-top: 0; }
/* 1593 */ 
/* 1594 */ footer .widget-title {
/* 1595 */     color: #fff;
/* 1596 */     font-weight: 800;
/* 1597 */     text-transform: uppercase;
/* 1598 */     text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
/* 1599 */ }
/* 1600 */ 

/* style.css */

/* 1601 */ footer .widget {
/* 1602 */     font-size: 12px;
/* 1603 */ }
/* 1604 */ 
/* 1605 */ .widget p {
/* 1606 */     margin-bottom: 0px;
/* 1607 */ }
/* 1608 */ 
/* 1609 */ .widget {
/* 1610 */     width: 100%;
/* 1611 */ }
/* 1612 */ 
/* 1613 */ .sidebar .widget .item-list li {
/* 1614 */     margin: 0;
/* 1615 */ }
/* 1616 */ 
/* 1617 */ .sidebar .widget,
/* 1618 */ .homepage-widgets .widget {
/* 1619 */ }
/* 1620 */ 
/* 1621 */ .widget .widget_woothemes_testimonials,
/* 1622 */ .widget:last-child { border-bottom: none; padding-bottom: 0;}
/* 1623 */ 
/* 1624 */ 
/* 1625 */ /* calendar widget */
/* 1626 */ .widget_calendar {float: left;}
/* 1627 */ #wp-calendar {width: 100%; }
/* 1628 */ #wp-calendar caption { text-align: left; color: #333; font-size: 16px; margin-top: 10px; margin-bottom: 15px; }
/* 1629 */ #wp-calendar thead { font-size: 14px; }
/* 1630 */ #wp-calendar thead th { padding-bottom: 10px; text-align: center }
/* 1631 */ #wp-calendar tbody { color: #aaa; }
/* 1632 */ #wp-calendar tbody td { background: #f5f5f5; border: 1px solid #fff; text-align: center; padding:8px;}
/* 1633 */ #wp-calendar tbody td:hover { background: #fff; }
/* 1634 */ #wp-calendar tbody .pad { background: none; }
/* 1635 */ #wp-calendar tfoot #next { font-size: 10px; text-transform: uppercase; text-align: right; }
/* 1636 */ #wp-calendar tfoot #prev { font-size: 10px; text-transform: uppercase; padding-top: 10px; }
/* 1637 */ 
/* 1638 */ .homepage-widgets { margin-bottom: 30px; overflow: hidden}
/* 1639 */ 
/* 1640 */ .homepage-widgets .widget-title,
/* 1641 */ .main-content-widgets .widget-title,
/* 1642 */ .sidebar-widgets .widget-title {
/* 1643 */     position: relative;
/* 1644 */     display: block;
/* 1645 */     clear: both;
/* 1646 */     text-align: left;
/* 1647 */     color: #999;
/* 1648 */     font-weight: 400;
/* 1649 */     text-transform: uppercase;
/* 1650 */     letter-spacing: 5px;

/* style.css */

/* 1651 */ }
/* 1652 */ 
/* 1653 */ .icy_blog_widget article {
/* 1654 */     position: relative;
/* 1655 */     float: left;
/* 1656 */     border-bottom: 5px solid #f1f1f1;
/* 1657 */     padding-bottom: 35px;
/* 1658 */     margin-top: 40px;
/* 1659 */     width: 100%;
/* 1660 */     overflow: hidden;
/* 1661 */ }
/* 1662 */ .icy_blog_widget article:first-child { margin-top: 0; }
/* 1663 */ .icy_blog_widget article:last-child { padding-bottom: 0; border-bottom: none;}
/* 1664 */ 
/* 1665 */ .icy_video iframe {
/* 1666 */     box-sizing: border-box;
/* 1667 */     -moz-box-sizing: border-box;
/* 1668 */     -o-box-sizing: border-box;
/* 1669 */     -webkit-box-sizing: border-box;
/* 1670 */ 
/* 1671 */     margin-bottom: 20px;
/* 1672 */ }
/* 1673 */ 
/* 1674 */ #flickr-wrapper {
/* 1675 */     display: inline-block;
/* 1676 */     overflow: hidden;
/* 1677 */ }
/* 1678 */ 
/* 1679 */ .flickr_badge_image {
/* 1680 */     float: left;
/* 1681 */     width: 25%;
/* 1682 */     height: 66px;
/* 1683 */ }
/* 1684 */ 
/* 1685 */ .flickr_badge_image img {
/* 1686 */     opacity: 0.7;
/* 1687 */     -moz-opacity: 0.7;
/* 1688 */     filter:alpha(opacity=70);
/* 1689 */     -webkit-transition: opacity .7s ease-out;
/* 1690 */     -moz-transition: opacity .7s ease-out;
/* 1691 */     -o-transition: opacity .7s ease-out;
/* 1692 */     transition: opacity .7s ease-out;
/* 1693 */ }
/* 1694 */ 
/* 1695 */ .flickr_badge_image img:hover {
/* 1696 */     opacity: 1;
/* 1697 */     -moz-opacity: 1;
/* 1698 */     filter:alpha(opacity=100);
/* 1699 */ }
/* 1700 */ 

/* style.css */

/* 1701 */ .flickr_badge_image a:hover {
/* 1702 */     border-color: transparent;
/* 1703 */ }
/* 1704 */ 
/* 1705 */ .tweets li {
/* 1706 */     padding: 0 0 0 0px !important;
/* 1707 */     margin: 0 0 20px 0 !important;
/* 1708 */     border: none !important;
/* 1709 */     list-style-type: none !important;
/* 1710 */ }
/* 1711 */ 
/* 1712 */ .tweets .timesince {
/* 1713 */     display: block;
/* 1714 */     font-style: italic;
/* 1715 */     font-size:12px;
/* 1716 */     color: #999;
/* 1717 */     border: 1px solid transparent;
/* 1718 */ }
/* 1719 */ 
/* 1720 */ .tweets .timesince:hover {
/* 1721 */     border-color: transparent;
/* 1722 */ }
/* 1723 */ 
/* 1724 */ .homepage-full-width-widget { 
/* 1725 */     margin-top: 0px;
/* 1726 */     clear: both;
/* 1727 */     background: inherit;
/* 1728 */     color: #fff;
/* 1729 */     box-shadow: inset 0 -1px 3px rgba(0, 0, 0, 0.25);
/* 1730 */ }
/* 1731 */ 
/* 1732 */ .homepage-full-width-widget .widget { 
/* 1733 */     color: #fff;
/* 1734 */     text-shadow: 0 1px 0 rgba(0,0,0,0.25);
/* 1735 */ }
/* 1736 */ 
/* 1737 */ .homepage-full-width-widget .widget_wp_email_capture_widget_class {
/* 1738 */     padding: 30px 0;
/* 1739 */ 
/* 1740 */     box-sizing: border-box;
/* 1741 */     -moz-box-sizing: border-box;
/* 1742 */     -webkit-box-sizing: border-box;
/* 1743 */ }
/* 1744 */ 
/* 1745 */ .homepage-full-width-widget .widget_wp_email_capture_widget_class .widget-title, 
/* 1746 */ .widget_wp_email_capture_widget_class .wp-email-capture-name { display: none; }
/* 1747 */ .widget_wp_email_capture_widget_class label {
/* 1748 */     display: none;
/* 1749 */ }
/* 1750 */ 

/* style.css */

/* 1751 */ .widget_wp_email_capture_widget_class .textwidget { margin-top: 5px;}
/* 1752 */ 
/* 1753 */ .widget_wp_email_capture_widget_class input { border-radius: 0; margin-top: 5px;}
/* 1754 */ 
/* 1755 */ .widget_wp_email_capture_widget_class input[type="submit"] {
/* 1756 */     float: right;
/* 1757 */     background: #ADC671
/* 1758 */     color: #fff;
/* 1759 */     vertical-align: text-top;
/* 1760 */     line-height: 10px;
/* 1761 */     margin-top: 5px;
/* 1762 */ 
/* 1763 */ }
/* 1764 */ 
/* 1765 */ .homepage-full-width-widget .widget_wp_email_capture_widget_class .textwidget {
/* 1766 */     width: 74.468085099%;
/* 1767 */     display: inline-block;
/* 1768 */     float: left;
/* 1769 */     font-size: 30px;
/* 1770 */     line-height: 42px;
/* 1771 */     font-weight: 300;
/* 1772 */     text-shadow: 0 1px 3px rgba(0,0, 0, 0.15);
/* 1773 */ }
/* 1774 */ 
/* 1775 */ .homepage-full-width-widget .widget_wp_email_capture_widget_class #wp_email_capture {
/* 1776 */     display: inline-block;
/* 1777 */     width: 23.404255317%;
/* 1778 */ }
/* 1779 */ 
/* 1780 */ .homepage-full-width-widget .widget_wp_email_capture_widget_class #wp_email_capture input {
/* 1781 */     width: 49.5%;
/* 1782 */ }
/* 1783 */ 
/* 1784 */ .tribe-events-list-widget ol {
/* 1785 */     list-style-type: none;
/* 1786 */     padding-left: 0 !important;
/* 1787 */     margin-bottom: 0 !important;
/* 1788 */ }
/* 1789 */ 
/* 1790 */ .tribe-events-list-widget ol li {position: relative; margin: 0 !important; border-bottom: none !important; }
/* 1791 */ 
/* 1792 */ .tribe-events-list-widget ol li:last-child:after {
/* 1793 */   display: none;
/* 1794 */ }
/* 1795 */ 
/* 1796 */ .tribe-events-list-widget ol li:last-child { margin-bottom: 0 !important;}
/* 1797 */ 
/* 1798 */ .tribe-events-list-widget ol li a {
/* 1799 */   color: #666;
/* 1800 */ }

/* style.css */

/* 1801 */ 
/* 1802 */ .tribe-events-list-widget ol li h4 {
/* 1803 */     font-size: 18px;
/* 1804 */     line-height: 26px;
/* 1805 */ 
/* 1806 */     font-weight: 700;
/* 1807 */ 
/* 1808 */     margin: 2px 0 0px 0 !important;
/* 1809 */ 
/* 1810 */ }
/* 1811 */ 
/* 1812 */ .tribe-events-list-widget ol li .duration {    
/* 1813 */     background: #f4f5f6;
/* 1814 */ 
/* 1815 */     padding: 0 5px;
/* 1816 */     margin-bottom: 20px;
/* 1817 */ 
/* 1818 */     font-size: 12px;
/* 1819 */     line-height: 24px;
/* 1820 */ 
/* 1821 */     color: #777;
/* 1822 */ 
/* 1823 */     font-weight: 400;
/* 1824 */     width: auto;
/* 1825 */     display: inline-block;
/* 1826 */ }
/* 1827 */ 
/* 1828 */ .tribe-events-list-widget .tribe-events-widget-link {
/* 1829 */     display: none;
/* 1830 */     /* Styling is prepared in case you want to use it
/* 1831 *|     font-size: 12px;
/* 1832 *|     color: #fff !important;
/* 1833 *|     background: #a9d9be;
/* 1834 *| 
/* 1835 *|     padding: 5px;
/* 1836 *| 
/* 1837 *|     text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);*/
/* 1838 */ }
/* 1839 */ 
/* 1840 */ #tribe-events {
/* 1841 */ 	background-color: #FFFFFF;
/* 1842 */ }
/* 1843 */ 
/* 1844 */ 
/* 1845 */ .icy-blog-widget .entry-meta,
/* 1846 */ .icy-blog-widget .entry-meta-standard,
/* 1847 */ ul.posts-list .entry-meta {
/* 1848 */     background: #f4f5f6;
/* 1849 */     width: auto;
/* 1850 */     color: #777;

/* style.css */

/* 1851 */     display: inline-block;
/* 1852 */ 
/* 1853 */     position: relative;
/* 1854 */ 
/* 1855 */     font-weight: 300;
/* 1856 */ 
/* 1857 */     margin-bottom: 20px;
/* 1858 */ }
/* 1859 */ 
/* 1860 */ .icy-blog-widget .entry-meta,
/* 1861 */ ul.posts-list .entry-meta {
/* 1862 */     position: relative;
/* 1863 */ }
/* 1864 */ 
/* 1865 */ .icy-blog-widget .entry-meta a,
/* 1866 */ ul.posts-list .entry-meta a {
/* 1867 */     color: #777;
/* 1868 */     font-weight: 400;
/* 1869 */ }
/* 1870 */ 
/* 1871 */ .icy-blog-widget .entry-meta a:hover,
/* 1872 */ ul.posts-list .entry-meta a:hover {
/* 1873 */     color: #444;
/* 1874 */     font-weight: 400;
/* 1875 */ }
/* 1876 */ 
/* 1877 */ .more-link {
/* 1878 */     clear: both;
/* 1879 */     float: left;
/* 1880 */     font-family: 'Source Sans Pro', Arial, sans-serif;
/* 1881 */     font-size: 14px;
/* 1882 */     line-height: 14px;
/* 1883 */     text-transform: uppercase;
/* 1884 */     font-weight: 300;
/* 1885 */     color: #fff;
/* 1886 */     padding: 15px 15px;
/* 1887 */     background: #222;
/* 1888 */     margin-top: 10px;
/* 1889 */     margin-bottom: 40px;
/* 1890 */ }
/* 1891 */ 
/* 1892 */ .more-link:hover { text-decoration: none; background: #ADC671; color: #fff; }
/* 1893 */ 
/* 1894 */ 
/* 1895 */ 
/* 1896 */ 
/* 1897 */ /* 
/* 1898 *|  *    External Scripts styling 
/* 1899 *|  */
/* 1900 */ 

/* style.css */

/* 1901 */ .zilla-social { 
/* 1902 */     text-align: left;
/* 1903 */     padding-right: 2px;
/* 1904 */ }
/* 1905 */ 
/* 1906 */ #hello-bar .zilla-social,
/* 1907 */ footer .zilla-social { text-align: right}
/* 1908 */ 
/* 1909 */ .zilla-social.size-16px { height: 18px;}
/* 1910 */ 
/* 1911 */ .zilla-social a {
/* 1912 */     font-size: 0;
/* 1913 */     line-height: 0; 
/* 1914 */     display: inline-block;
/* 1915 */     clear: both;
/* 1916 */     position: relative;
/* 1917 */ }
/* 1918 */ 
/* 1919 */ .zilla-social a:hover {
/* 1920 */     border-bottom: none; 
/* 1921 */ }
/* 1922 */ 
/* 1923 */ .zilla-likes { margin-bottom: 0 !important; }
/* 1924 */ .zilla-likes:hover,
/* 1925 */ .zilla-likes,
/* 1926 */ .zilla-likes.active { margin-bottom: 0 !important; padding-left: 0px !important; background: none !important;}
/* 1927 */ 
/* 1928 */ .zilla-likes:before {
/* 1929 */     content: "\f08a";
/* 1930 */     font-family: 'FontAwesome';
/* 1931 */     padding-right: 10px;
/* 1932 */     color: #777 !important;
/* 1933 */ }
/* 1934 */ 
/* 1935 */ .zilla-likes:before,
/* 1936 */ .zilla-likes.active {
/* 1937 */     color: #777 !important;
/* 1938 */ }
/* 1939 */ .zilla-likes.active:before {
/* 1940 */ content: "\f004"; }
/* 1941 */ 
/* 1942 */ 
/* 1943 */ .zilla-likes { 
/* 1944 */     background-color: rgba(0,0,0,0.5);
/* 1945 */ }
/* 1946 */ 
/* 1947 */ .zilla-likes-count { margin-left: -5px;}
/* 1948 */ 
/* 1949 */ .share-options,
/* 1950 */ .date-wrapper { 

/* style.css */

/* 1951 */     display: inline-block;
/* 1952 */     padding: 0 5px;
/* 1953 */     color: #666;
/* 1954 */ 
/* 1955 */     font-weight: 300;
/* 1956 */     line-height: 24px;
/* 1957 */     margin-bottom: -1px;
/* 1958 */ }
/* 1959 */ 
/* 1960 */ .zilla-like-wrapper { line-height: 24px; }
/* 1961 */ 
/* 1962 */ .date-wrapper { 
/* 1963 */   background: rgba(0, 0, 0, 0.02); 
/* 1964 */   padding: 0 8px 0 8px;
/* 1965 */ }
/* 1966 */ 
/* 1967 */ .entry-meta-standard {
/* 1968 */     color: #fff;
/* 1969 */     clear: both;
/* 1970 */     font-size: 13px;
/* 1971 */     line-height: 16px;
/* 1972 */     font-family: 'Source Sans Pro', Arial, sans-serif;
/* 1973 */     vertical-align: middle;
/* 1974 */     font-weight: 300;
/* 1975 */ }
/* 1976 */ 
/* 1977 */ .entry-meta-standard a {
/* 1978 */   color: #fff !important;
/* 1979 */ }
/* 1980 */ 
/* 1981 */ .wpcf7-submit { 
/* 1982 */     width: auto;
/* 1983 */ }
/* 1984 */ 
/* 1985 */ 
/* 1986 */ .widget_woothemes_testimonials .testimonials .quote {
/* 1987 */   margin: 0 0 20px 0;
/* 1988 */   position: relative;
/* 1989 */   overflow: hidden;
/* 1990 */ }
/* 1991 */ .widget_woothemes_testimonials .testimonials .quote img {
/* 1992 */   float: left;
/* 1993 */   
/* 1994 */   margin-top: 35px;
/* 1995 */ 
/* 1996 */   -moz-background-clip: padding;
/* 1997 */   -webkit-background-clip: padding-box;
/* 1998 */   background-clip: padding-box;
/* 1999 */ 
/* 2000 */   width: 20.404255317%;

/* style.css */

/* 2001 */   margin-right: 2.127659574%;;  
/* 2002 */ }
/* 2003 */ .widget_woothemes_testimonials .testimonials .quote {
/* 2004 */   position: relative;
/* 2005 */   -moz-background-clip: padding;
/* 2006 */   -webkit-background-clip: padding-box;
/* 2007 */   background-clip: padding-box;
/* 2008 */ }
/* 2009 */ .widget_woothemes_testimonials .testimonials .quote blockquote {
/* 2010 */   color: #999;
/* 2011 */   padding: 0;
/* 2012 */   margin: 0;
/* 2013 */   font-size: 16px;
/* 2014 */   line-height: 25px;
/* 2015 */   font-weight: 400;
/* 2016 */   border-left: 0;
/* 2017 */   float: right;
/* 2018 */ 
/* 2019 */   margin-top: 30px;
/* 2020 */ 
/* 2021 */   width: 74.468085099%;
/* 2022 */ }
/* 2023 */ .widget_woothemes_testimonials .testimonials .quote cite {
/* 2024 */ background-color: #f4f5f6;
/* 2025 */ 
/* 2026 */   font-size: 13px;
/* 2027 */   color: #777;
/* 2028 */   font-weight: bold;
/* 2029 */   font-style: normal;
/* 2030 */ 
/* 2031 */   position: absolute;
/* 2032 */ top: 0;
/* 2033 */ left: 0;
/* 2034 */ width: auto;
/* 2035 */ padding-left: 5px;
/* 2036 */ line-height: 23px !important; 
/* 2037 */ 
/* 2038 */ }
/* 2039 */ .widget_woothemes_testimonials .testimonials .quote cite .excerpt {
/* 2040 */   display: inline-block;
/* 2041 */   color: #999;
/* 2042 */   line-height: 1;
/* 2043 */   font-weight: 200;
/* 2044 */   font-style: italic;
/* 2045 */   padding: 0 5px;
/* 2046 */   text-transform: lowercase;
/* 2047 */ }
/* 2048 */ .widget_woothemes_testimonials .testimonials .quote cite a {
/* 2049 */   font-weight: normal;
/* 2050 */   display: inline-block;

/* style.css */

/* 2051 */ }
/* 2052 */ 
/* 2053 */ .widget_woothemes_testimonials .testimonials .quote .url {
/* 2054 */   display: inline-block;
/* 2055 */   line-height: 24px;
/* 2056 */     margin-top: 0px;
/* 2057 */     background: rgba(0,0,0,0.02);
/* 2058 */      padding: 0 5px;
/* 2059 */      font-style: normal;
/* 2060 */      font-weight: 400;
/* 2061 */      font-size: 13px;
/* 2062 */ 
/* 2063 */ }
/* 2064 */ .widget_woothemes_testimonials .testimonials .quote .url a {
/* 2065 */     color: #666;
/* 2066 */ }
/* 2067 */ 
/* 2068 */ @-webkit-keyframes tada {
/* 2069 */   0% {-webkit-transform: scale(1);} 
/* 2070 */   10%, 20% {-webkit-transform: scale(0.9) rotate(-3deg);}
/* 2071 */   30%, 50%, 70%, 90% {-webkit-transform: scale(1.1) rotate(3deg);}
/* 2072 */   40%, 60%, 80% {-webkit-transform: scale(1.1) rotate(-3deg);}
/* 2073 */   100% {-webkit-transform: scale(1) rotate(0);}
/* 2074 */ }
/* 2075 */ 
/* 2076 */ @-moz-keyframes tada {
/* 2077 */   0% {-moz-transform: scale(1);}  
/* 2078 */   10%, 20% {-moz-transform: scale(0.9) rotate(-3deg);}
/* 2079 */   30%, 50%, 70%, 90% {-moz-transform: scale(1.1) rotate(3deg);}
/* 2080 */   40%, 60%, 80% {-moz-transform: scale(1.1) rotate(-3deg);}
/* 2081 */   100% {-moz-transform: scale(1) rotate(0);}
/* 2082 */ }
/* 2083 */ 
/* 2084 */ @-o-keyframes tada {
/* 2085 */   0% {-o-transform: scale(1);}  
/* 2086 */   10%, 20% {-o-transform: scale(0.9) rotate(-3deg);}
/* 2087 */   30%, 50%, 70%, 90% {-o-transform: scale(1.1) rotate(3deg);}
/* 2088 */   40%, 60%, 80% {-o-transform: scale(1.1) rotate(-3deg);}
/* 2089 */   100% {-o-transform: scale(1) rotate(0);}
/* 2090 */ }
/* 2091 */ 
/* 2092 */ @keyframes tada {
/* 2093 */   0% {transform: scale(1);} 
/* 2094 */   10%, 20% {transform: scale(0.9) rotate(-3deg);}
/* 2095 */   30%, 50%, 70%, 90% {transform: scale(1.1) rotate(3deg);}
/* 2096 */   40%, 60%, 80% {transform: scale(1.1) rotate(-3deg);}
/* 2097 */   100% {transform: scale(1) rotate(0);}
/* 2098 */ }
/* 2099 */ 
/* 2100 */ .icy-donate-btn a:hover,

/* style.css */

/* 2101 */ input[type="submit"]:hover {
/* 2102 */   -webkit-animation-name: tada;
/* 2103 */   -moz-animation-name: tada;
/* 2104 */   -o-animation-name: tada;
/* 2105 */   animation-name: tada;
/* 2106 */ 
/* 2107 */   -webkit-animation-fill-mode: both;
/* 2108 */   -moz-animation-fill-mode: both;
/* 2109 */   -ms-animation-fill-mode: both;
/* 2110 */   -o-animation-fill-mode: both;
/* 2111 */   animation-fill-mode: both;
/* 2112 */   -webkit-animation-duration: 1s;
/* 2113 */   -moz-animation-duration: 1s;
/* 2114 */   -ms-animation-duration: 1s;
/* 2115 */   -o-animation-duration: 1s;
/* 2116 */   animation-duration: 1s;
/* 2117 */ 
/* 2118 */   cursor: pointer;
/* 2119 */ }
/* 2120 */ 
/* 2121 */ @font-face{font-family:'FontAwesome';src:url('/wp-content/themes/give/includes/fonts/fontawesome/fontawesome-webfont.eot');src:url('/wp-content/themes/give/includes/fonts/fontawesome/fontawesome-webfont.eot?#iefix') format('embedded-opentype'),url('/wp-content/themes/give/includes/fonts/fontawesome/fontawesome-webfont.woff') format('woff'),url('/wp-content/themes/give/includes/fonts/fontawesome/fontawesome-webfont.ttf') format('truetype'),url('/wp-content/themes/give/includes/fonts/fontawesome/fontawesome-webfont.svg#FontAwesome') format('svg');font-weight:normal;font-style:normal}[class^="icon-"]:before,[class*=" icon-"]:before{font-family:'FontAwesome';font-weight:normal;font-style:normal;display:inline-block;text-decoration:inherit}.icon-glass:before{content:"\f000"}.icon-music:before{content:"\f001"}.icon-search:before{content:"\f002"}.icon-envelope:before{content:"\f003"}.icon-heart:before{content:"\f004"}.icon-star:before{content:"\f005"}.icon-star-empty:before{content:"\f006"}.icon-user:before{content:"\f007"}.icon-film:before{content:"\f008"}.icon-th-large:before{content:"\f009"}.icon-th:before{content:"\f00a"}.icon-th-list:before{content:"\f00b"}.icon-ok:before{content:"\f00c"}.icon-remove:before{content:"\f00d"}.icon-zoom-in:before{content:"\f00e"}.icon-zoom-out:before{content:"\f010"}.icon-off:before{content:"\f011"}.icon-signal:before{content:"\f012"}.icon-cog:before{content:"\f013"}.icon-trash:before{content:"\f014"}.icon-home:before{content:"\f015"}.icon-file:before{content:"\f016"}.icon-time:before{content:"\f017"}.icon-road:before{content:"\f018"}.icon-download-alt:before{content:"\f019"}.icon-download:before{content:"\f01a"}.icon-upload:before{content:"\f01b"}.icon-inbox:before{content:"\f01c"}.icon-play-circle:before{content:"\f01d"}.icon-repeat:before{content:"\f01e"}.icon-refresh:before{content:"\f021"}.icon-list-alt:before{content:"\f022"}.icon-lock:before{content:"\f023"}.icon-flag:before{content:"\f024"}.icon-headphones:before{content:"\f025"}.icon-volume-off:before{content:"\f026"}.icon-volume-down:before{content:"\f027"}.icon-volume-up:before{content:"\f028"}.icon-qrcode:before{content:"\f029"}.icon-barcode:before{content:"\f02a"}.icon-tag:before{content:"\f02b"}.icon-tags:before{content:"\f02c"}.icon-book:before{content:"\f02d"}.icon-bookmark:before{content:"\f02e"}.icon-print:before{content:"\f02f"}.icon-camera:before{content:"\f030"}.icon-font:before{content:"\f031"}.icon-bold:before{content:"\f032"}.icon-italic:before{content:"\f033"}.icon-text-height:before{content:"\f034"}.icon-text-width:before{content:"\f035"}.icon-align-left:before{content:"\f036"}.icon-align-center:before{content:"\f037"}.icon-align-right:before{content:"\f038"}.icon-align-justify:before{content:"\f039"}.icon-list:before{content:"\f03a"}.icon-indent-left:before{content:"\f03b"}.icon-indent-right:before{content:"\f03c"}.icon-facetime-video:before{content:"\f03d"}.icon-picture:before{content:"\f03e"}.icon-pencil:before{content:"\f040"}.icon-map-marker:before{content:"\f041"}.icon-adjust:before{content:"\f042"}.icon-tint:before{content:"\f043"}.icon-edit:before{content:"\f044"}.icon-share:before{content:"\f045"}.icon-check:before{content:"\f046"}.icon-move:before{content:"\f047"}.icon-step-backward:before{content:"\f048"}.icon-fast-backward:before{content:"\f049"}.icon-backward:before{content:"\f04a"}.icon-play:before{content:"\f04b"}.icon-pause:before{content:"\f04c"}.icon-stop:before{content:"\f04d"}.icon-forward:before{content:"\f04e"}.icon-fast-forward:before{content:"\f050"}.icon-step-forward:before{content:"\f051"}.icon-eject:before{content:"\f052"}.icon-chevron-left:before{content:"\f053"}.icon-chevron-right:before{content:"\f054"}.icon-plus-sign:before{content:"\f055"}.icon-minus-sign:before{content:"\f056"}.icon-remove-sign:before{content:"\f057"}.icon-ok-sign:before{content:"\f058"}.icon-question-sign:before{content:"\f059"}.icon-info-sign:before{content:"\f05a"}.icon-screenshot:before{content:"\f05b"}.icon-remove-circle:before{content:"\f05c"}.icon-ok-circle:before{content:"\f05d"}.icon-ban-circle:before{content:"\f05e"}.icon-arrow-left:before{content:"\f060"}.icon-arrow-right:before{content:"\f061"}.icon-arrow-up:before{content:"\f062"}.icon-arrow-down:before{content:"\f063"}.icon-share-alt:before{content:"\f064"}.icon-resize-full:before{content:"\f065"}.icon-resize-small:before{content:"\f066"}.icon-plus:before{content:"\f067"}.icon-minus:before{content:"\f068"}.icon-asterisk:before{content:"\f069"}.icon-exclamation-sign:before{content:"\f06a"}.icon-gift:before{content:"\f06b"}.icon-leaf:before{content:"\f06c"}.icon-fire:before{content:"\f06d"}.icon-eye-open:before{content:"\f06e"}.icon-eye-close:before{content:"\f070"}.icon-warning-sign:before{content:"\f071"}.icon-plane:before{content:"\f072"}.icon-calendar:before{content:"\f073"}.icon-random:before{content:"\f074"}.icon-comment:before{content:"\f075"}.icon-magnet:before{content:"\f076"}.icon-chevron-up:before{content:"\f077"}.icon-chevron-down:before{content:"\f078"}.icon-retweet:before{content:"\f079"}.icon-shopping-cart:before{content:"\f07a"}.icon-folder-close:before{content:"\f07b"}.icon-folder-open:before{content:"\f07c"}.icon-resize-vertical:before{content:"\f07d"}.icon-resize-horizontal:before{content:"\f07e"}.icon-bar-chart:before{content:"\f080"}.icon-twitter-sign:before{content:"\f081"}.icon-facebook-sign:before{content:"\f082"}.icon-camera-retro:before{content:"\f083"}.icon-key:before{content:"\f084"}.icon-cogs:before{content:"\f085"}.icon-comments:before{content:"\f086"}.icon-thumbs-up:before{content:"\f087"}.icon-thumbs-down:before{content:"\f088"}.icon-star-half:before{content:"\f089"}.icon-heart-empty:before{content:"\f08a"}.icon-signout:before{content:"\f08b"}.icon-linkedin-sign:before{content:"\f08c"}.icon-pushpin:before{content:"\f08d"}.icon-external-link:before{content:"\f08e"}.icon-signin:before{content:"\f090"}.icon-trophy:before{content:"\f091"}.icon-github-sign:before{content:"\f092"}.icon-upload-alt:before{content:"\f093"}.icon-lemon:before{content:"\f094"}.icon-phone:before{content:"\f095"}.icon-check-empty:before{content:"\f096"}.icon-bookmark-empty:before{content:"\f097"}.icon-phone-sign:before{content:"\f098"}.icon-twitter:before{content:"\f099"}.icon-facebook:before{content:"\f09a"}.icon-github:before{content:"\f09b"}.icon-unlock:before{content:"\f09c"}.icon-credit-card:before{content:"\f09d"}.icon-rss:before{content:"\f09e"}.icon-hdd:before{content:"\f0a0"}.icon-bullhorn:before{content:"\f0a1"}.icon-bell:before{content:"\f0a2"}.icon-certificate:before{content:"\f0a3"}.icon-hand-right:before{content:"\f0a4"}.icon-hand-left:before{content:"\f0a5"}.icon-hand-up:before{content:"\f0a6"}.icon-hand-down:before{content:"\f0a7"}.icon-circle-arrow-left:before{content:"\f0a8"}.icon-circle-arrow-right:before{content:"\f0a9"}.icon-circle-arrow-up:before{content:"\f0aa"}.icon-circle-arrow-down:before{content:"\f0ab"}.icon-globe:before{content:"\f0ac"}.icon-wrench:before{content:"\f0ad"}.icon-tasks:before{content:"\f0ae"}.icon-filter:before{content:"\f0b0"}.icon-briefcase:before{content:"\f0b1"}.icon-fullscreen:before{content:"\f0b2"}.icon-group:before{content:"\f0c0"}.icon-link:before{content:"\f0c1"}.icon-cloud:before{content:"\f0c2"}.icon-beaker:before{content:"\f0c3"}.icon-cut:before{content:"\f0c4"}.icon-copy:before{content:"\f0c5"}.icon-paper-clip:before{content:"\f0c6"}.icon-save:before{content:"\f0c7"}.icon-sign-blank:before{content:"\f0c8"}.icon-reorder:before{content:"\f0c9"}.icon-list-ul:before{content:"\f0ca"}.icon-list-ol:before{content:"\f0cb"}.icon-strikethrough:before{content:"\f0cc"}.icon-underline:before{content:"\f0cd"}.icon-table:before{content:"\f0ce"}.icon-magic:before{content:"\f0d0"}.icon-truck:before{content:"\f0d1"}.icon-pinterest:before{content:"\f0d2"}.icon-pinterest-sign:before{content:"\f0d3"}.icon-google-plus-sign:before{content:"\f0d4"}.icon-google-plus:before{content:"\f0d5"}.icon-money:before{content:"\f0d6"}.icon-caret-down:before{content:"\f0d7"}.icon-caret-up:before{content:"\f0d8"}.icon-caret-left:before{content:"\f0d9"}.icon-caret-right:before{content:"\f0da"}.icon-columns:before{content:"\f0db"}.icon-sort:before{content:"\f0dc"}.icon-sort-down:before{content:"\f0dd"}.icon-sort-up:before{content:"\f0de"}.icon-envelope-alt:before{content:"\f0e0"}.icon-linkedin:before{content:"\f0e1"}.icon-undo:before{content:"\f0e2"}.icon-legal:before{content:"\f0e3"}.icon-dashboard:before{content:"\f0e4"}.icon-comment-alt:before{content:"\f0e5"}.icon-comments-alt:before{content:"\f0e6"}.icon-bolt:before{content:"\f0e7"}.icon-sitemap:before{content:"\f0e8"}.icon-umbrella:before{content:"\f0e9"}.icon-paste:before{content:"\f0ea"}.icon-user-md:before{content:"\f200"}
/* 2122 */ 
/* 2123 */ 
/* 2124 */ 
/* 2125 */ /*
/* 2126 *|  *
/* 2127 *|  * Media Queries
/* 2128 *|  *
/* 2129 *|  */
/* 2130 */ 
/* 2131 */ 
/* 2132 */ @media (min-width: 1200px) {     
/* 2133 */     .nav.select { display: none; }
/* 2134 */     nav ul { display: block; }  
/* 2135 */ }
/* 2136 */ 
/* 2137 */ 
/* 2138 */ @media (min-width: 980px) and (max-width: 1199px) { 
/* 2139 */     .wrapper { width: 100%; }    
/* 2140 */     .nav.select { display: none; }
/* 2141 */     nav ul { display: block; }        
/* 2142 */         
/* 2143 */     #hello-bar .social-icons { text-align: right;}        
/* 2144 */     .featured-message .centered h1 { font-size: 34px;line-height: 34px;font-weight: 900;letter-spacing: -2px;}
/* 2145 */     .featured-message .centered h3 { font-size: 22px;line-height: 22px;font-weight: 300;letter-spacing: 0px;}
/* 2146 */ 
/* 2147 */         
/* 2148 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class .textwidget,
/* 2149 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class #wp_email_capture { width: 100%; }
/* 2150 */ 

/* style.css */

/* 2151 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class .textwidget,
/* 2152 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class #wp_email_capture {font-size: 21px; line-height: 29px; text-align: center}
/* 2153 */ 
/* 2154 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class {  padding: 20px 0;}
/* 2155 */     
/* 2156 */     .archive-list [class*="span"] {
/* 2157 */       width: 100%;
/* 2158 */     }
/* 2159 */ }
/* 2160 */ 
/* 2161 */ @media (min-width: 768px) and (max-width: 979px) { 
/* 2162 */     .wrapper { width: 100%; }    
/* 2163 */     .nav.select { display: none; }
/* 2164 */     nav ul { display: block; }        
/* 2165 */         
/* 2166 */     #hello-bar .social-icons { text-align: right;}        
/* 2167 */     .featured-message .centered h1 { font-size: 28px;line-height: 28px;font-weight: 900;letter-spacing: -2px;}
/* 2168 */     .featured-message .centered h3 { font-size: 17px;line-height: 16px;font-weight: 300;letter-spacing: 0px;}
/* 2169 */ 
/* 2170 */         
/* 2171 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class .textwidget,
/* 2172 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class #wp_email_capture { width: 100%; }
/* 2173 */ 
/* 2174 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class .textwidget,
/* 2175 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class #wp_email_capture {font-size: 21px; line-height: 29px; text-align: center}
/* 2176 */ 
/* 2177 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class {  padding: 20px 0;}
/* 2178 */     
/* 2179 */     .archive-list [class*="span"] {
/* 2180 */       width: 100%;
/* 2181 */     }
/* 2182 */ }
/* 2183 */ @media (max-width: 767px) and (min-width: 480px) {
/* 2184 */     .wrapper { width: 100%; }     
/* 2185 */     
/* 2186 */     .nav.select { display: block; }
/* 2187 */     nav ul { display: none; }        
/* 2188 */     
/* 2189 */     #hello-bar .top-message { display: none; }
/* 2190 */     #hello-bar .social-icons { width: 100%; text-align: center;}
/* 2191 */     #hello-bar .social-icons .zilla-social { text-align: center; }
/* 2192 */ 
/* 2193 */     header .logo { width: 100% !important; text-align: center}
/* 2194 */     .logo a img { max-width: 100%; height: auto; margin: 0 auto;}
/* 2195 */ 
/* 2196 */     .icy-donate-btn a { width: 100%; float: left; clear: both; text-align: center; position: relative; margin: 0 -20px; padding: 10px 20px; }
/* 2197 */ 
/* 2198 */ 
/* 2199 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class .textwidget,
/* 2200 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class #wp_email_capture { width: 100%; }

/* style.css */

/* 2201 */ 
/* 2202 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class .textwidget,
/* 2203 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class #wp_email_capture {font-size: 14px; line-height: 23px;}
/* 2204 */ 
/* 2205 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class {  padding: 20px 0;}
/* 2206 */ 
/* 2207 */     header .icy-header-search { display: none;}
/* 2208 */ 
/* 2209 */     .featured-message { display: none; }  
/* 2210 */     
/* 2211 */     .archive-list [class*="span"],
/* 2212 */     .row-fluid [class*="span"] {
/* 2213 */       width: 100%;
/* 2214 */     }
/* 2215 */ 
/* 2216 */     .comment-meta {
/* 2217 */       display: none;
/* 2218 */     }
/* 2219 */ }
/* 2220 */ @media (max-width: 480px) {
/* 2221 */     .wrapper { width: 100% !important;  } 
/* 2222 */     
/* 2223 */     #hello-bar .top-message { display: none; }
/* 2224 */     #hello-bar .social-icons { width: 100%; text-align: center;}
/* 2225 */     #hello-bar .social-icons .zilla-social { text-align: center; }
/* 2226 */ 
/* 2227 */     header .logo { width: 100% !important; text-align: center}
/* 2228 */     .logo a img { max-width: 100%; height: auto; margin: 0 auto;}
/* 2229 */ 
/* 2230 */     .icy-donate-btn a { width: 100%; float: left; clear: both; text-align: center; position: relative; margin: 0 -20px; padding: 10px 20px; }
/* 2231 */ 
/* 2232 */     header .icy-header-search { display: none;}
/* 2233 */     
/* 2234 */     .nav.select { display: block; }
/* 2235 */     nav ul { display: none; }
/* 2236 */ 
/* 2237 */     .featured-message { display: none; }    
/* 2238 */     
/* 2239 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class .textwidget,
/* 2240 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class #wp_email_capture { width: 100%; }
/* 2241 */ 
/* 2242 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class .textwidget,
/* 2243 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class #wp_email_capture {font-size: 14px; line-height: 23px;}
/* 2244 */ 
/* 2245 */     .homepage-full-width-widget .widget_wp_email_capture_widget_class {  padding: 20px 0;}
/* 2246 */ 
/* 2247 */     .archive-list [class*="span"],
/* 2248 */     .row-fluid [class*="span"] {
/* 2249 */       width: 100%;
/* 2250 */     }

/* style.css */

/* 2251 */ 
/* 2252 */     h1 {
/* 2253 */         font-size: 21px;
/* 2254 */         line-height: 32px;
/* 2255 */     }
/* 2256 */ 
/* 2257 */     h2 {
/* 2258 */         font-size: 16px;
/* 2259 */         line-height: 24px;
/* 2260 */     }
/* 2261 */ 
/* 2262 */     h3 {
/* 2263 */         font-size: 14px;
/* 2264 */         line-height: 22px;
/* 2265 */     }
/* 2266 */ 
/* 2267 */     h4 {
/* 2268 */         font-size: 14px;
/* 2269 */         line-height: 22px;
/* 2270 */     }
/* 2271 */ 
/* 2272 */     h5 {
/* 2273 */         font-size: 14px;
/* 2274 */         line-height: 22px;
/* 2275 */     }
/* 2276 */ 
/* 2277 */     h6 {
/* 2278 */         font-size: 14px;
/* 2279 */         line-height: 22px;
/* 2280 */     }
/* 2281 */ 
/* 2282 */     input, textarea { width: 100%;}
/* 2283 */ 
/* 2284 */     .entry-meta { overflow: hidden; }
/* 2285 */ 
/* 2286 */     .flex-caption { display: none; }
/* 2287 */ 
/* 2288 */     .zilla-social img {
/* 2289 */         width: 16px;
/* 2290 */         height: 16px;        
/* 2291 */     }    
/* 2292 */     #hello-bar .zilla-social, footer .zilla-social, footer .widget { text-align: center; }
/* 2293 */ 
/* 2294 */     .comment-meta {
/* 2295 */       display: none;
/* 2296 */     }
/* 2297 */ } 

/* tablepress-combined.min.css */

/* 1 */ @font-face{font-family:TablePress;src:url(//fanwa.org/wp-content/plugins/tablepress/css/tablepress.eot);src:url(//fanwa.org/wp-content/plugins/tablepress/css/tablepress.eot?#ie)format('embedded-opentype'),url(data:application/x-font-woff;base64,d09GRgABAAAAAAXYAAwAAAAACXwAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABHAAAABwAAAAcZInHOk9TLzIAAAE4AAAAPgAAAGB7NXPDY21hcAAAAXgAAABMAAABUvD45QVnYXNwAAABxAAAAAgAAAAIAAAAEGdseWYAAAHMAAABKQAAAgjYVHFyaGVhZAAAAvgAAAAvAAAANv2jaBNoaGVhAAADKAAAAB0AAAAkCk0F6GhtdHgAAANIAAAAIAAAACgoAADqbG9jYQAAA2gAAAAWAAAAFgJWAbxtYXhwAAADgAAAAB0AAAAgAE4AH25hbWUAAAOgAAAB3AAAA43ZugaUcG9zdAAABXwAAABZAAAAgeNVfAkAAAABAAAAAMwXcmMAAAAAy1XFoAAAAADNHI82eJxjYGbexjiBgZWBhaWHxZiBgaENQjMVM0SB+ThBQWVRMYPDh+APd9gY/gP5bAyMykCKEUmJAgMjAC56Ct8AAHicY2BgYGaAYBkGRgYQ8AHyGMF8FgYDIM0BhEwMDB9CPtz6cOf/fyAr+MN1EIt/A78evy5UFxgwsjHAuYxAPSB9KICRYdgDAL67D8kAAQAB//8AD3icXU/NTsJAEJ5ZFggxxmCbkiwHAzLTowlu4ejeyxPwCOBR7r3rE/geeubuG3i3TyGts12MtT18ndnd7w8QsvpdX/Q/IAboI9s1rpY3mMTDkcAVDuaqPD0RqRfaU05UGSxJhj2p5wDNUplqyjsZQT6EQ/2mc9GcyBIPReQOObPrkccHMZhgonMS3R1tiLCsDNFm8bgQF3W06ekgqqnN5Aa//D9nlrOgDeg09Aq4lK3RTiX16n621BBVLrIe2PQK09s2c4THyPIvF4TrAndwO5uHvhPUwOa7MNw8FsCtZfZDJBKB66BQhW58cRwHW09OVMEtI+3aOhEHX+E63crM2dh6X+WazMFLvf6F57OvAqiPGvo+87Tb+LrT4X9/7lT6bKXs9vsByDlkyAAAAHicY2BkYGAA4mO9Sxji+W2+MnCzM4DAWZl+bwT9fyuLN+tpIJeDgQkkCgAbqgoOAHicY2BkYGBj+HeXgYGdAQRYvBkYGVABFwA+hgJEAAAAeJxjZ4AAdiBmaWAwBeJSFhAbiJkaGByAGMwGADa+AxEAAAAAAAAAAAAqAFgAdgCUALIA0AEEAAB4nGNgZGBg4GKQYWBiAAEQycgAEnMA8xkABjEAbgAAAHicjZJBaxNBFMf/u0mbJoig5KC3QcRblt2tFCm9lEp701iKIHiZJLPJ0mSnzE5S8h38BB79Nn4ab94E/zN9JVB7MCEzv/3Pm/f+720ADPEbCe4/qXCCAV4Kp+jhrXAHGb4Ld/Ecv4T38Cx5I7yPQfJBuIdPyR/hAzxJa+E+Buk3Zku6fal8xwn9dIRTPMVr4Q6+4kS4S/Wn8B5eJanwPobJO+EefiRfhA/wIv0o3Mcw3YRyV9CYYAmDMRzXll9c6cnSjJ1pyZcU51gzRDMAl2a+XmrCOSwa+Lg7RhgolJxKzv2Yv8cSqwfZ7iILHGHEdcT7OfdDJreNP7dublSZ5epY7QwpMUCxOBoVozIvDh/v4mEx/JsE+MwQx+A6dhO8hA7y2EvwUjLEuLa2jSqyPFcsV/7H0MbxUFMOYwkhVSykODAb10U8OePTDbY8qel0QV3FO1PSvaUqDnh3p5LBB8WxxozqKnZ4TU1T9THfhJ3vsjTcw9M02s1ocWl0a5QzlXHKW+UXRp3Zm62r5wuvWjP1oenKunhS8YUo7/TMrLS7Vtp7V0/WMaSxvp6aNoP8FYKzU9zGOpbOTHidzqvTW9PaFZ/e0+QmtnJBatjAlqLeGHWhm9kWfwGPR6C4eJxjYGIAg/9VDFEM2AAXEDMyMDEyMTIzsjCyMrIxsjNy8CRnpJYV5efF56SmlfDCOEWZ6RklXMmJRakl8Sn55XkcEGZpAVQMpJgbwgQrZSnOLyoBACnGHqgAAAA=)format('woff'),url(//fanwa.org/wp-content/plugins/tablepress/css/tablepress.ttf)format('truetype'),url(//fanwa.org/wp-content/plugins/tablepress/css/tablepress.svg#TablePress)format('svg');font-weight:400;font-style:normal}.tablepress-table-description{clear:both;display:block}.tablepress{border-collapse:collapse;border-spacing:0;width:100%;margin-bottom:1em;border:none}.tablepress td,.tablepress th{padding:8px;border:none;background:0 0;text-align:left;float:none!important}.tablepress tbody td{vertical-align:top}.tablepress tbody td,.tablepress tfoot th{border-top:1px solid #ddd}.tablepress tbody tr:first-child td{border-top:0}.tablepress thead th{border-bottom:1px solid #ddd}.tablepress tfoot th,.tablepress thead th{background-color:#d9edf7;font-weight:700;vertical-align:middle}.tablepress .odd td{background-color:#f9f9f9}.tablepress .even td{background-color:#fff}.tablepress .row-hover tr:hover td{background-color:#f3f3f3}.tablepress img{margin:0;padding:0;border:none;max-width:none}.dataTables_wrapper{clear:both;margin-bottom:1em}.dataTables_wrapper .tablepress{clear:both;margin:0!important}.dataTables_length{float:left;white-space:nowrap}.dataTables_filter{float:right;white-space:nowrap}.dataTables_info{clear:both;float:left;margin:4px 0 0}.dataTables_paginate{float:right;margin:4px 0 0}.dataTables_paginate a{color:#111!important;display:inline-block;outline:0;position:relative;text-decoration:underline;text-decoration:none\0/IE;margin:0 5px}.dataTables_paginate a:first-child{margin-left:0}.dataTables_paginate a:last-child{margin-right:0}.paginate_button:hover{cursor:pointer;text-decoration:none}.paginate_button.disabled{color:#999!important;text-decoration:none;cursor:default}.paginate_button.current{font-weight:700;text-decoration:none;cursor:default}.dataTables_paginate.paging_simple{padding:0 15px}.paging_simple .paginate_button.next:after,.paging_simple .paginate_button.previous:before{text-align:left;font-family:TablePress;font-size:14px;font-weight:700;-webkit-font-smoothing:antialiased;content:"\f053";text-shadow:.1em .1em #666;position:absolute;top:0;right:auto;bottom:0;left:-14px;margin:auto;height:14px;width:14px;line-height:1}.paging_simple .paginate_button.next:after{text-align:right;content:"\f054";left:auto}.paginate_button:after,.paginate_button:before{color:#d9edf7}.paginate_button:hover:after,.paginate_button:hover:before{color:#049cdb}.paginate_button.disabled:after,.paginate_button.disabled:before{color:#f9f9f9}.dataTables_processing{display:none}.dataTables_scroll{clear:both}.dataTables_scrollBody{-webkit-overflow-scrolling:touch}.tablepress .sorting,.tablepress .sorting_asc,.tablepress .sorting_desc{position:relative;padding-right:20px;cursor:pointer;outline:0}.tablepress .sorting:after,.tablepress .sorting_asc:after,.tablepress .sorting_desc:after{font-family:TablePress;font-weight:400;font-size:14px;-webkit-font-smoothing:antialiased;position:absolute;top:0;bottom:0;left:auto;right:6px;margin:auto;height:14px;line-height:1}.tablepress .sorting:after{content:"\f0dc"}.tablepress .sorting_asc:after{content:"\f0d8";padding:0 0 2px}.tablepress .sorting_desc:after{content:"\f0d7"}.dataTables_scrollBody .tablepress thead th:after,.dataTables_wrapper:after{content:""}.tablepress .sorting:hover,.tablepress .sorting_asc,.tablepress .sorting_desc{background-color:#049cdb}.dataTables_wrapper:after{display:block;clear:both;visibility:hidden;line-height:0;height:0}.dataTables_wrapper label input,.dataTables_wrapper label select{display:inline;margin:2px;width:auto}
/* 2 */ .tablepress .column-1{width:150px}.tablepress tbody td{font-size:14px}.tablepress thead th,.tablepress tfoot th{background-color:#DDD}
