@charset "utf-8";
/* CSS Document */
<!--
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #DBE9F3;
  background-image: none;
  color: #333333;
  font: normal normal normal 11px Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
  text-decoration: none;
  text-transform: none;
}
/* Commonly used to style page titles. */
h1 {
  color: #333333;
  font: normal normal normal 10px Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  text-decoration: none;
  text-transform: none;
}
/* Commonly used to style section titles. */
h2 {
  color: #333333;
  font: normal normal bold 13px Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  text-decoration: none;
  text-transform: none;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #000;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 10px;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  border-left: dashed 0px #5b9ccb;  /* Sets the left border properties for an element using shorthand notation */
  border-right: dashed 0px #5b9ccb; /* Sets the right border properties for an element using shorthand notation */
  margin: 15px auto 15px auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 900px;
}
#outerWrapper #header {
  background-color: #FFFFFF;
  background-image: url(http://www.oaansw.com.au/images/oaansw-topbanner.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  border-bottom: solid 2px #FFFFFF; /* Sets the bottom border properties for an element using shorthand notation */
  color: #FFFFFF;
  font: normal normal bold 28px Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  height: 148px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-decoration: none;
  text-transform: none;
}
#topmenu {
  background-color: #028D6C;
  background-image: url();
  background-position: top center;
  background-repeat: no-repeat;
  border-bottom: solid 2px #FFFFFF;
  color: #FFFFFF;
  font: normal normal normal 10pt Verdana, Arial, Helvetica, sans-serif;
  height: 34px;
  list-style-type: none;
  padding: 0px 0px 0px 0px;
  text-decoration: none;
  width: 900px;
  }
#outerWrapper #contentWrapper {
  background-color: #FFFFFF;
  background-image: url();
}
/* for understanding browsers */
.container {
width: auto;
padding: 0px;
border: 0px solid #FFFFFF;
min-height: 750px; 
height: auto;
}
/* for Internet Explorer */
/*\*/
* html .container {
height: 750px;
}
/**/
#outerWrapper #contentWrapper #sidebar {
  background-image: url(http://www.oaansw.com.au/images/bkg-content.gif);
  background-position: top left;
  background-repeat: y;
  border-right: dashed 1px #5b9ccb; /* Sets the right border properties for an element using shorthand notation */
  color: #FFFFFF;
  float: left;
  font: normal normal normal 10pt Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  height: 750px;
  line-height: 18px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-decoration: none;
  text-transform: none;
  width: 200px;
}
#outerWrapper #contentWrapper #sidebar h1 {
  color: #FFFFFF;
  font: normal normal normal 10pt Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  text-decoration: none;
  text-transform: none;
}
#outerWrapper #contentWrapper #sidebar h2 {
  color: #FFFFFF;
  font: normal normal normal 10pt Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  text-decoration: none;
  text-transform: none;
}
#outerWrapper #contentWrapper #sidebar a, #outerWrapper #contentWrapper #sidebar a:link {
  color: #FFFFFF;
  font: normal normal normal 10pt Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  text-decoration: none;
  text-transform: none;
}
#outerWrapper #contentWrapper #sidebar a:visited {
  color: #FFFFFF;
  font: normal normal normal 10pt Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  text-decoration: none;
  text-transform: none;
}
#outerWrapper #contentWrapper #sidebar a:hover {
  color: #FFFFFF;
  font: normal normal normal 10pt Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  text-decoration: none;
  text-transform: none;
}
#outerWrapper #contentWrapper #sidebar a:focus {
  color: #FFFFFF;
  font: normal normal normal 10pt Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  text-decoration: none;
  text-transform: none;
}
#outerWrapper #contentWrapper #sidebar a:active {
  color: #FFFFFF;
  font: normal normal normal 10pt Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  text-decoration: none;
  text-transform: none;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  background-image: url(http://www.oaansw.com.au/images/bkg-content.gif);
  background-position: top left;
  background-repeat: y;
  color: #333333;
  font: normal normal normal 11px Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  text-align: justify;
  line-height: 18px;
  margin: 0 0 0 200px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 30px 30px 30px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-decoration: none;
  text-transform: none;
}
#outerWrapper #contentWrapper #content h1 {
  color: #0B6CB1;
  font: normal normal bold 20px Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  text-decoration: none;
  text-transform: none;
}
#outerWrapper #contentWrapper #content h2 {
  color: #333333;
  font: normal normal bold 13px Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  text-decoration: none;
  text-transform: none;
}
#outerWrapper #contentWrapper #content a, #outerWrapper #contentWrapper #content a:link {
  color: #0B6CB1;
  font: normal normal bold 11px Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  text-decoration: none;
  text-transform: none;
}
#outerWrapper #contentWrapper #content a:visited {
  color: #0B6CB1;
  font: normal normal bold 11px Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  text-decoration: none;
  text-transform: none;
}
#outerWrapper #contentWrapper #content a:hover {
  color: #028D6C;
  font: normal normal bold 11px Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  text-decoration: none;
  text-transform: none;
}
#outerWrapper #contentWrapper #content a:focus {
  color: #028D6C;
  font: normal normal bold 11px Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  text-decoration: none;
  text-transform: none;
}
#outerWrapper #contentWrapper #content a:active {
  color: #028D6C;
  font: normal normal bold 11px Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  text-decoration: none;
  text-transform: none;
}
/* Contains the form area content.*/
#form-area {
  width: 640px;
  }
  
#form-area fieldset {
  border: none;
  }
							
#form-area input, #form-area textarea {
  padding: 5px;
  width: 400px;
  margin: 0px 0px 10px 0px;
  border: 1px solid #CCCCCC;
  }
							
#form-area textarea {
  height: 90px;
  }
							
#form-area textarea:focus, #form-area input:focus {
  border: 1px solid #0B6CB1;
  }
							
#form-area input.submit-button {
  width: 70px;
  float: left;
  background: #0B6CB1;
  color: #FFFFFF;
  border: 1px solid #E9E9E9; 
  padding: 5px;
  margin-left: 150px;
  cursor: pointer;
  }
							
label {
float: left;
text-align: right;
margin-right: 15px;
width: 135px;
padding-top: 5px;
}

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
  background-color: #028D6C;
  border-top: solid 2px #FFFFFF; /* Sets the top border properties for an element using shorthand notation */
  color: #FFFFFF;
  font: normal normal normal 11px Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  height: 105px;
  line-height: 18px;
  padding: 15px 15px 0px 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-decoration: none;
  text-transform: none;
}
#outerWrapper #footer a, #outerWrapper #footer a:link {
  color: #FFFFFF;
  font: normal normal normal 11px Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  text-decoration: none;
  text-transform: none;
}
#outerWrapper #footer a:visited {
  color: #FFFFFF;
  font: normal normal normal 11px Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  text-decoration: none;
  text-transform: none;
}
#outerWrapper #footer a:hover {
  color: #FFFFFF;
  font: normal normal normal 11px Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  text-decoration: underline;
  text-transform: none;
}
#outerWrapper #footer a:focus {
  color: #FFFFFF;
  font: normal normal normal 11px Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 18px;
  text-decoration: underline;
  text-transform: none;
}
#outerWrapper #footer a:active {
  color: #FFFFFF;
  font: normal normal normal 11px Verdana, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
  line-height: 14px;
  text-decoration: underline;
  text-transform: none;
}
-->