@charset "UTF-8";
body {
	background: #FFFFFF; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}
#container/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
  {
	width: 95%;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	min-width: 950px;
}
#topRule {
	background-color: #EA7616;
	height: 8px;
	width: 100%;
}

/* Orange Theme styling */
.orangeTheme #topRule {
	background-color: #F85E00;
	height: 8px;
	width: 100%;
}
.orangeTheme   #header {
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	padding-bottom: 0px;
	color: #FFFFFF;
	background-color: #63767D;
	background-image: none;
}
.orangeTheme #navPanel {
	font-size: 10px;
	color: #FFFFFF;
	background-color: #000000;
	clear: left;
	width: 500px;
	padding-top: 10px;
	padding-left: 20px;
	padding-bottom: 5px;
}
.orangeTheme #navPanel a {
	color: #FFFFFF;
	text-decoration: none;
}
.orangeTheme #navPanel a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
.orangeTheme #navPanel h1 {
	color: #FFFFFF;
	font-size: 16px;
}
.orangeTheme #categoryPanel {
	color: #FFFFFF;
	background-color: #EA7616;
	clear: left;
	width: 98%;
	padding-top: 10px;
	padding-left: 2%;
	padding-bottom: 0px;
}
.orangeTheme  #categoryPanel  h2 {
	color: #FFFFFF;
	font-size: 15px;
}
.orangeTheme #searchBox {
	float: right;
	height: 60px;
	width: 375px;
	background-image: url(images/homeSearchOrangeTheme.gif);
	background-repeat: no-repeat;
	padding-top: 20px;
	padding-left: 25px;
	color: #666666;
	font-size: 10px;
}
.orangeTheme #mainContent {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	color: #000000;
}
.orangeTheme a {
	color: #EA7616;
	text-decoration: none;
}
.orangeTheme  a:hover {
	color: #EA7616;
	text-decoration: underline;
}
/* END of Orange Theme styling */

/* cyan Theme styling */
.cyanTheme #topRule {
	background-color: #F85E00;
	height: 8px;
	width: 100%;
}
.cyanTheme   #header {
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	padding-bottom: 0px;
	color: #FFFFFF;
	background-color: #71767F;
	background-image: none;
}
.cyanTheme #navPanel {
	font-size: 10px;
	color: #FFFFFF;
	background-color: #000000;
	clear: left;
	width: 500px;
	padding-top: 10px;
	padding-left: 20px;
	padding-bottom: 5px;
}
.cyanTheme #navPanel a {
	color: #FFFFFF;
	text-decoration: none;
}
.cyanTheme #navPanel a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
.cyanTheme #navPanel h1 {
	color: #FFFFFF;
	font-size: 16px;
}
.cyanTheme #categoryPanel {
	color: #FFFFFF;
	background-color: #04A9E4;
	clear: left;
	width: 98%;
	padding-top: 10px;
	padding-left: 2%;
}
.cyanTheme  #categoryPanel  h2 {
	color: #FFFFFF;
	font-size: 15px;
}
.cyanTheme #searchBox {
	float: right;
	height: 60px;
	width: 375px;
	background-image: url(images/homeSearchBlueTheme.gif);
	background-repeat: no-repeat;
	padding-top: 20px;
	padding-left: 25px;
	color: #666666;
	font-size: 10px;
}
.cyanTheme #mainContent {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	color: #000000;
}
.cyanTheme a {
	color: #04A9E4;
	text-decoration: none;
}
.cyanTheme  a:hover {
	color: #04A9E4;
	text-decoration: underline;
}
/* END of Cyan Theme styling */


/* Red Theme styling */
.redTheme #topRule {
	background-color: #162736;
	height: 8px;
	width: 100%;
}
.redTheme   #header {
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	padding-bottom: 0px;
	color: #FFFFFF;
	background-color: #85979D;
	background-image: none;
}
.redTheme #navPanel {
	font-size: 10px;
	color: #FFFFFF;
	background-color: #0F2736;
	clear: left;
	width: 500px;
	padding-top: 10px;
	padding-left: 20px;
	padding-bottom: 5px;
}
.redTheme #navPanel a {
	color: #FFFFFF;
	text-decoration: none;
}
.redTheme #navPanel a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
.redTheme #navPanel h1 {
	color: #FFFFFF;
	font-size: 16px;
}
.redTheme #categoryPanel {
	color: #FFFFFF;
	background-color: #CE1C2D;
	clear: left;
	width: 100%;
	padding-top: 0px;
}
.redTheme  #categoryPanel  h2 {
	color: #FFFFFF;
	font-size: 15px;
}
.redTheme #searchBox {
	float: right;
	height: 60px;
	width: 375px;
	background-image: url(images/homeSearchRedTheme.gif);
	background-repeat: no-repeat;
	padding-top: 20px;
	padding-left: 25px;
	color: #666666;
	font-size: 10px;
}
.redTheme #mainContent {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 10px;
	color: #000000;
	padding-right: 0px;
	padding-left: 20px;
}
.redTheme #mainContentdock {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 10px;
	color: #000000;
	padding-right: 0px;
	padding-left: 20px;
	height: 350px;
}
.redTheme a {
	color: #CE1C2D;
	text-decoration: none;
}
.redTheme  a:hover {
	color: #CE1C2D;
	text-decoration: underline;
}
.redPanelbckgnd {
	background-image: url(images/newFloor.jpg);
	background-repeat: no-repeat;
	background-position: right center;
	width: 350px;
}
.redPanelcentre {
	background-color: #0F2736;
	width: 125px;
	border-right-width: 2px;
	border-left-width: 2px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #FFFFFF;
	border-left-color: #FFFFFF;
}
/* END of Red Theme styling */

/* Brown Theme styling */
.brownTheme #topRule {
	background-color: #162736;
	height: 8px;
	width: 100%;
}
.brownTheme   #header {
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	padding-bottom: 0px;
	color: #FFFFFF;
	background-color: #85979D;
	background-image: none;
}
.brownTheme #navPanel {
	font-size: 10px;
	color: #FFFFFF;
	background-color: #0F2736;
	clear: left;
	width: 500px;
	padding-top: 10px;
	padding-left: 20px;
	padding-bottom: 5px;
}
.brownTheme #navPanel a {
	color: #FFFFFF;
	text-decoration: none;
}
.brownTheme #navPanel a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
.brownTheme #navPanel h1 {
	color: #FFFFFF;
	font-size: 16px;
}
.brownTheme #categoryPanel {
	color: #FFFFFF;
	background-color: #B6512F;
	clear: left;
	width: 100%;
	padding-top: 0px;
}
.brownTheme  #categoryPanel  h2 {
	color: #FFFFFF;
	font-size: 15px;
}
.brownTheme #searchBox {
	float: right;
	height: 60px;
	width: 375px;
	background-image: url(images/homeSearchRedTheme.gif);
	background-repeat: no-repeat;
	padding-top: 20px;
	padding-left: 25px;
	color: #666666;
	font-size: 10px;
}
.brownTheme #mainContent {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 10px;
	color: #000000;
	padding-right: 0px;
	padding-left: 20px;
}
.brownTheme #mainContentdock {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 10px;
	color: #000000;
	padding-right: 0px;
	padding-left: 20px;
	height: 350px;
}
.brownPanelright {
	width: 450px;
	background-color: #0F2736;
	border-right-width: 2px;
	border-left-width: 2px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #FFFFFF;
	border-left-color: #FFFFFF;
}
.brownTheme a {
	color: #B6512F;
	text-decoration: none;
}
.brownTheme  a:hover {
	color: #B6512F;
	text-decoration: underline;
}
/* END of Brown Theme styling */


/* Blue Theme styling */
.blueTheme #topRule {
	background-color: #F85E00;
	height: 8px;
	width: 100%;
}
.blueTheme   #header {
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	padding-bottom: 0px;
	color: #FFFFFF;
	background-color: #71767F;
	background-image: none;
}
.blueTheme #navPanel {
	font-size: 10px;
	color: #FFFFFF;
	background-color: #000000;
	clear: left;
	width: 500px;
	padding-top: 10px;
	padding-left: 20px;
	padding-bottom: 5px;
}
.blueTheme #navPanel a {
	color: #FFFFFF;
	text-decoration: none;
}
.blueTheme #navPanel a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
.blueTheme #navPanel h1 {
	color: #FFFFFF;
	font-size: 16px;
}
.blueTheme #categoryPanel {
	color: #FFFFFF;
	background-color: #27559F;
	clear: left;
	width: 98%;
	padding-top: 10px;
	padding-left: 2%;
}
.blueTheme  #categoryPanel  h2 {
	color: #FFFFFF;
	font-size: 15px;
}
.blueTheme #searchBox {
	float: right;
	height: 60px;
	width: 375px;
	background-image: url(images/homeSearchBlueTheme.gif);
	background-repeat: no-repeat;
	padding-top: 20px;
	padding-left: 25px;
	color: #666666;
	font-size: 10px;
}
.blueTheme #mainContent {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	color: #000000;
}
.blueTheme a {
	color: #CE1C2D;
	text-decoration: none;
}
.blueTheme  a:hover {
	color: #CE1C2D;
	text-decoration: underline;
}
/* END of Blue Theme styling */


#header  {
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	padding-bottom: 0px;
	color: #FFFFFF;
	background-color: #191B2E;
	background-image: url(images/homeHeaderbckgnd.jpg);
	background-repeat: repeat-x;
} 
#menu {
	float: left;
	padding-top: 20px;
	padding-left: 10px;
}
#searchBox {
	float: right;
	width: 375px;
	background-image: url(images/homeSearch.gif);
	background-repeat: no-repeat;
	padding-top: 20px;
	padding-left: 25px;
	color: #666666;
	font-size: 10px;
	height: 70px;
	clear: both;
}
.pollyAnim {
	margin-right: 50px;
	margin-top: 10px;
}
#topMenu {
}
#topMenu a {
	color: #FFFFFF;
	text-decoration: none;
}
#topMenu a:hover {
	text-decoration: underline;
}
#mainContentcover  {
	background-color: #EA7616;
	color: #FFFFFF;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}
#mainContentcover a {
	color: #FFFFFF;
	text-decoration: underline;
}
#mainContentcover a:hover {
	color: #000000;
	text-decoration: underline;
}

#footer  {
	background-color: #41404D;
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	font-size: 18px;
	border-top-width: 4px;
	border-bottom-width: 2px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
} 
#footer  p  {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#flashPanel {
	width: 100%;
	padding-top: 10px;
	clear: left;
	text-align: center;
}
.tablePanels {
	color: #000000;
}
.headerBar {
	font-weight: bold;
	background-color: #0093D1;
	text-align: center;
	font-size: 16px;
	padding-top: 5px;
	padding-bottom: 5px;
	color: #FFFFFF;
}
h1 {
	font-size: 20px;
	font-weight: bold;
}
.copyright {
	font-size: 10px;
	font-weight: normal;
	color: #333333;
	text-align: right;
	padding-bottom: 20px;
}
h2 {
	font-size: 15px;
	font-weight: bold;
}


.highlight     {
	color: #ffffff;
	background-color: #ff9933;
	font-size: 15px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
}
.floatLeft {
	float: left;
	padding-right: 10px;
	margin-right: 10px;
}
.floatRight {
	float: right;
	padding-left: 10px;
}
.tablePanels a {
	color: #EA7616;
	text-decoration: none;
}
.tablePanels a:hover {
	color: #EA7616;
	text-decoration: underline;
}
.greyText {
	color: #6F8289;
}
.paddedText {
	text-align: left;
	padding-right: 30px;
}
.adPanel {
	padding-right: 10px;
	padding-left: 10px;
	color: #000000;
}
.adPanel a {
	color: #EA7616;
	text-decoration: none;
}
#mainContentcover  .adPanel  a  {
	color: #EA7616;
}
.tableborder {
	border: 2px solid #85979D;
	width: 346px;
	float: right;
}
.tableheader {
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #85979D;
	padding-left: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.atableheader {
	font-size: 16px;
	background-color: #E82C22;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: bold;
}
.atablesubheading {
	padding-top: 5px;
	padding-bottom: 5px;
}
.atablesubheading2 {
	color: #E82C22;
	padding-top: 5px;
	padding-bottom: 3px;
}
.tableruleBelow {
	padding-bottom: 10px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #85979D;
}
.tableCenterRule {
	padding-right: 10px;
	padding-left: 15px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #63767D;
}

 .Standard_Table {
	border: 2px solid #85979D;
	font-size: 12px;
	line-height: 2em;
	vertical-align: top;
	border-collapse: collapse;
}
 .Standard_Table TH {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 11px;
	line-height: 120%;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
	font-size: 11px;
	line-height: 130%;
	font-weight: bold;
	text-align: left;
	background-color: #85979D;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #85979D;
	border-bottom-color: #85979D;
}
 .Standard_Table TD {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 2px;
	padding-bottom: 3px;
	font-size: 11px;
	line-height: 120%;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #85979D;
	border-bottom-color: #85979D;
}
.aussieLink {
	padding-left: 300px;
}
.featurePanel {
	width: 300px;
}
.featurePanelcontent {
	color: #333333;
	background-color: #FFFFFF;
	width: 270px;
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 15px;
	text-align: left;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #EA7616;
}
.featurePanelbanner {
	color: #333333;
	width: 300px;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #EA7616;
}
#mainContentcover .featurePanelcontent a {
	color: #EA7616;
	text-decoration: none;
}
.homepanelLeft {
	width: 300px;
	padding-right: 25px;
	background-image: url(images/floorPlan.gif);
	background-repeat: no-repeat;
}
