/* Stylesheet: Accessibility and cross-browser tools Modified On 2012-07-27 13:18:57 */
/* 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.wwbmxclub.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.wwbmxclub.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.wwbmxclub.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-27 13:18:50 */
/* Horizontal menu for the CMS CSS Menu Module */
/* by Alexander Endresen */

#menu_vert {
	margin-left:1px;
	margin-right:1px;
}
/* The wrapper clears the floating elements of the menu */

/* Fix for Opera 8 */
.clearb {
	clear:both;
}
#menuwrapper {
	/* Fix for Opera 8 */ 
   /*   overflow:hidden; 
   background-color:#ECECEC; removed 
   border-bottom:1px solid #C0C0C0; removed*/
   width:100%;
}
/* Set the minimum flexible width of the menu elements at second level. Leaving first level flexible. */
#primary-nav li li {
	width:200px;
}
/* Unless you know what you do, do not touch this */ 
#primary-nav, #primary-nav ul {
	list-style:none;
	margin:0px;
}
#primary-nav {
	padding:0 0px;
	display:table;
}
#primary-nav ul {
	margin:0;
	border-top:0;
	position:absolute;
	top:auto;
	display:none;
	z-index:1000;
}
#primary-nav ul ul {
	margin-top:1px;
	left:100%;
	top:0px;
}
#primary-nav li {
	float:left;
}
#primary-nav li li {
	margin:0;
	padding:0;
	background:#333;
	float:none;
	position:relative;
	text-align:left;
}
/* Styling the basic apperance of the menu elements */
#primary-nav a, #primary-nav a:link, #primary-nav a:active, #primary-nav a:visited {
	color: #030303;
    display: block;
    font-size: 14px;
    line-height: 15px;
    padding: 10px 30px;
    text-decoration: none;
}
#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;
	background:#000;
	font-size:12px;
	color:#FFF;
	text-transform:none;
	width:auto;
	border-right:none;
}
#primary-nav li li a:hover {
	background-color:#707070;
}
#primary-nav li, #primary-nav li.menuparent {
/*background-color:#ececec; removec*/
}
/* Styling the basic apperance of the active page elements (shows what page in the menu is being displayed) */
#primary-nav li a.menuactive {
	background-color:#fbf106;
}
/* Styling the basic apperance of the menuparents - here styled the same on hover (fixes IE bug) */
#primary-nav ul li.menuparent, #primary-nav ul li.menuparent:hover, #primary-nav ul li.menuparenth {
	/* arrow for menuparents */
   background-position:center right;
	background-repeat:no-repeat;
}
/* Styling the apperance of menu items on hover */

#primary-nav li a:hover, #primary-nav li.menuh, #primary-nav li.menuparenth, #primary-nav li.menuactiveh {
	background-color:#fbf106;
}
/* The magic - set to work for up to a 3 level menu, but can be increased unlimited */

/* 
just add 
#primary-nav li:hover ul ul, 
#primary-nav li.menuparenth ul ul ul,
for fourth level 
*/
#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;
}
/* add 
#primary-nav ul ul ul li:hover ul, 
#primary-nav ul ul ul li.menuparenth ul,
for fourth level
*/
#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;
}
/* IE Hacks */
#primary-nav li li {
	float:left;
	clear:both;
	border-right:none;
}
#primary-nav li li a {
	height:1%;
}
/********************
Footer Links
*********************/

/* hack for Internet Explorer */
* html div#footerNav {
	/* hide ie/mac \*/
   height:1%;/* end hide */
}
/* 
background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
*/
div#footerNav {
float: left;
    padding-left: 12px;
    padding-top: 21px;
}
/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#footerNav ul {
	margin:0;
	padding:0;
}
/* menu list items */
div#footerNav li {
	margin-right:10px;
	padding-right:10px;
	border-right:1px solid #FFF200;
	float:left; /* makes the list horizontal */
	list-style:none; /* hides the list bullet */
	font-size:12px;
	color:#FFF;
	line-height:12px;
}
/* the links, that is each list item */
div#footerNav a:link, div#footerNav a:active, div#footerNav a:visited {
	color:#fff200;
	text-decoration:none; /* no underline for links */
	display:block; /* IE has problems with this, fixed above */
}
/* hover state for links */
div#footerNav li a:hover {
	color:#FFF;
}
div#footerNav a.activeparent:hover {
	color:#FFF;
}
/* active parent, that is the first-level parent of a child page that is the current page */
div#footerNav li.activeparent a, div#footerNav li a.menuactive span {
	color:#FFF;
}

/* Footer */
/* Stylesheet: theme Modified On 2012-08-01 17:30:17 */
/* 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;
}


body {
	padding:0 0;
	font:12px/1.5em, Arial, Helvetica, sans-serif;
	background-color:#fbf105;
	color:#FFF;
}
em {
	font-style:italic;


}


/*Template Start*/

#holder {
    background-color: #000;
    font-family: Arial,Helvetica,sans-serif;
    margin: 0 auto;
    padding: 10px 10px 0;
    position: relative;
    width: 940px;
}
#header{
    background: url("../../images/back_home.jpg") no-repeat scroll center top transparent;
    height: 256px;
    position: relative;
    width: 100%;
}
#logo {
    display: block;
    float: left;
    height: 138px;
    margin-left: 14px;
    margin-top: 17px;
    text-indent: -9999px;
    width: 138px;
}

#logo a {
    width: 138px;
    height: 138px;
	display:block;
}
#moto {
	font-size:18px;
	color:#FFF;
	display:block;
	position:absolute;
	left:30px;
	top:150px;
}
#headerTxt {
	font-size:26px;
	color:#FD0;
	line-height:normal;
	text-align:center;
	display:block;
	position:absolute;
	right:30px;
	top:80px;
}
#headerTxt p {
	text-shadow: 1px 1px 3px #333; /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
}
#mainNav {
	background-color: #BABABA;
    bottom: 0;
    left: 0;
    margin: 0;
    position: absolute;
    width: 100%;
}

#banner {
margin: 0px auto 0px;
position: relative;
width: 900px;
padding: 60px 20px 0px 20px;
background: #1F1F1F url('/uploads/images/banner_home.jpg') left top no-repeat;
height: 210px;
overflow: hidden;
}

#banner IMG {
border: 7px solid #bababa;
margin-left: 21px;
float: right;
}

#content {
    display: table;
    width: 940px;
}
#content h1, #content h2, #content h3, #content h4 {
	font-weight:normal;
	font-family:Arial;
}
#content h1, .contactform legend {
    color: #FFF;
    font-size: 24px;
    line-height: 28px;
    padding: 10px 0 10px 0;
	text-transform:uppercase;
}
#content h2 {
	color: #FFF;
    display: block;
    font-size: 16px;
    font-weight: bold;
    line-height: 26px;
    margin: 0 0 5px;
    padding: 10px 0;
	text-transform:uppercase;
}
#content h3 {
	padding:10px 0;
	font-size:18px;
	color:#FFF;
}
#content h4 {
	margin:5px 0;
	padding:5px 10px;
	border:1px solid #DDD;
	background:#F1F1F1;
	font-size:16px;
}
#content p {
	padding:10px 0;
	font-size:13px;
}
table.globalTable {
	margin:10px auto;
	border:1px solid #CCC;
	width:80%;
	-webkit-box-shadow: 0px 0px 4px #CCC; /* Saf3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
	-moz-box-shadow: 0px 0px 4px #CCC; /* FF3.5 - 3.6 */
	box-shadow: 0px 0px 4px #CCC; /* Opera 10.5, IE9, FF4+, Chrome 6+, iOS 5 */
}
table.globalTable tr.odd td {
	background:#FAFAFA;
}
table.globalTable th {
	padding:5px 0;
	border-right:1px solid #CCC;
	border-bottom:1px solid #CCC;
	background:#6b3abd;
	text-align:center;
	font-size:13px;
	font-weight:bold;
}
table.globalTable td {
	padding:5px;
	border-right:1px solid #DDD;
	border-bottom:1px solid #DDD;
}
#content a:link, #content a:active, #content a:visited {
	color:#FC0;
	text-decoration:none;
}
#content a:hover {
	color:#999;
	text-decoration:underline;
}
#content ul, #content ol {
    list-style: disc inside none;
    padding: 10px 15px 10px 0;
}
#content li {
	color:#666;
}
div#col-1 {
    background-position: 0 2px;
    background-repeat: no-repeat;
    clear: both;
    display: table;
    margin: 0 auto;
    width: 940px;
}
div#col-1 blockquote {
	padding:10px 0 5px 0;
	clear:both;
	color:#888;
	font-size:20px;
	font-style: italic;
	font-weight:normal;
}
div#col-1 .module_home img {
    border: 1px solid #BEBEBE;
    padding: 4px;
}

div#col-1 .module_home .captcha img{
border: 1px solid #BEBEBE;
    float: left;
    margin-bottom: 15px;
    padding: 4px;
    margin-right:12px;
}

.captcha {
font-size:12px;
}

div#col-1 .module_home .service img {
	background-color:#000;
	border:none;
    padding: 4px;
}

div#col-1 #col-2 img {
	width:200
}


div#col-2, {
	display:block;
	float:left;
	position:relative;
}
div#col-2 {
	width:678px;
}

#footerHolder {
    background-color: #000;
    clear: both;
    margin: 0 auto;
    padding: 0 10px 10px;
    position: relative;
    width: 940px;;
}
#footer {
    background-color: #000;
    clear: both;
    color: #000000;
    display: block;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 14px;
    margin: 0 auto;
    min-height: 66px;
    overflow: hidden;
    padding-bottom: 15px;
    width: 940px;
}
#footerTxt {
	margin-top:10px;
	width:100%;
	text-align:left;
	line-height:normal;
	display:block;
	float:left;
	clear:left;
	padding:1px 12px;
	font-size:12px;
	color:#FFF;
}
#footer a, #footer a:link, #footer a:active, #footer a:visited {
	text-decoration:none;
	color:#fff;
}
#footer a:hover {
	text-decoration:underline;
}
#social {
	display: block;
    line-height: 33px;
    position: absolute;
    right: 21px;
    top: 15px;
}
#social img {
	margin-left:10px;
}
.formbuilderform td {
	padding:3px;
	font-weight:bold;
}
.formbuilderform input, .formbuilderform textarea {
	width:250px;
}
.formbuilderform select {
	width:257px;
}
.cms_submit {
	width:100px !important;
}

/* EXTRAS */

.module_home {
background-color: #000;
    margin-top: 1px;
    overflow: hidden;
    padding: 29px 38px 5px;
	padding-bottom:25px;
	border-bottom:2px solid #fff200;
}


#content a.service {
border-right: 1px dotted #FFF;
    display: block;
    float: left;
    margin-right: 21px;
    padding-right: 26px;
    text-decoration: none;
    width: 247px;
}

.banner_txt {
    font-size: 20px;
    left: 28px;
    line-height: 24px;
    padding: 0;
    position: absolute;
    top: 38px;
    width: 284px;
}

#content .banner_txt h1{
	font-size:18px;
}

#content .banner_txt p{
	font-size:13px;
	line-height:18.15px;
	color:#fff;
}

#services {
    display: block;
    float: left;
    margin-bottom: 20px;
    padding-top: 8px;
}

.about_home {
	float:right;
	width:200px;
}

#content .about_home h2{
	text-transform:uppercase;
	color:#0072bc;
}

#content .about_home li{
    font-size: 12px;
    margin-bottom: 8px;
}

#home_wrapper {
    float: left;
    margin-top: 12px;
    width: 100%;
}

h2.title {
	color: #fbf105 !important;
    font-size: 18px;
    line-height: 29px;
    margin-bottom: 7px;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
    width: 218px;
}

.service .txt {
    color: #FFF;
    float: left;
    font-size: 12px;
    line-height: 14pt;
    margin-top: 8px;
}

.service .link {
    color: #fbf105;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 11px;
    padding: 5px 0px;
    text-transform: none;
	margin-top:15px;
	float:left;
width:100%;
}

.service .link:hover {
	text-decoration:underline;
}

.formbuilderform td {
	padding:3px;
	font-weight:bold;
}
.formbuilderform input, .formbuilderform textarea {
	width:250px;
}
.formbuilderform select {
	width:257px;
}
.cms_submit {
	width:100px !important;
}

#phone {
	color: #FFFFFF;
    font-size: 27px;
    height: 32px;
    line-height: 22px;
    padding-left: 37px;
    position: absolute;
    right: 38px;
    text-align: left;
    text-transform: uppercase;
    top: 104px;
}

#phone span{
	font-size:21px;
	color:#e14ecc;
}

.banner_text {
    left: 52px;
    position: absolute;
    top: 60px;
    width: 400px;
}

#content .banner_text p {
    font-size: 18px;
    line-height: 27px;
	color:#636363;
}

.contactform {
    border-left: 1px solid #999999;
    float: right;
    margin-top: 21px;
    overflow: hidden;
    padding-left: 30px;
    width: 458px;
margin-bottom:25px;
}

.contactform label{
	width:130px;
	display:block;
	float:left;
        font-size:12px
}

.contactform input{
	width:319px;
	display:block;
font-size:12px
}
.contactform input[type="checkbox"]{
float: left;
    margin-left: 130px;
    width: auto;
}

.contactform div{
    display: block;
    float: left;
    margin-bottom: 5px;
    width: 100%;
}

.label {
	font-size:11px;
	font-style:italic;
	color:#666;
}

#content .special_info{
    background: url("../../images/back_special.jpg") repeat-x scroll left bottom #7aba3d;
	font-family:Georgia;
	font-size:21px;
	font-weight:bold;
	padding-left:18px;
	padding-right:18px;
	color:#fff;
	margin-bottom:6px;
}

#m0a13dmoduleform_1 {
	float:right;
}

#m0a13dmoduleform_1 .formbuilderform td {
	font-weight:normal;
}

.remotes {
width:100%;
float:left;
}

.box {
float: left;
    width: 215px;
height:309px;
}