/* @override http://emazon.imagineindigo.com/css/home-template.css */

/* Live editing in CSSEdit:
   To observe changes to this .css file in a live CSSEdit window, 
   include the full URL (of this .css file) within an @override command 
   (see above).
*/


body {
	padding: 0px;
	margin: 0px;
	background-color: #000;
}
 
#noscript {
	display: block;
	margin: 20px;
	padding: 10px;
	border: 6px double #c60b1e;
}

#noscript p {
	font-size: 14px;
	color: #fff;
	
}

#noscript span {
	font-weight: bold;
	color: #fff;
}
  
/* @group Page Structure Styles */

div#centered-structure {
	width: 800px;
	height: 600px;
	margin: 50px auto;
	background-image: url(/images/home-bg-2.gif);
	position: relative;
}
/* @end Page Structure Styles */

/* @group Menu Items */

.home-menu-item {
	display: block;
	width: 154px;
	height: 97px;
}

a#emazon-training,
a#who-is-emazon,
a#user-login {
	position: absolute;
	text-decoration: none;
	text-indent: -1999px;
}

a#emazon-training {
	top:  392px;
	left: 220px;
}
a#who-is-emazon {
	top:  397px;
	left: 447px;
}
a#user-login {
	width: 224px;
	height: 217px;
	top:  160px;
	left: 320px;
}

a#emazon-training {background-image: url(/images/main-train-up-2.png);}
a#who-is-emazon {background-image: url(/images/who-home-up-1.png);}

a#emazon-training:hover {background-image: url(/images/main-train-over-2.png);}
a#who-is-emazon:hover {background-image: url(/images/who-home-over-1.png);}


/* @end */



/* @group CSS "clearfix" solution */


/*	Background:
	A parent div with floated child div's will collapse.
	The CSS clearfix solution is used to clear the floated children.
	Add the class "clearfix" to any parent div eg:
		<div id="parent-div" class="clearfix">
	Then include the following CSS is in a your stylesheet:
*/

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */


/* @end css clearfix solution */