2009-05-26 18:24:25 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<style type="text/css">
|
|
|
|
#separator-top {
|
|
|
|
height: 20px;
|
2014-03-04 22:09:37 +00:00
|
|
|
margin-bottom: 20px;
|
2009-05-26 18:24:25 +00:00
|
|
|
background-color: green;
|
|
|
|
}
|
|
|
|
fieldset {
|
|
|
|
height: 20px;
|
2013-10-16 00:37:03 +00:00
|
|
|
margin: 20px 0;
|
2009-05-26 18:24:25 +00:00
|
|
|
padding: 0;
|
|
|
|
border: none;
|
2013-10-16 00:37:03 +00:00
|
|
|
background-color: green;
|
2009-05-26 18:24:25 +00:00
|
|
|
}
|
|
|
|
#separator-bottom {
|
|
|
|
height: 20px;
|
|
|
|
margin-top: 20px;
|
2013-10-16 00:37:03 +00:00
|
|
|
background-color: green;
|
2009-05-26 18:24:25 +00:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="separator-top"></div>
|
|
|
|
<fieldset></fieldset>
|
|
|
|
<div id="separator-bottom"></div>
|
|
|
|
</body>
|
|
|
|
</html>
|