############################################################## 
## Title: phpBB 3.0.4 to phpBB 3.0.5 prosilver Changes
## Author: Acyd Burn < N/A > (Meik Sievertsen) N/A 
## Description: 
##
##	These are the phpBB 3.0.4 to phpBB 3.0.5 prosilver Changes summed up into a
##	little Mod. These changes are only partial and do not include any code changes,
##	therefore not meant for updating phpBB.
##
##
## Files To Edit: 
##		styles/prosilver/imageset/imageset.cfg
##		styles/prosilver/style.cfg
##		styles/prosilver/template/attachment.html
##		styles/prosilver/template/editor.js
##		styles/prosilver/template/forum_fn.js
##		styles/prosilver/template/mcp_notes_user.html
##		styles/prosilver/template/mcp_topic.html
##		styles/prosilver/template/mcp_warn_user.html
##		styles/prosilver/template/memberlist_body.html
##		styles/prosilver/template/overall_header.html
##		styles/prosilver/template/posting_buttons.html
##		styles/prosilver/template/posting_editor.html
##		styles/prosilver/template/posting_review.html
##		styles/prosilver/template/posting_topic_review.html
##		styles/prosilver/template/simple_header.html
##		styles/prosilver/template/template.cfg
##		styles/prosilver/template/ucp_main_bookmarks.html
##		styles/prosilver/template/ucp_main_subscribed.html
##		styles/prosilver/template/ucp_pm_viewmessage.html
##		styles/prosilver/template/ucp_register.html
##		styles/prosilver/template/viewforum_body.html
##		styles/prosilver/template/viewtopic_body.html
##		styles/prosilver/template/viewtopic_print.html
##		styles/prosilver/theme/bidi.css
##		styles/prosilver/theme/colours.css
##		styles/prosilver/theme/common.css
##		styles/prosilver/theme/content.css
##		styles/prosilver/theme/links.css
##		styles/prosilver/theme/theme.cfg
##		styles/prosilver/theme/tweaks.css
##
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2 
############################################################## 

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/imageset/imageset.cfg

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 22
version = 3.0.4

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
version = 3.0.5

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/style.cfg

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 22
version = 3.0.4

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
version = 3.0.5

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/attachment.html

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 59
				<param name="movie" value="{_file.U_DOWNLOAD_LINK}" />
				<param name="play" value="true" />
				<param name="loop" value="true" />
				<param name="quality" value="high" />
				<param name="allowScriptAccess" value="never" />
				<param name="allowNetworking" value="internal" />
				<embed src="{_file.U_DOWNLOAD_LINK}" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" width="{_file.WIDTH}" height="{_file.HEIGHT}" play="true" loop="true" quality="high" allowscriptaccess="never" allownetworking="internal"></embed>

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
				<param name="movie" value="{_file.U_VIEW_LINK}" />
				<param name="play" value="true" />
				<param name="loop" value="true" />
				<param name="quality" value="high" />
				<param name="allowScriptAccess" value="never" />
				<param name="allowNetworking" value="internal" />
				<embed src="{_file.U_VIEW_LINK}" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" width="{_file.WIDTH}" height="{_file.HEIGHT}" play="true" loop="true" quality="high" allowscriptaccess="never" allownetworking="internal"></embed>

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/editor.js

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 19
onload_functions.push('initInsertions()');

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
# Slo eliminar las lneas (sustituye con una lnea vaca) o comentar.
// onload_functions.push('initInsertions()');

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/forum_fn.js

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 21
	if (page !== null && !isNaN(page) && page > 0)
	{
		document.location.href = base_url.replace(/&amp;/g, '&') + '&start=' + ((page - 1) * per_page);
	}

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
	if (page !== null && !isNaN(page) && page == Math.floor(page) && page > 0)
	{
		if (base_url.indexOf('?') == -1)
		{
			document.location.href = base_url + '?start=' + ((page - 1) * per_page);
		}
		else
		{
			document.location.href = base_url.replace(/&amp;/g, '&') + '&start=' + ((page - 1) * per_page);
		}
	}

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 205
			s.setBaseAndExtent(e, 0, e, e.innerText.length - 1);
		}
		// Firefox and Opera
		else
		{

#
#-----[ AADIR DESPUES ]---------------------------------------------
#
			// workaround for bug # 42885
			if (window.opera && e.innerHTML.substring(e.innerHTML.length - 4) == '<BR>')
			{
				e.innerHTML = e.innerHTML + '&nbsp;';
			}

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/mcp_notes_user.html

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 5
	<h3><!-- IF USER_COLOR --><span style="color: #{USER_COLOR}">{USERNAME}</span><!-- ELSE -->{USERNAME}<!-- ENDIF --></h3>

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
	<h3>{USERNAME_FULL}</h3>

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/mcp_topic.html

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 158
	<div><a href="#" onclick="marklist('mcp', '', true); return false;">{L_MARK_ALL}</a> :: <a href="#" onclick="marklist('mcp', '', false); return false;">{L_UNMARK_ALL}</a></div>

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
	<div><a href="#" onclick="marklist('mcp', 'post', true); return false;">{L_MARK_ALL}</a> :: <a href="#" onclick="marklist('mcp', 'post', false); return false;">{L_UNMARK_ALL}</a></div>

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/mcp_warn_user.html

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 5
	<h3><!-- IF USER_COLOR --><span style="color: #{USER_COLOR}">{USERNAME}</span><!-- ELSE -->{USERNAME}<!-- ENDIF --></h3>

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
	<h3>{USERNAME_FULL}</h3>

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/memberlist_body.html

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 130
		<td class="info"><!-- IF memberrow.U_WWW or memberrow.LOCATION --><!-- IF memberrow.U_WWW --><div><a href="{memberrow.U_WWW}" title="{L_VISIT_WEBSITE}: {memberrow.U_WWW}">{memberrow.U_WWW}</a></div><!-- ENDIF --><!-- IF memberrow.LOCATION --><div>{memberrow.LOCATION}</div><!-- ENDIF --><!-- ELSE -->&nbsp;<!-- ENDIF --></td>

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
		<td class="info"><!-- IF memberrow.U_WWW or memberrow.LOCATION --><!-- IF memberrow.U_WWW --><div><a href="{memberrow.U_WWW}" title="{L_VISIT_WEBSITE}: {memberrow.U_WWW}">{memberrow.U_SHORT_WWW}</a></div><!-- ENDIF --><!-- IF memberrow.LOCATION --><div>{memberrow.LOCATION}</div><!-- ENDIF --><!-- ELSE -->&nbsp;<!-- ENDIF --></td>

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/overall_header.html

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 9
<meta name="resource-type" content="document" />
<meta name="distribution" content="global" />
<meta name="copyright" content="2000, 2002, 2005, 2007 phpBB Group" />
<meta name="keywords" content="" />
<meta name="description" content="" />

#
#-----[ AADIR DESPUES ]---------------------------------------------
#
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 101
				<p style="display: none;"><a href="#start_here">{L_SKIP}</a></p>

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
				<p class="skiplink"><a href="#start_here">{L_SKIP}</a></p>

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/posting_buttons.html

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 91
		<option value="150">{L_FONT_LARGE}</option>
		<option value="200">{L_FONT_HUGE}</option>

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
		<!-- IF not MAX_FONT_SIZE or MAX_FONT_SIZE >= 150 -->
			<option value="150">{L_FONT_LARGE}</option>
			<!-- IF not MAX_FONT_SIZE or MAX_FONT_SIZE >= 200 -->
				<option value="200">{L_FONT_HUGE}</option>
			<!-- ENDIF -->
		<!-- ENDIF -->

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/posting_editor.html

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 64
					<dd><label for="group_list">{L_USERGROUPS}:</label> <select name="group_list[]" id="group_list "multiple="true" size="4" class="inputbox">{S_GROUP_OPTIONS}</select></dd>

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
					<dd><label for="group_list">{L_USERGROUPS}:</label> <select name="group_list[]" id="group_list" multiple="multiple" size="4" class="inputbox">{S_GROUP_OPTIONS}</select></dd>

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 137
		<textarea <!-- IF S_UCP_ACTION and not S_PRIVMSGS and not S_EDIT_DRAFT -->name="signature" id="signature" style="height: 9em;"<!-- ELSE -->name="message" id="message"<!-- ENDIF --> rows="15" cols="76" tabindex="3" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" class="inputbox">{MESSAGE}{DRAFT_MESSAGE}{SIGNATURE}</textarea>

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
		<textarea <!-- IF S_UCP_ACTION and not S_PRIVMSGS and not S_EDIT_DRAFT -->name="signature" id="signature" style="height: 9em;"<!-- ELSE -->name="message" id="message"<!-- ENDIF --> rows="15" cols="76" tabindex="3" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" onfocus="initInsertions();" class="inputbox">{MESSAGE}{DRAFT_MESSAGE}{SIGNATURE}</textarea>

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 158
				<dt><label for="comment_list[{attach_row.ASSOC_INDEX}]">{L_FILE_COMMENT}:</label></dt>
				<dd><textarea name="comment_list[{attach_row.ASSOC_INDEX}]" id="comment_list[{attach_row.ASSOC_INDEX}]" rows="1" cols="35" class="inputbox">{attach_row.FILE_COMMENT}</textarea></dd>

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
				<dt><label for="comment_list_{attach_row.ASSOC_INDEX}">{L_FILE_COMMENT}:</label></dt>
				<dd><textarea name="comment_list[{attach_row.ASSOC_INDEX}]" id="comment_list_{attach_row.ASSOC_INDEX}" rows="1" cols="35" class="inputbox">{attach_row.FILE_COMMENT}</textarea></dd>

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/posting_review.html

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 1
<div id="ppr{post_review_row.POST_ID}" class="post <!-- IF post_review_row.S_ROW_COUNT is odd -->bg1<!-- ELSE -->bg2<!-- ENDIF --><!-- IF post_review_row.ONLINE_STATUS --> online<!-- ENDIF -->">
	<div class="inner"><span class="corners-top"><span></span></span>

	<div class="postbody">

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
<!-- IF post_review_row.S_IGNORE_POST -->
<div class="post bg3 post-ignore">
	<div class="inner"><span class="corners-top"><span></span></span>
		{post_review_row.L_IGNORE_POST}
<!-- ELSE -->
<div class="post <!-- IF post_review_row.S_ROW_COUNT is odd -->bg1<!-- ELSE -->bg2<!-- ENDIF --><!-- IF post_review_row.ONLINE_STATUS --> online<!-- ENDIF -->">
	<div class="inner"><span class="corners-top"><span></span></span>
<!-- ENDIF -->

	<div class="postbody" id="ppr{post_review_row.POST_ID}">

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/posting_topic_review.html

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 6
<div id="topicreview">
	<!-- BEGIN topic_review_row -->
	<div class="post <!-- IF topic_review_row.S_ROW_COUNT is odd -->bg1<!-- ELSE -->bg2<!-- ENDIF -->">
		<div class="inner"><span class="corners-top"><span></span></span>

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
<div id="topicreview">
	<!-- BEGIN topic_review_row -->

	<!-- IF topic_review_row.S_IGNORE_POST -->
	<div class="post bg3 post-ignore">
		<div class="inner"><span class="corners-top"><span></span></span>
			{topic_review_row.L_IGNORE_POST}
	<!-- ELSE -->
	<div class="post <!-- IF topic_review_row.S_ROW_COUNT is odd -->bg1<!-- ELSE -->bg2<!-- ENDIF -->">
		<div class="inner"><span class="corners-top"><span></span></span>
	<!-- ENDIF -->

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/simple_header.html

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 15
<title>{SITENAME} &bull; <!-- IF S_IN_MCP -->{L_MCP} &bull; <!-- ELSEIF S_IN_UCP -->{L_UCP} &bull; <!-- ENDIF -->{PAGE_TITLE}</title>

<script type="text/javascript">
// <![CDATA[

#
#-----[ AADIR DESPUES ]---------------------------------------------
#
	var jump_page = '{LA_JUMP_PAGE}:';
	var on_page = '{ON_PAGE}';
	var per_page = '{PER_PAGE}';
	var base_url = '{A_BASE_URL}';
	var style_cookie = 'phpBBstyle';

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 48
// ]]>
</script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/styleswitcher.js"></script>

#
#-----[ AADIR DESPUES ]---------------------------------------------
#
<script type="text/javascript" src="{T_TEMPLATE_PATH}/forum_fn.js"></script>

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/template.cfg

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 22
version = 3.0.4

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
version = 3.0.5

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/ucp_main_bookmarks.html

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 30
				<dt style="<!-- IF topicrow.TOPIC_ICON_IMG -->background-image: url({T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}); background-repeat: no-repeat;<!-- ENDIF -->" title="{topicrow.TOPIC_FOLDER_IMG_ALT}">

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
				<dt<!-- IF topicrow.TOPIC_ICON_IMG --> style="background-image: url({T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ENDIF --> title="{topicrow.TOPIC_FOLDER_IMG_ALT}">

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/ucp_main_subscribed.html

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 50
				<dt style="<!-- IF topicrow.TOPIC_ICON_IMG -->background-image: url({T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}); background-repeat: no-repeat;<!-- ENDIF -->" title="{topicrow.TOPIC_FOLDER_IMG_ALT}">

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
				<dt<!-- IF topicrow.TOPIC_ICON_IMG --> style="background-image: url({T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ENDIF --> title="{topicrow.TOPIC_FOLDER_IMG_ALT}">

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/ucp_pm_viewmessage.html

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 73
			<!-- IF U_EMAIL --><li class="email-icon"><a href="{U_EMAIL}" title="{L_EMAIL}"><span>{L_EMAIL}</span></a></li><!-- ENDIF -->

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
			<!-- IF U_EMAIL --><li class="email-icon"><a href="{U_EMAIL}" title="{L_SEND_EMAIL_USER} {MESSAGE_AUTHOR}"><span>{L_SEND_EMAIL_USER} {MESSAGE_AUTHOR}</span></a></li><!-- ENDIF -->

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/ucp_register.html

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 90
		<dd>{L_CONFIRM_CODE_EXPLAIN}</dd>

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
		<dd>{L_CONFIRM_CODE_EXPLAIN}<!-- IF S_CONFIRM_REFRESH --> {L_VC_REFRESH_EXPLAIN}<!-- ENDIF --></dd>
		<!-- IF S_CONFIRM_REFRESH --><dd><input type="submit" value="{L_VC_REFRESH}" class="button2" /></dd> <!-- ENDIF -->

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 112
		<input type="submit" name="submit" id ="submit" value="{L_SUBMIT}" class="button1" />

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
		<input type="submit" name="submit" id="submit" value="{L_SUBMIT}" class="button1" />

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/viewforum_body.html

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 78
	<!-- IF not S_USER_LOGGED_IN -->

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
	<!-- IF not S_USER_LOGGED_IN and not S_IS_BOT -->

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/viewtopic_body.html

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 112
	<div id="p{postrow.POST_ID}" class="post <!-- IF postrow.S_ROW_COUNT is odd -->bg1<!-- ELSE -->bg2<!-- ENDIF --><!-- IF postrow.S_UNREAD_POST --> unreadpost<!-- ENDIF --><!-- IF postrow.S_POST_REPORTED --> reported<!-- ENDIF --><!-- IF postrow.S_ONLINE --> online<!-- ENDIF -->">

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
	<div id="p{postrow.POST_ID}" class="post <!-- IF postrow.S_ROW_COUNT is odd -->bg1<!-- ELSE -->bg2<!-- ENDIF --><!-- IF postrow.S_UNREAD_POST --> unreadpost<!-- ENDIF --><!-- IF postrow.S_POST_REPORTED --> reported<!-- ENDIF --><!-- IF postrow.S_ONLINE and not postrow.S_IGNORE_POST --> online<!-- ENDIF -->">

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 198
					<!-- IF postrow.U_EMAIL --><li class="email-icon"><a href="{postrow.U_EMAIL}" title="{L_EMAIL}"><span>{L_EMAIL}</span></a></li><!-- ENDIF -->

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
					<!-- IF postrow.U_EMAIL --><li class="email-icon"><a href="{postrow.U_EMAIL}" title="{L_SEND_EMAIL_USER} {postrow.POST_AUTHOR}"><span>{L_SEND_EMAIL_USER} {postrow.POST_AUTHOR}</span></a></li><!-- ENDIF -->

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/template/viewtopic_print.html

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 14
<meta name="robots" CONTENT="noindex" />

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
<meta name="robots" content="noindex" />

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/theme/bidi.css

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 722
/**
* tweaks.css
*/

#
#-----[ AADIR DESPUES ]---------------------------------------------
#
/** Reference: Bug #27155 */
.rtl #wrap, .rtl .headerbar, .rtl #site-description, .rtl .navbar {
	position: relative;
}

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/theme/colours.css

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 885
pmlist li.pm_foe_colour, .pm_foe_colour {

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
.pmlist li.pm_foe_colour, .pm_foe_colour {

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 904
/* General form styles
----------------------------------------*/
select {
	border-color: #666666;
	background-color: #FAFAFA;

#
#-----[ AADIR DESPUES ]---------------------------------------------
#
	color: #000;

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/theme/common.css

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 395
table.table1 .info div	{ width: 100%; white-space: nowrap; overflow: hidden; }

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
table.table1 .info div	{ width: 100%; white-space: normal; overflow: hidden; }

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 602
div.rules ul {

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
div.rules ul, div.rules ol {

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/theme/content.css

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 46
ul.topiclist dfn {
	/* Labels for post/view counts */
	display: none;
}

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
ul.topiclist dfn {
	/* Labels for post/view counts */
	position: absolute;
	left: -999px;
	width: 990px;
}

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 280
#topicreview h2 {
	border-bottom-width: 0;
}

#
#-----[ AADIR DESPUES ]---------------------------------------------
#
.post-ignore .postbody {
	display: none;
}

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/theme/links.css

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 195
a.right:hover {
	color: #d2d2d2;
	text-decoration: none;
	background-position: 100% 60%;
}

#
#-----[ AADIR DESPUES ]---------------------------------------------
#
/* invisible skip link, used for accessibility  */
.skiplink {
	position: absolute;
	left: -999px;
	width: 990px;
}

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/theme/theme.cfg

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 24
version = 3.0.4

#
#-----[ REEMPLAZAR CON ]---------------------------------------------
#
version = 3.0.5

#
#-----[ ABRIR ]--------------------------------------------- 
#
styles/prosilver/theme/tweaks.css

#
#-----[ BUSCAR ]---------------------------------------------
# Alrededor de la lnea 80
* html dl.details dd {
	margin-left: 30%;
	float: none;
}

#
#-----[ AADIR DESPUES ]---------------------------------------------
#
* html .forumbg table.table1 {
	margin: 0 -2px 0px -1px;
}

# 
#-----[ GUARDAR/CIERRE TODOS LOS ARCHIVOS ]------------------------------------------ 
# 
# EoM