html { min-height: 100%; margin-bottom: 1px; }


/************************/
/* OVERALL STYLES!!!!!! */
/************************/
.copyright {
	font-size:10px;
	background:#15437C;
	font-weight:normal;
	font-family:Verdana;
	color:#FFFFFF;
}

.copyrightAlt {
	font-size:10px;
	background:#FFFFFF;
	font-weight:normal;
	font-family:Verdana;
	color:#15437C;
}

.textBox {
	border: 1px solid #666666;
    font: bold 10px Verdana;
	padding-left: 5px;
	background-color: #FAFAFA;
}

.textButton {
	font: bolder 10px Verdana;
	text-transform: uppercase;
	background-color: #CCCCCC;
	background: #FFFFFF url(../images/buttonBack.gif) repeat-x;
	text-align: center;
	height: 17px;
	border-top: 1px solid #FFFFFF;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #FFFFFF;
	text-transform: uppercase;
}

.pageTitle {
	font-size:14px;
	font-weight:bold;
	font-family:Verdana;
	color:#15437C;	
}

.pageTitle2 {
	font-size:12px;
	font-weight:bold;
	font-family:Verdana;
	color:#15437C;	
}

.pageTitle3 {
	font-size:10px;
	font-weight:bold;
	font-family:Verdana;
	color:#15437C;	
}

/*********************/
/* BLOG STYLES!!!!!! */
/*********************/

.blogTitleBold {
	font-size:12px;
	font-family:Verdana;
	font-weight:bold;
	color:#15437C
	}

.blogTitle {
	font-size:11px;
	font-family:Verdana;
	font-weight:italic;
	color:#15437C
	}
	
.blogText {
	font-size:11px;
	font-family:Verdana;
	color:#000000
	}

/****************************/
/* TESTIMONIAL STYLES!!!!!! */
/****************************/

.testimonialTitleBold {
	font-size:12px;
	font-family:Verdana;
	font-weight:bold;
	color:#15437C
	}
	
.testimonialText {
	font-size:11px;
	font-family:Verdana;
	font-weight:normal;
	color:#000000
	}

.testimonialName {
	font-size:11px;
	font-family:Verdana;
	font-weight:bold;
	color:#15437C
	}
	

/************************/
/* SEMINAR STYLES!!!!!! */
/************************/

.link {
	color:#15437C;
	font-size:11px;
	font-weight:normal;
	font-family:Verdana;
}

.link2 {
	color:#15437C;
	font-size:13px;
	font-weight:bold;
	font-family:Verdana;
}

.linkBold {
	color:#15437C;
	font-size:11px;
	font-weight:bold;
	font-family:Verdana;
}

.link:hover {
	color:111111
}

.seminarTitleBold {
	font-size:12px;
	font-family:Verdana;
	font-weight:bold;
	color:#15437C
	}

	
	
/*********************/
/* DICT STYLES!!!!!! */
/*********************/

.dictionaryMenu {
	font-size:11px;
	font-weight:bold;
	font-family:Verdana;
	color:#15437C;
}


.dictionaryLinkWord {
	font-size:12px;
	font-weight:normal;
	font-decoration:underline;
	font-family:Verdana;
	color:#15437C;
}

.dictionaryLinkWord:hover{
	color:#111111;
}

.dictionaryLinkWordSmall {
	font-size:10px;
	font-weight:normal;
	font-decoration:underline;
	font-family:Verdana;
	color:#15437C;
}

.dictionaryLinkWordSmall:hover{
	color:#111111;
}

.dictionaryWord {
	font-size:12px;
	font-weight:bold;
	font-family:Verdana;
	color:#15437C;
}

.dictionaryText{
	font-size:10px;
	font-weight:normal;
	font-family:Verdana;
	color:#15437C;
}


/*********************/
/* MENU STYLES!!!!!! */
/*********************/
/* this is the clipping region for the menu. it's width and height get set by script, depending on the size of the items table */
.transMenu {
	position:absolute;
	overflow:hidden;
	left:-1000px;
	top:-1000px;
	}

/* this is the main container for the menu itself. it's width and height get set by script, depending on the size of the items table */
.transMenu .content {
	position:absolute;
	}

/* this table comprises all menu items. each TR is one item. It is relatively positioned so that the shadow and background transparent divs can be positioned underneath it */
.transMenu .items {
	position:relative;
	left:0px; top:0px;
	z-index:2;
	}

.transMenu.top .items {
	border-top:none;
	}

/* each TR.item is one menu item */
.transMenu .item {
    color:#FFFFFF;
    font-size:10px;
    font-family:Verdana;
    text-decoration:none;
	/* this is a hack for mac/ie5, whom incorrectly cascades the border properties of the parent table to each row */
	border:none;
	cursor:pointer;
	cursor:hand;
	}

/* this DIV is the semi-transparent white background of each menu. the -moz-opacity is a proprietary way to get transparency in mozilla, the filter is for IE/windows 5.0+. */
/* we set the background color in script because ie mac does not use it; that browser only uses a semi-transparent white PNG that the spacer gif inside this DIV is replaced by */
.transMenu .background {
	position:absolute;
	left:0px; top:0px;
	z-index:1;
	-moz-opacity:.7;
	filter:alpha(opacity=70);
	}

/* same concept as .background, but this is the sliver of shadow on the right of the menu. It's left, height, and background are set by script. In IE5/mac, it uses a PNG */
.transMenu .shadowRight {
	position:absolute;
	z-index:3;
	top:3px; width:2px;
	-moz-opacity:.4;
	filter:alpha(opacity=40);
	}

/* same concept as .background, but this is the sliver of shadow on the bottom of the menu. It's top, width, and background are set by script. In IE5/mac, it uses a PNG */
.transMenu .shadowBottom {
	position:absolute;
	z-index:1;
	left:3px; height:2px;
	-moz-opacity:.6;
	filter:alpha(opacity=60);
	}

/* this is the class that is used when the mouse is over an item. script sets the row to this class when required. */
.transMenu .item.hover {
	background:#fdfdfd;
	color:black;
	}

/* this is either the dingbat that indicates there is a submenu, or a spacer gif in it's place. We give it extra margin to create some space between the text and the dingbat */
.transMenu .item img {
	margin-left:10px;
	}
		
#menu {
    background:#15437C;
    padding:0px 0;
	width:800px;
    }
#menu a {
    padding:0px 10px;
    text-decoration:none;
    font-weight:normal;
	font-family:Verdana;
    font-size:11px;
    color:#FFFFFF;
    }
#menu a.hover {
	color:black;
    background:#fdfdfd;
    }
#menu span {
    display:none;
    }
#img {
    vertical-align:bottom;
    }
#subnav {
    font-size:10px;
    margin-bottom:2em;
    }
#subnav a {
    color:#FFFFFF;
    margin-right:1em;
    }
#subnav span {
    color:silver;
    margin-right:1em;
    }

	
	
	
	
.BioText {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #15437C;
	background-color: #F5F5F5;
	text-align: left;
	vertical-align: top;
	border: 1px solid #DDDDDD;
}
.picturebox {
	background-color: #FFFFFF;
	vertical-align: top;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #15437C;
	line-height: normal;
	text-align: center;
	background-position: 2px;
}




a.bioLink {
	font-size: 10px;
	color: #164395;
}
a.bioLink:link {
	text-decoration: none;
	color: #15437C;
}
a.bioLink:visited {
	text-decoration: none;
	color: #CCCCCC;
}
a.bioLink:hover {
	text-decoration: underline;
}
a.bioLink:active {
	text-decoration: none;
}