I am trying to create a template like this one using CSS. I have created a div and used the following CSS code, which is looking like this-> http://jsfiddle.net/3kKkD/. But I don't know how to create the curve (I have pointed out in the image below)
Could you please show me how to do it?
Thanks

.container {
width:75%;
margin:0 auto;
margin-bottom:30px;
min-height:600px;
background-color:#FFFFFF;
-moz-box-shadow: 1px 1px 5px #999;
-webkit-box-shadow: 1px 1px 5px #999;
box-shadow: 1px 1px 5px #999;
}
<div class="container">My Template</div>
:afterselector with display block, give it the same bg color as the orange and a border radius then just position it to sit where the curve should go :).container:after { display;block; background-color:#F78E1E; border-radius: 10px; }But its not working. :(