.Table
	{
	display: table;
	border-radius: 17px;
	 
	}
	
		.Row, .Row2, .HeadRow, .BottomRow, .BottomRow2
		{
		display: table-row;	
		}

		.Row2, .BottomRow2
		{
		background-color: #222222;	
		}
		
		.HeadRow
		{
		color: #000000;		
		}

		.HeadRow .Cell, .HeadRow .LeftCell, .HeadRow .RightCell 
		{
		background-color: #ffff00;
		}

			.Cell, .LeftCell, .RightCell
			{
			display: table-cell;
			padding: 0.3em 0.6em;
			border-color: #ffff00;
			border-right-width: thin;
			border-right-style: solid;	
			}

			.LeftCell
			{
			border-left-width: thin;
			border-left-style: solid;	
			}

			.BottomRow .LeftCell, .BottomRow .Cell, .BottomRow .RightCell, .BottomRow2 .LeftCell, .BottomRow2 .Cell, .BottomRow2 .RightCell
			{
			border-bottom-width: thin;
			border-bottom-style: solid;		
			}

			.HeadRow .LeftCell
			{
			border-top-left-radius: 12px;		
			}

			.HeadRow .RightCell
			{
			border-top-right-radius: 12px;		
			}

			.BottomRow .LeftCell, .BottomRow2 .LeftCell 
			{
			border-bottom-left-radius: 12px;	
			}

			.BottomRow .RightCell, .BottomRow2 .RightCell 
			{
			border-bottom-right-radius: 12px;	
			}

@media 
(orientation: portrait) and (max-width: 600px), (orientation: landscape) and (max-height: 600px)
{
		.Cell, .LeftCell, .RightCell
			{
			padding: 0.2em 0.4em;
			}

}