@charset "utf-8";
body  {
	font-family: "Georgia", Times New Roman, Times, serif;
	font-style: italic;
	background-color: #f7fff7;
	background-image:url(../images/background/background2.gif);
	background-position:bottom;
	background-repeat:no-repeat;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}


.digiproStyle #container { 
	width: 950px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page if needed */
	text-align: left; /* this overrides the text-align: center on the body element. */
}  
.digiproStyle #header {
	height: 117px;
	padding: 2px 2px 2px 2px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.digiproStyle #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 2px 2px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
/* header links*/
.digiproStyle #header a:link {
	font-family: "Arial", Times New Roman, Times, serif;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	color: #000; 
	text-decoration: none;
}
.digiproStyle #header a:visited {
	text-decoration: none;
	font-family: "Arial", Times New Roman, Times, serif;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	color: #000; 
}
.digiproStyle #header a:hover {
	text-decoration: underline;
	font-family: "Arial", Times New Roman, Times, serif;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	color: #A659F7; 
}
.digiproStyle #header a:active {
	text-decoration: none;
	font-family: "Arial", Times New Roman, Times, serif;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	color: #A659F7; 
}	

.digiproStyle #sidebar1 {
	float: left;
	width: 300px; /* since this element is floated, a width must be given */
	padding: 2px 0; /* top and bottom padding create visual space within this div */
}
.digiproStyle #sidebar2 {
	float: right; 
	width: 140px; /* since this element is floated, a width must be given */
	padding: 2px 0; /* top and bottom padding create visual space within this div */
}
/*.digiproStyle #sidebar1 h3, .digiproStyle #sidebar1 p, .digiproStyle #sidebar2 p, .digiproStyle #sidebar2 h3, .digiproStyle #sidebar1 img, .digiproStyle #sidebar1 img, {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
/*	margin-right: 10px;
}
*/

.digiproStyle #mainContent {
    margin: 0 0.1em 0 0.1em; /*the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	padding: 0 1px 0 1px; /* padding here creates white space "inside the box." */
}

/* Contenet in divided pages */
.digiproStyle #mcCentre {
	position:relative; 
	top:1px; 
	width:96%; 
	height:410px; 
}
/* right side - positioned first */
.digiproStyle #mcRight {
	width:49%; 
	height:400px
}
.digiproStyle #mcRightTop {
	position:relative; 
	height:25px; 
	width:100%; 
	top:0px; 
	padding-top:5px
}
.digiproStyle #mcRightCentre {
	position:relative; 
	top:-5px; 
	height:380px;
	padding:0 10px 0 10px;
	margin-right: 7px;
}
.digiproStyle #mcRightBase {
	position:relative; 
	height:3px; 
	width:100%; 
	bottom:5px
}
/* left side */
.digiproStyle #mcLeft {
	width:49%; 
	height:400px
}
.digiproStyle #mcLeftTop {
	position:relative; 
	height:25px; 
	width:100%; 
	top:0px; 
	padding-top:5px;
}
.digiproStyle #mcLeftCentre {
	position:relative; 
	top:-5px; 
	height:380px;
	padding: 0 20px 0 10px;
	margin-right: 7px;
}
.digiproStyle #mcLeftBase {
	position:relative; 
	height:3px; 
	width:100%; 
	bottom:5px
}
	
.digiproStyle #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.digiproStyle #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 2px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.digiproStyle #faqDiv {
	position: relative;
	width: 100%;
	height: 350px;
	overflow: auto;
}


/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 5px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 5px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/* Text */	
h1 {
	font-family: "Georgia", Times New Roman, Times, serif;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	color: #A659F7;

}

h2 {
	font-family: "Georgia", Times New Roman, Times, serif;
	font-style: italic;
	font-weight: 300;
	font-size: 12px;
	color: #000; 
}

h3 {
	font-family: "Georgia", Times New Roman, Times, serif;
	font-style: italic;
	font-weight: normal;
	font-size: 12px;
	color: #000; 
}

.headerText {
	font-family: "Arial", Times New Roman, Times, serif;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	color: #000; 
}

.bodyText {
	font-family: "Georgia", Times New Roman, Times, serif;
	font-style: italic;
	font-weight: normal;
	font-size: 11px;
	color: #000;
}

.bodyTextUL {
	font-family: "Georgia", Times New Roman, Times, serif;
	font-style: italic;
	font-weight: normal;
	font-size: 12px;
	text-decoration:underline;
	color: #000;
}
.bodyTextBld {
	font-family: "Georgia", Times New Roman, Times, serif; 
	font-style: italic;
	font-weight: bold;
	font-size: 12px;
	color: #000; 
}

.bodyTextFAQ {
	font-family: "Georgia", Times New Roman, Times, serif;
	font-style: italic;
	font-weight: bold;
	font-size: 11px;
	color: #000;
}
.highlights{
	font-family: "Georgia", Times New Roman, Times, serif;
	font-style: italic;
	font-weight: bolder;
	font-size: 12px;
	color: #A659F7;
}

.highlightsBld{
	font-family: "Georgia", Times New Roman, Times, serif;
	font-style: italic;
	font-weight: bolder;
	font-size: 14px;
	text-decoration:underline;
	color: #A659F7;
}

.highlightsmall{
	font-family: "Georgia", Times New Roman, Times, serif;
	font-style: italic;
	font-weight: normal;
	font-size: 8px;
	color: #A659F7;
}
.footerText {
	font-family: "Arial", Times New Roman, Times, serif;
	font-style:normal;
	font-weight: normal;
	font-size: 12px;
	color: #000;
}
	
/* Links */
a:link {
	color: #A659F7;
	text-decoration: underline;
}
a:visited {
	text-decoration: underline;
	color: #A659F7;
}
a:hover {
	text-decoration: none;
	color: #A659F7;
}
a:active {
	text-decoration: none;
	color: #A659F7;
}	
a img {
    border-width: 0px;
	}
/* layouts for stickers	*/

.digiproStyle #amourArt {
	background-image:url(../images/stickers/amourStickers150.gif);
	background-position:right;
	background-repeat:no-repeat
}

.digiproStyle #generalArt {
	height:65px;
	background-image:url(../images/stickers/generalStickers.gif);
	background-position:right;
	background-repeat:no-repeat
}

.digiproStyle #cdArt {
	background-image:url(../images/stickers/cdSticker.gif);
	background-position:right;
	background-repeat:no-repeat;
}

