/* -----------------------
delete background (except for background color) if there's no background file
use    background-repeat:no-repeat;    if you want to show background only once, like in table for illustration photo
-------------------------- */
	body {
	background-color: #e96695;
	}

#container 	/* whole ad background with image */
	{
	background-image:   url(bck.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	background-color: #0a5a72;
	border: solid 1px #c2fcf0;
	padding: 20px;
	padding-top: 30px; /* set top, left, right or bottom padding to move text away from background image */
	width:650px;	/* 	height: 600px; set width & height to work with background image */
	}

	#adblockright, #adblockleft {
	font-family: Georgia, Times New Roman, Times, serif;
		color: #F6F5F1;
		font-weight: bold;
		font-size: 1.3em;
	text-align: left;
	font-size: 1.3em;
		}

/* ---------------------
any changes in look for titles only - use font-style: italic;  for italic.
If you want to hide the title completely to use only the Text1 , you can use 
visibility: hidden; font-size: 1px;   
------------------------ */
.title
	{
	height:1px; width: 30px; visibility: display;
	}

/*---------------------------
links look 
-    a:hover is for color when the mouse is over the link
-    text-decoration:none; is to remove underline. You can simply erase this to show underlines
---------------------------*/
#container a:link, #container a:visited, #container a:active {
		text-decoration:none;
		color: #e4155f;
		font-weight: bold;
		text-decoration: none;
		}
#container a:hover {
		color: #e4155f; 
		text-decoration: underline;
		}
