/** 
 * nutrition.css
 * The following code formats a table for a nutrition label. Feel free to use it as you wish.
 * Crediting the author is always appreciated.
 * Jonathon Eric Cihlar, January 2007
 */

/**
 * Define the table to be of the class "nutrition"
 */
table.nutrition {
	float: left;
	width : 340px;
	margin-top : 10px;
	margin-left : 0;
	margin-right : 0;

	border : 1px solid black;
	/*border-collapse : collapse;*/
	padding: 5px;
	table-layout : auto;

}

/**
 * Format the caption at the top of the table
 */
.nutrition caption {
	font-size : small;
	font-style: italic;
}

/** 
 * Format the tr ids 
 */
.nutrition tr#calories td {
	border-bottom : 6px solid black;
}

.nutrition tr#servings td {
	border-bottom : 12px solid black;
	padding-top: 0;	
}

.nutrition tr#minerals td {
	border-top : 6px solid black;
}

 /**
  * Format the header, which is basically the text "Nutrition Facts"
  */
.nutrition th {
	background-color : transparent;
	border : 0;
	font-size : 18pt;
	padding: 2px 2px 0 2px;
	font-weight : bold;
	text-align: left;
}	

 /**
  * Define the baseline style for cells
  */
.nutrition td {
	padding : 2px;
	font-size : 10pt;
	border : 0;
	border-bottom : 1px solid black;
	
	text-align : left;
}

 /**
  * Define the cell for Daily Values
  */
.nutrition td.dv {
	font-weight : bold;
	text-align : right;
}

.nutrition td.cff {
	text-align : right;
	width: 170px;
}

 /**
  * Set an indent for subordinate nutrients
  */
.nutrition td.sub {
	text-indent : 20px;
	width: 170px;
}

 /**
  * Set the style of the disclaimer text
  */
.nutrition td#disclaimer p {
	font-size : 7pt;
	margin-top: 3px;
	line-height: 9pt;

}

.nutrition td#disclaimer {
	border: none;
}

.nutrition td#disclaimer a {
	line-height: 9pt;
	font-size : 7pt;
}

 /**
  * Use the strong tag to set emphasis on particular text
  */
.nutrition strong {
	font-weight : bold;
}
