/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/


/* #Site Styles
================================================== */
body {
		background: #fff;
		font-family:Verdana, Arial, Helvetica, sans-serif!important;
		font-size:12px;
		color: #333;
		-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
		-webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4, h5, h6{
	font-family: Verdana, Arial, Helvetica, sans-serif!important;
}
@media only screen and (max-width: 767px) { /* except PC */
	body {
    font-size: 14px;
	}
}

/* #Links
================================================== */
a, a:visited { color: #0099ff; text-decoration: none; outline: 0; }
a:hover, a:focus { color: #46b5ff; text-decoration:underline;}
p a, p a:visited { line-height: inherit; }
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, 
h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited { 
	color: #333; 
	text-decoration: 
	none; outline: 0; 
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, 
h1 a:focus, h2 a:focus, h3 a:focus, h4 a:focus, h5 a:focus, h6 a:focus{ 
	color: #666; 
	text-decoration:underline;
}
a img:hover{
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}

a img:hover{
	opacity:0.75;
}

.button,
	button,
	input[type="submit"],
	input[type="reset"],
	input[type="button"] {
	font-size: 14px;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", Hiragino Kaku Gothic Pro,Verdana, Arial, Helvetica, sans-serif;
	text-shadow: 0 1px rgba(255, 255, 255, .4);
	font-weight: normal;
	 border-radius: 5px;
	 padding: 5px 15px;
	
}
/* #Common
================================================== */
/* ----- table setting ----- */
.line{
	width: 100%;
	border-spacing: 0;
	margin-bottom:35px;
	
}
.line th {
	border: #ccc 1px solid;
	text-align: center;
	padding: 10px;
	font-weight: bold;
	background:#f3fde2;
}
.line td {
	border: #ccc 1px solid;
	text-align: left;
	padding: 10px;
}

.center th, .center td, th.center, td.center{
	text-align: center;
	vertical-align:middle;
}
.bg-grey{
	background:#f0f0f0 !important;
}
.sum{
	border-top:3px solid #999;
	font-size:1.2em;
	font-weight:bold;
}

.type th, .price th{
	width:30%;
}
th.quarter{
	width:30%;
}
.border tr:nth-child(even) {
	background: #f2f2f2;
}

@media only screen and (max-width: 767px) { /* 横長 table */
	#wide table tbody::-webkit-scrollbar{
		height:12px;
	}
 
	#wide table tbody::-webkit-scrollbar-track {
    	background: rgba(0,149,204,0.3);
	    border-radius: 5px;
	}
 
	#wide table tbody::-webkit-scrollbar-thumb {
		border-radius: 10px;
		background:rgba(0,149,204,0.8);
    	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
	}
  
  	#wide table{ 
			display: block; 
			position: relative; 
			width: 100%; 
		}
		#wide table thead{ 
				display: block; 
				float: left;
			}
		#wide table tbody{ 
				display: block; 
				width: auto; 
				position: relative; 
				overflow-x: auto;
				-webkit-overflow-scrolling: touch; 
				white-space: nowrap; 
			}
			
		#wide table thead tr{ 
				display: block;
				
			}
		#wide table th{ 
				display: block; 
			}
		#wide table tbody tr{ 
				display: inline-block; 
				vertical-align: top; 
				margin-left:-4px;
			}
		#wide table td{ 
				display: block; 
			}

		/* borderの調整 */
		#wide th{ 
			border-bottom: 0; 
		}
		#wide td{ 
			border-left: 0; 
			border-right: 0; 
			border-bottom: 0; 
		}
		#wide tbody tr{ 
			border-right: 1px solid #babcbf; 
		}
		#wide th:last-child,
		#wide td:last-child { 
			border-bottom: 1px solid #babcbf; 
		}
}

/* support price */
.support th{
	width:20%;
}
.support .header-left{
	text-align:left;
	background:#fff9e8;
	font-weight:normal;
	width:40%;
}
.support .header-left.cate{
	background:#fff0c9;
	font-weight:bold;
}
.support tr:nth-child(even) {
	background: #f2f2f2;
}



/* ----- list ----- */
.rounded-list {
    counter-reset: li; /* Initiate a counter */
    list-style: none; /* Remove default numbering */
    *list-style: decimal; /* Keep using default numbering for IE6/7 */
    padding: 0;
    margin-bottom: 4em;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

.rounded-list ol {
    margin: 0 0 0 2em; /* Add some left margin for inner lists */
}

.rounded-list li{
    position: relative;
    display: block;
    padding: 1em 1em 1em 2em;
    margin: .5em 0;
    background: #f2f2f2;
    text-decoration: none;
    border-radius: .3em;
    transition: all .3s ease-out;   
	min-height:65px;
}

.rounded-list li:hover:before{
    transform: rotate(360deg); 
	 
}
.rounded-list li:hover{
  background: #fff0d2;	
}

.rounded-list li:before{
    content: counter(li);
    counter-increment: li;
    position: absolute; 
    left: -1.3em;
    top: 20px;
    margin-top: -1.3em;
    background: #ffe6ab;
    height: 3em;
    width: 3em;
    line-height: 3em;
    border: .3em solid #f5ad00;
    text-align: center;
	font-size:18px;
    font-weight: bold;
    border-radius: 4em;
    transition: all .3s ease-out;
	
}
.rounded-list h3{
	border-bottom:none;
	margin:0 0 0 30px;
}
.rounded-list p{
	margin-left:30px;
}




/*==== header ====*/
header{
	margin:0;
	padding:0;
	min-height:1%;
}
.logo img{
	margin:15px 0 0 0;
	padding:0;
	max-width:100%;
}
header h1{
	font-size:12px;
	color:#333;
	line-height:1em;
	margin:0 0 1.5em 0;
	padding:0;
}

/*-- Search box --*/
.search-box{
	float:right;
	width:100%;
}
.ccm-search-block-form{
	height:32px;
	text-align:right;
}
.search-box input.ccm-search-block-text{
	width: 65%;
	height:25px;
	font-size:14px;
	padding:5px;
	margin:0;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", Hiragino Kaku Gothic Pro,Verdana, Arial, Helvetica, sans-serif;
	display:inline !important;
    -webkit-box-shadow:2px 2px 2px 0 rgba(200,200,200,0.5) inset;
       -moz-box-shadow:2px 2px 2px 0 rgba(200,200,200,0.5) inset;
            box-shadow:2px 2px 2px 0 rgba(200,200,200,0.5) inset;
}
/*-- top menu --*/
ul#header-menu{
	display:block;
	list-style-type:none;
	float:right;
	margin:25px 0 25px 0;
}
ul#header-menu li{
	display:inline-block;
	vertical-align:middle;
	margin: 0 0 0 30px;
	padding:0 0 0 25px;
	position:relative;
}

ul#header-menu a{
	text-decoration:none;
	color:#333;
	margin:0;
	padding:0;
}
ul#header-menu .enquiry:before{
	content:url(/~puremass/themes/puremassage/images/icon-mail.png);
	position:absolute;
	top:-3px;
	left:0;
}
ul#header-menu .profile:before{
	content:url(/~puremass/themes/puremassage/images/icon-company.png);
	position:absolute;
	top:-3px;
	left:0;
}

ul#header-menu .enquiry:hover, ul#header-menu .profile:hover{
	opacity:0.65;
}
@media only screen and (max-width: 767px) {
	header .logo, ul#header-menu, .search-box {
		float:none;
		margin-right:auto;
		margin-left:auto;
		text-align:center;
	}
	.ccm-search-block-form {
		text-align:center;
	}
	header h1{
		font-size:16px;
	}
	/* slider force to none display */
	.powerSliderShell{ 
	display:none;
	}
	 
}


/* main nav */
nav#main-nav{ 
	background: rgb(160,202,91);
background: -moz-linear-gradient(top,  rgba(160,202,91,1) 0%, rgba(139,175,72,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(160,202,91,1)), color-stop(100%,rgba(139,175,72,1)));
background: -webkit-linear-gradient(top,  rgba(160,202,91,1) 0%,rgba(139,175,72,1) 100%);
background: -o-linear-gradient(top,  rgba(160,202,91,1) 0%,rgba(139,175,72,1) 100%);
background: -ms-linear-gradient(top,  rgba(160,202,91,1) 0%,rgba(139,175,72,1) 100%);
background: linear-gradient(to bottom,  rgba(160,202,91,1) 0%,rgba(139,175,72,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a0ca5b', endColorstr='#8baf48',GradientType=0 );

	box-shadow: 0px 3px 3px rgba(0,0,0,0.3);
	font-size:13px;
	overflow:visible;
	z-index:10;
}
@media only screen and (max-width: 767px) { /* except PC */
	nav#main-nav{ 
	box-shadow: none;
	}
}
@media only screen and (max-width: 767px) {
	header .logo, ul#header-menu, .search-box {
		float:none;
		margin-right:auto;
		margin-left:auto;
		text-align:center;
	}
	.ccm-search-block-form {
		text-align:center;
	}
	header h1{
		font-size:16px;
	}
	/* slider force to none display */
	.powerSliderShell{ 
	display:none;
	}
	 
}

@media only screen and (max-width: 767px) {
	#main-nav .container{
		width:100%!important;
		margin:0!important;
		padding:0!important;
	}
	#main-nav .container ul{
		margin:0!important;
		padding:0!important;
	}
}


/* slider*/
.slider-wrap{
	background: rgb(165,217,237);
background: -moz-linear-gradient(top,  rgba(165,217,237,1) 0%, rgba(150,212,234,1) 72%, rgba(255,255,255,1) 72%, rgba(255,255,255,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(165,217,237,1)), color-stop(72%,rgba(150,212,234,1)), color-stop(72%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,1)));
background: -webkit-linear-gradient(top,  rgba(165,217,237,1) 0%,rgba(150,212,234,1) 72%,rgba(255,255,255,1) 72%,rgba(255,255,255,1) 100%);
background: -o-linear-gradient(top,  rgba(165,217,237,1) 0%,rgba(150,212,234,1) 72%,rgba(255,255,255,1) 72%,rgba(255,255,255,1) 100%);
background: -ms-linear-gradient(top,  rgba(165,217,237,1) 0%,rgba(150,212,234,1) 72%,rgba(255,255,255,1) 72%,rgba(255,255,255,1) 100%);
background: linear-gradient(to bottom,  rgba(165,217,237,1) 0%,rgba(150,212,234,1) 72%,rgba(255,255,255,1) 72%,rgba(255,255,255,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a5d9ed', endColorstr='#ffffff',GradientType=0 );

	padding:15px 0;
}
.slider-frame{
	background:#fff;
	box-shadow:0px 0px 8px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow:0px 0px 8px rgba(0, 0, 0, 0.3);
    -moz-box-shadow:0px 0px 8px rgba(0, 0, 0, 0.3);
	margin:0 auto;
	padding:0;
}
.slider{
	float:left;
	width:67%;
	margin:0;
	padding:0;
	overflow:hidden;
}
.slider img { /* depens on slider mod, should be deleted */
	max-width:100%;
	margin:0;
	display:block;
	
}
.contact-box{
	float:right;
	width:33%;
	background:#fff;
	margin:0;
	padding:0;
}
.contact-box img{
	max-width:100%;
	display:block;　/* 画像の下に出来る隙間を消す  */
}
@media only screen and (max-width: 767px) {
	.slider-wrap{
		background:none;
	}
	.slider-frame{
		width:100%;
	}
	.slider{
	width:100%;
	}
	.contact-box{
	display:none;
	}

}




/* breadcrumb */
#breadcrumbs{
	margin:0 0 10px 0;
	padding:0;
	min-height:30px;
}
#breadcrumbs ul{
  width: 100%;
}
#breadcrumbs ul li{
  margin: 0;
}
#breadcrumbs ul li:after{
	content: ">";  
	margin:0 1em;
}
#breadcrumbs ul li:last-child:after{
	content: ""; 
	margin:0;
}

#breadcrumbs .current{
	font-weight:bold;
}
#breadcrumbs a{
	padding: 0.2em;
	position: relative;
	color:#333;
} 

/*==== main ====*/
.main-body{
	margin-right:30px!important; /* margin between sidebar */
	margin-top:35px;
}
main h1{
	font-size:42px;
	line-height:1.4em;
}
main h2{
	position: relative;
  color: #333;
  font-size: 32px;
  line-height: 1;
  margin: 2em 0 .3em 0;
  padding: 14px 5px 10px 15px;
}
main h2:before {
  content: "";
  position: absolute;
  background: #a0cb58;
  top: 0;
  left: -5px;
  height: 15px;
  width: 15px;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}
main h2:after {
  content: "";
  position: absolute;
  background:#999;
  top: 18px;
  left: -10px;
  height: 10px;
  width: 10px;
  -moz-transform: rotate(15deg);
  -webkit-transform: rotate(15deg);
  -o-transform: rotate(15deg);
  -ms-transform: rotate(15deg);
  transform: rotate(15deg);
    border-radius: 50%;	
	-webkit-border-radius: 50%;	
	-moz-border-radius: 50%;
}
main h3{
	color: #333;
	font-size: 24px;
	font-weight:normal;
	line-height: 1;
	margin: 2em 0 .5em 0;
	padding: .3em 0;
	border-bottom:1px solid #dfdfdf;
}
main h3.school{
	color: #333;
	font-size: 24px;
	padding: 4px 0 4px 10px;
	border-left:7px solid #a0cb58;
	border-bottom:1px solid #ccc;
	line-height:1.4em;
}

main h4{
	color: #333;
	font-size: 16px;
	line-height: 1;
	font-weight:bold;
	margin: 1em 0 .5em 0;
	padding: 4px 0;
}

/* home */
.service-list{
	margin:25px 0;
}
.service-list li{
	display:inline;
	float:left;
	width:48%;
	margin:0 0 0 0;
	padding:0;
}
.service-list li img{
	max-width:100%;
	border:7px solid #fff;
	margin-bottom:10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow:0px 0px 5px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.3);
    -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.3);
}
.service-list li:nth-child(even) {
    margin:0;
}
.service-list li:nth-child(odd) {
    margin-right:4%;
}
.service-list p{
	margin:0;
}
@media only screen and (max-width: 767px) {

	.service-list li{
		display:block;
		float:none;
		width:100%;
		margin:0;
		padding:0;
	}
}


/*------ Special -----*/
.img-frame{
	width:100%;
	overflow:hidden;
}
.img-frame img{
	width:100%;
}







/* category List */
#cate-list ul.cate-list-frame{
	margin:0;
	padding:0;
}
#cate-list ul.cate-list-frame li{
	margin:0 0 20px 0;
	padding:20px 0 0 0;
	border-top:1px dotted #dedede;
	min-height:150px;
	background:none;
}

#cate-list h2{
	margin:0 0 10px 0;
	padding:0;
	border:none;
	clear:both;
	background:none;
	line-height:1.5em;
	font-size:21px;
		border:none;
	background:none;
	-moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
#cate-list h2:before, #cate-list h2:after{
	content: "";
	border:none;
	background:none;
	-moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
#cate-list p{
	margin:0 0 0 0;
}
#cate-list .cate-list-desc{ /* with Thumbnail */
	float:right;
	width:65%;
	padding-top:0;
}
#cate-list p.thumb{
	float:left;
	padding:5px;
	width:30%;
	-moz-box-shadow: 1px 1px 3px #333;  /* firefox */ 
	-webkit-box-shadow: 1px 1px 3px #333;/* Safari,Chrome */ 
	box-shadow:1px 1px 3px #333;  
	overflow:hidden;
}
@media only screen and (max-width: 767px) { /* except PC */
	#cate-list .cate-list-desc{
	width:100%;
	}
	#cate-list p.thumb{
	display:none;
	}
}
#cate-list p.thumb img{
	width:100%;
	vertical-align:bottom;
}
#cate-list p.thumb img:hover{
	filter: alpha(opacity=80);
	-moz-opacity:0.80;
	opacity:0.80;
}
#cate-list .detail{
	float:right;
	margin-top:.5em;
	padding:0;

}

#cate-list .detail .btn-blue{
  background: #a0ca5a;
  background-image: -webkit-linear-gradient(top, #a0ca5a, #96be52);
  background-image: -moz-linear-gradient(top, #a0ca5a, #96be52);
  background-image: -ms-linear-gradient(top, #a0ca5a, #96be52);
  background-image: -o-linear-gradient(top, #a0ca5a, #96be52);
  background-image: linear-gradient(to bottom, #a0ca5a, #96be52);
  -webkit-border-radius: 3;
  -moz-border-radius: 3;
  border-radius: 3px;
  color: #ffffff;
  font-size: 12px;
  padding: 7px 15px 7px 15px;
  text-decoration: none;
}

#cate-list .detail .btn-blue:hover {
  background: #3cb0fd;
  background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
  background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
  text-decoration: none;
}

/* testimonial */
#feedback-list ul.feedback-list-frame{
	margin:0;
	padding:0;
}
#feedback-list ul.feedback-list-frame li{
	margin:0 0 20px 0;
	padding:20px 0 0 0;
	border-top:1px dotted #ccc;
	min-height:195px;
	background:none;
}

#feedback-list h2{
	margin:0 0 10px 0;
	padding:0;
	border:none;
	clear:both;
	background:none;
	line-height:1.5em;
	font-size:21px;
	border:none;
	background:none;
	-moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
#feedback-list h2:before, #feedback-list h2:after{
	content: "";
			border:none;
	background:none;
	-moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
#feedback-list .info{
	font-weight:bold;
	padding-bottom:20px;
	line-height:2em;
}
#feedback-list p{
	margin:0 0 3em 0;
}

#feedback-list .feedback-desc{
	float:right;
	width:70%;
	padding-top:0;
}
#feedback-list p.thumb{
	float:left;
	padding:8px;
	width:25%;
	-moz-box-shadow: 1px 1px 3px #333;  /* firefox */ 
	-webkit-box-shadow: 1px 1px 3px #333;/* Safari,Chrome */ 
	box-shadow:1px 1px 3px #333;  
	overflow:hidden;
}
@media only screen and (max-width: 767px) { /* except PC */
	#feedback-list .feedback-desc{
	width:100%;
	}
	#feedback-list p.thumb{
	display:none;
	}
}
#feedback-list p.thumb img{
	width:100%;
}
#feedback-list p.thumb img:hover{
	opacity:0.80;
}

/* About Us */
.staff li{
	position:relative;
	margin:20px 0 55px 0;
}
.staff h3{
	border-bottom:5px solid #0099ff;
	margin:0 0 0 0;
}
.staff h4{
	margin:.5em 0 1.5em 0;
}
.staff .name-e{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-style:italic;
	font-size:14px;
	color:#666;
	margin:.3em 0 0 0;
}
.prof-img{
	float:right;
	width:40%;
	margin:10px 0 25px 0;
	position:absolute;
	top:0;
	right:0;
}
.prof-img img{
	width:100%;
	border:8px solid #fff;
	box-shadow:1px 1px 3px #333;  
	-moz-box-shadow: 1px 1px 3px #333;  /* firefox */ 
	-webkit-box-shadow: 1px 1px 3px #333;/* Safari,Chrome */ 
}
@media only screen and (max-width: 479px) {
	.prof-img{
	float:none;
	width:95%;
	margin:10px 0 25px 0;
	position:relative;
	}
}
.staff dt{
	font-weight:bold;
	position:relative;
	margin-left:1.2em;
}
.staff dt:before{
  content: "";
  position: absolute;
  background: #a0cb58;
  top: 3px;
  left: -12px;
  height: 7px;
  width: 7px;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.staff dd{
	margin:0 0 1em 2em;
}
.staff .comment{
	padding:1.5em;
	background:#f2f2f2;
	border:1px solid #ccc;
	border-radius:5px;
}
/* living abroad */
ol.arrow {
	list-style:none;
	margin:0;
	padding:0;
}
ol.arrow li{
	padding:15px;
	position:relative;
	text-align:center;
	margin:0 0 55px 0;
	border-radius:3px;
	border: 2px solid #f5ad00;
	background: #fff0d2;
	box-shadow: 0 0 8px rgba(245,173,0, 0.9);
	-webkit-box-shadow: 0 0 8px rgba(245,173,0, 0.9);
	-moz-box-shadow: 0 0 8px rgba(245,173,0, 0.9);
	font-size:14px;
}
ol.arrow li:after{
	content: '';
	position: absolute;
	border-top: 25px solid #dedede;
	border-right: 25px solid transparent;
	border-left: 25px solid transparent;
	bottom: -40px;
	left: 45%;
}
ol.arrow li:last-child:after{
	content: '';
	border: none;
}


/* Contact form */
.field > label{
	margin:2.5em 0 0 0;
	padding:5px;
}
.fields input, .fields textarea{
	margin:.5em 0;
}
.radioPair label, .radioPair input{
	margin:.5em 0 0 0;
}
.fields textarea{
	width:95%;
}
.checkboxList input{
	margin:0;
}
.checkboxList label, .radioList label{
	margin:.5em 0 0  0;
	font-weight:normal;
}
.errors{
	padding:15px;
	background:#FFE8E9;
	line-height:1.8em;
	color:#CC0000;
	moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius:5px;
    border-radius: 5px;
}
.success{
	padding:15px;
	background:#E4FFD7;
	line-height:1.8em;
	color:#006600;
	moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius:5px;
    border-radius: 5px;
}
.formblock .field select, .formblock .field input, .formblock .field textarea{
	font-weight:normal!important;
	font-size:1.2em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color:#333;
}
.formblock .field textarea{
	width:95%;
}


.formblock .field .ccm-input-date{
	width:220px!important;;
}

/*  --- search-results --- */
#search-results h1{
	margin-bottom:1em;
}
#search-results h2{
	font-size:18px;
	font-weight:bold;
	padding:0;
	margin:0 0 .5em 0;
}
#search-results .url{
	padding:0;
	margin:0 0 .5em 0;
}
#search-results .desc{
	padding:0;
	margin:0 0 4em 0;
}

#search-results h2:before, #search-results h2:after{
	background:none;
}
#search-results h2 a, #search-results h2 a:visited{
	color: #0099ff; 
	text-decoration: none;
}
#search-results h2 a:hover{ 
	color: #46b5ff; 
	text-decoration:underline;
}





/*==== side  ====*/
.sidebar{
	margin:35px 0;
	text-align:left;
	clear:both;
	min-height:100px;
		
}
.sidebar h2{
	font-size:21px;
	border-bottom:1px solid #ccc;
	text-align:left;
}

.sidebar h2.voice{
	background:url(/~puremass/themes/puremassage/../images/icon-voice.png) 0 8px no-repeat;
	padding-left:30px;
}
.sidebar h3{
	font-size:18px;
	text-align:left;
}


/* side sub nav */
.sidebar ul.nav-side{ 
	margin:0 0 25px 0; 
	padding:0; 
}
@media only screen and (max-width: 767px) {
	.container-twelve .four{ 
	border-top:8px dotted #dedede;
	margin-top:2em;
	}
}

.sidebar ul.nav-side li{ 
	list-style: none;
	line-height: 2.5em;
	padding:0; 
	margin:0; 
	width:100%;
	text-indent:30px;
	position:relative;
}
.sidebar ul.nav-side a{
	display:block; 
	width:100%;
	color:#333;
	text-decoration:underline;
	padding:3px 0;
	margin:0 0 0 0;
	background:url(/~puremass/themes/puremassage/images/submenu-arrow.png) no-repeat 10px 14px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}
.sidebar ul.nav-side li.nav-selected {
	background-color:#e9f8e2;
}
.sidebar ul.nav-side a.nav-selected {
	margin-left:0;
	font-weight:bold;
}
.sidebar ul.nav-side li.nav-selected:before {
	background: none repeat scroll 0 0 #777777;
    bottom: 18px;
    box-shadow: 0 15px 10px #777777;
    content: "";
    left: 10px;
    max-width: 300px;
    position: absolute;
    top: 80%;
    transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    width: 50%;
    z-index: -1;
}
.sidebar ul.nav-side li:hover {
	text-shadow: 1px 1px 1px #ccc; 
	
}
.sidebar ul.nav-side a:hover{ 
	text-decoration:none;
	background:#e9f8e2 url(/~puremass/themes/puremassage/images/submenu-arrow-blue.png) no-repeat 15px 14px;
}
/* ul ul */
.sidebar ul.nav-side ul{ 
	list-style:none; 
	margin:0; 
	padding:0px; 
}
.sidebar ul.nav-side ul li{ 
	overflow:hidden;
}
.sidebar ul.nav-side ul a{
	display:block; 
	width:100%;
	color:#333;
	text-decoration:underline;
	padding:3px 0;
	margin:0 0 0 15px;
}



/* side banner */
.banner img{
	width:100%;
	margin-bottom:25px;
	border-radius:4px;
}

/* html block */
.sidebar .HTMLBlock{
	margin-bottom:35px;
}




/* footer */
footer{ 
	background:#a0ca5a;
	margin: 35px 0 0 0;
	padding:35px 0;
	color:#fff;
	clear:both;
}
footer .left{ 
	width:48%;
	float:left;
}
footer .right{ 
	width:48%;
	float:right;
}
footer a{
	color:#fff;
}
footer a:hover{
	color:#fff;
	text-decoration:underline;
}

footer h2{ 
	color:#fff;
	font-size:21px;
	border-bottom:1px solid #52aed0;
	padding-bottom:.2em;
	margin-bottom:.8em;
}
footer h3{ 
	color:#fff;
	font-size:15px;
	font-weight:bold;
	padding-bottom:0em;
	margin-bottom:0em;
	
}
.footer-map.googleMapCanvas{
	height:200px!important;
	z-index:999;
}
.copyright{
	text-align:center;
	color:#fff;
	margin:30px 0 0 0;
}

@media only screen and (max-width: 767px) {

	footer .column{
		margin-bottom:35px;
	}
	footer .left,footer .right { 
	width:100%;
	float:none;
	}
}
/* FB module */
.fb-like-box.fb_iframe_widget{
	border:none;
	width:100%;
}
#fb-root, .uiHeader{
    display: none;
}
.fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
    width: 100% !important;
}


/* back to top */
#backtop{
	position: fixed;
	bottom: 15px;
	right: 15px;
	text-align:center;
}
#backtop a{
	display: block;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	transition: 0.5s;
	padding:10px;
	height:40px;
	width:40px;
	border-radius:50%;
	background:rgba(0,0,0,0.6);
}
#backtop a:hover {
	background:rgba(0,0,0,0.9);
}
/* Edit tool bar */
#ccm-white-label-message{ display:none;} /* hide link to C5 */

/* #Page Styles
================================================== */


/* #Media Queries
================================================== */

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) {}

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {}


