@charset "utf-8";
/* This Style sheet is to be used for custom styles that should only be needed for 1 franchise and not be applied globally to all the prime children 

In other words, this style sheet is for all your stuff Tim.*/


/*Uncomment THIS if you want the county accordion to have fixed heights and scroll bars, otherwise they will automatically adjust to the height required for their content*/

/*.CollapsiblePanelContent {
	overflow: auto;
	height: 200px;
}*/


/*These classes control the address in the right column and are not only listed 
in c_local_info.php, some of them also show up on the review pages, so I have narrowed the scope for these.  You HAVE 
to keep the same class names if you want Google to parse (read) the information 
in Rich Snippets; Giving everything display:block pushes the next item to next line rather than having to add <br />s to everything

example of address setup:
<div class="vcard">
   <span class="fn org">Precision Garage Doors</span>
   <span class="tel">1(866) 443-7672</span>
   <div class="adr">
     <span class="street-address">123 Main Street</span>
     <span class="locality">Anytown</span>
     <span class="region">US</span>
     <span class="postal-code">00000</span>
   </div>
</div>*/
#addy .vcard{
	display:block;
}
#addy .vcard .org{
	display:block;
	font-weight:bold;
	font-style:normal;
}
#addy .vcard .tel{
	display:block;
	font-style:normal;
	margin-bottom: 7px;
}
#addy .vcard .adr .street-address{
	display:block;
}
#addy .vcard .adr .locality{
	margin-right: 3px;
}
#addy .vcard .adr .region{
	/*display:block;*/
}
#addy .vcard .adr .postal-code{
	display:block;
}




