/*   
Theme Name: WPFolio Child Theme
Theme URI: http://wpfolio.visitsteve.com
Description: My changes to the WPFolio Theme.
Author: You	
Author URI: http://yourwebsite.com/about
Template: wpfolio
Version: 0.1
Tags: 
.
WPFolio is free and open source under the GNU Public License
http://wpfolio.visitsteve.com
.
*/

@import url('../wpfolio/style.css');

/* HEADER IMAGE example */
/* 
div#header {
	background: url(images/dummy-header.png) 0 center;
	height: 105px;
}
div.headertext {
	margin-left: 120px;
}
*/

/* add your changes below this line */

/* ROUNDED ACCENTS */

/* these create rounded corners on the container */
.container {
border-top-left-radius: 10px;
-moz-border-radius-topleft: 10px;
-webkit-border-top-left-radius: 10px;
border-top-right-radius: 10px;
-moz-border-radius-topright: 10px;
        -webkit-border-top-right-radius: 10px;
}
.container, .footer{
border-bottom-left-radius: 10px;
-moz-border-radius-bottomleft: 10px;
-webkit-border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
-moz-border-radius-bottomright: 10px;
-webkit-border-bottom-right-radius: 10px;
}

/* menu items may need some tweaking */
.sf-menu li {
-moz-border-radius: .5em;
-webkit-border-radius: .5em;
}

.sf-menu li a {
-moz-border-radius: .5em;
-webkit-border-radius: .5em;
}

/* rounded borders on images in Pages */
.page p img {
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}

/* extra */
.prevnext a:hover {
-moz-border-radius: .5em;
-webkit-border-radius: .5em;
}
/* END ROUNDED ACCENTS */

/* 4 IMAGE GALLERY example*/
.gallery-item {
	width: 25%;
	}

