/* -- basic HTML elements -- */

html {
	background: #000;
}

body {
	width: 750px;
	margin-left: auto;
	margin-right: auto;
	font-family: sans-serif;
	color: #ccc;
	background: #000;
}

h1, h2, h3, h4 {
	font-family: serif;
}

a {
	color: #fc9;
}

/* -- classed elements -- */



/* -- specific divs -- */

#container {
	/* background: red; */
}

#header {
	height: 100px;
	font-family: serif;
	/* background: orange; */
}

#header a {
	text-decoration: none;
}

#header h1 {
	position: relative;
	top: 20px;
	color: #d60;
}

#header h1 span {
	color: #f00;
	text-autospace: 10px;
}

#header h2 {
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	position: relative;
	right: 400px;
	bottom: 150px;
	color: #555;
}

#announce {
	width: 200px;
	float: right;
	clear: right;
	/* background: yellow; */
}

#announce ul {
	list-style-type: none;
	margin-left: 0;
	padding-left: 0;
}

#content {
	margin-right: 200px;
	padding-right: 10px;
	font-size: 12px;
	/* background: green; */
}

#navbar {
	width: 200px;
	float: right;
	clear: right;
	/* background: blue; */
}

#navbar ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#navbar a {
	display: block;
	width: 200px;
	height: 30px;
	font-family: serif;
	text-decoration: none;
}

#navbar a:hover {
	background: #333;
}

#selectSkin_div {
	width: 200px;
	float: right;
	clear: right;
	/* background: purple; */
}