﻿/* --------------------------------------------------------------------------------------------------------------------------------------------------
GLOBAL: HTML ELEMENTS
-------------------------------------------------------------------------------------------------------------------------------------------------- */

html, body {
	width: 100%; 
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
}

body {
	background-color: #ffffff url("../design/bg.jpg"); 
	color: #000;
	font: 14px/1.6 'Ubuntu', sans-serif; 
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-ms-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	font-smoothing: antialiased;	
}



a {
	color: #0098cc;
	text-decoration: underline;
}
	a:hover {
		text-decoration: none;
	}

p, ul, ol, address {
	margin-top: 5px;
	color: #7c7c7c;
	font-size: 13px;
}

ul {
	list-style-position: inside;
	list-style-type: square;
}
	ul li {
		padding-left: 5px;
	}

#space  {
  margin-top: 30px;
}

/* --------------------------------------------------------------------------------------------------------------------------------------------------
GLOBAL: LAYOUT
-------------------------------------------------------------------------------------------------------------------------------------------------- */

#background {
	position: absolute; 
	top: 0;
	right: 0;
	bottom: 0; 
	left: 0;
	width: 100%;
	height: 100%;
}

#pattern {
	position: absolute; 
	top: 0;
	right: 0;
	bottom: 0; 
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: url("../design/pattern.png");
	opacity: 0.5;
}	

#vcard {
	overflow: hidden;
  position: relative;
  margin: 30px auto;
	z-index: 9999;
	width: 330px;	
	padding: 30px 30px 30px 330px;
	background: #ffffff url("../design/photo.jpg") 0 0 no-repeat;
}
	#header h1 {
	  color: #434242;
		margin: 0;
		margin-bottom: 10px;
		line-height: 1;
    font-weight: bold;
    font-size: 34px;    
	}
	#header h2 {
		margin-top: 0;
		color: #434242;
		line-height: 1.2;
    font-weight: normal;
    font-size: 20px;
    margin-bottom: 10px;     
	}
  
	 h3 {
		margin-top: 25px;
		color: #0098cc;
		line-height: 1;
    font-weight: bold;
    font-size: 20px;     
	}  
 