/************************** Site-wide Reset Styles ***************************/
/*                     Do not change any of these styles                     */

html,body,p,ul,ol,li,a,h1,h2,h3,h4,h5,h6,table,tbody,tfoot,thead,th,form{margin:0;padding:0;border:0;outline:0;}
.mainMenu tr .icn img{padding:0 0 0 10px;}
/* Overrides some troublesome DNN default styles */
.Normal,.NormalDisabled,.NormalBold,.NormalRed,.NormalTextBox{font-size:inherit;font-family:inherit;}
.Normal,.NormalDisabled,.NormalRed,.NormalTextBox{font-weight:inherit;}
.dnnRibbon .barContent{border:0 !important;border-top:1px solid #DADADA !important;}
.dnnRibbon input{height:auto !important;}
#dnn_ControlPanel .content{height:auto;}
.DNNEmptyPane{font-size:0px;}
#LBD_CaptchaImage img{position:absolute;}

/* The clear class is used to correct the flow of the layout after using a
 * floated element ("float: left" in stylesheets or "align=left" on tables and
 * imgs). Usually, floating an element takes it out of the 'flow' of the
 * document, meaning that any containers or following elements will ignore the
 * size and shape of the floated element, causing ugly overlapping content and
 * missing backgrounds. The clear class forces the containing element to
 * correct its height for its contents even if it's floated. It should be used
 * by specified the clear class on any elements that contain a floated
 * elements that you wish to clear.
 * E.g.,
 * <div class="clear">
 *     <div style="float: left;"> Content </div>
 *     <img src="..." align="right" />
 * </div>
 * This method is preffered over alternate methods (such as
 * <br style="clear:both;" />) as it requires no extra html markup just for
 * styling purposes, and it is also the only known method that works in all
 * cases across all modern browsers. */
.clear:after{content:".";display:block;height:0;clear:both;visibility:hidden;}
.clear{zoom:1;/*triggers hasLayout in IE*/}

/* The following classes cancel out any styles that have been specified on the
 * body for the image and link browsers of the DNN text editor. Usually these
 * dialogs would use the same styles as the rest of the site, sometimes
 * causing issues with readability */
.FCKImageGalleryContainer{background-color:#FFFFFF;background-image:none;}
.FCKLinkGalleryContainer{background-color:#FFFFFF;background-image:none;}

.FormsContent table{width:auto !important;}

.ModuleTitle_SubMenu .txt{white-space:nowrap;}


/****************************** General Styles *******************************/

body, #Body, .Normal, .NormalDisabled, .NormalBold, .NormalRed, .NormalTextBox, table, h1, h2, h3, h4, h5, h6 {
	/* Set this to the desired default website font */
	font-family:ArialMT, Arial, Helvetica, sans-serif;
	/* Set this to the desired default website font size */
	font-size: 12px;
	color: #666666;
}

/* Do not set font-size or font-family on the p tag or  any other general tags
 * other than #Body (see Layout Styles) as this will cause problems when trying
 * to set styles on container elements later on. Site wide font settings should
 * be specified on the body tag, or if you require a different font style
 * somewhere on the site, add the different font styles to a class or id on the
 * containing element. */
p, .Normal p {
	/* !important is required on margin to override a style on the container */
	margin: 10px 0 !important;
	line-height: 140%;
}

td {	line-height: 140%;}

ol {
	margin: 10px 0 10px 30px;
	list-style-type: decimal;
}

ul {
	margin: 15px 0 15px 30px;
	list-style-type: disc;
}

ul li
{
margin-top:12px;
	line-height: 140%;
}

A:link
{
    text-decoration: none;
    color: #003366;
}

A:visited
{
    text-decoration: none;
    color: #003366;
}

A:hover
{
    text-decoration: underline;
    color: #003366;
}

A:active
{
    text-decoration: none;
    color: #003366;
}

h1 {
	margin: 20px 0;
	font-size: 36px;
	font-weight: normal;
	color:#9BC220;
}

h2 {
	margin: 20px 0;
	font-size: 22px;
	font-weight: bold;
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#053063;
}

h3 {
	margin: 22px 0;
	font-size: 16px;
	font-weight: bold;
}


/******************************* Layout Styles *******************************/

#Body {
	text-align: center; /* Centers the website in IE */
	/* Causes long words that are too wide for its container to break mid-word
	 * and wrap onto the next line */
	word-wrap: break-word;
	
	background: #4F9BD5;
	background-image:url(/images/bg.jpg);
	background-repeat:repeat-x;
	background-position:top;
}


.pageCenter {
	/* Centers the website in all browsers except IE and cancels out the
	 * text-align: center specified on #Body */
	margin: 0 auto;
	text-align: left;
	
	/* Total width of the website. This must be specified in order to center
	 * the website. This should NEVER be more than 996px or you will get
	 * scrollbars on 1024x768 resolution screens. If your design measures
	 * wider than this, go and ask your designer about it */
	width: 990px;
}


#header {
	height: 201px;
 	background-image:url('/images/banner.jpg');
	background-repeat:no-repeat;	
	/* Required to absolutely position elements inside of the header
	 * See #profilePhoto for more information */
	position: relative;
}

#profilePhoto {
	/* Absolutely positions the element wherever you like in the header
	 * 'bottom: 0;' locks the element to the bottom of the container
	 * 'top: #px;' puts the top of the element #px down from the top of
	 * the header. This same technique can be used for the site title as well
	 * as bylines or portfolios. If the height of the element + the value for top is
	 * greater than the height of the header, the element will overlap
	 * the content below it. This can sometimes be put to effect
	 * (see http://www.sharmanstone.com.au for example) 
	 * The header MUST have position: relative for this to work
	 * otherwise you will have unexpected results 
	position: absolute;
	bottom: 0;
	left: 10px;*/
}

#header h1 {
	/* See notes in #profilePhoto regarding absolute positioning*/
	position: absolute;
	top: 100px;
	left: 250px;
	margin: 0;
	
	/* Image replacement technique
	 * Use the following to replace the site title with a premade image
	 * This is useful for non-standard fonts, and is the kindest way to
	 * replace the text with an image for search engines, without using
	 * javascript 
	 * The height and width must match that of the image */
	 text-indent: -9999px;
	 width: 222px;
	 height: 48px;
}

#topPaneWrapper
{
width:958px;
}

#contentWrapper {
	padding: 15px 16px 16px 16px;
	background: white;
}

#contentPaneWrapper {
	/* Don't use margin-left on anything with float:left */
	float: left;
	/* Don't use padding-left, padding-right, border-left or border-right on
	 * anything with width */
	width: 654px;
	margin: 0px;
	padding:0px;
}
#contentPaneWrapperFullWidth {
	float: left;
	width: 958px;
	margin: 0px;
	padding:0px;
}

.ContentPane {
	padding: 28px 55px 40px 50px;
	margin:0px;
}
.left img
{
	float:left;
	padding-right:20px;
	padding-top:15px;
}
.right img 
{
	float:right;
	padding-left:20px;
	padding-left:15px;
}


#rightPaneWrapper {
	/* Don't use margin-left on anything with float:left */
	float: left;
	/* Don't use padding-left, padding-right, border-left or border-right on
	 * anything with width */
	width: 304px;
}

.RightPane {
	padding: 0;
}
#welcomeMessage
{
	background-image:url('/images/bg-rightbox.jpg');
	background-repeat:repeat-x;
	height:407px;
	margin-bottom:8px;
	width:304px;
}
#welcomeMessageInner
{
padding: 3px 45px 0px 35px;
}
#welcomeMessage p,#welcomeMessage a
{
	color:white;
		line-height:18px;	
}
#welcomeMessage h1{
	color:white;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:26px;
}
#welcomeMessage h2{
	color:white;
	font-family:Arial, Helvetica, sans-serif;
	font-size:17px;
	font-weight:bold;
}

#ContactBox
{
background-image:url('/images/contactbox.jpg');
background-repeat:no-repeat;
background-position:top;
margin-top:7px;
padding:22px 16px 45px 37px;
color:white;
zoom:1;
}
#ContactBox h1
{
font-family:Georgia, "Times New Roman", Times, serif;
font-size:22px;
color:white;
margin:0px 0px 18px 0px;
}
#ContactBox a{
color:white;
}

#FirstSpeech
{
background-color:#8A8B90;
padding:6px 0px 6px 36px;
margin-top:3px;
margin-bottom:5px;
zoom:1;
}
#FirstSpeech h1
{
font-family:Georgia, "Times New Roman", Times, serif;
font-size:22px;
color:white;
margin:0px;
padding:0px;

}
#FirstSpeechVideo
{
background-color:#AFAFAF;
width:302px;
height:198px;
margin-top:1px;
}

#dnn_ctr389_ContentPane /*SignupBox*/
{
	background-image:url('/images/signupbox.jpg');
	background-repeat:no-repeat;
	margin-top:7px;
	padding: 80px 0px 10px 32px;
	color:white;
	
}

#dnn_ctr389_ModuleContent
{
height:200px;
}

#dnn_ctr389_DynamicForms_imgSave{position:relative;left:-2px;}
#dnn_ctr389_ContentPane .NormalBold{font-family:Arial, Helvetica, sans-serif;color:white;}
#dnn_ctr389_DynamicForms_tblQuestions{padding:0px;position:relative;left:2px;}
#dnn_ctr389_DynamicForms_tblQuestions td{padding:0px;}
#dnn_ctr389_DynamicForms_pnlAfterMessage{padding-top:38px;padding-left:7px;}
#footer
{
	width:100%;
	background-image:url('/images/bg-base.jpg');
	background-repeat:repeat-x;
	height:245px;
	text-align: center;
}

/*TWITTER STUFF*/
#TweetBox
{
background-color:#4E97CE;
background-image:url('/images/twitterbox.jpg');
background-repeat:no-repeat;
background-position:top;
margin-top:7px;
padding:29px 45px 25px 37px;
color:white;
zoom:1;
}
#TweetBox h1
{
font-family:Georgia, "Times New Roman", Times, serif;
font-size:22px;
color:white;
margin:0px 0px 2px 0px;
}
#twitter_div {}
#twitter_update_list
{
padding:0px 0px 0px 0px;
margin:0px 0px 0px 0px;
word-wrap:break-word;
}
#twitter_update_list li
{
margin:0px;
padding:7px 0px 7px 0px;
list-style-type:none;
}
#twitter_update_list li
{
/*border-bottom:1px dashed gray;*/
}
#twitter_update_list a
{
display:block;
}
ul.tweet_list
{
margin:0px;
}

/*Quick Links*/
#QuickLinksBox
{
background-color:#F8810B;
background-image:url('/images/bg-quicklinks.jpg');
background-repeat:repeat-x;
background-position:top;
margin-top:7px;
padding:22px 16px 15px 29px;
color:white;
zoom:1;
}
#QuickLinksBox h1
{
font-family:Georgia, "Times New Roman", Times, serif;
font-size:22px;
color:white;
margin:0px 0px 2px 8px;
}
#QuickLinksBox td
{color:white; padding:7px;}
#QuickLinksBox table a
{color:#053063;font-family:Arial, Helvetica, sans-serif; font-weight:bold;margin:2px 0 2px 0;;display:block;}


#SocialIconsBox{
background-image:url('/images/bg-catchup.jpg');
background-repeat:repeat-x;
background-position:top;
margin-top:7px;
zoom:1;
height:109px;
}
#SocialInner
{
padding:0px 16px 19px 29px;
}

#SocialIconsBox h1
{
font-family:Georgia, "Times New Roman", Times, serif;
font-size:22px;
color:white;
margin:0px 0px 7px 35px;
padding-top:22px;
}
/*SOCIAL ICONS*/
#socialicons {
	margin: 0 0 0 5px;
	width:170px;
}
/*--outer icons are different widths to incorporate more glow----*/
#rssicon a {
	background: url(/images/rssicon.gif) top left no-repeat;
	width: 30px;
	height: 33px;
	display: block;
	float: left;
	padding: 0;
}
#rssicon a:hover {
	background: url(/images/rssicon.gif) bottom left no-repeat;
	text-decoration: none;
}
#yticon a {
	background: url(/images/youtubeicon.gif) top left no-repeat;
	width: 29px;
	height: 33px;
	display: block;
	float: left;
	padding: 0;
}
#yticon a:hover {
	background: url(/images/youtubeicon.gif) bottom left no-repeat;
	text-decoration: none;
}
#fbicon a {
	background: url(/images/facebookicon.gif) top left no-repeat;
	width: 29px;
	height: 33px;
	display: block;
	float: left;
	padding: 0;
}
#fbicon a:hover {
background: url(/images/facebookicon.gif) bottom left no-repeat;
	text-decoration: none;
}
#twicon a {
	background: url(/images/twittericon.gif) top left no-repeat;
	width: 29px;
	height: 33px;
	display: block;
	float: left;
	padding: 0;
}
#twicon a:hover {
background: url(/images/twittericon.gif) bottom left no-repeat;
	text-decoration: none;
}




/* Set the font styles in the footer - also need to override the default a styles */
#footerLeft
{
	float:left;
	width:650px;
	text-align:left;
	margin-top:25px;
	margin-left:50px;
}

#footerLeft a, #footerleft td {	
	font-size: 11px;
	color: white;
}
#footerRight
{
	float:left;
	width:250px;
	text-align:center;
	margin-top:40px;
}


/******************************** Menu Styles ********************************/

#menu {
	/* Do not specify a height here. See line-height in the .root class */
	position:relative;
	top:165px;
	left:175px;
	width:812px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:17px;
	cursor:pointer;	
}

#menu .RadMenu .rmText
{
	padding: 0;
	margin: 0;
}

#menu .RadMenu a.rmLink{
	cursor:pointer;
}

#menu .MyRadMenu ul li
{
	line-height: normal;
	margin: 0;
}

#menu .MyRadMenu a.RootItemCss {
	float: left;
	white-space: nowrap;
	line-height: 35px;
	display: block;
	padding: 0 16px 0 16px;
	color: #585858;
}

#menu .MyRadMenu a.RootItemCss:hover {	
	color: #ffffff;
}

#menu .MyRadMenu .rmSlide {
	background: #ffffff;
	white-space: nowrap;
	border: 1px solid Black;
	z-index: 100;
}

#menu .MyRadMenu a.ItemCss {
	
	line-height: 35px;
	color: #666666;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	display: block;
}

#menu .MyRadMenu a.ItemCss:hover {
	color: white;
	background-color:#85B8D3;
}

#menu .MyRadMenu a.ItemCss span {
	padding: 0 27px 0 17px;
}

 

#dnn_ctr433_DynamicForms_tblHeader
{width:540px;
}
#dnn_ctr433_DynamicForms_d7dcdb0a-9c48-4fca-96e1-a5047df4f792 table, #dnn_ctr433_DynamicForms_Responses_d7dcdb0a-9c48-4fca-96e1-a5047df4f792
{width:150px;
word-wrap:break-word;
WORD-BREAK:BREAK-ALL;
}
#dnn_ctr433_DynamicForms_Responses_d7dcdb0a-9c48-4fca-96e1-a5047df4f792
{
width:300px !important;
}
#dnn_ctr446_FreeVideoList_lstVideos table td
{
 vertical-align:top;
}
#dnn_ctr454_ContentPane
{
position:relative;
top:4px;
}
.bt-wrapper canvas {
position:relative !important;
}
#dnn_ctr460_View_ctlEventsCalendar
{
width:533px;
}
#dnn_ctr448_VideoPlayer_pnlNormal
{
text-align:center;
}
.articleListing h2
{
margin-bottom:10px;
}
.articleListing p
{
margin-bottom:10px;
}
#dnn_ctr446_FreeVideoList_lstVideos table
{
margin-bottom:10px;
}

#dnn_ctr433_DynamicForms_Responses_d7dcdb0a-9c48-4fca-96e1-a5047df4f792 td
{
word-wrap:normal;
word-break:normal;
}

#dnn_ctr479_ModuleContent table
{width:540px;}





/*Article Listing*/


#articlesMenu {
	margin: 25px 0;
	text-align: center;
}

h1#articleCategory {
	margin: 0 0 25px 0;
	border-bottom: 1px solid #9f9f9f;
}

#articles .articleListing {
	padding: 25px 0;
	border-top: 2px dotted #cccccc;
}

#articles .first {
	padding-top: 0;
	border: 0;
}

#articles h2 {
margin-top:0px;
}

#articles .articleItem {
	float: left;
	width: 315px;
	margin: 0 25px 0 0;
}

#articles .articleInfo p {
	font-style: italic;
	margin: 0px 0 !important;
}

#articles .articleImage {
	float: left;
	padding: 5px;
	border: 1px solid #c9c9c9;
}

.articleImageView
{
float:left;
margin-right:15px;
margin-bottom:15px;
}

#flashcontent {
	width: 654px;
	height: 407px;
	background: url(images/flash_bg.jpg) top left no-repeat;
}







