/********************** CSS reset ********************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*** box-model reset rule***/
* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

/*** sets image width to 100% of their containing element ***/
img {
	max-width:100%;
	margin-bottom: -10px;
}
/********************** End CSS Reset ***********************/

body {
	background-color: #f5deb3; /*wheat*/
	font-size:18px; /*set default font size */
	line-height: 1.25em;
	font-family:Calibri; /* set default font */
	color:#000000;
}
/****************Typography*******************/

h1 {
	font-size: 28px;
	font-weight: bold;
	padding-top: 30px;
	text-align: center;
}

h2{
	padding-top: 20px;
	font-size: 24px;
	
}

h3 {
	font-size: 20px;
	font-weight: bold;
}	
	
h4 {
	font-size: 18px;
	font-weight: bold;
}

/**************end typography*******************/

#page {
	width:1200px;
	margin: auto;

}

#content {
	display:block; /* set up as a block */
	height:100%; /* set height to full page */
	max-width:1200px;
	max-height:100%;
	background-color:#ffffe0; /*ivory*/
}
#sitename {
	display: block;
	height: 55px;
	background-color: #ffffe0; 
}

#sitename h1 {
	text-align: left;
	padding-left: 25px;
}


a {
	color: #d2691e; /*Chocolate*/
}	

a:hover {
	color: fff; /*DarkSeaGreen*/
}


#nav ul {
	background:#ffffe0;	
	list-style-type:none;
	border-bottom: 2px solid #f5deb3; /*Wheat*/
	margin:auto;
	overflow:hidden;
}

#nav ul li a {
	font-size:18px;
	font-weight:bold;
	color:#000000;
	text-align:center;
	text-transform:uppercase;
	display:block;
	float: right;
	padding:10px 20px;
	text-decoration:none;
	
}
	
#nav ul li a:hover {
	color:#deb887; /*Burlywood*/
}

.container {
	overflow: hidden;
}

.column1 {
	max-width: 600px;
	float: left;
	padding-top: 25px;
	padding-bottom: 50px;
	margin-left: 80px;
}

.column1 ul {
	list-style-type: disc;
	padding-left: 20px;
}

.column2 {
	max-width: 300px;
	float: right;
	padding-top: 55px;
	margin-right: 80px;
}

#bullets {
	line-height: 2em;
}

#tagline {
	font-size: 16px;
	font-weight: bold;
	text-align: right;
	margin-right: 25px;
	padding-top: 10px;
}

#quote1  {
	padding-top: 75px;
	max-width: 300px;
	font-size: 16px;
	font-style: italic;
}

#quote2 {
	font-size: 16px;
	max-width: 300px;
	font-size: 16px;
	font-style: italic;
	padding-top: 25px;
}	

#attribution1{
	font-size: 16px;
	text-align: right;
	margin-right: 30px;
	padding-bottom: 25px;
}

#attribution2 {
	font-size: 16px;
	text-align: right;
	margin-right: 30px;
}	

#France {  
	border: 2px solid #deb887; /*Burlywood*/
	padding: 10px;
	margin: 30px 30px 30px 55px;
}
ul{
  margin-left: 40px;
}

#about {
	margin-left: 250px;
	margin-right: 250px;
	padding-top: 20px;
	padding-bottom: 50px;
}

#credentials {
	margin-left: 250px;
	margin-right: 100px;
	padding-top: 20px;
	padding-bottom: 50px;
}

#sessions {
	margin-left: 250px;
	margin-right: 250px;
	padding-top: 20px;
	padding-bottom: 50px;
}

#contact {
	margin-left: 250px;
	margin-right: 250px;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 250px;
}


td {
	padding: 10px 30px;
}

footer {
	overflow: hidden;
	background: #ffffe0; /*ivory*/
	text-align: center;
	font-size: 14px;
	font-style: italic;
	padding: 25px;
}


