/* mk3d.com style sheet that drives the layout of the entire page */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color: #FFFFFF;
}

/* defining the main frame that will house all other elements and always be centered in the middle of the page */
#mk_frame {
	width: 850px;
	min-width: 850px;
	height:900px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none; /* this overrides the text-align: center on the body element. */
	page-break-after: auto;
}

/* creates the header container */
#mk_header {
	background: #FFFFFF;  /* change this color once the layout is established */
	width: 850px;
	height:100px;
	padding: none;
	overflow: hidden;
}

/* creates the container that houses the link images in the header */
#mk_header_links { 
	background: #FFFFFF;  /* change this color once the layout is established */
	width: 800px;
	height:75px; 
	padding: 5px 25px 0 25px;  
}  

/* creates the middle portion that will host all the linkable content */
#mk_main {
	padding: none;
	width: 850px;
	height:650px;
	overflow: none;
	background: #FFFFFF;
}

/* creates a sub-container in the main frame for content that is bigger than the available area */
#mk_main_content {
	background: #FFFFFF;
	width: 800px;
	height:645px;
	overflow: auto;
	padding: 5px 25px 0 25px;
	
}

/* creates the footer container. */
#mk_footer { 
	padding: none;
	width: 850px;
	height:150px; 
	background:#FFFFFF;
} 

#mk_footer_links { 
	background: #FFFFFF;  /* change this color once the layout is established */
	width: 800px;
	height: 75px; 
	padding: 5px 25px 0 25px;  
} 

/* defines font properties across various elements of the page */
body,td,th {
	font-size: small;
	color:#666666;
	padding-top: 10px;
	padding-bottom: 10px;
}

p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: 1ems;
	font-size:small;
	margin: 0;
	padding: 0;
}

h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:small;
	text-align:right;
	margin: 0;
	padding: 0;
}

h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:small;
	text-align:left;
	margin: 0;
	padding: 0;
}

a {
	font-size: small;
	color:#333333;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #333333;
}
a:hover {
	text-decoration: none;
	color: #CCCCCC;
}
a:active {
	text-decoration: none;
	color: #333333;
}

ul.mk_bulleta {
	list-style-image:url(images/mk_bullet_10.gif);
	margin: 0;
	margin-left: 50px;
	padding: 0;
}
	
ul.mk_bulletb {
	list-style-image:url(images/mk_bullet_15.gif);
}
	
a:focus {
    outline: none;
}

/* other stuff */
a img {
	border: none;
}

