/* This style sheet defines all styles used in the JP-guitars website*/

/* Updated October 2009 */


/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}

/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13pt;
	color: #99FFFF;
	background: white;
	font-size: 11px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #fff;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	min-width: 760px;
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 100%;
}

/*Ensures that area behind main menu is set to standard blue if menus don't go full measure */
#header {
	height: 150px;
	background-color: #4F83A2;
}

#outerWrapper #contentWrapper #leftColumn1 {
	background-color: white; /* Was #eef6ed */
	border-right: solid 0px #8ab573; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 12em;
	height: auto;
}

#outerWrapper #contentWrapper #rightColumn1 {
	background-color: white; /* Was #eef6ed */
	border-left: solid 0px #8ab573; /* Sets the left border properties for an element using shorthand notation */
	float: right;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 12em;
	height: auto;
}

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 0 0em 0 14em; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	border-left: solid 1px #4F83A2; /* Sets the left border properties for an element using shorthand notation */	
	border-right: solid 1px #4F83A2; /* Sets the left border properties for an element using shorthand notation */
}

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
	clear: both;
	display: block;
}
#outerWrapper #footer {
	background-color: #eef6ed;
	border-top: solid 1px #4F83A2; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #footer .w3clogo {
	height: 33px;
	float: left;	
}

#outerWrapper #footer .romancartlogo {
	height: 33px;
	float: right;	
}
	
/* Definition of page header*/
.pageheader1		{font-family: Verdana, Arial, Helvetica, sans-serif;
			font-size: 13pt;
			font-weight: bold;
            font-style: italic;
	        text-indent: 18px;
			text-align: left;
			color: black;}
             
/* Definition of text header #1*/
.textheader1		{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
   	font-weight: bold;
    font-style: italic;
    text-indent: 18px;
	text-align: left;
	color: black;
	background: #FFFFFF;}
		
/* Definition of text header #2 (currently used on gallery pages only)*/
.textheader2		{font-family: Verdana, Arial, Helvetica, sans-serif;
				font-size: 10pt;
             	font-weight: bold;
           		font-style: italic;
           		text-indent: 18px;
				text-align: left;
				color: black;
				background: #FFFFFF;}
             
/* Definition of text paragraphs #1 (left-aligned)*/
.text1		{font-family: Verdana, Arial, Helvetica, sans-serif;
				font-size: 8pt;
				font-weight: normal;
				font-style: normal;
				text-align: left;
				text-indent: 0px;
				color: black;
				background: #FFFFFF;}

/* Definition of text paragraphs #2 (centered)*/
.text2		{font-family: Verdana, Arial, Helvetica, sans-serif;
				font-size: 8pt;
				font-weight: normal;
				font-style: normal;
				text-align: center;
				text-indent: 0px;
				color: black;
				background: #FFFFFF;}
				
/* Definition of text paragraphs #3 (right-aligned*/
.text3		{font-family: Verdana, Arial, Helvetica, sans-serif;
				font-size: 8pt;
				font-weight: normal;
				font-style: normal;
				text-align: right;
				text-indent: 0px;
				color: black;
				background: #FFFFFF;}
				
/* Definition of links #1*/
.link1		{font-family: Verdana, Arial, Helvetica, sans-serif;
				font-size: 10pt;
				font-weight: bold;
				font-style: normal;
				text-align: center;
				text-indent: 0px;
				color: white;
				background: #4F83A2;}


/* Definition of links #2 (used for links pages)*/
.link2		{font-family: Verdana, Arial, Helvetica, sans-serif;
				font-size: 8pt;
				font-weight: normal;
				font-style: normal;
				text-align: left;
				text-indent: 0px;
				color: blue;
				background: #FFFFFF;}

/* Definition of links list#1 (left justify, used on galleries and projects header pages only)*/
.linklist1	{font-family: Verdana, Arial, Helvetica, sans-serif;
				font-size: 8pt;
				font-weight: normal;
				font-style: normal;
				text-align: left;
				vertical-align: top;
				color: blue;
				background: #FFFFFF;}

/* Definition of links list#2 (right justify, used on galleries and projects header pages only)*/
.linklist2	{font-family: Verdana, Arial, Helvetica, sans-serif;
				font-size: 8pt;
				font-weight: normal;
				font-style: normal;
				text-align: right;
				vertical-align: top;
				color: blue;
				background: #FFFFFF;}

/* Definition of guitar links list#3 - (left justify, used on sales page header only*/
.linklist3	{font-family: Verdana, Arial, Helvetica, sans-serif;
				font-size: 8pt;
				font-weight: normal;
				font-style: normal;
				text-align: left;
				text-indent: 0px;
				vertical-align: top;
				color: blue;
				background: #FFFFFF;}
				
.align-right { float:right; margin: 0 0 15px 15px; }

.align-left { float:left; margin: 0 15px 15px 0; }



	
/* Definition of links outside menus (matches format of links in menus) */
a:link			{color: #000080;
				text-decoration: none;}
a:visited		{color: #000080;
				text-decoration: none;}
a:hover			{color: #FF0000;
				text-decoration: none;}
a:active		{color: #FF0000;
				text-decoration: none;}

/*Added for new dropdown menus*/

body {
margin: 0;
padding: 0;
background: white;
font: 80% verdana, arial, sans-serif;
}
dl, dt, dd, ul, li {
margin: 0;
padding: 0;
list-style-type: none;
}

#mainmenu1 {
position: absolute; /* Menu position that can be changed at will */
top: 126;
left: 0;
right:: auto;
z-index:100;
width: 100%; /* precision for Opera */
}

#mainmenu1 dl {
float: left;
width: 14%; /*was 14.285%*/
}

#mainmenu1 dt {
cursor: pointer;
text-align: center;
font-weight: bold;
background: #4F83A2;
border: 1px solid gray;
margin: 1px;
}
#mainmenu1 dt a:link{
color: #FFFFFF;
text-decoration: none;
}
#mainmenu1 dt a:visited{
color: #FFFFFF;
text-decoration: none;
}
#mainmenu1 dt a:hover{
color: #FF0000;
text-decoration: bold;
}
#mainmenu1 dt a:active{
color: #FF0000;
text-decoration: none;
}


#mainmenu1 dd {
display: none;
border: 1px solid gray;
}
#mainmenu1 dd a:link{
color: #000080;
text-decoration: none;
}
#mainmenu1 dd a:visited{
color: #000080;
text-decoration: none;;
}
#mainmenu1 dd a:hover{
color: #FF0000;
text-decoration: bold;
}
#mainmenu1 dd a:active{
color: #FF0000;
text-decoration: none;
background: #4F83A2;
}


#mainmenu1 li {
text-align: left;
font-weight: normal;
padding-left: 5px;
padding-top: 2px;
padding-bottom: 2px;
background: #fff;
}
#mainmenu1 li a, #mainmenu1 dt a {
color: #000;
text-decoration: none;
display: block;
height: 100%;
border: 0 none;
}
#mainmenu1 li a:hover, #mainmenu1 li a:focus, #mainmenu1 dt a:hover {
background: #eee;
}

#site {
position: absolute;
z-index: 1;
top : 70px;
left : 10px;
color: #000;
background-color: #ddd;
padding: 5px;
border: 1px solid gray; 
}

/*Added 25 October 2009 */
/*Left menu/sitemap*/

#leftmenu1 {
left: 0;
right: auto;
color: blue;
}

#leftmenu1 dl {
color: blue;
}

#leftmenu1 dt {
text-align: left;
text-indent: 0px;
font-weight: bold;
color: blue;
background: white;
font-size: 10.0pt;
font-style: normal;
}

#leftmenu1 dt a:link {
text-align: left;
text-indent: 0px;
font-weight: bold;
color: blue;
background: white;
font-size: 10.0pt;
font-style: normal;
}

#leftmenu1 dt a:visited {
color: #FFFFFF;
text-decoration: none;
}
#leftmenu1 dt a:hover{
color: #FF0000; 
text-decoration: none;
background: #eee;
}
#leftmenu1 dt a:active {
color: #FF0000; 
text-decoration: none;
}

#leftmenu1 dd {
font-size: 9.0pt;
}

#mainmenu1 dd a:link{
color: #000080;
}

#leftmenu1 dd a:visited{
color: #000080;
}

#leftmenu1 dd a:hover{
color: #FF0000;
background: #ECECEC;
}

#leftmenu1 dd a:active{
color: #FF0000;
background: #ECECEC; 
}


#leftmenu1 li {
font-size: 8.0pt;
margin-left: 10px;
}

#mainmenu1 li a:link{
color: #000080;
}

#leftmenu1 li a:visited{
color: #000080;
}

#leftmenu1 li a:hover{
color: #FF0000;
background: #ECECEC;
}

#leftmenu1 li a:active{
color: #FF0000;
background: #ECECEC; 
}

/* Definition of new! and update! table and text on home page. */
.newsflash		{font-family: Verdana, Arial, Helvetica, sans-serif;
				font-size: 7.5pt;
				font-weight: normal;
				font-style: normal;
				text-align: left;
				text-indent: 0px;
				width: 100%;
   		        vertical-align:text-top;
				color: black;
				background: #FFFFFF;}

/* Definition of new! and update! flashes on home page. Based on .text3 */
.newsflashred	{font-family: Verdana, Arial, Helvetica, sans-serif;
				font-size: 7.5pt;
				font-weight: normal;
				font-style: normal;
				text-align: left;
				text-indent: 0px;
				width: 50px;
     	        vertical-align:text-top;
				color: red;
				background: #FFFFFF;}
			
/* Definition of horizontal rule, 500px*/
.hr500px		{width: 500px;;
				color: black;}
			
/* Definition of horizontal rule, 700px*/
.hr700px		{width: 700px;
				color: black;}			

/* Definition of horizontal rule, full measure (100%)*/
.hrfull			{width: 100%;
          		color: black;}	
