/* CSS3 and Vendor Prefixes go here */

img {-ms-interpolation-mode: bicubic;}

/* Selection colours (easy to forget) */
::selection 	 	{background:#111; color:#888;}
::-moz-selection 	{background:#111; color:#888;}
img::selection 		{background:transparent;}
img::-moz-selection	{background:transparent;}
body 				{-webkit-tap-highlight-color:#111;}



/*  Input styling
	-------------------  */
button {
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	}



/*  Default Layout
	------------------- */
body {-webkit-text-size-adjust: 100%; /*Stops Mobile Safari from auto-adjusting font-sizes*/}

#content {
	-webkit-box-shadow:0 1px 5px #ccc;
	-moz-box-shadow:0 1px 5px #ccc;
	 box-shadow:0 0px 5px #ccc;
	}	
	header { }	
		nav {
			-webkit-border-radius:0 0 3px 3px;
			-moz-border-radius:0 0 3px 3px;
			 border-radius:0 0 3px 3px;
			}
		
	#content {
		-webkit-border-bottom-left-radius:5px;
		-webkit-border-bottom-right-radius:5px;
		-moz-border-radius-bottomleft:5px;
		-moz-border-radius-bottomright:5px;
		 border-bottom-left-radius:5px;
		 border-bottom-right-radius:5px;
		}
		#content.no-header-img {
			-webkit-border-radius:5px;
			-moz-border-radius:5px;
			 border-radius:5px;			
			}
		
		
		/* Sidebars 
		   ------------------ */
		#leftbar, #rightbar {
			-webkit-border-radius:5px;
			-moz-border-radius:5px;
			 border-radius:5px;
			}
			.sidebar article {
				-webkit-border-radius:3px;
				-moz-border-radius:3px;
				 border-radius:3px;
				}
				.sidebar h4 {
					-webkit-border-radius:3px 3px 0 0;
					-moz-border-radius:3px 3px 0 0;
					 border-radius:3px 3px 0 0;
					}
		
		
		/* Contact Forms
		   -------------------- */
		#contact-form input[type="checkbox"] {*overflow:hidden;}