This is for the profile border. Open ocean.css. Find .art-sheet around line 608. Replace
.art-sheet
{
background: #FFFFFF;
-webkit-box-shadow:0 0 3px 2px rgba(0, 0, 0, 0.25);
-moz-box-shadow:0 0 3px 2px rgba(0, 0, 0, 0.25);
box-shadow:0 0 3px 2px rgba(0, 0, 0, 0.25);
padding:3px 3px 0;
margin:0 auto;
position:relative;
cursor:auto;
width: 1012px;
z-index: auto !important;
}
with
.art-sheet
{
background: #FFFFFF;
-webkit-box-shadow:0 0 3px 2px rgba(0, 0, 0, 0.25);
-moz-box-shadow:0 0 3px 2px rgba(0, 0, 0, 0.25);
box-shadow:0 0 3px 2px rgba(0, 0, 0, 0.25);
border:1px solid #ffffff;
padding:3px 3px 0;
margin:0 auto;
position:relative;
cursor:auto;
width: 1012px;
z-index: auto !important;
}
I also fixed the alignment issue with the profile. Did you alter the public profile file? I can send you the file if you didnt.