
/* Contacts2.css */
 /* CSS text properties: http://www.echoecho.com/csstext.htm  
	 text-shadows: http://www.w3.org/Style/Examples/007/text-shadow.en.html */
	 /* text-shadow: color of the shadow, horizontal distance, vertical distance, blur radius of the shadow; */
	  
Author+Author:before {
	content: "och ";
}

Title, Authors, Company, Person{
	display: block;   /* The block parameter indicates that the element should start a new line, while inline(the default) says to run text together*/ 
	/*  other values: none ,inline,inline-block,inline-table, list-item, table,... */
		               /*see :http://www.w3schools.com/cssref/pr_class_display.asp */
}	  
Title 
{
	font-family: Arial, Serif, Fantasy;
	text-align: center;
	font-size: 24pt;
	font-variant: small-caps;	
}
/*
Author
{
	display: block;
	font-family: Arial, Serif, Helvetica;
	text-align: center;
	font-size: 16pt;
	font-variant: small-caps;
	text-shadow:#888 2px 2px 3px;  
}

*/
Authors
{

	font-family: Arial, Serif, Helvetica;
	text-align: center;
	font-size: 1.4em;
	font-variant: small-caps;
	line-height:42.5pt ;  /* value for line-hight better given as 2.0 or 1.0 rather then px or pt as it can be problem when changing font-size , 42,5 pt =1.5cm*/
/* line-hight effects the spacing between line within the same paragraph while margin-top and margin-bottom effects line spacing between paragraphs. 71pt=2.5cm */
	margin-bottom:71pt;
	}

	
Company
{

    font-family: Arial;
    font-size: 18pt;
    margin-top: 12pt;


}
Contacts
{
    font-family: Verdana, Tahoma, Arial;
    font-size: 12pt;
	
}
Person
{
    background-color: #dcdccc;
    margin-top: 3pt;
	
}
Phone
{
    font-family: 'Courier New';
    left: 5cm;                      /*2in=5cm */
    position: absolute          /* Med position: absolute kan du placera ett element på valfritt ställe på webbsidan. Den absoluta positionering är relativt föräldraelementet.*/
								/*Du kan använda värdena left, right, top och bottom för att ange positionen som anges i pixlar.*/
								/*   http://webbdesigna.se/positionering.php#absoluteexempel*/
}
