/* 			group_table.css
/				stylesheet design for agps website.
/
/				(c) 2007 Techanswered/F. Davis
/				www.techanswered.com
/				
/				defines layout for the groups pages.
/				
/				data is entered into the tables in the form of:
/				.groupTableHeader: 	Group Name
/				.groupTableContent: 	Therapist Name
/											Phone
/											Day
/											Time
/											Frequency (weekly, etc.)
/											Location
/
/				see css source for additional info.
*/				

.group_tableholder {					/*holds the entire layout */
	border: 0px;
	width:100%;
	}

.group_table {							/*set up the box */
	border:1px solid #000000;
	width:100%;
}

tr {
	border:0px;
	margin:0px;
	padding:0px;
	}

td {
	width:33%;
	}

.group_tableheader {font-size: 0.9em; 			/* this creates the blue bg-color header */
							font-weight: bold; 
							color: #FFF; 
							background-color: #5C81AD; 
							padding-left: 5px;
							padding-right:5px; 
							padding-top: 0px; 
							padding-bottom: 0px}
							
							
.group_tablecontent {font-size: 0.8em;		/* content for table */ 
							color: #000000; 
							padding-top: 2px; 
							padding-bottom: 2px; 
							}