/* CSS file */
body {
	font-family: verdana, arial, sans-serif;
	font-size: 0.7em;
	background: #ccc;
	margin: 0px;
}

a[hreflang]:after {
	content: " ["attr(hreflang)"]";
	font-size: 0.6em;
}

#container {
  width: 700px;
  height: 100%;
  margin: 5px auto 5px auto;
  padding: 10px;
  background: #fff;
}

#header {

}

#header h1 {
	text-align: center;

}

#navigation {

}

/* Navigation list */
ul.nav,
.nav ul {
/*Remove all spacings from the list items*/
  margin: 0;
  padding: 0;
  cursor: default;
  list-style-type: none;
  display: inline;
}

ul.nav{
	display: table;
}
ul.nav>li{
	display: table-cell;
	position: relative;
	text-align: center;
	font-weight: bold;
}

.nav ul li a{
/*Make the hyperlinks as a block element, sort of a hover effect*/
	display: block;
	padding: 2px 10px;
}

/*** Menu colors (customizable) ***/

ul.nav,
.nav ul,
.nav ul li a:link,
.nav ul li a:visited{
	background-color: #fff;
	color: #369;
}

ul.nav li:active,
.nav ul li a:active{
	background-color: #bbb;
	color: #369;
}
ul.nav li:hover,
.nav ul li a:hover,
.nav ul li.here a{
background-color: #369;
	color: #fff;
}


ul.nav,
.nav ul{
	border: 1px solid #369;
}

ul.nav {
	width: 100%;
	table-layout: fixed;
}

.nav a{
text-decoration: none;
}

/*end navigation bar */

#content {
}

#content a {
	color: #369;
	text-decoration: none;
	font-weight: bold;
}
#content a:visited {
	color: #aaa;
}
#content a:hover {
border-bottom: 1px dashed #369;
}

#content h1 {
	font-size: 1.3em;
	font-weight: bold;
}

#content h2 {
font-size: 1.1em;
font-weight: bold;
padding-left: 15px;
}

#content p {
	/* text-indent: 10px; */
	padding: 0px 15px 0px 15px;
}

#content img {
  border: 1px solid #ccc;
  padding: 2px;
  margin: 2px 10px 2px 20px;
  float: left;
}

#language {
	float:right;
	margin-top: -15px;
	font-size: 0.8em;
	color: #aaa;
}

#projects {
}
.project {
	margin: 10px 30px 0 30px;
	padding: 0 5px 0 5px;
	border: 1px solid #ccc;
}

.project h3 {
font-size: 1.0em;
font-weight: bold;
padding-left: 15px;
}

.prjdata {
margin-left: 40px;
}
.prjdesc {
}
.prjimg {
}

.clear {
  clear: both;
}

.lastm {
	font-style: italic;
	color: #bbb;
}

