/* ================================
    CSS STYLES FOR DotNetNuke
   ================================
*/   


/* PAGE BACKGROUND */
/* background color for the header at the top of the page  */
.HeadBg {
}

/* background color for the content part of the pages */
Body
{
}

.ControlPanel {
}

/* background/border colors for the selected tab */
.TabBg {
}

.LeftPane  { 
}

.ContentPane  { 
}

.RightPane  { 
}

/* text style for the selected tab */
.SelectedTab {
}

/* hyperlink style for the selected tab */
A.SelectedTab:link {
}

A.SelectedTab:visited  {
}

A.SelectedTab:hover    {
}

A.SelectedTab:active   {
}

/* text style for the unselected tabs */
.OtherTabs {
}
    
/* hyperlink style for the unselected tabs */
A.OtherTabs:link {
}

A.OtherTabs:visited  {
}

A.OtherTabs:hover    {
}

A.OtherTabs:active   {
}

/* GENERAL */
/* style for module titles */
.Head   {
}

/* style of item titles on edit and admin pages */
.SubHead    {
}

/* module title style used instead of Head for compact rendering by QuickLinks and Signin modules */
.SubSubHead {
}

/* text style used for most text rendered by modules */
.Normal
{
}

/* text style used for textboxes in the admin and edit pages, for Nav compatibility */
.NormalTextBox
{
}

.NormalRed
{
}

.NormalBold
{
}

/* text style for buttons and link buttons used in the portal admin pages */
.CommandButton     {
}
    
/* hyperlink style for buttons and link buttons used in the portal admin pages */
A.CommandButton:link {
}

A.CommandButton:visited  {
}

A.CommandButton:hover    {
}
    
A.CommandButton:active   {
}

/* button style for standard HTML buttons */
.StandardButton     {
}

/* GENERIC */
H1  {
}

H2  {
}

H3  {
}

H4  {
}

H5, DT  {
}

H6  {
}

TFOOT, THEAD    {
}

TH  {
}

A:link  {
}

A:visited   {
}

A:hover {
}

A:active    {
}

SMALL   {
}

BIG {
}

BLOCKQUOTE, PRE {
}


UL LI   {
}

UL LI LI    {
}

UL LI LI LI {
}

OL LI   {
}

OL OL LI    {
}

OL OL OL LI {
}
OL UL LI   {
}

HR {
}

/* MODULE-SPECIFIC */
/* text style for reading messages in Discussion */    
.Message    {
}   

/* style of item titles by Announcements and events */
.ItemTitle    {
}

/* Menu-Styles */
/* Module Title Menu */
.ModuleTitle_MenuContainer {
}

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/* Main Menu */

.MainMenu_MenuContainer {
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/* Login Styles */
.LoginPanel{
}

.LoginTabGroup{
}

.LoginTab {
}

.LoginTabSelected{
}

.LoginTabHover{
}

.LoginContainerGroup{
}

.LoginContainer{
}



	/*
			Vertical Accordions
		*/
		
		.accordion_toggle {
			display: block;
			height: 30px;
			background: url(_cimgs/accordian_off.jpg);
			padding: 0 10px 0 10px;
			line-height: 30px;
			color: #ffffff;
			font-weight: normal;
			text-decoration: none;
			outline: none;
			font-size: 12px;
			font-weight:bold;
			color: #192666;
			border-bottom: 1px solid #ddd;
			cursor: pointer;
			margin: 0 0 0 0;
		}
		
		.accordion_toggle_active {
			background: url(_cimgs/accordian_on.jpg);
			color: #ffffff;
		}
		
		.accordion_content {
			background-color: #ffffff;
			overflow: hidden;
		}
			
			.accordion_content h2 {
				margin: 15px 0 5px 10px;
				color: #0099FF;
			}
			
			.accordion_content p {
				line-height: 150%;
				padding: 5px 10px 15px 10px;
			}
			
		.vertical_accordion_toggle {
			display: block;
			height: 30px;
			width: 600px;
			background: url(images/accordion_toggle.jpg) no-repeat top right #a9d06a;
			padding: 0 10px 0 10px;
			line-height: 30px;
			color: #ffffff;
			font-weight: normal;
			text-decoration: none;
			outline: none;
			font-size: 12px;
			color: #000000;
			border-bottom: 1px solid #cde99f;
			cursor: pointer;
			margin: 0 0 0 0;
		}

		.vertical_accordion_toggle_active {
			background: url(images/accordion_toggle_active.jpg) no-repeat top right #e0542f;
			color: #ffffff;
			border-bottom: 1px solid #f68263;
		}

		.vertical_accordion_content {
			background-color: #ffffff;
			color: #444444;
			overflow: hidden;
		}

			.vertical_accordion_content h2 {
				margin: 15px 0 5px 10px;
				color: #0099FF;
			}

			.vertical_accordion_content p {
				line-height: 150%;
				padding: 5px 10px 15px 10px;
			}
  			
		/*
			Horizontal Accordion
		*/
		
		.horizontal_accordion_toggle {
			/* REQUIRED */
			float: left;	/* This make sure it stays horizontal */
			/* REQUIRED */

			display: block;
			height: 100px;
			width: 30px;
			background: url(images/h_accordion_toggle.jpg) no-repeat top left #a9d06a;
			color: #ffffff;
			text-decoration: none;
			outline: none;
			border-right: 1px solid #cde99f;
			cursor: pointer;
			margin: 0 0 0 0;
		}
		
		.horizontal_accordion_toggle_active {
			background: url(images/h_accordion_toggle_active.jpg) no-repeat top left #e0542f;
			border-right: 1px solid #f68263;
		}
		
		.horizontal_accordion_content {
			/* REQUIRED */
			height: 100px;	/* We need to define a height for the accordion as it stretches the width */
			float: left;	/* This make sure it stays horizontal */
			/* REQUIRED */
			
			overflow: hidden;
			background-color: #ffffff;
			color: #444444;
		}
			
			.horizontal_accordion_content p {
				width: 450px;
				line-height: 150%;
				padding: 5px 10px 15px 10px;
			}
					
					
    /* Container styling*/
    #horizontal_container {
      margin: 20px auto 20px auto;
      width: 680px;   
      height: 100px;    
    }
    
    #vertical_nested_container {
      margin: 20px auto 20px auto;
      width: 620px;
    }

/*r2i cloud */

#tagcloud{width:375px;position:relative;}
#tagcloud a.taghead{display:block; width:375px; height:30px; background:transparent url(r2icloud/heading_bg.png) no-repeat;}
#tagcloud a.taghead h2{padding:10px; *padding:0;}
#tagcloud a.taghead h2 span{background:transparent url(r2icloud/arrow_button.png) no-repeat right center; padding:10px; }
#tagcloud .tagflash{width:375px; height:155px; background:transparent url(r2icloud/flash_bg.png) no-repeat; text-align:center;}
#tagdd{position:absolute;top:30px; width:375px; height:204px; background:transparent url(r2icloud/dropdown_bg.png) no-repeat; z-index:999; display:none;}


.WikiGlossGroup{
clear:both;
}
.WikiGlossP{
	height:160px;
	float:left;
}
.WikiGloss{
	border: 1px solid #dddddd;
	width: 250px;
	margin:3px 10px;
}
.WikiGlossB{
	border-top: 1px solid #dddddd;
	background: #eeeeee;
	height:20px;
}
.WikiGlossBLeft{
	float:left; width: 100px;
}
.WikiGlossBRight{
	float:right; width: 100px;
	text-align:right;	
}

/* R2i & Forbes.com Landing Page */

.forbes_landing {
	padding-top:10px;
}

.forbes_left {
	float:left;
	position:relative;
	width:350px;
}

.forbes_right {
	float:right;
	position:relative;
	width:450px;
	text-align:center;
}

.forbes_title {
	color:#192666;
	font-weight:bold;
}

.rep_btn {
	background-image:url(btn_replicate1.png);
}

.rep_btn:hover {
	background-image:url(btn_replicate2.png);
}


a.quickSubmitBtn{
background-image:url(/Portals/0/quickSubmitBtn.jpg);
display: block;
width: 147px;
height: 41px;
float: right;
}
a.quickSubmitBtn:hover{
background-image:url(/Portals/0/quickSubmitBtn_over.jpg);
display: block;
width: 147px;
height: 41px;
}

h1, h1 .Head {
        color:#015289;
font-family:Trebuchet MS;
font-size:22px;
padding-bottom:5px;
}

.NewsTickerBox {
*margin-top: -10px;
_margin-top: -20px;
height:110px; 
overflow:hidden; 
position:relative;
}
.getconnected h2{float:left;}
.getconnected .g-links{float:right; margin:1px 2px 0 0; }
.getconnected {clear:both;}
.getconnected a{ text-decoration:underline;}

.scroll{
	position:absolute;
	display:block;
	height:110px;
	overflow:scroll;
	overflow-x:hidden;
	margin:0 10px 0 0;
	left:0;
	top:0;
	width: 250px;
	/* fixes has-layout-bug in IE6*/
	zoom:1;
	
}


