/* CSS Document */
/*for bus card template 2*/
/*all text is to right of colour block*/
#bc_wrapper{
/*matches card size*/
	display:block;
	margin:0 auto;
	margin-top:20px;
	margin-bottom:20px;
	/*padding:15px;*/
	background-image:url(../graphics/fcard1L.jpg);
	background-position:0 0;
	background-repeat:no-repeat;
	width:400px;
	height:256px;/*all images not same height so cut to smallest*/
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#000;
	border:#999 1px solid;
}
#bc_content{
/*inner div for right text area of card*/
/*left margin for coloured block plus 10*/
	display:block;
	margin:0px 10px 15px 102px;/* not top in firefox / ns*/
	padding-top:15px;/*this seems ok in all*/
}
#cardco{
	font-size:160%;
	font-weight:bold;
	text-align:center;
	height:1.2em;
}
#cardmes{
	font-size:130%;
	font-style:italic;
	text-align:center;
	height:1.2em;
}
#cardmes_spacer{
	height:35px;
	/*may need nbsp in div*/
}
#cardname{
	margin-top:10px;
	font-size:140%;
	font-weight:bold;
	height:1.2em;
	text-align:center;
}
#cardtitle{
	font-size:130%;
	font-style:italic;
	height:1.2em;
	text-align:center;
}
#cardtitle_spacer{
	height:35px;
	/*may need nbsp in div*/
}
#cardadd1, #cardadd2, #cardadd3, #cardadd4, #cardadd5, #cardphone, #cardfax, #cardmail, #cardweb {
	font-size:100%;/*smaller to allow more chars in email and web*/
}
#cardadd1{
	width:50%;
	/*no field to right*/
	text-align:left;
	height:1.2em;
	
}
#cardadd2{
	width:50%;
	/*adjust width later*/
	float:left;
	height:1.2em;
}
#cardphone{
	float:right;
	width:50%;
	/*adjust width later*/
	height:1.2em;
	text-align:right;
}
#cardadd3{
	clear:both;
	float:left;
	width:50%;
	/*adjust width later*/
	height:1.2em;
}
#cardfax{
	float:right;
	width:50%;
	/*adjust width later*/
	text-align:right;
	height:1.2em;
}
#cardadd4{
	clear:both;
	width:30%;
	/*adjust width later*/
	float:left;
	height:1.2em;
}
#cardmail{
	float:right;
	width:69%;
	/*adjust width later*/
	/*v long unbroken str pushes txt out of right border*/
	/*use maxlength*/
	text-align:right;
	height:1.2em;
}
#cardadd5{
	clear:both;
	width:30%;
	float:left;
	height:1.2em;
}
#cardweb{
	float:right;
	width:69%;
	text-align:right;
	height:1.2em;
}

