/* 
  ACUMEDIC LTD
  clinic.acumedic.com
  Stylesheet created by Matthew Manning, Zuey Butt.
*/

/* html5doctor.com Reset Stylesheet 
  v1.4 2009-07-27
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

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

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; text-decoration:none; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages
		
  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 

/* 
 * minimal base styles 
 */


body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #444; 
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #5B5B5B; }
a:hover { color: #036; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }



/*wp editor sillyness */
img .alignnone{
float:none;	
}

.alignleft{
float:left;
margin-right:10px;
margin-bottom:10px;	
}


 /* Primary Styles
    Author: 
 */

@font-face {
	 font-family: 'MyriadProRegular';
	 src: url('http://clinic.acumedic.com/design_template//fonts/myriadpro-regular-webfont.eot');
	 src: local('☺'), url('http://clinic.acumedic.com/design_template//fonts/myriadpro-regular-webfont.woff') format('woff'), url('http://clinic.acumedic.com/design_template//fonts/myriadpro-regular-webfont.ttf') format('truetype'), url('http://clinic.acumedic.com/design_template//fonts/myriadpro-regular-webfont.svg#webfontOBNBVYpn') format('svg');
	 font-weight: normal;
	 font-style: normal;
}

@font-face {
	font-family: 'MyriadWebBold';
	src: url('http://clinic.acumedic.com/design_template//fonts/myriadwebbold-webfont.eot');
	src: local('☺'), url('http://clinic.acumedic.com/design_template//fonts/myriadwebbold-webfont.woff') format('woff'), url('http://clinic.acumedic.com/design_template//fonts/myriadwebbold-webfont.ttf') format('truetype'), url('http://clinic.acumedic.com/design_template//fonts/myriadwebbold-webfont.svg#webfontEJz999dA') format('svg');
	font-weight: normal;
	font-style: normal;
	}


/* FORMS */
input[type="text"]{
margin-bottom:5px;	
}

 label
{
margin-right: 5px;;
display: block;
}



legend
{
color: #456030;
font-weight:bold;
font-size:16px;
margin-bottom:5px;
}

fieldset{
margin-bottom:20px;	
	
}


/* START clinic.acumedic.com */
	
	body
	{
	background-color:#C1C6D8;	
	}
	

	/* HEADER */	
	
		/* Extends Green Navigation Bar to Full Left*/
		#top_under_nav_bar
		{
		position:absolute;
		top:163px;
		left:0px;
		z-index:1;
		height:40px;
		width:50%;
		border-top:2px solid #626263;
		background-color:#6D8C6D; 	
		}
		
	.ie6 #top_under_nav_bar, .ie7 #top_under_nav_bar
	{
	display:none;
	visibility:hidden;	
	}
		

	
	header
	{
	position:relative;
	display:block;
	position:relative;
	background-color:#E0EAE2;
   	border-bottom:2px solid #626263;
	width:100%;	
	}

	#header_width
	{
	position:relative;
	width:1240px;
    max-width:1240px; 
    min-height:204px;
    margin:auto;
    background-position:top left;
	}
	
	
			/* Header Memberships & Translate Section */
			#mem_trans
			{
			float:right;
			width:240px;
			height:200px;
			}
			
			#head_membership_text
			{
			font-size:77%; /* 10px;*/	
			text-align:right;
			font-style:oblique;
			height:31px;	
			}
			/* End */
	
	
	
	/* Top Links */
	#top_links
	{
	margin-left:0px;
    margin-top:0px;
    padding-top:8px;
    width:980px;
	height:16px;
	overflow:hidden;
	}
	
	#top_links a
	{
	margin-right: 16px;
	float:left;
	display:block;
	border-bottom:1px dotted #E0EAE2; 
	font-size:93%; /* 12px;*/	
	}
	
	#top_links a:hover
	{	
	text-decoration:none;
	border-bottom:1px dotted #6D8C6D; 	
	}
	/* End */
	
	
	
	
	
	#logo
	{
	position:relative;
	height:121px;
    width:980px;
    background-image:url(http://clinic.acumedic.com/design_template/images/AM_LOGO.png);
    background-repeat:no-repeat;
    background-position: 34px 18px;
    cursor:pointer;	
	}
	
	
	#chinese_header_bubble
	{
	position:relative;
    left: 836px;
    top:15px;
    height:180px;
	width:144px;
	background-color:#FFF;
	z-index:200;
	border:3px solid #626263;
	background-image:url(http://clinic.acumedic.com/design_template/images/chinese_bubble.png);
	background-repeat:no-repeat;
	background-position:7px 10px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	-khtml-border-radius: 30px;
	border-radius: 30px;
	}
	
	.ie7 #chinese_header_bubble, .ie6 #chinese_header_bubble
	{
	display:none;
	visibility:hidden;	
	}
	

	/* Green Nav Bar */
	#top_nav_bar
	{
	height:40px;
    position:relative;
    width:870px;
    border-top:2px solid #626263;
    background-color:#6D8C6D; 
    margin-top:18px;
    z-index:20;	
	}
		
		/* txt front page is h2, content page is p*/
		#top_nav_bar p , #top_nav_bar h2
		{
		color:#FFF;
		font-family:  Arial, sans-serif;
		font-weight:normal;
		font-size:116%; /*15px;*/
		vertical-align:0px;
		font-style:normal;
		margin-top:3px;
		}
		
		.fontface #top_nav_bar p , .fontface #top_nav_bar h2
		{
		font-family:  'MyriadProRegular', Arial, sans-serif;
		font-size:138.5%; /*18px */
		margin-top:2px;
		}
		/* End */

		/* Button Effect */
		.headnav-separator 
		{
		float:left;
		background-color:#585858;
		width:1px;
		height:28px;
		margin-top:6px;
		}
		
		#top_nav_bar a 
		{
		float:left;
		padding-top:8px;
		height:32px;
		padding-left:30px;
		padding-right:30px;
		font-size:93%;
		color:#FFF;
		}
		
		#top_nav_bar a:hover
		{
		background-color:#9C71AA;
		}
		
		.headnavitem-active
		{
		background-color:#9C71AA;
		}
			

			
		/*End*/
	/* End Green Nav */	
/* END HEADER */
	
	
	
	
	
	
	/* START CONENT */
	#content_contain{
	width:100%;
    background: url(http://clinic.acumedic.com/design_template/images/bg1.png) no-repeat 100% 10%;	
	clear:both;
	postition:relative;
	}
	
	#content
	{
	width:1180px;
    min-width:1000px;
    margin:auto;
	position:relative;
	margin-top:25px;
	}
	
	#breadcrumbs
	{
	font-size:77%;
	}
	
	
	
	
	
		/* Content Box */
		#content_box, #content_box_full
		{
		float:right;
		width:860px;
		border:2px solid #1C2859;
		background-color:#FFF;
		padding-top:15px;
		padding-left:40px;
		padding-right:40px;
		padding-bottom:40px;
		-moz-border-radius: 19px;
		-webkit-border-radius: 19px;
		-khtml-border-radius: 19px;
		border-radius: 19px;
		}
		
		#content_box_full
		{
		float:none;
		width:100%;
		width:auto;
		}
		
		#content_box ul,#content_box_full ul
		{
		position:relative; 
		left:20px;
		padding-top:10px;
		padding-right:30px;
		padding-bottom:10px;
		}
		.ie9 #content_box ul,#content_box_full ul
		{
		list-style-position: inside;
		}
		
		#content_box li,#content_box_full li
		{
		
		}

		
		
		#content_box h2, #content_box h3, #content_box h4,#content_box_full h2, #content_box_full h3, #content_box_full h4
		{
		margin-top:30px;
		margin-bottom:2px;
		}
		

		#content_box h1 , #content_box_full h1
		{
		display:block;
		margin-top:10px;
		margin-bottom:0px;
		color:#626262;	
		font-family: Arial, sans-serif;
		font-size:327%; /*<61px */
		}
		
		.fontface #content_box h1, .fontface #content_box_full h1
		{
		
		font-family:  'MyriadWebBold', Arial, sans-serif;
		font-size:50px;
		/* font-family:  'MyriadProRegular', Arial, sans-serif;
		font-size:50px; 384% */
		}
		
		#content_box h2, #content_box_full h2 
		{
		font-size:153.9%;
		}
		
		#content_box h3, #content_box_full h3
		{
		font-size:138.5%;
		}
		
		#content_box h4, #content_box_full h4
		{
		font-size:108%;
		}
		
		#content_box p, #content_box ul, #content_box_full p, #content_box_full ul
		{
		font-size:108%;
		line-height:18px;
		margin-bottom:15px;
		}
		
		#content_box p a, #content_box_full p a
		{
		border-bottom:1px dotted #036; 
		}
		/*end */
	
	
	
	
	
		/* side nav */
		#content nav 
		{
		float:left;
		width:234px;
		border:1px solid #CD9155;
		background-color:#136B7F;
		margin-top:20px;	
		}
		
		
		#content nav .toplink  
		{
		display:block;
		padding:10px;
		border-bottom:1px solid #CD9155;
		color:#FFF;	
		font-family:  Arial, sans-serif;
		font-weight:normal;
		font-size:100%; /*13px */
		line-height:20px;
		cursor:pointer;
		}
		
		
		.fontface #content nav .toplink  
		{	
		font-family:  'MyriadProRegular', Arial, sans-serif;
		font-size:116%; /*15px */
		}
		
		#content nav #navsub_active
		{
		background-color:#CD9155;
		color:#000;
		}
		
		#content nav .toplink:hover
		{
		background-color:#CD9155;
		color:#000;
		}
		
		nav #nav_sub_links
		{
		background-color:#C1C6D8;
		padding-bottom:10px;
		padding-top:10px;
		color:#000;	
		}
		
		nav #nav_sub_links .boldlink, nav #nav_sub_links .boldlink_active
		{
		color:#000;
		font-weight:bold;
		margin-top:10px;
		padding:2px;
		padding-left:10px;
		display:block;
		line-height:21px;
		font-size:108%;
		}
		
		nav #nav_sub_links .boldlink:hover, nav #nav_sub_links .boldlink_active
		{
		background-color:#EBEBEB;
		}
		
		nav #nav_sub_links .bulletlink, nav #nav_sub_links .bulletlink_active
		{
		color:#000;	
		margin-left:20px;
		display:block;
		padding-left:20px;
		padding-top:5px;
		padding-bottom:5px;
		margin-bottom: 0px;
		background: url(http://clinic.acumedic.com/design_template/images/bullet.png) no-repeat 0px 6px;	
		line-height:15px;
		font-family:  Arial, sans-serif;
		font-size:100%; /*13px */
		}
		
		nav #nav_sub_links .bulletlink:hover, nav #nav_sub_links .bulletlink_active
		{
		background-image: url(http://clinic.acumedic.com/design_template/images/bullet-active.png);	
		color:#7B5289;
		}
		

		
		/*End*/
	
	
	
	
	
		/* inner sub nav */
		#inner_sub_nav
		{
		float:left;
		width:230px;
		height:410px;
		overflow:auto;
		border-right:1px solid #878787;
		margin-right:25px;
		margin-bottom:25px;
		}
		
		#inner_sub_nav p
		{
		font-weight:bold;
		}
		
		#inner_sub_nav a
		{
		display:block;
		
		padding-left:30px;
		margin-bottom: 10px;
		background: url(http://clinic.acumedic.com/design_template/images/bullet.png) no-repeat 3px 0px;	
		line-height:`8px;
		font-family:  Arial, sans-serif;
		font-size:100%; /*13px */
		}
		
		.fontface #inner_sub_nav a
		{
		font-family:  'MyriadProRegular', Arial, sans-serif;
		font-size:116%; /*15px */
		}
		
		
		#inner_sub_nav a:hover, #inner_sub_nav .bulletlink_active
		{
		background-image: url(http://clinic.acumedic.com/design_template/images/bullet-active.png);	
		}
		/* end */
		
		
		
		
		
		/* content images */
		.border_img
		{
			border:1px solid #1C2859; 
		}
		.border_imgleft
		{
		border:1px solid #1C2859; 
		margin-right:20px;
		margin-bottom:10px;
		float:left;
		}
		
		.border_imgright
		{
		border:1px solid #1C2859; 
		margin-left:20px;
		margin-bottom:10px;
		float:right;
		}
		/* end */
		
		
		#our_services_right
		{
		float:left; width:530px;	
		}
		
		
		/* content choice 1 col */
		.one_col
		{
		width:100%;
		margin-top:20px;
		clear:both;
		}
		
		.one_col img
		{
		width:210px;
		border:1px solid #1C2859; 
		width:210px; 
		height:151px;
		float:left;	
		margin-right:20px;
		}

		.one_col div
		{
		cursor:pointer;
		padding:5px;
		}
		
		/* content choice 3 col */
		.three_col
		{
		margin-top:20px;
		width:33%;
		float:left;
		text-align:center;	
		cursor:pointer;
		}
		.three_col img
		{
		width:210px;
		margin:auto;
		border:1px solid #1C2859; 
		width:210px; 
		height:151px;
		}
		
		.three_col div:hover img, .one_col div:hover img
		{
		border:1px solid #CD9155;
		}
		
		.three_col div
		{
		width:212px;
		margin:auto;
		text-align:left;
		padding:5px;
		}
		
		.three_col div:hover, .one_col div:hover, .three_col div:hover h2, .one_col div:hover h2
		{
		background-color:#CD9155;
		color:#000;
		}
		
		.three_col h2
		{
		margin-top:10px;
		}
		/* end */
		
		/* buttons */
		.orange_button
		{
		display:block;
		background-color:#DB5A25;
		border:1px solid #DB5A25;
		margin-top:5px;
		margin-bottom:5px;
		-moz-border-radius: 10px;
		-webkit-border-radius:10px;
		-khtml-border-radius: 10px;
		border-radius: 10px;	
		text-align:center;
		font-size:147%;
		line-height:50px;
		color:#FFF;
		font-weight:bold;
		}
		
		.orange_button:hover
		{
		color:#FFF;
		background-color:#036;
		}
		
		
		
/* END CONTENT */

	
	
/* FOOTER STYLES */
	footer
	{
	margin-top:50px;
			width:auto;
			border-top:1px solid #fff;
			padding:25px;
			background-color:#646464;
			color:#FFF;	
	}
	
	.footer_links
	{
	float:right;
	margin-left:40px;
	text-align:right;
	}
	
	.footer_links a
	{
	line-height:20px;
	color:#FFF;	
	}
	
	.footer_links a:hover
	{
	border-bottom:1px dotted #FFF;	
	}
	
	#social_media
	{
			position:relative;
			top:-50px;
			width:330px;
			margin-bottom:-64px;	
	}
	
	.ie7 #social_media
	{
	width:335px;	
	}
	
	.ie6 #social_media
	{
	width:350px;	
	}
	
	#keep_touch
	{
	font-size:153.9%;
    float:left;
    color:#646464;
    margin-right:10px;
    font-style:oblique	
	}
	
	#copyright
	{
	clear:left;
             margin-top:85px;	
	}
	/* END FOOTER STYLES */

	/*VIDEO GALLERY */
	.vid_gallery_box{
	background: no-repeat scroll center center transparent; 
	width: 264px; 
	height: 214px; 
	padding-left: 136px; 
	padding-top: 86px; 
	margin-bottom: 20px; 
	border: 1px solid rgb(204, 204, 204);	
	}
	
/* END clinic.acumedic.com */




/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}

