@charset "UTF-8";
body {
	font: 100%/1.4 "Open Sans", Arial, sans-serif;
	background-color: #ffffff;
	margin: 0;
	padding: 0;
	color: #000;
}
p {
	margin: 0px;
	padding: 0px;
	margin-top: 0;
}
img {
	border: none;
}
/* ~~ Element/tag selectors ~~ */
ul
{
padding: 0px;
margin: 20px;
}
ul li
{
background-image: circle;
background-repeat: no-repeat;
background-position: 0px 5px; 
padding-left: 0; 
}
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #963241;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #963241;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 100%;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}
.mtwlogo {
	position: absolute;
	padding: 10px 20px 0 20px;
	width:150px;
}
@media (max-width: 900px) {
	.mtwlogo {
	left: 43% !important;
	width: 80px !important;
	padding: 10px 0 !important;
	}
}
.wrapper {
	width: 100%;
	margin: 0 auto;
}
/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	height: 50px;
	background-color: #cccccc;
	background-repeat: no-repeat;
}
.order {
	position: relative;
	top: 6px;
	left: 760px;
	width: 145px;
}
#addressblock {
	width: 246px;
	height: 166px;
	background-color: #4299df;
	/*background-image: url(../images/addressbgd.png);*/
	text-align: center;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 12px;
	line-height: 12px;
	color: #666;
}
.content {
	padding: 16px 20px 20px 40px;
	width: 650px;
	background-image: url(../images/pagetop.png);
	background-repeat: no-repeat;
}
.contentrenew {
	padding-top: 16px;
	padding-right: 20px;
	padding-left: 20px;
	padding-bottom: 20px;
	background-repeat: no-repeat;
}
.contentWrapper {
	width: 100%;
	background-color: #FFF;
	background-image: url(../images/bgdContent.png);
	background-repeat: repeat-y;
	border-bottom: solid 2px #FFF;
}
.renewWrapper {
	width: 100%;
	background-color: #FFF;
	border-bottom: solid 2px #FFF;
}
/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
	background-color: #CCC49F;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

/* ~~ miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
