.pw-clippy-div {
	position: absolute;
	z-index: 10;
	top: 50%;
	left:50%;
	width: 70%;
	height: 50%;
	min-height:214px;
	overflow: hidden;
	margin-left: -35%;
}
.pw-clippy-div .pw-clippy-div-content {
	border: 1px solid #444;
	background-color: #f7f7f7;
	padding: 10px;
	padding-bottom: 6px;
	display: block;
	margin: 0;
	height:90%;
}
#pw-clippy-header{
	height:30px;
}
#pw-clippy-text{
	width:99%;
	height:80%;
}

.pw-clippy-div .pw-clippy-div-content .pw-clippy-close-btn {
	position: absolute;
    border: 2px solid #c2c2c2;
    padding: 1px 5px;
    top: 8px;
	right: 8px;
    background-color: #605F61;
    border-radius: 20px;
}

.pw-clippy-div .pw-clippy-div-content .pw-clippy-close-btn a {
    font-size: 15px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}.Zebra_Tooltip {
    position: absolute;
    z-index: 99999;
    background: transparent;
    font-family: Geneva, 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
}

.Zebra_Tooltip .Zebra_Tooltip_Message {
    position: relative;
    padding: 20px;
    font-size: inherit;
    text-align: left;
    font-weight: normal;
    line-height: inherit;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    -moz-box-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    box-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    *margin-right: 0;
    _width:expression(document.body.clientWidth > 250 ? '250px': 'auto'); /* max-width for IE6 */
}

.Zebra_Tooltip .Zebra_Tooltip_Arrow         { position: absolute; height: 10px; width: 20px; overflow: hidden }

.Zebra_Tooltip .Zebra_Tooltip_Arrow_Bottom  { bottom: 0 }
.Zebra_Tooltip .Zebra_Tooltip_Arrow_Top     { top: 0    }

.Zebra_Tooltip .Zebra_Tooltip_Arrow div {
    position: absolute;
    border-style: solid;
    border-width: 10px;
    height: 0;
    width: 0;
    left: 0;
    _border-left-color: pink;
    _border-right-color: pink;
    _filter: chroma(color=pink);
}

.Zebra_Tooltip .Zebra_Tooltip_Arrow_Bottom div  {
    top: 0;
    _border-bottom-color: pink;
}

.Zebra_Tooltip .Zebra_Tooltip_Arrow_Top div     {
    bottom: 0;
    _border-top-color: pink;
}

.Zebra_Tooltip .Zebra_Tooltip_Close {
    text-decoration: none;
    color: #FFF;
    position: absolute;
    right: 8px;
    top: 1px;
    font-size: inherit;
    font-weight: bold;
}

.Zebra_Tooltip .Zebra_Tooltip_Close:hover {
    color: #C40000;
}
/**
* SRP LAYOUT CSS
* Package: special-recent-posts-free
* Version: 2.0.4
* Author: Luca Grandicelli <lgrandicelli@gmail.com>
* Copyright (C) 2011-2014 Luca Grandicelli
* The stylesheet of the SRP widget layout
*/


/**
 * --------------------------------
 * THE WIDGET TITLE
 * --------------------------------
*/
.srp-widget-title {}


/**
 * --------------------------------
 * THE POSTS CONTAINER
 * --------------------------------
*/
.srp-widget-container {
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;     /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
	display: flex;         /* NEW, Spec - Opera 12.1, Firefox 20+ */

	    -webkit-box-orient : vertical;
	       -moz-box-orient : vertical;
	-webkit-flex-direction : column;
	   -moz-flex-direction : column;
	    -ms-flex-direction : column;
	        flex-direction : column;

	-webkit-flex-wrap : nowrap;
	   -moz-flex-wrap : nowrap;
	    -ms-flex-wrap : nowrap;
	        flex-wrap : nowrap;
}

/**
 * --------------------------------
 * THE SINGLE POST
 * --------------------------------
*/
.srp-widget-singlepost {
	border-bottom  : 1px solid #ccc;
	margin-bottom  : 10px;
	padding-bottom : 10px;
}

.srp-widget-container > .srp-widget-singlepost:last-child {
	border-bottom  : 0;
	margin-bottom  : 0;
	padding-bottom : 0;
}

.srp-post-content-container {
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;     /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
	display: flex;         /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.srp-thumbnail-position-default {
	-webkit-box-orient: horizontal;
       -moz-box-orient: horizontal;
       -webkit-flex-direction: row;
          -moz-flex-direction: row;
           -ms-flex-direction: row;
               flex-direction: row;

	     -webkit-flex-wrap: nowrap;
	        -moz-flex-wrap: nowrap;
	         -ms-flex-wrap: nowrap;
	             flex-wrap: nowrap;
}


/**
 * --------------------------------
 * THE THUMBNAIL BOX
 * --------------------------------
*/
.srp-thumbnail-box {
	margin-right: 20px;
}

.srp-post-thumbnail-link {
	display: block;
}

.srp-thumbnail-box img {
	height: auto;
}


/**
 * --------------------------------
 * THE CONTENT BOX
 * --------------------------------
*/
.srp-content-box {
	-webkit-box-flex: 1;   /* OLD - iOS 6-, Safari 3.1-6 */
       -moz-box-flex: 1;   /* OLD - Firefox 19- */
             width: 20%;   /* For old syntax, otherwise collapses. */
        -webkit-flex: 1;   /* Chrome */
            -ms-flex: 1;   /* IE 10 */
                flex: 1;   /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.srp-content-box .srp-post-date,
.widget-area .widget .srp-post-date {
	margin: 0 0 10px; font-size:small; display:none;
}



.srp-content-box .srp-post-title,
.widget-area .widget .srp-post-title {
	margin: 0;
}


/**
 * --------------------------------
 * THE POST TITLE
 * --------------------------------
*/
.srp-content-box .srp-post-title,
.widget-area .widget .srp-post-title {
  margin: 0;
}

.srp-content-box .srp-post-stringbreak-link {
  margin: 0 5px;
}


/**
 * --------------------------------
 * THE POST CONTENT
 * --------------------------------
*/
.srp-content-box .srp-post-content,
.widget-area .widget .srp-post-content {
	margin: 0;
}


/**
 * --------------------------------
 * MEDIA QUERIES
 * --------------------------------
*/

/* Max-width 640px, mobile-only styles, use when QAing mobile issues */
@media only screen and (max-width: 40em) {

	/**
	 * --------------------------------
	 * The Single Post
	 * --------------------------------
	*/
	.srp-post-content-container {
	-webkit-box-orient: vertical;
       -moz-box-orient: vertical;
  -webkit-flex-direction: column;
   	 -moz-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;

	   -webkit-flex-wrap: nowrap;
          -moz-flex-wrap: nowrap;
           -ms-flex-wrap: nowrap;
               flex-wrap: nowrap;
	}

	.srp-content-box {
		-webkit-box-flex: none;   /* OLD - iOS 6-, Safari 3.1-6 */
	       -moz-box-flex: none;   /* OLD - Firefox 19- */
	               width: auto;   /* For old syntax, otherwise collapses. */
	        -webkit-flex: none;   /* Chrome */
	            -ms-flex: none;   /* IE 10 */
	                flex: none;   /* NEW, Spec - Opera 12.1, Firefox 20+ */
	}

	/**
	 * --------------------------------
	 * The Thumbnail Box
	 * --------------------------------
	*/
	.srp-thumbnail-box {
		margin: 0 0 10px;
	}

}div.pp_default .pp_top,div.pp_default .pp_top .pp_middle,div.pp_default .pp_top .pp_left,div.pp_default .pp_top .pp_right,div.pp_default .pp_bottom,div.pp_default .pp_bottom .pp_left,div.pp_default .pp_bottom .pp_middle,div.pp_default .pp_bottom .pp_right{height:13px}div.pp_default .pp_top .pp_left{background:url("../wp-video-lightbox/images/prettyPhoto/default/sprite.png") -78px -93px no-repeat}div.pp_default .pp_top .pp_middle{background:url("../wp-video-lightbox/images/prettyPhoto/default/sprite_x.png") top left repeat-x}div.pp_default .pp_top .pp_right{background:url("../wp-video-lightbox/images/prettyPhoto/default/sprite.png") -112px -93px no-repeat}div.pp_default .pp_content .ppt{color:#f8f8f8}div.pp_default .pp_content_container .pp_left{background:url("../wp-video-lightbox/images/prettyPhoto/default/sprite_y.png") -7px 0 repeat-y;padding-left:13px}div.pp_default .pp_content_container .pp_right{background:url("../wp-video-lightbox/images/prettyPhoto/default/sprite_y.png") top right repeat-y;padding-right:13px}div.pp_default .pp_next:hover{background:url("../wp-video-lightbox/images/prettyPhoto/default/sprite_next.png") center right no-repeat;cursor:pointer}div.pp_default .pp_previous:hover{background:url("../wp-video-lightbox/images/prettyPhoto/default/sprite_prev.png") center left no-repeat;cursor:pointer}div.pp_default .pp_expand{background:url("../wp-video-lightbox/images/prettyPhoto/default/sprite.png") 0 -29px no-repeat;cursor:pointer;width:28px;height:28px}div.pp_default .pp_expand:hover{background:url("../wp-video-lightbox/images/prettyPhoto/default/sprite.png") 0 -56px no-repeat;cursor:pointer}div.pp_default .pp_contract{background:url("../wp-video-lightbox/images/prettyPhoto/default/sprite.png") 0 -84px no-repeat;cursor:pointer;width:28px;height:28px}div.pp_default .pp_contract:hover{background:url("../wp-video-lightbox/images/prettyPhoto/default/sprite.png") 0 -113px no-repeat;cursor:pointer}div.pp_default .pp_close{width:30px;height:30px;background:url("../wp-video-lightbox/images/prettyPhoto/default/sprite.png") 2px 1px no-repeat;cursor:pointer}div.pp_default .pp_gallery ul li a{background:url("../wp-video-lightbox/images/prettyPhoto/default/default_thumb.png") center center #f8f8f8;border:1px solid #aaa}div.pp_default .pp_social{margin-top:7px}div.pp_default .pp_gallery a.pp_arrow_previous,div.pp_default .pp_gallery a.pp_arrow_next{position:static;left:auto}div.pp_default .pp_nav .pp_play,div.pp_default .pp_nav .pp_pause{background:url("../wp-video-lightbox/images/prettyPhoto/default/sprite.png") -51px 1px no-repeat;height:30px;width:30px}div.pp_default .pp_nav .pp_pause{background-position:-51px -29px}div.pp_default a.pp_arrow_previous,div.pp_default a.pp_arrow_next{background:url("../wp-video-lightbox/images/prettyPhoto/default/sprite.png") -31px -3px no-repeat;height:20px;width:20px;margin:4px 0 0}div.pp_default a.pp_arrow_next{left:52px;background-position:-82px -3px}div.pp_default .pp_content_container .pp_details{margin-top:5px}div.pp_default .pp_nav{clear:none;height:30px;width:110px;position:relative}div.pp_default .pp_nav .currentTextHolder{font-family:Georgia;font-style:italic;color:#999;font-size:11px;left:75px;line-height:25px;position:absolute;top:2px;margin:0;padding:0 0 0 10px}div.pp_default .pp_close:hover,div.pp_default .pp_nav .pp_play:hover,div.pp_default .pp_nav .pp_pause:hover,div.pp_default .pp_arrow_next:hover,div.pp_default .pp_arrow_previous:hover{opacity:0.7}div.pp_default .pp_description{font-size:11px;font-weight:700;line-height:14px;margin:5px 50px 5px 0}div.pp_default .pp_bottom .pp_left{background:url("../wp-video-lightbox/images/prettyPhoto/default/sprite.png") -78px -127px no-repeat}div.pp_default .pp_bottom .pp_middle{background:url("../wp-video-lightbox/images/prettyPhoto/default/sprite_x.png") bottom left repeat-x}div.pp_default .pp_bottom .pp_right{background:url("../wp-video-lightbox/images/prettyPhoto/default/sprite.png") -112px -127px no-repeat}div.pp_default .pp_loaderIcon{background:url("../wp-video-lightbox/images/prettyPhoto/default/loader.gif") center center no-repeat}div.light_rounded .pp_top .pp_left{background:url("../wp-video-lightbox/images/prettyPhoto/light_rounded/sprite.png") -88px -53px no-repeat}div.light_rounded .pp_top .pp_right{background:url("../wp-video-lightbox/images/prettyPhoto/light_rounded/sprite.png") -110px -53px no-repeat}div.light_rounded .pp_next:hover{background:url("../wp-video-lightbox/images/prettyPhoto/light_rounded/btnNext.png") center right no-repeat;cursor:pointer}div.light_rounded .pp_previous:hover{background:url("../wp-video-lightbox/images/prettyPhoto/light_rounded/btnPrevious.png") center left no-repeat;cursor:pointer}div.light_rounded .pp_expand{background:url("../wp-video-lightbox/images/prettyPhoto/light_rounded/sprite.png") -31px -26px no-repeat;cursor:pointer}div.light_rounded .pp_expand:hover{background:url("../wp-video-lightbox/images/prettyPhoto/light_rounded/sprite.png") -31px -47px no-repeat;cursor:pointer}div.light_rounded .pp_contract{background:url("../wp-video-lightbox/images/prettyPhoto/light_rounded/sprite.png") 0 -26px no-repeat;cursor:pointer}div.light_rounded .pp_contract:hover{background:url("../wp-video-lightbox/images/prettyPhoto/light_rounded/sprite.png") 0 -47px no-repeat;cursor:pointer}div.light_rounded .pp_close{width:75px;height:22px;background:url("../wp-video-lightbox/images/prettyPhoto/light_rounded/sprite.png") -1px -1px no-repeat;cursor:pointer}div.light_rounded .pp_nav .pp_play{background:url("../wp-video-lightbox/images/prettyPhoto/light_rounded/sprite.png") -1px -100px no-repeat;height:15px;width:14px}div.light_rounded .pp_nav .pp_pause{background:url("../wp-video-lightbox/images/prettyPhoto/light_rounded/sprite.png") -24px -100px no-repeat;height:15px;width:14px}div.light_rounded .pp_arrow_previous{background:url("../wp-video-lightbox/images/prettyPhoto/light_rounded/sprite.png") 0 -71px no-repeat}div.light_rounded .pp_arrow_next{background:url("../wp-video-lightbox/images/prettyPhoto/light_rounded/sprite.png") -22px -71px no-repeat}div.light_rounded .pp_bottom .pp_left{background:url("../wp-video-lightbox/images/prettyPhoto/light_rounded/sprite.png") -88px -80px no-repeat}div.light_rounded .pp_bottom .pp_right{background:url("../wp-video-lightbox/images/prettyPhoto/light_rounded/sprite.png") -110px -80px no-repeat}div.dark_rounded .pp_top .pp_left{background:url("../wp-video-lightbox/images/prettyPhoto/dark_rounded/sprite.png") -88px -53px no-repeat}div.dark_rounded .pp_top .pp_right{background:url("../wp-video-lightbox/images/prettyPhoto/dark_rounded/sprite.png") -110px -53px no-repeat}div.dark_rounded .pp_content_container .pp_left{background:url("../wp-video-lightbox/images/prettyPhoto/dark_rounded/contentPattern.png") top left repeat-y}div.dark_rounded .pp_content_container .pp_right{background:url("../wp-video-lightbox/images/prettyPhoto/dark_rounded/contentPattern.png") top right repeat-y}div.dark_rounded .pp_next:hover{background:url("../wp-video-lightbox/images/prettyPhoto/dark_rounded/btnNext.png") center right no-repeat;cursor:pointer}div.dark_rounded .pp_previous:hover{background:url("../wp-video-lightbox/images/prettyPhoto/dark_rounded/btnPrevious.png") center left no-repeat;cursor:pointer}div.dark_rounded .pp_expand{background:url("../wp-video-lightbox/images/prettyPhoto/dark_rounded/sprite.png") -31px -26px no-repeat;cursor:pointer}div.dark_rounded .pp_expand:hover{background:url("../wp-video-lightbox/images/prettyPhoto/dark_rounded/sprite.png") -31px -47px no-repeat;cursor:pointer}div.dark_rounded .pp_contract{background:url("../wp-video-lightbox/images/prettyPhoto/dark_rounded/sprite.png") 0 -26px no-repeat;cursor:pointer}div.dark_rounded .pp_contract:hover{background:url("../wp-video-lightbox/images/prettyPhoto/dark_rounded/sprite.png") 0 -47px no-repeat;cursor:pointer}div.dark_rounded .pp_close{width:75px;height:22px;background:url("../wp-video-lightbox/images/prettyPhoto/dark_rounded/sprite.png") -1px -1px no-repeat;cursor:pointer}div.dark_rounded .pp_description{margin-right:85px;color:#fff}div.dark_rounded .pp_nav .pp_play{background:url("../wp-video-lightbox/images/prettyPhoto/dark_rounded/sprite.png") -1px -100px no-repeat;height:15px;width:14px}div.dark_rounded .pp_nav .pp_pause{background:url("../wp-video-lightbox/images/prettyPhoto/dark_rounded/sprite.png") -24px -100px no-repeat;height:15px;width:14px}div.dark_rounded .pp_arrow_previous{background:url("../wp-video-lightbox/images/prettyPhoto/dark_rounded/sprite.png") 0 -71px no-repeat}div.dark_rounded .pp_arrow_next{background:url("../wp-video-lightbox/images/prettyPhoto/dark_rounded/sprite.png") -22px -71px no-repeat}div.dark_rounded .pp_bottom .pp_left{background:url("../wp-video-lightbox/images/prettyPhoto/dark_rounded/sprite.png") -88px -80px no-repeat}div.dark_rounded .pp_bottom .pp_right{background:url("../wp-video-lightbox/images/prettyPhoto/dark_rounded/sprite.png") -110px -80px no-repeat}div.dark_rounded .pp_loaderIcon{background:url("../wp-video-lightbox/images/prettyPhoto/dark_rounded/loader.gif") center center no-repeat}div.dark_square .pp_left,div.dark_square .pp_middle,div.dark_square .pp_right,div.dark_square .pp_content{background:#000}div.dark_square .pp_description{color:#fff;margin:0 85px 0 0}div.dark_square .pp_loaderIcon{background:url("../wp-video-lightbox/images/prettyPhoto/dark_square/loader.gif") center center no-repeat}div.dark_square .pp_expand{background:url("../wp-video-lightbox/images/prettyPhoto/dark_square/sprite.png") -31px -26px no-repeat;cursor:pointer}div.dark_square .pp_expand:hover{background:url("../wp-video-lightbox/images/prettyPhoto/dark_square/sprite.png") -31px -47px no-repeat;cursor:pointer}div.dark_square .pp_contract{background:url("../wp-video-lightbox/images/prettyPhoto/dark_square/sprite.png") 0 -26px no-repeat;cursor:pointer}div.dark_square .pp_contract:hover{background:url("../wp-video-lightbox/images/prettyPhoto/dark_square/sprite.png") 0 -47px no-repeat;cursor:pointer}div.dark_square .pp_close{width:75px;height:22px;background:url("../wp-video-lightbox/images/prettyPhoto/dark_square/sprite.png") -1px -1px no-repeat;cursor:pointer}div.dark_square .pp_nav{clear:none}div.dark_square .pp_nav .pp_play{background:url("../wp-video-lightbox/images/prettyPhoto/dark_square/sprite.png") -1px -100px no-repeat;height:15px;width:14px}div.dark_square .pp_nav .pp_pause{background:url("../wp-video-lightbox/images/prettyPhoto/dark_square/sprite.png") -24px -100px no-repeat;height:15px;width:14px}div.dark_square .pp_arrow_previous{background:url("../wp-video-lightbox/images/prettyPhoto/dark_square/sprite.png") 0 -71px no-repeat}div.dark_square .pp_arrow_next{background:url("../wp-video-lightbox/images/prettyPhoto/dark_square/sprite.png") -22px -71px no-repeat}div.dark_square .pp_next:hover{background:url("../wp-video-lightbox/images/prettyPhoto/dark_square/btnNext.png") center right no-repeat;cursor:pointer}div.dark_square .pp_previous:hover{background:url("../wp-video-lightbox/images/prettyPhoto/dark_square/btnPrevious.png") center left no-repeat;cursor:pointer}div.light_square .pp_expand{background:url("../wp-video-lightbox/images/prettyPhoto/light_square/sprite.png") -31px -26px no-repeat;cursor:pointer}div.light_square .pp_expand:hover{background:url("../wp-video-lightbox/images/prettyPhoto/light_square/sprite.png") -31px -47px no-repeat;cursor:pointer}div.light_square .pp_contract{background:url("../wp-video-lightbox/images/prettyPhoto/light_square/sprite.png") 0 -26px no-repeat;cursor:pointer}div.light_square .pp_contract:hover{background:url("../wp-video-lightbox/images/prettyPhoto/light_square/sprite.png") 0 -47px no-repeat;cursor:pointer}div.light_square .pp_close{width:75px;height:22px;background:url("../wp-video-lightbox/images/prettyPhoto/light_square/sprite.png") -1px -1px no-repeat;cursor:pointer}div.light_square .pp_nav .pp_play{background:url("../wp-video-lightbox/images/prettyPhoto/light_square/sprite.png") -1px -100px no-repeat;height:15px;width:14px}div.light_square .pp_nav .pp_pause{background:url("../wp-video-lightbox/images/prettyPhoto/light_square/sprite.png") -24px -100px no-repeat;height:15px;width:14px}div.light_square .pp_arrow_previous{background:url("../wp-video-lightbox/images/prettyPhoto/light_square/sprite.png") 0 -71px no-repeat}div.light_square .pp_arrow_next{background:url("../wp-video-lightbox/images/prettyPhoto/light_square/sprite.png") -22px -71px no-repeat}div.light_square .pp_next:hover{background:url("../wp-video-lightbox/images/prettyPhoto/light_square/btnNext.png") center right no-repeat;cursor:pointer}div.light_square .pp_previous:hover{background:url("../wp-video-lightbox/images/prettyPhoto/light_square/btnPrevious.png") center left no-repeat;cursor:pointer}div.facebook .pp_top .pp_left{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/sprite.png") -88px -53px no-repeat}div.facebook .pp_top .pp_middle{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/contentPatternTop.png") top left repeat-x}div.facebook .pp_top .pp_right{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/sprite.png") -110px -53px no-repeat}div.facebook .pp_content_container .pp_left{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/contentPatternLeft.png") top left repeat-y}div.facebook .pp_content_container .pp_right{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/contentPatternRight.png") top right repeat-y}div.facebook .pp_expand{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/sprite.png") -31px -26px no-repeat;cursor:pointer}div.facebook .pp_expand:hover{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/sprite.png") -31px -47px no-repeat;cursor:pointer}div.facebook .pp_contract{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/sprite.png") 0 -26px no-repeat;cursor:pointer}div.facebook .pp_contract:hover{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/sprite.png") 0 -47px no-repeat;cursor:pointer}div.facebook .pp_close{width:22px;height:22px;background:url("../wp-video-lightbox/images/prettyPhoto/facebook/sprite.png") -1px -1px no-repeat;cursor:pointer}div.facebook .pp_description{margin:0 37px 0 0}div.facebook .pp_loaderIcon{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/loader.gif") center center no-repeat}div.facebook .pp_arrow_previous{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/sprite.png") 0 -71px no-repeat;height:22px;margin-top:0;width:22px}div.facebook .pp_arrow_previous.disabled{background-position:0 -96px;cursor:default}div.facebook .pp_arrow_next{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/sprite.png") -32px -71px no-repeat;height:22px;margin-top:0;width:22px}div.facebook .pp_arrow_next.disabled{background-position:-32px -96px;cursor:default}div.facebook .pp_nav{margin-top:0}div.facebook .pp_nav p{font-size:15px;padding:0 3px 0 4px}div.facebook .pp_nav .pp_play{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/sprite.png") -1px -123px no-repeat;height:22px;width:22px}div.facebook .pp_nav .pp_pause{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/sprite.png") -32px -123px no-repeat;height:22px;width:22px}div.facebook .pp_next:hover{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/btnNext.png") center right no-repeat;cursor:pointer}div.facebook .pp_previous:hover{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/btnPrevious.png") center left no-repeat;cursor:pointer}div.facebook .pp_bottom .pp_left{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/sprite.png") -88px -80px no-repeat}div.facebook .pp_bottom .pp_middle{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/contentPatternBottom.png") top left repeat-x}div.facebook .pp_bottom .pp_right{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/sprite.png") -110px -80px no-repeat}div.pp_pic_holder a:focus{outline:none}div.pp_overlay{background:#000;display:none;left:0;position:absolute;top:0;width:100%;z-index:9500}div.pp_pic_holder{display:none;position:absolute;width:100px;z-index:10000}.pp_content{height:40px;min-width:40px}* html .pp_content{width:40px}.pp_content_container{position:relative;text-align:left;width:100%}.pp_content_container .pp_left{padding-left:20px}.pp_content_container .pp_right{padding-right:20px}.pp_content_container .pp_details{float:left;margin:10px 0 2px}.pp_description{display:none;margin:0}.pp_social{float:left;margin:0}.pp_social .facebook{float:left;margin-left:5px;width:55px;overflow:hidden}.pp_social .twitter{float:left}.pp_nav{clear:right;float:left;margin:3px 10px 0 0}.pp_nav p{float:left;white-space:nowrap;margin:2px 4px}.pp_nav .pp_play,.pp_nav .pp_pause{float:left;margin-right:4px;text-indent:-10000px}a.pp_arrow_previous,a.pp_arrow_next{display:block;float:left;height:15px;margin-top:3px;overflow:hidden;text-indent:-10000px;width:14px}.pp_hoverContainer{position:absolute;top:0;width:100%;z-index:2000}.pp_gallery{display:none;left:50%;margin-top:-50px;position:absolute;z-index:10000}.pp_gallery div{float:left;overflow:hidden;position:relative}.pp_gallery ul{float:left;height:35px;position:relative;white-space:nowrap;margin:0 0 0 5px;padding:0}.pp_gallery ul a{border:1px rgba(0,0,0,0.5) solid;display:block;float:left;height:33px;overflow:hidden}.pp_gallery ul a img{border:0}.pp_gallery li{display:block;float:left;margin:0 5px 0 0;padding:0}.pp_gallery li.default a{background:url("../wp-video-lightbox/images/prettyPhoto/facebook/default_thumbnail.gif") 0 0 no-repeat;display:block;height:33px;width:50px}.pp_gallery .pp_arrow_previous,.pp_gallery .pp_arrow_next{margin-top:7px!important}a.pp_next{background:url("../wp-video-lightbox/images/prettyPhoto/light_rounded/btnNext.png") 10000px 10000px no-repeat;display:block;float:right;height:100%;text-indent:-10000px;width:49%}a.pp_previous{background:url("../wp-video-lightbox/images/prettyPhoto/light_rounded/btnNext.png") 10000px 10000px no-repeat;display:block;float:left;height:100%;text-indent:-10000px;width:49%}a.pp_expand,a.pp_contract{cursor:pointer;display:none;height:20px;position:absolute;right:30px;text-indent:-10000px;top:10px;width:20px;z-index:20000}a.pp_close{position:absolute;right:0;top:0;display:block;line-height:22px;text-indent:-10000px}.pp_loaderIcon{display:block;height:24px;left:50%;position:absolute;top:50%;width:24px;margin:-12px 0 0 -12px}#pp_full_res{line-height:1!important}#pp_full_res .pp_inline{text-align:left}#pp_full_res .pp_inline p{margin:0 0 15px}div.ppt{color:#fff;display:none;font-size:17px;z-index:9999;margin:0 0 5px 15px}div.pp_default .pp_content,div.light_rounded .pp_content{background-color:#fff}div.pp_default #pp_full_res .pp_inline,div.light_rounded .pp_content .ppt,div.light_rounded #pp_full_res .pp_inline,div.light_square .pp_content .ppt,div.light_square #pp_full_res .pp_inline,div.facebook .pp_content .ppt,div.facebook #pp_full_res .pp_inline{color:#000}div.pp_default .pp_gallery ul li a:hover,div.pp_default .pp_gallery ul li.selected a,.pp_gallery ul a:hover,.pp_gallery li.selected a{border-color:#fff}div.pp_default .pp_details,div.light_rounded .pp_details,div.dark_rounded .pp_details,div.dark_square .pp_details,div.light_square .pp_details,div.facebook .pp_details{position:relative}div.light_rounded .pp_top .pp_middle,div.light_rounded .pp_content_container .pp_left,div.light_rounded .pp_content_container .pp_right,div.light_rounded .pp_bottom .pp_middle,div.light_square .pp_left,div.light_square .pp_middle,div.light_square .pp_right,div.light_square .pp_content,div.facebook .pp_content{background:#fff}div.light_rounded .pp_description,div.light_square .pp_description{margin-right:85px}div.light_rounded .pp_gallery a.pp_arrow_previous,div.light_rounded .pp_gallery a.pp_arrow_next,div.dark_rounded .pp_gallery a.pp_arrow_previous,div.dark_rounded .pp_gallery a.pp_arrow_next,div.dark_square .pp_gallery a.pp_arrow_previous,div.dark_square .pp_gallery a.pp_arrow_next,div.light_square .pp_gallery a.pp_arrow_previous,div.light_square .pp_gallery a.pp_arrow_next{margin-top:12px!important}div.light_rounded .pp_arrow_previous.disabled,div.dark_rounded .pp_arrow_previous.disabled,div.dark_square .pp_arrow_previous.disabled,div.light_square .pp_arrow_previous.disabled{background-position:0 -87px;cursor:default}div.light_rounded .pp_arrow_next.disabled,div.dark_rounded .pp_arrow_next.disabled,div.dark_square .pp_arrow_next.disabled,div.light_square .pp_arrow_next.disabled{background-position:-22px -87px;cursor:default}div.light_rounded .pp_loaderIcon,div.light_square .pp_loaderIcon{background:url("../wp-video-lightbox/images/prettyPhoto/light_rounded/loader.gif") center center no-repeat}div.dark_rounded .pp_top .pp_middle,div.dark_rounded .pp_content,div.dark_rounded .pp_bottom .pp_middle{background:url("../wp-video-lightbox/images/prettyPhoto/dark_rounded/contentPattern.png") top left repeat}div.dark_rounded .currentTextHolder,div.dark_square .currentTextHolder{color:#c4c4c4}div.dark_rounded #pp_full_res .pp_inline,div.dark_square #pp_full_res .pp_inline{color:#fff}.pp_top,.pp_bottom{height:20px;position:relative}* html .pp_top,* html .pp_bottom{padding:0 20px}.pp_top .pp_left,.pp_bottom .pp_left{height:20px;left:0;position:absolute;width:20px}.pp_top .pp_middle,.pp_bottom .pp_middle{height:20px;left:20px;position:absolute;right:20px}* html .pp_top .pp_middle,* html .pp_bottom .pp_middle{left:0;position:static}.pp_top .pp_right,.pp_bottom .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px}.pp_fade,.pp_gallery li.default a img{display:none}
.wpvl_auto_thumb_box{
    position: relative;
    width: 200px;
    height: 150px;
}

.wpvl_auto_thumb_play{
	position: absolute;
	left: 75px;
	top: 50px;
}

.video_lightbox_auto_anchor_image{
	width: 200px;
	height: 150px;
}/*
    Theme Name: Epik
    Theme URI: http://my.studiopress.com/themes/epik/
	Description: Epik is a mobile responsive and HTML5 theme built for the Genesis Framework.
    Author: Appfinite
    Author URI: http://www.appfinite.com/
 
    Version: 1.3
 
	Tags: black, blue, default, gray, green, orange, pink, purple, red, one-column, two-columns, three-columns, fixed-width, custom-menu, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
 
    Template: genesis
    Template Version: 2.0
 
	License: GPL-2.0+
	License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
 
/* Table of Contents

	- HTML5 Reset
		- Baseline Reset
		- Box Sizing
		- Float Clearing
	- Defaults
		- Typographical Elements
		- Headings
		- Objects
		- Forms
		- Buttons
		- Message Boxes
		- Circles
		- Pricing Plans
	- Structure and Layout
		- Site Containers
		- Column Widths and Positions
		- Column Classes
	- Common Classes
		- WordPress
		- Genesis
		- Titles
	- Widgets
		- Slider Wide
		- Slider
		- Slider Misc
		- Welcome
		- Welcome Feature 1-3
		- Home Feature BG
		- Home Feature BG Alt
		- Home Feature BG Dark
		- Home Features
			- Home Feature (1-14)
		- Home Bottom Message
		- Featured Page and Featured Post
	- Plugins
		- Genesis eNews Extended
		- Genesis Latest Tweets
		- Gravity Forms
		- Jetpack
	- Site Header
		- Title Area
		- Widget Area
	- Site Navigation
		- Header Navigation
		- Primary Navigation
		- Secondary Navigation
	- Content Area
		- Entries
		- Pagination
		- Comments
	- Sidebars
	- Portfolio
	- Miscellaneous
	- Footer Widgets
	- Site Footer
	- Theme Colors
		- Black
		- Blue
		- Dark Blue
		- Gray
		- Green
		- Orange
		- Pink
		- Purple
		- Red
	- Media Queries
		- max-width: 1139px
		- max-width: 1023px
		- max-width: 960px
		- max-width: 767px
		- max-width: 580px
		- max-width: 480px

*/


/*
HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* Baseline Reset (normalize.css 2.1.2)
	Link: http://necolas.github.com/normalize.css/
--------------------------------------------- */

article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}


/* Box Sizing
--------------------------------------------- */

*,
input[type="search"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

/* Float Clearing
--------------------------------------------- */

.archive-pagination:before,
.clearfix:before,
.entry:before,
.entry-pagination:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.wrap:before {
	content: " ";
	display: table;
}

.archive-pagination:after,
.clearfix:after,
.entry:after,
.entry-pagination:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.wrap:after {
	clear: both;
	content: " ";
	display: table;
}


/*
Defaults
---------------------------------------------------------------------------------------------------- */

/* Typographical Elements
--------------------------------------------- */






html {
	font-size: 100%; /* 16px browser default */
}

body.home { background: #ffffff;  }

body {
	background: url("../../uploads/2014/09/training-bg31.png") top center repeat #220835;
	color: #333;
	font-family: 'Open Sans',"Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 100%;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.625;
}



a,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition:    all 0.1s ease-in-out;
	-ms-transition:     all 0.1s ease-in-out;
	-o-transition:      all 0.1s ease-in-out;
	transition:         all 0.1s ease-in-out;
}

::-moz-selection {
	background: #333;
	color: #fff;
}

::selection {
	background: #333;
	color: #fff;
}

a {
	color: #ef4723;
	font-weight: 700;
	text-decoration: none;
}

a img {
	margin-bottom: -4px;
	margin-bottom: -0.25rem;
}

a:hover {
	color: #ef4723;
	text-decoration: underline; font-weight:700;
}

p {
	margin: 0 0 20px;
	margin: 0 0 1.25rem;
	padding: 0;
}

strong {
	font-weight: 700;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

blockquote,
blockquote::before {
	color: #555;
}

blockquote {
	background: url("../../themes/epik/images/blockquote.png") no-repeat;
	border: none;
	margin: 5px 5px 20px;
	padding: 0 30px 5px 60px;
}

pre {
	background: #333;
	color: #ccc;
	overflow: scroll;
	padding: 0 1.25rem;
	padding: 0 20px;
	white-space: pre;
}

cite {
	font-style: normal;
}

.quote {
	background: #fff;
	border: 1px solid #ddd;
	color: #888;
	padding: 20px;
}

.quote-arrow {
	background-image: url("../../themes/epik/images/quote-arrow.png");
	background-position: center bottom;
	background-repeat: no-repeat;
	bottom: 1px;
	display: block;
	margin: 0 0 10px;
	padding: 14px 0 0;
	position: relative;
}

.quote-gray {
	background: #eee;
	border: 1px solid #ccc;
	color: #333;
	padding: 20px;
}

.quote-arrow-gray {
	background-image: url("../../themes/epik/images/quote-arrow-gray.png");
	background-position: center bottom;
	background-repeat: no-repeat;
	bottom: 1px;
	display: block;
	padding: 14px 0 0;
	position: relative;
}

.quote-black {
	background: #121212;
	border: 1px solid #353535;
	color: #fff;
	padding: 20px;
}

.quote-arrow-black {
	background-image: url("../../themes/epik/images/quote-arrow-black.png");
	background-position: center bottom;
	background-repeat: no-repeat;
	bottom: 1px;
	display: block;
	padding: 14px 0 0;
	position: relative;
}

.quote-black a {
	color: #aaa;
}

.quote-black p {
	color: #fff;
}

.quote strong {
    color: #333; 
    padding: 10px 0 0;   
}

/* Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #5b3a87;
        font-family: 'Open Sans Condensed', sans-serif;
	font-weight: 700;
	line-height: 1.5;
	margin: 0;
	margin-bottom: 16px;
	margin-bottom: 1rem;
	padding: 0; letter-spacing:-1px;
}

h1 {
	font-size: 60px;
	font-size: 2.25rem;
}

h2 {
	font-size: 54px;
	font-size: 1.875rem;
}

h3 {
	font-size: 44px;
	font-size: 1.5rem;
}

h4 {
	font-size: 36px;
	font-size: 1.25rem;
}

h5 {
	font-size: 22px;
	font-size: 1.125rem;
}

h6 {
	font-size: 20px;
	font-size: 1rem;
}

h1 a,
h2 a {
	color: #333;
}

h1 a:hover,
h2 a:hover {
	text-decoration: none; font-weight:400;
}

/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video {
	max-width: 100%;
}

img {
	height: auto; border:none;
	width: auto; /* IE8 */
}

.format-gallery #gallery-1 img {
	border: none;
}

/* Forms
--------------------------------------------- */

input,
select,
textarea {
	box-shadow: 0 1px 3px #eee;
	-moz-box-shadow: 0 1px 3px #eee;
	-webkit-box-shadow: 0 1px 3px #eee;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 3px;
	color: #999;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-size: 1rem;
	padding: 12px;
	padding: 0.75rem;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid #aaa;
	outline: none;
}

::-moz-placeholder {
	color: #999;
}

::-webkit-input-placeholder {
	color: #999;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	background: #5e3f84;
	border: none;
	color: #fff;
	cursor: pointer;
	font-weight: 400;
	/* letter-spacing: 1px;
	letter-spacing: 0.1rem; */
	padding: 12px 20px;
	padding: 0.75rem 1.25rem;
	width: auto;
}

.footer-widgets button,
.footer-widgets input[type="button"],
.footer-widgets input[type="reset"],
.footer-widgets input[type="submit"] {
	background: #111;
}

button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"] {
	-moz-transition:all .5s ease;	
	-o-transition:all .5s ease;	
	-webkit-transition:all .5s ease;
	opacity: .7;
	transition:all .5s ease;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

/* Buttons
--------------------------------------------- */

a.button {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
    display: inline-block;	
    font-size: 13px;
    font-weight: 400;	
    line-height: 13px;
    margin: 0 0 10px;
    padding: 8px 20px;
    text-decoration: none; text-transform:uppercase;	
}

a.button:hover {
	-moz-transition:all .5s ease;	
	-o-transition:all .5s ease;	
	-webkit-transition:all .5s ease;
	color: #fff !important;
	opacity: .7;
	transition:all .5s ease; text-transform:uppercase;	
}

a.button.small {
	background-color: #5e3f84;
	color: #fff;
    font-size: 13px;
    font-weight: bold;	
    line-height: 13px;
    padding: 8px 20px; text-transform:uppercase;
}

a.button.medium {
	background-color: #5e3f84;
	color: #fff;
    font-size: 16px;
    line-height: 26px;
    padding: 8px 20px; text-transform:uppercase;
}

a.button.large {
	background-color: #5e3f84;
	color: #fff;
    font-size: 18px;
    line-height: 24px;
    padding: 16px 32px; text-transform:uppercase;
}

a.button.xlarge {
	color: #fff;
    font-size: 26px;
    line-height: 40px;
    padding: 20px 100px; text-transform:uppercase;
}

a.button.slim {
	background-color: #5e3f84;
	color: #fff;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    padding: 4px 40px;
    text-transform: uppercase;
}

.footer-widgets button,
.footer-widgets input[type="button"],
.footer-widgets input[type="reset"],
.footer-widgets a.button.small,
.footer-widgets a.button.medium,
.footer-widgets a.button.large,
.footer-widgets .circle {
	background: #111;
}

a.button.black {
	background-color: #111 !important;
	border: 1px solid #000 !important;
	color: #fff !important; text-transform:uppercase;
}

a.button.blue {
	background-color: #1887e5 !important;
	border-bottom: 3px solid #105c9e !important;
	color: #fff !important; text-transform:uppercase;
}

a.button.darkblue {
	background-color: #293f5e !important;
	border: 1px solid #000 !important;
	color: #fff !important; text-transform:uppercase;
}

a.button.gray {
	background-color: #777 !important;
	border: 1px solid #555 !important;
	color: #fff !important; text-transform:uppercase;
}

a.button.green {
	background-color: #bdd335 !important;
	border: 1px solid #aabe2b !important;
	color: #fff !important; text-transform:uppercase;
}
a.button.green2 {
	background-color: #339966 !important;
	border-bottom: 3px solid #2e8358 !important;
	color: #fff !important; text-transform:uppercase;
}

a.button.orange {
	background-color: #ef4723 !important;
	border: 1px solid #d52600 !important;
	color: #fff !important; text-transform:uppercase;
}

a.button.pink {
	background-color: #f92357 !important;
	border: 1px solid #47204d !important;
	color: #fff !important; text-transform:uppercase;
}


a.button.purple {
	background-color: #370d55 !important;
	border: 1px solid #594299 !important;
	color: #fff !important; text-transform:uppercase;
}

a.button.red {
	background-color: #d91420 !important;
	border: 1px solid #a8271e !important;
	color: #fff !important; text-transform:uppercase;
}

/* Message Boxes
--------------------------------------------- */

.download-box {
    box-shadow: 0 2px 2px 0 #ddd;	
    -moz-box-shadow: 0 2px 2px 0 #ddd;	
    -webkit-box-shadow: 0 2px 2px 0 #ddd;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;	
	background: #d2eac2 url("../../themes/epik/images/download-arrow.png") no-repeat 10px 15px;
	border: 1px solid #a7d28a;
    color: #689c2a;
	margin: 0 2px 20px;
	padding: 14px 15px 20px 55px;	
}	

.info-box {
    box-shadow: 0 2px 2px 0 #ddd;	
    -moz-box-shadow: 0 2px 2px 0 #ddd;	
    -webkit-box-shadow: 0 2px 2px 0 #ddd;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;	
	background: #cae0ec url("../../themes/epik/images/info-button.png") no-repeat 10px 15px;
	border: 1px solid #aec3ce;
    color: #08557e;
	margin: 0 2px 20px;
	padding: 17px 15px 20px 55px;
}	

.alert-box {
    box-shadow: 0 2px 2px 0 #ddd;	
    -moz-box-shadow: 0 2px 2px 0 #ddd;	
    -webkit-box-shadow: 0 2px 2px 0 #ddd;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;	
	background: #f2dbdb url("../../themes/epik/images/alert-button.png") no-repeat 10px 15px;
	border: 1px solid #eab4b4;
    color: #c8001c;
	margin: 0 2px 20px;
	padding: 17px 15px 20px 55px;	
}	

.note-box {
    box-shadow: 0 2px 2px 0 #ddd;	
    -moz-box-shadow: 0 2px 2px 0 #ddd;	
    -webkit-box-shadow: 0 2px 2px 0 #ddd;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;	
	background: #ffec97 url("../../themes/epik/images/note-button.png") no-repeat 10px 15px;
	border: 1px solid #ded5af;
    color: #ac670e;
	margin: 0 2px 20px;
	padding: 17px 15px 20px 55px;
}	

.gray-box {
    box-shadow: 0 2px 2px 0 #ddd;	
    -moz-box-shadow: 0 2px 2px 0 #ddd;	
    -webkit-box-shadow: 0 2px 2px 0 #ddd;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;	
	background: #f5f5f5;
	border: 1px solid #e5e5e5;
    color: #888;
	margin: 0 2px 20px;
	padding: 20px 15px 20px;	
}

/* Circles */

span.circle {
	border-radius: 0.8em;
	-moz-border-radius: 0.8em;
	-webkit-border-radius: 0.8em;
	background: #000;
	color: #fff;
	display: inline-block;
	font-weight: 400;
	line-height: 1.6em;
	margin-right: 5px;
	text-align: center;
	width: 1.6em; 
}


/* 
20 Pricing Plans 
---------------------------------------------------------------------------------------------------- */

.plans {
	clear: both;
	margin: 0 auto;
	padding: 20px 0 0;
	text-align: center;
}

.plan-col {
	background: #eee;
	float: left;
	font-weight: 300;
	padding: 0;
	text-align: center;
	vertical-align: top;
}

.plan-col-popular {
	background: #fff;
	float: left;
	font-weight: 300;
	padding: 0;
	position: relative;
	text-align: center;
	vertical-align: top;
}

.plan-col, 
.plan-col-popular {		
	width: 25%;
}

.plan-col-wrap, 
.plan-col-popular-wrap {
	border: 1px solid #d3d3d3;
	margin: 0 auto;
	padding: 40px 10px;
}

.plans .plan-head h4 {
	font-size: 20px;
	line-height: 28px;
	margin: 0 0 20px;
	text-transform: uppercase;
	text-align: center;
}

.plan-head em {
	font-size: 14px;
}

.plan-pricing {
	background: url("../../themes/epik/images/border-img-x.png") repeat-x scroll center bottom;
	clear: both;
	margin: 0 0 20px;
	padding: 0 0 20px;
	text-align: center;
} 

.plan-price {
	font-size: 60px;
}

.plan-price sup {
	font-size: 24px;
}

.plan-pricing .monthly {
	font-size: 14px;
}

.plan-list {
	margin: 0 0 20px;
	overflow: hidden;
}

.plan-list li {
	list-style: none;
	margin: 0 0 20px;
}

.plan-list li a {
	font-weight: bold;
}

.plan-button {
	clear: both;
}

.plan-button a {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background: #303236;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	padding: 6px 25px 8px;
}

.plan-button a:hover {
	-moz-transition:all .5s ease;	
	-o-transition:all .5s ease;	
	-webkit-transition:all .5s ease;
	opacity: .7;
	transition:all .5s ease;
	text-decoration: underline;
}
	

/*
Structure and Layout
---------------------------------------------------------------------------------------------------- */

/* Site Containers
--------------------------------------------- */

.wrap {
	margin:26px auto 0 auto;
	max-width: 1140px;  padding-left:20px;
}

.site-inner {
	clear: both; margin:0;
	padding: 0;
}

.home .site-inner {
	padding-top: 0;
}

/* Column Widths and Positions
--------------------------------------------- */

/* Wrapping div for .content and .sidebar-primary */

.content-sidebar-sidebar .content-sidebar-wrap,
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	width: 920px; 
}

.content-sidebar-sidebar .content-sidebar-wrap {
	float: left;
}

.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	float: right;
}

/* Content  */

.content {
	float: right;
	width: 740px;
}

.content-sidebar .content,
.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content {
	float: left;
}

.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content,
.sidebar-sidebar-content .content {
	width: 520px;
}

.full-width-content .content {
	width: 100%;
}

/* Primary Sidebar */

.sidebar-primary {
	float: right;
	width: 360px;
}

.sidebar-content .sidebar-primary,
.sidebar-sidebar-content .sidebar-primary {
	float: left;
}

/* Secondary Sidebar */

.sidebar-secondary {
	float: left;
	width: 180px;
}

.content-sidebar-sidebar .sidebar-secondary {
	float: right;
}
.home .sidebar-primary {display:none;}

/* Column Classes
	Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css
--------------------------------------------- */

.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
	float: left;
	margin-left: 2.564102564102564%;
}

.one-half,
.three-sixths,
.two-fourths {
	width: 48.717948717948715%;
}

.one-third,
.two-sixths {
	width: 31.623931623931625%;
}

.four-sixths,
.two-thirds {
	width: 65.81196581196582%;
}

.one-fourth {
	width: 23.076923076923077%;
}

.three-fourths {
	width: 74.35897435897436%;
}

.one-sixth {
	width: 14.52991452991453%;
}

.five-sixths {
	width: 82.90598290598291%;
}

.first {
	clear: both;
	margin-left: 0;
}


/*
Common Classes
---------------------------------------------------------------------------------------------------- */

/* WordPress
--------------------------------------------- */

.avatar {
	float: left;
}

.alignleft .avatar {
	margin-right: 24px;
	margin-right: 1.5rem;
}

.alignright .avatar {
	margin-left: 24px;
	margin-left: 1.5rem;
}

.search-form {
	width: 50%;
}

.search-form input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

.sticky { }

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.5rem
}

img.alignnone {
	margin-bottom: 12px;
	margin-bottom: 0.75rem;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

img.alignleft,
.wp-caption.alignleft {
	margin: 0 24px 24px 0;
	margin: 0 1.5rem 1.5rem 0;
}

img.alignright,
.wp-caption.alignright {
	margin: 0 0 24px 24px;
	margin: 0 0 1.5rem 1.5rem;
}

.wp-caption-text {
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 700;
	margin: 0;
	text-align: center;
}

.gallery-caption { }

.widget_calendar table {
	width: 100%;
}

.widget_calendar td {
	text-align: center;
}

/* Genesis
--------------------------------------------- */

.breadcrumb {
	margin-bottom: 40px;
	margin-bottom: 2.5rem;
}

.archive-description,
.author-box {
	background: #fff; border-radius:5px;
	margin-bottom: 40px;
	margin-bottom: 2.5rem;
}

.archive-description,
.author-box  {
	margin-bottom: 40px;
	margin-bottom: 2.5rem;
	padding: 24px 40px;
	padding: 2.5rem 2.5rem 1.5rem; color:#666;
}

.author-box-title {
	color: #5e3f84;
	font-family: 'Fjalla One', sans-serif;
	font-size: 44px; font-weight:400;
	font-size: 3rem;
	margin-bottom: 4px; margin-top:-15px;
	margin-bottom: 0.25rem;
}

.author-box a { }

.author-box-content p {color:#666;}

.author-box p { 
	margin: 0;
}

.author-box .avatar {
	margin-right: 24px;
	margin-right: 1.5rem;
}

/* Titles
--------------------------------------------- */

.entry-title {
	font-size: 42px;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.3;
	padding: 0 20px; letter-spacing:-1px; 
}

.entry-title a {
	color: #511c60;
	font-weight: 600;
}

.sidebar .widgettitle a {
	/*color: #422864;*/
color:white;
}

.entry-title a:hover {
	color: #ff4d29; font-weight:600;
}

.widgettitle {
	color: #422864;
	font-size: 24px;
	/* font-size: 1.125rem;
	letter-spacing: 1px;
	letter-spacing: 0.1rem; */
	margin-bottom: 16px;
	margin-bottom: 1rem;
}

.site-header .widgettitle {
	color: #fff;
}

.sidebar .widgettitle {
	border: none;
	font-size: 24px; line-height:24px; font-weight:400; color:white;
	/* font-size: 0.875rem; */
	text-transform: uppercase;
}

.sidebar .widgettitle a {
	border: none;
}

.archive-title {
	font-size: 20px;
	font-size: 1.25rem;
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}


/*
Widgets
---------------------------------------------------------------------------------------------------- */

/* Slider Wide
--------------------------------------------- */

.slider-wide {	
    clear: both;
    width: 100%; background:none; text-align:center;
 background: -webkit-linear-gradient(#1e0035, #0a0012); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#1e0035, #0a0012); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#1e0035, #0a0012); /* For Firefox 3.6 to 15 */
  background: linear-gradient(#1e0035, #0a0012); /* Standard syntax */
/*border-top:3px solid #bdd335;*/ border-bottom:3px solid #ddd;

}

.slider-wide .wrap {
    margin: 0 auto;
    padding: 0;
    max-width: 100%; text-align:center; background:url("../../uploads/2014/09/training-bg31.png") top center repeat;

}

.slider-wide .widget {
	margin: 0;
}


/* Slider
--------------------------------------------- */

.slider {	
    clear: both; background:#ffffff; 
}

.slider .wrap {
    margin: 0 auto;
    padding: 0; 
    width: 1140px; 	
}

.slider .widget {
	margin: 0;
}

/* Slider Misc
--------------------------------------------- */

#genesis-responsive-slider {
	background: none !important;
	border: none !important;
	margin: 0 auto;
	padding: 0 !important;
	position: relative;
}

.flexslider {
	background: none !important;
}

.flex-direction-nav li .prev {
	left: 0 !important;
}

.flex-direction-nav li .next {
	right: 0 !important;
}

.flex-control-nav {
	margin: 12px 0 0 !important;
}

#genesis-responsive-slider li a {
	-moz-transition: none;
	-o-transition: none;
	-webkit-transition: none;
	transition: none;
}

#genesis-slider {
    background-color: #fff !important;
    border: medium none !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.slider-previous, .slider-previous:hover {
	margin-left: 10px !important;
}

.slider-next, .slider-next:hover {
	margin-right: 10px !important;
}


/* 
Welcome
---------------------------------------------------------------------------------------------------- */

.welcome {
	clear: both;
	    width: 100%; text-align:center;
 background:url("../../uploads/2014/09/training-bg31.png") top center repeat #1e0035;
border-top:3px solid #bdd335; border-bottom:3px solid #bdd335; color:f2f2f2; font-weight:300;
}

.welcome .wrap {
    margin: 0 auto;
    overflow: hidden;
    padding: 0; 
    width: 1184px;
    text-align:center; 
}

.welcome .widget {
	margin: 0;
	overflow: hidden; 
}

.welcome .widgettitle {
	font-size: 36px;
	font-size: 2.25rem;	
	font-weight: 300;
	line-height: 46px;
}

.welcome h4 {
	color: #000;
}

.welcome p {
	color: #2c2c2c;
    margin: 0 0 20px;
}

.welcome a {
	color: #412662;
}

.welcome-wide {
	clear: both; padding-right:30px; 
}
.welcome-wide p {color:#2c2c2c;}

/* Welcome Feature 1-3 */

.welcome-features {
	overflow: hidden;
	width: 100%; 
}

.welcome-features h4 {
	font-size: 20px;
	line-height: 26px;
}

.welcome-feature-1,
.welcome-feature-2 {
    float: left;
    margin: 0 2% 0 0;
    width: 32%; 
}

.welcome-feature-3 {
	float: right;
    width: 32%;
}	

.welcome-feature-1 .widgettitle, 
.welcome-feature-2 .widgettitle, 
.welcome-feature-3 .widgettitle {
	color: #fff;
	margin: 0 0 10px;
	padding: 0 0 10px;
}

.welcome-feature-1 h4, 
.welcome-feature-2 h4, 
.welcome-feature-3 h4 {
    color: #000;
    font-weight: 400;
    line-height: 26px;
    margin: 10px 0;
    padding: 0;
}

.welcome-feature-1 p, 
.welcome-feature-2 p, 
.welcome-feature-3 p {
	margin: 0 0 20px; color:#000;
}


/* 
Home Feature BG 
---------------------------------------------------------------------------------------------------- */

.home-feature-bg {
	/*border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	overflow: hidden;*/ background: url("../../uploads/2015/05/gr-str-bg.png") top left repeat #cedf61;
}

.home-feature-bg .wrap {
	margin: 0 auto;
	overflow: hidden;
	padding:  40px 0;
	
}

.home-feature-bg .featuredpage .page,
.home-feature-bg .featuredpost .post {
    float: left;
    margin: 0;
    overflow: hidden;
    padding: 0 0 5px;
}

.home-feature-bg .featuredpage .page h2,
.home-feature-bg .featuredpost .post h2 {
    margin: 10px 0;
}

.home-feature-bg .featuredpage .page h2 a,
.home-feature-bg .featuredpost .post h2 a {
	font-size: 15px;
}

.home-feature-bg .featuredpage img, 
.home-feature-bg .featuredpost img { 
	background: none;
	border: none;
	padding: 0;
}

.home-feature-bg .featuredpage img:hover, 
.home-feature-bg .featuredpost img:hover {
	opacity: .7;
	-moz-transition:all .5s ease;	
	-o-transition:all .5s ease;	
	-webkit-transition:all .5s ease;
	transition:all .5s ease;
}

.home-feature-bg .byline, 
.home-feature-bg .byline {
	font-size: 11px !important;
	line-height: 15px !important;
	margin: 0 0 8px !important;
}

.home-feature-bg p {
	margin: 0 0 25px;
}


/* 
Home Feature BG Alt 
---------------------------------------------------------------------------------------------------- */

.home-feature-bg-alt {
	background: /*url("../../../testing-1-2-3/wp-content/uploads/2014/08/alt-bg-grey.png.html") top left repeat #cedf61;*/ #ffffff;
border-top:2px solid #c7c7c7; border-bottom:2px solid #c7c7c7;
}

.home-feature-bg-alt .wrap {
	margin: 0 auto;
	overflow: hidden;
	padding: 5px 0;
	width: 100%;
}

.home-feature-bg-alt .featuredpage .page,
.home-feature-bg-alt .featuredpost .post {
    float: left;
    margin: 0;
    overflow: hidden;
    padding: 0 0 5px;
    width: 300px;
}

.home-feature-bg-alt .featuredpage .page h2 a,
.home-feature-bg-alt .featuredpost .post h2 a {
	font-size: 15px;
}

.home-feature-bg-alt .featuredpage img, 
.home-feature-bg-alt .featuredpost img { 
	background: none;
	border: none;
	padding: 0;
}

.home-feature-bg-alt .featuredpage img:hover, 
.home-feature-bg-alt .featuredpost img:hover {
	opacity: .7;
	-moz-transition:all .5s ease;	
	-o-transition:all .5s ease;	
	-webkit-transition:all .5s ease;
	transition:all .5s ease;
}

.home-feature-bg-alt .byline, 
.home-feature-bg-alt .byline {
	font-size: 11px !important;
	line-height: 15px !important;
	margin: 0 0 8px !important;
}

.home-feature-bg-alt p {
	margin: 0 0 25px;
}



/* 
Home Feature BG Dark 
---------------------------------------------------------------------------------------------------- */

.home-feature-bg-dark {
	background: #3f2361;
	color: #fff;
}

.home-feature-bg-dark .wrap {
	margin: 0 auto;
	overflow: hidden;
	padding: 40px 0 0;
	width: 1140px;
}

.home-feature-bg-dark .featuredpage .page,
.home-feature-bg-dark .featuredpost .post {
    float: left;
    margin: 0;
    overflow: hidden;
    padding: 0 0 5px;
    width: 300px;
}

.home-feature-bg-dark .featuredpage .page h2 a,
.home-feature-bg-dark .featuredpost .post h2 a {
	font-size: 15px;
}

.home-feature-bg-dark .featuredpage img, 
.home-feature-bg-dark .featuredpost img { 
	background: none;
	border: none;
	padding: 0;
}

.home-feature-bg-dark .featuredpage img:hover, 
.home-feature-bg-dark .featuredpost img:hover {
	opacity: .7;
	-moz-transition:all .5s ease;	
	-o-transition:all .5s ease;	
	-webkit-transition:all .5s ease;
	transition:all .5s ease;
}

.home-feature-bg-dark .byline, 
.home-feature-bg-dark .byline {
	font-size: 11px !important;
	line-height: 15px !important;
	margin: 0 0 8px !important;
}

.home-feature-bg-dark h1,
.home-feature-bg-dark h2,
.home-feature-bg-dark h3,
.home-feature-bg-dark h4,
.home-feature-bg-dark h5,
.home-feature-bg-dark h6 {
	color: #fff;
}

.home-feature-bg-dark p {
	color: #aaa;
	margin: 0 0 20px;
}

.home-feature-bg-dark a {
	color: #fff;
}


/*
Home Features
---------------------------------------------------------------------------------------------------- */

/* Home Feature 1 */

.home-feature-1 {
	float: left;
	margin: 0 20px 0 0;
	width: 49%;
}

.home-feature-1 .widget {
	margin: 0 0 40px;
	overflow: hidden;
}

.home-feature-1 .widgettitle {
	font-size: 30px;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 28px;
}

/* Home Feature 2 */

.home-feature-2 {
	float: right;
	margin: 0;
	width: 49%;
}

.home-feature-2 .widget {
	margin: 0 0 40px;
	overflow: hidden;
}

.home-feature-2 .widgettitle {
	font-size: 24px;
	font-weight: 400;
	line-height: 28px;
}

/* Home Feature 3 */

.home-feature-3 {
	background: none;
    clear: both;
   	margin: 0 auto ;
   	overflow: hidden;
   	padding: 0;
   	text-align: left;
}

.home-feature-3 .widget {
	margin: 0;
	overflow: hidden;
}

/* Home Feature 4 */

.home-feature-4 {
	margin: 0;
	width: 100%;
}

.home-feature-4 .widget {
	margin: 0 0 40px;
	overflow: hidden;
}

/* Home Feature 5 */

.home-feature-5 {
	margin: 0;
	width: 100%; 
}

.home-feature-5 .widget {
	margin: 0 0 40px;
	overflow: hidden;
}

/* Home Feature 6 */

.home-feature-6 {
	margin: 0;
	width: 100%; background-color:#ffffff; background-image:none;
}

.home-feature-6 .widget {
	margin: 0;
	overflow: hidden; background-color:#ffffff; background-image:none;
}

/* Home Feature 7 */

.home-feature-7 {
	margin: 0;
	width: 100%;
}

.home-feature-7 .widget {
	margin: 0 0 40px;
	overflow: hidden;
}

/* Home Feature 8 */

.home-feature-8 {
	margin: 0; padding-bottom:20px;
	width: 100%;
}

.home-feature-8 .widget {
	margin: 0;
	overflow: hidden;
}

/* Home Feature 9 */

.home-feature-9 {
	clear: both;
	text-align: center;
}

.home-feature-9 .widget {
	margin: 0 0 40px;
	overflow: hidden;
}

.home-feature-9 h4 {
	font-size: 32px;
	font-weight: 400;
	line-height: 38px;
}

/* Home Feature 10 */

.home-feature-10 {
	float: left;
	margin: 0 1.3% 0 0;
	width: 24%;
}

.home-feature-10 .widget {
	margin: 0;
	overflow: hidden;
}

/* Home Feature 11 */

.home-feature-11 {
	float: left;
	margin: 0 1.3% 0 0;
	width: 24%;
}

.home-feature-11 .widget {
	margin: 0;
	overflow: hidden;
}

/* Home Feature 12 */

.home-feature-12 {
	float: left;
	margin: 0 1.3% 0 0;
	width: 24%;
}

.home-feature-12 .widget {
	margin: 0;
	overflow: hidden;
}

/* Home Feature 13 */

.home-feature-13 {
	float: right;
	margin: 0;
	width: 24%;
}

.home-feature-13 .widget {
	margin: 0;
	overflow: hidden;
}

/* Home Feature 14 */

.home-feature-14 {
	margin: 0;
	text-align: left;
	width: 100%;
}

.home-feature-14 .widget {
	margin: 0;
	overflow: hidden;
}

/* Home Feature h4 */

.home-feature-3 h4,
.home-feature-4 h4,
.home-feature-5 h4,
.home-feature-6 h4,
.home-feature-7 h4,
.home-feature-8 h4,
.home-feature-9 h4,
.home-feature-14 h4 {
	font-size: 36px;
	font-size: 2.25rem;
	font-weight: 300;
	line-height: 46px;
}

.home-feature-10 h4,
.home-feature-11 h4,
.home-feature-12 h4,
.home-feature-13 h4 {
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 28px;
}

/* Featured Page and Featured Post
--------------------------------------------- */

.featured-content .entry {
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
	padding: 0 0 20px;
	padding: 0 0 1.25rem;
}

.featured-content .entry-title {
	border: none;
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 1.5;
	margin: 10px 0;
	margin: 0.625rem 0;
}

.featured-content .entry-title a {
	border: none;
}


/*
Plugins
---------------------------------------------------------------------------------------------------- */

/* Genesis eNews Extended
--------------------------------------------- */

.enews-widget .widgettitle {
	color: #333;
}

.sidebar .enews-widget .widgettitle {
	color: #fff;
}

.enews-widget input {
	margin-bottom: 20px;
	margin-bottom: 1.25rem;;
}

.enews-widget input:focus {
	border: 1px solid #ddd;
}

.enews-widget input[type="submit"] {
	background: #2a2a2a;
	border: none;
	color: #fff;
	margin: 0 0 20px;
	margin: 0 0 1.25rem;
	width: auto;
}

.sidebar .enews-widget input[type="submit"] {
	background: #aaa;
	border: none;
	box-shadow: none;
	width: 100%;;
}

.footer-widgets .enews-widget input[type="submit"] {
	background: #111;
	padding: 16px 24px;
	padding: 1rem 1.5rem;
}

.enews-widget input:hover[type="submit"] {
	opacity: .7;
	transition: all .5s ease;
}

.sidebar .enews-widget input:hover[type="submit"] {
	background: #ccc;
	box-shadow: none;
	opacity: 10;
	transition: 0;
}

/* Genesis Latest Tweets
--------------------------------------------- */

.latest-tweets ul li {
	margin-bottom: 16px;
	margin-bottom: 1rem;
}

/* Gravity Forms
--------------------------------------------- */

div.gform_wrapper input[type="email"],
div.gform_wrapper input[type="text"],
div.gform_wrapper textarea,
div.gform_wrapper .ginput_complex label {
	font-size: 16px;
	font-size: 1rem;
	padding: 8px;
	padding: 0.5rem;
}

div.gform_wrapper .ginput_complex label {
	padding: 0;
}

div.gform_wrapper li,
div.gform_wrapper form li {
	margin: 16px 0 0;
	margin: 1rem 0 0;
}

div.gform_wrapper .gform_footer input[type="submit"] {
	font-size: 18px;
	font-size: 1.125rem;
}

/* Jetpack
--------------------------------------------- */

img#wpstats {
	display: none;
}


/*
Site Header
---------------------------------------------------------------------------------------------------- */

.head-wrap {
	background:#ffffff;
	margin: 0; padding:0; border-bottom:3px solid #ee4524;
}

.site-header {
	margin: 0 auto;
	/*max-width: 1140px;*/ max-width: 1080px;
}

.site-header .wrap {
	padding: 16px 0 0 0;
	padding: 1rem 0 0 0;
}

/* Title Area
--------------------------------------------- */

.title-area {
	font-family: "Open Sans",sans-serif;
	font-weight: 700;
	float: left;
	padding: 0;
	padding: 0;
	width: 360px;
}

.header-image .title-area {
	padding: 0;
}

.site-title {
	font-size: 32px;
	font-size: 2rem;
	letter-spacing: 1px;
	letter-spacing: 0.0625rem;
	line-height: 1;
	margin: 0 0 10px 0;
	margin: 0 0 0.625rem 0;
}

.site-header .site-title a {
	color: #fff;
	font-weight: 300;
}

.site-title a:hover {
	color: #aaa;
	text-decoration: none;  font-weight:400;
}

.site-description {
	color: #999;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1;
	margin: 0;
}

/* Full width header, no widgets */

.header-full-width .title-area,
.header-full-width .site-title {
	width: 100%;
}

.header-image .site-description,
.header-image .site-title a {
	display: block;
	text-indent: -9999px; 
}

/* Logo, hide text */

.header-image .site-header .wrap {
	padding:0;
}

.header-image .site-title a {
	float: left;
	min-height: 130px;
	width: 100%;
}

/* Widget Area
--------------------------------------------- */

.site-header .widget-area {
	color: #ddd;
	float: right;
	text-align: right;
	width: auto;
}

.site-header .widget-area a {
	color: #fff;
}

.header-image .site-header .widget-area {
	padding: 0;
	/* padding: 2.5rem 0 0 0; */ 
}


.site-header .search-form {
	float: right;
}


/*
Site Navigation
---------------------------------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	color: #ccc;
	font-size: 13px;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 1px;
	letter-spacing: 0.1rem;
	line-height: 1.5;
	margin: 0;
	padding: 0;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	float: left;
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-align: left;
}

.genesis-nav-menu a {
	border: none;
	color: #fff;
	display: block;
	font-weight: 400;
	padding: 13px 0; margin: 0 13px;
	position: relative;
}

.nav-primary .genesis-nav-menu a {
	color: #fff;
	padding: 13px 6px 13px 0;
}

.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover {
	text-decoration: none;  font-weight:400;
}

.genesis-nav-menu .sub-menu .current-menu-item > a {
	color: #aaa;
}

.genesis-nav-menu > .menu-item > a { }

.genesis-nav-menu .sub-menu {
	box-shadow:0 0 4px rgba(0, 0, 0, 0.1);
	-moz-box-shadow:0 0 4px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow:0 0 4px rgba(0, 0, 0, 0.1);
	left: -9999px;
	margin: 0;
	opacity: 0;
	padding: 10px 0 0 0;
	position: absolute;
	-webkit-transition: opacity .4s ease-in-out;
	-moz-transition:    opacity .4s ease-in-out;
	-ms-transition:     opacity .4s ease-in-out;
	-o-transition:      opacity .4s ease-in-out;
	transition:         opacity .4s ease-in-out;
	width: 280px;
	z-index: 99; background: /*#220835;*/ #ffffff; border:3px solid #c0d72f; border-radius:5px;
}

.genesis-nav-menu .sub-menu a {
	 background:none;
	color: /*#fff;*/ #ee4524;
	letter-spacing: 0;
	padding: 4px 13px;
	position: relative;
	width: 260px;
}

.genesis-nav-menu .sub-menu .sub-menu {
	margin: -45px 0 0 201px;
}

.genesis-nav-menu .menu-item:hover {
	position: static;  font-weight:400;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	left: auto;
	opacity: 1;  font-weight:400;
}

.genesis-nav-menu > .first > a { }

.genesis-nav-menu > .last > a { }

.genesis-nav-menu > .right {
	display: inline-block;
	float: right;
	list-style-type: none;
	padding: 13px 0 13px 20px;
}

.genesis-nav-menu > .right > a {
	background: none; 
	padding: 0;
}

.genesis-nav-menu > .rss > a {
	margin-left: 48px;
	margin-left: 4.8rem;
}

.genesis-nav-menu > .search {
	padding: 0;
}

.genesis-nav-menu > .search input {
	padding: 6px;
}

.genesis-nav-menu .search-form {
	width: 100%;
}

/* Site Header Navigation
--------------------------------------------- */

.site-header .genesis-nav-menu a {
	color: #370068; font-weight:700; text-transform:uppercase; font-family: "Open Sans Condensed", sans-serif; font-size:16px;  line-height:18px; margin-bottom:2px; text-transform:uppercase; margin-right:3px; letter-spacing:-1px;
}

.site-header .genesis-nav-menu .current-menu-item > a,
.site-header .genesis-nav-menu a:hover {
	color: #ef4723; font-weight:700;
}

.site-header .genesis-nav-menu .sub-menu .current-menu-item > a { 
	color: #ef4723; font-weight:700;
}

/* Primary Navigation
--------------------------------------------- */

.nav-primary {	
	clear: both;
    line-height: 1;	
	margin: 0 auto;
	overflow: hidden;
	width: auto;
}

.nav-primary a:hover,
.nav-primary .current-menu-item > a {
	color: #aaa;  font-weight:400;
}

.nav-primary .genesis-nav-menu > .right > a {
    background: none;
}

.nav-primary .sub-menu a:hover {
	color: #aaa;  font-weight:400;
}

/* Secondary Navigation
--------------------------------------------- */

.nav-secondary {
	background: #220835; border-bottom:3px solid #ee4524;
	clear: both; 
}

.nav-secondary .genesis-nav-menu a {
	font-size: 1.3em; font-family:"Open Sans Condensed", sans-serif; 
	padding: 8px 6px 13px 6px; text-transform:uppercase; font-weight:600;
}

.nav-secondary .genesis-nav-menu > .right {
	padding: 8px 0 8px 6px;
}

.nav-secondary a:hover,
.nav-secondary .current-menu-item > a {
	color: #c0d72f;  font-weight:600;
}

.nav-secondary .genesis-nav-menu > .right > a,
.nav-secondary .genesis-nav-menu > .right > a:hover {
    background: none;
    padding: 0; font-weight:600;
}

.nav-secondary .sub-menu a:hover {
	color: #c0d72f; font-weight:600;
}

.nav-secondary .genesis-nav-menu .sub-menu .sub-menu {
	margin: 0 0 0 201px; 
}

/*
Content Area
---------------------------------------------------------------------------------------------------- */

/* Entries
--------------------------------------------- */

.entry {
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 3px 6px rgba(0,0,0, .2);
	background: #fff;
	margin: 0 3px 40px;
	padding: 20px 0 0; border-radius:15px;
}

.entry-content {
	padding: 0 20px 20px;
}

.entry-content a {
	color: #ef4723; font-weight:700;
}

.entry-content a:hover {
	color: #ef4723;  font-weight:700; text-decoration:underline;
}

.entry-content .attachment a,
.entry-content .gallery a {
	border: none;
}

.entry-content ol,
.entry-content p,
.entry-content ul,
.quote-caption {
	margin-bottom: 25px;
	margin-bottom: 1.563rem;
}

.entry-content ol li,
.entry-content ul li {
	margin-left: 40px;
	margin-left: 2.5rem;
}

.entry-content ol li {
	list-style-type: decimal;
}

.entry-content ul li {
	list-style-type: disc;
}

.entry-content ol ol,
.entry-content ul ul,
.entry-content .wp-caption p {
	margin-bottom: 0;
}

.entry-meta {
	clear: both;
	color: #454545;
	font-size: 14px;
	font-size: 0.875rem;
}

.entry-meta a {
	font-weight: 700;
}

.entry-header .entry-meta {
	border-bottom: 1px solid #eee;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 400;
	margin: 0 0 10px;
	margin: 0 0 1.25rem;
	padding: 20px;
	text-transform: uppercase;
}

.entry-footer .entry-meta {
	border-top: 1px solid #eee;
	margin: 0;
	overflow: hidden;
	padding: 16px 0;
	padding: 1rem 0;
}

.entry-footer  {
	background: #eee;
	padding: 10px 20px;
	padding: 0.625rem 1.25rem;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
	margin: 0 0.6rem 0 0.2rem;
}

.entry-categories {
	display: block;
	float: left;
	font-size: 12px;
}

.entry-tags {
	float: right;
	font-size: 12px;
}

/* Pagination
--------------------------------------------- */

.archive-pagination,
.entry-pagination {
	clear: both;
	font-size: 14px;
	font-size: 0.875rem;
	margin: 40px 0;
	margin: 2.5rem 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background: #444;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-weight: 700;
	padding: 4px 12px;
	padding: 0.25rem 0.75rem;
}

.archive-pagination li a:hover,
.archive-pagination li.active a {
	background: #1e1e1e;
}

/* Comments
--------------------------------------------- */

.entry-comments,
#respond { color:#ebebeb; }

.entry-comments,
.ping-list,
#respond {
	margin-bottom: 40px;
	margin-bottom: 2.5rem;
}

.entry-comments a,
#respond a { }

.entry-comments .comment-author {
	margin: 0;
}

#respond input[type="email"],
#respond input[type="text"],
#respond input[type="url"] {
	width: 50%
}

#respond label {
	display: block;
	margin-right: 12px;
	margin-right: 1.2rem;
}

.comment-list li,
.ping-list li {
	list-style-type: none;
	margin-top: 24px;
	margin-top: 1.5rem;
	padding: 32px;
	padding: 3.2rem;
}

.comment-list li li { }

li.comment {
	border-radius: 10px;
	padding: 30px;
}

li.comment ul li {
	border-radius: 0;
	border-left: 1px solid #ddd;
}

.thread-alt li.comment {
	border-radius: 0;
	border-left: 1px solid #aaa;
}

.comment .avatar {
	margin: 0 16px 24px 0;
	margin: 0 1rem 1.5rem 0;
}

.thread-alt {
	background-color: #ddd;
}

.thread-even {
	background-color: #fff;
}

.bypostauthor { }

.form-allowed-tags {
	background: #ab67a6;
	font-size: 14px;
	font-size: 0.875rem;
	padding: 24px;
	padding: 1.5rem;
}
#reply-title {color:#ebebeb;}
.comment-reply-title {color:#ebebeb;}
#comments h3 {color:#ebebeb;}
.logged-in-as {color:#ebebeb;}
.comment-form-comment {color:#ebebeb;}
.comment-content {color:#333;}
.says {color:#333;}
/*
Sidebars
---------------------------------------------------------------------------------------------------- */

.sidebar {
	color: #666;
	font-size: 16px;
	font-size: 1rem;
}

.sidebar p:last-child,
.sidebar ul {
	margin: 0;
}

.sidebar li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.6rem;
	padding: 0;
	word-wrap: break-word;
}

.sidebar ul > li:last-child {
	margin-bottom: 0;
}

.sidebar .widget {
	/*border-bottom: 1px solid #ddd;*/
	margin-bottom: 10px;
	margin-bottom: 1rem;
	padding-bottom: 10px;
	padding-bottom: 1rem;
}

.sidebar .search-form {
	width: 100%;
}

.sidebar .enews-widget {
	background: #2a2a2a;
	color: #aaa;
	padding: 30px;
	padding: 1.875rem;
}


/*
Portfolio
---------------------------------------------------------------------------------------------------- */

.entry-portfolio {
	margin: 0 0 40px;
	padding: 0;
}

.content .portfolio {
	background: #fff;
    float: left;
    margin: 0 2% 40px 0 !important;
    overflow: hidden;
    padding: 0;
    width: 23%;
}

.portfolio .post-image {
	margin: 0;
}

.portfolio .post-image:hover {
	-moz-transition:all .5s ease;	
	-o-transition:all .5s ease;	
	-webkit-transition:all .5s ease;
	transition:all .5s ease;
	opacity: 0.6;
}

.portfolio .entry-title {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 24px;
	margin: 0;
	padding: 15px 0;
}

.page-template-page_portfolio-php h1 {
	padding: 0;
}
	
.portfolio .entry-title a {
	font-family: Helvetica, Arial, sans-serif;
	font-weight: 700;
	margin: 0;
	text-decoration: none;
}

.portfolio p {
	font-size: 16px;
	font-size: 1rem;
}

.portfolio .more-link {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
	background: #2a2a2a;
	color: #fff;
	display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 400;	
	padding: 4px 12px;
    margin: 20px 0 0;
	text-align: center;
	text-decoration: none;	
	width: 110px;
}
	
.content .portfolio .more-link:hover {
	background: #555;
	color: #fff;
}

.portfolio .entry-content {
	padding: 0 20px 0;
}

.portfolio .entry-footer {
	background: none;
	padding: 0;
}


/*
Miscellaneous
---------------------------------------------------------------------------------------------------- */

/* Embedded Gists */
.line-pre::before,
.line-pre::after,
.line::before,
.line::after {
	content: '';
}
 
.line-number,
.gist .line-data > .line-pre {
	line-height: 1.2;
}

.tagcloud a {
	background: #eee;
	float: left;
	padding: 3px 10px;
	margin: 0 2px 5px;
}

.tagcloud a:hover {
	background: #f5f5f5;
}

/* Content Align (Left & Right) */

.feature-left {
	float: left;
	margin: 0 2% 0 0;
	width:  48%;
}

.feature-right {
	float: right;
	width:  48%;
}

.feature-margin {
	margin-top: 80px;
}

/* Check List */

.check-list {
	list-style: none;
	margin: 0 0 30px;
}

.check-list li {
	background-image: url("../../themes/epik/images/checkmark.png.html");
	background-position: left;
	background-repeat: no-repeat;
	padding: 0 0 0 30px;
}

/* Responsive Videos */

.video-container {
	height: 0; 
	overflow: hidden;
    padding-bottom: 56.25%;
    padding-top: 30px;
    position: relative;
}

.video-container iframe,
.video-container object,
.video-container embed {
    left: 0;     
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}


/*
Footer Widgets
---------------------------------------------------------------------------------------------------- */

.footer-widgets {		
	background:/*url("../../../testing-1-2-3/wp-content/uploads/2014/07/slider-wide-widget-bg.png.html") top repeat-x*/ #19002b;	
	clear: both;
	color: #fff;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.4; border-top: 3px solid #c0d72f;
}

.footer-widgets .wrap {
	padding: 20px 0 20px;
	padding: 3.75rem 0 1.25rem; 
}

.footer-widgets a {
	color: #fff;
}

.footer-widgets p {
	color: #aaa;
}

.footer-widgets-1,
.footer-widgets-2 {
	float: left;
	margin: 0 4.166666666% 0 0;
	width: 30.555555555%;
}

.footer-widgets-3 {
	float: right;
	width: 30.555555555%;
}

.footer-widgets h1,
.footer-widgets h2,
.footer-widgets h3,
.footer-widgets h4,
.footer-widgets h5,
.footer-widgets h6 {
    color: #fff;
}

.footer-widgets .widget {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

.footer-widgets .widgettitle {
	color: #fff;
	font-family: 'Open Sans',"Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-size: 0.875rem;
	text-transform: uppercase;
}

.footer-widgets li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.6rem;
	word-wrap: break-word;
}

.footer-widgets .search-form {
	width: 100%;
}

.footer-widgets .entry {
	background: none;
}

.footer-widgets .featured-content .entry-title {
	margin: 0 0 10px;
}


/*
Site Footer
---------------------------------------------------------------------------------------------------- */

.site-footer {
	background: #1a1a1a;
	color: #aaa;
	font-size: 14px;
	font-size: 0.875rem;
	text-align: center; display:none;
}

.site-footer .wrap {
	padding: 20px;
	padding: 1.875rem 1.25rem; 
}

.site-footer a { 
	color: #fff;
	font-weight: 400;
}

.site-footer p {
	margin: 0;
}


/* 
16 Theme Colors
---------------------------------------------------------------------------------------------------- */


/* Epik Purple
--------------------------------------------- */
 /*
.epik-purple a {
 	color: #8542c4;
}
.epik-purple a:hover {
 	color: #8542c4; text-decoration:underline;
}

.epik-purple .site-title a:hover {
	color: #eee;
}

.epik-purple .site-description {
	color: #eee;
}

.epik-purple .genesis-nav-menu a {
	color: #370068; font-size:30px;
}


.epik-purple .site-header .widget-area {
	color: #eee; text-align:right;
}

.whoforpurple {padding:10px; background:#fff; border-radius:15px; margin:0 auto; text-align:left; border:3px solid #49236a;}

.epik-purple .genesis-nav-menu a:hover,
.epik-purple .genesis-nav-menu .current-menu-item {
    color: #ff7c00;  font-weight:400;
}

.epik-purple .nav-primary .sub-menu a:hover,
.epik-purple .nav-secondary .sub-menu a:hover,
.epik-purple .site-header .sub-menu a:hover,
.epik-purple .site-header .genesis-nav-menu .sub-menu .current-menu-item > a,
.epik-purple .genesis-nav-menu .sub-menu .current-menu-item > a,
.epik-purple .genesis-nav-menu .sub-menu .current-menu-item > a:hover { 
	color: #ff7c00;  font-weight:400;
}


.epik-purple h1 a,
.epik-purple h2 a, .epik-purple h4 a {
	color: #5b3a87;
}

.epik-purple h1 a:hover,
.epik-purple h2 a:hover,
.epik-purple h4 a:hover {
	/* color: #8542c4; */
color: #f78412;  font-weight:400;
}

.epik-purple .head-wrap,
.epik-purple .author-box,
 {
	background:#fff;
	
}

.epik-purple .home-feature-bg-dark {background:url("../../../media/wp-content/uploads/2014/01/header-bottom.png") top repeat #3a1b50; border-bottom:solid 1px #3a1b50; border-top:solid 1px #3a1b50;}
.epik-purple .footer-widgets {background:url("../../../media/wp-content/uploads/2014/01/header-bottom.png") top repeat #3a1b50; border-bottom:solid 1px #3a1b50; border-top:solid 1px #3a1b50;}

.epik-purple .welcome {background:#ffffff;
}
.epik-purple .welcome .post-title {font-size: 40px; line-height:50px;	 
	font-family: 'Fjalla One', sans-serif; color: #5b3a87; font-weight:400;}

.epik-purple .welcome .entry-title {font-size: 40px;	 
	font-family: 'Open Sans Condensed', sans-serif; color: #381a4e; margin-left:20px; font-weight:700; letter-spacing:-2px;}
.epik-purple .welcome .entry-title a:hover; {font-weight:400; color:#f78412;}

.epik-purple .welcome .entry-image .attachment-post {width:250px; height:250px; margin-right:20px; margin:10px 0;}

.epik-purple .post-title {font-size: 40px;
	font-family: 'Open Sans Condensed', sans-serif; color: #5b3a87; font-weight:700; line-height:1.5em; letter-spacing:-1px;}
.epik-purple .head-wrap a,
.epik-purple .home-feature-bg-dark a,
.epik-purple .author-box a,
.epik-purple .footer-widgets a, a:visited; {
	color: #fff;
}
.epik-purple .welcome a {
color:#8542c4;
}
.epik-purple .head-wrap p,
.epik-purple .home-feature-bg-dark p,
.epik-purple .footer-widgets p {
	color: #eee;
}
.epik-purple .author-box p {color:#454545;}
.epik-purple .welcome p {color:#2c2c2c; line-height:1.75em;}

.epik-purple .archive-pagination li a:hover,
.epik-purple .archive-pagination li.active a {
	background: #8542c4;
}

.epik-purple .content .portfolio .more-link,
.epik-purple .plan-button a {
	background: #8542c4;
	color: #fff;
}

.epik-purple .content .portfolio .more-link:hover,
.epik-purple .plan-button a:hover {
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-webkit-transition: all .5s ease;
	opacity: .7;
	transition: all .5s ease;
}

.epik-purple button,
.epik-purple input[type="button"],
.epik-purple input[type="reset"],
.epik-purple input[type="submit"],
.epik-purple .sidebar .enews-widget input[type="submit"],
.epik-purple a.button.small,
.epik-purple a.button.medium,
.epik-purple a.button.large,
.epik-purple .circle {
	background: #f48122; text-transform:uppercase;
}

.epik-purple .footer-widgets button,
.epik-purple .footer-widgets input[type="button"],
.epik-purple .footer-widgets input[type="reset"],
.epik-purple .footer-widgets .enews-widget input[type="submit"],
.epik-purple .footer-widgets a.button.small,
.epik-purple .footer-widgets a.button.medium,
.epik-purple .footer-widgets a.button.large,
.epik-purple .footer-widgets .circle {
	background: #111;
}

.epik-purple .enews-widget input:hover[type="submit"] {
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-webkit-transition: all .5s ease;
	opacity: .7;
	transition: all .5s ease;
}

.epik-purple .footer-widgets input[type="submit"] {
	background: #111;
}

.epik-purple .footer {
	display:none;
}
.epik-purple p {font-weight:400; font-size:19px;}

.epik-purple a {font-weight:bold; color:#5b3a87; text-decoration:none;}
.epik-purple a:hover {font-weight:bold; color:#f78412; text-decoration:none;}
.epik-purple .post-title .post-entry a {font-weight:400;}
.epik-purple .post-title .post-entry a:hover {font-weight:400; color:#f78412;}

.epik-purple h1 a,
.epik-purple h2 a,
.epik-purple h3 a,
.epik-purple h4 a {font-weight:400; color:#5b3a87; text-decoration:none; line-height:1em;}

.epik-purple h1 a:hover,
.epik-purple h2 a:hover,
.epik-purple h3 a:hover,
.epik-purple h4 a:hover {font-weight:400; color:#f78412; text-decoration:none; line-height:1em;} */


#brand {height :177px; width :177px; background:url("../../../testing-1-2-3/wp-content/uploads/2014/07/brand.png.html") top left no-repeat;} 
#brand:hover {background-position : 177px 0;} 

#community {height :177px; width :177px; background:url("../../../testing-1-2-3/wp-content/uploads/2014/07/community.png.html") top left no-repeat;} 
#community:hover {background-position : -177px 0;}

#engagement {height :177px; width :177px; background:url("../../../testing-1-2-3/wp-content/uploads/2014/07/engagement.png.html") top left no-repeat;} 
#engagement:hover {background-position : -177px 0;}

#traffic {height :177px; width :177px; background:url("../../../testing-1-2-3/wp-content/uploads/2014/07/traffic.png.html") top left no-repeat;} 
#traffic:hover {background-position : -177px 0;}

#sales {height :177px; width :177px; background:url("../../../testing-1-2-3/wp-content/uploads/2014/07/sales.png.html") top left no-repeat;} 
#sales:hover {background-position : -177px 0;}
.round-button-spacing {float:left; margin:0 5px;}

Media Queries
---------------------------------------------------------------------------------------------------- */

/* Desktops, laptops and iPads (landscape)
--------------------------------------------- */

@media only screen and (max-width: 1139px) {

	.wrap,
	.site-header {
		max-width: 960px;
	}

	.content-sidebar-sidebar .content-sidebar-wrap,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-sidebar-content .content-sidebar-wrap {
		width: 740px;
	}

	.content,
	.site-header .widget-area {
		width: 620px;
	}

	.sidebar-content-sidebar .content,
	.sidebar-sidebar-content .content,
	.content-sidebar-sidebar .content {
		width: 400px;
	}

	.sidebar-primary,
	.title-area {
		width: 300px;
	}

}

/* iPads (portrait)
--------------------------------------------- */

@media only screen and (max-width: 1023px) {

	.content,
	.content-sidebar-sidebar .content,
	.content-sidebar-sidebar .content-sidebar-wrap,
	.sidebar-content-sidebar .content,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-primary,
	.sidebar-secondary,
	.sidebar-sidebar-content .content,
	.sidebar-sidebar-content .content-sidebar-wrap,
	.site-header .widget-area,
	.title-area,
	.wrap {
		width: 100%;
	}
	
	.site-header,
	.nav-primary .wrap,
	.nav-secondary .wrap,
	.slider .wrap,
	.welcome .wrap,
	.home-feature-bg .wrap,
	.home-feature-bg-alt .wrap,
	.home-feature-bg-dark .wrap,
	.footer-widgets .wrap {
		width: 90%;
	}
	
	.title-area {
		padding: 16px 0;
		padding: 1rem 0;
	}
	
	.header-image .site-header,
	.header-image .site-header .wrap {
		background-position: center top !important;
	}
	
	.site-header .widget-area {
		text-align: center;
	}

	.site-inner {
		padding-left: 5%; 
		padding-right: 5%;
	}

	.site-inner {
		background: none;
	}
	
	.nav-primary {
		background-repeat: repeat-y;
	}

	.genesis-nav-menu li,
	.genesis-nav-menu > .right,
	.site-header ul.genesis-nav-menu,
	.site-header .search-form {
		float: none;
	}

	.genesis-nav-menu,
	.site-description,
	.site-header hgroup,
	.site-header .search-form,
	.site-title {
		text-align: center;
	}
	
	.genesis-nav-menu .menu-item {
		display: inline-block;
		float: none;
	}

	.genesis-nav-menu a,
	.genesis-nav-menu > .first > a,
	.genesis-nav-menu > .last > a { }

	.site-header .search-form {
		margin: 16px auto ;
		margin: 1rem auto;
	}

	.sidebar .widget.enews-widget {
		padding: 40px;
		padding: 2.5rem;
	}
	
	.wp-caption {
		width: 100% !important;
	}
	
	.footer-widgets .widget {
		margin-bottom: 40px;
		margin-bottom: 2.5rem;
	}

}

/* iPad/Tablets (portrait and landscape)
--------------------------------------------- */

@media only screen and (max-width: 960px) {

	.feature-margin {
		margin: 0;
	}

}

/* iPhones (portrait and landscape)
--------------------------------------------- */

@media only screen and (max-width: 767px) {

	.home-feature-3,
	.home-feature-4,
	.home-bottom-sidebar-1,
	.home-bottom-sidebar-2,
	.home-bottom-sidebar-3,
	.home-bottom-sidebar-4,
	.footer-widgets-1,
	.footer-widgets-2,
	.footer-widgets-3,
	.five-sixths,
	.four-fifths,
	.four-sixths,
	.one-fifth,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fifths,
	.three-fourths,
	.three-sixths,
	.two-fifths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		margin: 0;
		width: 100%;
	}
	
	.feature-left,
	.feature-right {
		width: 45%;
	}
	
	.home-feature-10,  
	.home-feature-12 {
		width: 48%;
	}
	
	.home-feature-11,
	.home-feature-13 {
		float: right;
		margin: 0;
		width: 48%;
	}
	
	.home-feature-12 {
		clear: left;
	}

	.search-form {
		width: 80%;
	}
	
	.content .portfolio {
		width: 48%;
	}
	
	.content .portfolio .post-image {
		width: 100%;
	}
	
	.home-feature-10 img, 
	.home-feature-11 img, 
	.home-feature-12 img, 
	.home-feature-13 img {
		width: 100%;
	}
	
	.plan-col, 
	.plan-col-popular {	
		float: none;
		margin: 0 auto 40px;	
		width: 80%;
	}

}

@media only screen and (max-width: 580px) {

	.home .wrap {
		text-align: center;	
	}
	
	.site-header .wrap {
		width: 90%;
	}
	
	.welcome-feature-1, 
	.welcome-feature-2,
	.welcome-feature-3,
	.home-feature-1,
	.home-feature-2,
	.home-feature-3,
	.home-feature-4,
	.home-feature-1,
	.home-feature-2,
	.home-feature-3,
	.home-feature-4,
	.home-feature-5,
	.home-feature-6,
	.home-feature-7,
	.home-feature-8,
	.home-feature-9,
	.home-feature-10,
	.home-feature-11,
	.home-feature-12,
	.home-feature-13,
	.home-feature-14 {
		margin: 0 auto;
	    text-align: center;
	    width: 100%;
	}
	
	.feature-left {
		float: none;
		margin: 0 auto;
		text-align: center;
		width: 100%;
	}
	
	.feature-right {
		float: none;
		margin: 40px auto 0;
		text-align: center;
		width: 100%;
	}

}

@media only screen and (max-width: 480px) {

	.site-header {
		width: 100%;
	}
	
	.content .portfolio {
		text-align: center;
		width: 100%;
	}
	
	.content .portfolio .post-image {
		width: 100%;
	}
	
	.content .portfolio .more-link {
		margin: 20px auto 0;
		padding: 6px;
		width: 60%;
	}
	
}
a {
	color: #ef4723;
	font-weight: 700;
	text-decoration: none;
}

a img {
	margin-bottom: -4px;
	margin-bottom: -0.25rem;
}

a:hover {
	color: #ef4723;
	text-decoration: underline; font-weight:700;
}
.black-box {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;	
	background: #000;
    color: #fff;
    font-weight: 300;
	margin: 0 2px 20px;
	padding: 30px;
}

.blue-box {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;	
	background: #7adaff;
    color: #005e82;
    font-weight: 300;
	margin: 0 2px 20px;
	padding: 30px;
}

.gray-box {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;	
	background: #eee;
    color: #888;
    font-weight: 300;
	margin: 0 2px 20px;
	padding: 30px;	
}	

.green-box {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;	
	background: #d2eac2;
    color: #689c2a;
    font-weight: 300;
	margin: 0 2px 20px;
	padding: 30px;	
}

.orange-box {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;	
	background: #ff7f3a;
    color: #fff;
    font-weight: 300;
	margin: 0 2px 20px;
	padding: 30px;	
}	


.pink-box {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;	
	background: #f2dbdb;
    color: #c8001c;
    font-weight: 300;
	margin: 0 2px 20px;
	padding: 30px;	
}	

.red-box {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;	
	background: #ff3d3d;
    color: #fff;
    font-weight: 300;
	margin: 0 2px 20px;
	padding: 30px;	
}

.yellow-box {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;	
	background: #ffec97;
    color: #ac670e;
    font-weight: 300;
	margin: 0 2px 20px;
	padding: 30px;
}/* Global Styles */.nc_socialPanel {clear: both;width: 100%!important;margin-top:20px!important;margin-bottom:20px!important;height: 30px;padding: 0;line-height:1;}.nc_wrapper .nc_socialPanel {margin-top:10px!important;margin-bottom:10px!important;}div.nc_socialPanel .nc_tweetContainer {float:left;margin:0 5px;cursor:pointer;height:32px;font-family: 'Lato';border-radius:2px;transition:all 0.1s linear;border-size:1px;}.nc_socialPanel .nc_tweetContainer a.nc_tweet, .nc_socialPanel .totes .sw_count {display: block;font-size: 18px!important;font-family: 'Lato', sans-serif;font-weight: bold;text-decoration: none;height:30px;text-transform:none;}.nc_socialPanel a .sw_count {padding: 0;line-height: 32px;display:inline-block;}.nc_socialPanel .totes .sw_count {line-height:30px;}.nc_socialPanel .spaceManWilly {display:block;}/* Adjusted Margins for First and Last Elements */.nc_socialPanel.notMobile .nc_tweetContainer:nth-child(1) {margin-left:0;}.nc_socialPanel.notMobile .nc_tweetContainer:nth-last-child(1) {margin-right:0;}.nc_socialPanel:not(.nc_socialPanelSide) div.totes.totesalt:nth-child(1) {margin-left:0;padding-left:0;margin-right:15px;}.nc_socialPanel:not(.nc_socialPanelSide) div.totes.totesalt:nth-last-child(1) {margin-right:0px;padding-right:0px;}/* Click to Tweet Cursor */a.sw_CTT {cursor:pointer;}/* Icons and Calls to Action */span.sw_share {font-weight: normal;font-size: 14px;display:block;height: 30px;vertical-align: middle;line-height: 32px;float:right;}.nc_socialPanel .sw {margin: 0 7px;height: 30px;line-height: 32px; text-shadow:none!important;width:20px;}/* Default Icon Settings */.iconFiller {display:block;float:left;transition: width .1s linear;overflow:hidden;height:30px}.nc_socialPanel .iconFiller {width: 30px;}/* Mobile Fix */.mobile .nc_tweetContainer:nth-last-child(2), .nc_tweetContainer.totes:nth-last-child(1) {margin-right:0;}/* Total Shares */.nc_socialPanel .totes {color:white;padding:0px 10px;display:block;font-size:19px;cursor:default;background:#c4c4c4;border:1px solid #e08a0f;border-radius:2px;}.nc_socialPanel div.totes.totesalt, .nc_socialPanel:hover div.totes.totesalt:not(:nth-child(1)) {background:transparent!important;color:#474B4D;margin-left:10px;border:none;}div.nc_socialPanel:hover div.totes.totesalt:not(:nth-child(1)) {background:transparent;color:#474B4D;margin-left:10px;}.nc_socialPanel .totes.totesalt .sw_label {font-size:10px;color:#474B4D;vertical-align:middle;}.nc_socialPanel .totes .sw_label {font-size:10px;vertical-align:middle;}.nc_socialPanel .totes.totesalt .sw_count {color:#474B4D;font-size:24px;}.nc_socialPanel:hover .totes, .nc_socialPanel.sw_fullColor .totes, .nc_socialPanel.sw_fade .totes, .nc_socialPanel.sw_customFull:hover div.totes {background:#e08a0f;}/* Button Shapes */.nc_socialPanel.sw_leaf .nc_tweetContainer {border-radius:15px 0;border-width:1px;}.nc_socialPanel.sw_pill .nc_tweetContainer {border-radius:50px; border-width:1px;}.nc_socialPanel.sw_shift .nc_tweetContainer:not(.totes) {border-width:1px;-webkit-transform:skew(-25deg);-moz-transform:skew(-25deg);-o-transform:skew(-25deg); }.nc_socialPanel.sw_shift .nc_tweetContainer a {-webkit-transform:skew(25deg);-moz-transform:skew(25deg);-o-transform:skew(25deg); }.sw_connected .nc_tweetContainer, .sw_connected:hover .nc_tweetContainer, .sw_connected .nc_tweetContainer:hover  {margin:0!important;border-radius:0!important;border-width:1px;}/*Flash & Fresh Outlines */.nc_socialPanel.sw_flatFresh.sw_d_fullColor .googlePlus, html body .nc_socialPanel.sw_flatFresh.sw_i_fullColor .googlePlus:hover, body .nc_socialPanel.sw_flatFresh.sw_o_fullColor:hover .googlePlus {border:1px solid #df4b37;}.nc_socialPanel.sw_flatFresh.sw_d_fullColor .twitter, html body .nc_socialPanel.sw_flatFresh.sw_i_fullColor .twitter:hover, body .nc_socialPanel.sw_flatFresh.sw_o_fullColor:hover .twitter {border:1px solid #429cd6;}.nc_socialPanel.sw_flatFresh.sw_d_fullColor .fb, html body .nc_socialPanel.sw_flatFresh.sw_i_fullColor .fb:hover, body .nc_socialPanel.sw_flatFresh.sw_o_fullColor:hover .fb {border:1px solid #3a589e;}.nc_socialPanel.sw_flatFresh.sw_d_fullColor .nc_pinterest, html body .nc_socialPanel.sw_flatFresh.sw_i_fullColor .nc_pinterest:hover, body .nc_socialPanel.sw_flatFresh.sw_o_fullColor:hover .nc_pinterest {border:1px solid #cd2029;}.nc_socialPanel.sw_flatFresh.sw_d_fullColor .linkedIn, html body .nc_socialPanel.sw_flatFresh.sw_i_fullColor .linkedIn:hover, body .nc_socialPanel.sw_flatFresh.sw_o_fullColor:hover .linkedIn {border:1px solid #0d77b7;}.nc_socialPanel.sw_flatFresh.sw_d_fullColor .sw_tumblr, html body .nc_socialPanel.sw_flatFresh.sw_i_fullColor .sw_tumblr:hover, body .nc_socialPanel.sw_flatFresh.sw_o_fullColor:hover .sw_tumblr {border:1px solid #39475d;}.nc_socialPanel.sw_flatFresh.sw_d_fullColor .sw_stumbleupon, html body .nc_socialPanel.sw_flatFresh.sw_i_fullColor .sw_stumbleupon:hover, body .nc_socialPanel.sw_flatFresh.sw_o_fullColor:hover .sw_stumbleupon {border:1px solid #ef5025;}.nc_socialPanel.sw_flatFresh.sw_d_fullColor .sw_yummly, html body .nc_socialPanel.sw_flatFresh.sw_i_fullColor .sw_yummly:hover, body .nc_socialPanel.sw_flatFresh.sw_o_fullColor:hover .sw_yummly {border:1px solid #e26426;}.nc_socialPanel.sw_flatFresh.sw_d_fullColor .sw_reddit, html body .nc_socialPanel.sw_flatFresh.sw_i_fullColor .sw_reddit:hover, body .nc_socialPanel.sw_flatFresh.sw_o_fullColor:hover .sw_reddit {border:1px solid #f04b23;}.nc_socialPanel.sw_flatFresh.sw_d_fullColor .sw_email, html body .nc_socialPanel.sw_flatFresh.sw_i_fullColor .sw_email:hover, body .nc_socialPanel.sw_flatFresh.sw_o_fullColor:hover .sw_email {border:1px solid #6bcce9;}.nc_socialPanel.sw_flatFresh.sw_d_fullColor .sw_whatsapp, html body .nc_socialPanel.sw_flatFresh.sw_i_fullColor .sw_whatsapp:hover, body .nc_socialPanel.sw_flatFresh.sw_o_fullColor:hover .sw_whatsapp {border:1px solid #71c169;}/* Full Color */.nc_socialPanel.sw_d_fullColor a, html body .nc_socialPanel.sw_i_fullColor .nc_tweetContainer:hover a, body .nc_socialPanel.sw_o_fullColor:hover a {color:white;}.nc_socialPanel.sw_d_fullColor .googlePlus, html body .nc_socialPanel.sw_i_fullColor .googlePlus:hover, body .nc_socialPanel.sw_o_fullColor:hover .googlePlus {background:#df4b37;border:1px solid #c44133;}.nc_socialPanel.sw_d_fullColor .twitter, html body .nc_socialPanel.sw_i_fullColor .twitter:hover, body .nc_socialPanel.sw_o_fullColor:hover .twitter {background:#429cd6;border:1px solid #3c87b2;}.nc_socialPanel.sw_d_fullColor .fb, html body .nc_socialPanel.sw_i_fullColor .fb:hover, body .nc_socialPanel.sw_o_fullColor:hover .fb {background:#3a589e;border:1px solid #2e4675;}.nc_socialPanel.sw_d_fullColor .nc_pinterest, html body .nc_socialPanel.sw_i_fullColor .nc_pinterest:hover, body .nc_socialPanel.sw_o_fullColor:hover .nc_pinterest {background:#cd2029;border:1px solid #aa1b29;}.nc_socialPanel.sw_d_fullColor .linkedIn, html body .nc_socialPanel.sw_i_fullColor .linkedIn:hover, body .nc_socialPanel.sw_o_fullColor:hover .linkedIn {background:#0d77b7;border:1px solid #0c6591;}.nc_socialPanel.sw_d_fullColor .sw_tumblr, html body .nc_socialPanel.sw_i_fullColor .sw_tumblr:hover, body .nc_socialPanel.sw_o_fullColor:hover .sw_tumblr {background:#39475d;border:1px solid #27313f;}.nc_socialPanel.sw_d_fullColor .sw_stumbleupon, html body .nc_socialPanel.sw_i_fullColor .sw_stumbleupon:hover, body .nc_socialPanel.sw_o_fullColor:hover .sw_stumbleupon {background:#ef5025;border:1px solid #d34427;}.nc_socialPanel.sw_d_fullColor .sw_yummly, html body .nc_socialPanel.sw_i_fullColor .sw_yummly:hover, body .nc_socialPanel.sw_o_fullColor:hover .sw_yummly {background:#e26426;border:1px solid #b65027;}.nc_socialPanel.sw_d_fullColor .sw_reddit, html body .nc_socialPanel.sw_i_fullColor .sw_reddit:hover, body .nc_socialPanel.sw_o_fullColor:hover .sw_reddit {background:#f04b23;border:1px solid #d33f27;}.nc_socialPanel.sw_d_fullColor .sw_email, html body .nc_socialPanel.sw_i_fullColor .sw_email:hover, body .nc_socialPanel.sw_o_fullColor:hover .sw_email {background:#6bcce9;border:1px solid #61bace;}.nc_socialPanel.sw_d_fullColor .sw_whatsapp, html body .nc_socialPanel.sw_i_fullColor .sw_whatsapp:hover, body .nc_socialPanel.sw_o_fullColor:hover .sw_whatsapp {background:#71c169;border:1px solid #28b04b;}/* Three Dee */.nc_socialPanel.sw_threeDee.sw_d_fullColor .googlePlus, html body .nc_socialPanel.sw_threeDee.sw_i_fullColor .googlePlus:hover, body .nc_socialPanel.sw_threeDee.sw_o_fullColor:hover .googlePlus {border-bottom:3px solid #c44133;}.nc_socialPanel.sw_threeDee.sw_d_fullColor .twitter, html body .nc_socialPanel.sw_threeDee.sw_i_fullColor .twitter:hover, body .nc_socialPanel.sw_threeDee.sw_o_fullColor:hover .twitter {border-bottom:3px solid #5595bc;}.nc_socialPanel.sw_threeDee.sw_d_fullColor .fb, html body .nc_socialPanel.sw_threeDee.sw_i_fullColor .fb:hover, body .nc_socialPanel.sw_threeDee.sw_o_fullColor:hover .fb {border-bottom:3px solid #2e4675;}.nc_socialPanel.sw_threeDee.sw_d_fullColor .nc_pinterest, html body .nc_socialPanel.sw_threeDee.sw_i_fullColor .nc_pinterest:hover, body .nc_socialPanel.sw_threeDee.sw_o_fullColor:hover .nc_pinterest {border-bottom:3px solid #aa1b29;}.nc_socialPanel.sw_threeDee.sw_d_fullColor .linkedIn, html body .nc_socialPanel.sw_threeDee.sw_i_fullColor .linkedIn:hover, body .nc_socialPanel.sw_threeDee.sw_o_fullColor:hover .linkedIn {border-bottom:3px solid #0c6591;}.nc_socialPanel.sw_threeDee.sw_d_fullColor .sw_tumblr, html body .nc_socialPanel.sw_threeDee.sw_i_fullColor .sw_tumblr:hover, body .nc_socialPanel.sw_threeDee.sw_o_fullColor:hover .sw_tumblr {border-bottom:3px solid #27313f;}.nc_socialPanel.sw_threeDee.sw_d_fullColor .sw_stumbleupon, html body .nc_socialPanel.sw_threeDee.sw_i_fullColor .sw_stumbleupon:hover, body .nc_socialPanel.sw_threeDee.sw_o_fullColor:hover .sw_stumbleupon {border-bottom:3px solid #d34427;}.nc_socialPanel.sw_threeDee.sw_d_fullColor .sw_yummly, html body .nc_socialPanel.sw_threeDee.sw_i_fullColor .sw_yummly:hover, body .nc_socialPanel.sw_threeDee.sw_o_fullColor:hover .sw_yummly {border-bottom:3px solid #b65027;}.nc_socialPanel.sw_threeDee.sw_d_fullColor .sw_reddit, html body .nc_socialPanel.sw_threeDee.sw_i_fullColor .sw_reddit:hover, body .nc_socialPanel.sw_threeDee.sw_o_fullColor:hover .sw_reddit {border-bottom:3px solid #d33f27;}.nc_socialPanel.sw_threeDee.sw_d_fullColor .sw_email, html body .nc_socialPanel.sw_threeDee.sw_i_fullColor .sw_email:hover, body .nc_socialPanel.sw_threeDee.sw_o_fullColor:hover .sw_email {border-bottom:3px solid #61bace;}.nc_socialPanel.sw_threeDee.sw_d_fullColor .sw_whatsapp, html body .nc_socialPanel.sw_threeDee.sw_i_fullColor .sw_whatsapp:hover, body .nc_socialPanel.sw_threeDee.sw_o_fullColor:hover .sw_whatsapp {border-bottom:3px solid #28b04b;}/* Light Gray */.nc_socialPanel.sw_d_lightGray a, html body .nc_socialPanel.sw_i_lightGray .nc_tweetContainer:hover a, body .nc_socialPanel.sw_o_lightGray:hover a {color:white}.nc_socialPanel.sw_d_lightGray .nc_tweetContainer, html body .nc_socialPanel.sw_i_lightGray .nc_tweetContainer:hover, body .nc_socialPanel.sw_o_lightGray:hover .nc_tweetContainer {background-color:#ccc;border:1px solid #ccc;}.nc_socialPanel.sw_threeDee.sw_d_lightGray .nc_tweetContainer:not(.totesalt), html body .nc_socialPanel.sw_threeDee.sw_i_lightGray .nc_tweetContainer:not(.totesalt):hover, body .nc_socialPanel.sw_threeDee.sw_o_lightGray:hover .nc_tweetContainer:not(.totesalt) {border-bottom:3px solid #999;}/* Medium Gray */.nc_socialPanel.sw_d_mediumGray a, html body .nc_socialPanel.sw_i_mediumGray a:hover, body .nc_socialPanel.sw_o_mediumGray:hover a {color:white;}.nc_socialPanel.sw_d_mediumGray .nc_tweetContainer, html body .nc_socialPanel.sw_i_mediumGray .nc_tweetContainer:hover, body .nc_socialPanel.sw_o_mediumGray:hover .nc_tweetContainer {background-color:#999;border:1px solid #999}.nc_socialPanel.sw_threeDee.sw_d_mediumGray .nc_tweetContainer:not(.totesalt), html body .nc_socialPanel.sw_threeDee.sw_i_mediumGray .nc_tweetContainer:not(.totesalt):hover, body .nc_socialPanel.sw_threeDee.sw_o_mediumGray:hover .nc_tweetContainer:not(.totesalt) {border-bottom:3px solid #444}/* Dark Gray */.nc_socialPanel.sw_d_darkGray a, html body .nc_socialPanel.sw_i_darkGray a:hover, body .nc_socialPanel.sw_o_darkGray:hover a {color:white;}.nc_socialPanel.sw_d_darkGray .nc_tweetContainer, html body .nc_socialPanel.sw_i_darkGray .nc_tweetContainer:hover, body .nc_socialPanel.sw_o_darkGray:hover .nc_tweetContainer {background-color:#444;border:1px solid #444}.nc_socialPanel.sw_threeDee.sw_d_darkGray .nc_tweetContainer:not(.totesalt), html body .nc_socialPanel.sw_threeDee.sw_i_darkGray .nc_tweetContainer:not(.totesalt):hover, body .nc_socialPanel.sw_threeDee.sw_o_darkGray:hover .nc_tweetContainer:not(.totesalt) {border-bottom:3px solid #222}/* Light Gray Outlines */.nc_socialPanel.sw_d_lgOutlines a, html body .nc_socialPanel.sw_i_lgOutlines a:hover, body .nc_socialPanel.sw_o_lgOutlines:hover a { color:#ccc }.nc_socialPanel.sw_d_lgOutlines .nc_tweetContainer, html body .nc_socialPanel.sw_i_lgOutlines .nc_tweetContainer:hover, body .nc_socialPanel.sw_o_lgOutlines:hover .nc_tweetContainer { background:transparent; border:1px solid #ccc; }/* Medium Gray Outlines */.nc_socialPanel.sw_d_mdOutlines a, html body .nc_socialPanel.sw_i_mdOutlines a:hover, body .nc_socialPanel.sw_o_mdOutlines:hover a { color:#999 }.nc_socialPanel.sw_d_mdOutlines .nc_tweetContainer, html body .nc_socialPanel.sw_i_mdOutlines .nc_tweetContainer:hover, body .nc_socialPanel.sw_o_mdOutlines:hover .nc_tweetContainer { background:transparent; border:1px solid #999; }/* Dark Gray Outlines */.nc_socialPanel.sw_d_dgOutlines a, html body .nc_socialPanel.sw_i_dgOutlines a:hover, body .nc_socialPanel.sw_o_dgOutlines:hover a { color:#444 }.nc_socialPanel.sw_d_dgOutlines .nc_tweetContainer, html body .nc_socialPanel.sw_i_dgOutlines .nc_tweetContainer:hover, body .nc_socialPanel.sw_o_dgOutlines:hover .nc_tweetContainer { background:transparent; border:1px solid #444; }/* Color Outlines */.nc_socialPanel.sw_d_colorOutlines .googlePlus a, html body .nc_socialPanel.sw_i_colorOutlines .googlePlus a:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .googlePlus a {color:#df4b37;}.nc_socialPanel.sw_d_colorOutlines .twitter a, html body .nc_socialPanel.sw_i_colorOutlines .twitter a:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .twitter a {color:#429cd6;}.nc_socialPanel.sw_d_colorOutlines .fb a, html body .nc_socialPanel.sw_i_colorOutlines .fb a:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .fb a {color:#3a589e;}.nc_socialPanel.sw_d_colorOutlines .nc_pinterest a, html body .nc_socialPanel.sw_i_colorOutlines .nc_pinterest a:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .nc_pinterest a {color:#cd2029;}.nc_socialPanel.sw_d_colorOutlines .linkedIn a, html body .nc_socialPanel.sw_i_colorOutlines .linkedIn a:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .linkedIn a {color:#0d77b7;}.nc_socialPanel.sw_d_colorOutlines .sw_tumblr a, html body .nc_socialPanel.sw_i_colorOutlines .sw_tumblr a:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .sw_tumblr a {color:#39475d;}.nc_socialPanel.sw_d_colorOutlines .sw_stumbleupon a, html body .nc_socialPanel.sw_i_colorOutlines .sw_stumbleupon a:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .sw_stumbleupon a {color:#ef5025;}.nc_socialPanel.sw_d_colorOutlines .sw_yummly a, html body .nc_socialPanel.sw_i_colorOutlines .sw_yummly a:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .sw_yummly a {color:#e26426;}.nc_socialPanel.sw_d_colorOutlines .sw_whatsapp a, html body .nc_socialPanel.sw_i_colorOutlines .sw_whatsapp a:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .sw_whatsapp a {color:#71c169;}.nc_socialPanel.sw_d_colorOutlines .sw_reddit a, html body .nc_socialPanel.sw_i_colorOutlines .sw_reddit a:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .sw_reddit a {color:#f04b23;}.nc_socialPanel.sw_d_colorOutlines .sw_email a, html body .nc_socialPanel.sw_i_colorOutlines .sw_email a:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .sw_email a {color:#6bcce9;}/* Color Outlines */.nc_socialPanel.sw_d_colorOutlines .googlePlus, html body .nc_socialPanel.sw_i_colorOutlines .googlePlus:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .googlePlus {background:transparent;border:1px solid #df4b37;}.nc_socialPanel.sw_d_colorOutlines .twitter, html body .nc_socialPanel.sw_i_colorOutlines .twitter:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .twitter {background:transparent;border:1px solid #429cd6;}.nc_socialPanel.sw_d_colorOutlines .fb, html body .nc_socialPanel.sw_i_colorOutlines .fb:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .fb {background:transparent;border:1px solid #3a589e;}.nc_socialPanel.sw_d_colorOutlines .nc_pinterest, html body .nc_socialPanel.sw_i_colorOutlines .nc_pinterest:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .nc_pinterest {background:transparent;border:1px solid #cd2029;}.nc_socialPanel.sw_d_colorOutlines .linkedIn, html body .nc_socialPanel.sw_i_colorOutlines .linkedIn:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .linkedIn {background:transparent;border:1px solid #0d77b7;}.nc_socialPanel.sw_d_colorOutlines .sw_tumblr, html body .nc_socialPanel.sw_i_colorOutlines .sw_tumblr:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .sw_tumblr {background:transparent;border:1px solid #39475d;}.nc_socialPanel.sw_d_colorOutlines .sw_stumbleupon, html body .nc_socialPanel.sw_i_colorOutlines .sw_stumbleupon:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .sw_stumbleupon {background:transparent;border:1px solid #ef5025;}.nc_socialPanel.sw_d_colorOutlines .sw_yummly, html body .nc_socialPanel.sw_i_colorOutlines .sw_yummly:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .sw_yummly {background:transparent;border:1px solid #e26426;}.nc_socialPanel.sw_d_colorOutlines .sw_whatsapp, html body .nc_socialPanel.sw_i_colorOutlines .sw_whatsapp:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .sw_whatsapp {background:transparent;border:1px solid #71c169;}.nc_socialPanel.sw_d_colorOutlines .sw_reddit, html body .nc_socialPanel.sw_i_colorOutlines .sw_reddit:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .sw_reddit {background:transparent;border:1px solid #f04b23;}.nc_socialPanel.sw_d_colorOutlines .sw_email, html body .nc_socialPanel.sw_i_colorOutlines .sw_email:hover, body .nc_socialPanel.sw_o_colorOutlines:hover .sw_email {background:transparent;border:1px solid #6bcce9;}/* Side Floating Buttons */.nc_socialPanelSide {position:fixed;left:-100px;z-index:9999999;width:auto;top:200px;overflow:hidden;transition:all 0.2s linear;height:auto;width:100px!important;overflow:visible;}.nc_socialPanelSide.displayed {left:5px;transition:all 0.2s linear;}.nc_socialPanelSide .nc_tweetContainer {width: auto;height: 32px;background: #DD4B38;margin: 3px 0!important;padding: 0;display: block;font-family: 'Lato',sans-serif;clear: both;vertical-align: top;width:90px;transition:all 0.1s linear;overflow:hidden;border-radius:3px;}.nc_socialPanelSide .nc_tweetContainer .iconFiller {display: inline-block;width: 21px;height: 40px;margin: 0 6px;padding: 0;vertical-align: middle;transition:all 0.1s linear;}.nc_socialPanelSide .nc_tweetContainer .sw_count {display: inline-block;width: 0;overflow:hidden;line-height: 35px;text-align: right;padding: 0;font-size: 19px;margin: 0;height: 32px;vertical-align: top;transition:all 0.1s linear;}.nc_socialPanelSide .nc_tweetContainer a {display: block;text-decoration: none;padding: 0;margin: 0;vertical-align: top;height: 36px;cursor:pointer;transition:all 0.1s linear;font-weight:500;}.nc_socialPanelSide .nc_tweetContainer .sw, .nc_socialPanelSide .nc_tweetContainer .sw_share {line-height:34px;float:left;}.nc_socialPanelSide .nc_tweetContainer .sw_share {font-size:13px;}.nc_socialPanelSide .nc_tweetContainer:hover, .nc_socialPanelSide .nc_tweetContainer:hover .iconFiller, .nc_socialPanelSide .nc_tweetContainer:hover .sw_count {transition:all 0.1s linear;}/* Side Floating Boxes */.nc_socialPanelSide.sw_boxed {transform:scale(0.9);}.nc_socialPanelSide.sw_boxed .nc_tweetContainer {margin-bottom:5px;}.nc_socialPanelSide.sw_boxed .nc_tweetContainer, .nc_socialPanelSide.sw_boxed .nc_tweetContainer a {height:75px; width:75px;position:relative;}.nc_socialPanelSide.sw_boxed .nc_tweetContainer i.sw {width: 60px;text-align: center;padding-top: 10px;font-size: 27px;height: 40px;}.nc_socialPanelSide.sw_boxed .nc_tweetContainer:not(.totes) span.sw_share {position: absolute;bottom: 0;left: 0;width: 75px;text-align: center;height: 35px;opacity:0;}.nc_socialPanelSide.sw_boxed .nc_tweetContainer:not(.totes) .sw_hide span.sw_share {opacity:1;}.nc_socialPanelSide.sw_boxed .nc_tweetContainer:not(.totes) span.sw_count {transition: padding 0.1s linear;position: absolute;bottom: 0;left: 0;width: 75px;text-align: center;height: 35px;padding:0;}.nc_socialPanelSide.sw_boxed .nc_tweetContainer:not(.totes) span.sw_count.sw_hide, .nc_socialPanelSide.sw_boxed .nc_tweetContainer span.sw_hide .iconFiller, .nc_socialPanelSide.sw_boxed .nc_tweetContainer span.sw_hide .spaceManWilly {height:75px;opacity:1;}.nc_socialPanelSide.sw_boxed .nc_tweetContainer span.iconFiller {width:75px;height:40px;}.nc_socialPanelSide.sw_boxed .nc_tweetContainer:not(.totes):hover span.sw_share:not(.sw_hide) {opacity:1;}.nc_socialPanelSide.sw_boxed .nc_tweetContainer:not(.totes):hover span.sw_count:not(.sw_hide) {opacity:0;}.nc_socialPanelSide.sw_boxed .totes {width:75px!important;padding:0;}/* Side Floating Sizes */.nc_socialPanelSide .nc_tweetContainer:not(.totes) {line-height:34px;}.nc_socialPanelSide .nc_tweetContainer:not(.totes) .iconFiller {width:30px;margin-left:2px;}.nc_socialPanelSide .nc_tweetContainer:not(.totes) .sw_count {width:48px;padding:0 8px;}.nc_socialPanelSide:not(.sw_boxed) .nc_tweetContainer:not(.totes) .sw_count {width:100%;}.nc_socialPanelSide:not(.sw_boxed) .nc_tweetContainer:not(.totes):hover {width:130px;}.nc_socialPanelSide .nc_tweetContainer:not(.totes):hover .iconFiller, .nc_socialPanelSide .nc_tweetContainer:not(.totes) .spaceManWilly {width:72px;}/* Side Floating Totals */.nc_socialPanelSide .nc_tweetContainer.totes {background: rgba(0, 0, 0, 0);height: 45px;font-weight: 500;text-align: center;width:90px;margin:0;padding:0;border:0px!important;}.nc_socialPanelSide .nc_tweetContainer.totes .sw_count {font-family: 'Lato', sans-serif;color: #444;font-weight: 500;display: block;width: 100%;text-align: center;height:28px;}.nc_socialPanelSide .nc_tweetContainer.totes .sw_label {font-family: 'Lato', sans-serif;display: block;width: 100%;text-align: center;font-size: 50%;color: #444;font-weight:500;}/* Top and Bottom Floating Buttons */.nc_wrapper {position: fixed;background: white;width: 100%;transition: top 0.5s, bottom 0.5s;z-index:99999;}.nc_wrapper.floatBottom {bottom:0px;left:0;}.nc_wrapper.floatTop {top:0px;left:0;}.nc_floater {width: 740px;left: 304px;position: relative;margin: 10px 0;}/* Side Floating Options with Shares Hidden */.nc_socialPanelSide.hideCounts a {text-align:center;}.nc_socialPanelSide.hideCounts .iconFiller {float:none;text-align:left;}.nc_socialPanel.mobile .iconFiller ~ .sw_count {display:none;}/* Custom Font Icons */.sw {display: inline-block;font-family:"sw-icon-font"!important;font-size: inherit;text-rendering: auto;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;transform: translate(0, 0);font-style:normal;font-weight:normal;}.wp-editor-container .sw:before {font-size:18px;line-height:22px;}.wp-editor-container .sw-twitter:before{color:#429cd6;}.wp-editor-container .sw-social-warfare:before{color:#ee464f;}.mce-container .sw-social-warfare {font-size: 20px;vertical-align: middle;margin-right: 15px;color: #ee464f;}.sw-google-plus:before {content: "h";}.sw-pinterest:before {content: "b";}.sw-twitter:before {content: "s";}.sw-facebook:before {content: "j";}.sw-linkedin:before {content: "f";}.sw-tumblr:before {content: "r";}.sw-stumbleupon:before {content: "q";}.sw-reddit:before {content: "a";}.sw-email:before {content: "k"}.sw-yummly:before {content: "x"}.sw-whatsapp:before {content: "y"}.sw-social-warfare:before {content: "p"}/* Click to Tweet Global Styles */.sw_CTT {text-decoration:none!important;}.sw-tweet-clear {zoom: 1;}.sw-tweet-clear:after {display: block;visibility: hidden;height: 0;clear: both;content: ".";}.sw-click-to-tweet {display: block;position: relative;padding: 15px 30px;margin: 15px 0px;}.sw-click-to-tweet:after {content: ".";display: block;clear: both;visibility: hidden;line-height: 0;height: 0;}.sw-click-to-tweet .sw-ctt-text {margin: 0;padding: 0;position: relative;margin-bottom: 10px;word-wrap: break-word;}a .sw-click-to-tweet .sw-ctt-text {margin: 0;padding: 0;position: relative;font-size: 24px;line-height: 140%;text-transform: none;font-weight: 500;text-decoration: none;text-transform: none;display:block;}.sw-click-to-tweet .sw-ctt-btn {margin: 10px 0 0 0;padding: 3px;position: relative;display: block;text-transform: uppercase;font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;font-size: 12px;font-weight: bold;line-height: 100%;float: right;padding-right: 5px;text-decoration: none;}.sw-click-to-tweet i.sw-twitter {float: right;font-size:21px;margin-left:15px;text-transform:none;margin-top:2px;}/*Click to Tweet Style #1 */a.sw_CTT.style1 .sw-click-to-tweet {background-color:#fff;border:1px solid #dddddd;border-radius:4px;}a.style1 .sw-click-to-tweet .sw-ctt-text {text-decoration: none;color: #999999;}a.style1:hover .sw-click-to-tweet .sw-ctt-text {text-decoration: none;color: #666666;}a.style1 .sw-click-to-tweet .sw-ctt-btn {text-decoration: none;color: #999999;}a.style1:hover .sw-click-to-tweet .sw-ctt-btn {text-decoration: none;color: #666666;}a.style1 .sw-click-to-tweet i.sw-twitter {color:#429cd6;}/*Click to Tweet Style #2 */a.sw_CTT.style2 .sw-click-to-tweet {background-color:#fff;border:4px double #dddddd;border-radius:0px;}a.style2 .sw-click-to-tweet .sw-ctt-text {text-decoration: none;color: #666666; font-style:italic; }a.style2:hover .sw-click-to-tweet .sw-ctt-text {text-decoration: none;color: #666666;}a.style2 .sw-click-to-tweet .sw-ctt-btn {text-decoration: none;color: #666666;}a.style2:hover .sw-click-to-tweet .sw-ctt-btn {text-decoration: none;color: #666666;}a.style2 .sw-click-to-tweet i.sw-twitter {color:#429cd6;}/*Click to Tweet Style #3 */a.sw_CTT.style3:hover .sw-click-to-tweet {border-left:10px solid #3c87b2;padding-right:20px;transition:all .25s linear;}a.sw_CTT.style3 .sw-click-to-tweet {border:none;border-left:10px solid #429cd6;background-color:#429cd6;border-radius:0px;padding-right:20px;transition:all .25s linear;}a.style3 .sw-click-to-tweet .sw-ctt-text {text-decoration: none;color: #FFFFFF; font-style:italic; }a.style3:hover .sw-click-to-tweet .sw-ctt-text, a.style3 .sw-click-to-tweet .sw-ctt-btn, a.style3:hover .sw-click-to-tweet .sw-ctt-btn, a.style3 .sw-click-to-tweet i.sw-twitter {text-decoration: none;color: #FFFFFF;}/*Click to Tweet Style #4 */a.sw_CTT.style4:hover .sw-click-to-tweet {border-left: 10px solid #3c87b2;transition:all .25s linear;}a.sw_CTT.style4 .sw-click-to-tweet {background-color:#333;border-left: 10px solid #C33;border-radius:0px;transition:all .25s linear;}a.style4 .sw-click-to-tweet .sw-ctt-text {text-decoration: none;color: #FFFFFF; }a.style4:hover .sw-click-to-tweet .sw-ctt-text {text-decoration: none;color: #FFFFFF;}a.style4 .sw-click-to-tweet .sw-ctt-btn {text-decoration: none;color: #FFFFFF;}a.style4:hover .sw-click-to-tweet .sw-ctt-btn {text-decoration: none;color: #FFFFFF;}a.style4 .sw-click-to-tweet i.sw-twitter {color:#FFFFFF;}/*Click to Tweet Style #5 */a.sw_CTT.style5:hover .sw-click-to-tweet {border-left: 10px solid #30394F;transition:all .25s linear;background-color:#D34250;}a.sw_CTT.style5 .sw-click-to-tweet {background-color:#30394F;border-left: 10px solid #D34250;border-radius:0px;transition:all .25s linear;}a.style5 .sw-click-to-tweet .sw-ctt-text {text-decoration: none;color: #FFFFFF; }a.style5:hover .sw-click-to-tweet .sw-ctt-text {text-decoration: none;color: #FFFFFF;}a.style5 .sw-click-to-tweet .sw-ctt-btn {text-decoration: none;color: #FFFFFF;}a.style5:hover .sw-click-to-tweet .sw-ctt-btn {text-decoration: none;color: #FFFFFF;}a.style5 .sw-click-to-tweet i.sw-twitter {color:#FFFFFF;}/*Click to Tweet Style #6 */a.sw_CTT.style6:hover .sw-click-to-tweet {border-left: 10px solid #D34250;transition:all .25s linear;background-color:#CED3DC;}a.sw_CTT.style6 .sw-click-to-tweet {background-color:#EEEEEE;border-left: 10px solid #D34250;border-radius:0px;transition:all .25s linear;}a.style6 .sw-click-to-tweet .sw-ctt-text {text-decoration: none;color: #30394F; }a.style6:hover .sw-click-to-tweet .sw-ctt-text {text-decoration: none;color: #2A2D34;}a.style6 .sw-click-to-tweet .sw-ctt-btn {text-decoration: none;color: #30394F;}a.style6:hover .sw-click-to-tweet .sw-ctt-btn, a.style6:hover .sw-click-to-tweet i.sw-twitter {text-decoration: none;color: #2A2D34;}a.style6 .sw-click-to-tweet i.sw-twitter {color:#30394F;}@font-face{font-family:'FontAwesome';src:url("../tagregator/includes/font-awesome/font/fontawesome-webfont-v=3.2.1.eot");src:url("../tagregator/includes/font-awesome/css/svg.html");font-weight:normal;font-style:normal;}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;}[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none;}.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em;}a [class^="icon-"],a [class*=" icon-"]{display:inline;}[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.1428571428571428em;text-align:right;padding-right:0.2857142857142857em;}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.4285714285714286em;}.icons-ul{margin-left:2.142857142857143em;list-style-type:none;}.icons-ul>li{position:relative;}.icons-ul .icon-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;text-align:center;line-height:inherit;}[class^="icon-"].hide,[class*=" icon-"].hide{display:none;}.icon-muted{color:#eeeeee;}.icon-light{color:#ffffff;}.icon-dark{color:#333333;}.icon-border{border:solid 1px #eeeeee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}.icon-2x{font-size:2em;}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.icon-3x{font-size:3em;}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}.icon-4x{font-size:4em;}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.icon-5x{font-size:5em;}.icon-5x.icon-border{border-width:5px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;}.pull-right{float:right;}.pull-left{float:left;}[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em;}[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em;}[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0% 0%;background-repeat:repeat;margin-top:0;}.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none;}.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em;}.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block;}.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em;}.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em;}.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em;}.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em;}.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0;}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em;}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em;}.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em;}.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{line-height:inherit;}.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%;}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em;}.icon-stack .icon-stack-base{font-size:2em;*line-height:1em;}.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear;}a .icon-stack,a .icon-spin{display:inline-block;text-decoration:none;}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg);} 100%{-moz-transform:rotate(359deg);}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);} 100%{-webkit-transform:rotate(359deg);}}@-o-keyframes spin{0%{-o-transform:rotate(0deg);} 100%{-o-transform:rotate(359deg);}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg);} 100%{-ms-transform:rotate(359deg);}}@keyframes spin{0%{transform:rotate(0deg);} 100%{transform:rotate(359deg);}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);}.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);}.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);}.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1);}.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1);}a .icon-rotate-90:before,a .icon-rotate-180:before,a .icon-rotate-270:before,a .icon-flip-horizontal:before,a .icon-flip-vertical:before{display:inline-block;}.icon-glass:before{content:"\f000";}.icon-music:before{content:"\f001";}.icon-search:before{content:"\f002";}.icon-envelope-alt: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-power-off:before,.icon-off:before{content:"\f011";}.icon-signal:before{content:"\f012";}.icon-gear:before,.icon-cog:before{content:"\f013";}.icon-trash:before{content:"\f014";}.icon-home:before{content:"\f015";}.icon-file-alt: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-rotate-right:before,.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-mail-forward:before,.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-gears:before,.icon-cogs:before{content:"\f085";}.icon-comments:before{content:"\f086";}.icon-thumbs-up-alt:before{content:"\f087";}.icon-thumbs-down-alt: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-unchecked:before,.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-paperclip:before,.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:before{content:"\f0e0";}.icon-linkedin:before{content:"\f0e1";}.icon-rotate-left:before,.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-lightbulb:before{content:"\f0eb";}.icon-exchange:before{content:"\f0ec";}.icon-cloud-download:before{content:"\f0ed";}.icon-cloud-upload:before{content:"\f0ee";}.icon-user-md:before{content:"\f0f0";}.icon-stethoscope:before{content:"\f0f1";}.icon-suitcase:before{content:"\f0f2";}.icon-bell-alt:before{content:"\f0f3";}.icon-coffee:before{content:"\f0f4";}.icon-food:before{content:"\f0f5";}.icon-file-text-alt:before{content:"\f0f6";}.icon-building:before{content:"\f0f7";}.icon-hospital:before{content:"\f0f8";}.icon-ambulance:before{content:"\f0f9";}.icon-medkit:before{content:"\f0fa";}.icon-fighter-jet:before{content:"\f0fb";}.icon-beer:before{content:"\f0fc";}.icon-h-sign:before{content:"\f0fd";}.icon-plus-sign-alt:before{content:"\f0fe";}.icon-double-angle-left:before{content:"\f100";}.icon-double-angle-right:before{content:"\f101";}.icon-double-angle-up:before{content:"\f102";}.icon-double-angle-down:before{content:"\f103";}.icon-angle-left:before{content:"\f104";}.icon-angle-right:before{content:"\f105";}.icon-angle-up:before{content:"\f106";}.icon-angle-down:before{content:"\f107";}.icon-desktop:before{content:"\f108";}.icon-laptop:before{content:"\f109";}.icon-tablet:before{content:"\f10a";}.icon-mobile-phone:before{content:"\f10b";}.icon-circle-blank:before{content:"\f10c";}.icon-quote-left:before{content:"\f10d";}.icon-quote-right:before{content:"\f10e";}.icon-spinner:before{content:"\f110";}.icon-circle:before{content:"\f111";}.icon-mail-reply:before,.icon-reply:before{content:"\f112";}.icon-github-alt:before{content:"\f113";}.icon-folder-close-alt:before{content:"\f114";}.icon-folder-open-alt:before{content:"\f115";}.icon-expand-alt:before{content:"\f116";}.icon-collapse-alt:before{content:"\f117";}.icon-smile:before{content:"\f118";}.icon-frown:before{content:"\f119";}.icon-meh:before{content:"\f11a";}.icon-gamepad:before{content:"\f11b";}.icon-keyboard:before{content:"\f11c";}.icon-flag-alt:before{content:"\f11d";}.icon-flag-checkered:before{content:"\f11e";}.icon-terminal:before{content:"\f120";}.icon-code:before{content:"\f121";}.icon-reply-all:before{content:"\f122";}.icon-mail-reply-all:before{content:"\f122";}.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123";}.icon-location-arrow:before{content:"\f124";}.icon-crop:before{content:"\f125";}.icon-code-fork:before{content:"\f126";}.icon-unlink:before{content:"\f127";}.icon-question:before{content:"\f128";}.icon-info:before{content:"\f129";}.icon-exclamation:before{content:"\f12a";}.icon-superscript:before{content:"\f12b";}.icon-subscript:before{content:"\f12c";}.icon-eraser:before{content:"\f12d";}.icon-puzzle-piece:before{content:"\f12e";}.icon-microphone:before{content:"\f130";}.icon-microphone-off:before{content:"\f131";}.icon-shield:before{content:"\f132";}.icon-calendar-empty:before{content:"\f133";}.icon-fire-extinguisher:before{content:"\f134";}.icon-rocket:before{content:"\f135";}.icon-maxcdn:before{content:"\f136";}.icon-chevron-sign-left:before{content:"\f137";}.icon-chevron-sign-right:before{content:"\f138";}.icon-chevron-sign-up:before{content:"\f139";}.icon-chevron-sign-down:before{content:"\f13a";}.icon-html5:before{content:"\f13b";}.icon-css3:before{content:"\f13c";}.icon-anchor:before{content:"\f13d";}.icon-unlock-alt:before{content:"\f13e";}.icon-bullseye:before{content:"\f140";}.icon-ellipsis-horizontal:before{content:"\f141";}.icon-ellipsis-vertical:before{content:"\f142";}.icon-rss-sign:before{content:"\f143";}.icon-play-sign:before{content:"\f144";}.icon-ticket:before{content:"\f145";}.icon-minus-sign-alt:before{content:"\f146";}.icon-check-minus:before{content:"\f147";}.icon-level-up:before{content:"\f148";}.icon-level-down:before{content:"\f149";}.icon-check-sign:before{content:"\f14a";}.icon-edit-sign:before{content:"\f14b";}.icon-external-link-sign:before{content:"\f14c";}.icon-share-sign:before{content:"\f14d";}.icon-compass:before{content:"\f14e";}.icon-collapse:before{content:"\f150";}.icon-collapse-top:before{content:"\f151";}.icon-expand:before{content:"\f152";}.icon-euro:before,.icon-eur:before{content:"\f153";}.icon-gbp:before{content:"\f154";}.icon-dollar:before,.icon-usd:before{content:"\f155";}.icon-rupee:before,.icon-inr:before{content:"\f156";}.icon-yen:before,.icon-jpy:before{content:"\f157";}.icon-renminbi:before,.icon-cny:before{content:"\f158";}.icon-won:before,.icon-krw:before{content:"\f159";}.icon-bitcoin:before,.icon-btc:before{content:"\f15a";}.icon-file:before{content:"\f15b";}.icon-file-text:before{content:"\f15c";}.icon-sort-by-alphabet:before{content:"\f15d";}.icon-sort-by-alphabet-alt:before{content:"\f15e";}.icon-sort-by-attributes:before{content:"\f160";}.icon-sort-by-attributes-alt:before{content:"\f161";}.icon-sort-by-order:before{content:"\f162";}.icon-sort-by-order-alt:before{content:"\f163";}.icon-thumbs-up:before{content:"\f164";}.icon-thumbs-down:before{content:"\f165";}.icon-youtube-sign:before{content:"\f166";}.icon-youtube:before{content:"\f167";}.icon-xing:before{content:"\f168";}.icon-xing-sign:before{content:"\f169";}.icon-youtube-play:before{content:"\f16a";}.icon-dropbox:before{content:"\f16b";}.icon-stackexchange:before{content:"\f16c";}.icon-instagram:before{content:"\f16d";}.icon-flickr:before{content:"\f16e";}.icon-adn:before{content:"\f170";}.icon-bitbucket:before{content:"\f171";}.icon-bitbucket-sign:before{content:"\f172";}.icon-tumblr:before{content:"\f173";}.icon-tumblr-sign:before{content:"\f174";}.icon-long-arrow-down:before{content:"\f175";}.icon-long-arrow-up:before{content:"\f176";}.icon-long-arrow-left:before{content:"\f177";}.icon-long-arrow-right:before{content:"\f178";}.icon-apple:before{content:"\f179";}.icon-windows:before{content:"\f17a";}.icon-android:before{content:"\f17b";}.icon-linux:before{content:"\f17c";}.icon-dribbble:before{content:"\f17d";}.icon-skype:before{content:"\f17e";}.icon-foursquare:before{content:"\f180";}.icon-trello:before{content:"\f181";}.icon-female:before{content:"\f182";}.icon-male:before{content:"\f183";}.icon-gittip:before{content:"\f184";}.icon-sun:before{content:"\f185";}.icon-moon:before{content:"\f186";}.icon-archive:before{content:"\f187";}.icon-bug:before{content:"\f188";}.icon-vk:before{content:"\f189";}.icon-weibo:before{content:"\f18a";}.icon-renren:before{content:"\f18b";}/** * @package Tagregator *//* http://www.cssmojo.com/latest_new_clearfix_so_far/ */.clearfix:after {	content:"";	display:table;	clear:both;}.tggr-transparent {	filter: alpha(opacity=0);	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";	opacity: 0;}#tggr-loading-new-posts {	text-align: center;	transition: all 1s ease;}	/* override TwentyTwelve box-shadow, border-radius conflict */	.entry-content #tggr-loading-new-posts img {		border-radius: 0;		box-shadow: none;	}#tggr-media-item-container {	-ms-word-wrap: break-word;	word-wrap: break-word;}	.tggr-media-item {		position: relative;		float: left;		margin: 10px 1%;		padding: 15px;		line-height: 1;		background: #fff;		border: 1px solid #b6b6b6;		border-radius: 3px;		-webkit-box-sizing: border-box;		-moz-box-sizing: border-box;		box-sizing: border-box;	}		#tggr-media-item-container.three-column .tggr-media-item {			width: 31%;		}		#tggr-media-item-container.two-column .tggr-media-item {			width: 48%;		}			@media screen and ( max-width: 768px ) {				#tggr-media-item-container.three-column .tggr-media-item {					width: 48%;				}			}		#tggr-media-item-container.one-column .tggr-media-item {			width: 100%;			margin-left: 0;			margin-right: 0;		}			@media screen and ( max-width: 500px ) {				#tggr-media-item-container.two-column .tggr-media-item,				#tggr-media-item-container.three-column .tggr-media-item {					width: 100%;					margin-left: 0;					margin-right: 0;				}			}		.tggr-media-item a,		.entry-content .tggr-media-item a,	/* Override TwentyFourteen text-decoration conflict */		.tggr-item-content a.tggr-tweets-username,		.tggr-item-content a.tggr-tweets-tag,		.tggr-media-item .tggr-actions a:hover {			text-decoration: none;		}			.tggr-media-item a:hover,			.tggr-media-item .tggr-actions a:hover span {				text-decoration: underline;			}			.tggr-media-item a:hover img {				text-decoration: none;			}		.tggr-author-profile {			display: block;			margin: 0 0 10px 0;		}			.tggr-author-profile img {				width: 50px;				height: 50px;				margin: 0 10px 0 0;			}			.tggr-author-avatar {				float: left;				border-radius: 3px;			}			.tggr-author-name {				display: block;				margin: 5px 0;				font-size: 1.2em;				font-weight: bold;				color: #444;			}			.tggr-author-username {				display: block;				font-size: .9em;				color: #888;				color: rgba( 0, 0, 0, 0.5 );			}				.tggr-author-username:hover {					color: #555;					color: rgba( 0, 0, 0, 0.8 );				}		.tggr-item-content {			margin: 0 0 1.5em;			line-height: 1.7;		}			.tggr-item-content a {				text-decoration: underline;			}			.tggr-item-content img {				margin-bottom: 10px;				max-width: 100%;			}				.tggr-item-content img,				.entry-content .tggr-media-item img {	/* override TwentyTwelve box-shadow conflict */					box-shadow: none;				}		.tggr-media-item .tggr-actions {			list-style: none;			margin: 0 0 1.5em 0;			padding: 0;			text-align: center;		}			#tggr-media-item-container .tggr-actions li {				display: inline-block;				margin: 0 10px 0 0;				padding: 0;			}			#tggr-media-item-container .tggr-actions a {				color: #888;				color: rgba(0,0,0,0.5);				font-size: 15px;			}			#tggr-media-item-container .tggr-actions a span {				margin-left: 2px;				font-size: 11px;				color: rgba(0,0,0,0.4);			}			#tggr-media-item-container .tggr-actions a:hover {				color: #555;				color: rgba(0,0,0,0.8);			}		.tggr-timestamp {			position: absolute;			bottom: 15px;			left: 15px;			font-size: .9em;			color: rgba( 0, 0, 0, 0.3 );		}		img.tggr-source-logo,		.entry-content img.tggr-source-logo {	/* Override TwentyThirteen height conflict */			position: absolute;			bottom: 10px;			right: 15px;			height: 20px;		}			.tggr-google img.tggr-source-logo {				bottom: 5px;				height: 35px;			}/************************************
* This file contains the bare minimum CSS to make Tweet This look good!  Its purpose
* is to setup the layout.  Coloring and what not goes in a theme CSS file!
*************************************/

/* RESET STYLES */
.TT_wrapper,
.TT_wrapper div,
.TT_wrapper a,
.TT_wrapper p,
.TT_wrapper img {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 1rem;
	font: inherit;
	vertical-align: baseline;
	line-height: 1;
}

/* Layout and some base styles */
div.TT_wrapper {
	font-family: sans-serif;
	padding: 10px;

	margin: 8px 0;

	width: auto;
	height: auto;
}
	div.TT_wrapper div.TT_text {
		font-size: 26px;
		line-height: 1.45;
	}
	div.TT_wrapper div.TT_tweet_link_wrapper {
		text-align: right;

		display: block;
		max-width: 45%;
		float: right;

		padding: 2px 5px;
	}
		div.TT_wrapper div.TT_tweet_link_wrapper img {
			max-width: 50px;
			max-height: 25px;

			margin-right: 2px;
			margin-bottom: -4px;
		}
		.TT_wrapper a.TT_tweet_link img {
			display: inline;  /* In case themes override default img display */
		}

	div.TT_wrapper div.TT_byline {
		display: block;
		max-width: 45%;
		float: left;

		font-size: 11px;

		padding-top: 7px;
	}

	div.TT_wrapper div.TT_footer {
		padding: 4px 0 0 0;
		margin-top: 8px;

		width: auto;
		height: auto;
	}

span.TT_wrapper {
	font-family: sans-serif;
}
	span.TT_wrapper img {
		max-width: 50px;
		max-height: 20px;

		margin-right: 2px;
	}


div.TT_wrapper {
	font-family: 'Lato', sans-serif;

	border: 2px solid #CCC;
	border-radius: 3px;

	background-color: #EEE;
}
	div.TT_wrapper div.TT_text a {
		color: #666;
		text-decoration: none;
		font-weight: 300;
		border: 0 none #EEE;
	}
		div.TT_wrapper div.TT_text a:hover {
			text-shadow: 0 0 4px #66CCCC;
			color: #555;
		}

	div.TT_wrapper div.TT_footer {
		border-top: 1px solid #CCC;
	}

		div.TT_wrapper div.TT_footer a {
			color: #666;
		}
			div.TT_wrapper div.TT_footer a:hover {
				text-shadow: 0 0 4px #66CCCC;
				color: #555;
			}

	div.TT_wrapper div.TT_tweet_link_wrapper {
		color: #555;
	}

	div.TT_wrapper div.TT_byline {
		color: #888;
	}
		div.TT_wrapper div.TT_byline a {
			color: #888;
			text-decoration: underline;
		}
		div.TT_wrapper div.TT_byline a:hover {
			text-shadow: none;
		}.gd-full-width,
.gd-full-width .site-container,
.gd-full-width .site-container .site-inner,
.gd-full-width .site-container .site-inner .wrap,
.gd-full-width .site-container .content-sidebar-wrap,
.gd-full-width .site-container main.content,
.gd-full-width .site-container main.content > article.entry,
.gd-full-width .site-container main.content > article.entry .entry-content {
    max-width: 100%;
    width: 100%;
	 background: none;
    border: 0;
    float: none;
    margin: 0 auto;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -webkit-box-shadow: none;
}

body.gd-transparent-background { background-color: transparent!important; }

@media screen and (max-width: 500px) {
   .gd-full-width .fl-row-bg-video video {
       left:0 !important;    
    }
  .gd-full-width .fl-row-bg-video {
    min-width: 360px;
  }
}
.gd-full-width .entry .inner { margin: 0 auto; } 	
.gd-full-width .entry .inner.left { text-align:left; } 	
.gd-full-width .entry .inner.right { text-align:right; } 	
.gd-full-width .entry .inner.center { text-align:center; }
.gd-full-width .full-height { height: 100vh;}
.center-block { margin: 0 auto; }
.center-text { text-align: center; }
.clearfix:before, .clearfix:after { content: "\0020";  display: table; }
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }.epyt-gallery-clear,.epyt-gallery-rowbreak{clear:both}.epyt-debug{cursor:pointer;text-align:left;background-color:#ddd;color:#000}.epyt-gallery{text-align:center}.epyt-gallery iframe{margin-bottom:0}.epyt-gallery-list{margin:0 -8px;position:relative;transition:opacity ease-out .3s;display:block}.epyt-gallery-list.epyt-loading{opacity:.5;transition:opacity ease-out .3s}.epyt-gallery-thumb{box-sizing:border-box;overflow-y:hidden;display:block!important;cursor:pointer;opacity:.8;float:left;padding:0 8px 10px}.epyt-gallery-thumb.hover{opacity:1;transition:opacity ease-out .3s}.epyt-gallery-img-box{width:100%}.epyt-gallery-img{height:0;width:100%;padding-top:56.25%!important;position:relative;overflow:hidden!important;background-size:cover!important;background-position:center!important}.epyt-gallery-playhover{opacity:0;position:absolute;top:-10px;left:0;width:100%;height:100%;vertical-align:middle;text-align:center;transition:opacity ease-out .3s}.epyt-gallery-thumb.epyt-current-video .epyt-gallery-playhover,.epyt-gallery-thumb.hover .epyt-gallery-playhover{opacity:1;top:0;transition:all ease-out .3s}.epyt-gallery-thumb .epyt-gallery-playcrutch{display:inline-block;height:100%;vertical-align:middle;width:0}.epyt-gallery-playhover .epyt-play-img{height:auto!important;max-width:15%!important;padding:0!important;margin:0!important;min-width:30px!important;vertical-align:middle!important;display:inline-block!important;width:auto}.epyt-gallery-notitle span,.epyt-gallery-thumb.epyt-listview+.epyt-gallery-rowbreak{display:none}.epyt-gallery-title{font-size:80%;line-height:120%;padding:10px}.epyt-gallery-notitle{padding:4px}.epyt-gallery-rowtitle{text-align:center;width:100%;position:absolute;left:0;top:100%;opacity:0;z-index:10;overflow-x:hidden;text-overflow:ellipsis;white-space:nowrap}.epyt-gallery-rowtitle.hover{opacity:1;transition:opacity linear .2s}.epyt-gallery-list.epyt-gallery-style-listview{margin-left:0;margin-right:0;margin-bottom:25px}.epyt-gallery-thumb.epyt-listview{width:100%!important;padding:0;margin:8px 0}.epyt-gallery-thumb.epyt-listview .epyt-gallery-img-box{float:left;width:150px;max-width:25%;margin-right:20px;margin-bottom:6px}.epyt-gallery-thumb.epyt-listview .epyt-gallery-title{padding:10px;text-align:left}.epyt-gallery-thumb.epyt-listview .epyt-gallery-dsc{font-size:75%;line-height:120%;padding:5px 10px 12px;text-align:left}.epyt-gallery-thumb.epyt-listview.hover{background-color:#ddd;color:#000;transition:background-color ease-out .3s,color ease-out .3s}.epyt-pagination{clear:both;text-align:center;padding:10px 8px}.epyt-pagenumbers>div,.epyt-pagination>div{display:inline-block;padding:0 2px;vertical-align:middle}.epyt-pagination .epyt-pagebutton{cursor:pointer;display:inline-block;padding:0 10px}.epyt-pagebutton>div{display:inline}.epyt-pagination .epyt-loader{display:none}.epyt-gallery-list.epyt-loading .epyt-pagination .epyt-loader{display:inline-block}.epyt-gallery-allthumbs.epyt-cols-1 .epyt-gallery-thumb{width:100%}.epyt-gallery-allthumbs.epyt-cols-2 .epyt-gallery-thumb{width:50%}.epyt-gallery-allthumbs.epyt-cols-3 .epyt-gallery-thumb{width:33.333%}.epyt-gallery-allthumbs.epyt-cols-4 .epyt-gallery-thumb{width:25%}.epyt-gallery-allthumbs.epyt-cols-5 .epyt-gallery-thumb{width:20%}.epyt-gallery-allthumbs.epyt-cols-6 .epyt-gallery-thumb{width:16.666%}.epyt-gallery-allthumbs.epyt-cols-7 .epyt-gallery-thumb{width:14.285%}.epyt-gallery-allthumbs.epyt-cols-8 .epyt-gallery-thumb{width:12.5%}.epyt-gallery-allthumbs.epyt-cols-9 .epyt-gallery-thumb{width:11.111%}.epyt-gallery-allthumbs.epyt-cols-10 .epyt-gallery-thumb{width:10%}.epyt-gallery-allthumbs.epyt-cols-11 .epyt-gallery-thumb{width:9.090%}.epyt-gallery-allthumbs.epyt-cols-12 .epyt-gallery-thumb{width:8.333%}.epyt-gallery-allthumbs.epyt-cols-13 .epyt-gallery-thumb{width:7.692%}.epyt-gallery-allthumbs.epyt-cols-14 .epyt-gallery-thumb{width:7.142%}.epyt-gallery-allthumbs.epyt-cols-15 .epyt-gallery-thumb{width:6.666%}.epyt-gallery-allthumbs.epyt-cols-16 .epyt-gallery-thumb{width:6.25%}.epyt-gallery-allthumbs.epyt-cols-17 .epyt-gallery-thumb{width:5.882%}.epyt-gallery-allthumbs.epyt-cols-18 .epyt-gallery-thumb{width:5.555%}.epyt-gallery-allthumbs.epyt-cols-19 .epyt-gallery-thumb{width:5.263%}.epyt-gallery-allthumbs.epyt-cols-20 .epyt-gallery-thumb{width:5%}.epyt-gallery-allthumbs.epyt-thumb-portal .epyt-gallery-thumb .epyt-gallery-img{border-radius:50%;padding-top:100%!important}.epyt-gallery-list.epyt-gallery-style-carousel{margin:0 0 50px}.epyt-gallery-list.epyt-gallery-style-carousel .epyt-pagination{display:none}.epyt-gallery-list.epyt-gallery-style-carousel .epyt-pagination:first-child{position:absolute;width:100%;display:block;margin:auto;top:0;bottom:0;padding:0;height:30px}.epyt-gallery-list.epyt-gallery-style-carousel .epyt-pagenumbers.hide{opacity:0}.epyt-gallery-list.epyt-gallery-style-carousel .epyt-gallery-allthumbs{margin:15px 35px}.epyt-gallery-list.epyt-gallery-style-carousel .epyt-gallery-thumb{padding-bottom:0;float:none;display:inline-block!important}.epyt-gallery-list.epyt-gallery-style-carousel .epyt-pagebutton>div{display:none}.epyt-gallery-list.epyt-gallery-style-carousel .epyt-pagebutton>div.arrow{background:url("../youtube-embed-plus/images/arrow-right.svg") no-repeat;background-size:contain;width:20px;height:100%;display:block;text-indent:-99999px;opacity:.7}.epyt-gallery-list.epyt-gallery-style-carousel .epyt-pagebutton>div.arrow:hover{opacity:1}.epyt-gallery-list.epyt-gallery-style-carousel .epyt-pagebutton.epyt-prev>div.arrow{background-image:url("../youtube-embed-plus/images/arrow-left.svg")}.epyt-gallery-list.epyt-gallery-style-carousel .epyt-pagebutton{padding:0;margin-top:-2px}.epyt-gallery-list.epyt-gallery-style-carousel .epyt-next{float:right}.epyt-gallery-list.epyt-gallery-style-carousel .epyt-prev{float:left}.epyt-gallery-list.epyt-gallery-style-carousel .epyt-pagenumbers{position:absolute;top:100%;left:0;right:0}.epyt-pagebutton.hide,.epyt-pagenumbers.hide{display:none!important;opacity:0!important;visibility:hidden!important}/*
Default CSS Styles for the advanced recent post widget plug-in
Version 3.0.0
*/

.advanced_recent_posts_widget * {
	margin:0;
	padding:0; text-align:left;
}
.advanced_recent_posts_widget {
	font-size: 20px; 	
	line-height: 28px;
}
.advanced_recent_posts_widget .post-title, {
	font-size: 30px; line-height:30px; 	 
	font-family: 'Open Sans', sans-serif; margin-bottom:20px; color: #5b3a87; font-weight:bold;
}
.advanced_recent_posts_widget .widgettitle {font-size: 50px; line-height:58px;	 
	font-family: 'Open Sans', sans-serif; margin-top:20px; color: #582464; font-weight:600;

}
.advanced_recent_posts_widget .post-date{
	font-style:italic; color:#2c2c2c; margin-bottom:1px; font-size: 14px;
}

.advanced_recent_posts_widget img{
	float:left;
	margin-right:20px;
	margin-top:5px; margin-bottom:10px; border:solid 2px #5b3a87; 
}
.advanced_recent_posts_widget ul li{
	list-style: none;
	list-style-type: none;
	margin: 5px 0 25px 0;
	padding: 5px 0;
	border-bottom:1px solid #ddd;
}
.advanced_recent_posts_widget .more-link{
	display:inline; margin-left:10px; clear:left; font-weight:bold;
}
.advanced_recent_posts_widget .post-entry{ 
   padding: 0 5px 0 5px;
   overflow:hidden; font-weight:400; line-height:28px; margin-bottom:10px;
}.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}* html>body .clearfix{display:inline-block;width:100%}* html .clearfix{height:1%}#lightboxIframe{display:none}#overlay{position:absolute;top:0;left:0;z-index:10090;width:100%;height:500px;background-color:#000;filter:alpha(opacity=60);-moz-opacity:.6;opacity:.6;display:none}#lightbox{position:absolute;left:0;width:100%;z-index:10100;line-height:0}#jqlb_spinner{height:32px;background-image:url("../wp-jquery-lightbox/styles/images/loading.gif");background-repeat:no-repeat;background-position:center center}#jqlb_closelabel{height:22px;width:66px;background-image:url("../wp-jquery-lightbox/styles/images/closelabel.gif");background-repeat:no-repeat;background-position:center center}#lightbox a img{border:none}#outerImageContainer{position:relative;background-color:#fff;width:300px;height:300px;margin:0 auto}#imageContainer{padding:10px;text-align:center}#jqlb_loading{position:absolute;top:40%;left:0;height:25%;width:100%;line-height:0}#hoverNav{position:absolute;top:0;left:0;height:100%;width:100%;z-index:10}#imageContainer>#hoverNav{left:0}#hoverNav a{outline:0}#nextLink,#prevLink{width:45%;height:100%;background:transparent url("../wp-jquery-lightbox/styles/images/blank.gif") no-repeat;display:block}#prevLink{left:0;float:left}#nextLink{right:0;float:right}#prevLink:hover,#prevLink:visited:hover{background:url("../wp-jquery-lightbox/styles/images/prev.gif") left 50% no-repeat}#nextLink:hover,#nextLink:visited:hover{background:url("../wp-jquery-lightbox/styles/images/next.gif") right 50% no-repeat}#imageDataContainer{font:10px Verdana,Helvetica,sans-serif;background-color:#fff;color:#000;margin:0 auto;line-height:1.4em}#imageData{padding:0 10px}.ontop #imageData{padding-top:5px}#imageData #imageDetails{float:left;text-align:left;margin-bottom:10px;width:80%;width:-moz-calc(100% - 80px);width:-webkit-calc(100% - 80px);width:-o-calc(100% - 80px);width:calc(100% - 80px)}#imageData #imageDetails #titleAndCaption #titleText{font-weight:700}#imageData #imageDetails #titleAndCaption #captionText{font-weight:400}#imageData #imageDetails #controls{margin:0;white-space:nowrap}#imageData #bottomNav #bottomNavClose{height:22px;width:66px;float:right;margin-bottom:10px}