﻿/*****************************************************************************/
/* Full
/* Used to display a single column of information on a page.
/*****************************************************************************/

.full
{
	overflow: hidden;
	width: 940px;
	float: left;
	padding-left: 20px;
	padding-top: 20px;
	padding-bottom: 10px; /* 10 because the padding-bottom of p gives the other 10 */
}

/*****************************************************************************/
/* Halves
/* Used to display two columns of information on a page.
/*****************************************************************************/

.half
{
	overflow: hidden;
	width: 460px;
	float: left;
	padding-left: 20px;
	padding-top: 20px;
	padding-bottom: 10px; /* 10 because the padding-bottom of p gives the other 10 */
}

/*****************************************************************************/
/* Thirds
/* Used to display three columns of information on a page.
/*****************************************************************************/

.third
{
	overflow: hidden;
	width: 300px;
	float: left;
	padding-left: 20px;
	padding-top: 20px;
	padding-bottom: 10px; /* 10 because the padding-bottom of p gives the other 10 */
}

/*****************************************************************************/
/* Quarters
/* Used to display four columns of information on a page.
/*****************************************************************************/

.quarter
{
	overflow: hidden;
	width: 220px;
	float: left;
	padding-left: 20px;
	padding-top: 20px;
	padding-bottom: 10px; /* 10 because the padding-bottom of p gives the other 10 */
}

/*****************************************************************************/
/* Sidebar
/* Used to stick a column of information against the right side of the page.
/*****************************************************************************/

.sidebar-content
{
	overflow: hidden;
	width: 634px;
	float: left;

}

.sidebar
{
	overflow: hidden;
	width: 333px;
	float: left;
}

/*****************************************************************************/