

/* Note: The slash star combinations surround text that is to be          */
/*       marked a comment.  These just describe the CSS and are           */
/*       ignored by the browser.                                          */

body
{
    font: 16px arial;
}
/* these are the font styles for the links that appear on your web page */
a:link {font: bold 13px arial; color: #000080; text-decoration: none;} 
a:active {font: bold 13px arial; color: #FF0000; text-decoration: none;}
a:visited {font: bold 13px arial; color: #000080; text-decoration: none;}
a:hover {font: bold 13px arial; color: #AF0020; text-decoration: underline;}/*this one changes the mouseover or hover state of the link*/

.border
{
    /* this is used for all kinds of borders */
    /* be it for the whole page, or just the content section 83032A*/
    border: solid 1px #FF0000;
}

.left
{
    /* floats the item to the left side of the page, and adds a margin */
    float: left;
}

.right
{
    /* floats the item to the right side of the page, and adds a margin */
    float: right;
}

.scroll
{
    /* this makes the element create scroll bars if the text is too long */
    /* to be displayed.  This is very similar to the effect created by */
    /* frames and iframes, but does not allow page transitions like frames do */
    overflow: auto;
}

.wrapper
{
    /* remove this to have the page load at full width */
    /*width: 780px;*/
}

.title
{
    /* this is the styling for the title.  Semantically, this should be an h1 */
	/* padding all four sides of the div in order top, right, bottom, left */
    background-color: #4169E1;
    color: #000080;
	font-face: Arial;
    font-weight: bold;
    font-size: 36px;
	padding: 10px 20px 10px 20px;
}

.title2 
{
    background-color: #4169E1;
color: #000080;
	font-face: Arial;
    font-weight: bold;
    font-size: 18px;

}

.titlemargin
{
	margin: 10px 0px 10px 0px;
}

.subtitle 
{
	color: #ffffff;
	font-face: Arial;
    font-weight: bold;
    font-size: 14px;
}

.content
{
    /* this describes the container of the content paragraphs. */
    padding: 0px 20px 0px 20px; /* keeps text off the borders */
	font-face: Arial;
    font-size: 12px;
    padding: 0px;
	margin: 0px;
}

.content.padleft
{
    /* this is to pad if there's a sidebar on the left */
    padding-left: 220px;
}

.content.padright
{
    /* this is to pad if there's a sidebar on the right */
    padding-right: 180px;
}

.sidebar
{
    width: 150px;
    height: 400px; /* remove this to allow different-sized sidebars 6A5ACD 40E0D0*/
    background-color: #FF0000;
    color: #FF0000;
    font-weight: bold;
    padding: 10px 0px 5px 0px;

}

.sidebaritem
{
    width: 130px;  /*This is the sidebar on the left. 4169E1 40E0D0 CFACA7*/
    background-color: #4169E1;
    color: #FF0000;
    border: solid 1px #FF0000;
    font-size: 14px;
    padding: 2px;
    margin-bottom: 3px;

}

.horiz
{
    color: #4B1A95;
    font-weight: bold;
	width: 124px;
	float: left;
	text-align: center;
}

.sidebaritem.first
{
    margin-top: 10px;
}

.footer
{
	background-color:#4169E1;
	color: #000080;
	font-size: 10px;
	font-face: arial;
	text-align: center;
}

.block
{
	border-style: solid;
	border-color: #003366;
	background-color: #F0F0F0;
	border-width: 1px;
	padding: 5px;
	font-size: 1.0em;
	text-align: justify;
	margin-bottom: 1em;
	margin-left: 10%;
	margin-right: 10%;
}

/* Added for AMA Event Box */
results { font-size: 12px; line-height: 120%; }

.schedule {
	font-size: 12px;
	color: #000000; 
	margin-top: 6px;
	margin-bottom: 0px;
	}
	
.columnboxheader {
	padding: 6px;
	margin-top: 7px;
	background-color: #336699;
	}
	
.columnbox { background-color: #FFFFFF; background-image: none; margin-bottom: 8px; padding: 7px; border: 1px #003366 solid; }

