/* 
	This holds all the styles for everything that isn't an exercise.
*/

/*small screens */

/* No mobile stylesheets for now.
@media only screen and (max-width: 768px) 
{
	.smallScreen
	{
		display: block;
	}
	
	.bigScreen
	{
		display: none;
	}
	
	
	header
	{
		background: #608399 ;
		display: block;
		margin: 0;
		padding: 0;
	}
	
	header h1
	{
		color: #efd668;
	}
	
	#topLink
	{
		text-decoration: none;
	}
	
	
	nav
	{
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		display: none;
		background: #fff;
		margin: 0;
		padding: 10px 0 25px 0;
		width: 100%;
		overflow-y: scroll;
	}
	
	nav a
	{
		padding-top: 2px;
		padding-bottom: 2px;
		text-decoration: none;
		color: #608399;
		font-size: 125%;
	}

	nav a:visited
	{
		color: #608399;
	}

	.navitem a:hover
	{
		text-decoration: underline;
	}
	
	nav ul
	{
		list-style-type: none;
		background: #fff;
		padding: 0 0 0 5px;
		margin: 0;
	}
	.navitem
	{
		text-transform: uppercase;
	}

	.navitem .navitem
	{
		text-transform: none;
		font-weight: normal;
	}
	
	nav h1
	{
		font-size: 150%;
		padding: 10px 0 5px 0 ;
		border: none;
	}

	#chList ul
	{
		padding-left: 0px;
	}
	
	#chList ul li
	{
		text-transform: uppercase;
	}

	#chList ul li ul li
	{
		padding-left: 5px;
		text-transform: none;
	}
	
	#chList ul li ul
	{
		
		border-bottom: 1px solid #ccc;
	}
	
	#mainContent
	{
		display: block;
		padding: 10px;
		background-color: #fff;
	}
	
	#navHeader
	{

	}

	footer
	{
		clear: both;
		width: 100%;
		text-align: center;
		background-color: #fff;
	}
}
*/

@media only screen and (max-width: 899px) 
{
    #mobileWarning {
        background-color: #fff;
        border: 1px solid red;
        padding: 5px;
    
    }
}

@media only screen and (min-width: 900px)
{
    #mobileWarning {display:none;}
}

/*big screens*/
/*
@media only screen and (min-width: 769px)
{
*/
	html
	{
		background-image: url('gfx/art.png');
		background-position: left bottom;
		background-repeat: no-repeat;
    	background-attachment: fixed;
	}

	.smallScreen
	{
		display: none;
	}
	
	.newSection
	{
		margin-top: 10px;
	}
	
	header
	{
		background: #b2d5f0;
		background-image: url('gfx/header.png');
		background-repeat: no-repeat;
		display: block;
		margin: 0;
		padding: 0;
		height: 85px;
		
		/* Keep header over the nav*/
		 z-index: 10;
  		position: relative;
  		top: 0;
  		left: 0;
		
	}
	
	header h1
	{
		display: none;
	}


	#bodyBlock
	{
		/*background: #b3d4f0; */
		max-width: 1425px;
	}

	nav
	{
		float: left;
		display: block;
		margin: 0;
		padding: 0px 0 10px 0;
		width: 205px;
		background: #b3d4f0;
		/*clear: none;
		z-index: 1;
		height: 100%;*/
	}

	nav ul
	{
		list-style-type: none;
		background: #b3d4f0;
		padding: 0 0 0 5px;
		margin: 0;
	}

	.navitem
	{
		padding: 3px 0px;
		text-transform: uppercase;
		font-weight: bold;
		line-height: 90%;
	}

	.navitem .navitem
	{
		text-transform: none;
		font-weight: normal;
		line-height: 100%;
	}

	.navitem a
	{
		color: #000;
		text-decoration: none;
	}

	.navitem a:hover
	{
		text-decoration: underline;
	}

	#navfoot
	{
		height: 360px;
	}


	#mainContent
	{
		clear: none;
		display: block;
		margin: 0 0 0 205px;
		padding: 10px;
		background-color: #fff;
		max-width: 1200px;
		min-height: 550px;
	}
	
	#mainContent h1 + h2
	{
		padding-top: 10px;
	}

  #chList {
	display: none;
    position: absolute;
    top: 83px;
    left: 200px;
    z-index:100;
  }



footer
{
	max-width: 1200px;
	margin: 0 0 0 205px;
	padding: 5px 10px;
}



/*
	
}
*/