
Make It Disappear
<style type="text/css">
.cult_info { display: none; }
</style>

Borders
To give the cult_info table a border:
<style type="text/css">
.cult_info { border: 1px solid red; }
</style>
[ More Border Styles ]

Background
To set a background color:
<style type="text/css">
.cult_info { background: red; }
</style>
Or a background image:
<style type="text/css">
.cult_info { background: url('http://www.PATH TO YOUR IMAGE.gif'); }
</style>
More on
[ Backgrounds ]

Text Styles
Cult info has bold and plain text in it. To change the bold text, just change
.cult_info b.
For changing the plain text, it's just
.cult_info.
<style type="text/css">
.cult_info b {
color: deeppink;
font-size: 10pt;
}
.cult_info { color: orange; }
</style>
More
[ Text Styles ]

Positioning
To shift the cult_info table left or right, you can set a margin. Nb, the cult_info table is 100% the width
of the space its in by default, so if you want to move it left or right you have to shrink it a bit first:
<style type="text/css">
.cult_info {
width: 450px;
margin-left: 200px;
}
</style>
You could also use margins to create a bit more space between the cult_info table and the stuff above
or below it:
<style type="text/css">
.cult_info {
margin-top: 20px;
margin-bottom: 10px;
}
</style>