

/*-----------------------------------------------------------------------------------*/
/*	1.	CSS Reset & Clearfix - http://meyerweb.com/eric/tools/css/reset/
/*-----------------------------------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input,textarea {
	font: 12px/20px;	
	font:inherit;
	resize:none;
}

* { _noFocusLine: expression(this.hideFocus=true); } /* Removes dotted lines around links */



/*-----------------------------------------------------------------------------------*/
/*	2.	Document Setup (body, common classes, structure etc)
/*-----------------------------------------------------------------------------------*/

body {
	background:#fff;
	margin:0;
	padding:0;
	font: 16px/20px Calibri, Helvetica, Arial, sans-serif;
	color:#686868;
	line-height:1.3em;
}

#wrapper {
	background:#fff;
	position:relative;
	}

a {
	text-decoration:none;
	-webkit-transition:color 0.2s linear;
    -moz-transition:color 0.2s linear;
    -o-transition:color 0.2s linear;
    transition:color 0.2s linear;
}

a:focus , a:link, a:active {
	outline:none;
}

a:hover {
	color:#999;
}

a:hover img{
	opacity:0.8;
}

p {
	margin-bottom:20px;
}

.clear {
	clear:both;
}

.aligncenter {
	text-align:center;
}

.alignleft {
	text-align:left;
}

.alignright {
	text-align:right;
}

strong {
	font-weight:700;
}
 
#bg {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

.bgwidth { 
	width: 100%; 
	height:auto;
}

.bgheight { 
	height: 100%; 
	width:auto;
}

/*---clearfix---*/

.clearFix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}


.space {
    height:40px;
    width:100%;
	clear:both;
}

.half-space {
    height:20px;
    width:100%;
	clear:both;
}

label {
    color:#7F7F7F;
    display:block;
    font-weight:normal;
}

label.error {
    color: red;
    font-style: italic;
    margin: 5px 0 10px 0;
}

input[type="text"], input[type="password"], input.text, input.title, textarea, select, select.enquiry {
    background:#FFFFFF;
    border:1px solid #EBEBEB;
}

input[type="text"]:focus, input[type="password"]:focus, input.text:focus, input.title:focus, textarea:focus, select:focus{
    -moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
    border:1px solid #EBEBEB;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
}

input[type="text"], input[type="password"], input.text, input.title, textarea, select, select.enquiry{
    font-family:Calibri;
    font-size:14px;
    margin:5px 0;
}

input.text, input.title, select {
    padding:5%;
    width:89%;
}

input.title {
    font-size:13px;
}

textarea {
    height:130px;
    padding:2% 2%;
    width:95.5%;
}

select.enquiry{
	height:35px;
}

form.inline {
}

form.inline p {
    margin-bottom:0;
}

.clear{
	clear:both;
}

.width80{
	width:80%;
	position:relative;
	padding:0 auto;
	margin:0 auto;
}

/*-----------------------------------------------------------------------------------*/
/*	3.	Columns
/*-----------------------------------------------------------------------------------*/

.one-half { width: 460px }
.one-third { width: 300px; }
.two-third { width: 620px; }
.one-fourth { width: 220px; }
.one-fifth { width: 172px; }
.three-fourth { width:700px; }
.one-sixth { width: 140px; }
.five-sixth { width: 780px }

.one-fourth, .one-half, .two-third, .one-third, .three-fourth, .one-sixth, .five-sixth, .one-fifth {
	position: relative;
	margin-right:20px;
	float: left;	
}

.percent-one-half { width: 48%; }
.percent-one-third { width: 30.66%; }
.percent-two-third { width: 65.33%; }
.percent-one-fourth { width: 22%; }
.percent-one-fifth { width: 17.2%; }
.percent-three-fourth { width: 74%; }
.percent-one-fifth { width: 16.8%; }
.percent-two-fifth { width: 37.6%; }
.percent-three-fifth { width: 58.4%; }
.percent-four-fifth { width: 67.2%; }
.percent-one-sixth { width: 13.33%; }
.percent-five-sixth { width: 82.67%; }

.percent-one-half,
.percent-one-third,
.percent-two-third,
.percent-three-fourth,
.percent-one-fourth,
.percent-one-fifth,
.percent-two-fifth,
.percent-three-fifth,
.percent-four-fifth,
.percent-one-sixth,
.percent-five-sixth,
.percent-one-fifth {
	position: relative;
	margin-right: 4%;
	float: left;
}

.column-right {
	float:right;
}
.column-last {
	margin-right: 0!important;
	clear: right;
}



/*-----------------------------------------------------------------------------------*/
/*	4.	Typography
/*-----------------------------------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	color:#444;
}

h1 {
	font-size:42px;
	line-height:1.1em;
	margin-bottom:13px;	
}

h2 {
	font-size:36px;
	line-height:1.1em;
	margin-bottom:13px;
}

h3 {
	font-size:30px;
	line-height:1.1em;
	margin-bottom:15px;	
}

h4 {
	font-size:22px;
	line-height:1.2em;
	margin-bottom:10px;	
}

h5 {
	font-size:20px;
	margin-bottom:10px;
	line-height:1.1em;
}

h6 {
	font-size:16px;
	line-height:1.1em;
	margin-bottom:10px;
	font-weight:400;
}

 .txt10{
	 font-size:10px;
	 line-height:0.8em;
 }
 
.txt-10px{	font-size:10px; line-height:1.1em;}
.txt-11px{	font-size:11px; line-height:1.1em;}
.txt-12px{	font-size:12px; line-height:1.1em;}
.txt-14px{	font-size:14px; line-height:1.1em;}
.txt-16px{	font-size:16px;}
.txt-18px{	font-size:18px;}
.txt-20px{	font-size:20px;}
.txt-22px{	font-size:22px;}
.txt-24px{	font-size:24px;}

 .txt16{
	 font-size:16px;
	 line-height:1.3em;
 }
 
 .japanese{
	 font-family:"メイリオ", Meiryo, Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	 line-height:1.3em;
 }
 

 
 


/*--- 4.1. Dropcaps ---*/

.dropcap1 {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #666666;
    border-radius: 3px;
    color: #fff;
    float: left;
    font-size: 36px;
    margin: 4px 10px 2px 0;
    padding: 12px 6px;
    text-shadow:0 1px 0 #fff;
}

.dropcap2 {
    float: left;
    font-size: 36px;
	line-height:26px;
    padding-right: 10px;
    padding-top: 8px;
}

.dropcap3 {
    float: left;
    font-size: 36px;
	line-height:30px;
    font-style: italic;
    padding-right: 10px;
	padding-top:8px;
}


/*--- 4.2. Hightlighted Text ---*/

.highlight {
    padding: 1px 3px;
}

.highlight.redish {
    background-color: #ffcccf;
    color: #A14A40;
}

.highlight.bluish {
    background-color: #D7E7F5;
    color: #5E6984;
}

.highlight.yellowish {
    background-color: #FFF9CC;
    color: #736B4C;
}

.highlight.greenish {
    background-color: #E2F2CE;
    color: #466840;
}

.highlight.dark {
    background: #333333;
    color:#fff;
}

pre, code {
    background-color: #F5F5F5;
    border-color: #ebebeb;
    border-style: solid;
    border-width: 0px 0px 0px 4px;
    display: block;
    font-size: 11px;
    padding: 10px;
}

pre, code {
    margin-bottom:10px;
}

blockquote {
    border-left: 2px solid #ebebeb;
    color: #787878;
    font-size: 16px;
    font-style: italic;
    line-height:24px;
    margin: 20px 50px;
    padding: 0 0 5px 15px;
}
/*-----------------------------------------------------------------------------------*/
/*	colors
/*-----------------------------------------------------------------------------------*/

.color-red{color:#FF0000;}

.bk-parentchild{
    background-color:#EF5A88;
    color: #fff;
}
.bk-parentchild:hover {
    color: #fff;
	background-color:#EF5A88;
}
.color-parentchild{color:#EF5A88;}

.bk-afterschool{
    background-color:#71BF43;
    color: #fff;
}
.bk-afterschool:hover {
    color: #fff;
	background-color: #093;
}
.color-afterschool{color:#71BF43;}

.bk-international{
    background-color:#00B9F1;
    color: #fff;
}
.bk-international:hover {
    color: #fff;
	background: #069;
}
.color-international{color:#00B9F1;}

.bk-orange {
    background-color:#fe7e17;
    color: #fff;
}

.bk-orange:hover {
    color: #fff;
	background: #C60;
}

.color-orange{color:#971838;}

.bk-seasonal {
    background-color: #FC3;
    color: #fff;
}

.bk-seasonal:hover {
    color: #fff;
	background: #FF0;
}

.color-seasonal{
	color:#FC3;
}

.color-saturday{color:#E64E1B;}

.bk-saturday{
    background-color:#E64E1B;
    color: #fff;
}
.bk-saturday:hover {
    color: #fff;
	background-color: #AF3D08;
}

.text-red{
	color:#FF0000;
}

.bk-cspace{
    background-color:#f27e6f;
    color: #fff;
}

.bk-cspace:hover {
    color: #fff;
}

.cplor-cspace{
	color:#f27e6f;
}

.bk-camp-spring{background-color:#D7F7CA;}
.bk-camp-summer{background-color:#F7C978;}
.bk-camp-winter{background-color:#CFD5FA;}

/*-----------------------------------------------------------------------------------*/
/*	5.	Header
/*-----------------------------------------------------------------------------------*/

#top {

}

#header {
	position:relative;
	z-index:4000;
}

.top-shadow {
	position:absolute;
	background:url(images/top-shadow.png) repeat-x scroll 0 0;
	height:4px;
	width:100%;
	z-index:100;
	opacity:0.5;
}

.bottom-shadow {
	position:absolute;
	background:url(images/bottom-shadow.png) repeat-x scroll 0 0;
	height:4px;
	width:100%;
	top:176px;
	left:0;
	z-index:200;
	opacity:0.5;
}

.home .bottom-shadow {
	top:496px;
}

.fullwidth-map .bottom-shadow {
	top:396px;	
}	

.fullwidth-map {
	margin: 0 auto;
	overflow: hidden;
	clear: both;
	position: relative;
}

.fullwidth-map iframe {
	left: 50%;
	margin-left: -960px;
	position:relative;
}

#inside-header{
	margin:20px 0;
}

#inside-header p{
	margin:0 0 5px 0;
	font-size:16px;
	font-weight:bold;
}

#inside-header span.tel{
	font-size:24px;
}

#inside-header .btns{
	margin:10px 0;
}

#inside-header .btns img{
	margin-left:5px;
}

#inside-header .btns a:hover img{
	/* Theoretically for IE 8 & 9 (more valid) */
  /* ...but not required as filter works too */
  /* should come BEFORE filter */
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; // IE8

  /* This works in IE 8 & 9 too */
  /* ... but also 5, 6, 7 */
  filter: alpha(opacity=80); // IE 5-7
  
  /* Modern Browsers */
  opacity: 0.8;
}

#inside-header .column-last{
	text-align:right;
}

.logo {
	margin:0;
	width:392px;
	}

.logo img{
	width:100%;
}




/*-----------------------------------------------------------------------------------*/
/*	Header navigation
/*-----------------------------------------------------------------------------------*/
#navigation {
	z-index:10000;
	background-color:#E0E1E2;
	width:100%;
	float:right;
}

ul#mainnav {
	float:right;
	position:relative;
	display:block;
	z-index:1001;
}

ul#mainnav li {
	display:inline-block;
	float:left;
	position:relative;
	z-index:1000;
	line-height:1.3em;
	float:left;
}

ul#mainnav > li.prev-item, ul#mainnav > li.previ-item {
	background:none;
}

ul#mainnav > li:last-child {
	background:none;
}

ul#mainnav li a {
	font: 14px/20px Calibri, Helvetica, Arial, sans-serif;
	font-weight:bold;
	position:relative;
	margin:0; 
	padding:5px 15px;
	line-height:1.3em;
	color:#3C3C3B;
	display:inline-block;
	*display:block; /* IE7 Hack */
	-webkit-transition:color 0.1s linear, background 0.1s linear, border-left-color 0.1s linear, border-bottom-color 0.1s linear;
    -moz-transition:color 0.1s linear, background 0.1s linear, border-left-color 0.1s linear, border-bottom-color 0.1s linear;
    -o-transition:color 0.1s linear, background 0.1s linear, border-left-color 0.1s linear, border-bottom-color 0.1s linear;
    transition:color 0.1s linear, background 0.1s linear, border-left-color 0.1s linear, border-bottom-color 0.1s linear;
	z-index:100;
}

ul#mainnav > li > a > span {
	padding-bottom:2px;
}

ul#mainnav li p.txt9{
	font-size:9px;
	line-height:1.2em;
	margin-top:8px;
	
}


ul#mainnav li a.sf-with-ul:hover{
	color:#fff;
}

ul#mainnav li ul li a.sf-with-ul:hover{
	background:#444;
	color:#fff;

}


ul#mainnav li a:hover{
	color:#fff;
	background:#444;
}


ul#mainnav li ul li a.current:hover {
	color:#fff;
	background:#444;
}

ul#mainnav li ul li {
	background:#fff;
	margin:0;	
	float:left;
	width:100%;
}

ul#mainnav li ul li a{
	color:#686868;
}

ul#mainnav li ul li a, ul#mainnav li ul li ul li a { /* visited pseudo selector so IE6 applies text colour*/
	height:18px;
	line-height:18px;
	width:170px;
	padding:5px 15px;
	display:block;
	background:#fff;
	text-decoration:none;
	border-bottom:1px solid #ebebeb;
	border-left:1px solid #ebebeb;	
	z-index:1100;
	position:relative;
	font-size:13px !important;
	text-transform:uppercase;
}

.nav-first-item {
	z-index:1000;
	position:relative;
}

#nav ul#mainnav > li > ul > li.nav-last-item > a, #nav  ul#mainnav > li > ul > li > ul > li.nav-last-item > a {
	border-bottom:0 none;
}

ul#mainnav li ul li a:hover, ul#mainnav li ul li ul li a:hover {
	background:#444;
	color:#fff;
	margin-bottom:0px;
	border-bottom:1px solid #ebebeb;
	border-left:1px solid #ebebeb;
}

#navigation span.download{
	font-weight:bold;
	margin-left:15px;
	color:#9A9798;
}

/*-----------------------------------------------------------------------------------*/
/*	menu-category
/*-----------------------------------------------------------------------------------*/

#menu-category{
	background-color:#F9DF02;
	width:100%;
}


#nav
{
	width: 980px;
	z-index:2000;
	position:relative;
	margin:0 auto;
	padding:0 auto;
}

#nav > a
{
	display: none;
}

#nav li{
	position: relative;
}
#nav li a
{
	color: #fff;
	display: block;
}
#nav li a:active{background-color: #c00 !important;}

#nav span:after
{
	width: 0;
	height: 0;
	border: 0.313em solid transparent; /* 5 */
	border-bottom: none;
	border-top-color: #efa585;
	content: '';
	vertical-align: middle;
	display: inline-block;
	position: relative;
	right: -0.313em; /* 5 */
}

#nav span.nodropdown:after
{
	width: 0;
	height: 0;
	border: none; /* 5 */
	border-bottom: none;
	border-top-color: #efa585;
	content: '';
	vertical-align: middle;
	display: inline-block;
	position: relative;
	right: -0.313em; /* 5 */
}


/* first level */

#nav > ul
{
	height: 3.30em; 
	background-color: #e15a1f;
}

#nav > ul > li
{
	width: 25%;
	height: 100%;
	float: left;
}
#nav > ul > li > a
{
	height: 100%;
	font-size: 18px; 
	line-height: 2.6em; 
	text-align: center;
	}
	
#nav > ul > li > a.preschool{line-height:1.2em;background-color:#00B8F0;}
#nav > ul > li > a.preschool1{background-color:#00B8F0;}
#nav > ul > li > a.parentchild{background-color:#EF5A88;}
#nav > ul > li > a.afterschool{background-color:#71BF43;}
#nav > ul > li > a.saturday{background-color:#E64E1B;}
#nav > ul > li > a.partyinfo{background-color:#4FACC5;}
#nav > ul > li > a.partythemes{background-color:#F02B34;}
#nav > ul > li > a.partyplans{background-color:#A9CF17;}
#nav > ul > li > a.partycontact{background-color:#FF8F1E;}


#nav > ul > li:not( :last-child ) > a{border-right: 1px solid #e15a1f;}

#nav > ul > li:hover > a.preschool, #nav > ul:not( :hover ) > li.active > a.preschool{background-color: #0683B2;}
#nav > ul > li:hover > a.parentchild, #nav > ul:not( :hover ) > li.active > a.parentchild{background-color: #D5047B;}
#nav > ul > li:hover > a.afterschool, #nav > ul:not( :hover ) > li.active > a.afterschool{background-color: #0CA003;}
#nav > ul > li:hover > a.saturday, #nav > ul:not( :hover ) > li.active > a.saturday{background-color: #AF3D08;}
#nav > ul > li:hover > a.paryinfo, #nav > ul:not( :hover ) > li.active > a.partyinfo{background-color: #4F99C5;}
#nav > ul > li:hover > a.partythemes, #nav > ul:not( :hover ) > li.active > a.partythemes{background-color: #BD2B34;}
#nav > ul > li:hover > a.partyplans, #nav > ul:not( :hover ) > li.active > a.partyplans{background-color: #66CC66;}
#nav > ul > li:hover > a.partycontact, #nav > ul:not( :hover ) > li.active > a.partycontact{background-color: #FF661E;}

				/* second level */

				#nav li ul{
					background-color: #e15a1f;
					display: none;
					position: absolute;
					top: 100%;
				}
				#nav li ul.preschool{background-color: #0683B2;}
				#nav li ul.parentchild{background-color:#D5047B;}
				#nav li ul.afterschool{background-color: #0CA003;}
				#nav li ul.saturday{background-color:#AF3D08;}
				#nav li ul.partyinfo{background-color:#4F99C5;}
				#nav li ul.partythemes{background-color:#BD2B34;}
				#nav li ul.partyplans{background-color:#66CC66;}
				#nav li ul.partycontact{background-color: #FF661E;}
				
					#nav li:hover ul
					{
						display: block;
						left: 0;
						right: 0;
					}
						#nav li:not( :first-child ):hover ul
						{
							left: -1px;
						}
						#nav li ul a{font-size: 18px;border-top: 1px solid #EF5A88;padding: 7px;}
						#nav li ul a.preschool{border-top: 1px solid #00B8F0;}
						#nav li ul a.parentchild{border-top: 1px solid #EF5A88;}
						#nav li ul a.afterschool{border-top: 1px solid #71BF43;}
						#nav li ul a.saturday{border-top: 1px solid #E64E1B;}
						#nav li ul a.partyinfo{border-top: 1px solid #FFFFFF;}
						#nav li ul a.partythemes{border-top: 1px solid #FFFFFF;}
						#nav li ul a.partyplans{border-top: 1px solid #FFFFFF;}
						#nav li ul a.partycontact{border-top: 1px solid #FFFFFF;}
						
						#nav li ul li a.preschool:hover, #nav li ul:not( :hover ) li.active a.preschool{background-color:#00B8F0;}
						#nav li ul li a.parentchild:hover, #nav li ul:not( :hover ) li.active a.parentchild{background-color:#EF5A88;}
						#nav li ul li a.afterschool:hover, #nav li ul:not( :hover ) li.active a.afterschool{background-color: #71BF43;}
						#nav li ul li a.saturday:hover, #nav li ul:not( :hover ) li.active a.saturday{background-color:#E64E1B;}
						#nav li ul li a.partyinfo:hover, #nav li ul:not( :hover ) li.active a.partyinfo{background-color:#4FACC5;}
						#nav li ul li a.partythemes:hover, #nav li ul:not( :hover ) li.active a.partythemes{background-color:#F02B34;}
						#nav li ul li a.partyplans:hover, #nav li ul:not( :hover ) li.active a.partyplans{background-color:#A9CF17;}
						#nav li ul li a.partycontact:hover, #nav li ul:not( :hover ) li.active a.partycontact{background-color:#FF8F1E;}


		@media only screen and ( max-width: 62.5em ) /* 1000 */
		{
			#nav
			{
				width: 100%;
				position: static;
				margin: 0;
			}
		}

		@media only screen and ( max-width: 40em ) /* 640 */
		{
			html
			{
				font-size: 70%; 
			}

			#nav
			{
				position: relative;
				top: auto;
				left: auto;
			}
				#nav > a
				{
					width: 3.125em; /* 50 */
					height: 3.125em; /* 50 */
					text-align: left;
					text-indent: -9999px;
					background-color: #e15a1f;
					position: relative;
				}
					#nav > a:before,
					#nav > a:after
					{
						position: absolute;
						border: 2px solid #fff;
						top: 35%;
						left: 25%;
						right: 25%;
						content: '';
					}
					#nav > a:after
					{
						top: 60%;
					}

				#nav:not( :target ) > a:first-of-type,
				#nav:target > a:last-of-type
				{
					display: block;
				}


			/* first level */

			#nav > ul
			{
				height: auto;
				display: none;
				position: absolute;
				left: 0;
				right: 0;
			}
				#nav:target > ul
				{
					display: block;
				}
				#nav > ul > li
				{
					width: 100%;
					float: none;
				}
					#nav > ul > li > a
					{
						height: auto;
						text-align: left;
						padding: 0 0.833em; /* 20 (24) */
					}
						#nav > ul > li:not( :last-child ) > a
						{
							border-right: none;
							border-bottom: 1px solid #cc470d;
						}


				/* second level */

				#nav li ul
				{
					position: static;
					padding: 1.25em; /* 20 */
					padding-top: 0;
				}
		}


/*-----------------------------------------------------------------------------------*/
/*	6.	Main Content
/*-----------------------------------------------------------------------------------*/

.services {
	overflow:hidden;
	margin-bottom:80px;
}

.homepage-services .service-item {
	text-align:left;
	padding:0 5px;
}

.homepage-services h4.service {
	margin-top:20px;
	display:inline-block;
	clear:both;
	font-weight:400;
	line-height:1.3em;
	font-size:16px;
}

.homepage-services h4.service span.age{
	font-size:12px;
}

.clients {	
	overflow:hidden;
	border:1px solid #f1f1f1;
	text-align:center;
	clear:both;
}
.clients li {
	display:inline-block;
	border-left:1px solid #f1f1f1;
	text-align:center;
	padding:0 11px;
}
.clients li:first-child {
	border: none;
}

.clients li img {
	vertical-align:middle;
}

.clients li a {
	opacity:0.4;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
	filter: alpha(opacity=15);	
	display:inline-block;	
	height:120px;
	line-height:120px;
}


.centered-wrapper, .centered-wrapper-menu {
	width:90%;
	margin:0 auto;
}

.centered-wrapper-white{
	width:920px;
	margin:50px auto 0 auto;
	padding:0 30px;
	background-color:#FFF;
	box-shadow: 3px -13px 3px 1px rgba(0,0,0,0.2);
  -webkit-box-shadow: 3px -13px 3px 1px rgba(0,0,0,0.2);
  -moz-box-shadow: 3px -13px 3px 1px rgba(0,0,0,0.2);
}

.centered-wrapper-white .centered-wrapper {
	width:100%;
	margin:0 auto;
}

.title-content{
	width:920px;
	margin:0 auto;
	padding:20px 0 5px 0;
}


.page-title {
	width:100%;
	clear:both;
	margin-bottom:20px;
	padding:0;
	position:relative;
	z-index:1;
}

.page-title .page-background {
	width:100%;
	position:absolute;
	top:0;
	left:0;
	height:180px;
	overflow:hidden;
	z-index:0;
}

.page-title .page-background .pattern-orange {
	height:180px;
	background-color:#fe7e17;
}

.page-title .page-background .pattern-kspace {
	height:180px;
	background-color:#EF5A88;
}

.page-title .page-background .pattern-aspace {
	height:180px;
	background-image:url(images/bk-green.jpg);
	background-repeat:repeat-x;
}


.page-title .page-background .pattern-tspace {
	height:180px;
	background-image:url(images/bk-sea.jpg);
	background-repeat:repeat-x;
}


.page-title .page-background .pattern3{
	background:url(images/bg/bg3.png) repeat scroll 0 0;
	height:180px;
}


.page-title .page-background .pattern4 {
	background:url(images/bg/bg4.png) repeat scroll 0 0;
	height:180px;
}


.page-title .page-background .pattern5 {
	background:url(images/bg/bg5.png) repeat scroll 0 0;
	height:180px;
}


.page-title .page-background .pattern6 {
	background:url(images/bg/bg6.png) repeat scroll 0 0;
	height:180px;
}


.page-title .page-background .pattern7 {
	background:url(images/bg/bg7.png) repeat scroll 0 0;
	height:180px;
}


.page-title .page-background .pattern8 {
	background:url(images/bg/bg8.png) repeat scroll 0 0;
	height:180px;
}


.page-title .page-background .pattern9 {
	background:url(images/bg/bg1.png) repeat scroll 0 0;
	height:180px;
}


.page-title .page-background .pattern10 {
	background:url(images/bg/bg10.png) repeat scroll 0 0;
	height:180px;
}

.page-title .page-background img {
	position:absolute;
	top:0px;
	left:50%;
	margin-left:-960px;
}

.page-title h2 {
	font-size: 36px;
	line-height:44px;
	font-weight: 300;
}

.search-form {
	float:right;
	position:relative;
	top:-7px;
}

.search-form  input[type="text"] {
	width:180px;
	height:20px;
	line-height:20px;
	position:relative;
	padding:6px 10px;
	color:#686868;
	display:block;
}

.search-form  input[type="submit"] {
	background:url(images/search.png) scroll 0 0;
	width:16px;
	height:16px;
	border:0 none;
	text-indent:-9999px;
	cursor:pointer;
	position:absolute;
	top:14px;
	right:10px;
	font-size: 0; 
	display:block; 
	line-height: 0;	
}

.page-title .double-separator {
	margin:0;
}

.breadcrumbs {
	font-size:12px;
	padding:10px 0;
	width:100%;
	overflow:hidden;
}

.service-item {
	overflow:hidden;
}

.service-item p {
	margin-bottom:10px;
}

.service-item i {
	float:left;
	margin:0 15px 4px 0;
	width:28px;
	height:28px;
	line-height:28px;
	font-size:28px;
}

h3.service {
	font-size:16px;
	font-weight:600;
	line-height:28px;
}

.separator {
	width:100%;
	height:1px;
	clear:both;
	background:#CCC;
	margin:30px 0;
	display:inline-block;
}

.double-separator {
	width:100%;
	height:1px;
	clear:both;
	border-top:1px dashed #999;
	border-bottom:1px dashed #999;
	margin:30px 0;
}

#footer .double-separator {
	margin:50px 0;
}

.onepage-title {
	font-size:48px;
	font-weight:300;
	margin-bottom:30px;
	line-height:56px;
}	

.one-page #header {
	background:#fafafa;
}

.bgtitle {
	margin-bottom:20px;
	height:25px;	
	padding-bottom:7px;
	border-bottom:1px solid #999;
}
.bgtitle h2, .homepage-clients h2 {
	font-size: 16px;
	font-weight: 400;
	float: left;
	height: 26px;
	line-height: 26px;
	padding: 0 10px;
	text-transform: uppercase;
}


.testimonial-item {
	padding:20px 15px 1px;
	margin-top:3px;
	font-style:italic;
	font-size:16px;
	line-height:1.15em;
	position:relative;
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
	color:#000000;
}

.testimonial-meta {
	font-style:normal;
	font-weight:400;
	font-size:12px;
	margin-top:10px;
	color:##424242;
}

.testimonial-meta h5 {
	font-size:12px;
	font-weight:400;
	margin-top:5px;
	line-height:1.15em;
	color:#424242;
}


.one-page .standardNav{
	position:fixed !important;
}

.one-page ul#mainnav li.active a {
	color:#fff;
}

.one-page ul#mainnav li.active a {
	color:#fff;		
}	

.one-page #header {
	position:fixed !important;
	width:100%;
	background:#fafafa;
	top:0;
}

.one-page .onepage-content {
	margin-top:86px;
}

.one-page .section {
	margin-top:86px;
}


/* 6.1 Slider */

.fullwidthbanner-container{
	width:100% !important;
	position:relative;
	padding:0;
	max-height:500px !important;
	overflow:hidden;
}

.fullwidthbanner-container .fullwidthabnner	{
	width:100% !important;
	max-height:500px !important;
	position:relative;
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
	  .banner, .bannercontainer			{	width:768px; height:309px;}
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
	   .banner, .bannercontainer		{	width:480px; height:193px;	}
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
		.banner, .bannercontainer		{	width:320px;height:129px;	}
}

@media only screen and (max-width: 319px) {
		.banner, .bannercontainer		{	width:240px;height:97px;	}
}

.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}


/*--- 6.2. Jcarousel ---*/

.jcarousel-container {
	margin-bottom:20px;
}

.jcarousel-direction-rtl {
	direction: rtl;
}

.jcarousel-container-horizontal {
    width: 940px;
	clear:both;
}

.jcarousel-clip {
    overflow: hidden;
}

.jcarousel-clip-horizontal {
    width:  940px;
    height: auto;
}

.jcarousel-item {
	display: block;
	position: relative;
	padding:0;
}

#portfolio-carousel .jcarousel-item {
    width: 220px;
    height: 260px;
	border-bottom:2px solid #323232;	
	-webkit-transition:background 0.2s linear;
    -moz-transition:background 0.2s linear;
    -o-transition:background 0.2s linear;
    transition:background 0.2s linear;		
}

#portfolio-carousel .jcarousel-item:hover {
	background:#fafafa;
}

#homeblog-carousel .jcarousel-item {
    width: 460px;
    height: 200px;	
}

.jcarousel-item a {
	display: block;
	width: 100%;
	height: auto;
	position:relative;
	color:#323232;
}

.jcarousel-item h3 {
	text-transform:uppercase;
	font-size:12px;
	font-weight:400;
	padding:20px 0 2px;
	margin:0;
}

.jcarousel-item span {
	color:#a1a1a1;
}

.portfolio-carousel-details {
	height:100px;
}

a[rel="PrettyPhoto"] {
	overflow:hidden;
	display:block;
	position:relative;
}

#portfolio-carousel .jcarousel-item img {
	width:100%;
	height:auto;
}

#homeblog-carousel .jcarousel-item img {
	width:220px;
	height:auto;
}

#homeblog-carousel .jcarousel-item > a {
	width:220px;
	float:left;
	margin-right:20px;
}

#homeblog-carousel .blog-carousel-details a {
	float:none;
	margin:0;
}

#homeblog-carousel .blog-carousel-details {
	float:left;
	text-align:left;
	width:220px;
}

#homeblog-carousel .carousel-meta {
	width:100%;
}

#homeblog-carousel .carousel-meta a {
	display:inline;
}

#homeblog-carousel .carousel-meta .details {
	padding:0 10px;
	height:21px;
	background:#f5f5f5;
	font-size:11px;
	line-height:21px;
	display:inline-block;
}

#homeblog-carousel p {
	margin:18px 0 0;
}

.post-format i {
	width:21px !important;
	height:21px;
	display:block;
	float:left;
	position:relative;
	color:#fff;
	line-height:21px;
}

#homeblog-carousel .blog-carousel-details h2 {
	font-size:18px;
	font-weight:600;
	line-height:27px;
}

.jcarousel-item-horizontal {
	margin-left: 0;
    margin-right: 20px;
	text-align:center;
}

.jcarousel-direction-rtl .jcarousel-item-horizontal {
	margin-left: 10px;
    margin-right: 0;
}

.jcarousel-item-vertical {
    margin-bottom: 10px;
}

.jcarousel-item-placeholder {
    background: #fff;
    color: #444;
}

.jcarousel-next-horizontal {
    position: absolute;
    top: -52px;
    right: 0;
    width: 23px;
    height: 25px;
    cursor: pointer;
    background: #e6e6e6 url(images/carousel-arrows.png) no-repeat 0 0;
}

.jcarousel-next-horizontal:hover,
.jcarousel-next-horizontal:focus {
    background-position: -24px 0;
}

.jcarousel-next-horizontal:active {
    background-position: -24px 0;
}

.jcarousel-next-disabled-horizontal,
.jcarousel-next-disabled-horizontal:hover,
.jcarousel-next-disabled-horizontal:focus,
.jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background-position: -48px 0;
	background-color:#e6e6e6 !important;
}

.jcarousel-prev-horizontal {
    position: absolute;
    top: -52px;
	right:24px;
    width: 23px;
    height: 25px;
    cursor: pointer;
    background: #e6e6e6 url(images/carousel-arrows.png) no-repeat 0 -26px;		
}

.jcarousel-prev-horizontal:hover, 
.jcarousel-prev-horizontal:focus {
    background-position: -24px -26px;

}

.jcarousel-prev-horizontal:active {
    background-position: -24px -26px;
}

.jcarousel-prev-disabled-horizontal,
.jcarousel-prev-disabled-horizontal:hover,
.jcarousel-prev-disabled-horizontal:focus,
.jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: -48px -26px;
	background-color:#e6e6e6 !important;	
}

#testimonials {
	border-radius: 10px;		/* CSS3草案 */
	-webkit-border-radius: 10px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 10px;	/* Firefox用 */
	margin-bottom:5px;
	background-color:#F9DF02;
}

span.caption  {
	position:relative;
	clear:both;
	font-size:13px;
	background:#fff;
	color:#444;
	line-height:40px;
	width:100%;
	left:0;
}

span.caption a {
	color:#444;
}

span.item-on-hover, .grid-item-on-hover {
	cursor:pointer;
	display: block;	
	opacity: 0; 
	filter: alpha(opacity=0); 
	position: absolute; 
	width: 100%; 
	height: 100%; 
	background: url(images/item-on-hover.png) repeat; 
	
}

div.text-on-hover{
	color:#fff;
	text-align:left;
	padding:10px;
	line-height:1.1em;
}
span.item-on-hover-white {
	cursor:pointer;
	display: block;	
	opacity: 0; 
	filter: alpha(opacity=0); 
	position: absolute; 
	width: 100%; 
	height: 100%; 
	background: url(images/item-on-hover-white.png) repeat; 
}

.portfolio img {
	display:block;
}

.grid-item-on-hover {
	text-align:left;
	width:90%;
	padding:0 5%;
}

.grid-item-on-hover .grid-text {
	position:absolute;
	left:5%;
	top:5%;
	text-align:left;
	width:90%;
}

.grid-item-on-hover .grid-text p {
	color:#fff;
	padding:15px 0 0;
	opacity:0.6;
}

.item-small .grid-item-on-hover p, .item-long .grid-item-on-hover p {
	padding:0;
}

.grid-item-on-hover h1 {
	font-weight:300;
	color:#fff;
	font-size:28px;
	line-height:36px;
	text-transform:uppercase;	
	position:relative;
}

.grid-item-on-hover span {
	color:#fff;
	font-size:11px;
	text-transform:uppercase;
	opacity:0.7;
	position:absolute;
	left:5%;
	bottom:5%;
	text-align:left;
	width:90%;
}

.item-high .grid-item-on-hover h1 {
	font-size:20px;
	line-height:26px;
	width:80%;
	left:10%;
}

.item-wide .grid-item-on-hover span {
	font-size:12px;
}

.item-small .grid-item-on-hover h1 {
	font-size:20px;
	line-height:26px;
}

.item-on-hover *{
	filter:inherit;
} 

span.hover-link {
	width:35px;
	height:35px;
	top: 50%;
	left: 50%;
	margin-left: -17px;
	margin-top: -17px;	
	position:absolute;
	display:block;
	opacity: 0; 
	filter: alpha(opacity=0); 	
}

span.hover-image {
	width:35px;
	height:35px;
	top: 50%;
	left: 50%;
	margin-left: -17px;
	margin-top: -17px;	
	position:absolute;
	display:block;
	opacity: 0; 
	filter: alpha(opacity=0);	
}

span.hover-video {
	width:35px;
	height:35px;
	top: 50%;
	left: 50%;
	margin-left: -17px;
	margin-top: -17px;	
	position:absolute;
	display:block;
	opacity: 0; 
	filter: alpha(opacity=0);	
}


/*--- 6.3. Sidebar ---*/

#sidebar {
	width:240px;
	float:left;
}

#sidebar h3 {
	font-size:20px;
	font-weight:400;
}

#sidebar h5 {
	margin-top:20px;
	margin-bottom:10px;
}

.widget {
	overflow:hidden;
	margin-bottom:55px;
}

.widget a {
	color:#444;
}

.widget ul li {
	font-size:16px;
	padding:5px 0 5px 0;
	border-bottom:2px dotted #989898;
}

#sidebar h5.lessons{
	margin-top:0;
	margin-bottom: 0;
	color:#71BF43;
}

.widget ul li h6{
	margin:5px 0 0 0;
	padding:0;
	color:#71BF43;
}


.widget div.lesson{
	margin:5px 0 10px 15px;
}

.widget div.lesson p{
	padding:1px 0;
	margin:0;
}


.tags ul li {
	float:left;
	margin:0 4px 4px 0;	
	padding:0;
}
.tags ul li a {
	display:block;
	padding:6px 13px;
	background:#f9f9f9;
	-webkit-transition:background 0.2s linear;
    -moz-transition:background 0.2s linear;
    -o-transition:background 0.2s linear;
    transition:background 0.2s linear;	
}

.tags ul li a:hover {
	color:#fff;
}

.sidebar-post {
	overflow:hidden;
	border-bottom:1px solid #efefef;
	margin-bottom:15px;
	padding-bottom:15px;
	position:relative;
}

.sidebar-post:last-child {
	border-bottom:0 none;	
}

.sidebar-post span {
	float:left;	
	clear:both;
	width:100%;
} 

.sidebar-post h5 {
	font-size:13px;
	font-weight:600;
	color:#444;
	margin-bottom:5px;
	float:left;
}

.featured-sidebar {
	width:200px;
	float:left;
	border:1px solid #dfdfdf;
}

.featured-sidebar ul {
	border-bottom:1px solid #efefef;
}

.featured-sidebar a{
	color:#686868;
	width:180px;
	height:36px;
	line-height:36px;
	display:block;
	font-weight:600;
	margin-left:10px;
	border-bottom:1px solid #efefef;
}

.featured-sidebar ul li.selected {	
	background: url(images/featured-arrow.png) no-repeat scroll 200px center;
	width: 210px;
}

.featured-sidebar ul li a:hover {
	color:#444;
}

.featured-sidebar ul li.selected a {
	width:180px;
	height:36px;
	z-index:1000;
}

.featured-sidebar ul li:last-child a {
	border-bottom:0 none;
}




/*--- 6.4. Portfolio ---*/

ul#filters {
	float:left;
	margin:6px 0 15px 0;
}

ul#filters li {
	display:inline;
	margin:0;
	padding:0;
	float:left;
}

ul#filters li a {
	color:#686868;
	background:#e6e6e6;
	padding:8px 15px 9px 15px;
	margin-left:1px;
	font-weight:600;
	display:block;
	-webkit-transition:background 0.2s linear;
    -moz-transition:background 0.2s linear;
    -o-transition:background 0.2s linear;
    transition:background 0.2s linear;
	border-top-left-radius: 20px;     /* 左上 */
border-top-right-radius: 20px;    /* 右上 */
}

ul#filters li a.selected {
	color:#fff;
}

.homepage-grid {
	clear:both;
	position:relative;
}

.homepage-grid .bgtitle {
	margin-bottom:20px;
}

ul#home-filters {
	position:absolute;
	top:0;
	right:0;
}

ul#home-filters li a {
	color:#686868;
	background:#e6e6e6;
	padding:3px 15px;
	margin-left:1px;
	font-weight:600;
	display:block;
	-webkit-transition:background 0.2s linear;
    -moz-transition:background 0.2s linear;
    -o-transition:background 0.2s linear;
    transition:background 0.2s linear;	
}

ul#home-filters li a.selected, ul#home-filters li a:hover {
	color:#fff;
}

#home-filters li {
	display:inline;
	margin:0;
	padding:0;
	float:left;
}

.portfolio {
	clear:both;
	overflow:hidden;
	margin-right:-20px;
}

.portfolio .portfolio-carousel-details {
	height:auto;
	background-color:#F9DF02;
}

.portfolio .portfolio-carousel-details  span {
	padding-bottom:15px;
	display:block;
	color:#000;
}

.portfolio li {
	margin-right:20px;
	float:left;
	position:relative;
	margin-bottom:20px;
	overflow:hidden;
	background:#fff;
	padding:0;
	text-align:center;
   -webkit-transition:background 0.2s ease-in;
   -moz-transition:background 0.2s ease-in;
   -o-transition:background 0.2s ease-in;
   transition:background 0.2s ease-in;		
}

.portfolio li:hover {
	background:#fafafa;
}

.portfolio li.item-wide, .portfolio li.item-wide img {
	width:460px !important;
	height:376px !important;
	border-bottom: none !important;
}

.portfolio li.item-small, .portfolio li.item-small img {
	width:210px !important;
	height:178px !important;
	border-bottom: none !important;
}

.portfolio li.item-high, .portfolio li.item-high img {
	width:200px !important;
	height:376px !important;
	border-bottom: none !important;
}

.portfolio li.item-long, .portfolio li.item-long img {
	width:460px !important;
	height:178px !important;
	border-bottom: none !important;
}

.portfolio h3 {
	position:relative;
	clear:both;
	font-size:16px;
	color:#444;
	line-height:20px;
	padding:10px 0;
	margin:0;
	width:100%;
	left:0;	
	font-weight: bold;
}

.portfolio h3 a {
	color:#444;
}

.portfolio h3 a {
	color:#444;
}

.portfolio p {
	padding:0 7px 20px;
	margin:0;
}	

#portfolio-wrapper a {
	display: block;
	width: 100%;
	height: auto;
	position: relative;	
}

#portfolio-wrapper .four-columns img {
	width:210px;
	height:auto;
	display:block;
}

#portfolio-wrapper .three-columns img {
	width:190px;
	height:auto;
	display:block;
}

#portfolio-wrapper .two-columns img {
	width:460px;
	height:auto;
	display:block;
}

#portfolio-wrapper .four-columns li {
	width: 210px;
	height:220px;
	display: block;
	position: relative;
	margin-bottom:20px;
}

#portfolio-wrapper .three-columns li {
	width: 190px;
	height:200px;
	display: block;
	position: relative;
}

#portfolio-wrapper .two-columns li {
	width: 460px;
	height: 459px;
	display: block;
	position: relative;
}

.item-details p {
	margin:0;
	padding:10px 0;
	border-bottom:1px solid #efefef;
}

.item-details span {
	color:#444;
}

.portfolio-single {
	margin-bottom:50px;
	overflow:hidden;
}

.previous-post-link a, .next-post-link a {
	width:25px;
	height:25px;
	display:block;
	text-indent:-9999px;
	float:left;
	margin-top:10px;
	-webkit-transition:all 0.1s linear;
    -moz-transition:all 0.1s linear;
    -o-transition:all 0.1s linear;
    transition:all 0.1s linear;	
}

.proj-image img {
	display:block;
}
.portfolio-gallery {
	width:780px;
	height:auto;
}

.portfolio-gallery a {
	display:block;
	float:left;
	margin-right:10px;
	margin-bottom:10px;
	position:relative;
}

.portfolio-gallery img {
	width:250px;
	height:auto;
	display:block;
}

.portfolio-nav {
	float:right;
	position:relative;
	margin-top:16px;
}

.portfolio-nav a {
	display:block;
	width:23px;
	height:25px;
	text-indent:-9999px;
	float:left;
	margin-left:10px;
	-webkit-transition:background 0.2s linear; 
	-moz-transition:background 0.2s linear;
	-0-transition:background 0.2s linear;
	transition:background 0.2s linear;	
}

.gallery-page {
	width:960px;
}

.gallery-page li {
	width:300px;
	margin:0 20px 20px 0;
	position:relative;
	float:left;
}

.gallery-page li a {
	display:block;
}

.gallery-page li img {
	width:100%;
	height:auto;
	display:block;
}


/*--- 6.5. Blog ---*/

#masonry-blog {
	width:960px;
	position:relative;
}

.masonry-post {
	position:relative;
	float:left;
	margin-right:20px;
	margin-bottom:20px;
}

.masonry-thumbnail {
	position:relative;
}

.masonry-thumbnail img {
	width:100%;
	display:block;
}

.masonry-page-content blockquote {
	clear:both;
	margin:20px 0;
}

.masonry-page-content .button {
	margin-bottom:10px;
}

.masonry-post-meta {
	height:30px;
	line-height:30px;
	display:block;
	margin-bottom:18px;
	font-size:14px;
	position:relative;
}

.quote-article h4 {
	font-size:12px;
	text-transform:uppercase;
}

.masonry-page-content {
	position:relative;
	border-bottom:1px solid #666;
	padding:10px 20px;
	background:#fafafa;	
}

.masonry-page-content i.icon-pencil, .masonry-page-content i.icon-quote-left, .masonry-page-content i.icon-facetime-video, .masonry-page-content i.icon-link, .masonry-page-content i.icon-camera-retro, .masonry-page-content i.icon-music {
	font-size:16px;
	height:30px;
	width:30px;
	line-height:30px;
	text-align:center;
	background:#fff;
	color:#686868;
	position:absolute;
	right:20px;
	top:10px;
}

.post-content i.icon-pencil, .post-content i.icon-quote-left, .post-content i.icon-facetime-video, .post-content i.icon-link, .post-content i.icon-camera-retro, .post-content i.icon-music {
	font-size:16px;
	height:30px;
	width:30px;
	line-height:30px;
	text-align:center;
	background:#f9f9f9;
	color:#686868;
	position:absolute;
	right:0;
	top:10px;
}

#blog-page .post-content i.icon-pencil,#blog-page .post-content i.icon-quote-left,#blog-page .post-content i.icon-facetime-video,#blog-page .post-content i.icon-link,#blog-page .post-content i.icon-camera-retro,#blog-page .post-content i.icon-music {
	top:0 !important;
}	

#blog-page div.jp-audio div.jp-type-single div.jp-progress {
	width: 59%;
	left: 16%;	
}

#blog-page div.jp-audio {
	margin-bottom:20px;
}

.columns-two .vimeo-article iframe {
	width:460px !important;
	height:259px !important;
}

.columns-three .vimeo-article iframe {
	width:300px !important;
	height:169px !important;
}

h1.masonry-title {
	clear:both;
	font-size:18px;
	font-weight:600;
	line-height:26px;
}

.music-article h1.masonry-title {
	margin-top:20px;
}

h1.masonry-title a, .post-content h1 a {
	color:#323232;
}

.columns-three .masonry-post {
	width:300px;
	position:relative;
}	

.columns-two .masonry-post {
	width:460px;
	position:relative;
}	

#posts {
	float:right;
	position:relative;
	width:640px;
	overflow:hidden;
}

#blog-page .post {
	border-bottom:1px dashed #666;
}

.single-post .post {
	border-bottom:0;
	margin-bottom:0px;
	padding-bottom:0px;
}

h1.post-title {
	clear:both;
}

.meta a {
	color:#c7c7c7;
}

.post-thumbnail {
	display:inline-block;
	clear:both;
	margin-top:0px;		
}

.video-thumbnail {
	margin-bottom:30px;
	display:block;
	clear:both;
	margin-top:0px;	
}

.post-thumbnail a {
	display:block;
	position:relative;
}

.post-thumbnail img {
	width:640px;
	height:auto;		
}

.single-post .masonry-post-meta, .portfolio-content .masonry-post-meta {
	height:50px;
	line-height:50px;
}

.meta {
	clear:both;
	float:left;
	margin-bottom:20px;
}

.meta span {
	padding-left:23px;
	float:left;
	margin-right:20px;
}

.meta span.post-date {
	background:url(images/calendar.png) no-repeat scroll 0 3px;
	color:#C7C7C7;
}	

.meta span.post-author {
	background:url(images/author.png) no-repeat scroll 0 3px;
}	

.meta span.post-comment {
	background:url(images/comment.png) no-repeat scroll 0 4px;
}	

.meta p {
	margin:0;
	padding:5px 0;
}

.excerpt {
	width:100%;
	clear:both;
}

p.readmore {
	text-align:right;
}

.post {
	margin-bottom:50px;
	padding-bottom:20px;
	border-bottom:1px solid #efefef;
	overflow:hidden;
	position:relative;
}

.post-content {
	clear:both;
	position:relative;
}

.post blockquote {
	border-bottom:2px solid #d6d6d6;
	border-left:none;
	margin:0;
	padding:20px;
	background:#f9f9f9;
	font-size:13px;
	margin-bottom:20px;
}

#blog-page .post blockquote {
	clear:both;
	border-bottom:none;
	border-left:2px solid #ebebeb;
	margin:0;
	padding:20px;
	background:#fff;
	font-size:16px;
	margin-bottom:20px;	
}

.right-image {
    float:right;
    margin:5px 0 0 20px;
	padding: 4px;
	border: 1px solid #EFEFEF;
	border-radius: 2px;	
}

.left-image {
    float:left;
    margin:5px 20px 0 0;
	padding: 4px;
	border: 1px solid #EFEFEF;
	border-radius: 2px;	
}

.post-image {
    margin:5px 0 20px;
}

ul.tags {
    padding:0 0 10px;
    position:relative;
	overflow:hidden;
}

ul.tags a {
	color:#c7c7c7;
}

ul.tags li {
    display:inline;
    float:left;
    height:16px;
    line-height:20px;
    margin:30px 20px 0 0;
}

.tag-title {
    background-image:none;
    float:left;
    line-height:18px;
    margin:30px 20px 0 0;
}

.author-bio {
    clear:both;
    margin:30px 0 0;
    overflow:hidden;
    padding:15px 0 15px;
    position:relative;
}

.authorp {
    float:left;
    width:82%;
}

.authorp h2 {
	color:#C7C7C7;
}
.authorp h2 a {
	color:#444;
}

.author-bio p {
	margin-bottom:0;
}	

.author-bio img {
    float:left;
    margin:0 25px 0 0;
}

.inner-blog-gallery li {
	float:left;
	display:block;
	margin-right:20px;
	margin-bottom:30px;
	position:relative;
}

.inner-blog-gallery li a {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	width:145px;
	height:145px;	
}

.inner-blog-gallery img {
	display:block;
}	

.next-prev-posts {
	margin-top:20px;
	padding:1px 0;
	border-top:1px solid #efefef;
	border-bottom:1px solid #efefef;
	overflow:hidden;
	font-size:12px;	
	text-transform:uppercase;
	font-weight:600;
}

.next-prev-posts .previous-post {
	width:50%;
	float:left;
	padding:13px 0;
	border-top:1px solid #efefef;
	border-bottom:1px solid #efefef;	
	text-align:left;
}	

.next-prev-posts .next-post {
	width:50%;
	float:right;
	padding:13px 0;	
	border-top:1px solid #efefef;
	border-bottom:1px solid #efefef;	
	text-align:right;	
}

.next-prev-posts a {
	color:#323232;
}

.previous-post i {
	margin-right:10px;
}

.next-post i {
	margin-left:10px;
}


/*--- 6.5.1. Comments ---*/

.commentlist {
    list-style-type: none;
    margin: 30px 0 40px;
}

.comment {
    margin-top: 35px;
    position: relative;
	padding:0;
	display:inline-block;
}

.comment a {
	color:#444;
}

.commentwrap {
	margin: 0 0 0 100px;
	padding: 0 0 10px 0;
	border-bottom: 1px solid #EFEFEF;
}

.avatar {
    left: 0;
    position: absolute;
    top: 0;
}

.avatar img {

}

a.c_reply {
	font-weight:600;
	background:#f9f9f9;
	padding:2px 5px;
	-webkit-transition:background 0.2s linear;
    -moz-transition:background 0.2s linear;
    -o-transition:background 0.2s linear;
    transition:background 0.2s linear;
}

.metacomment {
    margin-bottom: 10px;
	padding:0;
}

.metacomment span {
    font-weight:bold;
    margin: 0 5px 0 0;
}

ul.threaded {
    margin-left:75px;
}

#commentform {
	width:640px;
	position:relative;
}

#commentform fieldset {
	clear:both;
}

#commentform input[type="text"], #commentform textarea {
	background:#f9f9f9;
}

#commentform input:focus, #commentform textarea:focus {
	outline:none;
}

#commentform input[type="text"] {
	width:174px;
	padding:7px 10px;
	font-size:12px;
	height:20px;
	line-height:20px;
}

textarea#mycomment {
	width:618px;
	padding:10px;
	clear:both;
	overflow:hidden;
	float:left;
	margin-bottom:5px;
}

#commentform input[type="submit"] {
	margin-top:20px;
	border:0 none;
}

.error_message {
	color:#ff3000;
}


/*--- 6.5.2. Pagination ---*/

.pagenav {
    text-align:center;
	vertical-align: middle;
	margin-top: 55px;	
	background:#f9f9f9;
}

.pagenav a {
    background:#f9f9f9;
    color:#686868;
    display:inline-block;
    padding:9px 15px;
	font-weight:600;
	-webkit-transition:background 0.2s linear;
    -moz-transition:background 0.2s linear;
    -o-transition:background 0.2s linear;
    transition:background 0.2s linear;		
}

span.current {
    color:#fff;
    display:inline-block;
    padding:9px 15px;
}

span.pages {
	display: inline-block;
    padding:9px 15px;
	font-weight:600;
}


/*--- 6.6. Contact ---*/

.contact-info p {
	margin:0;
	padding:7px 0;
	border-top:1px solid #efefef;
}

.contact-info p:last-child {
	border-bottom:1px solid #efefef;
}

.contact-info span {
	color:#444;
}

.contact-map {
	margin-bottom:50px;
}

.contact-map iframe {
	width:940px;
	height:300px;
}

#contactform label {
	clear:both;
}	

#contactform input[type=text], #contactform input[type=password] {
	margin-bottom:10px;
	width:90%;
	padding:7px 10px;
	height:20px;
	line-height:20px;
	background:#e6e6e6;

}

#contactform input[type=submit] {
	font-size:14px;
	clear:both;
	cursor:pointer;
	margin:20px 0;
}

#contactform input:focus, #contactform textarea:focus {
	outline:none;
}

#contactform input[type=submit]:hover {
	
}

#contactform textarea { 
	height:130px;
	clear:both;
	background:#e6e6e6;
}

.contact-info {
	padding-top: 9px;
}

.contact-loader {
	float: right;
	padding: 11px 11px 0 0;
}



/*-----------------------------------------------------------------------------------*/
/*	7.	Footer
/*-----------------------------------------------------------------------------------*/

#footer {
	overflow:hidden;
	clear:both;
	background:#323232;
	color:#969595;
	padding-top:20px;
	margin:0 auto;
}

.footer_orange{
	background-color:#F7931E;
	height:5px;
}

#topfooter {
	padding:0;
	margin:0;
}

#topfooter h6 {
	margin:0;
	font-size:12px;
	font-weight:400;
}

ul#contact-widget li {
	border-bottom:1px dotted #6b6b6b;
	padding-bottom:10px;
	margin-bottom:10px;
	padding-left:30px;
}

#topfooter ul li {
	border-bottom:1px dotted #6b6b6b;
	padding-bottom:10px;
	margin-bottom:10px;
}

#topfooter ul.footer-menu{
	margin-bottom:20px;
}

#topfooter ul.footer-menu li{
	border-bottom:none;
	padding-bottom:3px;
	margin-bottom:0;
}

#topfooter ul li:last-child {
	border-bottom:none;	
}

ul#blog-widget li {
	border-bottom:1px dotted #6b6b6b;
	padding-bottom:10px;
	margin-bottom:10px;	
	position:relative;
	overflow:hidden;
}
ul#blog-widget li img {
	position:absolute;
	top:3px;
	left:0;
}

ul#blog-widget li h6{
	float:left;
	padding-left:75px;
}

ul#blog-widget li span{
	float:left;
	clear:both;
	padding-left:75px;
	width:auto;
}

ul#contact-widget li:last-child {
	border-bottom:0 none;
}

ul#blog-widget li:last-child {
	border-bottom:0 none;
}

li.address {
	background:url(images/address.png) no-repeat scroll 0 2px;
}

li.phone {
	background:url(images/phone.png) no-repeat scroll 0 2px;
}

li.email {
	background:url(images/email.png) no-repeat scroll 0 2px;
}

#footer a {
	color:#fff;
}

#footer h3 {
	font-size:18px;
	font-weight:300;
	color:#fff;
}



#bottomfooter {
	height:42px;
	line-height:42px;
	position:relative;
	overflow:hidden;
	clear:both;
	background:#595A5D;
	color:#fff;
}

#bottomfooter p {
	float:left;
	margin:0;
	font-size:11px;
}

.totop {
	background:url(images/top.png) no-repeat scroll 0 0;
	width:37px;
	height:42px;
	position:absolute;
	bottom:-10px;
	left:50%;
	margin-left:-18px;
	text-indent:-9999px;
}


/*--- 7.1. Twitter ---*/

.tweet,
.query {
	margin:0;
}

.tweet_list {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow-y: hidden;
}
.widget .tweet_list li {
	background:none;
	padding-bottom:10px;
	margin-bottom:10px;
}

.tweet_list li {
	overflow-y: auto;
	overflow-x: hidden;
	list-style-type: none;
	border-bottom:1px solid #efefef;
	background: url(images/social/twitter.png) no-repeat scroll 0 3px;
	padding-left: 30px;
}

.tweet_text {
	clear: both;
	width: 100%;
	display: block;	
}

.tweet_time, .tweet_action {
	float:left;
	margin-right:10px;
	margin-top:10px;
}
.tweet_time a, a.tweet_action {
	color:#777 !important;
}

.tweet_list li:last-child {
	border-bottom:0 none;
}

.tweet_list li a {
}

.tweet_list .tweet_avatar {
	padding-right: .5em; float: left;
}

.tweet_list .tweet_avatar img {
	vertical-align: middle;
}


/*--- 7.2. Flickr ---*/

#flickr {
	margin: 0; 
	padding: 0; 
	overflow: hidden; 	
	width:270px;
}

#flickr li { 
	list-style: none; 
	float: left; 
	margin: 0 9px 9px 0; 
	border:0 none;
	padding:0;
}

#flickr  img { 
	display: block; 
	width:45px;
	height:45px;
}

#flickr a img { 
	border: none;
}


/*--- 7.3. Social Icons ---*/

ul#social {
	float:right;
	margin-right:-5px;
}

ul#social li {
	display:inline;
}

ul#social li a {
	display:block;
	margin:0 0 0 1px;
	width:38px;
	float:left;
	height:42px;
	text-indent:-9999px;
	opacity:0.5;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	-webkit-transition:background 0.2s linear; 
	-moz-transition:background 0.2s linear;
	-0-transition:background 0.2s linear;
	transition:background 0.2s linear;
}

ul#social li a:hover {
	opacity:1;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
}

a.email {
	background:url(images/social/email.png) no-repeat scroll center center;
}
a.email:hover {
	background-color:#5d9b68;
}
a.pinterest {
	background:url(images/social/pinterest.png) no-repeat scroll center center;
}
a.pinterest:hover {
	background-color:#e24a85;
}
a.vimeo {
	background:url(images/social/vimeo.png) no-repeat scroll center center;
}
a.vimeo:hover {
	background-color:#1bb7ea;
}
a.linkedin {
	background:url(images/social/linkedin.png) no-repeat scroll center center;
}
a.linkedin:hover {
	background-color:#007bb6;
}
a.google {
	background:url(images/social/google.png) no-repeat scroll center center;
}
a.google:hover {
	background-color:#e1472f;
}
a.skype {
	background:url(images/social/skype.png) no-repeat scroll center center;
}
a.skype:hover {
	background-color:#0cb1f1;
}
a.facebook {
	background:url(images/social/facebook.png) no-repeat scroll center center;
}
a.facebook:hover {
	background-color:#3b5998;
}
a.twitter {
	background:url(images/social/twitter.png) no-repeat scroll center center;
}
a.twitter:hover {
	background-color:#00acee;
}
a.flickr {
	background:url(images/social/flickr.png) no-repeat scroll center center;
}
a.flickr:hover {
	background-color:#ff0084;
}
a.rss {
	background:url(images/social/rss.png) no-repeat scroll center center;
}
a.rss:hover {
	background-color:#f28d34;
}
a.stumbleupon {
	background:url(images/social/stumbleupon.png) no-repeat scroll center center;
}
a.stumbleupon:hover {
	background-color:#0fb73d;
}
a.youtube {
	background:url(images/social/youtube.png) no-repeat scroll center center;
}
a.youtube:hover {
	background-color:#d93030;
}



/*-----------------------------------------------------------------------------------*/
/*	8.	Elements
/*-----------------------------------------------------------------------------------*/


/*--- 8.1. Slides ---*/

.portfolio-single .percent-three-fourth {
	min-height:30px;
}

.columns-two .slides_container {
	width:460px;
	height:240px;
	display:none;
}

.columns-two .slides_container .slide {
	width:460px;
	height:240px;
	display:block;
}


.columns-three .slides_container {
	width:300px;
	height:157px;
	display:none;
}

.columns-three .slides_container .slide {
	width:300px;
	height:157px;
	display:block;
}

.post .slides_container {
	width:640px;
	height:427px;
	display:none;
}


.post .slides_container .slide {
	width:640px;
	height:427px;
	display:block;
}



.columns-three div.jp-audio div.jp-type-single div.jp-progress {
	display:none;
}

.blog-slides {
	position:relative;
}

.slides_container {
	width:940px;
	display:none;
}


.slides_container div.slide {
	width:940px;
	display:block;
}






#slides {
	margin-bottom:10px;
	position:relative;
}

.blog-slides .next, .blog-slides .prev, #slides .next, #slides .prev, .post .next, .post .prev {
	position:absolute;
	top:50%;
	margin-top:-21px;
	width:27px !important;
	height:43px !important;
	display:block;
	z-index:101;
	background:#656565;
}

.blog-slides .next img,.blog-slides .prev img, #slides .next img, #slides .prev img,  .post .next img, .post .prev img {
	height:auto;
	width:auto;
}

#slides .next img,#slides .prev img {
	height:auto;
	width:auto;
}

#slides .next {
	right:0;	
}

#slides .prev {
	left:0;	
}


.blog-slides .next {
	right:0;	
}

.blog-slides .prev {
	left:0;	
}

.slide img {
	width:100%;
	height:auto;
	overflow:visible;
	vertical-align:bottom;
}

.slide a {
	display:block;
	margin:0;
	padding:0;
}


.pagination {
	display:none;
}

.pagination li {
	display:none;
}

.pagination li a {
	display:none;
}





#slides .caption {
	z-index:500;
	position:absolute;
	bottom:-35px;
	left:0;
	height:30px;
	padding:5px 20px 0 20px;
	background:#424242;
	width:540px;
	font-size:1.3em;
	line-height:1.33;
	text-shadow:none;
	color:#FFF;
	
}

.fullwidthbanner .caption {
	z-index:500;
	position:absolute;
	bottom:100px;
	left:0;
	padding:15px 15px;
	background: #a2c412;
	width:150px;
	font-size:1.3em;
	line-height:1.33em;
	text-shadow:none;
	color:#FFF;
	height:40px;
}

.fullwidthbanner .caption h2{
	color:#FFF;
	}


.blog-slides .caption {
	z-index:500;
	position:absolute;
	bottom:-35px;
	left:0;
	height:30px;
	padding:5px 20px 0 20px;
	background:rgba(0,0,0,.5);
	width:540px;
	font-size:1.3em;
	line-height:1.33;
	text-shadow:none;
}

/*--- 8.2. Buttons ---*/

.button {
    cursor:pointer;
    display:inline-block;
    font-size: 12px;
    font-weight:600;
    line-height:16px;
    margin:0 10px 20px 0;
    padding: 7px 11px 7px;
	position:relative;
	border:0 none;
	-webkit-transition:all 0.2s linear;
    -moz-transition:all 0.2s linear;
    -o-transition:all 0.2s linear;
    transition:all 0.2s linear;	
}

.white {
    background:#eaeaea;
    color: #686868;
}

.white:hover {
    color: #686868;
	background:#d2d2d2;
}

.yellow {
    background:#FFCB04;
	border:0 none;
    color: #fff;
}

.yellow:hover {
    color: #fff;
	background:#fd9602;
}

.orange {
    background:#fe7e17;
	border:0 none;
    color: #fff;
}

.orange:hover {
    color: #fff;
	background: #FC0;
}

.black {
    background:#787878;
    color: #ffffff;
}

.black:hover {
    color: #ffffff;
	background:#444;
}

.green {
    background:#9dd30b;
    color: #fff;
}

.green:hover {
    color: #fff;
	background:#8dbd0a;
}

.bleumarin {
    background:#30b4c5;
    color: #fff;
}

.bleumarin:hover {
    background:#2b9fae;
	color:#fff;
}

.rose {
    background:#ee5051;
    color: #fff;
}

.rose:hover {
    color: #fff;
	background:#d64849;
}

.red {
    background:#e1472f;
    color: #fff;
}


.red:hover {
    color: #fff;
	background:#d44029;
}


/*--- 8.3. Tabs ---*/

.tabs-wrapper { 
	width: 100%;
}

.tab-item {
	clear:both;
	overflow:hidden;
	padding:15px 0;
	border-bottom:1px solid #fff;
}

.tabs-container {
	float:left;
	position:relative;
	display:block;
	width:100%;
}

.tabs-wrapper .tab-content { 
	background:#fff; 
	padding:20px;
	overflow:hidden; 
	border: 1px solid #CCC;
	border-radius: 0px 3px 3px 3px;
}

ul.tabs {
	float: left; 
	height: 37px; 
	width: 100%; 
	padding-left: 0 !important; 
	margin-bottom: 0 !important;
}

.tabs-container p:last-child {
	margin-bottom:0;
}

ul.tabs li { 
	float: left; 
	padding-left: 0 !important; 
	overflow: hidden; 
	padding-bottom: 0; 
	position: relative; 
	text-align:center;
	outline:none;

}

ul.tabs li a { 
	height: 34px; 
	line-height: 34px; 
	text-decoration:none; 
	font-size:16px; 
	display: block; 
	padding: 0 25px; 
	outline:none;
	border:1px solid #fff;
	color:#9a9a9a;
	font-weight:600;
}

ul.tabs li:last-child {
	
}

ul.tabs li a:hover { 
	color:#323232;
}

ul.tabs li.active {
	top:-1px;
}

ul.tabs li.active a {
	border-left: 1px solid #CCC;	
	border-right: 1px solid #CCC;	
	border-bottom: 1px solid #fff;	
	color:#323232;
}

ul.tabs li.active {
	z-index: 1;
}

ul.tabs li.active, ul.tabs li.active a:hover  { 
    background:#fff;
	color:#323232;
}


/*--- 8.4. Toggles ---*/

#toggle-view {
    list-style:none;    
    margin:0;
    padding:0;
    width:100%;
	margin-bottom:10px;
}

#toggle-view li {
	margin-bottom:1px;
    border-bottom: 1px solid #EFEFEF;
	position:relative;
}

#toggle-view li:hover {

}

#toggle-view h3 {
	margin:0;
	font-size:16px;
	cursor:pointer;
    padding: 12px 10px 12px 40px;
	color:#686868;
	font-weight:400;
}

#toggle-view h3:hover, #toggle-view h3:active {
	color:#444;
}

#toggle-view span {
	position:absolute;
	left:0; top:14px;
}

#toggle-view .panel {
	display:none;
	background:#fff;
	overflow:hidden;
	padding:10px 0 20px 0;
}   

#toggle-view .panel p:last-child {
	margin-bottom:0;
}

#toggle-view .side{
	padding:10px 0 5px 0;
}

#toggle-view .panel p.menu{
	margin:3px 0 3px 22px;
}



/*--- 8.5. Tables ---*/

.pricing-column {
	text-align:center;
	width:235px;
	float:left;
	position:relative;
}

.first-column .package-value,  .first-column .package-features, .first-column .signup {
	border-left:1px solid #dbdbdb;
}

.package-value, .package-features {
	border-right:1px solid #dbdbdb;
}

.package-title {
	background:#686868;
	color:#fff;
	font-size:16px;
	height:40px;
	line-height:40px;
	border-bottom:3px solid #545454;
	border-right:1px solid #545454;
}

.featured-column {
	top:-10px;
	box-shadow:0px 2px 10px #dadada;
	z-index:1;
}

.featured-column .package-title {
	height:40px;
	line-height:30px;
	position:relative;
	font-weight:600;
	box-shadow:0px -1px 10px #000;
	z-index:-1;	
}

.featured-column .column-shadow {
	height:10px;
	position:relative;
	z-index:10;
	box-shadow:0px -1px 2px #dadada;
}

.pricing-table .featured-column .signup {
	padding:25px 0;
}

.pricing-column .signup {
	border-bottom:1px solid #dbdbdb;
	border-right:1px solid #dbdbdb;
	padding:20px 0;
	background:#F9F9F9;
}

.pricing-column .signup .button {
	margin:0;
}

.package-value {
	background:#f9f9f9;
	height:95px;
	line-height:95px;
}

ul.package-features li {
	height:40px;
	line-height:40px;
	background:#fff;
}

ul.package-features li.alt {
	background:#f9f9f9;
}

.package-currency {
	font-size:16px;
	position:relative;
	top:-20px;
}

.package-price {
	font-size:48px;
	font-weight:600;
}

.package-time {
	font-size:16px;
}

.pricing-table, .normal-table {
    width:100%;
}

.normal-table td {
    border:1px solid #efefef;
    padding:10px 20px;
    text-align:center;
}
.normal-table tr.alt  {
    background:#fbfbfb;
}

.normal-table tr.first-column {
    background:#666666;
    color: #efefef;
}

/*--- 8.6. Info Boxes ---*/

.box-error, .box-alert, .box-notice, .box-success, .box-info {
    margin-bottom: 10px;
    padding: 10px 20px;
}

.box-error i, .box-alert i, .box-notice i, .box-success i, .box-info i {
	font-size:14px;
	margin-right:15px;
}

.box-error, .box-alert {
    background:#fce2e3;
    color: #e54034;
}

.box-notice {
    background:#fdf4bd;
    color: #706836;
}

.box-info {
    background:#d4ebf6;
    color: #20568f;
}

.box-success {
    background:#e5eec0;
    color: #264509;
}


/*--- 8.7. Lists ---*/

ul.star-list li { 

}

ul.play-list li { 

}

ul.arrow-list li { 

}

ul.tick-list li { 

}

ul.customlist li {
	padding: 6px 0;
	border-bottom: 1px dotted #999999;
}

ul.customlist li i {
	margin-right:5px;
}


/*--- 8.8. Accordions ---*/

.ac-btn {
    background:#fbfbfb;
    border: 1px solid #EFEFEF;
    cursor: pointer;
    font-size: 12px;
    font-weight:normal;
    padding: 7px 10px;
	margin-bottom:1px;
}

.ac-btn h3 {
	margin:0;
	font-size:12px;
	cursor:pointer;
	color:#686868;
}

.ac-btn h3:hover {
	color:#444;
}

.ac-content {
    border-top: 0;
    border: 1px solid #EFEFEF;
    display: none;
    margin-bottom: 2px;
    margin-top: -3px;
    overflow: auto;
    padding: 10px 20px;
    position: relative;
    top: 1px;
}

.ac-selected {
	display:inherit;
}

.ac-selected {
	display:block !important;
}

.on {
	background: #e6e6e6;
	color:#444;
}
	
.over {
	background: #e6e6e6;
	color:#444;
}

/*-----------------------------------------------------------------------------------*/
/*	single class page
/*-----------------------------------------------------------------------------------*/

dl.date-age{
	margin:5px 0 0 20px;
	padding:10px 0;
}

dl.date-age dt{
	float:left;
	width:30px;
	font-size:14px;
	color:#444;
	font-weight:400;
	line-height:1.4em;
}

dl.date-age dd{
	font-size:14px;
	color:#444;
	font-weight:400;
	line-height:1.4em;
	clear:right;
	margin-left:40px;
	padding-top:5px;
}


section#video{
	padding:10px 0;
	text-align:center;
	width:75%;
	position:relative;
	margin:0 auto;
}

section#video-more{
	padding:10px 0;
	text-align:center;
	width:100%;
	position:relative;
	margin:0 auto;
}




/*-----------------------------------------------------------------------------------*/
/*	gallery page
/*-----------------------------------------------------------------------------------*/

.gallery-top h3{
	margin:20px 0 10px 0;
}

.bread{
	margin-bottom:10px 0;
}

.portfolio-carousel-details .bk-afterschool a, .portfolio-carousel-details .bk-saturday a, .portfolio-carousel-details .bk-international a, .portfolio-carousel-details .bk-parentchild a, .portfolio-carousel-details .bk-cspace a{
	color:#FFF;
}


/*-----------------------------------------------------------------------------------*/
/*	Visit
/*-----------------------------------------------------------------------------------*/

/*------------------------*/
/*	Access & Map
/*-------------------*/

ul.number-list li{
	list-style-type:decimal;
}

/*-----------------------------------------------------------------------------------*/
/*	buttons
/*-----------------------------------------------------------------------------------*/

.btn {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: #F5F5F5;
    background-image: linear-gradient(to bottom, #FFF, #E6E6E6);
    background-repeat: repeat-x;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) #B3B3B3;
    border-image: none;
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    color: #333;
    cursor: pointer;
    display: inline-block;
    padding: 5px;
    text-align: center;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.75);
    vertical-align: middle;
}

.btn-large {
    border-radius: 6px;
    font-size:20px;
    padding: 11px 19px;
}

.btn-small {
    border-radius: 6px;
    font-size:16px;
    padding: 5px 20px;
}

.btn-yellow {
    background-color: #F9DF02;
    background-image: linear-gradient(to bottom, #F9DF02, #F89406);
    background-repeat: repeat-x;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    color: #FFF;
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
}

.btn-afterschool, .btn-parentchild{
	background-color: #F9DF02;
	
    background-image: linear-gradient(to bottom, #F9DF02, #F89406);
    background-repeat: repeat-x;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    color: #000;
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
}

.btn-afterschool a, .btn-parentchild a{
	 color: #000;
}

.btn-afterschool a:hover{color: #71BF43;}
.btn-parentchild a:hover{color: #EF5A88;}



/*-----------------------------------------------------------------------------------*/
/*	programmes
/*-----------------------------------------------------------------------------------*/

h3.class{
	background-color:#F9DF02;
	font-weight:700;
	padding:5px 10px;
	margin-bottom:5px;
	width:100%;
	color:#000000;
}

h3.class-wide{
	background-color:#F9DF02;
	font-weight:700;
	padding:10px 10px;
	margin-bottom:5px;
	width:100%;
	color:#000000;
}

.class-schedule{
	padding:15px 20px 10px 20px;
	margin:10px 0 20px 0;
}

.class-schedule h6{
	margin-bottom:3px;
	padding:0;
	line-height:1.1em;
}

.class-schedule p{
	margin:0 0 7px 0;
	padding:0;
	font-size:14px;
}

.class-video{
	width:550px;
	height:315px;
	margin:20px 0;
	padding:0;
}

.class-video iframe{
	text-align:center;
}

/*-----------------------------------------------------------------------------------*/
/*	About Us
/*-----------------------------------------------------------------------------------*/



/* -------------------------------------------------- 
   Table of Contents
-----------------------------------------------------
:: Shared Styles
:: Page Name 1
:: Page Name 2
*/


/* -----------------------------------------
   responsive table
----------------------------------------- */

table.responsive{border: 1px solid #ccc; border-right:none; border-bottom:none;}
table.responsive th { font-weight: bold; background-color:#E0E1E2; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc; padding: 9px 10px; text-align: left;}
table.responsive td{ padding: 9px 10px; text-align: left; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc; }

/* Mobile */
@media only screen and (max-width: 767px) {
	
	table.responsive { margin-bottom: 0;}
	
	.pinned { position: absolute; left: 0; top: 0; background: #fff; width: 35%; overflow: hidden; overflow-x: scroll; border-right: 1px solid #ccc; border-left: 1px solid #ccc; }
	.pinned table { border-right: none; border-left: none; width: 100%; }
	.pinned table th, .pinned table td { white-space: nowrap; padding: 9px 10px; text-align: left; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc; }
	.pinned td:last-child { border-bottom: 0;}
	
	div.table-wrapper { position: relative; margin-bottom: 20px; overflow: hidden; border-right: 1px solid #ccc; }
	div.table-wrapper div.scrollable table { margin-left: 35%; }
	div.table-wrapper div.scrollable { overflow: scroll; overflow-y: hidden; }	
	
	table.responsive td, table.responsive th { position: relative; white-space: nowrap; overflow: hidden; padding: 9px 10px;}
	table.responsive th:first-child, table.responsive td:first-child, table.responsive td:first-child, table.responsive.pinned td { display: none; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc; padding: 9px 10px; text-align: left;}
	
	
	
}


/* -----------------------------------------
   List
----------------------------------------- */

ul.normal{
	margin-left:15px;
}

ul.normal li{
	list-style-type:circle;
}

/*-----------------------------------------------------------------------------------*/
/*	fee term 
/*-----------------------------------------------------------------------------------*/

section.fee, section.schoolterm{
	border:4px solid #F9DF02;
	padding:20px;
	margin-bottom:30px;
}

/*-----------------------------------------------------------------------------------*/
/*	table
/*-----------------------------------------------------------------------------------*/

.table_01{
width: 100%;
border-collapse: collapse;
}
.table_01 th{
padding: 6px;
text-align: left;
vertical-align: top;
color: #333;
background-color: #E0E1E2;
border: 1px solid #CCC;
}
.table_01 td{
padding: 6px;
background-color: #fff;
border: 1px solid #CCC;
}



/*-----------------------------------------------------------------------------------*/
/*	party
/*-----------------------------------------------------------------------------------*/

.centered-wrapper-white-party{
	width:950px;
	margin:50px auto 0 auto;
	padding:20px 20px;
	background-color:#FFF;
	box-shadow: 3px -13px 3px 1px rgba(0,0,0,0.2);
  -webkit-box-shadow: 3px -13px 3px 1px rgba(0,0,0,0.2);
  -moz-box-shadow: 3px -13px 3px 1px rgba(0,0,0,0.2);
}


.birthday-slider .slides_container {
	width:950px;
	height:520px;
	display:none;
}


.birthday-slider .slides_container .slide {
	width:950px;
	height:520px;
	display:block;

}


.bunting-top{
	background-image:url(images/bunting-top.jpg);
	background-repeat:repeat-x;
	height:24px;
	margin-bottom:5px;
}


.partymenu {
	background-color:#D0D721;
	background-image:url(images/bg-cupcake.jpg);
	position:relative;
	padding:78px 0 30px 0;
	text-align:center;	
	background-repeat:repeat-x;
	background-position:top;
}

.partymenu h3{
color:#441C5A;
font-size:21px;
}



.cupcake_menu a:hover img{
	opacity:0.8;
}

.cupcake_menu .percent-one-fifth {
	position: relative;
	margin-right: 2%;
	float: left;
}

.catering{
	background-color:#4FACC5;
	background-image:url(images/bg-catering.jpg);
	position:relative;
	padding:40px 0 20px 0;
	text-align:center;	
	background-repeat:repeat-x;
	background-position:top;
}

.party-video{
	background-color:#FFFFFF;
	background-image:url(images/bg-video.jpg);
	position:relative;
	padding:40px 0 20px 0;
	text-align:center;	
	background-repeat:repeat-x;
	background-position:top;
}

@media only screen and (max-width: 767px) {
	
.centered-wrapper-white-party{
	width:100%;
	margin:50px auto 0 auto;
	padding:20px 20px;
	background-color:#FFF;
	box-shadow: 3px -13px 3px 1px rgba(0,0,0,0.2);
  -webkit-box-shadow: 3px -13px 3px 1px rgba(0,0,0,0.2);
  -moz-box-shadow: 3px -13px 3px 1px rgba(0,0,0,0.2);
}
	
	.birthday-slider .slides_container {
	width:100%;
	min-height:150px;
	height:auto;
	display:none;
}


.birthday-slider .slides_container .slide {
	width:100%;
	min-height:150px;
	height:auto;
	display:block;

}

.slides_container {
	width:100%;
	display:none;
}


.slides_container div.slide {
	width:100%;
	display:block;
}
	
}

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

.centered-wrapper-white-party{
	width:100%;
	margin:50px auto 0 auto;
	padding:20px 20px;
	background-color:#FFF;
	box-shadow: 3px -13px 3px 1px rgba(0,0,0,0.2);
  -webkit-box-shadow: 3px -13px 3px 1px rgba(0,0,0,0.2);
  -moz-box-shadow: 3px -13px 3px 1px rgba(0,0,0,0.2);
}

.birthday-slider .slides_container {
	width:100%;
	min-height:150px;
	height:auto;
	display:none;
}


.birthday-slider .slides_container .slide {
	width:100%;
	min-height:150px;
	height:auto;
	display:block;

}

.slides_container {
	width:100%;
	display:none;
}


.slides_container div.slide {
	width:100%;
	display:block;
}

	
}



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

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