@charset "utf-8";

/* 

Desktop & Mobile Version CSS

Chris Levine
chris@videowave.tech

 */

body {
	font-family:Arial, Helvetica, sans-serif;
	background: center top fixed repeat url(sndwav_bkgd.png) #240050;
	margin: 0;
	padding: 0;
	color: #fff;
}
.SmallCapping {
	font-variant:small-caps;
/*	font-style:italic; */
}

/* {
	outline: 1px solid red;
}


/* ~~ this fixed width container surrounds the other divs ~~ */
.containment {
	width: 850px;
	background-image: grey;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}


.Sample_Title {
  font-variant:small-caps;
  font-size: 20px;
  text-align:center;
}

/* ~~ The header ~~ */
.header {
	background: url(header.png) center no-repeat;
	background-color:  #311850;
	padding-top: 15px;
	min-height: 121px;
	border: medium outset #6600cc;
	-moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;


}

/* ~~ The content ~~ */
.content {
	margin-left:5px;
	margin-top:20px;
	margin-bottom:20px;
	width:auto;
	min-height: 800px;
	padding: 10px 0px 20px 15px; /* top, right ,bottom, left */
	background-color: #46009C;
	
	border: medium outset #6600cc;
	-moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;

}

.MainLT {
	float: left;
	width: 400px; 
}

.MainRT {
	float: right;
	padding: 20px;
}


/* ~~ The sidebar / nav bar ~~ */
.nav_menu_bar {
	width: auto;
	margin-top: 20px;
	margin-bottom: 10px;	
}


ul.nav_menu {
  list-style-type: none;
  width: auto;
  margin: 0 auto;
  padding: 5px;
  overflow: hidden;
  background-color: #8441D7;
  
  border: medium outset #6600cc;
  
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
  
  text-align:center;
}

ul.nav_menu li{
  font-variant:small-caps;
  float: left;
  font-size: 20px;
  padding-right: 5px;
}

ul.nav_menu a, ul.nav a:visited {
  display: inline-block;
  color: white;
  text-decoration: none;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  
  padding: 10px 25px;
}

ul.nav_menu a:hover, ul.nav_menu a:active, ul.nav_menu a:focus {
  background: #46009C;
  color: #FFF;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
}

li a:hover:not(.active) {
  background-color: #46009C;
}

.active {
  background-color: #46009C;
}

/* ~~ The footer ~~ */
.footer {
	background: #8441D7;
	margin-bottom: 20px;

	border: medium outset #46009C;
	-moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;

	padding-bottom: 10px;
	padding-top: 5px;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}




/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/
/*********************************************************************/






/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0px;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #F00;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #F00;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	font-weight: normal;
}


/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0px 5px 5px 25px; /* top, right ,bottom, left */
}


/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}


/* Hide contents */
@media only screen and (min-width: 600px) {
.footer_m {
	 display: none;
}
}


@media only screen and (max-width: 600px) {

/* Hide contents */
.footer, .MainRT {
	 display: none;
}

.attention {
	display:block;
}

/* ~~ this fixed width container surrounds the other divs ~~ */
.containment {
	width: 90%;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}


/* ~~ Main Page, Awards ~~ */
.MainLT {
	width: 90%; 
}


/* ~~ The header ~~ */
.header {
	background: url(2022_VW_Icon_website.png) center no-repeat;
}

/* ~~ The footer mobile ~~ */
.footer_m {
	background: #8441D7;
	padding-bottom: 10px;
	padding-top: 10px;
	position: relative;
	color: #000;
	clear: both;

	border: medium outset #46009C;
	-moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;

}


/* ~~ Body Adjustments ~~ */
body {
	background: #240050;
}

/* ~~ The content ~~ */
.content {
	display:inline-block;
	padding: 0;
	margin-left:0px;
}

}