.body {
background-color:#374D7C;
color:#3D3D3D;
font-family:Arial;
font-size:11px;
margin:0pt;
padding:20px 0pt 0pt;
text-align:center;
}

img {
  border: none;
}

#frame {
	margin:0pt auto;
	text-align:left;
	width:800px;
	border: none;
}
#frame2 {
	margin:0pt auto;
	text-align:left;
	width:800px;
	height:26px;
	background-color: #FF3366;
	border-style: solid;
	border-width: thin;
}

#content {
	margin:0pt auto;
	text-align:left;
	width:800px;
	background-color: #6F7D99;
	border-style: solid;
	border-width: thin;
/*	min-height: 1024px;*/

}

#mainonly {
    float:left;
    width:650px;
    background-color: #FFFFFF;

}

#main {
    float:left;
    width:500px;
    background-color: #FFFFFF;

}
	
#sidebarright {
 /*   background:#6F7D99;*/
    background-color: #C8D7EA;
    float:left;
    width:150px;
	height:100%;
	padding: 0px;

}
	
#sidebarleft {
/*    background:#6F7D99;*/
    background-color: #C8D7EA;
    float:left;
    width:150px;
	min-height:550px;

}

.mainentry {  
 	padding: 5px;

}

.sbleftentry {
  
    float:left;
    width:150px;

}

.sbleftentry h3 {
  font-family:Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: bold; 
  color: red;
  text-align: center;
}

.sbrightentry {
    
      width:150px;

}

.sbrightentry h3 {
  font-family:Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: bold; 
  color: red;
  text-align: center;
}

.sbrightentry p {
  font-family:Verdana, Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-style: bold; 
  color: #0000CC;
}

p.r0 {
  background-color: #0066CC;
}

p.r1 {
  background-color: #666699;
}

/* CSS HORIZONTAL MENUS */
#dmenu{                         /* menu list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        margin: 0px;                /* space around the list container */
        padding: 0px;               /* space within the list container */
        position: static;           /* need this so that the z-index stuff works correctly */
        background-color: #CCCCCC;     /* the default background color within the main menu container */
        color: #000;                /* the default font color (not links) within the main menu container */
        z-index: 20;                /* push the menu up in the layer order a bit so it isn't hidden behind anything */
            /* Browser plug-ins like Flash or Quicktime may not allow you to overlap then with this menu! */
		height: 26px;
		font-weight:bold;
	
    }
    #dmenu li{                      /* top-level menu element */
	list-style-type: none;      /* disable the display of the list item bullets */
	float: left;                /* this is to allow for the horizontal main menu */
	border-right: black solid 1px;
	/* border: black solid 1px; */   /* border for each of the main menu items */
	background-color: #cccccc;     /* main menu item background color */
	color: #000;                /* main menu item font color (not links) */
	margin: 0px;                /* spacing between main menu items */
	padding: 0px;               /* padding within main menu items */
	width: 130px;               /* the width of each main menu item */
	display: block;
		
    }

    #dmenu ul {                     /* third-level (or greater) menu element list elements */
        position: absolute;         /* this is so that it doesn't push that page content around on hover */
        margin: 0px;                /* space around the list container */
        padding: 0px;               /* space within the list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        display: none;
        width: 129px;               /* should be the same as #dmenu li width */
        background-color: #cccccc;     /* sub-menu default background color */
        border: #000 solid 1px;     /* the border around the sub-menu list */
        color: #000;                /* sub-menu default font color (not links) */
        z-index: 99;                /* want to be sure this is above the rest of the menu */
    }

    #dmenu ul li{                   /* second-level or greater menu element links */
        background-color: #cccccc;     /* default background color for sub-menu container */
        color: #000;                /* default font color (not links) for sub-menu container */
        border: none;               /* sub-menu item border settings */
        margin: 0px;                /* spacing between sub-menu containers */
        padding: 0px;               /* This is for padding between menu items in the drop-downs */
        width: 129px;               /* (padding*2) must be subtracted from #dmenu li width and set for this one, or borders won't display properly. */
    }

    #dmenu li a{                    /* top-level menu element links */
        text-align: center;         /* text alignment in main menu item links */
        width: 129px;               /* set this to #dmenu ul width */
        display: block;
		height: 20px;
		text-decoration:none;
		padding-top: 5px;
    }
	
	
    
    #dmenu ul a {                   /* all the other level menu link elements */
        padding: 0px;
        margin: 0px;
        width: 129px;               /* (padding*2) must be subtracted from #dmenu ul li width and set for this one, or borders won't display properly. */
        display: block;
    }

    #dmenu a:hover,                 /* top-level hovering properties */
    #dmenu li:hover{
	display: block;
	background-color: #3366FF;
	color: white;
    }
    
    #dmenu ul li:hover,             /* higher level hovering properties */
    #dmenu ul li a:hover{
        display: block;
        width: 129px;               /* should be set to the same value as #dmenu ul li width */
        background-color: #3366FF;
        color: white;
    }

    #dmenu ul ul{                   /* higher-level list containers */
        display: none;              /* don't display by default */
        position: absolute;
        margin-left: 129px;         /* this should be the width of #dmenu ul li */
        margin-top: -2em;           /* this will push the sub-menu up to the level of it's parent */
		height: 20px;
    }

    /* only non-MSIE browsers use this */
    #dmenu ul li>ul,
    #dmenu ul ul li>ul{
        margin-top: -2em;           /* should be set to the same as #dmenu ul ul margin-top */
    }

    /* additional sub-menu levels in the next 2 blocks. (For up to 5 levels of drop menus) */
    #dmenu li:hover ul ul,              
    #dmenu li:hover ul ul ul,
    #dmenu li:hover ul ul ul ul,
    #dmenu li:hover ul ul ul ul ul{
        display:none;
		background-color: #3366FF;
        color: white;
    }

    #dmenu li:hover ul,
    #dmenu ul li:hover ul,
    #dmenu ul ul li:hover ul,
    #dmenu ul ul ul li:hover ul,
    #dmenu ul ul ul ul li:hover ul{
        display:block;
		background-color: #3366FF;
        color: white;
    }
	
	#dmenu li a:visited { 
	    color: #000;
	}

    li>ul {
        top: auto;
        left: auto;
    }

	.content {                      /* This is used for the content that will appear below the menu */
        clear: left;
    }
 
/* END MENU */  

/* CSS VERTICAL MENUS */
#vdmenu{                         /* menu list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        margin: 0px;                /* space around the list container */
        padding: 0px;               /* space within the list container */
        position: static;           /* need this so that the z-index stuff works correctly */
        background-color: #C8D7EA;      /* the default background color within the main menu container */
        color: #000;                /* the default font color (not links) within the main menu container */
        z-index: 20;                /* push the menu up in the layer order a bit so it isn't hidden behind anything */
            /* Browser plug-ins like Flash or Quicktime may not allow you to overlap then with this menu! */
		height: 26px;
		font-weight:bold;
	
    }
    #vdmenu li{                      /* top-level menu element */
	list-style-type: none;      /* disable the display of the list item bullets */
	/*float: left;               this is to allow for the horizontal main menu */
	/*border-right: black solid 1px;*/
	/* border: black solid 1px; */   /* border for each of the main menu items */
	background-color: #C8D7EA;     /* main menu item background color */
	color: #000;                /* main menu item font color (not links) */
	margin: 0px;                /* spacing between main menu items */
	padding: 0px;               /* padding within main menu items */
	width: 150px;               /* the width of each main menu item */
/*	display: block;*/
		
    }

    #vdmenu ul {                     /* third-level (or greater) menu element list elements */
        position: absolute;         /* this is so that it doesn't push that page content around on hover */
        margin: 0px;                /* space around the list container */
        padding: 0px;               /* space within the list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        display: none;
        width: 149px;               /* should be the same as #vdmenu li width */
        background-color: #C8D7EA;     /* sub-menu default background color */
        border: #000 solid 1px;     /* the border around the sub-menu list */
        color: #000;                /* sub-menu default font color (not links) */
        z-index: 99;                /* want to be sure this is above the rest of the menu */
    }

    #vdmenu ul li{                   /* second-level or greater menu element links */
        background-color: #C8D7EA;     /* default background color for sub-menu container */
        color: #000;                /* default font color (not links) for sub-menu container */
        border: none;               /* sub-menu item border settings */
        margin: 0px;                /* spacing between sub-menu containers */
        padding: 0px;               /* This is for padding between menu items in the drop-downs */
        width: 149px;               /* (padding*2) must be subtracted from #vdmenu li width and set for this one, or borders won't display properly. */
    }

    #vdmenu li a{                    /* top-level menu element links */
        text-align: center;         /* text alignment in main menu item links */
        width: 149px;               /* set this to #vdmenu ul width */
        display: block;
		height: 20px;
		text-decoration:none;
		padding-top: 5px;
    }
	
	
    
    #vdmenu ul a {                   /* all the other level menu link elements */
        padding: 0px;
        margin: 0px;
        width: 149px;               /* (padding*2) must be subtracted from #vdmenu ul li width and set for this one, or borders won't display properly. */
        display: block;
    }

    #vdmenu a:hover,                 /* top-level hovering properties */
    #vdmenu li:hover{
	display: block;
	background-color: #3366FF;
	color: white;
    }
    
    #vdmenu ul li:hover,             /* higher level hovering properties */
    #vdmenu ul li a:hover{
        display: block;
        width: 149px;               /* should be set to the same value as #vdmenu ul li width */
        background-color: #3366FF;
        color: white;
    }

    #vdmenu ul ul{                   /* higher-level list containers */
        display: none;              /* don't display by default */
        position: absolute;
        margin-left: 129px;         /* this should be the width of #vdmenu ul li */
        margin-top: -2em;           /* this will push the sub-menu up to the level of it's parent */
		height: 20px;
    }

    /* only non-MSIE browsers use this */
    #vdmenu ul li>ul,
    #vdmenu ul ul li>ul{
        margin-top: -2em;           /* should be set to the same as #vdmenu ul ul margin-top */
    }

    /* additional sub-menu levels in the next 2 blocks. (For up to 5 levels of drop menus) */
    #vdmenu li:hover ul ul,              
    #vdmenu li:hover ul ul ul,
    #vdmenu li:hover ul ul ul ul,
    #vdmenu li:hover ul ul ul ul ul{
        display:none;
		background-color: #3366FF;
        color: white;
    }

    #vdmenu li:hover ul,
    #vdmenu ul li:hover ul,
    #vdmenu ul ul li:hover ul,
    #vdmenu ul ul ul li:hover ul,
    #vdmenu ul ul ul ul li:hover ul{
        display:block;
		background-color: #3366FF;
        color: white;
    }
	
	#vdmenu li a:visited { 
	    color: #000;
	}

    li>ul {
        top: auto;
        left: auto;
    }

	.content {                      /* This is used for the content that will appear below the menu */
        clear: left;
    }
 
/* END MENU */  

