@charset "utf-8";
body  {
	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: right; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FFFFFF;
	background-color: #FFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	height: auto;
	background-image: url(../Images/Backgrounds/10.jpg);
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.twoColElsLtHdr #container {
	width: 790px; /* this overrides the text-align: center on the body element. */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #000000;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: auto;
	padding: 0px;
	font-weight: bold;
	text-align: left;
	color: #0F0;
} 
#Menu {
	border-right-width: 0px;
	border-left-width: 0px;
	border-right-style: none;
	border-left-style: none;
	border-top-width: 0px;
	border-bottom-width: 0px;
	border-top-style: none;
	border-bottom-style: none;
	height: 24px;
	color: #009900;
	background-color: #009900;
	z-index: 1;
}

.twoColElsLtHdr #header {
	padding: 0;  /* 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. */
	background-color: #000000;
	background-image: url(../Images/newHead_1.gif);
	height: 103px;
	background-position: left;
	text-align: left;
	border-top-width: 2px;
	border-right-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #009900;
	border-right-color: #009900;
	border-left-color: #009900;
} 

.twoColElsLtHdr #header h1 {
	margin: 0;
	text-align: center;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLtHdr #sidebar1 p" rule.
*/
.twoColElsLtHdr #sidebar1 {
	float: left;
	width: 18em; /* top and bottom padding create visual space within this div */
	background-color: #000000;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: none;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;
	border-right-color: #009900;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
}
.twoColElsLtHdr #sidebar1 h3, .twoColElsLtHdr #sidebar1 p {
	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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColElsLtHdr #mainContent {
	font-weight: bold;
	text-transform: none;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0em;
	width: 790px;
} 
.twoColElsLtHdr #footer {
	background-color: #000000;
	text-align: center;
	width: 770px;
	padding: 10px;
	float: none;
	height: auto;
	clear: both;
	margin-top: auto;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	font-weight: bold;
	color: #00CC00;
} 
a:link {
	font-weight: bold;
	color: #00cc00;
	text-decoration: none;
}
a:visited {
	font-weight: bold;
	color: #00CC00;
	text-decoration: none;
}
a:hover {
	font-weight: bold;
	color: #FF0000;
	text-decoration: none;
}

.twoColElsLtHdr #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* 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;
	height: auto;
	width: auto;
	vertical-align: top;
	background-color: #000000;
	clear: left;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 0px;
	padding-left: 0px;
}
.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;
}
.Searchbar1 {
	width: 350px;
	float: left;

}

.twoColElsLtHdr #container .imageBar {
	margin: 0px;
	padding-right: 2px;
	padding-left: 2px;
	height: 75px;
	background-color: #000000;
	width: 783px;
}
.imageBar73 {
	height: 75px;
	background-color: #000000;
	width: 783px;
	background-image: url(../Images/stars70s/Stars73_v1.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.imageBar78 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/stars70s/stars78v3.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar74 {
	padding-right: 0px;
	padding-left: 0px;
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/stars70s/stars74_v2.gif);
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar75 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/stars70s/stars75.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar76 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/stars70s/stars76_v2.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar77 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/stars70s/stars77v1.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar79 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/stars70s/stars79v1.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar80 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Stars80s/80stars2.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar81 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Stars80s/81stars.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar82 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Stars80s/82stars2.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar83 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Stars80s/83stars4.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar84 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Stars80s/84stars1.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar85 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Stars80s/85stars4.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar86 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Stars80s/86stars7.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar87 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Stars80s/87stars2.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar88 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Stars80s/88stars1.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar89 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Stars80s/89stars7.jpg);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar72 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/stars70s/stars72_v1.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar71 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/stars70s/stars71_v2.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar70 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/stars70s/stars70_v1.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar69 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/stars60s/stars69_v2.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar68 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/stars60s/stars68.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar67 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/stars60s/stars67.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar66 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/stars60s/stars66.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar65 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/stars60s/stars65.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.twoColElsLtHdr #mainContent2 {
	margin-top: 0em;
	margin-right: 0em;
	margin-left: 4px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 8px;
	padding-left: 1px;
	float: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.imageBarBeatles {
	height: 110px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Beatles/Beatles.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBarBeatlesHead {
	height: 110px;
	background-color: #000000;
	width: 783px;
	background-image: url(../Images/Beatles/Titles/BeatlesPleasePleaseMe.gif);
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-position: center center;
	vertical-align: middle;
	background-repeat: no-repeat;
	padding: 0px;
}
.imageBarMeetTheBeatles {
	height: 110px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Beatles/Titles/MeetTheBeatles.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
	background-position: center;
}
.imageBarBeatlesSecondAlbum {
	height: 110px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Beatles/Titles/SecondAlbum.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
	background-position: center;
}
.imageBarBeatlesForSale {
	height: 110px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Beatles/Titles/BeatlesForSale.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
	background-position: center;
}
.imageBarHardDaysNight {
	height: 110px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Beatles/Titles/AHardDay%27sNight.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
	background-position: center;
}
.imageBarBeatlesHelp {
	height: 110px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Beatles/Titles/Help.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
	background-position: center;
}
.imageBarBeatles65 {
	height: 110px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Beatles/Titles/Beatles65.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
	background-position: center;
}
.imageBarRubberSoul {
	height: 110px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Beatles/Titles/RubberSoul.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
	background-position: center;
}
.imageBarRevolver {
	height: 110px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Beatles/Titles/Revolver.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
	background-position: center;
}
.imageBarSgtPeppers {
	height: 110px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Beatles/Titles/SgtPeppers.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
	background-position: center;
}
.imageBarMagicalMysteryTour {
	height: 110px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Beatles/Titles/MagicalMysteryTour.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
	background-position: center;
}
.imageBarWhiteAlbum {
	height: 110px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Beatles/Titles/WhiteAlbum.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
	background-position: center;
}
.imageBarAbbeyRoad {
	height: 110px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Beatles/Titles/Abbey%20Road.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
	background-position: center;
}
.imageBarLetItBe {
	height: 110px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Beatles/Titles/LetItBe.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
	background-position: center;
}
.imageBarHeyJude {
	height: 110px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Beatles/Titles/HeyJude.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
	background-position: center;
}
.imageBar64 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/stars60s/stars64.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar63 {
	height: 75px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/stars60s/stars63_v2.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBar62 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/stars60s/stars62.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBarSongPage {
	height: auto;
	background-color: #000000;
	width: auto;
	padding: 0px;
	margin: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 900;
	background-image: url(../Images/SongsOfTheCent_v2.gif);
	background-repeat: no-repeat;
	background-position: 385px center;
}
.imageBar61 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/stars60s/stars61.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar60 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/stars60s/stars60.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.imageBarSongPageV2 {
	height: auto;
	background-color: #000000;
	width: auto;
	padding: 0px;
	margin: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 900;
	background-image: none;
}
.imageBar59 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars50s/Stars1959.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar58 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars50s/Stars1958.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar57 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars50s/Stars1957.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar56 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars50s/Stars1956.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar55 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars50s/Stars1955.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar54 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars50s/Stars1954.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar53 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars50s/Stars1953.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar52 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars50s/Stars1952.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar51 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars50s/Stars1951.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar50 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars50s/Stars1950.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar49 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars40s/Stars1949.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar48 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars40s/Stars1948.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar47 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars40s/Stars1947.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar46 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars40s/Stars1946.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar45 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars40s/Stars1945.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar44 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars40s/Stars1944.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar43 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars40s/Stars1943.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar42 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars40s/Stars1942.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar41 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars40s/Stars1941.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar40 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars40s/Stars1940.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar3839 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/stars30s/Stars38-39v2.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar3637 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/stars30s/Stars36-37v2.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar3435 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/stars30s/Stars34-35.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar3233 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/stars30s/Stars32-33.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar3031 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/stars30s/Stars30-31.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar2829 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars20s/Stars28-29.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar2627 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars20s/Stars26-27.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar2325 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars20s/Stars23-25.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar2022 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars20s/Stars20-22.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar1900s {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars00s/Stars1900s.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar90 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars90s/90stars.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar91 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars90s/91stars.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar92 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars90s/92stars.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar93 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars90s/93stars.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar94 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars90s/94stars.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar95 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars90s/95stars.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar96 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars90s/96stars.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar97 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars90s/97starsv2.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar98 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars90s/98stars.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar99 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars90s/99stars.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar2000 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars2000s/Stars2000.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar2001 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars2000s/Stars2001.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar2002 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars2000s/Stars2002.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar2003 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars2000s/Stars2003.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar2004 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars2000s/Stars2004_v2.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar2005 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars2000s/Stars2005.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar2006 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars2000s/Stars2006.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar2007 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars2000s/Stars2007.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.imageBar2008 {
	height: 75px;
	background-color: #000000;
	width: auto;
	background-image: url(../Images/Stars2000s/Stars2008.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
}
.twoColElsLtHdr #mainContent3 {
	margin-top: 0em;
	margin-right: 0em;
	margin-left: 0px;
	font-weight: bold;
	text-transform: none;
	font-size: 10px;
	padding-left: 1px;
	float: left;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	color: #FFFFFF;
}
.TKStash {
	height: auto;
	width: 255.3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #000000;
	background-image: none;
	background-repeat: no-repeat;
	float: left;
	padding-top: 1px;
	padding-right: 3px;
	padding-bottom: 1px;
	padding-left: 5px;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 1px;
	margin-left: 0px;
	white-space: normal;
	line-height: 10px;
	text-align: left;
}
.imageBarstash {
	height: auto;
	background-color: #000000;
	width: 780px;
	background-image: none;
	margin-top: 0px;
	margin-right: 2px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;
	float: none;
	text-align: left;
}
.holdTop {
	background-color: #000000;
	height: 399px;
	width: auto;
}
#Menu2 {
	border-right-width: 0px;
	border-left-width: 0px;
	border-right-style: none;
	border-left-style: none;
	border-top-width: 0px;
	border-bottom-width: 0px;
	border-top-style: none;
	border-bottom-style: none;
	height: 38px;
	color: #009900;
	background-color: #009900;
}
.imageBarSingles {
	height: 110px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Beatles/Titles/Singles.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
	background-position: center;
}
.JavaScroll {
	overflow: visible;
	height: auto;
	width: 790px;
	float: right;
	background-color: #000;
}

.imageBarBeatlesStash {
	height: 110px;
	background-color: #000000;
	width: 780px;
	background-image: url(../Images/Beatles/Titles/BeatlesStash2.gif);
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
	background-position: center;
}
.twoColElsLtHdr #footer2 {
	background-color: #000000;
	text-align: center;
	width: auto;
	padding: 0px;
	float: none;
	height: auto;
	clear: both;
	font-weight: bold;
	color: 000000;
	margin: 0px;
	background-image: url(../Images/FooterImages/static3.gif);
	background-repeat: repeat-x;
	background-position: center top;
	z-index: 1;
}
.TKStash1900TO1939 {
	height: 300px;
	width: 255.3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #000000;
	background-image: none;
	background-repeat: no-repeat;
	float: left;
	padding-top: 1px;
	padding-right: 3px;
	padding-bottom: 1px;
	padding-left: 5px;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 1px;
	margin-left: 0px;
	white-space: normal;
	line-height: 10px;
	text-align: left;
}
.TKStash1000px {
	height: 1000px;
	width: 255.3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #000000;
	background-image: none;
	background-repeat: no-repeat;
	float: left;
	padding-top: 1px;
	padding-right: 3px;
	padding-bottom: 1px;
	padding-left: 5px;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 1px;
	margin-left: 0px;
	white-space: normal;
	line-height: 10px;
	text-align: left;
}
.TKStash1200px {
	height: 1200px;
	width: 255.3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #000000;
	background-image: none;
	background-repeat: no-repeat;
	float: left;
	padding-top: 1px;
	padding-right: 3px;
	padding-bottom: 1px;
	padding-left: 5px;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 1px;
	margin-left: 0px;
	white-space: normal;
	line-height: 10px;
	text-align: left;
}
.TKStash800px {
	height: 800px;
	width: 255.3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #000000;
	background-image: none;
	background-repeat: no-repeat;
	float: left;
	padding-top: 1px;
	padding-right: 3px;
	padding-bottom: 1px;
	padding-left: 5px;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 1px;
	margin-left: 0px;
	white-space: normal;
	line-height: 10px;
	text-align: left;
}
.TKStash2000px {
	height: 2000px;
	width: 255.3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #000000;
	background-image: none;
	background-repeat: no-repeat;
	float: left;
	padding-top: 1px;
	padding-right: 3px;
	padding-bottom: 1px;
	padding-left: 5px;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 1px;
	margin-left: 0px;
	white-space: normal;
	line-height: 10px;
	text-align: left;
}
.TKStash1425px {
	height: 1425px;
	width: 255.3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #000000;
	background-image: none;
	background-repeat: no-repeat;
	float: left;
	padding-top: 1px;
	padding-right: 3px;
	padding-bottom: 1px;
	padding-left: 5px;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 1px;
	margin-left: 0px;
	white-space: normal;
	line-height: 10px;
	text-align: left;
}
.TKStash1500px {
	height: 1500px;
	width: 255.3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #000000;
	background-image: none;
	background-repeat: no-repeat;
	float: left;
	padding-top: 1px;
	padding-right: 3px;
	padding-bottom: 1px;
	padding-left: 5px;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 1px;
	margin-left: 0px;
	white-space: normal;
	line-height: 10px;
	text-align: left;
}
.TKStash500px {
	height: 525px;
	width: 255.3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #000000;
	background-image: none;
	background-repeat: no-repeat;
	float: left;
	padding-top: 1px;
	padding-right: 3px;
	padding-bottom: 1px;
	padding-left: 5px;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 1px;
	margin-left: 0px;
	white-space: normal;
	line-height: 10px;
	text-align: left;
}
.TKStash650px {
	height: 650px;
	width: 255.3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #000000;
	background-image: none;
	background-repeat: no-repeat;
	float: left;
	padding-top: 1px;
	padding-right: 3px;
	padding-bottom: 1px;
	padding-left: 5px;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 1px;
	margin-left: 0px;
	white-space: normal;
	line-height: 10px;
	text-align: left;
}
.twoColElsLtHdr #container2 {
	width: 790px; /* this overrides the text-align: center on the body element. */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #000000;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: auto;
	padding: 0px;
	font-weight: bold;
	text-align: left;
	color: #0F0;
	background-image: url(../Images/Headphones3.jpg);
	background-repeat: no-repeat;
}
.twoColElsLtHdr #container3 {
	width: 790px; /* this overrides the text-align: center on the body element. */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #000000;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: auto;
	padding: 0px;
	font-weight: bold;
	text-align: left;
	color: #0F0;
	background-image: url(../Images/Headphones3.jpg);
	background-repeat: no-repeat;
}
.PrevNxtYr {
	float: left;
	height: auto;
	width: 100px;
	margin-top: 5px;
}
.PrevNxtYrRight {
	float: right;
	height: auto;
	width: 100px;
	margin-top: 5px;
	clear: left;
}
.songDivBody1 {
	height: 650px;
	width: 55px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #000000;
	background-image: none;
	background-repeat: no-repeat;
	float: none;
	padding-top: 1px;
	padding-right: 3px;
	padding-bottom: 1px;
	padding-left: 5px;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 1px;
	margin-left: 0px;
	white-space: normal;
	line-height: 10px;
	text-align: left;
}
.twoColElsLtHdr #container4 {
	width: 790px; /* this overrides the text-align: center on the body element. */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #000000;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: 70px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: auto;
	padding: 0px;
	font-weight: bold;
	text-align: left;
	color: #0F0;
	clear: left;
}
.fltlft2 {
	float: left;
	margin-right: 0px;
	margin-left: 10px;
	margin-bottom: 0px;
}

