
		@font-face {
			font-family: Myriad;
			src: url('_css/MyriadPro.otf');
		  }
		
		img.bg {
			/* Set rules to fill background */
			min-height: 100%;
			min-width: 1400px;
			
			/* Set up proportionate scaling */
			width: 100%;
			height: auto;
			
			/* Set up positioning */
			position: fixed;
			top: 0;
			left: 0;
		}
		
		@media screen and (max-width: 1024px){
			img.bg {
				left: 50%;
				margin-left: -700px; }
		}
		
		div#content {
			/* This is the only important rule */
			/* We need our content to show up on top of the background */
			position: relative; 
		
		}
		
		body {
			/* These rules have no effect on the functionality */
			/* They are for styling only */
			margin: 0;
			padding: 0 0 0 0;
			color:#FFF;
			background-color:#000;
			font-size:11px;
			font-family: Lucida Sans Unicode, Lucida Grande, sans-serif;
		}
		
		.glowingheadline {
			color: #FFF;
			font-size:18px;
			text-shadow: #FFF 0px 0px 10px;
			font-family: Myriad, Verdana, sans-serif;
		}

		
		a:link {
			color: #FFF;
			text-decoration: underline;
		}
		a:visited {
			text-decoration: underline;
			color: #FFF;
		}
		a:hover {
			text-decoration: none;
			color: #FFF;
		}
		a:active {
			text-decoration: underline;
			color: #FFF;
		}

      /* basic styles for div layout option */
      div.svlinks {
        text-align: left;
		position: relative;
      }
      div.svlinks div {
        clear: both;
      }
      div.svlinks img {
        float: left;
        margin-bottom: 10px;
        border-color: #FFF;
      }
      div.svlinks p {
        float: left;
        width: 100px;
        padding-left: 10px;
      }
      .clearboth { /* see http://www.pixelsurge.com/experiment/clearers.htm */
      	clear: both;
      	height: 0;
      	margin: 0;
      	font-size: 1px;
      	line-height: 0;
      }