﻿/************************************************

                 BUSINESS CARD

************************************************/
.card
{
  width: 24em;
  margin-bottom: 0.5em;

  border: 1px solid #A9A9A9; 
  padding: 10px; 

  color: black;
  background-color: white; 

  background-image: url(../images/visitkortbg.png);

  -moz-box-shadow: 5px 5px 5px #ccc;
  -webkit-box-shadow: 5px 5px 5px #ccc;
  box-shadow: 5px 5px 5px #ccc;
  
  position: relative;
}

.card_name
{
  font-size: 200%; 
  font-weight: bold;
  font-family: 'Garamond', Times, Serif;
}

.card_title
{
  font-family: Helvetica, Sans-serif; 
  font-variant: small-caps; 
  letter-spacing: 2px;
  margin-bottom: 1em;
}
.card_bottom_part
{
}

.card_photo
{
  margin-left: 1em;
  margin-bottom: 1em;
  background-image: url(../images/michael3.jpg);
  background-repeat: no-repeat;
  width: 226px;
  height: 140px;
  width: 140px;
  background-position: -65px 0px;
  
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	
  box-shadow: 0 0 8px rgba(0, 0, 0, .8);
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .8);
	-moz-box-shadow: 0 0 8px rgba(0, 0, 0, .8);	
}

.card_photo img
{
  opacity: 0;
	filter: alpha(opacity=0);
}



.card_address
{
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-family: 'Open Sans', Times, Garamond, Serif;
  font-size: 95%;
}

