body { /* general styling rules */
	font-family: arial,verdana;
	direction: ltr;
	color: black;
	background-color: #CCD9FF;
}

/* goes by order of page layout */

#global { /* sets global width for page and makes sure the design sits in the center of the browser window */
	width: 800px;
	margin: auto;
	direction: ltr;
}

#header {
	height: 100px;
	border: 1px solid black;
	margin-bottom: 5px;
	background-image: url(photo/bartston_logo_en.jpg);
}

/* styling rules for the menu bar */

#menubar { 
	background-color: #003566;
	border: 1px solid black;
	margin-bottom: 2px;
	height: 23px;
}
.current { background-color: #005CB3; } /* changes the background color of the page ("li") currently loaded */

#menubar ul {
	list-style: none;
	margin: 0px; /*  to remove all default settings so that the menu bar will be as thin as possible */
	padding: 0px; /* ^ */
}

#menubar li {
	float: right; /* so that the ul's lis' will align in a row to the right */
	border-left: 1px solid black;
	width: 110px; /* width of each li per total page width */
	text-align: center;
}

#content { 
	border: 1px solid black;
	margin-bottom: 5px;
	padding: 10px;
	background-color: white;
}
#content p {
	padding-right: 5px;
	font-size: 90%;
}

#footer {
	border: 1px solid black;
	background-color: #00284D;
	color: white;
	margin-bottom: 5px;
	padding: 2px;
	font-size: 90%;
}

/* Text */

h1 { /* title heading */
	color: #5C4F3D;
	font-size: 120%;
	font-weight: bold;
}

/* Table */
/* styling of table elements */

table {
	font-weight: bold;
	border: 1px solid #518A6A;
	margin: auto;	
	background-color: white;
}
tr, td {
	width: 250px;
	text-align: center;
	padding: 3px;
}

.bg { background-color: #CCD9FF; }

.heading { 
	font-weight: bold;
	font-family: verdana;
	font-size: 120%;
	background-color: #998466; 
	color: white;
}

#warning {
	font-size: 110%;
	color: red;
	font-weight: bold;
}


/* Lists */

.list {
	font-size: 90%;
	line-height:2em;
	list-style: square;
}

/* Links */

a { 
	text-decoration: underline;
	color: blue;
}
a:hover { text-decoration: none; }

#footer a {
	color: white;
	text-decoration: underline;
}
#footer a:hover { text-decoration: none; }
#footer a:visited { color: white; }

#menubar a {
	font-weight: bold;
	color: white;
	text-decoration: none;
}
#menubar a:hover { font-size: 90%; }

/* Other */

.note {
	margin-left: 70px;
	margin-right: 70px;
	border: 1px solid black;
	text-align: center;
	background-color: #E9F2ED;
}

/* to show or not to show a border surrounding an image */
img.border { border: 3px solid black; }
img.noborder { border: none; }