/* Stylesheet.css */

/* Wrapper */
#wrapper{
/* Set layout width */
width: 50em;
/* Center the layout */
margin: auto;
}

/* Wrapper with border */
#mywrapper{
/* Set layout width */
width: 50em;
/* Center the layout */
margin: auto;
border: medium solid #6699cc;
}

/* Page header style*/
#header{
width: 100%;
background-image: url("");
background-repeat: repeat;
/* border-bottom: thin solid #191970; */
}

/* Page footer style */
#footer{
clear: both;
width: 100%;
background-image: url("");
background-repeat: repeat;
/* border-top: thin solid #191970;
padding-top: 4px; */
} 

/* Body text and page background */ 
body{
margin: 0;
padding: 0; 
font-family: 'Book Antigua', Times, serif; 
font-size: medium; 
color: #00008b; 
background-color: #6699cc; 
/* Last two lines below commented out. If you want to use */ 
/* a picture background, remove comment characters */ 
/* and set the url to a valid background image */ 
background-image: url("vie_1877.gif"); 
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
}

/* Style for main content column */
#main{
       margin: 1em;
       /* margin-left must equal
       total width of left sidebar */
       margin-left: 10em;
}

/* Style for main content column */
#main.default{
}

/* Style for sidebar column */
#sidebar{
           float: left;
           display: inline;
           padding: 0;
           margin: 1em;
           width:8em;
/* Total width is 10em */
} 

/* Level-1 Headings */ 
h1{
margin: 0; 
font-family: Georgia,"Times New Roman",Times,serif; 
font-size: xx-large; 
color: #00008b; 
text-align: center; 
} 

/* Level-2 Headings */ 
h2{ 
font-family: Georgia,'Times New Roman',Times,serif; 
font-size: large; 
color: #00008b; 
} 

/* Level-3 Headings */ 
h3{ 
font-family: Georgia,'Times New Roman',Times,serif; 
font-size: medium; 
color: #00008b; 
text-align: center; 
} 

/* Blockquote with blue background */ 
blockquote.tip { 
background-color: #CCCC99;
} 

/* Blockquote with pink background */ 
blockquote.warn { 
background-color: #ff99cc; 
} 

/* Float image to left of paragraph */ 
img.floatLeft{ 
float: left; 
margin-right: 5px; 
} 

/* Float image to right of paragraph */ 
img.floatRight{ 
float: right; 
} 

/* Center image between margins */ 
div.center{ 
width: 100%; 
text-align: center; 
} 

/* Custom bullet for bulleted lists */ 
ul{ 
list-style-image: url(""); 
} 

/* Style for tables of thumbnail images */ 
table.thumbs{ 
text-align: center; 
border-collapse: collapse;
margin: auto; 
} 

/* Style for table cells that contain thumbnails */ 
td.thumbs{ 
border: solid 1px #CCCCFF; 
padding: 10px; 
} 

/* Style for thumbnail images */ 
img.thumbs{ 
width: 100px;
height: 80px;
border-width: 0px; 
}

/* Style for tables containing text */
table.text{
background-color:#CCCC99;
width: 800px;
text-align: center; 
border-collapse: collapse;
margin: auto;
}

/* Style for tables containing text */
table.links{
background-color:#996633;
width: 800px;
text-align: center; 
border-collapse: collapse;
margin: auto;
}  

/* Create a class of link named 'mylink' */
a.mylink
	{
	font-family: Georgia,"Times New Roman",Times,serif;
	font-size: 10pt;
	font-weight: bold;
	text-decoration: none;
	}
a.mylink:link
	{
	color: #00008b;
	}
a.mylink:visited
	{
	color: #990099;
	}
a.mylink:hover
	{
	color: #FFFFFF;
	}
a.mylink:active
	{
	color: #990099;
	}
    
    /* Class of horizonal rule */
hr.short{
width: 350px;
text-align: left;
}

hr.center{
width: 350px;
text-align: center;
} 	
