/***********************************************/
/* global.css                                  */
/***********************************************/

/* Normalize margin, padding */
* {
	margin:0;
	padding:0;
}

/* Normalize header font size */
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}

/* Remove list style from lists */
ol, ul {
	list-style: none;
}

/* Normalize font-style and font-width to normal */
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal;
}

 /* Normalize tables */
 table {
 	border-collapse: collapse;
	border-spacing: 0;
 }

/* Remove border from fieldsets and images */
fieldset, img {
	border: 0;
}

/* Left-align text in caption and th */
caption, th {
	text-align: left;
}

/* Remove quotation marks from q */
q:before, q:after {
	content: '';
}

/***********************************************/
/* HTML tag styles                             */
/***********************************************/ 
body{
	font-family: Arial,sans-serif;
	color: #333333;
	line-height: 1.166;
	margin: 0px;
	padding: 0px;
}

a:link, a:visited, a:hover {
	color: #006699;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;	/* overrides decoration from previous rule for hovered links */
}

/***********************************************/
/* Layout Divs - Entry Page                    */
/***********************************************/

#entryBoundary{
	width: 810px;
	position: absolute;
	left: 50%;
	margin-top: 50px;
	margin-left: -405px;
}

#entryBranding {
	background-image: url(../images/MARLEX_Logo.gif);
	background-repeat: no-repeat;
	margin: 0 0 5px 0;
	background-color: #FFFFFF;
	height: 32px;
}

#entryBranding h1, #entryBranding p{
	text-indent: -9999px;	/* Hide text off-screen */
	font-size: 1%;
}

#entryLogoBox{
	width: 170px;
}

#entryNav{
	float: right;
	padding: 12px 0 0 0;
	font-size: 13px;
	width: 660px;
	font-weight: bold;
}

#entryNav ul{
	float: right;
	width: 100%;
}

#entryNav li{
	float: right;
	list-style-type: none;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #777777;
}

#entryNav li.first_item{
	border-left: none;
}

/*	TODELETE
#entryNav li.longname{
	width: 12%;
}
*/

div#entryNav a{
	text-decoration: none;
	padding: 0 6px;
	display: block;
}

div#entryNav a:link{
	color: #006699;
}

div#entryNav a:hover{
	color: #0707a4;
}

#entryGraphics{
	padding: 6px 0;
	border-bottom: solid 1px #aaaaaa;
	border-top: solid 1px #aaaaaa;
	text-align: center;
}

#entryGraphics img{
	padding: 0 6px;
	border-left: solid 1px #aaaaaa;
}

#entryGraphics img.first_item{
	border-left: none;
}

#entryGraphicsRight{
}



#entryHeadlines{
	margin-top: 10px;
	font-size: 14px;
}

#entryHeadlines h2{
	font-weight: bold;
}

#entryHeadlines table{
	list-style: none;
	font-size: 11px;
	margin: 5px 5px 5px 5px;
}

#entryHeadlines tr{
}

#entryHeadlines td{
	padding-top: 5px;
}

#entryHeadlines td.datecolumn{
	width: 15%;
	vertical-align: top;
}

#entryHeadlines strong{
	font-weight: bold;
}

#entryFooter{
	text-align: center;
	border-top: solid 1px #aaaaaa;
	margin-top: 20px;
	font-size: 13px;
	font-weight: bolder;
}


/***********************************************/
/* Alsett Clearing Method                      */
/***********************************************/

.clearfix:after{		/* The period is the last thing before the div closes */
	content: ".";		/* Inline elements don't respond to the 'clear' property */
	display: block;		/* Ensure the period is not visible */
	height: 0;			/* Make the container clear the period */
	clear: both;		/* Further ensures the period is not visible */
	visibility: hidden;
}

/* A fix for IE Mac */
.clearfix {display: inline-block;}

/* The Holly hack for a bug in IE6 for Windows */
* html .clearfix {height: 1%;}
.clearfix {display: block;}

