/*
Peace Corps Kids Site
globals_pea_kids.css

description:
Removes default browser styling on many elements and creates
more general, cross-browser rules.

version: 2008-04-04
author: Greg MacWilliam, Threespot
		David Durst, Threespot
		David Wood, Threespot

copyright: 2008
-------------------------------------------------------- */

/*
Table of Contents
	- init
	- clearing
	- specific
*/


/*------- init -------- */


/* Clear all elements of padding and margin, position them relative, and assign base font */
* {
	margin:0;
	padding:0;
	position:relative;
	font-family:Arial, Helvetica, sans-serif;
}

/* Assign master bkg to html doc, center the body, position the html statically due to ie6 error with scrolling */
html {
	position:static;
	padding-bottom:40px;
}

/*------- clearing -------- */

.clear {
	clear:both;
}

/*------- specific -------- */


/* Body
----------------------------- */

body {
	font:12px Arial, Helvetica, sans-serif;
	text-align:center;
	padding:0;
	margin:0;
}

body.launch {
	background:#fcd379 url("../images/bg.gif") 0 0 repeat-x;
}

body.game {
	background:#4b1108 url("../images/gamebg.gif") 0 0 repeat;
}

/* Links
----------------------------- */

a {
	color:#873512;
	text-decoration:none;
}

a:hover {
	color:#8E4413;
	text-decoration:underline;
}

a.intro {
	display: block;
	width:100%;
	height:100%;
	text-align:left;
	text-indent: -9999px;
	overflow: hidden;
	background:url("../images/noflash.gif") 0 0 no-repeat;
}

a.flash {
	background:url("../images/flash.gif") 0 0 no-repeat;
}

/* Game block
----------------------------- */

.launch #game {
	width:100%;
	height:100%;
}

.game #game {
	width:auto;
	height:auto;
}


/* Game Frame block
----------------------------- */

#frame {
	margin:30px auto 0;
}

.launch #frame {
	width:726px;
	height:560px;
	border:none;
}

.game #frame {
	width:900px;
	height:650px;
	border:1px solid #e27825;
}

/* Window-close link
----------------------------- */

.launch #close {
	display:none;
}

.game #close {
	display:block;
	width:900px;
	font-size:12px;
	text-align:right;
	text-transform:uppercase;
	margin:15px auto;
}

/* Resources link
----------------------------- */

.launch #resources {
	display:block;
	margin:25px auto;
}

.game #resources {
	display:none;
}

/* No Javascript message
----------------------------- */

div.nojavascript {
	color:#873512;
	font-size:12px;
	font-style:italic;
	margin:25px 0 10px;
}

/* Challenge Menu styles
----------------------------- */

#menu {
	width:400px;
	text-align:left;
	border:1px solid #e27825;
	background-color:#FFFFFF;
	padding:40px;
	margin:30px auto;
}

#menu h2 {
	margin:0 0 25px;
}

#menu ol li {
	padding:0;
	margin:0 0 0 25px;
	line-height:22px;
}

#menu a {
	color:#e27825;
}
