/* Start of CMSMS style sheet 'Red Angus Styles' */
/*****************
Red Angus Victoria
******************/

img {
   border: 0;
}


/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #3A483A; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #3A483A;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color:#3A483A;
   color: #ffffff;
}

a:visited:hover {
   text-decoration: none;
   background-color: #3A483A;
   color: #ffffff;
}

/*****************
basic layout 
*****************/
html{

height:100%;
margin:0;

} 

body {
	margin:0;
	padding:0;
	line-height: 1.5em;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color:#333333;
	background-color: #FAFCFB;
	background-image: url(images/RAbackground.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	
}



#outershell
{width:1000px;
	margin: 0 auto;
	text-align:center;



 }


#innershell {position:relative;
                min-height:100%;
                height:100%;
                height: auto !important;
			    
}


#topsection{padding-top:215px;
                background-image:  url(images/RAheader.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	width: 1000px;
	height:50px;
	background-repeat: no-repeat;
}
#breadbin {float:left;
                width:950px;
                padding-left: 25px;
                color: #fff;
     }

div#search {
   float: right;
   width: 27em;    /* enough width for the search input box */
   text-align: right;
   padding-right: 5px;
   margin-top: 5px;
}

div.breadcrumbs {text-align: left;
 font-size: 12px;     
  
   padding-left:15px;   
   padding-top:10px;     
   margin-bottom:5px;

}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 


#logo {position:absolute;
top:0;
left:0;
z-index:99;

}
#contentwrapper {  text-align:left;

}


#contentwrapper, .contentwrapper{
                               
                	padding-top: 0px;
                               padding_bottom: 30px;

	

}



 div#content {
    margin: 1em auto .5em 0;  /* some air above and under menu and content */
}


div#main {
    padding-left:20px;
    padding-right:20px;
    padding-top: 10px;
   width: 622px;
   margin-left: 310px; 
   margin-right: 25px; /* and some air on the right */
   text-align:left;
   background:#fff;
   border: 1px solid #596F5A;
}

div#sidebar {
	float: left;
	width: 250px;
	margin-left:  25px;
}

.login {margin-left: 0px;
margin-bottom: 10px;
}

.login  a,
.login a:link 
.login a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #005663; 
}

.login a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #005663;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
.login a:hover {
   text-decoration: none;

   color: #000000;
}

.login a:visited:hover {
   text-decoration: none;

   color: #000000;
}





















#footer {
                clear:both;
                padding-top: 20px;
                background-image: url(images/grass.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	text-align:center;
                width: 100%;
	color: #5a5a5a;
	font-size: 0.8em;
                height:150px;
}





/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   padding: 1em;
   border-bottom: 1px solid #c6c6c6;
   margin: 1em;
}

/* relational links under content */
div.left49 {
  width: 49%; /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}




/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {color: #D40523;
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
	color: #D40523; 
	font-size: 1.5em; 
	text-align: left; 
        margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #D40523; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #D40523; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {

   color: #D40523; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color:#D40523; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 1.4em;
   padding: 0;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;


}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
    div#main ul,
    div#main ol,
     div#main dl {
   font-size: 1.0em;
   line-height: 1.4em;
   margin: 0 0 1.5em 0;
}

div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}

#maplist {max-height: 300px;
   float: left;


}
.maplist { font-size: 9px;
   }

.sales { font-size: 13px;
font-weight:bold;
color: #D40523;
   }

.salebarn ul li,
.salebarn ol li {
    list-style-type: none;
    float: left;
    text-decoration: none;
    margin-left: 0px;
    padding-left:0px;
}

.salebarn ul {
   list-style-type: none;
  float: left;
   text-decoration: none;
  margin-left: 0px;
  padding-left:0px;
}

.salebarn li {
   list-style-type: none;
   float: left;
   text-decoration: none;
  margin-left: 0px;
  padding-left:0px;

}

/* lists in content need some margins to look nice */
    .maplist  ul,
    .maplist  ol,
     #maplist  dl {
    list-style-type: none;
  text-decoration: none;
   line-height: 1.4em;
   display: block;

  margin: 0;
  padding: 0;


}


.maplist  ul li,
.maplist  ol li {
list-style-type: none;
  float: left;
  width: 170px; 
  text-decoration: none;
  margin-left: 0px;
padding-left:0px;

}

.maplist  br
  {
    clear: left;}

#members ul li,
#members ol li{list-style-type: none;
  text-decoration: none;}



/* END LISTS */

/* FOR CLEARING FLOATS */

.clear-block:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clear-block {
  display: inline-block;
}

/* Hides from IE-mac \*/
* html .clear-block {
  height: 1%;
}
.clear-block {
  display: block;
}
/* End hide from IE-mac */
/* End of 'Red Angus Styles' */

