/* by Alexander Endresen and mark and Nuno */
#menu_vert {
/* no margin/padding so it fills the whole div */
	margin: 0;
	padding: 0;
}
.clearb {
/* needed for some browsers */
	clear: both;
}
#menuwrapper {

/* IE6 Hack */
	height: 1%;
	width: auto;
	margin: 0;
	padding: 0;
	z-index:99;
	
}
ul#primary-nav, ul#primary-nav ul {
/* remove any default bullets */
	list-style-type: none;
	margin: 0;
	padding: 0;
}

ul#primary-nav ul {
/* make the ul stay in place so when we hover it lets the drops go over the content below else it will push everything below out of the way */
	position: absolute;
/* top being the bottom of the li it comes out of */
	top: auto;
/* keeps it hidden till hover event */
	display: none;
/* same size but different color for each border */
	border-top: 1px solid #C8D3D7;
	border-right: 1px solid #C8D3D7;
	border-bottom: 1px solid #ADC0C7;
	border-left: 1px solid #A5B9C0;
}
ul#primary-nav ul ul {
/* now we move the next level ul down from the top a little for distinction */
	margin-top: 1px;
/* pull it in on the left, helps us not lose the hover effect when going to next level */
	margin-left: -1px;
/* keeps the left side of this ul on the right side of the one it came out of */
	left: 100%;
/* sets the top of it inline with the li it came out of */
	top: 0px;
}
ul#primary-nav li {
/* floating left will set menu items to line up left to right else they will stack top to bottom */
	float: left;
/* no margin/padding keeps them next to each other, the padding will be in the "a" */
	margin: 0px;
	padding: 0px;
}
#primary-nav li li {
/* Set the width of the menu elements at second level. Leaving first level flexible. */
	width: 220px;
/* removes any left margin it may have picked up from the first li */
	margin-left: 0px;
/* keeps them tight to the one above, no missed hovers */
	margin-top: -1px;
/* removes the left float set in first li so these will stack from top down */
	float: none;
/* relative to the ul they are in */
	position: relative;
}
/* set the "a" link look here */
ul#primary-nav li a {
/* specific font size, this could be larger or smaller than default font size */
	font-size: 1em;
/* make sure we keep the font normal */
	font-weight: normal;
/* set default link colors */
	color: #fff;
/* pushes out from the text, sort of like making links a certain size, if you give them a set width and/or height you may limit you ability to have as much text as you need */
	padding: 12px 15px 15px;
	display: block;
/* sets no underline on links */
	text-decoration: none;
}
ul#primary-nav li a:hover {
/* kind of obvious */
	background-color: transparent;
}
ul#primary-nav li li a:hover {
/* this is set to #000, black, below so hover will be white text */
	color: #FFF;
}
ul#primary-nav li a.menuactive {
	color: #000;
/* bold to set it off from non active */
	font-weight: bold;
/* set your image here */
	background:  url(http://noosafairmedicalcentre.com.au/uploads/ngrey/nav.png) repeat-x left 0px;
}
ul#primary-nav li a.menuactive:hover {
	color: #000;
/* keep it the same */
	font-weight: bold;
}
#primary-nav li li a.menuparent span {
/* makes it hold a shape */
	display: block;
/* set your image here, right arrow, 98% over from the left, 100% or 'right' puts it to far */
	background:  url(http://noosafairmedicalcentre.com.au/uploads/ngrey/parent.png) no-repeat 98% center;
}
/* gif for IE6, as it can't handle transparent png */
* html #primary-nav li li a.menuparent span {
/* set your image here, right arrow, 98% over from the left, 100% or 'right' puts it to far */
	background:  url(http://noosafairmedicalcentre.com.au/uploads/ngrey/parent.gif) no-repeat 98% center;
}
ul#primary-nav li ul a {
/* insures alignment */
	text-align: left;
	margin: 0px;
/* keeps it relative to it's container */
	position: relative;
/* less padding than first level no need for large links here */
	padding: 6px 3px 6px 15px;
/* if first level is set to bold this will reset this level */
	font-weight: normal;
/* first level is #FFF/white, we need black to contrast with light background */
	color: #000;
	border-top: 0 none;
	border-right: 0 none;
	border-left: 0 none;
}
ul#primary-nav li ul {
/* very lite grey color, by now you should know what the rest mean */
	background: #F3F5F5;
	margin: 0px;
	padding: 0px;
	position: absolute;
	width: auto;
	height: auto;
	display: none;
	position: absolute;
	z-index: 999;
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #374B51;
/*Info: The opacity property is  CSS3, however, will be valid just in CSS 3.1) http://jigsaw.w3.org/css-validator2) More Options chose CSS3 3) is full validate;)*/
	opacity: 0.95;
/* CSS 3 */
}
ul#primary-nav li ul ul {
/*Info: The opacity property is  CSS3, however, will be valid just in CSS 3.1) http://jigsaw.w3.org/css-validator2) More Options chose CSS3 3) is full validate;)*/
	opacity: 95;
/* CSS 3 */
}
/* Styling the appearance of menu items on hover */
#primary-nav li:hover,
#primary-nav li.menuh,
#primary-nav li.menuparenth,
#primary-nav li.menuactiveh {
/* set your image here, dark grey image */
	background:  url(http://noosafairmedicalcentre.com.au/uploads/ngrey/darknav.png) repeat-x left center;
	color: #000
}
/* The magic - set to work for up to a 3 level menu, but can be increased unlimited, for fourth level add
#primary-nav li:hover ul ul ul,
#primary-nav li.menuparenth ul ul ul,
*/
#primary-nav ul,
#primary-nav li:hover ul,
#primary-nav li:hover ul ul,
#primary-nav li.menuparenth ul,
#primary-nav li.menuparenth ul ul {
	display: none;
}
/* for fourth level add
#primary-nav ul ul ul li:hover ul,
#primary-nav ul ul ul li.menuparenth ul,
*/
#primary-nav li:hover ul,
#primary-nav ul li:hover ul,
#primary-nav ul ul li:hover ul,
#primary-nav li.menuparenth ul,
#primary-nav ul li.menuparenth ul,
#primary-nav ul ul li.menuparenth ul {
	display: block;
}
/* IE6 Hacks */
#primary-nav li li {
	float: left;
	clear: both;
}
#primary-nav li li a {
	height: 1%;
}
/* Stylesheet: Inner-5 : CSSMenu - Horizontal Modified On 2014-08-22 03:18:42 */
/*****************
basic layout 
*****************/

body {
   
background: #ddd url(http://noosafairmedicalcentre.com.au/uploads/Inner-5/bg-wrapper.jpg) repeat-x;

}
#header {
    width:900px;
    height:220px;
    margin:0 auto;
    background:url(http://noosafairmedicalcentre.com.au/uploads/Inner-5/header.jpg) no-repeat;
}
#rotator{


}
#content-wrapper {

    width:900px;
    margin:0 auto;
    background-color:#FFF;
    background:url(http://noosafairmedicalcentre.com.au/uploads/Inner-5/bg-content.jpg);
    overflow:visible;
margin-top:5px;
}
#col-wrapper {

    width:855px;
    overflow:visible;
    margin-left:23px;
padding-top:10px;
    
}
#left-col {
    width:228px;
    float:left;
    padding-top:0px;
    list-style-image: url(http://noosafairmedicalcentre.com.au/uploads/Inner-5/pointer.jpg);
    overflow:visible;
 margin-left: -60px;
      
}



#left-col ul li{
    margin-top:5px;
    
}
#mid-col {
    margin-left:235px;
    border-left: dotted 1px #dddddd;
    padding-left:10px;
    overflow:visible;
min-height:850px;

}
#footer {
    clear:both;
    width:900px;
    height:130px;
    margin:0 auto;
    background:url(http://noosafairmedicalcentre.com.au/uploads/Inner-5/footer.jpg) no-repeat;
}
#gutter {
    width:900px;
    margin:0 auto;
    min-height:20px;
    padding:5px;
    margin-top:-45px;
    padding-left:70px;
color:#000;
}
div#feature { /* this is the container for the feature image(s) rotating images*/
    display:block;
    width:228px;
    height:143px;
    padding: 0px;
}


/********************
CONTENT STYLING
*********************/
body {
	font-size: 12px;
	line-height:16px;
	font-family:Tahoma, Geneva, sans-serif;
}
img {
	border: 0;
}
div#mid-col {
	line-height: 17px;
	color:#333333;
}

#gutter {
	color:#fff;
	font-size:11px;
	padding-bottom:10px;
	line-height: 18px;
}
#gutter a, #gutter a:visited {
	color:#ffffff; /* needed becouse footer link would be same color as background otherwise */
	text-decoration:none;
}
div#footer a:hover {
	text-decoration:underline;
}
/* HEADINGS */

div#mid-col h1 {
	font-size: 2em;
	line-height: 2.5em;
	margin: 0;
	color:#333;
}
div#mid-col h2, div#left-col h2{
	font-size: 1.8em;
	line-height: 2.5em;
	margin: 0;
	color:#000;;
	font-family:"Trebuchet MS";
font-weight:normal;
}
div#left-col h2{
color:#666;
font-size: 1.4em;
}

div#mid-col h3 {
	font-size: 1.1em;
	line-height: 2.5em;
	margin: 0;
	color:#306EB2;
	font-family:"Trebuchet MS";
}
div#mid-col h4 {
	font-size: 0.8em;
	line-height: 2.5em;
	margin: 0;
	color:#306EB2;
	font-family:"Trebuchet MS";
}
div#mid-col h5 {
	font-size: 0.5em;
	line-height: 2.5em;
	margin: 0;
	color:#306EB2;
	font-family:"Trebuchet MS";
}
div#mid-col h6 {
	line-height: 2.5em;
	margin: 0;
	color:#306EB2;
	font-family:"Trebuchet MS";
}
/* END HEADINGS */


/* TEXT */

p {
	margin-top: 8px;
	margin-bottom: 8px;
	text-align:justify;
	line-height:18px;
	font-family:Tahoma, Geneva, sans-serif;
}
blockquote {
	border-left: 10px solid #ddd;
	margin-left: 10px;
}
strong, b {
	/* explicit setting for these */

   font-weight: bold;
}
em, i {
	/* explicit setting for these */

   font-style:italic;
}
/* Wrapping text in <code> tags. Makes CSS not validate */

code, pre {
	white-space: pre-wrap;       /* css-3 */
	white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
	white-space: -pre-wrap;      /* Opera 4-6 */
	white-space: -o-pre-wrap;    /* Opera 7 */
	word-wrap: break-word;       /* Internet Explorer 5.5+ */
	font-family: "Courier New", Courier, monospace;
	font-size: 1em;
}
pre {
	border: 1px solid #000;  /* black border for pre blocks */
	background-color: #ddd;
	margin: 0 1em 1em 1em;
	padding: 0.5em;
	line-height: 1.5em;
	font-size: 90%;
}

/* END TEXT */

/* LISTS */

/* lists in content need some margins to look nice */


div#mid-col ul li, div#main ol li {
	margin: 0 0 0.25em 3em;
}
/* definition lists topics on bold */

div#mid-col dl dt {
	font-weight: bold;
	margin: 0 0 0 1em;
}
div#mid-col dl dd {
	margin: 0 0 1em 1em;
}
div#mid-col dl {
	margin-bottom: 2em;
	padding-bottom: 1em;
	border-bottom: 1px solid #c0c0c0;
}
/* END LISTS */

/************************************************************
 **************** OVERIDE THE MENU ************************
*************************************************************/


ul#primary-nav {}
#menu_vert{
	height:35px;	
	width:900px;
	margin:auto;
	background-color: #0781CA;
	}
#menuwrapper{}
ul#primary-nav li a {
	display: block;
	text-decoration: none;
	color: #ffffff;
	font-weight: bold;
	border-right: 1px solid #fff;	
    	padding:10px 10px 10px 10px;
}
ul#primary-nav li a.menuactive,
ul#primary-nav li a:hover{
	color:#fff;
	background:#B9E3FD;
	}
	

/* Stylesheet: Inner-5 Modified On 2014-08-22 03:27:28 */
