@charset "UTF-8";

/*  reset css */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*start regular formatting*/

body {
	font: 90% Helvetica, Arial, Verdana, sans-serif;
	line-height: 1.5em;
	letter-spacing: .15em;
	font-weight: normal;
	background: #000;
	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: #fff;
}


#container {
	width: 960px;
	text-align: left;
	margin: 20px auto 10px;
}

#side-a {
	float: left;
	width: 460px;
	padding: 10px;
	text-align: center;
}

#side-b {
	float: left;
	width: 460px;
	padding: 10px;
}

#footer {
	width: 100%;
	text-align: center;
	font-size: 60%;
	margin-top: 10px;
	color: #ccc;
	font-weight: normal;
}


/* page links*/
a {
	color: #ffff00;
	text-decoration: none;
}

a:hover {
color:#ccc;
}


a img {
	border: 0px;
}


/*misc*/

p {
	margin-bottom: 10px;
}


.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;
}