/*------------------------*/
/*  General page layout   */

.pagelayout{
    width:800px;
    margin:0 auto;
}
body {
	font-family: Arial, Verdana, sans-serif;
	font-size: 12px;
	color: #333;
	background-color: white;
	margin: 10px;
	text-align: justify;
}

/*------------------------*/
/* Override HTML defaults */

/* Headers style */
h1 {
	color: #ffffff;
	background-color: #267498;
}

/* Links style */
A:active { text-decoration: none; color:#267498; }
A:visited { text-decoration: none; color:#267498; }
A:link { text-decoration: none; color:#267498; }
A:hover { text-decoration: underline; text-decoration: bold; color:#888888; }

/*------------------------*/
/*   CV Header layout     */

.headerphoto {
    width: 75px;
    vertical-align: center;
}
.headeridentity {
    vertical-align: bottom;
}

.headerbaseline {
    height: 100%;
    vertical-align: top;
}

.headertitlemain {
    font-size: 20px;
}

.headertitlesecond {
    font-size: 16px;
}

.objective {
    color: #f43e06;
    font-style: italic;
}

.linkList {
    height:32;
    text-align: right;
    vertical-align: bottom;
}


/* Clickable image (IE) */
.imagelink{
    border-width:0;
}

/*------------------------*/
/*   CV Boxes layout      */
.box {
    background-color: #f8fcff;
    //background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 0em 1em;
    margin: 10px auto;
}

/* Left & right items of a row */
.left {
    overflow: hidden;
}
.right {
    float: right;
}

/* Layout of Experience boxes */
.company {
    padding-top: 10px;
    font-size: 20px;
    font-style: bold;
}
.period {
    padding-top: 10px;
    text-align: right;
    font-style: italic;
}
.techno {
    color:#666666;
}

/* Layout of Education boxes */ 
.school {
    padding-top: 5px;
    font-size: 15px;
    font-style: bold;
}
.schoolperiod {
    padding-top: 5px;
    text-align: right;
    font-style: italic;
    vertical-align: text-bottom;
}
.schooldescription {
    padding-top: 0px;
    text-align: justify;
}

/* Layout of Personal projects */
.date {
    text-align: right;
    font-style: italic;
}

/* Other layouts */
.showBorder{
    border: 1px solid red
}

/* A special table with no margin/padding*/
.structureTable{
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px; // space between border and content
}

.widthHundredSeventyPx{
    width: 170px;
}
.widthSixtyPx{
    width: 60px;
}
.widthThirtyPx{
    width: 30px;
}
.widthSixtyPercent{
    width: 60%;
}

