/* CSS Document */

* {
	margin:0;
	padding:0;
}

#page-container {
    position:absolute;
    width:100%;
    height: 100%;
    overflow: hidden;
}

.page {
    position: absolute;
    width: 100%;
    height: 100%;
    /*top: 0;*/
    
    /*activate the GPU for compositing each page */
    -webkit-transform: translate3d(0, 0, 0); text-indent:20px;
}

.stage-center {
    left: 0;
    top:0; 
}

.stage-left, .stage-right{
    height:100%;
	
}

.stage-left {
   /* left: -100%;*/
   -webkit-transform: translate3d(-100%, 0, 0);
}

.stage-right {
    /*left: 100%;*/
	-webkit-transform: translate3d(100%, 0, 0);
}


.transition {
    -moz-transition-duration: .5s;
    -webkit-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;
}

body {
    background-color: #000;
}


/*----------------------------nav bar*/
nav.primary > ul {
    text-align: center; 
}

nav.primary > ul li {
    list-style: none;
    display: inline;
    padding: 15px;
    border: 1px solid #fff;
	line-height:30px; 
}

nav.primary > ul li a {
    color: #fff;
}

/*----------------------------pages*/


#home-page {
    background-color: #6495ed;
}

#products-page {
    background-color: #a52a2a;
}

#about-page {
    background-color: #006400;
}

/* DEBUG */

#debug-console {
	
	position:absolute; top:200px;
	left:0;

}


