	#vaivem {
		margin: 0px;
	}

	/* 
	Generic Styling, for Desktops/Laptops 
	*/
	#vaivem h1 { font-size: 24px; }
	#vaivem table { 
		width: 100%; 
		border-collapse: collapse; 
	}
	th { 
		/* change this background color black i.e #333 to  as  you wish */
		background: #333;
		border-radius:5px;
		-moz-border-radius:5px;
		-webkit-border-radius:5px;
		color: white; 
		font-weight: bold; 
	}
	td, th { 
		padding: 7px; 
		border: 1px solid #ccc; 
		text-align: left; 
	}
	
	.red a {
	color:RED;
	}
	.green a {
	color:GREEN;
	}
	.blue a {
	color:BLUE;
	}
	.gray a {
	color: GRAY;
	}

	@media 
	only screen and (max-width: 460px),
	(min-device-width: 468px) and (max-device-width: 1024px)  {
	
		/* Force table to not be like tables anymore */
		table, thead, tbody, th, td, tr { 
			display: block; 
		}
				
		tr { border: 1px solid #ccc; }
		
		td { 
			/* Behave  like a "row" */
			border: none;
			border-bottom: 1px solid #eee; 
			position: relative; 
		}
		
		td:before { 
			/* Now like a table header */
			position: absolute;
			/* Top/left values mimic padding */
			top: 6px;
			left: 6px;
			width: 45%; 
			padding-right: 10px; 
			white-space: nowrap;
		}
	}
	
	/* Smartphones (portrait and landscape) ----------- */
	@media only screen
	and (min-device-width : 320px)
	and (max-device-width : 460px) {
		body { 
			padding: 0; 
			margin: 0; 
			width: 320px; }
		}
	
	/* iPads (portrait and landscape) ----------- */
	@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
		body { 
			width: 495px; 
		}
	}
