/* CSS Document ------------------- */
/*                                  */
/* author:   J Paul Herron          */
/* website:  Just Gifts             */
/* browser:  Main - Gecko           */
/* -------------------------------- */

@import "landing.css";
@import "menu.css";
@import "shop.css";
@import "admin.css";

/* CSS Document */
body  {
	behavior: url(../javascripts/csshover.htc);	/* css hover fix for menus in ie */

	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #000;
	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: #000;
}


#container {
	width: 775px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	min-height:590px;
	background: #FFFFFF;

	b/order:1px solid red;
	margin: 15px auto; /* the auto margins (in conjunction with a width) center the page */
	margin-bottom:5px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	
	background-image:url(../images/background.jpg);
	background-position:top;
	background-repeat:repeat-y;
}

#alpha-container {
	z-index:2;
	
	width:120px;
	min-height:590px;
	position:relative;

    float:left;
  
    background-color:#650f63;	
	
	background-image:url(../images/gifts_logo.jpg);
	background-position:top;
	background-repeat:no-repeat;
}

#beta-container {
	padding:0px;
	
	width:655px;
	height:100%;
	position:relative;

    float:right;

	b/ackground-image:url(../images/special_inside_bg.jpg);
	background-position:top right;
	background-repeat:no-repeat;
	
}

#beta-header {
	padding:0px;
	
	margin:0px 0px 0px 0px;

	width:655px;
	height:85px;
	position:relative;

	b/order:solid 1px;	
}

#beta-content {
	padding:0px;
	
	margin:0px 35px 0px 20px;
	
	width:600px;
	height:100%;
	position:relative;

	b/order:solid 1px;
}


#sidebar2 {
	text-align:left;
	
	
	margin-top:440px;
	
	float: right; /* since this element is floated, a width must be given */
	width: 120px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

.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: 8px;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}

.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;
}

.copyright {
	color:#ccc;
}


