/* Dans default style */


/* Define the default page style. Black text, a gap at the 
 * top for the title bar, and the visitor's default sans-serif
 * font. Also a plain creamy-coloured background with an image
 * in the top left that doesn't repeat */
body {
    background-color: #EAEAE0;
    background-image: url(images/page-bg.gif);
    background-repeat: no-repeat;
    color: black;
    margin-top: 2em;
    font-family: sans-serif;
}

/* Hide the link that jumps to the navigation */
#skiplink { display: none; }

/* Make the logo image align to the middle of the page title */
#title img { vertical-align: middle;  }

/* Make inset images "float" to the left of the container, put
 * them in a black background with smaller white text and a 
 * margin around it so that text doesn't touch it. Then remove
 * the left-side margin so the image touches the edge of the 
 * column. */
.inset {
    float: left;
    font-size: 80%;
    text-align: center;
    margin: 0.2em; 
    margin-left: 0;
    color: white;
    background-color: black;
    line-height: 1.2em;
}

/* Links are bold and a deep purple in colour, red when the
 * mouse is over them. Visited links are shown darker. */
a, a:link { color: RGB(60,50,90); font-weight: bold; }
a:visited { color: RGB(50,40,80); }
a:hover { color: RGB(180,50,50); }



/* The navigation menu */
#menu {
/*    	position: absolute;*/
    	top: 0px;
left: 33%;
margin: auto;
    	width: 80%; 
    	background-color: RGB(60,50,90);
    	color: white;
    	padding: 0.2em;
    	text-align: center;
    	border-bottom: medium solid silver;

    	font-size: 90%;
}

/* The content of the menu is a list, but we want it to go
 * horizontally, not vertically so we make it display "inline".
 * Since the "bullet points" won't show, we put a light-gray 
 * line to the left of each item, and then one on the right of
 * the list for consistency */
#menu li { border-left: thin solid silver; padding: 0 0.5em; }
#menu li, #menu ul { display: inline; }
#menu ul { border-right: thin solid silver; margin-left: 0; padding-left: 0; }
/* Make the links in the menu white, instead of the default purple */
#menu a, #menu a:visited { color: white; }


#quote {
	width: 50%; 
	text-align: center;
	font-size: 80%;
	padding: 0.4em;
    	font-style: italic;
	margin-left: auto;
   	margin-right: auto;
	border: thin black solid;
}


/* Our main text column has a maximum width of 75ex, which is
 * about 15 average-length words. Otherwise it takes up 70%
 * of the width of the screen. The "auto" margins force the 
 * column into the center of the window, and "justify" makes
 * the spaces in the text stretch to make each line the same
 * length */
#maintext {
    width: 80%; 
    	background-color: RGB(200,200,200);
border-style:solid;
border-color:RGB(200,200,200);
border-width:25px;
    max-width: 75ex;
    font-size: 90%;
    font-style: normal;	
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

#whatsnew {
    width: 80%; 
    	background-color: RGB(200,200,200);
border-style:solid;
border-color:RGB(200,200,200);
border-width:25px;
    max-width: 75ex;
    font-size: 90%;
/*    font-style: italic;	*/
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

h2 {
    width: 70%; 
    max-width: 75ex;
    font-size: 130%;
    font-style: bold;	
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#title {
    width: 80%; 
    max-width: 75ex;
    font-size: 180%;
    font-style: normal;	
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}


#caption {
	width: 60%;
	text-align: center;
	font-style: italic;
	margin-left: auto;
    	margin-right: auto;
}

/* The list of addresses should take up the whole width of 
 * the column, so we make sure that there is nothing on the
 * left or right hand side */
.addresses { clear:both; }



/* Each address has a thin black border and a half-em of padding
 * on the inside. There's also a 1em margin on the top of each
 * address (but not on the sides) */
.address { 
    padding: 0.5em; 
    border: thin black solid;
    margin-top: 1em;
}


/* Make the first line of each address bold (it's the company 
 * name) */
.address:first-line { font-weight: bold; }



/* When printing, hide the background and the menu, remove the 
 * gap at the top, and use a serif font (easier to read on paper) */
@media print {
    body { background-color: white; margin-top: 0; font-family: serif; }
    #menu { display: none; }
}



/* On-screen only, increase the line spacing to make the text 
 * easier to read */
@media screen {
    #maintext { line-height: 1.4em; }
}
