/*
##-------------------------------------------------------------------
##
## FILE: css3.css for use on Common/MAKE websites
## CREATED: 09/07/08 by Ben Childs, Common Agency Ltd.
##
## NOTES: The styles herein are used to apply CSS 3 specification
## styling to a web document. As most of the CSS 3 features are
## currently supported in a bespoke manner by different browsers, it
## is good practice to separate these from the common stylesheet for
## now. However, as per usual, they can be used to enhance the
## experience on supported browsers whilst ensuring graceful
## degradation on others.
##
## CURRENTLY SUPPORTED STYLES:
## Text shadow: Safari, Opera
## Box shadow: Safari
## Rounded corners: Firefox, Safari, Camino
## Opacity: Firefox, Safari, Opera
## Multiple backgrounds: Safari
## There are others too!
##
##-------------------------------------------------------------------
*/

/*-------------------------------------------------------------------
## HTML ELEMENTS START HERE */

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## MAIN LAYOUT BLOCKS START HERE

*/
.rounded{
	-moz-border-radius: 7px; 
	-webkit-border-radius: 7px;
}

.homePinForm.rounded{
    -moz-border-radius: 7px 7px 0 0; 
	-webkit-border-radius: 7px 7px 0 0;
}

.tipsBlock.rounded{
    -moz-border-radius: 0 0 7px 7px; 
	-webkit-border-radius: 0 0 7px 7px;
}
