The provided text appears to be a mix of CSS code and URLs, with some Chinese characters. Below is the translation of the Chinese part and the restructuring of the CSS code in proper English formatting:
```css
/* Background image URL */
background: url('http://fm491.img.xiaonei.com/tribe/20080617/20/02/A414586654827CHI.jpg') no-repeat fixed top center;
background-color: #220F09;
/* Container styling */
#container {
width: 990px;
margin: 0px auto;
}
/* Hides bottom status */
#bottomstatus {
display: none;
}
/* Body cursor customization */
body {
cursor: url('http://www.xiaoyudeyu.cn/shubiao/2.cur'), auto;
}
/* Wide bar styling */
#widebar {
background: transparent;
width: 990px;
margin: 0px auto;
}
/* Space page content positioning */
#spacePage #content {
position: absolute;
left: 23px;
top: 80px;
background: transparent;
width: 690px;
border: 0px;
}
/* User relations section */
#userRelations {
width: 210px;
margin-right: 0px;
}
```
### Notes:
1. The Chinese word "no-repeat" is already a standard CSS property and does not need translation.
2. The URLs provided are kept as-is since they are references to images or resources.
3. The `cursor` property in the `body` selector includes a fallback (`auto`) for browsers that do not support custom cursors.