@import url(/fbui/share/global_1.css);

body {font-size:12px;background:#EEF;margin:0;}
.en{display:none}
#wrapper{width:788px;margin:auto;background:#FFF;border:#bbb solid 1px;}
#inner{width:100%;margin:0;overflow:hidden;}
#sidebar{float:right;width:199px;border-left:#bbb solid 1px}
#content{margin:0 200px 0 0;border-bottom:#bbb solid 1px;}
#head {height:240px;background:#fff;border-bottom:#bbb solid 1px;}
#innerhead {height:130px;background:url("/fbui/fb10549/images/1_825.jpg") no-repeat center top;border-bottom:#bbb solid 1px;padding:70px 0 0 280px;color:#E3DEDA}
#head h1,#head p{margin:0;padding:0 0 0 20px;}
#chead,#shead{display:none;}
#footer{padding:5px;clear:both;text-align:center}
.sidesub {width:100%;margin:0;border-bottom:#bbb solid 1px;}
.pagenav {width:90%;margin:10px auto;}
.sidesub h3{color:#FE6100;font-size:16px;text-align:center;margin:0;border-bottom:#bbb solid 1px;background:url(/fbui/fb10549/images/t_bg.gif) repeat-x;height:20px;padding:6px 0 0 0;}
.sidesub_c{margin:3px;padding:10px;list-style:none;color:#333;}
#menu {position:absolute;top:200px;margin:0 0 0 -590px;width:770px;border:0;color:#84A1B5;}
#menu_c{border:0}
#menu_c li {white-space: nowrap;float:left;list-style:none;margin:0 3px;}
#menu h3,.rss,.rss_c,#menu li span{display:none}

A { text-decoration: NONE; color: #cc0000}
A:hover {border-bottom:1px dashed #cc0000 }

#log {width:99%;overflow:hidden;}
.normallog {margin:10px 0;}
.normallog H4 {margin:0;font-size:12px;padding:5px;color:#84A1B5;border-bottom:#bbb solid 1px}
The source code that generated this unhandled exception can only be shown when compiled in debug mode. To enable this, please follow one of the below steps, then request the URL:

1. Add a "Debug=true" directive at the top of the file that generated the error. Example:

  <%@ Page Language="C#" Debug="true" %>

or:

2) Add the following section to the configuration file of your application:

<configuration>
   <system.web>
       <compilation debug="true"/>
   </system.web>
</configuration>

Note that this second technique will cause all files within a given application to be compiled in debug mode. The first technique will cause only that particular file to be compiled in debug mode.

Important: Running applications in debug mode does incur a memory/performance overhead. You should make sure that an application has debugging disabled before deploying into production scenario.  

