/* -----------------------
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: #FADCEB;
	}

#adcontainer 	/* whole ad background with image */
	{
	background-image:  url(bck.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #F399C8;
	border: solid 10px #B10324;
	padding: 20px;
	padding-top: 310px; /* 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: #9a0a3e;
		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: 1px; visibility: hidden; display:none;
	}

/*---------------------------
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
---------------------------*/
#adcontainer a:link, #adcontainer a:visited, #adcontainer a:active {
		text-decoration:none;
		color: #e4155f;
		font-weight: bold;
		text-decoration: none;
		}
#adcontainer a:hover {
		color: #000000; 
		text-decoration: underline;
		}