/* style.css  */

/* 
// Copyright 2007 by creative-minds.at
// All Rights Reserved.
// web: www.creative-minds.at
// e-mail: mail@creative-minds.at
*/

/* Basic */

*{
	margin: 0;
	padding: 0;
	border: 0;
}

body{
	font-family: Georgia, Cambria, "Times New Roman", Times, serif;
	font-size: 75%;
	background: url(images/background.png) left top repeat-y #EBEBEB;
	color: #000;
	text-align: left;
}


/*
//-------------------- Layout / Structure-------------------- //
*/


/* //------- Layout / Structure > Basic------- // */

div#wrapper{
	width: 920px;
	margin-top: 130px;
}

/* //------- Layout / Structure > Header------- // */

div#header{

}
	div#logo{
		margin-left: 50px;
		margin-bottom: 30px;
		width: 365px;
		height: 20px;
		float: left;
	}
	
	div#headline{
		width: 540px;
		height: 77px;
		float: left;
		clear: left;
		background: #D9D9D9;
	}
	
	div#container{
		width: 350px;
		height: 77px;
		float: left;
		margin-left: 20px;
		background: url(images/container.png) no-repeat left top #A2A638;
		font-family: Helvetica, Arial, sans-serif;
		color: #efefef;
		font-size: 12px;
	}
	
	div#container a:link, div#container a:visited{
		color: #fff;
		text-decoration: none;
	}
	
	div#container a:hover, div#container a:focus, div#container a:active{
		color: #383D44;
		text-decoration: none;
	}
	
	div#contact{
		float: left;
		width: 190px;
		padding-left: 10px;
		padding-top: 10px;
		margin: 0;
	}

	div#creative-minds{
		float: right;
		width: 150px;
		padding: 0;
		margin: 0;
	}


/* //------- Layout / Structure > Content------- // */

/* //------- Layout / Structure > Footer------- // */

/* //------- Layout / Structure > Navigation------- // */


/*
//-------------------- Forms -------------------- //
*/


input, textarea{
	background: #fff;
	padding: 2px;
	color: #888;
	border: 1px solid #666;
}

input:hover,input:active, input:focus,
textarea:hover, textarea:active, textarea:focus{
	background: #ccc;
	padding: 2px;
	color: #333;
	border: 1px solid #333;
}

/*
//-------------------- Print -------------------- //
*/

@media print{

a[href]:after{
	content: "[" attr(href) "] ";
	font-size: 60%;
	color: #aaa;
}

}