/* 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(http://www.anylec.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(http://www.anylec.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(http://www.anylec.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 2012-07-26 13:10:17 */
.clearb {
	clear:both;
}
#menuwrapper {
	padding:5px;
}
#primary-nav li li {
	width:200px;
}
#primary-nav, #primary-nav ul {
	list-style:none;
	margin:0px;
}
#primary-nav {
	display:table;
}
#primary-nav ul {
	-webkit-border-radius: 0px 0px 5px 5px;
	border-radius: 0px 0px 5px 5px;
	background:#124 !important;
	position:absolute;
	top:auto;
	display:none;
	z-index:1000;
}
#primary-nav ul ul {
	margin-top:1px;
	left:100%;
	top:0px;
}
#primary-nav > li {
	padding-right:2px;
	background:#BDE;
	float:left;
}
#primary-nav > li + li {
	margin-left:5px;
}
#primary-nav > li:hover {
	background:#124;
}
#primary-nav li li {
	margin:0;
	padding:0;
	float:none;
	position:relative;
	text-align:left;
}
#primary-nav li li + li {
	border-top:1px solid #134;
}
#primary-nav a, #primary-nav a:link, #primary-nav a:active, #primary-nav a:visited {
	padding:10px 30px;
	display:block;
	color:#000;
	font-size:14px;
	text-decoration:none;
	text-transform:uppercase;
}
#primary-nav li li a, #primary-nav li li a:link, #primary-nav li li a:active, #primary-nav li li a:visited {
	padding:9px 15px;
	font-size:12px;
	color:#FFF;
	line-height:normal;
	width:auto;
	text-transform:none;
}
#primary-nav li a.menuactive {
	color:#059;
}
#primary-nav > li.menuactive:hover a {
	color:#FFF;
}
#primary-nav li a:hover, #primary-nav li.menuh, #primary-nav li.menuparenth, #primary-nav li.menuactiveh {
	color:#FFF;
}
#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;
	background-color:#FFF;
}
#primary-nav li li a:hover {
	color:#BDE !important;
}
#primary-nav li li {
	float:left;
	clear:both;
}
#primary-nav li li a {
	height:1%;
}
/* Footer Links */

* html div#footerNav {
	/* hide ie/mac \*/
   height:1%;/* end hide */
}
div#footerNav {
	width:600px;
	float:left;
}
div#footerNav p {
	display:block;
}
div#footerNav ul {
	margin-top:7px;
}
div#footerNav li {
	list-style:none;
	font-size:11px;
	color:#777;
	line-height:12px;
	display:inline;
}
div#footerNav li + li {
	margin-left:9px;
	padding-left:10px;
	border-left:1px solid #FFF;
}
div#footerNav a:link, div#footerNav a:active, div#footerNav a:visited {
	color:#FFF;
	text-decoration:none;
}
div#footerNav li a:hover {
	color:#124;
}
div#footerNav a.activeparent:hover {
	color:#124;
}
div#footerNav li.activeparent a, div#footerNav li a.menuactive span {
	color:#124;
}
/* Stylesheet: theme Modified On 2012-07-30 09:48:44 */
/* reset.css */
html {margin:0;padding:0;border:0;}
body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section {margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;}
article, aside, dialog, figure, footer, header, hgroup, nav, section {display:block;}
body {line-height:1.5;background:white;}
table {border-collapse:separate;border-spacing:0;}
caption, th, td {text-align:left;font-weight:normal;float:none !important;}
table, th, td {vertical-align:middle;}
blockquote:before, blockquote:after, q:before, q:after {content:'';}
blockquote, q {quotes:"" "";}
a img {border:none;}
:focus {outline:0;}

/* global style */
body {
	font:12px/1.5em Arial, Helvetica, sans-serif;
	background:#0058a4;
	color:#555;
}
em {
	font-style:italic;
}
#holder {
	margin:0 auto;
	background:#FFF;
	width:940px;
}
#header {
	background:transparent url('../../images/bg_header01.jpg') no-repeat;
	width:940px;
	height:156px;
	position:relative;
}
#logo {
	margin:15px 0 0 10px;
	background:url('../../images/logo01.png') 50% 50% no-repeat;
	width:227px;
	height:122px;
	text-indent:-9999px;
	float:left;
	display:block;
}
#logo a {
	width:227px;
	height:122px;
	display:block;
}
#mainNav {
	background:#124;
	width:100%;
}
#banner {
	margin:0 auto;
	background:url('../../uploads/images/bg_banner01.jpg') 50% 50% no-repeat;
	width:940px;
	height:210px;
	overflow:hidden;
	position:relative;
}
#bannerTxt {
	width:300px;
	color:#059;
	font-size:18px;
	font-style:italic;
	line-height:24px;
	overflow:hidden;
	position:absolute;
	top:65px;
	left:370px;
	z-index:1;
}
#content {
	margin-top:3px;
	border-top:5px solid #BDE;
	width:940px;
	display:table;
}
#content h1, #content h2, #content h3, #content h4 {
	font-weight:normal;
	line-height:normal;
	text-transform:uppercase;
}
#content h1 {
	padding:0 0 10px;
	font-size:26px;
	color:#05A;
}
#content h2 {
	padding:10px 0;
	font-size:18px;
	color:#05A;
}
#content h3 {
	padding:10px 0;
	font-size:16px;
	color:#05A;
}
#content h4 {
	padding:10px 0;
	font-size:14px;
	color:#07C;
}
#content p {
	padding:10px 0;
}
#content a:link, #content a:active, #content a:visited {
	color:#000;
	text-decoration:underline;
}
#content a:hover {
	color:#07C;
}
#content ul, #content ol {
	padding:10px 0;
	list-style:outside;
}
#content li {
	margin:0 0 5px 25px;
	font-size:13px;
}
div#col-1 {
	margin:0 auto;
	padding:20px 0;
	width:900px;
	clear:both;
	display:table;
}
div#col-1 blockquote {
	padding:10px 0 5px 0;
	clear:both;
	color:#888;
	font-size:14px;
	font-style: italic;
	font-weight:normal;
}
#bottomLinks {
	margin:25px auto 0;
	width:900px;
	clear:both;
	display:table;
}
#bottomLinks div {
	padding-top:15px;
	border-top:5px solid #BDE;
	width:270px;
	float:left;
}
#bottomLinks div + div {
	margin-left:45px;
}
div#col-2, div#col-3 {
	margin:20px 0;
	display:block;
	float:left;
	position:relative;
}
div#col-2 {
	margin-right:25px;
	padding-right:25px;
	width:550px;
}
div#col-3 {
	width:300px;
}
#footerHolder {
	margin:0 auto;
	background:#0070c0;
	width:940px;
	clear:both;
}
#footer {
	margin:0 auto;
	padding:20px 15px;
	border-top:1px solid #0058a4;
	width:910px;
	font-size:11px;
	color:#FFF;
	clear:both;
	display:table;
}
#footerTxt {
	margin-top:10px;
	width:400px;
	line-height:normal;
	display:block;
	float:left;
	clear:left;
}
#footer a, #footer a:link, #footer a:active, #footer a:visited {
	color:#FFF;
	text-decoration:none;
}
#footer a:hover {
	color:#124;
}
#footerIcons {
	margin-top:3px;
	display:block;
	float:right;
}
#social {
	margin-top:10px;
	display:block;
	float:right;
	line-height:33px;
}
#social img, #footerIcons img {
	margin-left:10px;
}
/* forms */

.cms_form {
	margin:10px 0;
	width:300px;
}
.cms_form span {
	padding:0 0 5px;
	font-size:11px;
	font-style:italic;
	color:#999;
	display:block;
}
.cms_form fieldset > div {
	padding:3px 0;
}
.cms_form fieldset div label {
	font-weight:bold;
}
.cms_form fieldset div div label {
	font-size:11px;
	font-weight:normal;
}
.cms_form input[type=text], .cms_form input[type=password], .cms_form textarea {
	margin:5px 0;
	border:1px solid #999;
	background:#F9F9F9;
	width:300px;
	text-indent:10px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#333;
	display:block;
	float:left;
	clear:left;
}
.cms_form input[type=text], .cms_form input[type=password] {
	height:22px;
	line-height:22px;
}
.cms_form textarea {
	padding:10px 0 0;
	height:100px;
}
.cms_form select {
	margin:3px 0 0;
	border:1px solid #666;
	background:#EEE;
	width:307px;
	color:#666;
	display:block;
}
.cms_form input[type="checkbox"] {
	margin: 2px 4px 0 0;
	clear: left;
	display: block;
	float: left;
	padding: 0;
}
.cms_form input[type="checkbox"] + label {
	float: left;
	font-weight: normal;
	font-style:italic;
	width: 90%;
}
.captchapict {
	margin:0 0 5px;
	border:1px solid #999;
	clear:both;
}
.cms_submit {
	margin:5px 0 0;
	padding:0 15px;
	border:1px solid #999;
	background:#124;
	height:26px !important;
	font:12px/26px "Trebuchet MS", Arial, Helvetica, sans-serif;
	color:#FFF;
	text-transform:uppercase;
	float:left;
	cursor:pointer;
}
.cms_submit:hover {
	border:1px solid #666;
	background:#05A;
	color:#FFF;
}
div.error_message li {
	font-size:12px !important;
	font-weight:normal !important;
	margin-bottom:5px !important;
}