/* CSS Document */
/* various tables styles - see sample XHTML markup below */
/* style 1 - basic_lines creates a layout with various weights of horizontal lines between the table rows */
/* style 2 bars_n_stripes is similar to style 1 but colors the table rows */
/* style 3 tic_tac_toe creates open table cells all around the layout - only fully supported in Firefox, but degrades nicely in others */ 

/* Mine */

table.basic {
	width:770px;
	border-collapse:collapse;
	margin:10px 0 20px 15px;
	}
table.basic th {
	padding:10px 20px;
	margin-left: 3em;
	}	
table.basic td {
	padding:5px 3px;
	}	
table.basic_event {
	width:800px;
	border-collapse:collapse;
	margin:0px;
	}
table.basic_event th {
	padding:10px 20px;
	}	
table.basic_event td {
	padding:5px 3px;
	}	
	
table.basic_home {
	width:770px;
	border-collapse:collapse;
	margin:0 15px 20px 15px;
	
	}
table.basic_home th {
	padding:10px 20px;
	margin-left: 3em;
	}	
table.basic_home td {
	padding:5px 3px;
	}	
	
table.basic_2 {
	width:790px;
	border-collapse:collapse;
	margin:0px 0px;
	border:none;
	text-align:center;
	}
table.basic_2 th {
	border:none;
	background-color: #FEFFDF;
	border:none;
	vertical-align: top;
	padding-top: 60px;
	}	
table.basic_2 td {
	border:none;
	background-color: #420000;
	vertical-align: top;
	text-align: center;
	}	
	
table.basic_2 td img{
	text-align:center;
	}
		
table.basic_home_yellow {
	width:800px;
	border-collapse:collapse;
	background-color:#FEFFDF;
	margin-top:0em;
	}
table.basic_home_yellow th {
	padding:0px 3px 5px 12px;
	margin-top: 0em;
	vertical-align: top;
	}	
table.basic_home_yellow td {
	padding:5px 10px;
	margin-top: 0em;
	}	

table.basic_artist {
	width:800px;
	border-collapse:collapse;
	margin-top:0em;
	}
table.basic_artist th {
	padding:5px 3px 5px 12px;
	margin-top: 0em;
	vertical-align: top;
	}	
table.basic_artist td {
	padding:5px 3px;
	margin-top: 0em;
	}	
	
table.basic_home_image {
	width:800px;
	border-collapse:collapse;
	margin:0px 0px;
	padding:0px 0px;
	}
table.basic_home_image th {
	padding:0px 0px;
	margin: 0px 0px;
	}	
table.basic_home_image td {
	padding:0px 0px;
	margin: 0px 0px;
	}	


/* sample markup for table CSS above, this example uses basic_lines class */

/*
<table class="basic_lines" summary="Summary of my books">
  <caption>
    <strong>My Books</strong>
  </caption>
  <tr>
    <th scope="col">&nbsp;</th>
    <th scope="col">Stylin'</th>
    <th scope="col">Codin'</th>
  </tr>
  <tr>
    <th scope="row">Languages</th>
    <td>XHTML &amp; CSS</td>
    <td>PHP &amp; SQL</td>
  </tr>
  <tr>
    <th scope="row">Focus</th>
    <td>Interface design</td>
    <td>Back-end code</td>
  </tr>
</table>
*/

/* end sample markup for table CSS above */
