﻿@charset "utf-8";

/* ZERO OUT ALL MARGINS AND PADDING */
/*address, blockquote, dl, ol, ul, li, form, fieldset, h1, h2, h3, h4, h5, h6, p, pre {
	margin:0;
	padding:0;
}*/

.twoColHybRtHdr a {
	text-decoration:		none;
}

body  {
	font: 					11px Verdana, Arial, Helvetica, sans-serif;
	background:				#DDDDDD;
	margin: 				0; 			/*it's good practice to zero the margin and padding of the body element to account for differing browser defaults*/
	padding: 				0;
	text-align: 			left; 	/*this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector*/
	color: 					#000000;
}

body p {
	font-size:				1em;
}

.twoColHybRtHdr #dropshadow {
	width: 					930px; 
	background-image:		url('images/investment-newsletter.com/dropshadow-CrossSection.gif');
	background-repeat:		repeat-y;
	margin: 				0 auto; 	/*the auto margins (in conjunction with a width) center the page*/
} 

.twoColHybRtHdr #container { 
	position:				relative;			/* NOTE: container is Position: Relative so that the Login button (w/ Position: Absolute) can float
												   to the top right of it, above the Ad that is placed there */
	width: 					900px; /*80%;*/  		/*this will create a container 80% of the browser width*/
	background: 			#FFFFFF;
	margin: 				0 auto; 	/*the auto margins (in conjunction with a width) center the page*/
	border: 				1px solid #7A7A7A;
	text-align: 			left; 		/*this overrides the text-align: center on the body element.*/
} 

.twoColHybRtHdr #header { 
	padding: 				0 0px; 
	background:				#BABABA;
/*	background-image:		url('images/investment-newsletter.com/logo_900x80.gif'); */
/*	background-image:		url('images/investment-newsletter.com/header-Full.jpg'); */
	background-image:		url('images/investment-newsletter.com/banner_ad.gif');
	background-repeat:		repeat-none;
	margin:					0;
	height:					90px;
} 

.twoColHybRtHdr #headerMenu {
	background-image:		url('images/investment-newsletter.com/menu-Gradient.gif');
	background-repeat:		repeat-x;
	padding: 				0 0;  /*WAS: 0 10px;*/	/* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	clear:					both;
	font-size:				.8em;
	height:					20px;
	text-align:				center;
	margin-bottom:			0px;
}

.twoColHybRtHdr #headerMenu a {
}

.twoColHybRtHdr #header h1 {
	margin: 				0; 			/* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding:	 			10px 0; 	/* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.twoColHybRtHdr #headerMenu h2 {
	margin: 				0; 			/* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 				10px 0; 	/* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.twoColHybRtHdr #HomeShowcase {
	font-size:				.8em;
	margin-top:				10px;
	background: 			#EBEBEB; 	/*the background color will be displayed for the length of the content in the column, but no further */
}

/* 
Tips for sidebar1:

1. 	Since we are working in relative units, it's best not to use padding on the sidebar. 
	It will be added to the overall width for standards compliant browsers creating an 
	unknown actual width. 
2. 	Since em units are used for the sidebar value, be aware that its width will vary with 
	different default text sizes.
3. 	Space between the side of the div and the elements within it can be created by placing 
	a left and right margin on those elements as seen in the ".twoColHybRtHdr #sidebar1 p" 
	rule.
*/

.twoColHybRtHdr #sidebar1 {
	position:				relative;
	float: 					right; 
	width: 					310px; 		/*12em;*/ /* since this element is floated, a width must be given */
	/*background: 			#EBEBEB;*/ 	/*the background color will be displayed for the length of the content in the column, but no further */
	/*padding-top:			0px;*/
	/*padding: 				0 0;*/ 	/* top and bottom padding create visual space within this div  */
	height: 				100%;
  	margin: 				10px 10px 0 0; /* the left margin's value is equal to the header and footer which creates alignment down the left side of the document. */
	/*display:				inline;*/
}

.twoColHybRtHdr #sidebar1 h3, .twoColHybRtHdr #sidebar1 p {
	margin-left: 			10px; 		/* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 			10px;
}

.twoColHybRtHdr #ProductShowcase {
	height:					160px;
	width:					550px;	
	text-align:				center;
	/* background-image: 	url('images/investment-newsletter.com/ProductShowcase.jpg'); */
}

#ProductShowcase_1 {
	background:		transparent;
	float:			left;
	height:			160px;
	width:			270px;
	text-align:		center;
	background-image: 		url('members/images/showcases/MemberShowcase_550x200.jpg');
}
#ProductShowcase_2 {
	background:		transparent;
	float:			right;
	height:			160px;
	width:			270px;
	text-align:		center;
	background-image: 		url('members/images/showcases/MemberShowcase_550x200.jpg');
}

/* 
Tips for mainContent:

1. 	The space between the mainContent and sidebar1 is created with the right margin on 
	the mainContent div.  No matter how much content the sidebar1 div contains, the column 
	space will remain. You can remove this right margin if you want the #mainContent div's 
	text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. 	Be aware it is possible to cause float drop (the dropping of the non-floated mainContent 
	area below the sidebar) if an element wider than it can contain is placed within the 
	mainContent div. WIth a hybrid layout (percentage-based overall width with em-based 
	sidebar), it may not be possible to calculate the exact width available. If the user's 
	text size is larger than average, you will have a wider sidebar div and thus, less room 
	in the mainContent div. You should be aware of this limitation - especially if the 
	client is adding content with Contribute.
3. 	In the Internet Explorer Conditional Comment below, the zoom property is used to give 
	the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/

.twoColHybRtHdr #mainContent {
	width: 					550px;
	min-height:				1000px;
	height:					auto !important;
	height:					1000px;
 	margin: 				0 13em 0 10px; /* the left margin's value is equal to the header and footer which creates alignment down the left side of the document. */
} 

.twoColHybRtHdr #mainContentMember {
	width: 					550px;
	min-height:				910px;
	height:					auto !important;
	height:					910px;
 	margin: 				0 13em 0 10px; /* the left margin's value is equal to the header and footer which creates alignment down the left side of the document. */
} 

.twoColHybRtHdr #mainContent_simple {
	width: 					550px;
	min-height:				400px;
	height:					auto !important;
	height:					400px;
 	margin: 				0 13em 0 10px; /* the left margin's value is equal to the header and footer which creates alignment down the left side of the document. */
} 

.twoColHybRtHdr #mainContent_fullwidth {
	width: 					800px;
	min-height:				400px;
	height:					auto !important;
	height:					400px;
	padding:				0 30px;	/* microsite contents padding. */
 	margin: 				0 13em 0 10px; /* the left margin's value is equal to the header and footer which creates alignment down the left side of the document. */
}

.twoColHybRtHdr #footer { 
	padding: 				0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 

.twoColHybRtHdr #footerMenu {
	/*background-image:		url('images/investment-newsletter.com/menu-Gradient.gif');*/
	/*background-image:		url('images/investment-newsletter.com/footer_900x250.jpg');*/
	background-repeat:		repeat-x;
	padding: 				0 10px;  	/* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	clear:					both;
	font-size:				.8em;
	height:					20px;
}

.twoColHybRtHdr #footer p {
	margin: 				0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 				10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.twoColHybRtHdr #closingShowcase { 
	padding: 				0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	/*background-image: 		url('/images/investment-newsletter.com/footer_900x10_blue.jpg'); */
	/*background-color:		#5a68b1;*/
	background-image: 		url('images/investment-newsletter.com/footer.gif');
	background-repeat: 		no-repeat;
	height:					120px;
} 

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: 					right;
	margin-left: 			8px;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: 					left;
	margin-right: 			8px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:					both;
    height:					0;
    font-size: 				1px;
    line-height: 			0px;
}

/* ===================================================================================================== */
/* FONT TAGS ------------------------------------------------------------------------------------------- */
/* ===================================================================================================== */

h1 {
	font-size: 		1.7em;
	font-family:	Arial, Helvetica, sans-serif;
	color:			#0C2577;
	padding:		0em 0em .7em 0em;
	margin:			1.0em 0em 0em 0em;
	text-align:		center;	
}

h2 {
	font-size: 		1.2em;
	font-family:	Arial, Helvetica, sans-serif;
	color:			#0C2577;
	padding:		0em 0em 0.5em 0em;
	margin:			0em 0em 0em 0em;
	/* text-align:		center;	*/
}

h3 {
	font-size: 		1.1em;
	font-family:	Arial, Helvetica, sans-serif;
	color:			#0C2577;
	padding:		0em 0em 0.5em 0em;
	margin:			0em 0em 0em 0em;
	/* text-align:		center;	*/
}


/* ===================================================================================================== */
/* ADDED BY BRIAN -------------------------------------------------------------------------------------- */
/* ===================================================================================================== */
fieldset { padding:0; border:0; margin-top: 25px; }
.ui-button { 
	outline: 				0; 
	margin:					0; 
	padding: 				.1em 1em .1em; 
	text-decoration:		none; 
	font-weight: 			bold;
	font-size:				1em;
	cursor:					pointer; 
	position:	 			relative; 
	text-align: 			center; 
}
.ui-dialog .ui-state-highlight, .ui-dialog .ui-state-error { 
	padding: 				.3em;  
}

/* white link color for dark background */
a.white:link { color: #ffffff; }
a.white:active { color: #ffffff; }
a.white:visited { color: #e0e0e0; }
a.white:hover { color: #ffffc6; }

/* light grey link color for dark background */
a.lgreylink:link { color: #e0e0e0; }
a.lgreylink:active { color: #e0e0e0; }
a.lgreylink:visited { color: #bfbfbf; }
a.lgreylink:hover { color: #ffffff; }

/* red link color for dark background */
a.redlink:link { color: #ff3118; }
a.redlink:active { color: #ff3118; }
a.redlink:visited { color: #ff3118; }
a.redlink:hover { color: #ff9473; }

/* ===================================================================================================== */
/* BACKWARDS COMPATIBILITY ----------------------------------------------------------------------------- */
/* ===================================================================================================== */

<!-- old css required for contents still.... -->

	.newsletter{ font: 13px Arial,Helvetica,Sans-serif; }
	.copyright { font: 9px Arial,Helvetica,Sans-serif; }
	
	.djia { font: bold 14px; color: #cc0000; }
	.nasdaq { font: bold 14px; color: #009900; }
	.sandp { font: bold 14px; color: #ff9900; }
	.jasmts { font: bold 14px; color: #0000cc; }
	.display { font: bold 12px Arial,Helvetica,Sans-serif; color: #000000; }
	.indent { margin: 10px }
	
	.conditionsText { font: 12px Arial,Helvetica,Sans-serif; color: #000000; text-align: left; }
	.headingBlue1 { font: bold 22px Arial,Helvetica,Sans-serif; color: #0C2577; }
	.headingBlue2 { font: bold 18px Arial,Helvetica,Sans-serif; color: #0C2577; }
	.headingBlue3 { font: bold 16px Arial,Helvetica,Sans-serif; color: #0C2577; }
	.headingBlue4 { font: bold 14px Arial,Helvetica,Sans-serif; color: #0C2577; }
	.headingBlue5 { font: bold 12px Arial,Helvetica,Sans-serif; color: #0C2577; }
	.headingBlue6 { font: 12px Arial,Helvetica,Sans-serif; color: #0C2577; }
	.headingRed1 { font: bold 22px Arial,Helvetica,Sans-serif; color: #cc0000; }
	.headingRed2 { font: bold 18px Arial,Helvetica,Sans-serif; color: #cc0000; }
	.headingRed3 { font: bold 16px Arial,Helvetica,Sans-serif; color: #cc0000; }
	.headingRed4 { font: bold 14px Arial,Helvetica,Sans-serif; color: #cc0000; }
	.headingRed5 { font: bold 12px Arial,Helvetica,Sans-serif; color: #cc0000; }
	.headingRed6 { font: 12px Arial,Helvetica,Sans-serif; color: #cc0000; }
	.headingBlack1 { font: bold 22px Arial,Helvetica,Sans-serif; color: #0C2577; }
	.headingBlack2 { font: bold 18px Arial,Helvetica,Sans-serif; color: #0C2577; }
	.headingBlack3 { font: bold 16px Arial,Helvetica,Sans-serif; color: #0C2577; }
	.headingBlack4 { font: bold 14px Arial,Helvetica,Sans-serif; color: #0C2577; }
	.headingBlack5 { font: bold 12px Arial,Helvetica,Sans-serif; color: #0C2577; }
	.headingBlack6 { font: 12px Arial,Helvetica,Sans-serif; color: #0C2577; }
	.headingGreen1 { font: bold 22px Arial,Helvetica,Sans-serif; color: #0C2577; }
	.headingGreen2 { font: bold 18px Arial,Helvetica,Sans-serif; color: #0C2577; }
	.headingGreen3 { font: bold 16px Arial,Helvetica,Sans-serif; color: #0C2577; }
	.headingGreen4 { font: bold 14px Arial,Helvetica,Sans-serif; color: #0C2577; }
	.headingGreen5 { font: bold 12px Arial,Helvetica,Sans-serif; color: #0C2577; }
	.headingGreen6 { font: 12px Arial,Helvetica,Sans-serif; color: #0C2577; }
	
	.white { color: #ffffff; }
	.blue { color: #0C2577; }
	.red { color: #cc0000; }
	.black { color: #000000; }
	.green { color: #006600; }

/* ===================================================================================================== */
/* HACKS ----------------------------------------------------------------------------------------------- */
/* ===================================================================================================== */

/* VERTICALLY-CENTERED TEXT ============================================================================ */
/*	Reference: http://www.jakpsatweb.cz/css/css-vertical-center-solution.html */

	#outer {
		height:						25px;
		overflow:					hidden;
		position:					relative;
	}
	#outer[id] {
		display:					table;
		position:					static;
	}
	
	#middle {
		position:					absolute;
		top:						50%;
	}
	#middle[id] {
		display:					table-cell;
		vertical-align:				middle;
		position:					static;
	}
	
	#inner {
		position:					relative;
		top:						-50%;
	}
	#inner[id] {
		position:					static;
	}
