@charset "utf-8";
body {
	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: #FFF;
}


/* My divs */
.oneColLiqCtr #container {
	width: 80%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: 800px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.oneColLiqCtr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align: center;
}
#who {
	text-align: center;
	font-size: 16px;
	width: 350px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
}
#logo {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	padding-top: 60px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 0px;
	position: relative;
}
#mywork {
	position: relative;
	display: none;
	margin-top: 10px;
}
img {
	border-style: none;
}
/* Typography */
p {
	font-family: "MS Serif", "New York", serif;
	font-size: 16px;
	color: #333;
}
h1 {
	font-size: 16px;
	line-height: 1.4;
	font-weight:bold;
}
h2 {
	font-size: 15px;
	line-height: 1.4;
	font-weight:bold;
}
h3 {
	font-size: 14px;
	line-height: 1.4;
	font-weight:bold;
}
a {
	text-decoration: underline;
	color: #333;
}
a:hover {
	text-decoration: none;
}

