/*	Notification Boxes
----------------------------------------------------------------------*/
.notification-box {
	position: relative;
	margin-bottom: 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 10px;
	padding: 20px 32px 20px 20px;
	color: #F00;
	font-size: 14px;
	font-weight: normal;
	font-family: 'San Francisco Text', 'San Francisco Display', "Phetsarath OT",  sans-serif, Georgia, "Times New Roman", Times, serif;
	width: 550px;
	-webkit-animation: fadeInUp 1.3s;
	animation: fadeInUp 1.3s;
}
a.notification-close {
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 12px;
}
.notification-box p {
	margin: 0;	
}
.notification-box p i {
	padding-right: 10px;
	border-right: 1px solid;
	margin-right: 10px;
}
.notification-box-info {
	color: #65cad3;
	border: 1px solid #65cad3;
}
.notification-box-success {
	color: #1abc9c;
	border: 1px solid #1abc9c;
}
.notification-box-warning {
	color: #F00;
	border: 1px solid #eed880;
}
.notification-box-error {
	color: #e06f6f;
	border: 1px solid #e06f6f;
}
.notification-box-info a {
	color: #65cad3;
}
.notification-box-success a {
	color: #1abc9c;
}
.notification-box-warning a {
	color: #eed880;
}
.notification-box-error a {
	color: #e06f6f;
}

/*	Countdown
----------------------------------------------------------------------*/
.countdown {
	margin: 0 auto;
	text-align: center;
	font-family: "Marcellus", Tahoma, Arial;
	font-weight: bold;
	text-transform: uppercase;
}
.countdown li {
	display: inline-block;
	width: 210px;
	padding: 90px 10px;
	border-left: 1px solid #DFDFDF;
}
.countdown li:first-child {
	border-left: 0
}
.countdown li span {
	font-size: 100px;
	color: #191919;
	position: relative;
}
.countdown li p.timeRefDays,
.countdown li p.timeRefHours,
.countdown li p.timeRefMinutes,
.countdown li p.timeRefSeconds {
	margin-top: 24px;
	color: #555;
	font-size: 24px;
}

.the-list li {
	line-height: 24px
}
.the-list li i {
	font-size: 14px;
	margin-right: 8px;
}

/*	Buttons
----------------------------------------------------------------------*/
.tbutton {
	display:inline-block;
	cursor:pointer;
	position:relative;
	word-spacing:0.2em;
	background:#191919;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	color:#fff;
	white-space: nowrap;
	text-shadow:0 -1px 0 rgba(0,0,0,0.2);
	border:1px solid rgba(0,0,0,0.1);
	background-image: linear-gradient(bottom, rgba(0,0,0,0.08) 0%, rgba(128,128,128,0.08) 50%, rgba(255,255,255,0.08) 100%);
	background-image: -o-linear-gradient(bottom, rgba(0,0,0,0.08) 0%, rgba(128,128,128,0.08) 50%, rgba(255,255,255,0.08) 100%);
	background-image: -moz-linear-gradient(bottom, rgba(0,0,0,0.08) 0%, rgba(128,128,128,0.08) 50%, rgba(255,255,255,0.08) 100%);
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0.08) 0%, rgba(128,128,128,0.08) 50%, rgba(255,255,255,0.08) 100%);
	background-image: -ms-linear-gradient(bottom, rgba(0,0,0,0.08) 0%, rgba(128,128,128,0.08) 50%, rgba(255,255,255,0.08) 100%);
	background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, rgba(0,0,0,0.08)),color-stop(0.5, rgba(128,128,128,0.08)),color-stop(1, rgba(255,255,255,0.08)));
	-moz-box-shadow:inset 0 0 1px rgba(0,0,0,0.1);
	-webkit-box-shadow:inset 0 0 1px rgba(0,0,0,0.1);
	box-shadow:inset 0 0 1px rgba(0,0,0,0.1);
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.tbutton:hover {
	color: #333;
	background:#333
}
.tbutton.color2 {
	background:#9AD147
}
.tbutton.color2:hover {
	color: #333;
	background:#6F9733
}
.tbutton.color3 {
	background: #FF7000;
}
.tbutton.color3:hover {
	color: #333;
	background: #BE590A;
}
.tbutton.color4 {
	background: #09F;
}
.tbutton.color4:hover {
	color: #333;
	background: #0C6BAA;
}
.tbutton.color5 {
	background: #F00;
}
.tbutton.color5:hover {
	color: #333;
	background: #971919;
}
.tbutton.color6 {
	background: #2FEFF7;
}
.tbutton.color6:hover {
	color: #333;
	background: #28C7CE;
}
.tbutton.color7 {
	background: #A58080;
}
.tbutton.color7:hover {
	color: #333;
	background: #6F5656;
}
.tbutton.color8 {
	background: #809FA5;
}
.tbutton.color8:hover {
	color: #333;
	background: #5E767A;
}
.tbutton.color9 {
	background: #3DE4B5;
}
.tbutton.color9:hover {
	color: #333;
	background: #33C49B;
}
.tbutton span {
	display: block;
	background: url(images/button_bg.png) 0 0 repeat-x;
	overflow: hidden;
}
.tbutton:active span {
	background: url(images/button_bg.png) bottom repeat-x;
}
.tbutton span {
	padding: 0 10px;
	line-height: 2.4em;
}
.tbutton.small {
	font-size: 12px;
}
.tbutton.medium {
	font-size: 14px;
}
.tbutton.large {
	font-size: 16px;
}
.tbutton.small span {
	padding: 0 14px;
	line-height: 2.3em;
}
.tbutton.medium span {
	padding: 0 16px;
	line-height: 2.5em;
}
.tbutton.large span {
	padding: 0 18px;
	line-height: 2.7em;
}

/*	Portfolio
----------------------------------------------------------------------*/
.portfolio {
	width: 100% !important;
}
.portfolio-carousel, .client-carousel, .magazine-carousel {
	width: 100% !important;
	overflow: visible !important;
}
.clients {
	float: left;
	overflow: hidden !important;
	width: 101% !important;
	margin-left: -10px;
}
.clients ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.clients li {
	width: 248px;
	height: 120px;
	margin: 6px 10px;
	padding: 0;
	border: 1px solid #F3F3F3;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: border 0.2s ease;
	transition: border 0.2s ease;
}
.clients li:hover {
	border: 1px solid #C0C0C0
}
.anyClass {
	float: left;
	overflow: hidden !important;
	width: 101% !important;
	margin-left: -10px;
}
.anyClass ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.anyClass li {
	width: 248px;
	height: 255px;
	margin: 6px 10px;
	padding: 0;
	border: 1px solid #e6e6e6;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: border 0.2s ease, box-shadow 0.2s ease;
	transition: border 0.2s ease, box-shadow 0.2s ease;
	border-bottom: 3px solid #e6e6e6;
}
.portfolio li {
	margin: 6px 10px;
	padding: 0;
	border: 1px solid #e6e6e6;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: border 0.2s ease, box-shadow 0.2s ease;
	transition: border 0.2s ease, box-shadow 0.2s ease;
	border-bottom: 3px solid #e6e6e6;
}
.portfolio li {
	float: left;
	margin: 0 7px 20px;
	overflow: hidden;
	position: relative;
}
.anyClass li:hover, .portfolio li:hover {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	border-bottom: 3px solid;
}
.ie8 .anyClass li:hover, .ie8 .portfolio li:hover {
	border: 1px solid #000;
}
.magazine-carousel li {
	width: 212px !important;
	height: auto !important;
	margin: 6px 10px;
	padding: 0;
	border: 0 !important;
	-webkit-border-radius: 0;
	border-radius: 0;
}
.magazine-carousel li:hover {
	border: 0 !important;
	box-shadow: none !important
}
.magazine-carousel .detailes {
	text-align: left;
	background: none !important
}
.portfolio-carousel .preve, 
.portfolio-carousel .nexte {
	position: absolute;
	top: 96px;
	color: #ABABAB;
	font-size: 36px;
	cursor: pointer;
}
.portfolio-carousel .preve { left: -28px }
.portfolio-carousel .nexte { right: -28px }
.client-carousel .preve, .client-carousel .nexte {
	position: absolute;
	top: -50px;
	color: #ABABAB;
	font-size: 22px;
	cursor: pointer;
}
.client-carousel .preve { right: 16px; }
.client-carousel .nexte { right: 0 }
.magazine-carousel .preve, .magazine-carousel .nexte {
	position: absolute;
	top: -50px;
	color: #ABABAB;
	font-size: 22px;
	cursor: pointer;
}
.magazine-carousel .preve { right: 16px; }
.magazine-carousel .nexte { right: 0 }
.preve:hover, .nexte:hover {
	color: #000;
}
.detailes {
	text-align: center;
	padding: 20px 0;
	display: block;
	color: #BFBFBF;
	background: #fff;
	height: 100%;
}
.detailes h5 {
	margin: 0 0 2px 0;
	font-weight: normal;
}
.detailes h5 a {
	color: #696969;
}
.detailes a {
	color: #BFBFBF;
}
.detailes a:hover, .detailes h5 a:hover {
	color: #000;
}
.single-first-row h4 {
	float: left;
}
.project-links {
	float: right;
	color: #333;
}
.project-links a {
	font-size: 14px;
	padding: 0 4px
}
.project-links a:last-child {
	padding: 0 0 0 4px
}

/* 	Filters
----------------------------------------------------------------------------------------------------*/
.filterable {}
.filterable ul.filter {
	padding: 0;
	display: inline-block;
}
.filterable ul.filter li {
	display: inline-block;
	color: #272727;
	margin: 0;
	position: relative;
}
.filterable li a {
	padding: 0 10px;
	font-size: 13px;
	color: #333;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.filterable li a:hover {
	color: #191919;
}
.filterable li.current a {
	color: #191919;
	font-weight: 600;
}
.filterable ul.filter li:last-child {
	padding-right: 0;
	margin-right: 0;
}
.filterable li:before {
	content: "/";
	position: absolute;
	display: block;
	font-size: 8px;
	left: -6px;
	top: 1px;
}
.filterable li:first-child:before {
	content: "";
	height: 0;
	width: 0;
	border: 0;
}

/* 	Image-overlay
----------------------------------------------------------------------*/
.O_hover {
	overflow: hidden;
	position: relative;
	background: #000
}
.O_hover img {
	transform: scale(1);
	-webkit-transform: scale(1);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.O_hover:hover img {
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-moz-opacity: 0.50;
	opacity: .50;
	filter: alpha(opacity=50);
}
.hover-fx {
	overflow: hidden;
	position: relative;
	background: #000
}
.hover-fx img {
	float: left;
	opacity: 1;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.anyClass li:hover img, .portfolio li:hover img {
	transform: scale(1.2);
	-ms-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-moz-opacity: 0.50;
	opacity: .50;
	filter: alpha(opacity=50);
}
.hover-fx .fLeft {
	position: absolute;
	top: -40%;
	left: 35%;
	background: #fff;
	background: rgba(255, 255, 255, 0.9);
	padding: 0;
	color: #525252;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	height: 40px;
	width: 40px;
	display: block;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.hover-fx .fRight {
	position: absolute;
	bottom: -40%;
	left: 48%;
	background: #fff;
	background: rgba(255, 255, 255, 0.9);
	padding: 0;
	color: #525252;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	height: 40px;
	width: 40px;
	display: block;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.hover-fx span {
	font-size: 16px;
	padding: 10px 0 0 12px;
	display: block;
}
.anyClass li:hover .fLeft, .portfolio li:hover .fLeft { top: 40% }
.anyClass li:hover .fRight, .portfolio li:hover .fRight { bottom: 37.8% }

.anyClass li.grid_3:hover .fLeft, .portfolio li.grid_3:hover .fLeft { top: 38% }

.anyClass li.grid_4:hover .fLeft, .portfolio li.grid_4:hover .fLeft { top: 43%;left: 37%; }
.anyClass li.grid_4:hover .fRight, .portfolio li.grid_4:hover .fRight { bottom: 40%;left: 47%; }

.anyClass li.grid_6:hover .fLeft, .portfolio li.grid_6:hover .fLeft { top: 45%;left: 40%; }
.anyClass li.grid_6:hover .fRight, .portfolio li.grid_6:hover .fRight { bottom: 43.5%;left: 47%; }

.fLeft:hover, 
.fRight:hover {
	background: #191919;
	color: #333;
	z-index: 999;
}

.box {
	cursor: pointer;
	position: relative;
	overflow: hidden;
}
.box h3 {
	color: #fff
}
.box img {
	position: absolute;
	left: 0;
	-webkit-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}
.box .caption {
	position: absolute;
	color: #333;
	z-index: 100;
	-webkit-transition: all 300ms ease-out;	
	transition: all 300ms ease-out;
	left: 0;
	width: 100%;
}
.box .simple-caption {
	background-color: rgba(0,0,0,0.8);
	width: 100%;
	display: block;
	bottom: -30px;
	line-height: 25pt;
	text-align: center;
	opacity: 0;
}
.innerPad {
	padding: 20px;
}
.box .full-caption {
	background-color: rgba(0,0,0,0.8);
	width: 100%;
	height: 100%;
	top: -200px;
	text-align: left;
	padding: 0;
	opacity:0;
}
.box .fade-caption  {
	background-color: rgba(0,0,0,0.8);
	opacity: 0;
	width: 100%;
	height: 100%;
	text-align: left;
	padding: 0;
}
.box .slide-caption {
	width: 100%;
	height: 100%;
	text-align: left;
	padding: 0;
	left: 200px;
	opacity:0;
}
#box-5.box .rotate-caption {
	width: 100%;
	height: 100%;	
	text-align: left;
	padding: 0;
	top: 0;
	-moz-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.box .rotate {
	width: 100%;
	height: 400px;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;	
	transition: all 300ms ease-out;
}
.box .rotate .caption {
	opacity:0;
}
.box .scale-caption h3, .box .scale-caption p {
	position: relative;
	left: -200px;
	opacity: 0;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;	
	transition: all 300ms ease-out;
}
.box .scale-caption h3 {
	-webkit-transition-delay: 300ms;
	-moz-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	-ms-transition-delay: 300ms;	
	transition-delay: 300ms;
}
.box .scale-caption p {
	-webkit-transition-delay: 500ms;
	-moz-transition-delay: 500ms;
	-o-transition-delay: 500ms;
	-ms-transition-delay: 500ms;	
	transition-delay: 500ms;
}
.box:hover .simple-caption {
	bottom: 0;
	opacity: 1;
}
.box:hover .full-caption {
	top:0;
	opacity: 1;
}
.box:hover .fade-caption, .box:hover .scale-caption  {
	opacity: 1;
}
.box:hover .slide-caption {
	background-color: #000 !important;
	left:0;
	opacity: 1;
}
.box:hover img#image-4 {
	-moz-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	opacity: 1;
}
.box:hover .rotate {
	background-color: rgba(0,0,0,1) !important;
	-moz-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.box:hover .caption {
	opacity:1;
}
.box:hover #image-6 {
	-moz-transform: scale(1.4);
	-o-transform: scale(1.4);
	-webkit-transform: scale(1.4);
	transform: scale(1.4);
}
.box:hover .scale-caption h3, .box:hover .scale-caption p {
	left: 0;
	opacity: 1;
}
.box:hover .scale-caption {
	height: 100%;
	background-color: rgba(0,0,0,0.8);
}
.box .zoom-caption {
	opacity: 0;
	-webkit-transform: scale(0.1);
	transform: scale(0.1);
	height: 100%;
	width: 100%;
}
.box .revzoom-caption {
	opacity: 0;
	-webkit-transform: scale(4);
	transform: scale(4);
	height: 100%;
	width: 100%;
}
.box:hover .zoom-caption, .box:hover .revzoom-caption {
	background: #000;
	background: rgba(0, 0, 0, 0.77);
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

/*	Services
----------------------------------------------------------------------*/
.services {}
.ico_l {
	font-size: 70px;
}
.services .stitle {}
.services [class^="grid_"]:hover .service-icon {
	color: #191919;
	-webkit-animation: flip .8s;
	animation: flip .8s
}
.services .tbutton {
	font-size: 10px;
	float: right;
	background-color: #d7d7d7;
	color: #333;
	text-transform: none;
}
.services [class^="grid_"]:hover .tbutton {
	color: #333;
	background-color: #191919
}
.services [class^="grid_"] {
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.services:hover [class^="grid_"] {
	opacity: 0.4;
}
.services [class^="grid_"]:hover {
	opacity: 1;
}
.services h4 {
	float: left;
	font-size: 16px;
	margin: 10px 0 0 0;
	padding: 0 0 0 15px;
	border-left: 1px solid #CCC;
}
.services h4 small {
	color: #979797;
	font-size: 12px;
	font-family: tahoma;
	font-weight: normal;
	text-transform: none;
	display: block;
	padding: 4px 0 0 0;
}
.service-icon {
	font-size: 30px;
	float: center;
	margin-top: 0;
	margin-left: 0;
	margin-bottom: 0;
	color: #d7d7d7;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease
}
.nine {
	width: 90%;
}
.service-i i {
	display: block;
	float: left;
	color: #333;
	background: #191919;
	padding: 24px 24px;
	font-size: 24px;
	width: 24px;
	margin: 0 16px 0 0;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.service-i [class^="grid_"]:hover i {
	-webkit-animation: wobble .8s;
	animation: wobble .8s;
}
.service-i [class^="grid_"] {
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.service-i:hover [class^="grid_"] {
	opacity: 0.2;
}
.service-i [class^="grid_"]:hover {
	opacity: 1;
}
.service-i h3.service-title { font-size: 16px; }
.service-i p { margin: 0; }


.service-ii i {
	display: block;
	float: left;
	color: #333;
	background: #1c1c1c;
	padding: 12px 12px;
	font-size: 12px;
	width: 12px;
	margin: 0 16px 0 0;
	border-radius: 10%;
	-moz-border-radius: 10%;
	-webkit-border-radius: 10%;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.service-ii [class^="grid_"]:hover i {
	-webkit-animation: bounceIn .8s;
	animation: bounceIn .8s;
}
.service-ii [class^="grid_"] {
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.service-ii:hover [class^="grid_"] {
	opacity: 0.2;
}
.service-ii [class^="grid_"]:hover {
	opacity: 1;
}
.service-ii h3.service-title { font-size: 16px; margin: 8px 0 18px; }
.service-ii p { margin: 0; }


.service-older i { padding-right: 8px; }
.service-older h3.service-title {
	padding: 18px;
	font-size: 14px;
	border-radius: 4px;
	text-transform: uppercase;
	background-color: #191919;
	color: #333;
	border-bottom: 3px solid #DDD;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.service-older [class^="grid_"]:hover h3 { background-color: #3D3D3D;border-color: #191919 }

/*	Footer
----------------------------------------------------------------------*/
#footer {
	background: #333 url(images/footer-pattern.png) repeat;
	padding: 50px 0 0;
	color: #bfbfbf;
	border-bottom: 5px solid #101010;
}
#footer hr {
	background: #0C0C0C;
	box-shadow: 0px 1px 0 rgba(255, 255, 255, 0.07);
	margin: 10px 0;
}
#footer .col-title {
	font-size: 14px;
	font-weight: normal;
}
.footer-last {
	background: #101010;
	padding: 20px 0 !important;
}
.copyright {
	float: left;
	padding: 0 20px;
	color: #696969;
}
#footer a {
	color: #333;
}
#footer a:hover {
	color: #666;
	text-decoration: underline;
}
#footer .links i {
	margin-right: 2px;
}
#footer .links li a {
	line-height: 24px;
}
#footer .links li span {
	display: block;
	color: #919191;
	font-size: 11px;
	margin-bottom: 6px;
}
#footer .p-title {
	color: #333;
	margin: 0 0 30px 0;
}
.tweet_list li {
	margin: 0 0 30px 0;
	padding: 0 0 0 30px;
}
.tweet_list .icon-twitter {
	color: #E7E7E7;
	font-size: 22px;
	position: absolute;
	left: 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.sidebar .tweet_list .icon-twitter {
	color: #e6e6e6
}
.tweet_list li:hover .icon-twitter {
	color: #666
}
.flickr-photos li {
	float: left;
	margin: 0 10px 10px 0;
	width: 70px;
	height: 70px;
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 99;
}
.flickr-photos:hover li {
	opacity: 0.3;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}
.flickr-photos li:hover {
	opacity: 1;
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}
.flickr-photos li img {
	-webkit-border-radius: 4px;
	border-radius: 4px
}
.foot-menu {
	float: right;
	padding: 0 10px;
}
.foot-menu li {
	float: left;
	position: relative;
	padding: 0 10px;
}
.foot-menu li:before {
	content: '/';
	color: #696969;
	font-size: 8px;
	position: absolute;
	left: -1px;
	top: 2px;
}
.foot-menu li:first-child:before {
	content: '' !important;
}
.foot-menu li a {
	font-weight: 600;
}

/*	Top Scroll
----------------------------------------------------------------------*/
.hidett {
	bottom: -100px !important;
}
.showtt {
	bottom:18px !important;
}
#toTop {
	position: fixed;
	right: 32px;
	z-index: 1000;
	bottom: -100px;
	width: 32px;
	height: 32px;
	background: #3C3C3C;
	color: #E2E2E2;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-o-border-radius: 3px;
	cursor:pointer;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
#toTop i {
	padding: 8px 0 0 12px;
	display: block;
	font-size: 14px;
}
#toTop:hover i {
	-webkit-animation: fadeInUp 0.4s;
	animation: fadeInUp 0.4s
}
#toTop:hover {
	opacity: 0.9;
	background: #191919;
	color: #333;
}

/* 	Landing Page
----------------------------------------------------------------------*/
#LandingPage li.back {
	display: none !important
}
#LandingPage #header {
	position: fixed;
	top: 0;
	z-index: 998;
}
#LandingPage .full #header {
	width: 100%;
}
#LandingPage .header_v2 .sf-menu {
	margin: 14px 0 0 -20px;
}
#LandingPage .logo {
	margin: 10px 0;
}
#LandingPage .head {
	background: rgba(255, 255, 255, 0.9);
	-webkit-animation: initial;
	-moz-animation: initial;
}

/* 	Tables
----------------------------------------------------------------------*/
.price-table {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 97;
}
.price-table.featured {
	transform: scale(1.04);
	-ms-transform: scale(1.04);
	-webkit-transform: scale(1.04);
	z-index: 98;
	background: #121212;
}
.price-table:hover {
	transform: scale(1.04);
	-ms-transform: scale(1.04);
	-webkit-transform: scale(1.04);
	z-index: 999;
	background: #121212;
}
.Bdetails {
	background: #191919;
	color: #333;
	position: relative;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}
.Bhead {
	border-bottom: 1px solid #3D3D3D;
}
.Bhead h4 {
	color: #333;
	padding: 40px 20px 32px;
}
.Bhead .table-badge {
	position: absolute;
	top: -13px;
	left: -12px;
	background: #fff;
	height: 30px;
	width: 40px;
	border-radius: 22px;
	text-align: center;
	padding: 9px 0 0 0;
	font-size: 20px;
	color: #191919;
}
.Bhead span {
	position: absolute;
	top: 24px;
	right: 20px;
	font-size: 40px;
	text-align: center;
	font-family: "Marcellus", Tahoma, Arial;
}
.Bhead small {
	display: block;
	font-size: 12px;
	padding: 12px 0 0 0;
}
.Blist {
	padding: 20px 0;
}
.Blist li {
	padding: 10px 20px;
}
.Pbtn {
	padding: 10px 0 30px 0;
}

/*	Support
----------------------------------------------------------------------*/
/**
 * bbPress specific CSS
 *
 * @package bbPress
 * @subpackage Theme
 */

/* =bbPress Style
-------------------------------------------------------------- */

#bbpress-forums hr {
	margin: 0 0 24px 0;
}

#bbpress-forums {
	background: transparent;
	clear: both;
	margin-bottom: 20px;
	overflow: hidden;
	font-size: 12px;
}

#bbpress-forums div.even,
#bbpress-forums ul.even {
	background-color: #333;
}

#bbpress-forums div.odd,
#bbpress-forums ul.odd {
	background-color: #fbfbfb;
}

body.reply-edit .reply {
	float: none;
}

#bbpress-forums div.reply {
	height: auto;
	width: 100%;
}

#bbpress-forums div.bbp-forum-header,
#bbpress-forums div.bbp-topic-header,
#bbpress-forums div.bbp-reply-header {
	background-color: #f4f4f4;
}

#bbpress-forums .status-trash.even,
#bbpress-forums .status-spam.even {
	background-color: #fee;
}
#bbpress-forums .status-trash.odd,
#bbpress-forums .status-spam.odd {
	background-color: #fdd;
}

#bbpress-forums .status-closed,
#bbpress-forums .status-closed a {
	color: #333;
}

#bbpress-forums ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#bbpress-forums li {
	margin: 0;
	list-style: none;
}

#bbpress-forums ul.bbp-lead-topic,
#bbpress-forums ul.bbp-topics,
#bbpress-forums ul.bbp-forums,
#bbpress-forums ul.bbp-replies,
#bbpress-forums ul.bbp-search-results {
	font-size: 12px;
	overflow: hidden;
	border: 1px solid #eee;
	margin-bottom: 20px;
	clear: both;
}

#bbpress-forums li.bbp-header,
#bbpress-forums li.bbp-body,
#bbpress-forums li.bbp-footer {
	clear: both;
}

#bbpress-forums li.bbp-header,
#bbpress-forums li.bbp-footer {
	background: #f3f3f3;
	border-top: 1px solid #eee;
	font-weight: bold;
	padding: 8px;
	text-align: center;
}

#bbpress-forums li.bbp-header {
	background: #eaeaea;
}

#bbpress-forums li.bbp-header ul {
	overflow: hidden;
}

#bbpress-forums .bbp-forums-list {
	margin: 0 0 0 5px;
	padding-left: 15px;
	border-left: 1px solid #ddd;
}

#bbpress-forums .bbp-forums-list li {
	display: inline;
	font-size: 11px;
}

#bbpress-forums li.bbp-footer p {
	margin: 0;
	line-height: 1em;
}

li.bbp-forum-info,
li.bbp-topic-title {
	float: left;
	text-align: left;
	width: 55%;
}
li.bbp-forum-topic-count,
li.bbp-topic-voice-count,
li.bbp-forum-reply-count,
li.bbp-topic-reply-count {
	float: left;
	text-align: center;
	width: 10%;
}

li.bbp-forum-freshness,
li.bbp-topic-freshness {
	text-align: center;
	float: left;
	width: 22%;
}

#bbpress-forums li.bbp-body ul.forum,
#bbpress-forums li.bbp-body ul.topic {
	border-top: 1px solid #eee;
	overflow: hidden;
	padding: 8px;
}

li.bbp-header div.bbp-topic-content span#subscription-toggle,
li.bbp-header div.bbp-topic-content span#favorite-toggle,
li.bbp-header div.bbp-reply-content span#subscription-toggle,
li.bbp-header div.bbp-reply-content span#favorite-toggle {
	float: right;
}

#bbpress-forums div.bbp-forum-title h3,
#bbpress-forums div.bbp-topic-title h3,
#bbpress-forums div.bbp-reply-title h3 {
	line-height: 1em;
	margin: 8px 0;
}

#bbpress-forums div.bbp-forum-author,
#bbpress-forums div.bbp-topic-author,
#bbpress-forums div.bbp-reply-author {
	float: left;
	text-align: center;
	width: 115px;
}

#bbpress-forums div.bbp-forum-author img.avatar,
#bbpress-forums div.bbp-topic-author img.avatar,
#bbpress-forums div.bbp-reply-author img.avatar {
	border: none;
	max-width: 80px;
	padding: 0;
	margin: 12px auto 0 auto;
	float: none;
}

#bbpress-forums div.bbp-forum-author a.bbp-author-name,
#bbpress-forums div.bbp-topic-author a.bbp-author-name,
#bbpress-forums div.bbp-reply-author a.bbp-author-name {
	margin: 0 12px;
	word-break: break-word;
	display: inline-block;
}

#bbpress-forums div.bbp-forum-author .bbp-author-role,
#bbpress-forums div.bbp-topic-author .bbp-author-role,
#bbpress-forums div.bbp-reply-author .bbp-author-role {
	font-size: 11px;
	font-style: italic;
}

#bbpress-forums li.bbp-header .bbp-search-author,
#bbpress-forums li.bbp-footer .bbp-search-author,
#bbpress-forums li.bbp-header .bbp-forum-author,
#bbpress-forums li.bbp-footer .bbp-forum-author,
#bbpress-forums li.bbp-header .bbp-topic-author,
#bbpress-forums li.bbp-footer .bbp-topic-author,
#bbpress-forums li.bbp-header .bbp-reply-author,
#bbpress-forums li.bbp-footer .bbp-reply-author {
	float: left;
	margin: 0;
	padding: 0;
	width: 120px;
}

#bbpress-forums li.bbp-header .bbp-search-content,
#bbpress-forums li.bbp-footer .bbp-search-content,
#bbpress-forums li.bbp-header .bbp-forum-content,
#bbpress-forums li.bbp-footer .bbp-forum-content,
#bbpress-forums li.bbp-header .bbp-topic-content,
#bbpress-forums li.bbp-footer .bbp-topic-content,
#bbpress-forums li.bbp-header .bbp-reply-content,
#bbpress-forums li.bbp-footer .bbp-reply-content {
	margin-left: 140px;
	padding: 0;
	text-align: left;
}

div.bbp-forum-header,
div.bbp-topic-header,
div.bbp-reply-header,
li.bbp-body div.hentry {
	margin-bottom: 0;
	overflow: hidden;
	padding: 8px;
}

div.bbp-forum-header,
div.bbp-topic-header,
div.bbp-reply-header {
	border-top: 1px solid #ddd;
	clear: both;
}

span.bbp-author-ip {
	font-family: 'Helvetica Neue', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #aaa;
}

/* =Topic and reply content
-------------------------------------------------------------- */

#bbpress-forums div.bbp-forum-content,
#bbpress-forums div.bbp-topic-content,
#bbpress-forums div.bbp-reply-content {
	margin-left: 130px;
	padding: 12px 12px 12px 0;
	text-align: left;
}

#bbpress-forums div.bbp-topic-content a,
#bbpress-forums div.bbp-reply-content a {
	background: none;
	border: none;
	display: inline;
	font-weight: normal;
	margin: 0;
	padding: 0;
}

#bbpress-forums div.bbp-topic-content h1,
#bbpress-forums div.bbp-reply-content h1,
#bbpress-forums div.bbp-topic-content h2,
#bbpress-forums div.bbp-reply-content h2,
#bbpress-forums div.bbp-topic-content h3,
#bbpress-forums div.bbp-reply-content h3,
#bbpress-forums div.bbp-topic-content h4,
#bbpress-forums div.bbp-reply-content h4,
#bbpress-forums div.bbp-topic-content h5,
#bbpress-forums div.bbp-reply-content h5,
#bbpress-forums div.bbp-topic-content h6,
#bbpress-forums div.bbp-reply-content h6 {
	clear: none;
	line-height: 1em;
	margin: 24px 0;
	padding: 0;
}

#bbpress-forums div.bbp-topic-content img,
#bbpress-forums div.bbp-reply-content img {
	max-width: 100%;
}

#bbpress-forums div.bbp-topic-content ul,
#bbpress-forums div.bbp-reply-content ul,
#bbpress-forums div.bbp-topic-content ol,
#bbpress-forums div.bbp-reply-content ol {
	margin: 0 15px 15px;
	padding: 0;
}

#bbpress-forums div.bbp-topic-content ul li,
#bbpress-forums div.bbp-reply-content ul li {
	list-style-type: disc;
}

#bbpress-forums div.bbp-topic-content ol li,
#bbpress-forums div.bbp-reply-content ol li {
	list-style-type: decimal;
}

#bbpress-forums div.bbp-topic-content ol li li,
#bbpress-forums div.bbp-reply-content ol li li {
	list-style-type: lower-alpha;
}

#bbpress-forums div.bbp-topic-content ol li li li,
#bbpress-forums div.bbp-reply-content ol li li li {
	list-style-type: upper-roman;
}

#bbpress-forums div.bbp-topic-content code,
#bbpress-forums div.bbp-reply-content code,
#bbpress-forums div.bbp-topic-content pre,
#bbpress-forums div.bbp-reply-content pre {
	font-family: Inconsolata, Consolas, Monaco, Lucida Console, monospace;
	display: inline;
	background-color: #f9f9f9;
	border: 1px solid #ddd;
	padding: 2px;
}

#bbpress-forums div.bbp-topic-content pre,
#bbpress-forums div.bbp-reply-content pre {
	display: block;
	line-height: 18px;
	margin: 0 0 24px;
	padding: 5px 10px;
	white-space: pre;
	overflow: auto;
}

#bbpress-forums div.bbp-topic-content pre code,
#bbpress-forums div.bbp-reply-content pre code {
	display: block;
	border: none;
	padding: 0;
	margin: 0;
	background-color: transparent;
	overflow-wrap: normal;
}

/* =Breadcrumb and Tags
-------------------------------------------------------------- */

div.bbp-breadcrumb {
	float: left;
}

div.bbp-breadcrumb,
div.bbp-topic-tags {
	font-size: 12px;
}

#bbpress-forums div.bbp-breadcrumb p,
#bbpress-forums div.bbp-topic-tags p {
	margin-bottom: 10px
}

#bbpress-forums div.bbp-topic-tags {
	float: right;
}

#bbp-topic-hot-tags {
	clear: both;
}

/* =Search
-------------------------------------------------------------- */

#bbpress-forums #bbp-search-form {
	clear: left;
}

#bbpress-forums div.bbp-search-form {
	float: right;
}

#bbpress-forums div.bbp-search-form .hidden {
	display: none !important;
}

#bbpress-forums div.bbp-search-form  #bbp-search-form div {
	width:240px;
	text-align:right;
}

#bbpress-forums div.bbp-search-form  #bbp-search-form div input {
	display: inline-block !important;
	vertical-align: middle !important;
}

#bbpress-forums div.bbp-search-form  #bbp-search-form div #bbp_search {
	max-width:140px;
}

/* =Toolbar buttons
-------------------------------------------------------------- */
.wp-editor-container,
.quicktags-toolbar, .wp_themeSkin tr.mceFirst td.mceToolbar,
#wp-bbp_topic_content-editor-container div input,
#wp-bbp_reply_content-editor-container div input {
	background-image: none !important;
	border-radius:0 !important;
		-moz-border-radius:0 !important;
		-webkit-border-radius:0 !important;
}

.bbp-the-content.wp-editor-area,
.bbp-the-content.wp-editor-area:focus {
	border:none !important;
	box-shadow: none !important;
		-moz-box-shadow: none !important;
		-webkit-box-shadow: none !important;
}

/* =CSS3 Effects
-------------------------------------------------------------- */
#bbpress-forums input[type=button],
#bbpress-forums input[type=submit] {
	border:none !important;
	padding:9px 14px;
		
	transition: all 0.2s ease-in-out;	
		-moz-transition: all 0.2s ease; /* Enable CSS3 transition on all props */
		-webkit-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;		
}

/* =Admin Links
-------------------------------------------------------------- */

span.bbp-admin-links {
	float: right;
	color: #ddd;
}
span.bbp-admin-links a {
	color: #bbb;
	font-weight: normal;
	font-size: 10px;
	text-transform: uppercase;
	text-decoration: none;
}
fieldset span.bbp-admin-links {
	float: left;
}
tr td span.bbp-admin-links a:hover {
	color: #ff4b33;
}
td.bbp-topic-admin-links,
td.bbp-topic-counts {
	width: 50%;
}

.bbp-forum-header a.bbp-forum-permalink,
.bbp-topic-header a.bbp-topic-permalink,
.bbp-reply-header a.bbp-reply-permalink {
	float: right;
	margin-left: 10px;
	color: #333;
}

/* =Toggles
-------------------------------------------------------------- */

.bbp-topic-action #favorite-toggle a {
	text-decoration: none;
	padding: 0 3px 1px;
	color: #7c7;
	border: 1px solid #aca;
	background-color: #dfd;
	font-weight: bold;
	font-size: 13px;
	}
	.bbp-topic-action #favorite-toggle a:hover {
		color: #5a5;
		border-color: #7c7;
		background-color: #beb;
	}
	.bbp-topic-action #favorite-toggle span.is-favorite a {
		color: #faa;
		border: 1px solid #faa;
		background-color: #fee;
		}
		.bbp-topic-action #favorite-toggle span.is-favorite a:hover {
			color: #c88;
			border-color: #c88;
			background-color: #fdd;
		}

.bbp-topic-action #subscription-toggle a {
	text-decoration: none;
	padding: 0 3px 1px;
	color: #7c7;
	border: 1px solid #aca;
	background-color: #dfd;
	font-weight: bold;
	font-size: 13px;
	}
	.bbp-topic-action #subscription-toggle a:hover {
		color: #5a5;
		border-color: #7c7;
		background-color: #beb;
	}
	.bbp-topic-action #subscription-toggle span.is-subscribed a {
		color: #faa;
		border: 1px solid #faa;
		background-color: #fee;
		}
		.bbp-topic-action #subscription-toggle span.is-subscribed a:hover {
			color: #c88;
			border-color: #c88;
			background-color: #fdd;
		}

#bbpress-forums .bbp-forum-info .bbp-forum-content,
#bbpress-forums p.bbp-topic-meta {
	margin: 5px 0 5px;
	padding: 0;
	font-size: 11px;
}

#bbpress-forums p.bbp-topic-meta span {
	white-space: nowrap;
}

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

.bbp-pagination-count {
	float: left;
	border: 1px solid transparent;
}

.bbp-pagination-links {
	float: right;
	list-style: none;
	display: inline;
	}
	.bbp-pagination-links a,
	.bbp-pagination-links span.current {
		display: block;
		float: left;
		padding: 0px 5px;
		margin-left: 5px;
		border: 1px solid #efefef;
		text-decoration: none;
		}
		.bbp-pagination-links a:hover,
		.bbp-pagination-links span.current {
			background: #eee;
			opacity: 0.8;
			border: 1px solid #ddd;
		}

	.bbp-pagination-links span.dots {
		display: block;
		float: left;
		padding: 1px 4px;
		margin-left: 5px;
	}

.bbp-pagination {
	float: left;
	width: 100%;
	margin-bottom: 15px;
}

.bbp-topic-pagination {
	display: inline-block;
	margin-left: 5px;
	margin-bottom: 2px;
	}
	.bbp-topic-pagination a {
		font-size: 10px;
		line-height: 10px;
		padding: 1px 3px;
		border: 1px solid #ddd;
		text-decoration: none;
	}


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

#bbpress-forums fieldset.bbp-form {
	clear: left;
}

#bbpress-forums fieldset.bbp-form {
	border: 1px solid #eee;
	padding: 10px 20px;
	margin-bottom: 10px;
}

#bbpress-forums fieldset.bbp-form legend {
	padding: 5px;
}

#bbpress-forums fieldset.bbp-form label {
	margin: 0;
	font-weight:bold;
	display: inline-block;
}

#bbp-edit-topic-tag.bbp-form fieldset.bbp-form label,
#bbp-login fieldset label,
#bbp-register fieldset label,
#bbp-lost-pass fieldset label {
	width: 100px;
}

#bbpress-forums fieldset.bbp-form p,
#bbpress-forums fieldset.bbp-form textarea,
#bbpress-forums fieldset.bbp-form select,
#bbpress-forums fieldset.bbp-form input {
	margin: 0 0 8px;
}

textarea#bbp_reply_content,
textarea#bbp_topic_content,
textarea#bbp_forum_content {
	width: 97%;
	box-sizing: border-box;
}

textarea#bbp_forum_content {
	height: 210px;
}

#bbpress-forums fieldset.bbp-forum-form-attributes {
	width: 200px;
	float: right;
	clear: none;
	margin-left: 25px;
}

/**
 * Fix for too-long forum names, usually from conversion
 */
#bbpress-forums fieldset select#bbp_forum_id {
	max-width: 200px;
}

.bbp-topic-form,
.bbp-reply-form,
.bbp-topic-tag-form {
	clear: left;
}
body.topic-edit .bbp-topic-form div.avatar img,
body.reply-edit .bbp-reply-form div.avatar img,
body.single-forum .bbp-topic-form div.avatar img,
body.single-reply .bbp-reply-form div.avatar img {
	margin-right: 0;
	padding: 10px;
	border: 1px solid #ddd;
	line-height: 0;
	background-color: #efefef;
}

body.page .bbp-reply-form code,
body.page .bbp-topic-form code,
body.single-topic .bbp-reply-form code,
body.single-forum .bbp-topic-form code,
body.topic-edit .bbp-topic-form code,
body.reply-edit .bbp-reply-form code {
	font-size: 10px;
	background-color: #f0fff8;
	border: 1px solid #CEEFE1;
	display: block;
	padding: 8px;
	margin-top: 5px;
	width: 369px;
}

#merge_tag,
#delete_tag {
	display: inline;
}

div.bbp-submit-wrapper {
	margin-top: 15px;
	float: right;
	clear: both;
}

p.form-allowed-tags {
	width: 462px;
}

/* =TinyMCE in themes
-------------------------------------------------------------- */
#bbpress-forums div.bbp-the-content-wrapper {
	margin-bottom: 10px;
}

#bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content {
	width: 100%;
	margin: 0;
	font-size: 12px;
}

#bbpress-forums div.bbp-the-content-wrapper table,
#bbpress-forums div.bbp-the-content-wrapper tbody,
#bbpress-forums div.bbp-the-content-wrapper tr,
#bbpress-forums div.bbp-the-content-wrapper td {
	border: none;
	padding: 0;
	margin: 0;
	width: auto;
	line-height: 1em;
}

#bbpress-forums div.bbp-the-content-wrapper input {
	font-size: 12px;
	padding: 5px;
	margin: 0 2px 0 0;
	line-height: 1em;
}

#bbpress-forums div.bbp-the-content-wrapper div.quicktags-toolbar {
	padding: 5px;
	min-height: 26px;
}
#bbpress-forums div.bbp-the-content-wrapper td.mceToolbar {
	padding: 4px 4px 8px;
}

#bbpress-forums div.wp-editor-container {
	margin: 0;
	padding: 0;
	line-height: 0;
}

#bbpress-forums div.bbp-the-content-wrapper td.mceStatusbar {
	line-height: 16px;
}

/* =Edit User
-------------------------------------------------------------- */

#bbpress-forums #bbp-your-profile fieldset {
	padding: 20px 20px 0 20px;
}
	#bbpress-forums #bbp-your-profile fieldset div {
		margin-bottom: 20px;
		float: left;
		width: 100%;
		clear: left;
	}
	#bbpress-forums #bbp-your-profile fieldset select {
		margin-bottom: 0;
	}
	#bbpress-forums #bbp-your-profile fieldset input,
	#bbpress-forums #bbp-your-profile fieldset textarea {
		margin-bottom: 0;
		width: 60%;
		background: #f9f9f9;
		border: 1px solid #ddd;
		box-shadow: none;
		padding: 5px 8px;
		border-radius: 0;
	}
	#bbpress-forums #bbp-your-profile fieldset input:focus,
	#bbpress-forums #bbp-your-profile fieldset textarea:focus {
		border: 1px solid #ccc;
		box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
		outline-color: rgba(240,255,240,0.1);
	}
	#bbpress-forums #bbp-your-profile fieldset.bbp-form input.checkbox {
		width: auto;
	}
	#bbpress-forums #bbp-your-profile fieldset legend {
		display: none;
	}
	#bbpress-forums #bbp-your-profile fieldset label[for] {
		float: left;
		width: 20%;
		padding: 5px 20px 5px 0;
		text-align: right;
		cursor: pointer;
	}
	#bbpress-forums #bbp-your-profile fieldset dl label[for] {
		text-align: left;
		width: 60%;
	}
	#bbpress-forums #bbp-your-profile fieldset span.description {
		margin: 5px 0 0 20%;
		font-size: 12px;
		font-style: italic;
		float: left;
		clear: left;
		max-width: 60%;
		padding: 5px 8px 5px 8px;
		border: #cee1ef 1px solid;
		background-color: #f0f8ff;
	}

	#bbpress-forums #bbp-your-profile fieldset fieldset {
		margin: 0;
		border: none;
		padding: 0;
		clear: none;
		float: none;
	}
	#bbpress-forums #bbp-your-profile fieldset fieldset.password {
		width: 60%;
		display: inline;
	}
	#bbpress-forums #bbp-your-profile fieldset fieldset.password input,
	#bbpress-forums #bbp-your-profile fieldset fieldset.password span {
		width: 100%;
	}
	#bbpress-forums #bbp-your-profile fieldset fieldset.capabilities dl {
		margin: 0;
	}
	#bbpress-forums #bbp-your-profile fieldset fieldset.password span.description {
		margin-left: 0;
		margin-bottom: 20px;
	}

	#bbpress-forums #bbp-your-profile fieldset.submit button {
		float: right;
	}

/* =Notices
-------------------------------------------------------------- */

div.bbp-template-notice,
div.indicator-hint {
	border-width: 1px;
	border-style: solid;
	padding: 0 0.6em;
	margin: 5px 0 15px;
	border-radius: 3px;
	background-color: #ffffe0;
	border-color: #e6db55;
	color: #000;
	clear: both;
}
div.bbp-template-notice a {
	color: #555;
	text-decoration: none;
}
	div.bbp-template-notice a:hover {
		color: #000;
	}
	div.bbp-template-notice.info {
		border: #cee1ef 1px solid;
		background-color: #f0f8ff;
	}
	div.bbp-template-notice.important {
		border: #e6db55 1px solid;
		background-color: #fffbcc;
	}
	div.bbp-template-notice.error,
	div.bbp-template-notice.warning {
		background-color: #ffebe8;
		border-color: #c00;
	}
	div.bbp-template-notice.error a,
	div.bbp-template-notice.warning a {
		color: #c00;
	}
	div.bbp-template-notice p {
		margin: 0.5em 0 6px 0 !important;
		padding: 2px;
		font-size: 12px;
		line-height: 140%;
	}

/* =Stickies
-------------------------------------------------------------- */

.bbp-topics-front ul.super-sticky,
.bbp-topics ul.super-sticky,
.bbp-topics ul.sticky,
.bbp-forum-content ul.sticky {
	background-color: #ffffe0 !important;
	font-size: 1.1em;
}

/* =Revisions
-------------------------------------------------------------- */

#bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log,
#bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log,
#bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log {
	border-top: 1px dotted #ddd;
	width: 100%;
	margin: 0;
	padding: 8px 0 0 0;
	font-size: 11px;
	color: #aaa;
}

#bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log li,
#bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log li,
#bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log li {
	list-style-type: none;
}

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

.bbp-login-form fieldset legend {
	display: none;
}

.bbp-login-form .bbp-username input,
.bbp-login-form .bbp-mailedlgen input,
.bbp-login-form .bbp-password input {
	padding: 5px;
}

.bbp-login-form label {
	width: 140px;
	display: inline-block;
}

#sidebar .bbp-login-form label {
	width: 70px;
}

.bbp-login-form .bbp-username,
.bbp-login-form .bbp-mailedlgen,
.bbp-login-form .bbp-password,
.bbp-login-form .bbp-remember-me,
.bbp-login-form .bbp-submit-wrapper {
	margin-top: 10px;
}

.bbp-login-form .bbp-remember-me {

}

.bbp-login-form .bbp-submit-wrapper {
	text-align: right;
}

.bbp-login-form .bbp-login-links {
}

.bbp-login-form .bbp-login-links a {
	float: left;
	clear: left;
}

.bbp-logged-in img.avatar {
	float: left;
	margin: 0 15px 0 0;
}

.bbp-logged-in h4 {
	font-weight: bold;
	font-size: 1.3em;
	clear: none;
	margin-bottom: 10px;
}

/* =Avatars
-------------------------------------------------------------- */

#bbpress-forums p.bbp-topic-meta img.avatar,
#bbpress-forums ul.bbp-reply-revision-log img.avatar,
#bbpress-forums ul.bbp-topic-revision-log img.avatar,
#bbpress-forums div.bbp-template-notice img.avatar,
#bbpress-forums .widget_display_topics img.avatar,
#bbpress-forums .widget_display_replies img.avatar,
#bbpress-forums p.bbp-topic-meta img.avatar {
	float: none;
	margin-bottom: -7px;
	border: 3px double #ddd;
}

fieldset div.avatar {
	float: right;
}

/* =BuddyPress Activity Streams
-------------------------------------------------------------- */

.activity-list li.bbp_topic_create .activity-content .activity-inner,
.activity-list li.bbp_reply_create .activity-content .activity-inner {
	border-left: 2px solid #eaeaea;
	margin-left: 5px;
	padding-left: 10px;
}

/* =User Pages
-------------------------------------------------------------- */

#bbpress-forums h1 {
	clear: none;
	font-size: 1.8em;
	line-height: 1em;
	padding-bottom: 10px;
}

#bbpress-forums #bbp-user-wrapper {
	float: left;
	width: 100%;
}

#bbpress-forums .bbp-user-section {
	overflow: auto;
}

#bbpress-forums #bbp-user-wrapper h2.entry-title {
	font-size: 1.4em;
	margin: 0;
	padding-bottom: 10px;
	padding-top: 0;
	clear: none;
}

#bbpress-forums #bbp-user-wrapper ul.bbp-lead-topic,
#bbpress-forums #bbp-user-wrapper ul.bbp-topics,
#bbpress-forums #bbp-user-wrapper ul.bbp-forums,
#bbpress-forums #bbp-user-wrapper ul.bbp-replies,
#bbpress-forums #bbp-user-wrapper fieldset.bbp-form {
	clear: none;
}

#bbpress-forums #bbp-single-user-details {
	margin: 0;
	width: 150px;
	float: left;
	overflow: hidden;
}

#bbpress-forums #bbp-single-user-details #bbp-user-avatar {
	margin: 0;
	width: 150px;
}

#bbpress-forums #bbp-single-user-details #bbp-user-avatar img.avatar {
	border: none;
	height: 150px;
	padding: 0;
	margin: 0 0 20px 0;
	width: 150px;
}

#bbpress-forums #bbp-single-user-details #bbp-user-description {
	float: none;
	margin-left: 180px;
}

#bbpress-forums #bbp-single-user-details #bbp-user-navigation {
	float: none;
	margin: 0;
}

#bbpress-forums #bbp-single-user-details #bbp-user-navigation li {
	margin: 0;
}

#bbpress-forums #bbp-single-user-details #bbp-user-navigation a {
	padding: 5px 8px;
	display: block;
	border: 1px solid transparent;
	text-decoration: none;
}

#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a {
	background: #eee;
	opacity: 0.8;
}

#bbpress-forums #bbp-user-body {
	margin-left: 180px;
}

body.my-account #bbpress-forums {
	border-top: none;
	padding-top: 0;
	margin-bottom: 0;
}

/* =User Capabilities
-------------------------------------------------------------- */

#bbpress-forums dl.bbp-user-capabilities {
	display: inline-block;
	vertical-align: top;
}

#bbpress-forums dl.bbp-user-capabilities dt {
	margin: 0 0 10px;
	text-transform: capitalize;
}

#bbpress-forums dl.bbp-user-capabilities dd {
	margin: 0;
	padding: 0;
}

/* =BuddyPress Group Forums
-------------------------------------------------------------- */

#bbpress-forums div.row-actions {
	font-size: 11px;
	visibility: hidden;
}

#bbpress-forums li:hover > div.row-actions {
	visibility: visible;
}


.forum h2 {
	font-size: 28px;
	margin-bottom: 30px;
}
.forum h2 small {
	font-size: 14px;
	display: block;
	margin-top: 14px;
	text-transform: none;
	color: #838383;
}
.forum .avatar {
	display: inline-block;
	margin-right: 8px;
}
.forum .table th, .forum .table td {
	text-align: left;
	padding: 16px 10px 16px 20px;
}
.forum .table a {
	font-weight: 600
}
#loginform #input-i {
	margin: 0 0 10px;
	padding: 0 10px;
	line-height: 24px;
	height: 34px;
	border: 1px solid #EBEBEB;
	background: #F7F7F7;
	border-radius: 3px;
	font-size: 11px;
	color: #A7A7A7;
	cursor: text;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
#loginform #input-i:focus {
	background: #fff;
	border: 1px solid #C5C5C5;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
#loginform #login-button, #filter_button {
	width: auto;
	margin-top: 14px;
	float: right;
	font-size: 11px;
	padding: 4px 10px;
	display: inline-block;
	cursor: pointer;
	position: relative;
	background: #191919;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	color:#fff;	
	text-transform:uppercase;
	text-shadow:0 -1px 0 rgba(0,0,0,0.2);
	border:1px solid rgba(0,0,0,0.1);
	background-image: linear-gradient(bottom, rgba(0,0,0,0.08) 0%, rgba(128,128,128,0.08) 50%, rgba(255,255,255,0.08) 100%);
	background-image: -o-linear-gradient(bottom, rgba(0,0,0,0.08) 0%, rgba(128,128,128,0.08) 50%, rgba(255,255,255,0.08) 100%);
	background-image: -moz-linear-gradient(bottom, rgba(0,0,0,0.08) 0%, rgba(128,128,128,0.08) 50%, rgba(255,255,255,0.08) 100%);
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0.08) 0%, rgba(128,128,128,0.08) 50%, rgba(255,255,255,0.08) 100%);
	background-image: -ms-linear-gradient(bottom, rgba(0,0,0,0.08) 0%, rgba(128,128,128,0.08) 50%, rgba(255,255,255,0.08) 100%);
	background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, rgba(0,0,0,0.08)),color-stop(0.5, rgba(128,128,128,0.08)),color-stop(1, rgba(255,255,255,0.08)));
	-moz-box-shadow:inset 0 0 1px rgba(0,0,0,0.1);
	-webkit-box-shadow:inset 0 0 1px rgba(0,0,0,0.1);
	box-shadow:inset 0 0 1px rgba(0,0,0,0.1);
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
#loginform #login-button:hover, #filter_button:hover {
	background:#333
}
.login-links {
	margin: 10px 0 0 0;
	float: left;
}
.login-links a {
	display: block;
	line-height: 20px;
}
.forum-items li {
	width: 100%;
	display: block;
	margin: 0 0 20px 0;
}
.forum-items i {
	font-size: 24px;
}
.forum-items a {
	font-size: 16px;
	margin: 0 0 6px 10px;
	display: inline-block;
}
.forum-items .topic-time {
	margin: 0 0 0 38px;
	color: #777;
}
.forum-topic h2 {
	font-size: 40px;
	font-family: "Oswald", tahoma;
	text-transform: uppercase;
	color: #acacac;
	margin-bottom: 30px;
	padding: 0;
}
.mr {
	margin-right: 8px;
}
.topic-title {
	margin: 0 0 30px 0;
	border-bottom: 1px solid #DDD;
	padding: 0 0 20px 0;
}
.topic-say {
	border-bottom: 1px solid #080808;
	box-shadow: 0 1px 0 rgba(34, 34, 34, 0.8);
	-webkit-box-shadow: 0 1px 0 rgba(34, 34, 34, 0.8);
	margin: 0 0 40px;
	padding: 0 0 40px;
}
.topic-say h5 {
	margin: 0 0 6px 0;
}
.topic-say .reply-time {
	margin: 0 0 14px 0;
	display: block;
	color: #333;
}
.topic-say .grid_2 img {
	margin: 0 auto 10px;
}
.topic-say .grid_2 span {
	display: block;
	text-align: center;
	margin: 0 0 6px 0;
	color: #333;
}
.table {
	background:transparent !important;
	font-size:13px;
	text-align:center;
	border-collapse:collapse;
	margin:0;
	padding:0;
	width:100%;
	overflow:hidden;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.table th {
	font-size:14px;
	font-weight:normal;
	font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
	text-align:center;
	padding:16px 12px;
	color:#ffffff;
	background-color:#191919;
	text-shadow:none;
}
.table td { 
	padding:14px 7px 14px 7px;
	text-align: center;
}
.table tr {
	border-bottom:1px solid #fff;
	background-color:#f8f8f8;
	-moz-transition:all .2s;
	-webkit-transition:all .2s;
	-o-transition:all .2s;
}
.table tr:hover, tr.topic-sticky {
	background: #F0F0F0;
	-webkit-transition:all .2s;
	transition:all .2s;
}
.table tfoot td {
	padding:10px 16px;
	text-align: left;
	background:#191919;
	color:#ffffff;
	font-size:11px;
	text-shadow:none;
}
.table tfoot tr:hover {
	background:#63b1be;
}

.tt-table {
	margin: 0 auto;
	text-align: center;
}
.head-t {
	padding: 16px 26px 0;
	border-bottom: 1px solid #5C6575;
}
.head-t img {
	display: inline-block;
}
.head-t h3 {
	color: #333;
	text-align: left;
	line-height: 46px;
	text-transform: uppercase;
	font-family: Oswald;
	padding: 0 17px;
	font-size: 22px;
	font-weight: normal;
	display: inline-block;
}

/* 	Tipsy
----------------------------------------------------------------------*/
.tipsy { padding: 5px; font-size: 10px; position: absolute; z-index: 100000}
.tipsy-inner { padding: 5px 8px 4px 8px; background-color: black; color: white; max-width: 200px; text-align: center; }
.tipsy-inner { border-radius: 3px; -moz-border-radius:3px; -webkit-border-radius:3px; }
.tipsy-arrow { position: absolute; background: url('images/tipsy.gif') no-repeat top left; width: 9px; height: 5px; }
.tipsy-n .tipsy-arrow { top: 0; left: 50%; margin-left: -4px}
.tipsy-nw .tipsy-arrow { top: 0; left: 10px}
.tipsy-ne .tipsy-arrow { top: 0; right: 10px}
.tipsy-s .tipsy-arrow { bottom: 0; left: 50%; margin-left: -4px; background-position: bottom left;}
.tipsy-sw .tipsy-arrow { bottom: 0; left: 10px; background-position: bottom left}
.tipsy-se .tipsy-arrow { bottom: 0; right: 10px; background-position: bottom left}
.tipsy-e .tipsy-arrow { top: 50%; margin-top: -4px; right: 0; width: 5px; height: 9px; background-position: top right; }
.tipsy-w .tipsy-arrow { top: 50%; margin-top: -4px; left: 0; width: 5px; height: 9px}
.tipsy-n div {-webkit-animation: fadeInUp 0.2s;animation: fadeInUp 0.2s;}
.tipsy-s div {-webkit-animation: fadeInDown 0.3s;animation: fadeInDown 0.3s;}
.tipsy-w div {-webkit-animation: fadeInRight 0.2s;animation: fadeInRight 0.2s;}
.tipsy-e div {-webkit-animation: fadeInLeft 0.2s;animation: fadeInLeft 0.2s;}

/* --	Pretty Photo	-- */
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(images/prettyPhoto/default/sprite.png) -78px -93px no-repeat}
div.pp_default .pp_top .pp_middle{background:url(images/prettyPhoto/default/sprite_x.png) top left repeat-x}
div.pp_default .pp_top .pp_right{background:url(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(images/prettyPhoto/default/sprite_y.png) -7px 0 repeat-y;padding-left:13px}
div.pp_default .pp_content_container .pp_right{background:url(images/prettyPhoto/default/sprite_y.png) top right repeat-y;padding-right:13px}
div.pp_default .pp_next:hover{background:url(images/prettyPhoto/default/sprite_next_submit.png) center right no-repeat;cursor:pointer}
div.pp_default .pp_previous:hover{background:url(images/prettyPhoto/default/sprite_prev.png) center left no-repeat;cursor:pointer}
div.pp_default .pp_expand{background:url(images/prettyPhoto/default/sprite.png) 0 -29px no-repeat;cursor:pointer;width:28px;height:28px}
div.pp_default .pp_expand:hover{background:url(images/prettyPhoto/default/sprite.png) 0 -56px no-repeat;cursor:pointer}
div.pp_default .pp_contract{background:url(images/prettyPhoto/default/sprite.png) 0 -84px no-repeat;cursor:pointer;width:28px;height:28px}
div.pp_default .pp_contract:hover{background:url(images/prettyPhoto/default/sprite.png) 0 -113px no-repeat;cursor:pointer}
div.pp_default .pp_close{width:30px;height:30px;background:url(images/prettyPhoto/default/sprite.png) 2px 1px no-repeat;cursor:pointer}
div.pp_default .pp_gallery ul li a{background:url(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(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(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(images/prettyPhoto/default/sprite.png) -78px -127px no-repeat}
div.pp_default .pp_bottom .pp_middle{background:url(images/prettyPhoto/default/sprite_x.png) bottom left repeat-x}
div.pp_default .pp_bottom .pp_right{background:url(images/prettyPhoto/default/sprite.png) -112px -127px no-repeat}
div.pp_default .pp_loaderIcon{background:url(images/prettyPhoto/default/loader.gif) center center no-repeat}
div.light_rounded .pp_top .pp_left{background:url(images/prettyPhoto/light_rounded/sprite.png) -88px -53px no-repeat}
div.light_rounded .pp_top .pp_right{background:url(images/prettyPhoto/light_rounded/sprite.png) -110px -53px no-repeat}
div.light_rounded .pp_next:hover{background:url(images/prettyPhoto/light_rounded/btnnext_submit.png) center right no-repeat;cursor:pointer}
div.light_rounded .pp_previous:hover{background:url(images/prettyPhoto/light_rounded/btnPrevious.png) center left no-repeat;cursor:pointer}
div.light_rounded .pp_expand{background:url(images/prettyPhoto/light_rounded/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.light_rounded .pp_expand:hover{background:url(images/prettyPhoto/light_rounded/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.light_rounded .pp_contract{background:url(images/prettyPhoto/light_rounded/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.light_rounded .pp_contract:hover{background:url(images/prettyPhoto/light_rounded/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.light_rounded .pp_close{width:75px;height:22px;background:url(images/prettyPhoto/light_rounded/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.light_rounded .pp_nav .pp_play{background:url(images/prettyPhoto/light_rounded/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.light_rounded .pp_nav .pp_pause{background:url(images/prettyPhoto/light_rounded/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.light_rounded .pp_arrow_previous{background:url(images/prettyPhoto/light_rounded/sprite.png) 0 -71px no-repeat}
div.light_rounded .pp_arrow_next{background:url(images/prettyPhoto/light_rounded/sprite.png) -22px -71px no-repeat}
div.light_rounded .pp_bottom .pp_left{background:url(images/prettyPhoto/light_rounded/sprite.png) -88px -80px no-repeat}
div.light_rounded .pp_bottom .pp_right{background:url(images/prettyPhoto/light_rounded/sprite.png) -110px -80px no-repeat}
div.dark_rounded .pp_top .pp_left{background:url(images/prettyPhoto/dark_rounded/sprite.png) -88px -53px no-repeat}
div.dark_rounded .pp_top .pp_right{background:url(images/prettyPhoto/dark_rounded/sprite.png) -110px -53px no-repeat}
div.dark_rounded .pp_content_container .pp_left{background:url(images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat-y}
div.dark_rounded .pp_content_container .pp_right{background:url(images/prettyPhoto/dark_rounded/contentPattern.png) top right repeat-y}
div.dark_rounded .pp_next:hover{background:url(images/prettyPhoto/dark_rounded/btnnext_submit.png) center right no-repeat;cursor:pointer}
div.dark_rounded .pp_previous:hover{background:url(images/prettyPhoto/dark_rounded/btnPrevious.png) center left no-repeat;cursor:pointer}
div.dark_rounded .pp_expand{background:url(images/prettyPhoto/dark_rounded/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.dark_rounded .pp_expand:hover{background:url(images/prettyPhoto/dark_rounded/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.dark_rounded .pp_contract{background:url(images/prettyPhoto/dark_rounded/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.dark_rounded .pp_contract:hover{background:url(images/prettyPhoto/dark_rounded/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.dark_rounded .pp_close{width:75px;height:22px;background:url(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(images/prettyPhoto/dark_rounded/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.dark_rounded .pp_nav .pp_pause{background:url(images/prettyPhoto/dark_rounded/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.dark_rounded .pp_arrow_previous{background:url(images/prettyPhoto/dark_rounded/sprite.png) 0 -71px no-repeat}
div.dark_rounded .pp_arrow_next{background:url(images/prettyPhoto/dark_rounded/sprite.png) -22px -71px no-repeat}
div.dark_rounded .pp_bottom .pp_left{background:url(images/prettyPhoto/dark_rounded/sprite.png) -88px -80px no-repeat}
div.dark_rounded .pp_bottom .pp_right{background:url(images/prettyPhoto/dark_rounded/sprite.png) -110px -80px no-repeat}
div.dark_rounded .pp_loaderIcon{background:url(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(images/prettyPhoto/dark_square/loader.gif) center center no-repeat}
div.dark_square .pp_expand{background:url(images/prettyPhoto/dark_square/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.dark_square .pp_expand:hover{background:url(images/prettyPhoto/dark_square/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.dark_square .pp_contract{background:url(images/prettyPhoto/dark_square/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.dark_square .pp_contract:hover{background:url(images/prettyPhoto/dark_square/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.dark_square .pp_close{width:75px;height:22px;background:url(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(images/prettyPhoto/dark_square/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.dark_square .pp_nav .pp_pause{background:url(images/prettyPhoto/dark_square/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.dark_square .pp_arrow_previous{background:url(images/prettyPhoto/dark_square/sprite.png) 0 -71px no-repeat}
div.dark_square .pp_arrow_next{background:url(images/prettyPhoto/dark_square/sprite.png) -22px -71px no-repeat}
div.dark_square .pp_next:hover{background:url(images/prettyPhoto/dark_square/btnnext_submit.png) center right no-repeat;cursor:pointer}
div.dark_square .pp_previous:hover{background:url(images/prettyPhoto/dark_square/btnPrevious.png) center left no-repeat;cursor:pointer}
div.light_square .pp_expand{background:url(images/prettyPhoto/light_square/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.light_square .pp_expand:hover{background:url(images/prettyPhoto/light_square/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.light_square .pp_contract{background:url(images/prettyPhoto/light_square/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.light_square .pp_contract:hover{background:url(images/prettyPhoto/light_square/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.light_square .pp_close{width:75px;height:22px;background:url(images/prettyPhoto/light_square/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.light_square .pp_nav .pp_play{background:url(images/prettyPhoto/light_square/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.light_square .pp_nav .pp_pause{background:url(images/prettyPhoto/light_square/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.light_square .pp_arrow_previous{background:url(images/prettyPhoto/light_square/sprite.png) 0 -71px no-repeat}
div.light_square .pp_arrow_next{background:url(images/prettyPhoto/light_square/sprite.png) -22px -71px no-repeat}
div.light_square .pp_next:hover{background:url(images/prettyPhoto/light_square/btnnext_submit.png) center right no-repeat;cursor:pointer}
div.light_square .pp_previous:hover{background:url(images/prettyPhoto/light_square/btnPrevious.png) center left no-repeat;cursor:pointer}
div.facebook .pp_top .pp_left{background:url(images/prettyPhoto/facebook/sprite.png) -88px -53px no-repeat}
div.facebook .pp_top .pp_middle{background:url(images/prettyPhoto/facebook/contentPatternTop.png) top left repeat-x}
div.facebook .pp_top .pp_right{background:url(images/prettyPhoto/facebook/sprite.png) -110px -53px no-repeat}
div.facebook .pp_content_container .pp_left{background:url(images/prettyPhoto/facebook/contentPatternLeft.png) top left repeat-y}
div.facebook .pp_content_container .pp_right{background:url(images/prettyPhoto/facebook/contentPatternRight.png) top right repeat-y}
div.facebook .pp_expand{background:url(images/prettyPhoto/facebook/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.facebook .pp_expand:hover{background:url(images/prettyPhoto/facebook/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.facebook .pp_contract{background:url(images/prettyPhoto/facebook/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.facebook .pp_contract:hover{background:url(images/prettyPhoto/facebook/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.facebook .pp_close{width:22px;height:22px;background:url(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(images/prettyPhoto/facebook/loader.gif) center center no-repeat}
div.facebook .pp_arrow_previous{background:url(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(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(images/prettyPhoto/facebook/sprite.png) -1px -123px no-repeat;height:22px;width:22px}
div.facebook .pp_nav .pp_pause{background:url(images/prettyPhoto/facebook/sprite.png) -32px -123px no-repeat;height:22px;width:22px}
div.facebook .pp_next:hover{background:url(images/prettyPhoto/facebook/btnnext_submit.png) center right no-repeat;cursor:pointer}
div.facebook .pp_previous:hover{background:url(images/prettyPhoto/facebook/btnPrevious.png) center left no-repeat;cursor:pointer}
div.facebook .pp_bottom .pp_left{background:url(images/prettyPhoto/facebook/sprite.png) -88px -80px no-repeat}
div.facebook .pp_bottom .pp_middle{background:url(images/prettyPhoto/facebook/contentPatternBottom.png) top left repeat-x}
div.facebook .pp_bottom .pp_right{background:url(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(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(images/prettyPhoto/light_rounded/btnnext_submit.png) 10000px 10000px no-repeat;display:block;float:right;height:100%;text-indent:-10000px;width:49%}
a.pp_previous{background:url(images/prettyPhoto/light_rounded/btnnext_submit.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}
.pp_content h1, .pp_content h2, .pp_content h3, .pp_content h4, .pp_content h5, .pp_content h6 {color: #fff}
div.ppt{color:#fff;display:none;font-size:0;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(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(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}

input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] {
	cursor: default !important
}

/*-- Events --*/
#evcal_list .eventon_list_event a.desc_trig, .evcal_evdata_img, .event_description .evcal_close, .evcal_btn, .evo_sort_btn{
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}
.mart5{margin-top:5px} .mart10{margin-top:10px} .mart15{margin-top:15px} .mart20{margin-top:20px} .mart25{margin-top:25px} .mart30{margin-top:30px} .mart40{margin-top:40px} .mart50{margin-top:50px}
.marb5{margin-bottom:5px} .marb10{margin-bottom:10px} .marb15{margin-bottom:15px} .marb20{margin-bottom:20px} .marb25{margin-bottom:25px} .marb30{margin-bottom:30px} .marb35{margin-bottom:35px} .marb40{margin-bottom:40px} .marb45{margin-bottom:45px} .marb50{margin-bottom:50px}
.padb5{padding-bottom:5px} .padb10{padding-bottom:10px} .padb15{padding-bottom:15px} .padb20{padding-bottom:20px} .padb25{padding-bottom:25px} .padb30{padding-bottom:30px} .padb40{padding-bottom:40px} .padb50{padding-bottom:50px}
.padt5{padding-top:5px} .padt10{padding-top:10px} .padt15{padding-top:15px} .padt20{padding-top:20px} .padt25{padding-top:25px} .padt30{padding-top:30px} .padt40{padding-top:40px} .padt50{padding-top:50px} .padt60{padding-top:60px}
.pad5{padding:5px} .pad10{padding:10px} .pad15{padding:15px} .pad20{padding:20px} .pad25{padding:25px}
.ttu{text-transform:uppercase}
.tar{text-align:right}
.tac{text-align:center}
.tal{text-align:left}
.wid33{width:33.3%}
.wid66{width:66.6%}
.fleft{float:left}
.ajde_evcal_calendar {width:100%}
.ajde_evcal_calendar img{ max-width:none!important; box-shadow:none!important}
.ajde_evcal_calendar > *{margin:0; padding:0}
.evcal_evdata_row .padt5{padding-top:5px;}
.evcal_evdata_row .padb10{padding-bottom:10px;}
.bordr{border-right:1px solid #cdcdcd}
#evcal_list .bordb{border-bottom:1px solid #cdcdcd}
.ajde_evcal_calendar a:hover{text-decoration:none}
.ajde_evcal_calendar ul, #evcal_list{list-style:none !important; padding:0; margin:0 !important}
.ajde_evcal_calendar .eventon_list_event{margin-left:0px; list-style:none;}	
.ajde_evcal_calendar .calendar_header p, 
.eventon_events_list .eventon_list_event .evcal_cblock{font-family:'Oswald';}
.ajde_evcal_calendar strong{font-weight:normal!important; }
.ajde_evcal_calendar .eventon_events_list p{
	font-family:'Oswald', Tahoma;
	padding:0;margin-bottom:2px !important; margin-top:0px;
}
.ajde_evcal_calendar .eventon_list_event .event_description .evcal_btn{	
	font:bold 14px arial;
	display:inline-block;
	padding:8px 12px!important; margin-top:4px;
	text-transform:uppercase
	/*
	-moz-border-radius: 15px; 
	-webkit-border-radius: 15px;
	border-radius: 15px;
	-webkit-box-shadow:  0px 1px 1px #474747;
	box-shadow:  0px 1px 1px #474747;
	*/
}
.ajde_evcal_calendar .eventon_list_event .event_description .evcal_btn:hover{opacity:0.8}
.ajde_evcal_calendar .calendar_header{ min-height:37px;padding:5px 0 0px; margin:0 ;margin: 0 auto;text-align: center;display: table;}
.ajde_evcal_calendar #evcal_prev{background-position:-5px 0; margin: 8px 10px 0 0;font-size: 34px; width:13px;}
.ajde_evcal_calendar #evcal_next{background-position:-20px 0; margin: 8px 0 0 10px;font-size: 34px;}
.ajde_evcal_calendar .calendar_header p{
	height:36px;line-height:48px;
	margin:0 !important;font-size:30px;
	font-weight:normal;
	float:left; color:#c6c6c6;
	text-transform:uppercase; 
	padding-top:1px; padding-bottom:0px;
}
.ajde_evcal_calendar .calendar_header .evcal_arrows{
	float:left;height:18px; width:20px;display:block; transition:none;
	cursor:pointer;
	color: #616161;
}
.ajde_evcal_calendar .calendar_header .evcal_arrows:hover{opacity:1.0;color: #000;}
/*-- sort bar --*/
.eventon_sorting_section{
	margin:5px 0;
}
.ajde_evcal_calendar .eventon_sort_line, .eventon_filter_line{
	padding-left:13px;
	position:relative;
	margin:0;
}
.eventon_sort_line .evs, .eventon_sort_line .evs_3 p, .eventon_sf_field, .eventon_filter_selection{
	float:left; margin-right:5px;
	position:relative;
}
.eventon_sort_line .eventon_sf_cur_val, .eventon_sort_line .evs_3, .evs_sec_list p{cursor:pointer;}
.eventon_sort_line .eventon_sf_cur_val p, .eventon_filter_line .filtering_set_val{color:#606060}
.eventon_sort_line .evs_3 p:hover{color:#b8b8b8}
.eventon_sort_line .eventon_sortbar_selection .evs_hide{display:none}
.eventon_sort_line .eventon_sortval_for_dropdown, .eventon_filter_line .filtering_set_val{
	cursor:pointer;
	padding-right:15px;
}
.eventon_sort_line p, .eventon_filter_line p, .eventon_sf_field p{
	color:#d8d8d8;
	padding:0; margin:0; 
	text-transform:uppercase; font-size:13px;
}

.eventon_sort_line .eventon_sort_val{
	position:relative
}
.eventon_sort_line .sort_drop_down, .eventon_filter_dropdown{
	position:absolute;
	top:-1px;
	background-color:#fff; 
	border:1px solid #d9d9d9;
	z-index:500;
	-webkit-box-shadow:  0px 0px  3px #d9d9d9;        
    box-shadow:  0px 0px  3px #d9d9d9;
}
.eventon_sort_line .sort_drop_down p, .eventon_filter_dropdown p{
	border-bottom:1px solid #d9d9d9;
	padding:5px;
	line-height:100%;
	margin:0;
	cursor:pointer;
	display:block;
}
.eventon_sort_line .sort_drop_down p:hover, .eventon_filter_dropdown p:hover{
	background-color:#f7f7f7;
	color:#606060;
}

.evo_sort_btn{
	height:15px; width:16px;
	font-family: Oswald, Tahoma;
	font-size:13px;
	color: #d8d8d8;
	text-transform:uppercase;
	padding-left:20px;
	margin-left:13px;
	cursor:pointer;
	opacity:0.4
}
.evo_sort_btn:hover{
	opacity:1
}
/*-- event loading --*/
#eventon_loadbar_section{border-bottom: 1px solid #e5e5e5;height:2px; width:100%;}
/*-- event list -- single event line --*/
#evcal_list .eventon_list_event a.sin_val .evcal_desc{padding-left:55px}
#evcal_list .eventon_list_event p.no_events{
	padding:8px 12px;
	border-left:1px solid #cdcdcd;
	font-style:italic;
	font-size:13px;
	margin-bottom:0;
}
/*-- event list --*/
#evcal_list{border:1px solid #383838;}
.ajde_evcal_calendar .eventon_events_list .eventon_list_event{
	margin-left:0; margin-bottom:0;
	padding:0px; overflow:hidden; position:relative;
	list-style-type:none;
}
.eventon_events_list .eventon_list_event .desc_trig{cursor:pointer}
.eventon_events_list .eventon_list_event a.desc_trig:hover{
	background-color:#f4f4f4;
	border-left-width:7px
}
.eventon_events_list .eventon_list_event a.evcal_list_a{
	display:block; width:100%;position:relative;
	padding:10px 0;
	min-height:54px; overflow:hidden;
	border-left-width:3px;
	border-left-style:solid;
}
.eventon_events_list a{text-decoration:none}
.ajde_evcal_calendar .clear{clear:both; height:0px;margin:0}
.eventon_events_list .eventon_list_event .evcal_cblock{
	background-color:transparent !important; color:#ababab;
	font-size:30px;padding:0px 8px 10px 13px;
	font-weight:bold;
	position:absolute;
	line-height:110%;height:30px;	
	margin:0 6px 0 0;	
}
.eventon_events_list .eventon_list_event a:hover .evcal_cblock{color:#3c3c3c!important}
.eventon_events_list .eventon_list_event .evcal_cblock span{line-height:100%;font-size:14px;vertical-align:super}

.eventon_events_list .eventon_list_event .evcal_desc{
	margin-left:5px;
	padding:3px 15px 0 80px; margin-bottom:0px
}
.eventon_events_list .eventon_list_event .evcal_desc span{
	display:block; 
	color:#262626;
	font-family:'Oswald',arial;
}
.eventon_events_list .eventon_list_event .evcal_desc .evcal_desc_info{
	font-size:10px;line-height:120%;
	color:#ababab;
	padding-bottom:2px;
	opacity:0.5
}
.eventon_list_event:hover .evcal_desc .evcal_desc_info{opacity:1}

.eventon_events_list .eventon_list_event .evcal_desc span.evcal_desc2{
	color:#6B6B6B; 
	text-transform:uppercase;
	font-size:18px
}
.eventon_events_list .eventon_list_event .evcal_desc .evcal_event_types{font-size:10px;line-height:110%;color:#797979}
.eventon_events_list .eventon_list_event .evcal_desc .evcal_event_types em{padding-right:3px;color:#9a9a9a;}
.eventon_events_list .eventon_list_event .evcal_desc em{
	color:#a7a7a7;font-weight:normal;
	margin-bottom:3px;
}
.eventon_events_list .eventon_list_event .evcal_desc .evcal_location{
	padding-left:10px;	
}
.eventon_events_list .eventon_list_event .evcal_desc .evcal_time{
	font-style:normal;
	padding-left:13px;
	margin-right:5px;
}
.eventon_events_list .eventon_list_event .event_description{background-color:#eaeaea;
	border-left:1px solid #e5e5e5;
}
.eventon_events_list .eventon_list_event .event_description, .eventon_events_list .eventon_list_event .event_description .evcal_desc_top{
	border-bottom:1px solid #e5e5e5}
.eventon_events_list .eventon_list_event .event_description p{float:none;}
.eventon_events_list .eventon_list_event .event_description .evcal_eventbrite, .eventon_events_list .eventon_list_event .event_description .evcal_desc_top{padding:5px 8px;margin-top:4px;}
.event_description p{font-family:arial}
/*-- gmap --*/
#evcal_list .eventon_list_event .event_description .evcal_gmaps {margin-top: 0px;width:100%; height:200px; }

/*-- event other data --*/
.evcal_evdata_row .evcal_evdata_custometa_icons{
	display:block; position:absolute; padding:0;
	width:31px; height:30px;
}
.evcal_evdata_row .evcal_evdata_icons{
	display:block; position:absolute; padding:0;
	width:31px; height:30px;
}
.evcal_evdata_row .evcal_evdata_cell h2, .evcal_evdata_row .evcal_evdata_cell h3{
	font-weight:normal;
	text-transform:uppercase;
	letter-spacing:normal;
	line-height:100%;
}
.evcal_evdata_row.evcal_evrow_sm{ padding:12px 20px}
.evcal_evdata_row{
	background-color:#eaeaea;
	padding:25px 15px
}
.evcal_evdata_row .evcal_evdata_cell >* {margin:0; }			
.evcal_evdata_cell h2 b, .evcal_evdata_cell h3 b{
	font-weight:300
}
.evcal_evdata_row .evcal_evdata_cell h2{
	color:#5d5d5d; font-size: 18px; 
}
.evcal_evdata_row .evcal_evdata_cell h2.bash{font-weight:bold	}
.evcal_evdata_row .evcal_evdata_cell h3{
	color:#5d5d5d; font-size:16px; 
}
.evcal_evdata_row .evcal_evdata_cell a{border:none; padding:0;}
.evcal_evdata_row .evcal_evdata_cell{
	padding-left:47px; min-height:30px
}
.evcal_evdata_row.evcal_event_details .evcal_evdata_cell p{ 
	font:normal 12px 'open sans',arial;}
.evcal_evdata_row .evcal_evdata_cell p{	
	font:italic 11px georgia; line-height:140%;
}
.evcal_col50{width:50%; float:left}
/*-- event card close --*/
.event_description .evcal_close:hover{background-color:#dbdada}
.event_description .evcal_close{
	padding:0;
	background-color:#e3e3e3
}
#evcal_list .eventon_list_event .event_description .evcal_close p{
	text-align:center;
	color:#bcbcbc;
	font:12px arial;
	text-transform:uppercase;
	cursor:pointer;
}
/*-- event description section --*/
.eventon_events_list .eventon_list_event .event_description .eventon_full_description p{padding-bottom:8px}

.evcal_evdata_img:hover{background-position:50% 45%;}

#evcal_list .eventon_list_event .evcal_desc span.evcal_event_title{line-height:120%;
	padding-bottom:3px;
}
#evcal_list .eventon_list_event .event_description .evcal_desc_buy_tix a{color:#fff; background:#949494; padding:3px 10px; border:none; display:inline-block}
#evcal_list .eventon_list_event .event_description .evcal_desc_buy_tix a:hover{background:#4F4F4F}
#evcal_list .eventon_list_event .event_description p, #evcal_list .eventon_list_event .event_description li{
	font-size:13px; color:#656565;
	font: normal 12px 'open sans',arial;
}
#evcal_list .eventon_list_event .event_description .evcal_desc_top{background-color:#e4e4e4;}
#evcal_list .eventon_list_event .event_description ul{
	padding-bottom:5px;
	list-style-type:disc!important;
}
#evcal_list .eventon_list_event .event_description li{padding-bottom:10px}
.evcal_event_details .evcal_evdata_cell.shorter_desc{height:150px; overflow:hidden;	}
.evcal_event_details .evcal_evdata_cell{position:relative}
.evcal_event_details .evcal_evdata_cell .eventon_details_shading_bot{
	position:absolute;
	bottom:0; left:0;
	height:40px;
	width:100%;
}
#evcal_list .eventon_details_shading_bot p:hover{opacity:1}
#evcal_list .eventon_details_shading_bot p{
	opacity:0.5;
	margin-top:15px;
	text-align:center;
	cursor:pointer;
}
.eventon_details_shading_bot p span.ev_more_arrow.less{background-position:-8px 0}
.eventon_details_shading_bot p span.ev_more_arrow{
	height:6px; width:8px;	
	margin-left:9px;
}
.eventon_details_shading_bot p span{display:inline-block;}
.evcal_evdata_img {height:70px; }
.ajde_evcal_calendar .evcal_month_line p{
	padding:8px 0 5px;
	color: #c6c6c6;
	font-size: 24px;
	text-transform: uppercase;
	min-height: 24px;
	line-height: 100% !important;
	margin: 0 !important;
	font-weight: normal;
	border-bottom: 1px solid #e5e5e5;
}
#evcal_widget .eventon_events_list .eventon_list_event .evcal_desc .evcal_desc_info em{
	color:#9b9999;
	font-weight:normal;
}
#evcal_widget .eventon_events_list .eventon_list_event .evcal_desc .evcal_desc_info .evcal_location{
	color:#d5d5d5
}
#evcal_widget .eventon_events_list .eventon_list_event .evcal_desc .evcal_event_types, #evcal_widget .evcal_evdata_row .evcal_evdata_custometa_icons{
	display:none;
}	
#evcal_widget .ajde_evcal_calendar .calendar_header{
	padding-bottom:5px;
	min-height:inherit;
}
#evcal_widget a{font-weight:normal}
#evcal_widget #evcal_list .eventon_list_event a.sin_val .evcal_desc{padding-left:38px}

#evcal_widget .event_description .evcal_evdata_row p{
	line-height:130%;
	font-size:11px;
}
#evcal_widget .event_description .evcal_evdata_row {padding:15px 15px;}
#evcal_widget .event_description .evcal_evdata_row.evcal_close{padding:2px;}
#evcal_widget .event_description .evcal_evdata_row .evcal_evdata_icons{display:none}
#evcal_widget .event_description .evcal_evdata_row .evcal_evdata_cell{padding-left:0px}
#evcal_widget .event_description .evcal_evdata_row .evcal_evdata_cell h2{font-size:16px}
#evcal_widget .event_description .evcal_evdata_row .evcal_evdata_cell h3{font-size:14px}
#evcal_widget .event_description .evcal_col50{
		width:100%; float:none;
		border-bottom: 1px solid #CDCDCD;
}
#evcal_widget .event_description .evcal_col50 .bordr{border-right:none}
#evcal_widget .eventon_events_list .evcal_desc2{line-height:120%; font-size:14px!important}
#evcal_widget .ajde_evcal_calendar .calendar_header p{font-size:18px}
#evcal_widget .ajde_evcal_calendar #evcal_prev{margin-right:8px}
#evcal_widget .ajde_evcal_calendar #evcal_next{margin-left:8px}
#evcal_widget #evcal_sort_bar ul .sort_title{padding:8px 5px 0 0 }
#evcal_widget #evcal_sort_bar ul p{font-size:13px; }
#evcal_widget .eventon_events_list .evcal_cblock{font-size:24px;padding:3px 5px 5px 8px}
#evcal_widget .eventon_events_list .eventon_list_event .evcal_desc{padding-left:55px; padding-right:10px}
#evcal_widget .eventon_events_list .eventon_list_event .evcal_cblock span{font-size:10px}
#evcal_widget #evcal_list .eventon_list_event a.evcal_list_a{padding:5px 0}
#evcal_widget #evcal_head #evcal_prev{margin-right:2px; }
#evcal_widget #evcal_head #evcal_next{margin-left:2px; background-position:-24px 0;
	width:15px;
}
#evcal_widget #evcal_head #evcal_next:hover{
	background-position:-24px 20px;
}
#evcal_widget #evcal_head a{
	margin-top:0px
}
#evcal_widget #evcal_head{height:auto; padding-bottom:2px}
#evcal_widget #evcal_cur{
	line-height:100%;
	height:auto
}
.evcal_evdata_row .evcal_evdata_cell p, #evcal_list .eventon_list_event p.no_events{
	font-family:'Oswald',georgia
}
.eventon_fullcal {padding:30px 0}
.eventon_fullcal .eventon_fc_daynames .evo_fc_day{font-size:14px;}
.eventon_fullcal .eventon_fc_daynames .evo_fc_day:hover{cursor:default; color:#d4d4d4}
.eventon_fullcal .evo_fc_day{
	display:block;
	margin:0;
	float:left;
	width:14%;
	text-align:center;
	min-height:2px;
	cursor:pointer;
	border-top:3px solid transparent;
	font-size:20px;
	padding:10px 0;
	color:#A2A2A2;
}
.eventon_fullcal .evo_fc_day:hover{color:#9e9e9e;background-color:#fbfbfb; }
.eventon_fullcal .evo_fc_day.on_focus{
	background-color:#f7f7f7;
	border-top:3px solid #9e9e9e;
}
.evo_fc_day.has_events{color:#191919; font-weight:700}
.eventon_fullcal p{
	color: #d8d8d8;
	padding: 0;
	margin: 0;
	text-transform: uppercase;
	font-size: 13px;
	font-family: oswald, 'arial narrow';
}
.evo_fc_widget .eventon_fullcal .eventon_fc_daynames .evo_fc_day{
	visibility:hidden; display:block;
}
.evo_fc_widget .eventon_fullcal .eventon_fc_daynames .evo_fc_day:first-letter{visibility:visible;}
.evo_fc_widget .eventon_fullcal .evo_fc_day{font-size:12px;}

/* 	Icons
----------------------------------------------------------------------*/
.the-icons .span3, #glyphs .box1 {margin: 0 1% !important; width: 23% !important}
.the-icons{margin-top:22px;}
.the-icons .span3 a{display:block;cursor:pointer;line-height:32px;height:32px;padding-left:10px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-transition: all 0.2s ease;transition: all 0.2s ease;}
.the-icons .span3 a,.the-icons .span3 a:hover{color:#979797;}
.the-icons .span3 a [class^="icon-"],.the-icons .span3 a [class*=" icon-"]{width:32px;font-size:14px;display:inline-block;text-align:right;margin-right:10px;}
.the-icons .span3 a:hover{background-color:#414141;color:#fff;text-decoration:none;}.the-icons .span3 a:hover [class^="icon-"],.the-icons .span3 a:hover [class*=" icon-"]{*font-size:28px;*vertical-align:middle;}
.the-icons .span3 a:hover [class^="icon-"]:before,.the-icons .span3 a:hover [class*=" icon-"]:before{font-size:28px;vertical-align:-5px;}
#glyphs .box1 {width:46% !important; font-size: 30px;display: inline-block;-webkit-transition: all 0.2s ease;transition: all 0.2s ease;}
#glyphs .box1:hover { -webkit-transform: scale(1.4);}

/* 	Google Map
----------------------------------------------------------------------*/
.official-map {
	width: 100%;
}
.official-map img {
	width: auto !important;
	max-width: none !important;
}

.errori {
	font-size: 15em;
	color: #191919;
	text-shadow: 0 4px 0 #DCDCDC;
}
.error-page h2 small {
	font-size: 14px;
	display: block;
	line-height: 24px;
	margin: 14px 0 30px 0;
	font-family: tahoma;
	text-transform: none;
}

/*	More Styles
----------------------------------------------------------------------*/
.mi { margin-right: 4px !important }
.mid { margin-right: 8px !important }
.mii { margin-left: 4px !important }
.miid { margin-left: 8px !important }

.mt { margin-top: 20px !important }
.mtt { margin-top: 30px !important }
.mtf { margin-top: 40px !important }
.mts { margin-top: 70px !important }

.mb { margin-bottom: 20px !important }
.mbt { margin-bottom: 30px !important }
.mbf { margin-bottom: 40px !important }
.mbs { margin-bottom: 70px !important  }

.pt { padding-top: 120px }

.fll { float: left; margin: 0 20px 10px 0 !important }
.flr { float: right; margin: 0 0 10px 20px !important }
.tac { text-align: center !important }
.tar { text-align: right !important }
.tal { text-align: left !important }
.tacIMG, .tacIMG img {margin: 0 auto !important; text-align: center;}

.two-radius { border-radius: 2px !important; -webkit-border-radius: 2px !important }
.three-radius { border-radius: 3px !important; -webkit-border-radius: 3px !important }
.four-radius { border-radius: 4px !important; -webkit-border-radius: 4px !important }
.five-radiu { border-radius: 5px !important; -webkit-border-radius: 5px !important }
.six-radius { border-radius:6px !important; -webkit-border-radius: 6px !important }
.ten-radius { border-radius: 10px !important; -webkit-border-radius: 10px !important }
.circle-radius { border-radius: 100% !important; -webkit-border-radius: 100% !important }

.relative {position: relative !important}
.righter {float: right !important}
.lefter {float: left !important}
.hidden { display: none }
.tt {
	display: block;
	padding: 10px 0;
	border-bottom: 3px solid #DDD;
	text-align: center;
}
.without_border a {border:0 !important}

/*	IE
----------------------------------------------------------------------*/
.ie8 .accordion-head p, .ie8 .toggle-head p {margin-bottom: 0}
.ie8 .testimonial p {font-family: tahoma}
td .avatar {width: 20px;height: 20px}
.ie8 .modern-slider img, .ie8 .modern-slider {max-width: auto;width: auto}

/*	Snap
----------------------------------------------------------------------*/
.snap-drawers {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
}
.snap-drawer {
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: auto;
  width: 0;
  height: auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: width 0.3s ease;
     -moz-transition: width 0.3s ease;
      -ms-transition: width 0.3s ease;
       -o-transition: width 0.3s ease;
          transition: width 0.3s ease;
}
.snap-drawer-left {
  left: 0;
  z-index: 1;
}
.snap-drawer-right {
  right: 0;
  z-index: 1;
}
.snap-drawer {
	background: #2B2B2B;
	color: #eee;
}
.snap-drawer ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: block !important;
	visibility: visible !important;
}
.snap-drawer ul ul {
	margin-left: 20px;
}
.snap-drawer i {
	margin-right: 8px;
	margin-left: 0;
}
.snap-drawer li a {
	display: block;
	border-bottom: 1px solid rgba(0,0,0, 0.1);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 10px 0 10px 20px;
	font-weight: bold;
	text-shadow: 0 1px 0 #000;
	text-decoration: none;
	color: #333;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.snap-drawer ul ul {
	padding-left: 4px;
}
.snap-drawer li > a:hover, .snap-drawer li.current > a {
	padding-left: 30px;
	color: #333;
	text-shadow: 0 1px 0 #ccc;
	border-right: 2px solid #fff;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
#open-left {
	font-size: 17px;
	font-weight: bold;
	display: none;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	padding: 4px 8px;
	cursor: pointer;
	float: left;
	background-color: #F7F7F7;
	color: #3C3C3C;
	margin: 8px 0;
}
.header_v2  #open-left {
	float: right;
	background-color: #3C3C3C;
	color: #F7F7F7;
	margin: 46px 0;
}
.snapjs-left .snap-drawer-right,
.snapjs-right .snap-drawer-left {
  display: none;
}
.snapjs-expand-left .snap-drawer-left,
.snapjs-expand-right .snap-drawer-right {
  width: 100%;
}
::-webkit-input-placeholder { /* WebKit browsers */
    color:    #FFF;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #FFF;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #FFF;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    #FFF;
}


