@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*Kevin set body colour*/
body {
	background-color:#FFFFCC;
	margin-top: 1em;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}

.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;        
}

/* Mobile Layout: 480px and below. */
/*Kevin set gridContainer to min-width: 300px; */
  
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 86.45%;
	min-width: 300px;
	padding-left: 2.275%;
	padding-right: 2.275%;
	clear: none;
	float: none;
	background-image: url(../images/Cyanoacrylate-565x800.jpg);
	background-size: cover;
}
#header {
	font-family: "Times New Roman", "Palatino Linotype", Palatino, "Century Schoolbook", Baskerville, serif;
	text-align: center;
	font-size: 1em;
	font-weight: 700;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	background-color: hsla(0,0%,100%,1.00);
	border-color: hsla(0,0%,100%,1.00);
	margin-top: 1em;
	padding-top: 0.25em;
	padding-bottom: 0.5em;
}
#navBar {
}
#superglues {
}
#contact {
}
#footer {
	
}

#copyright {
	text-align: center;
	font-size: small;
	min-width: 260px;
	margin-bottom: 2em;
	margin-top: 2.5em;
	
	}
.indexText {
	max-width: 550px;
	float: right;
	margin-right: auto;
	padding-left: 1em;
	padding-right: 1em;
	padding-top: 1em;
	padding-bottom: 1em;
	background-color: hsla(0,0%,100%,0.45);
	border-radius: 15px;
	margin-left: auto;
}
.contactText {
	max-width: 550px;
	float: right;
	margin-right: auto;
	padding-left: 1em;
	padding-right: 1em;
	padding-top: 1em;
	padding-bottom: 1em;
	background-color: hsla(0,0%,100%,0.45);
	border-radius: 15px;
	margin-left: auto;
}

.downloadText {
	max-width: 550px;
	float: right;
	margin-right: auto;
	padding-left: 1em;
	padding-right: 1em;
	padding-top: 1em;
	padding-bottom: 1em;
	background-color: hsla(0,0%,100%,0.45);
	border-radius: 15px;
	margin-left: auto;
}

#Site {
}
#nameH1 h1, h2 {
	padding-left: 0.75em;
	padding-top: 0.25em;
}
#sectionH1H2 h1 {
	padding-left: 0.75em;
	padding-top: 0.25em;
	line-height: 80%;

}
#sectionH1H2 h2 {
	padding-left: 1.5em;
	line-height: 80%;
	font-size: 1.4em;
}

#dataSheet {
}
#dataSheet #dataBlock {
	padding-left: 1em;
	padding-right: 1em;
	color: hsla(236,54%,42%,1.00);
	padding-top: 0.5em;
	padding-bottom: 2em;
	background-color: hsla(0,0%,100%,0.70);
	border-radius: 0em 0em 2em 2em;
	margin-top: 0em;
	margin-right: 0em;
	margin-bottom: 0em;
	margin-left: 0em;
	max-width: 720px;
	left: auto;
	right: auto;
	float: right;
}
#contact .contactText h1 {
	font-size: 0.9em;
}
.leftPanel {
	width: 100%;
	border-radius: 15px;
	background-color: hsla(0,0%,100%,0.45);
}
.rightPanel {
	width: 100%;
	clear: both;
	margin-left: 0;
	border-radius: 15px;
	background-color: hsla(0,0%,100%,0.45);
}
.padding {
	display: block;
	padding-top: 2em;
	padding-right: 2em;
	padding-bottom: 2em;
	padding-left: 2em;
}
.floatRight {

}
.zeroMargin_mobile {
margin-left: 0;
}
.hide_mobile {
display: none;
}








/* Small mobile phone in  in Portrait */
@media only screen
and (min-device-width : 300px)
and (max-device-width : 480px)
and (orientation : portrait) { 
/* STYLES GO HERE */ 

}

/* Small mobile phone in landscape */

@media only screen
and (min-device-width : 300px)
and (max-device-width : 480px)
and (orientation : landscape) { 
/* STYLES GO HERE */
	
}


/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {

.gridContainer {
	width: 90.675%;
	padding-left: 1.1625%;
	padding-right: 1.1625%;
	clear: none;
	float: none;
	margin-left: auto;
	background-image: url(../images/Cyanoacrylate-800x1132.jpg);
	background-size: cover;
	background-position: center;
}
#header {
	font-size:1.5em;
}
#navBar {
}
#superglues {
}
#contact {
}
#footer {
}
#Site {
}
#dataSheet {
}
.leftPanel {
width: 48.7179%;
}
.rightPanel {
width: 48.7179%;
margin-left: 2.5641%;
clear: none;
}
.floatRight {
}
.hide_tablet {
display: none;
}
.zeroMargin_tablet {
margin-left: 0;
}
}

/* #######################################################################  */

/* in Landscape */
@media only screen
and (min-device-width : 650px)
and (max-device-width : 900px)
and (orientation : landscape) { 
/* STYLES GO HERE */ 
#header {
	font-size:2em;
	 
}

#Site {
}

#dataSheet {
}

.leftPanel {
width: 49.1525%;
}

.rightPanel {
width: 49.1525%;
clear: none;
margin-left: 1.6949%;
}

.floatRight {
}

.zeroMargin_desktop {
margin-left: 0;
}

.hide_desktop {
display: none;
}

}


/* iPad in landscape */

@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) { 
/* STYLES GO HERE */
#header {
		font-size:2.75em;
	color:hsla(236,53%,42%,1.00);
}

#footer {
/*	text-align: center;
	font-size: large;
	color:hsla(0,0%,100%,1.00);
	padding-left: 7em;*/

}

#footer #copyright {
	float:left;
	text-align: left;
	font-size: large;
	color:white;
/*white*/	
	margin-top: 1.5em;
/*	margin-bottom: 4em;*/
	padding-left: 47%

}

}

/* iPad and Cyclone in Portrait */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) { 
/* STYLES GO HERE */ 

#header {
	font-size:2.25em;
	color:hsla(236,53%,42%,1.00);
/*dark blue*/	
}

#footer {
/*	text-align: center;
	font-size: large;
	color:hsla(0,0%,100%,1.00);
	padding-left: 8em;
	margin-top: 6.5em;
	margin-bottom: 2em;*/
	
}

#footer #copyright {
	float:left;
	text-align: left;
	font-size: large;
	color:white;
/*white*/	
	margin-top: 1.5em;
	margin-bottom: 4em;
	padding-left: 47%

}

}




/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {

.gridContainer {
	width: 93.4166%;
	max-width: 1232px;
	padding-left: 0.7916%;
	padding-right: 0.7916%;
	margin: auto;
	clear: none;
	float: none;
	margin-left: auto;
	background-image: url(../images/Cyanoacrylate-1486x2102.jpg);
	background-size: cover;
	background-position: center;
}
#header {

}
#navBar {
}
#siteName {

}
#superglues {
}
#contact {
}
#footer {
}
.zeroMargin_desktop {
margin-left: 0;
}
.hide_desktop {
display: none;
}


}

/* Cyclone in landscape */
@media only screen
and (min-device-width : 1025px)
and (max-device-width : 1280px)
and (orientation : landscape) { 
/* STYLES GO HERE */ 
#header {
	font-size:3.5em;
	color:hsla(236,53%,42%,1.00);
	/*color:hsla(359,97%,50%,1.00);
Red*/	 
}

#footer {
}

#footer #copyright {
	float:left;
	text-align: left;
	font-size: large;
	color:white;
/*white*/	
	margin-top: 6.5em;
	margin-bottom: 2em;
	padding-left: 50%

}

}


/* Large landscape */

@media only screen
and (min-device-width : 1281px)
and (orientation : landscape) { 
/* STYLES GO HERE */

#header {
	font-size:2.25em;
	color:hsla(236,53%,42%,1.00);
	/*color:hsla(302,97%,49%,1.00);
Magenta*/	 
}

.indexText {
	margin-top: 3em;
}
.contactText {
	margin-top: 3em;
}

#footer {
	
}

#footer #copyright {
	float:left;
	text-align: left;
	font-size: large;
	color:white;
/*white*/	
	margin-top: 6.5em;
	margin-bottom: 2em;
	padding-left: 50%

}

}

/* large Portrait */
@media only screen
and (min-device-width : 1281px)

and (orientation : portrait) { 
/* STYLES GO HERE */ 

}

/* Print STYLES GO Next */ 



@media print{
/* Print STYLES GO HERE */ 



body {
font: 10pt "Times New Roman", "Palatino Linotype", Palatino, "Century Schoolbook", Baskerville, serif;
/*line-height: .75;*/
}


#header {
	font-family:"Times New Roman", "Palatino Linotype", Palatino, "Century Schoolbook", Baskerville, serif;
 	font-size:24pt;
	}	
#navBar {
	display:none;	
}

#dataSheet #dataBlock {
	width: 100%; margin: 0; float: none;
	/*max-width: 100%;*/
		}

h3
      {
        page-break-after: avoid !important; 
        page-break-inside: avoid;
      }

p
      {
        page-break-before: avoid !important; 
        page-break-inside: avoid;
      }
	
footer:before {
display: block;
content: "Printed from www.supergules.co.uk.";
font:Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size:12px;
text-align:center;
margin-bottom: 10px;
border: 1px solid #bbb;
padding: 3px 5px;
font-style: italic;
}	
	
	
}
