@charset "utf-8";

/* @group general styles (Body styles, Resets, Links, Headings, etc.)
--------------------------------------------------------------------------------------------------------------*/

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-color:#0066CC;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	height: 100%;
}
	
p { 
	color: #FFFFFF;
	font-size:12px;
	padding-top:0px;
	margin-top:0px;
	
}
p:hover {
	font-family:Verdana, Geneva, Helvetica, sans-serif;
	color:rgba(255,255,0,1);	
	
}

/* @group page structure (Headers, footers, navigation, etc.)
----------------------------------------------------------------------------------------------------------------*/

.dg-main #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background:none;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	height:100%;
}

.dg-main #mainContent {
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0px;
	min-height: 480px;
	
}

.dg-main #mainContent p {
	-moz-transition-duration:2s;
	-moz-transition-property:all;
	-moz-transition-timing-function:ease-in-out;
	-webkit-transition-duration:2s;
	-webkit-transition-property:all;
	-webkit-transition-timing-function:ease-in-out;
	/*-webkit-column-count:3;
	-webkit-column-gap: 2em;
	-moz-column-count:3;
	-moz-column-gap:2em; */
	
}

.dg-main #mainContent H2 {
		color:#FF0;
		margin-bottom:5px;
	
}

.dg-main #RightSide {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding:5px;
	margin:5px;
	height:540px;
	background-color:#00FFFF;
	border-radius:20px;
	-moz-border-radius:20px;
	-webkit-border-radius:20px;
		
}

.dg-main #RightSide p {
		color:#000000;
		font-size: 10px;
	
}

.dg-main #RightSide h4 {
	margin-top:2px;
	-moz-transition-timing-function:ease-in-out;
	-moz-transition-duration:2s;
	-webkit-transition-timing-function:ease-in-out;
	-webkit-transition-duration:2s;	
	
}
.dg-main #RightSide h4:hover {
	color:#0000CC;
	
}

.dg-main #Header {
	height: 100px;
	width: auto;
	background-image:url(../Assets/images/headerbackground3.png);
	background-color:rgba(0,255,255,0.25);
	-moz-border-radius-topright:30px;
	-moz-border-radius-topleft:30px;
	-webkit-border-top-right-radius:30px;
	-webkit-border-top-left-radius:30px;	
		
}

.dg-main .Title {
	font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size:36px;
	margin-top:0px;
	margin-bottom:0px;
	padding-left: 150px;
	color:#FF0;
	font-weight:500;
	text-shadow:6px 2px 1px #000;
	-moz-transition-duration:2s;
	-moz-transition-timing-function:ease-in-out;
	-webkit-transition-duration:2s;
	-webkit-transition-timing-function:ease-in-out;
}

.dg-main .Title:hover {
	color:#FFFFFF;
	
}

.dg-main .Subtitle {
		font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
		font-size:18px;
		margin-top:0;
		margin-bottom:0;
		padding-left: 150px;
		color:#FFFFFF;
		text-shadow:6px 2px 1px #000;
	
}

.dg-main #Navbar {
	background: #000000;
	height: 30px;
	width: 780px;
}


.dg-main #Footer {
	background: #000000;
	height: 35px;
	-moz-border-radius-bottomleft:30px;
	-moz-border-radius-bottomright:30px;
	-webkit-border-bottom-left-radius:30px;
	-webkit-border-bottom-right-radius:30px;	
}

.dg-main #Footer p{
	color:#FFFFFF;
}	


/* @group compnents
---------------------------------------------------------------------------------------------*/
/* CSS3 Test */




