/* Stylesheet: Accessibility and cross-browser tools Modified On 2009-05-13 10:42:54 */
/* accessibility */
/* menu links accesskeys */
span.accesskey {
	text-decoration: none;
}
/* accessibility divs are hidden by default, text, screenreaders and such will show these */
.accessibility, hr {
/* position set so the rest can be set out side of visual browser viewport */
	position: absolute;
/* takes it out top side */
	top: -999em;
/* takes it out left side */
	left: -999em;
}
/* definition tags are also hidden, these are also used for accessibility menu links */
dfn {
	position: absolute;
	left: -1000px;
	top: -1000px;
	width: 0;
	height: 0;
	overflow: hidden;
	display: inline;
}
/* end accessibility */
/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
	position: absolute;
	left: -5000px;
	width: 4000px;
}
a.external {
/* make some room for the image, css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
	padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
	color: #18507C;
/* background image for the link to show wiki style arrow */
	background: url(https://www.frankii.com.au/uploads/NCleanBlue/external.gif) no-repeat 100% -100px;
}
a.external:visited {
	color: #18507C;
/* a different color can be used for visited external links */
/* Set the last 0 to -100px to use that part of the external.gif image for different color for active links external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.*/
	background: url(https://www.frankii.com.au/uploads/NCleanBlue/external.gif) no-repeat 100% -100px;
}
a.external:hover {
	color: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
	background: url(https://www.frankii.com.au/uploads/NCleanBlue/external.gif) no-repeat 100% 0;
	background-color: inherit;
}
/* end wiki style external links */
/* clearing */
/* clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item. We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience. Do not edit if you dont know what you are doing*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clear {
	height: 0;
	clear: both;
	width: 90%;
	visibility: hidden;
}
#main .clear {
	height: 0;
	clear: right;
	width: 90%;
	visibility: hidden;
}
* html>body .clearfix {
	display: inline-block;
	width: 100%;
}
* html .clear {
/* Hides from IE-mac \*/
	height: 1%;
	clear: right;
	width: 90%;
/* End hide from IE-mac */
}
/* end clearing */
/* Stylesheet: menu Modified On 2015-03-17 13:38:39 */
/* Vertical menu for the CMS CSS Menu Module */
/* by Alexander Endresen */


/* The wrapper determines the width of the menu elements */
#menuwrapper { 
   width: 156px; 
}


/* Unless you know what you do, do not touch this */ 
#primary-nav, #primary-nav ul { 
   list-style: none; 
   margin: 0px; 
   padding: 0px; 
   width: 100%; 
   margin-left: -1px;
   z-index:100;

}
#primary-nav ul { 
   position: absolute; 
   top: 0; 
   left: 100%; 
   display: none; 
}
#primary-nav li { 
   margin-bottom: -1px; 
   position: relative; 
}


/* Styling the basic apperance of the menu elements */
#primary-nav a {
	border: 0px solid #000000;
	display: block;
	color: #00AAD4;
	text-decoration: none;
	min-height:1em;
	padding-top: 6px;
	padding-right: 10px;
	padding-bottom: 6px;
	padding-left: 24px;
	font-size: 13px;
	font-weight: normal;
	text-transform: uppercase;
	background-color:transparent;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 6px;
	margin-left: 0px;
	background-image: url(/uploads/images/nav_bullet.png);
	background-repeat: no-repeat;
	background-position: left center;
}
#primary-nav li, #primary-nav li.menuparent {
	min-height:1em; /* Fixes IE7 bug*/
	
}


/* Styling the basic apperance of the active page elements (shows what page in the menu is being displayed) */
#primary-nav li.menuactive a, #primary-nav li.menuactive .menuactive a {
	color: #FFF;
	background-color: #354144;
  }

#primary-nav li.menuparent li a{
	background-image: url(/uploads/images/nav_bullet.png);
	background-position: left center;
	background-color: #354144;
  }
	
#primary-nav li.menuparent li a:hover{	background-image: url(uploads/images/navi-hover.png);
	color: #FFF;
	background-color: #354144;
	background-image: url(/uploads/images/nav_bullet.png);
	background-position: left center;
  }
#primary-nav li:hover a{color: #FFF;}


#primary-nav li.menuparent li a.menuactive{	background-image: url(uploads/images/navi-hover.png);
	color: #FFF;
	background-color: #354144;
	background-image: url(/uploads/images/nav_bullet.png);
	background-position: left center;
  }

#primary-nav li.menuparent li a.menuactive:hover{	background-image: url(uploads/images/navi.png);
	color: #FFF;
	background-color: #354144;
	background-image: url(/uploads/images/nav_bullet.png);
	background-position: left center;
  }


/* Styling the basic apperance of the menuparents - here styled the same on hover (fixes IE bug) */
#primary-nav li.menuparent, #primary-nav li.menuparent a:hover, #primary-nav li a:hover,
#primary-nav li.menuparent:hover, 
#primary-nav li.menuparenth {
	color: #FFF;
}


/* Styling the apperance of menu items on hover */
#primary-nav li:hover, 
#primary-nav li.menuh, 
#primary-nav li.menuparenth, 
#primary-nav li.menuactiveh { 
	color: #FFF;
	background-color: #354144;
}


/* The magic - set to work for up to a 3 level menu, but can be increased unlimited */
#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; 
}


#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; 
}


/* IE Hack, will cause the css to not validate */

#primary-nav li, #primary-nav li.menuparenth { _float: left; _height: 1%; }
#primary-nav li a { _height: 1%; }


/* section header */
#primary-nav li.sectionheader {
   border-left: 1px solid #006699; 
   border-top: 1px solid #006699; 
   font-size: 130%;
   font-weight: bold;
   padding: 1.5em 0 0.8em 0.5em;
   background-color: #fff;
   margin: 0;
   width: 100%;
}


/* separator */
#primary-nav li hr.separator {
   display:block;
   height: 0.5em;
   color: #abb0b6;
   background-color: #abb0b6;
   width: 100%;
   border:0;
   margin:0;
   padding:0;   
   border-top: 1px solid #006699;
   border-right: 1px solid #006699;
}

/********************
Footer Links
*********************/
* html div#menu_horiz {
	height: 1%;
}
div#menu_horiz {
	width: 100%;
	margin: 10px 0px 0px 0px;
	height: 24px;
}
div#menu_horiz ul {
	margin: 0;
	padding: 0;
	float: left;
}
div#menu_horiz li {
	float: left;
	list-style: none;
	margin: 0;
}
div#menu_horiz a, .sectionheader span {
	text-decoration: none;
	color: #FFF;
	display: block;
	font-size: 12px;
	background-position: center;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFF;
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 0;
	padding-right: 10px;
	line-height: 12px;
}
div#menu_horiz li a:hover {
	color: #707070;
	text-decoration: underline;
}
div#menu_horiz a.menuactive:hover {
	color: #707070;
}
div#menu_horiz li.menuactive a {
	text-decoration: none;
	color: #707070;
	display: block;
	font-size: 12px;
	background-position: center;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFF;
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 0;
	padding-right: 10px;
}
div#menu_horiz h3 {
	text-decoration: none;
	color: #707070;
	display: block;
	font-size: 12px;
	background-position: center;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFF;
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 0;
	padding-right: 10px;
	font-weight: normal;
}
/* Footer */
/* Stylesheet: theme Modified On 2012-11-05 15:38:34 */
body {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.5em;
	color: #000;
	background-color: #202A2C;
	margin: 0px;
	padding: 0px;
}
a {
	color: #336600;
	transition-duration: 0.5s;
	-moz-transition-duration: 0.5s; /* Firefox 4 */
	-webkit-transition-duration: 0.5s; /* Safari and Chrome */
	-o-transition-duration: 0.5s; /* Opera */ 
}
a:hover {
	color: #000000;
	transition-duration: 0.5s;
	-moz-transition-duration: 0.5s; /* Firefox 4 */
	-webkit-transition-duration: 0.5s; /* Safari and Chrome */
	-o-transition-duration: 0.5s; /* Opera */ 
}
img {
	border: 0px;
}
input, textarea, select {
	color: #000000;
	background-color: #E4E4E4;
	padding: 3px;
	border: 1px solid #000000;
}
.dotted-line-horizontal {
	background-image: url(/uploads/images/dotted_line_h.gif);
	background-repeat: repeat-x;
	background-position: center center;
}
.dotted-line-vertical {
	background-image: url(/uploads/images/dotted_line_v.gif);
	background-repeat: repeat-y;
	background-position: center center;
}
h1 {
	font-size: 24px;
	font-weight: normal;
	color: #00AAD4;
	line-height: 1.5em;
	display: block;
}
h2 {
	font-size: 18px;
	font-weight: normal;
	color: #000;
	line-height: 1.5em;
	display: block;
}
h3 {
	font-size: 16px;
	font-weight: normal;
	color: #757575;
	line-height: 1.5em;
	display: block;
}
.image-border {
	border: 1px solid #AFAFAF;
	padding: 3px;
}
.image-float-left {
	float: left;
	margin-right:20px;
	margin-bottom:14px;
}
.image-float-right {
	float: right;
	margin-left:20px;
	margin-bottom:14px;
}
#main-wrapper {
	width: 920px;
	margin: 0px auto;
	background-color: #FFFFFF;
	padding: 20px;
}
#header-wrapper {
	height: 140px;
	display: block;
	position: relative;
	margin: 0px auto;
	width: 100%;
	z-index: 1000;
	background-color: #354144;
	-webkit-border-top-left-radius: 12px;
	-webkit-border-top-right-radius: 12px;
	-moz-border-radius-topleft: 12px;
	-moz-border-radius-topright: 12px;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}
#logo-block {
	position:absolute;
	z-index:1;
	top: 17px;
	left: 15px;
}
#menu-block {
	text-align: left;
	top: 165px;
	width: 100%;
	z-index: 1;
	float: left;
	width: 140px;
	background-color: #354144;
	margin-top: 14px;
	padding: 15px;	
	-webkit-border-bottom-left-radius: 14px;
	-moz-border-radius-bottomleft: 14px;
	border-bottom-left-radius: 14px;
	min-height: 272px;
}
#top_content {float: right; width: 730px; margin-top: 14px;}
#number-block {
	position:absolute;
	left:682px;
	top:-56px;
	width:226px;
	height:115px;
	z-index:1;
	text-align:right;
	margin-top: 70px;
}
.phone-number {
	font-size: 26px;
	font-weight: normal;
	background-image: url(../uploads/images/phone.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 36px;
	color:#FFFFFF;
	line-height: 34px;
}
.phone-number img {
	vertical-align: middle;
}
#main-content-wrapper {
	display: block;
}
#main-banner-wrapper {
	width: 100%;
	margin: 0px auto;
}
#content-wrapper {
	width: 100%;
	margin: 0px auto;
	min-height: 200px;
	overflow: hidden;
	clear: both;
	padding: 20px 0px;
}
#content-wrapper ul {
	list-style-image: url(/uploads/images/bullet.png);
}
#footer-wrapper {
	height: 60px;
	background-color: #354144;
	width: 960px;
	margin: 0px auto;
	padding: 10px 0px;
	color: #707070;
	border-top-width: 4px;
	border-top-style: solid;
	border-top-color: #BAE4F3;
	margin-top: 4px;
	-webkit-border-bottom-right-radius: 12px;
	-webkit-border-bottom-left-radius: 12px;
	-moz-border-radius-bottomright: 12px;
	-moz-border-radius-bottomleft: 12px;
	border-bottom-right-radius: 12px;
	border-bottom-left-radius: 12px;
	margin-bottom: 20px;
}
#footer-inner-wrapper {
	width:960px;
	margin:auto;
	display: block;
}
.footer-text a {
	color: #707070;
	font-size: 11px;
	text-decoration: none;
}
.footer-text a:hover {
	color: #FFF;
	text-decoration: none;
}
a.footer-link:hover {
	color: #707070;
	text-decoration: underline;
}
#social {
	width:300px;
	height:30px;
	z-index:1;
	text-align: right;
	float: right;
	margin-right: 14px;
	margin-top: 4px;
}
#social img {
	vertical-align: middle;
	margin-left: 8px;
}
#copyright {

	left:1px;
	width:600px;
	height:30px;
	z-index:1;
	float: left;
	margin-left: 14px;
}
.search-input {
	background-image: url(../uploads/images/search-bkg.png);
	background-repeat: no-repeat;
	background-position: left center;
	height: 28px;
	width: 199px;
	border: none;
	float: right;
	background-color: transparent;
	padding-left: 10px;
	margin: 0px !important;
	padding-top: 0px !important;
	padding-right: 0px !important;
	padding-bottom: 0px !important;
}
.search-button {
	background-image: url(../uploads/images/search-button.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 28px;
	width: 30px;
	border: none;
	background-color: transparent;
	float: right;
	text-indent: -10000px;
	margin: 0px !important;
}

#tab_1 {
	background-color: #354144;
	color: #FFF;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-left-radius: 10px;
	color: #FFF;
	font-size: 24px;
	padding: 10px;
	display: block;
	width: 280px;
	float: left;
	margin-top: 10px;
}
#tab_1 img {float: left;}
#tab_1 span {margin-left: 16px; float: left; margin-top: 10px; line-height: 26px;}
#tab_2 {
	background-color: #00AAD4;
	color: #FFF;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-left-radius: 10px;
	color: #FFF;
	font-size: 24px;
	padding: 10px;
	display: block;
	width: 280px;
	float: left;
	margin: 0px 10px;
	margin-top: 10px;
}
#tab_2 img {float: left;}
#tab_2 span {margin-left: 20px; float: left; margin-top: 7px;  line-height: 26px;}
#tab_3 {
	background-color: #BAE4F3;
	color: #00AAD4;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-left-radius: 10px;
	padding: 10px;
	font-size: 18px;
	display: block;
	width: 280px;
	float: left;
	margin-top: 10px;
}
#tab_3 img {float: left;}
#tab_3 span {margin-left: 10px; float: left; margin-top: 5px;  line-height: 20px;}

.home_info_box {
	padding: 10px;
	background-color: #00AAD4;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-left-radius: 10px;
}
.home_info_box {
	color: #354144;
	font-size: 16px;
	font-weight: bold;
	text-align: left;
}
.home_info_box strong {
	color: #FFF;
	font-weight: bold;
}
.bullet_large {
	font-size: 16px;
	color: #354144;
	text-align: left;
	list-style-image: url(/uploads/images/bullet.png);
}

.bullet_large  li {margin: 6px 0px;}