/* -----------------------
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: #F26700;
	}

/*------------------------
 this is look of the text and main tables (left and right.  if each row looks different, you can separate #adblockleft & #adblockright.
 - font-family: is where you enter font - check html code to see what you're using
- font-size: is a weird number (em). 1em is exactly the normal size text on the page. 0.5em is half size.
	Title is 3em by default, contact info is 1.2em, phone is 1.5.
- add   background-color: #000000;    (use html color) line if you're doing an ads with table backgrounds different from page background.
- for borders around anything, use    border: solid 1px #cccccc;  (single line, pixel width, html color)
-------------------------*/

	#adblockright, #adblockleft {
	font-family: Georgia, Times New Roman, Times, serif;
	background-image:  url(bathbeauty_433700-sepia.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #F2C244;
	overflow: auto;
		color: #CE3F2B;
		font-weight: bold;
		font-size: 1.2em;
		padding:10px;
	border: double 1px #FFFF99;
	width:650px;
	height: 650px;
	text-align: right;
	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 {
		font-weight: bold
		}

/*---------------------------
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
---------------------------*/
	a:link, a:visited, a:active {
		text-decoration:none;
		color: #FF6600;
		font-weight: bold;
		text-decoration: none;
		}
	a:hover {
		color: #993300; 
		text-decoration: underline;
		}
.textright { width:50%}
