@charset "utf-8";
/* CSS Document */


body { margin: 0; padding: 0; height: 100%; text-align: center; min-width: 700px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; } 

/* General Links */
a:link { text-decoration : none; border: 0px;} 
a:active { text-decoration : underline; border: 0px;} 
a:visited { text-decoration : none; border: 0px;} 
a:hover { text-decoration : underline; border: 0px;}
/* a:link { text-decoration : underline; border: 0px;}
a:active { text-decoration : underline; border: 0px;}
a:visited { text-decoration : underline; border: 0px;}
a:hover { text-decoration : underline; border: 0px;} */
a.specialLink:link { color: red; }
a.specialLink:visited { color: red; }
a.specialLink:hover { color: red; }


img { padding: 0px; margin: 0px; border: none;}
hr { border-left:0px solid #abb0b5; border-right:0px solid #abb0b5; border-top:1px dotted #abb0b5; border-bottom:0px solid #abb0b5; height : 1px;  }

input { font-family: 'Verdana'; color: #2f2928; font-size: 11px; }
textarea { font-family: 'Verdana'; color: #2f2928; font-size: 12px;  }
select { font-family: 'Verdana'; color: #2f2928; font-size: 11px;  }

h1, h2, h3 { font-family: "Trebuchet MS" ;}
h4 { font-family: 'Verdana'}

/* Added Ric */
#bgfullcontainer {width:1170px; margin: 0 auto; text-align: center; vertical-align:top;}
#bgleft { width: 130px; margin: 0 auto; text-align: right; vertical-align:top; float:left; padding-right:10px; padding-top:100px;}
#bgleft #js {padding-bottom:10px;}
#bggrouphold {width:1030px; float:right;}
#bgright { width: 130px; margin: 0 auto; text-align: right; vertical-align:top; float:right; padding-top:100px;}
#bgbottom { width: 100%; height:80; text-align:center; padding-top:10px; padding-bottom:10px; clear:both;}
#bgfullclear {clear:both;}
/* End added Ric */

#bgcontain { background: #fff; width: 900px; margin: 0 auto; text-align: left; float:left;}
/* RIC #bgcontain { background: #fff; width: 900px; margin: 0 auto; text-align: left; } */

/* IE min height hack */ * html #container { height: 250px;} 
#container { padding: 0; float: left; width: 100%; clear: both; min-height: 250px; padding-top: 21px; margin-top:2px; } 

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.header h1.HeaderImage {padding-top: 7px; padding-bottom: 0px; padding-left: 7px; padding-right: 25px; margin: 0px;}
/*.header h1.HeaderImage {padding: 0px 0px; margin: 0px;} */
.header h1.HeaderText { }
.header { width: 900px; position: relative; height:175px;}
/* RIC .header { width: 900px; position: relative;} */
.header h1 { font-size: 22px; letter-spacing: 0px; font-weight: normal; padding: 40px 10px 30px 10px; margin: 0px; text-align:left;}
/* RIC .header h1 { font-size: 32px; letter-spacing: -2px; font-weight: normal; font-family: "Trebuchet MS"; padding: 20px 0px 20px 10px; margin: 0px; text-transform: lowercase;} */


/* DropDown Menu ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.menu, .menu ul {margin: 0; padding: 0; list-style-type: none; display: block; }

.menu ul {
	width: 11em;
	border: 0; 
	
}

/*RIC .menu { 
	position: absolute; top: 25px; right: 0px;
	font-size: 11px; letter-spacing: -1px; font-weight: bold;
} */
.menu { 
	position: absolute; bottom: 20px; right: 0px;
	font-size: 12px; letter-spacing: -1px; font-weight: bold;
}

.menu a span { padding:8px 7px 11px 0px; display: block; float: left; }

.menu li { margin: 0; padding: 0; border: 0; display: block; float: left;	/* move all main list items into one row, by floating them */
	position: relative; /* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5; /* thus we need to apply explicit z-index here... */
}

.menu li a {
	display: block;
	height: 32px;
	cursor: hand;
}


.menu li li a:link, .menu li li a:visited {
	font-weight: bold;
	height: auto;
	display: auto;
	padding-top: 3px;
	padding-bottom: 3px;
}

.menu a, .menu a:link, .menu li a:visited {
	text-decoration: none; padding: 0px 0px 0px 7px; margin-right: 2px;
}

.menu ul a:link, .menu ul a:visited {
	width: 150px;
			font-weight: bold;
}

.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}
.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu li li { float: none; /* items of the nested menus are kept on separate lines */ 

}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 100;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}

.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0; left: 100%;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: "."; height: 0; display: block; visibility: hidden; overflow: hidden; clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */
/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	/* padding: 11px 30px 30px 30px; */
	padding: 2px 2px 2px 2px;
	margin: -10px 0 0 -30px;
	/* margin: -10px 0 0 -30px; */
	background: #cc6600; /* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.menu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.leftwrap { float: left; width: 685px; margin-right: 15px;  } 

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.content { float: right; width: 470px; padding: 15px 0px;} 

/* BreadCrumb */

.content .BreadCrumb { font-size: 10px; margin: 0px 0px 5px 0px; padding:7px 7px 0 7px; }
/*RIC .content .BreadCrumb { font-size: 10px; margin: 0px 0px 15px 0px; padding:7px;  } */
.content .BreadCrumb ul { list-style-type: none; margin: 0px; padding: 0px 0px 0px 20px; background: url(../Images/BreadCrumbIcoUl.png) no-repeat left center;}
.content .BreadCrumb li { background: url(../Images/trail_arrow.gif) no-repeat left center; margin: 0px 4px 0px 0px; padding: 0px 0px 0px 10px; text-decoration: none; display: inline;}
.content .BreadCrumb li a { margin: 0px; padding: 0px; text-decoration: underline;}
.content .BreadCrumbGreater { padding:4px; }

.content h1 { font-size: 18px; letter-spacing: -1px; font-weight: normal; padding: 5px 0px; margin: 0px 0px 5px 0px;}
.content h2 { font-size: 17px; letter-spacing: -1px;padding: 5px 0px; margin: 0px 0px 5px 0px; }
.content h3 { font-size: 14px; padding: 5px 0px; margin: 0px 0px 5px 0px; }

/* article */
.content .PostItem {display: block; clear: both;}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.Articles { margin: 20px 0px;}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.Featured { margin: 20px 0px;}
.Featured h1 { padding-left: 25px; background: url(../Images/FeaturedIcoHeading.png) no-repeat left center; margin-bottom: 10px; }

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.RecentArticles { margin: 20px 0px;}
.RecentArticles h1 { padding-left: 25px;  background: url(../Images/SummaryIcoHeading.png) no-repeat left center; margin-bottom: 10px;}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.Categories {}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.Blogs {}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* IE min height hack */ * html .Authors { height: 150px;} 
.Authors {min-height: 150px;}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.Pages {}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.News {}
News h1 { padding-left: 25px; background: url(../Images/NewsIcoHeading.png) no-repeat left center; margin-bottom: 10px;}
.News h2 { font-size: 14px; letter-spacing: 0px; padding: 0px; margin: 0px; font-family: Verdana, Arial, Helvetica, sans-serif; }
.News .Post { padding: 5px 0px;}
.News .Post .PostInfo { padding: 2px; margin: 0px; font-size: 9px; }
.News .Post .PostContent { font-size: 12px; letter-spacing: 0px; color:#333; line-height: 16px; word-spacing: 2pt;}
.News .Post .PostContent p { padding: 4px 0px; margin: 4px 0px; font-size: 11px; word-spacing: 2pt;}
.News .Post .readmore   { background: url(../Images/icon_FullStory.png) no-repeat left center; padding-left: 17px;}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.SearchResults {}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Recent Blogs */
.RecentBlogs { float: right; padding: 10px; margin: 5px 0px 10px 20px; width: 215px; font-size: 11px; border-bottom: #fff 10px solid; border-left: #fff 10px solid; }

.RecentBlogs h3 { padding: 3px; margin: 0px 0px 10px 0px;}
.RecentBlogs h4 { font-size: 11px; padding: 0px; margin: 0px; padding-top:3px;}

.RecentBlogs em {font-size: 10px; font-weight: normal; display: block; padding: 2px 0px; padding: 0px 0px 5px 0px; font-style: normal;}
.RecentBlogs em a { font-weight: normal; text-decoration: underline; }
.RecentBlogs em a:visited { text-decoration: underline; }
.RecentBlogs em a:hover { text-decoration: underline; }

.RecentBlogs a { text-decoration: underline; font-weight: normal; }
.RecentBlogs a:visited { text-decoration: underline; font-weight: normal;}
.RecentBlogs a:hover {  text-decoration: underline; font-weight: normal; }

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Post */
.Post { padding: 0px; margin: 0px;}

/* Post Author left side from the article */
.Post .PostAuthorDetails { float: right; padding: 10px; margin: 0px 0px 10px 20px; width: 200px; font-size: 11px; }
/*RIC .Post .PostAuthorDetails { float: right; padding: 10px; margin: 0px 0px 10px 20px; width: 200px; font-size: 11px; border-bottom: #fff 10px solid; border-left: #fff 10px solid; } */
.Post .PostAuthorDetails h2 { text-transform: uppercase; font-size: 14px; font-weight: bold; letter-spacing: normal; padding: 0px 0px 5px 0px; margin: 0px;}
.Post .PostAuthorDetails p { font-size: 10px; padding: 3px 0px; margin: 0px; }
.Post .PostAuthorDetails img { margin: 0px 10px 0px 0px; padding: 1px; border: solid 1px #ccc; float: left;}

/* Post Head */
.Post .PostHead {}
.Post .PostHead h1 { padding: 2px 0px; margin: 0px;}
.Post .PostHead h2 { padding: 2px 0px; margin: 0px; }

/* Post Info/Details */
.Post .PostInfo { padding: 2px 0px; margin: 0px 0px 10px 0px; font-size: 10px; color:#999; }
.Post .PostInfo li { padding: 0px; margin: 0px; display: inline; list-style-type: none;}
.Post .PostInfo a { color: #666; text-decoration: underline;}
.Post .PostInfo .Author { border-right: solid 1px #999; padding: 0px 5px 0px 0px;}
.Post .PostInfo .Time { border-right: solid 1px #999; padding: 0px 5px 0px 5px;}
.Post .PostInfo .Categ { border-right: solid 1px #999; padding: 0px 5px 0px 5px;}
.Post .PostInfo .Rating {padding: 0px 0px 0px 5px;}

/* Post Content */
.Post .PostContent { color: #666b71; margin: 0px; padding: 10px 0px; font-size: 12px; line-height: 16px; word-spacing: 2pt;}
.Post .PostContent img { margin: 0px 10px 10px 0px; padding: 1px; border: solid 1px #ccc;}
.Post .PostContent p { font-size: 12px; line-height: 16px; word-spacing: 2pt;}
.Post .PostContent a { text-decoration: underline;}

/* Post Content -Single Page */
.Post .PostContentSingle { color: #383f48; margin: 0px; padding: 10px 0px; font-size: 12px; line-height: 15px;}
.Post .PostContentSingle img {}
.Post .PostContentSingle h1 { padding: 10px 0px; margin: 0px 0px 5px 0px;}
.Post .PostContentSingle p { font-size: 12px; line-height: 15px; padding: 6px 0px; margin: 6px 0px;}

/* Post Bottom - Printer Version +  Full story + Visit Site */
.Post .PostBottom { padding: 5px 0px 15px 0px; margin: 0px;}
.Post .PostBottom li { padding: 2px 0px; margin: 0px 5px 0px 0px; list-style-type: none; display: inline; font-size: 10px; }
.Post .PostBottom li a { text-decoration: underline; }
.Post .PostBottom li a:visited { text-decoration: underline; }
.Post .PostBottom li a:hover { text-decoration: underline;}
.Post .PostBottom .FullStory { background: url(../Images/icon_FullStory.png) no-repeat left center; padding-left: 17px;}
.Post .PostBottom .VisitSite { background: url(../Images/icon_VisitSite.png) no-repeat left center; padding-left: 17px;}
.Post .PostBottom .PrinterVersion { background: url(../Images/icon_PrinterVersion.png) no-repeat left center; padding-left: 17px;}
.Post .PostBottom .EditArticle { background: url(../Images/icon_EditArticle.png) no-repeat left center; padding-left: 17px;}

/* Article More Related Info */
.Post .PostMore { padding: 0px; margin: 5px 0px 5px 0px;}
.Post .PostMore h1 { font-size: 23px; padding: 5px 0px; margin: 0px; }

/* Article Comments */
.Post .PostMore .Comment, .Post .PostMore .CommentAlt { padding: 5px 10px 10px 10px;}
.Post .PostMore .Comment .Title, .Post .PostMore .CommentAlt .Title { font-size: 12px; padding: 4px 3px; padding-left:40px; margin: 0px;}
.Post .PostMore .Comment .Details, .Post .PostMore .CommentAlt .Details { font-size: 9px; padding: 0px 3px; padding-left:40px; margin: 0px; color: #7E8996;}
.Post .PostMore .Comment .Reply, .Post .PostMore .CommentAlt .Reply { float: right; font-size: 9px; padding-top:4px; color: #7E8996; clear: both;}
.Post .PostMore .Comment .Content, .Post .PostMore .CommentAlt .Content { font-size: 11px; padding: 10px 0px 0px 5px; margin: 0px;}


/* Article Submit Comments*/
.PostSubmitComments { font-size: 10px;}

/* Article Navigation */
/* IE min height hack */ * html .ArtNav { height: 15px;} 
.ArtNav {font-size: 11px; line-height: 13px; background: #f8f8f8; padding: 6px; min-height: 15px;}
.ArtNav strong { letter-spacing: -1px;}
.ArtNavLeft { float: left }
.ArtNavRight { float: right }

/* Paging */
.Paging { text-align: right; padding: 6px; margin: 5px 0px; font-size: 10px; line-height: 15px;}
.Paging strong { letter-spacing: -1px;}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Category Top ( Only on the Category page)  */
.Category { padding: 0px; margin: 10px 0px 10px 0px; position: relative;}
.Category h1 { font-size: 25px; }
.Category .Desc { font-size: 15px; font-family: 'Georgia'; }
.Category .rss { position: absolute; right: 0px; top: 15px;}
.Category .SubCategory ul { padding: 15px 0px 5px 0px; margin: 0px;}
.Category .SubCategory li {  padding: 2px 0px 2px 15px; margin: 0px; font-size: 17px; list-style-type: none;}
/* .Category .SubCategory ul {  width: 38em; }
.Category .SubCategory ul li { float: left; width: 15em;  /* accommodate the widest item */ } */
/* stop the floating after the list */
.Category .SubCategory br { clear: left; }
/* separate the list from what follows it */
.Category .SubCategory { margin-bottom: 1em; }

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Authors A-Z - ( Only on the Author page) */
.AZ { padding: 0px; margin: 15px 0px; position: relative; font-size: 11px; font-weight: bold;}
.AZ ul { padding: 5px 0px; margin: 0px;}
.AZ li { padding: 0px; margin: 0px; list-style-type: none; display: inline;}
.AZ a { padding: 0px 3px; margin-right: 1px;}
.AZ a:visited { padding: 1px 3px;}
.AZ a:hover { padding: 1px 3px; }

.ListAuthors {}
.ListAuthors ul { margin: 0px; padding: 0px 0px 0px 20px; }
.ListAuthors li { line-height: 16px;}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* PageForms */

.PageForms tr td { padding: 10px; }
.PageForms tr td table tr td { padding: 3px; font-size: 11px; }
.PageForms tr td table tr td table tr td { padding: 0px; font-size: 11px; }

.PageForms {font-size: 10px; clear:both;}
/* RIC .PageForms {font-size: 10px;}*/
.PageForms form {}
.PageForms td { padding: 10px; }
.PageForms th { padding: 10px 2px 10px 10px; text-align: left; font-size: 13px; font-family: "Trebuchet MS"; font-weight: normal;}

.PageForms td table td { padding: 3px; font-size: 11px; }
.PageForms td table td input { padding: 3px; }
.PageForms td table td input.keyfield { border: inset 1px #ccc; padding: 3px; }
.PageForms td table td textarea { border: inset 1px #ccc; padding: 5px; }
.PageForms td table td select { border: inset 1px #ccc; padding: 2px; }

.PageForms .Button { font-size: 10px; padding: 2px 5px; font-weight: bold;}

.PageForms .Required { color:#FF0000;}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Message */
.Message { color: #ff4e00; background: url('../Images/warning.gif') #FFFFCC no-repeat 5px center; font-size: 11px; padding: 5px 5px 5px 25px; line-height: 16px; border: 1px solid #FFCC66;  margin-left: 5px;}
.ErrorMessage { color: #FF0000; background: url('../Images/exclamation.png') no-repeat left center; font-size: 11px; padding-left: 20px; line-height: 16px;}
.SuccessMessage { color: #FF0000; background: url('../Images/success.png') no-repeat left center; font-size: 11px; padding-left: 20px; line-height: 16px;}


/* tabs styles */
#tabnav { height: 26px; margin: 0px 0px 10px 0px; padding-left: 6px; background: url('../Images/tab_bottom.gif') repeat-x bottom;}
#tabnav li { margin: 0; padding: 0;	display: inline; list-style-type: none;}
#tabnav .navlinks {margin: 0; padding: 0; display: inline; list-style-type: none; float: right;}
.tablink { float: left; }
#tabnav .tablink a:link, #tabnav  .tablink a:visited 
{ float: left;	font-size: 10px; line-height: 14px; font-weight: bold; padding: 5px 10px 5px 10px; margin: 0px 4px 0px 0px ; text-decoration: none;}
#tabnav .tablink a:link.active, #tabnav .tablink a:visited.active {}
#tabnav a:hover {}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.ViewAll { background: url(../Images/ico_view_all.png) no-repeat left center; padding-left: 13px; font-size: 10px; font-weight: bold;}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.left { float: left; width: 200px; } 
.left .categories { padding: 0px 10px 10px 10px; margin-bottom: 10px; float: none;}
.left .categories h2 { font-size: 17px; padding: 5px 0px 5px 7px; margin: 0px; word-spacing: 1pt;}
.left .categories ul { padding: 10px; margin: 0px;}
.left .categories li { background: url(../Images/categories_ico_arrow.png) no-repeat left center; padding: 10px 0px 2px 15px; margin: 0px; list-style-type: none;}
.left .categories li a {  font-size: 14px; letter-spacing: 0px; font-weight: bold; line-height: 13pt;}
.left .categories li a:hover { color: #F09030 }


.left .search {}
.left .search h2 { font-size: 14px; display: block; height: 20px; padding: 10px; margin: 0px;}

.left .search form { padding: 0px 10px 10px 10px; margin: 0px;}
.left .search input { margin-bottom: 4px;}
.left .search select { margin-bottom: 4px;}
.left .search .input { border: inset 1px #ccc; font-size: 11px; padding: 2px;}
.left .search .arrow { width: 22px; height: 20px;}
.left .search .arrow:hover {}
.left .search .arrowIE { width: 22px; height: 20px;}

/*\ IE/Win min height hack */ * html .searcharrow { margin: -25px 0px 0px 150px; } /* */ 
.searcharrow { padding: 0px 5px 0px 0px; margin: -24px 0px 0px 150px; top: 0px; background: none; float: right;}
.left .search p { padding: 5px 0px; margin: 0px; font-size: 10px;}
.left .search p a { padding-left: 15px; }


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.right { float: left; width: 200px; padding-top: 15px;} 
.right ul { padding: 10px 10px 0px 10px; margin: 0px; } 
.right li { padding: 0px; margin: 0px; list-style-type: none;} 
.right h2 { background: url(../Images/right_bkg_h2.gif) no-repeat left top; padding: 10px 10px 0px 10px; font-size: 14px; margin: 0px;}

.right li a { font-size: 11px;}
.right li a:visited { }

.right .SiteMenu { background: #f8f8f8 url(../Images/right_bkg_bottom.gif) no-repeat left bottom; margin-bottom: 10px; padding-bottom: 10px;}
.right .SiteMenu li { font-size: 11px; letter-spacing: 0px; font-weight: bold; line-height: 12pt;}
.right .SiteMenu li a { padding: 2px 0px; display: block; border-bottom: solid 1px #e9e9e9; }
.right .SiteMenu li a:visited {padding: 2px 0px;}
.right .SiteMenu li a:hover {padding: 2px 0px;}

.right .ArticleOptions { background: #f8f8f8 url(../Images/right_bkg_bottom.gif) no-repeat left bottom; margin-bottom: 10px; padding-bottom: 10px; letter-spacing: 1px;}
.right .ArticleOptions ul { padding: 5px 10px; margin: 0px;}
.right .ArticleOptions li { padding: 2px 0px;}
.right .ArticleOptions .EmailToFried { padding-left: 15px; background: url(../Images/ArticleOptionsEmail.png) no-repeat left center;}
.right .ArticleOptions .PrintArticle { padding-left: 15px; background: url(../Images/ArticleOptionsPrint.png) no-repeat left center;}
.right .ArticleOptions .RemoveFavorites { padding-left: 15px; background: url(../Images/ArticleOptionsFavorites.png) no-repeat left center;}
.right .ArticleOptions .AddToFavorites { padding-left: 15px; background: url(../Images/ArticleOptionsFavorites.png) no-repeat left center;}
.right .ArticleOptions .ArticlesToRead { padding-left: 15px; background: url(../Images/ArticleOptionsRead.png) no-repeat left center;}
.right .ArticleOptions .RemoveRead { padding-left: 15px; background: url(../Images/ArticleOptionsRead.png) no-repeat left center;}

.right .PopularArticles { background: #f8f8f8 url(../Images/right_bkg_bottom.gif) no-repeat left bottom; margin-bottom: 10px; padding-bottom: 10px;}
.right .PopularArticles li { }
.right .PopularArticles li a { font-size: 10px; display: block; padding: 2px 2px; margin: 0px; border-top: solid 1px #e7e7e7; border-bottom: solid 1px #fff;}
.right .PopularArticles li a:visited { padding: 2px 2px; margin: 0px;}
.right .PopularArticles li a:hover { padding: 2px 2px; margin: 0px; text-decoration: none;}

.right .RightArticleHistory { background: #f8f8f8 url(../Images/right_bkg_bottom.gif) no-repeat left bottom; margin-bottom: 10px; padding-bottom: 10px; letter-spacing: 0px;}
.right .RightArticleHistory li { }
.right .RightArticleHistory li a { font-size: 10px; display: block; padding: 2px 2px; margin: 0px; border-top: solid 1px #e7e7e7; border-bottom: solid 1px #fff;}
.right .RightArticleHistory li a:visited { padding: 2px 2px; margin: 0px;}
.right .RightArticleHistory li a:hover { padding: 2px 2px; margin: 0px; text-decoration: none;}

.right .FavoriteArticles { background: #f8f8f8 url(../Images/right_bkg_bottom.gif) no-repeat left bottom; margin-bottom: 10px; padding-bottom: 10px; }
.right .ArticlesToRead { background: #f8f8f8 url(../Images/right_bkg_bottom.gif) no-repeat left bottom; margin-bottom: 10px; padding-bottom: 10px;}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.footer { padding: 10px 0px 10px 220px; width: 680px; margin: 0 auto; background: #f8f8f8; clear: both; color:#61614e;}
.footer p { padding: 0px; margin: 0px;  font-size: 10px;}

/* Paging */
.Paging { text-align: right; padding: 6px; margin: 5px 0px; font-size: 10px; line-height: 15px;}
.Paging strong { letter-spacing: -1px;}
.Paging a { display: inline; padding: 2px 5px; }
.Paging a:visited {}
.Paging a:hover { text-decoration: none;}
.PagingDisabled { display: inline; padding: 2px 5px;}
.PagingCurrentPageNumber { display: inline; font-weight: bold; padding: 2px 5px;}

.msgWarning
{
	background-image: url('../Images/warning.gif');
	background-repeat: no-repeat;
	background-position: 6px 7px;
	font: normal 11px/18px Tahoma;
	padding: 5px;
	margin-bottom: 15px;
	padding-left: 25px;
	border: dotted 1px #C0C0C0;
	background-color: lightyellow;
	color: #333333;
	text-decoration: none;
	display: '';
	z-index:1000;
	width: 220px;
}


/* Spread the Word */
.SpreadTheWord { }
.SpreadTheWord ul { padding: 0px; margin: 0px; }
.SpreadTheWord li { padding: 0px 2px; margin: 0px; list-style-type: none; display: inline; font-size: 11px; line-height: 18px;}

.ArticleExtraContent { font-size: 11px;}
.ArticleExtra ol, .ArticleExtra ol li { font-size: 11px;}
.ArticleExtra ul, .ArticleExtra ul li { font-size: 11px;}

.ArticleExtra ul { padding-top: 0px; padding-bottom: 0px; margin:0px; list-style-type: none;  padding-left: 20px;}
.ArticleExtra  li  {list-style-type: none;}
.ArticleExtra ul li a {  font-size: 11px; display: block; padding-left: 20px;}


/* Summary Article Attachment */
.AttachmentList { padding: 6px;}
.AttachmentList ul { padding-top: 0px; padding-bottom: 0px; margin:0px; list-style-type: none;  padding-left: 20px;}
.AttachmentList ul li { padding: 3px;}
.AttachmentList ul li a { font-size: 10px; display: block; padding-left: 20px; }
.AttachmentHeading { font-size: 11px; font-weight: bold; font-family:Arial,Helvetica,sans-serif; }

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.right .Newsletter { background: #f8f8f8 url(../Images/right_bkg_bottom.gif) no-repeat left bottom; margin-bottom: 10px;  font-size: 11px; padding-bottom: 10px;}
.right .Newsletter div { padding: 0px 5px 5px 10px;}
.right .Newsletter h2 { margin-bottom: 10px;}

/* Teaser Image Styles */
.FeatureImageSpan { font-size: 9px; margin: 5px;}
.FeatureImageCaption {  padding-left: 3px; padding-right: 3px;}

	.message.error {
		background-color: #f3dddd;
		border: 2px;
		border-color: #deb7b7;
		font-size: 1.2em;
	}
	

/* +++++++++++++++++++++++Green CSS Combined by Scott +++++++++++++++++++++++++++++++++ */

/* RIC body { background: #55604a url(../Images/GreenBkgBody.gif) repeat-y center; color:#2f2928; } */
body { background: url(../Images/bg.gif) repeat; color:#2f2928; } 

/* General Links */
a:link { color: #508801; } 
a:active { color : #508801; } 
a:visited { color : #508801; } 
a:hover { color : #ff3300; } 

#container { background: url(../Images/GreenBkgContainer.png) no-repeat left top;} 

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.header { background: url(../Images/GreenBkgHeader.png) no-repeat left bottom; } 

/* DropDown Menu ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.menu li a {
	color: #1c6d00; 
	background-image: url('../Images/GreenMenuLeft.png');
	background-repeat: no-repeat;
	background-position: left top;
}

.menu ul li a {
	color: #1c6d00; 
	background: none;
}

.menu a span {
	background: url('../Images/GreenMenuRight.png') no-repeat right top; 
	color: #1c6d00;
} 


.menu { 
}

.menu li li a:link, .menu li li a:visited {
	font-size: 12px;
	background-color: #edf4b1;
	color: #1c6d00;
}

.menu ul a:link {
	font-weight: normal;
}

.menu ul a:visited {
	font-weight: normal;
}

.menu li li a:hover {
	color: #002600;
}

.menu li:hover>a, .menu a:hover, .menu ul a:hover {
	background-position: 0% -32px; text-decoration: none;
	color: #002600;
}

.menu li:hover>a span, .menu a:hover span, .menu ul a:hover span, .menu li li a:hover span {
	background-position: 100% -32px;
	color: #002600;
}

.menu li li {	/* create borders around each item */
	
}
.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */
.menu>li:first-child>a, .menu li + li + li li:first-child>a {
	
}

/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
/* End Fix */

/* ie 6 only style */
* html .menu a:hover, * html .menu li li a:hover, * html .menu .adxmhoverA {		/* li:hover>a selector */
	background-position: 0% -32px; text-decoration: none;
	color: #002600;
}

* html .menu a:hover span, * html .menu li li a:hover span, * html .menu .adxmhoverA span {		/* li:hover>a selector */
	background-position: 100% -32px;
	color: #002600;
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* BreadCrumb */

.content .BreadCrumb { color: #990008;}
/*RIC .content .BreadCrumb { color: #990008; background: #f3f8c5; } */

.content h1 { color: #cc6600; border-bottom: dashed 1px #666; }
.content h2 { color: #cc6600;}
.content h3 { color: #cc6600;}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.News h2 { color:#666600;}
.News .Post .PostInfo { background:#f1f1f1; }

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.SearchResults {}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Recent Blogs */
.RecentBlogs { background:#f0f0f0; }
/* RIC .RecentBlogs { background:#f3f8c5; } */


.RecentBlogs h3 { background: #d8e47d; color:#333300; }

.RecentBlogs em { color: #666600; }
.RecentBlogs em a { color: #666600; }
.RecentBlogs em a:visited { color: #666600; }
.RecentBlogs em a:hover { color: #666600; }

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Post */
.Post { padding: 0px; margin: 0px;}

/* Post Author left side from the article */
.Post .PostAuthorDetails {background:#f0f0f0; border: solid 1px #508801; padding-left:10px;}
/* RIC .Post .PostAuthorDetails { background:#f3f8c5;  }*/
.Post .PostAuthorDetails h2 {}
.Post .PostAuthorDetails p { color:#333;}

.Post .PostBottom li a {}
.Post .PostBottom li a:visited {}
.Post .PostBottom li a:hover {}


/* Article Comments */
.Post .PostMore .Comment .Details { }
.Post .PostMore .Comment {background:#F8F8F8 url('../Images/commentquote.gif') no-repeat 5px 10px; border-top: 1px solid #DFDFDF; }
.Post .PostMore .CommentAlt {background:#FFFFFF url('../Images/commentquote.gif') no-repeat 5px 10px; border-top: 1px solid #DFDFDF;}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.Category .Desc { color:#333; }

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Authors A-Z - ( Only on the Author page) */
.AZ ul { background:#f0f0f0; }
/* RIC .AZ ul { background:#f3f8c5; } */

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* PageForms */
.PageForms form { border: solid 1px #508801;}
.PageForms th { background: #f0f0f0; border-bottom:solid 1px #508801;}

/* RIC .PageForms form { border: solid 2px #f3f8c5;}
.PageForms th { background: #f3f8c5;}*/

.PageForms .Button { background: #d8e47d; border: outset 2px #ccc; }


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* tabs styles */
#tabnav .tablink a:link, #tabnav  .tablink a:visited 
{ background: #f0f0f0; border: 1px solid #508801; color:#333300; }
/* RIC #tabnav .tablink a:link, #tabnav  .tablink a:visited 
{ background: #f3f8c5; border: 1px solid #d8e47d; color:#333300; }*/
#tabnav .tablink a:link.active, #tabnav .tablink a:visited.active 
{ border-bottom: 1px solid #fff; background: #fff; color:#86ac00;}
#tabnav a:hover { background: #fff;}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.left .categories { background:#a9b600 url(../Images/GreenCategBkgBottom.gif) no-repeat left bottom; }
.left .categories h2 {background: url(../Images/GreenCategBkgTop.gif) no-repeat left center; color:#660000; color:#ffffcc;}
.left .categories ul { background: #80a500 url(../Images/GreenCategBkgUL.gif) repeat-x top;}
.left .categories li a { color:#fff;}
.left .categories li a:hover { color:#ffe8c8;}

.left .search { background:#fde645 url(../Images/GreenSearchBkgBottom.gif) no-repeat left bottom;}
.left .search h2 { background: url(../Images/GreenSearchBkgTop.gif) no-repeat left top; color:#003300;}

.left .search .arrow { background: url(../Images/GreenSearchArrow.png) no-repeat;}
.left .search .arrow:hover { background: #ffd780 url(../Images/GreenSearchArrow.png) no-repeat 0 -20px; }
.left .search .arrowIE { background: #ffd780 url(../Images/GreenSearchArrow.png) no-repeat 0 -20px; }

.left .search p a { color:#666600; background: url(../Images/GreenSearchIco.png) no-repeat left center;}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.right h2 { color:#333300;}

.right li a {}
.right li a:visited {}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Paging */
.Paging a { border: 1px solid #508801; background: #f0f0f0; }
.Paging a:visited { background: #f0f0f0; border: 1px solid #508801;}
/* RIC .Paging a { border: 1px solid #508801; background: #f3f8c5; }
.Paging a:visited { background: #f3f8c5; border: 1px solid #508801;}*/
.Paging a:hover { background: #508801; color:#fff; text-decoration: none;}

.PagingDisabled { border: 1px solid #ccc; background: #e5e5e5; }
.PagingCurrentPageNumber { border: 1px solid #508801; background: #508801; color: #fff;}


/* Summary Article Attachment */
.AttachmentList { border:1px solid #BEBEBE; background-color: #F8F8F8; }
.AttachmentList ul li { background: url(../Images/attach.gif) no-repeat left top; }
.AttachmentHeading { color:#384C4B;}
/* Teaser Image Styles */
.FeatureImageSpan {background-color: #F5F5F5;}
.FeatureImageCaption {  border-bottom: 1px #CCCCCC solid;  }


/*
	Notice that IE has a display problem if the help link is on
	the last line of a container with no padding. If this is the
	case increase the padding bottom to at least 1px
*/


a.HelpLink {
	color:			Green;
	text-decoration:	none; 
	border-bottom:		3px double Green;
	line-height:		1.9em;
/*	border-bottom:		1px dashed Green; */
	cursor:			help;
}

a.HelpLink:hover {
	color:			Red;
	text-decoration:	none;
	border-bottom:		3px double Red;
	line-height:		1.9em;
/*	border-bottom:		1px dashed Red; */
}

.help-tooltip {
	position:	absolute;
	width:		250px;
	border:		1px Solid WindowFrame;
	background:	Infobackground;
	color:		InfoText;
	font:		StatusBar;
	font:		Status-Bar;
	padding:	3px;
	filter:		progid:DXImageTransform.Microsoft.Shadow(color="#777777", Direction=135, Strength=3);
	z-index:	10000;
}


.help-tooltip a,
.help-tooltip a:hover {
	color:		green !important;
	background:	none;
}

