@charset "utf-8";
body {
	/*font: 85%/1.0 "Trebuchet MS", Arial, Helvetica, sans-serif;*/
	font:90%/1.1 "Trebuchet MS", Arial, Helvetica, sans-serif;
	background: #dadada;
	margin: 0;
	padding: 0;
	color: #666;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	/*padding: auto;
	margin: auto;*/
	padding:0;
	margin:0;
	margin-bottom:10px;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	/*padding-right: 15px;
	padding-left: 15px;  adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	margin-bottom:5px;
	margin-top:5px;
	padding:0;
}
table,td,tr,th, tbody {
	margin:0;
	padding:0;
}
td {
	padding:5px;	
}
table {
	max-width:97%;	
}
.content h1 {
	font:180%/0.8;
	color:#5F5F5F;
	font-weight:bold;	
}
.content h2 {
	font:160%/0.8;
	color:#5F5F5F;
	font-weight:bold;
}
.content h3 {
	text-transform:capitalize;	
}
.content ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding-left:2em;
	margin:0;
}
.content li {
	padding-bottom:0px;	
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:visited {
	color: #FFF;
	text-decoration: underline;
}
.content a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
.content a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
.content a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds all other elements ~~ */
.wrapper {
	width: 1000px;
	background: #FFF;
	background-image:url(images/content_repeat.jpg);
	background-repeat:repeat-y;
	background-position:left;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
.contentTitle {
	padding: 25px 20px 0px 20px;
}
.content {
	padding: 25px 20px 10px 20px;
	margin: 0 250px 0 20px;
	height:auto;
	border-right:dashed 1px #CCC;
	width: 685px;
}
.contentRHS {
	float:right;
	margin-left:0px;
	margin-right:0px;
	/* [disabled]background-color:#FFF; */
	padding:15px 10px 25px 0px;
	min-height:250px;
	width:230px;
	color:#FFF;
}
.contentRHS h1 {
	color:#FFF;
	font-size:150%;
	font-weight:bold;
}
/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
#header{
	width:auto;
	background-image:url(images/header-ashford-surgery-bariatric-adelaide.jpg);
	height:100px;
	background-repeat:no-repeat;
}
#header2{
	width:1000px;
	background-image:url(images/logo.jpg);
	background-repeat:no-repeat;
	background-position:center;
	height:85px;
	padding:0px 0px 0 0px;
}
#menu{
	width:auto;
	/*	background-image:url(images/menubar.jpg);*/
	height:30px;
	margin: 0 0px;
	padding: 0 3px;
	background-color:#5F5F5F;
	color:#F60;
	border-bottom:1px solid #5F5F5F;
	font-size:12px;
}
#basebar {
	clear:both;
	width:auto;
	/*background-image:url(images/footer.jpg);
	background-repeat:no-repeat;*/
	font-size:100%;
	background-color: #7c7c7c;
	border-top:dashed 1px #CCC;
	padding:3px 10px 6px 20px;
}
#basebar h1 {
	font-size:14px;
	font-weight:bold;
	color: #C00;
}
#basebar p {
	line-height:100%;
	margin:0;
	text-align:left;
	padding:0px;
}
#basebar a {
	font-weight:bold;
	padding:0 10px 0 0px;
}
#basebar a:link {
	color:#d8d8d8;
}
#basebar a:visited {
	color:#d8d8d8;
}
#basebar a:hover {
	color:#FFF;
	text-decoration:underline;
}
#basebar a:active {
	color:#FFF;
	text-decoration:underline;
}
.basebarsmaller {
	font-size:85%;	
}
.basecol {
	width:25%;
	float:left;
}
#footermenu{
	clear:both;
	width:auto;
	background-image:url(images/footer_menu.jpg);
	background-repeat:no-repeat;
	background-position:bottom;
	height:112px;
	font-size:85%;
	color:#FFF;
	padding:5px 0px;	/*background-color: #F5F5F5;*/
}
#footermenu a {
	text-decoration:none;
}
#footermenu a:link {
	color:#FFF;
}
#footermenu a:visted {
	color:#FFF;
}
#footermenu a:hover {
	color:#F55252;
}
#footermenu a:active {
	color:#FFF;
}
#footermenu h1{
	font-size:100%;
	font-weight:bold;
	line-height:2;
	padding:0;
	margin:0;
	color:#CCC;
}
.footermenucol {
	float:left;
	color:#FFF;
	padding-left:15px;
	line-height:100%;
}
.footermenucol li{
	padding: 3px 0;
}
.footermenucol h1 a {
	text-decoration:none;
}
.footermenucol h1 a:link {
	color:#CCC;
}
.footermenucol h1 a:visted {
	color:#CCC;
}
.footermenucol h1 a:hover {
	color:#C00;
}
.footermenucol h1 a:active {
	color:#CCC;
}
.footermenucol li{
	list-style-type: none;
}
.footermenucol ul a {
	text-decoration:none;
}
.footermenucol ul a:link {
	color:#FFF;
}
.footermenucol ul a:visted {
	color:#FFF;
}
.footermenucol a:visted {
	color:#FFF;
}
.footermenucol ul a:hover {
	color:#C00;
}
.footermenucol ul a:active {
	color:#FFF;
}
.footermenucol li{
	list-style-type: none;
}
#footer {
	clear:both;
	width:auto;
	height:auto;
	background-image:url(images/footer.jpg);
	background-repeat:no-repeat;
	background-position:bottom;
	height:51px;
	font-size:85%;
	color:#FFF;
	padding:0;
	margin:0;
	/*background-color: #F5F5F5;*/
}
#footer p {
	/*line-height:100%;*/
	text-align:left;
	padding:10px 15px 15px 15px;
}
#footer h1 {
	color:#FFF;	
}
#footer a {
	font-weight:bold;	
}
#footer a:link {
	color:#FFF;
}
#footer a:visited {
	color:#CCC;
}
#footer a:hover {
	color:#F00;
	text-decoration:underline;
}
#footer a:active {
	color:#F00;
	text-decoration:underline;
}
.imgLeft {
	float:left;
	margin-right:15px;
	margin-bottom:10px;	
}
.imgRight {
	float:right;
	margin-left:15px;
	margin-bottom:10px;	
}
.form_enquire {
	background-color:#5F5F5F;
	padding:10px;
}
#featureboxes {
	/*clear: left;*/
	width:99%;	
	padding:20px 0;
}
.featurebox {
	width:32%;
	float:left;
	background-color:#ededed;
}
.featurebox2 {
	width:32%;
	margin-left:2%;
	float:left;
	background-color:#ededed;
}
#featureboxes h1{
	width:auto;
	background-image:url(images/feature_h1.jpg);
	background-repeat:repeat-x;
	font: 100%/1.2 "Trebuchet MS", Arial, Helvetica, sans-serif;
	padding:3%;
	color:#FFF;
	font-weight:bold;
}
#featureboxes p {
	width:auto;
	padding:0 4px;
	font: 85%/1.0 "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-align:center;
}
#featureboxes a:link{
	color:#900;
}
#featureboxes a:visited{
	color:#900;
}
#featureboxes a:hover{
	color:#C00;
}
.highlight {
	color:#C00;
	font-weight:bold;
}
.highlightlarger {
	color:#C00;
	font-size:125%;
}
.BMI {
	width:99%;
	text-align:center;
}
.testimonial {
	border:2px #999999 solid;
	/*padding:10px;
	margin-top: 10px;
	margin-bottom: 10px;*/
	background-color:#F0EEEE

}
.testimonialimg {
	padding: 15px;
	text-align:center;
	font-weight:bold;
	float: left;
}
.smaller {
	font-size:75%;	
}
/* #################################################################### */

/* Rotator Styles */
#rotatewrapper {
	width:680px; 
	/*border-top:3px solid #92a5bc;*/
	border-bottom:1px solid #92a5bc;
	margin:0 auto;
}

#rotator {
	background:#FFF;
	color:#000;
	position:relative;
	padding-bottom:2.6em;
	margin:0; 
	font-size:16px;
}

/* Tabs */
ul.ui-tabs-nav, li.ui-tabs-nav-item, li.ui-tabs-nav-item a:link, li.ui-tabs-nav-item a:visited {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	line-height:1.3;
	text-decoration:none;
	font-size:100%;
	list-style:none;
	float:left;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
}

ul.ui-tabs-nav {
	position:absolute;
	bottom:0px;
	left:0;
	z-index:1;
	width:100%;
	background:#FFF url(http://www.ashfordsurgicalobesitycentre.com.au/2010/rotator/images/uitabsbg.gif) repeat-x bottom right;
	border-top:1px solid #FFF;
}

/* Non-Selected Tabs */
li.ui-tabs-nav-item a:link,
li.ui-tabs-nav-item a:visited {	
	font-size:.8em;
	font-weight:normal;
	color:#FFF;
	background:#FFF url(http://www.ashfordsurgicalobesitycentre.com.au/2010/rotator/images/uitabsbg.gif) repeat-x bottom left; 
	border-left:1px solid #FFF;
	border-right:1px solid #c5ced9;
}

/* Hovered Tab */
#rotator .ui-tabs-nav-item a:hover,
#rotator .ui-tabs-nav-item a:active {
	background:#FFF url(http://www.ashfordsurgicalobesitycentre.com.au/2010/rotator/images/uiactivetabbg.gif) repeat-x bottom left;
	color:#333;
}

#rotator .ui-tabs-nav-item a span {
	float:left; 
	padding:1em; 
	cursor:pointer;
}

/* Active Tab */
#rotator .ui-tabs-selected a:link,
#rotator .ui-tabs-selected a:visited,
#rotator .ui-tabs-selected a:hover,
#rotator .ui-tabs-selected a:active {
	background:#fff url(http://www.ashfordsurgicalobesitycentre.com.au/2010/rotator/images/uiactivetabbg.gif) repeat-x bottom left;
	color:#333;
}

/* Content Panels */
#rotator .ui-tabs-panel {
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	clear:left;
	color:#000;
	padding:40px 15px 15px 350px;
	height:265px;
}

#rotator .ui-tabs-hide {
	display:none;
}

#rotator h2 {
	color:#900;
	font-weight:normal;
	margin:0;
	font-size:1.8em;
	line-height:1.2em;
}

#rotator p {
	font-size:1.1em;
	margin:.5em 0;
	color:#333;
}

#rotator .btn_get_started {
	float:left;
	height:30px;
	width:99px;
	text-indent:-9999em;
	margin-right:7px; 
	overflow:hidden; 
	background:transparent url(http://www.ashfordsurgicalobesitycentre.com.au/2010/rotator/images/getstarted.gif) no-repeat
}

#rotator .btn_learn_more {
	float:left;
	height:26px;
	font-size:.9em;
}

/* Background Images */
#rotator #fragment-1 {
	background:transparent url(http://www.ashfordsurgicalobesitycentre.com.au/2010/rotator/images/ashford3.jpg) no-repeat top left;
	padding:40px 20px 15px 350px;
}

#rotator #fragment-2 {
	background:transparent url(http://www.ashfordsurgicalobesitycentre.com.au/2010/rotator/images/lapband.jpg) no-repeat top left;
	padding:40px 10px 15px 350px;
}

#rotator #fragment-3 {
	background:transparent url(http://www.ashfordsurgicalobesitycentre.com.au/2010/rotator/images/patientsupport.jpg) no-repeat top right;
	padding:40px 370px 15px 30px;
}

#rotator #fragment-4 {
	background:transparent url(http://www.ashfordsurgicalobesitycentre.com.au/2010/rotator/images/paul_anderson3.jpg) no-repeat top right;
	padding:40px 370px 15px 10px;
}
