############################################################## 
## Title: phpBB 3.0.9 to phpBB 3.0.10 prosilver Changes
## Author: naderman < naderman@phpbb.com > (Nils Adermann) http://www.phpbb.com 
## Description: 
##		
##		
##		These are the phpBB 3.0.9 to phpBB 3.0.10 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/editor.js
##		styles/prosilver/template/forum_fn.js
##		styles/prosilver/template/jumpbox.html
##		styles/prosilver/template/mcp_approve.html
##		styles/prosilver/template/mcp_front.html
##		styles/prosilver/template/mcp_notes_user.html
##		styles/prosilver/template/mcp_post.html
##		styles/prosilver/template/memberlist_body.html
##		styles/prosilver/template/memberlist_view.html
##		styles/prosilver/template/message_body.html
##		styles/prosilver/template/overall_header.html
##		styles/prosilver/template/posting_buttons.html
##		styles/prosilver/template/template.cfg
##		styles/prosilver/template/ucp_groups_manage.html
##		styles/prosilver/template/ucp_pm_viewmessage_print.html
##		styles/prosilver/template/viewtopic_body.html
##		styles/prosilver/theme/bidi.css
##		styles/prosilver/theme/buttons.css
##		styles/prosilver/theme/common.css
##		styles/prosilver/theme/content.css
##		styles/prosilver/theme/cp.css
##		styles/prosilver/theme/forms.css
##		styles/prosilver/theme/links.css
##		styles/prosilver/theme/print.css
##		styles/prosilver/theme/stylesheet.css
##		styles/prosilver/theme/theme.cfg
##		styles/prosilver/theme/tweaks.css
##
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2 
############################################################## 

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 17
#

# General Information about this style
name = prosilver
copyright = &copy; phpBB Group, 2007

#
#-----[ FIND ]---------------------------------------------
# Around Line 22
version = 3.0.9

#
#-----[ REPLACE WITH ]---------------------------------------------
#
version = 3.0.10

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 17
#

# General Information about this style
name = prosilver
copyright = &copy; phpBB Group, 2007

#
#-----[ FIND ]---------------------------------------------
# Around Line 22
version = 3.0.9
#
#-----[ REPLACE WITH ]---------------------------------------------
#
version = 3.0.10
#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/editor.js

#
#-----[ FIND ]---------------------------------------------
# Around Line 149
	}
	if (spaces) 
	{
		text = ' ' + text + ' ';
	}

#
#-----[ FIND ]---------------------------------------------
# Around Line 154
	
	if (!isNaN(textarea.selectionStart))

#
#-----[ REPLACE WITH ]---------------------------------------------
#

	// Since IE9, IE also has textarea.selectionStart, but it still needs to be treated the old way.
	// Therefore we simply add a !is_ie here until IE fixes the text-selection completely.
	if (!isNaN(textarea.selectionStart) && !is_ie)

#
#-----[ FIND ]---------------------------------------------
# Around Line 216
	if (window.getSelection)
	{
		theSelection = window.getSelection().toString();
	}
	else if (document.getSelection)

#
#-----[ REPLACE WITH ]---------------------------------------------
#
	// IE9 must use the document.selection method but has the *.getSelection so we just force no IE
	if (window.getSelection && !is_ie)
	{
		theSelection = window.getSelection().toString();
	}
	else if (document.getSelection && !is_ie)

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 198
function selectCode(a)
{
	// Get ID of code block
	var e = a.parentNode.parentNode.getElementsByTagName('CODE')[0];


#
#-----[ FIND ]---------------------------------------------
# Around Line 203
	// Not IE

#
#-----[ REPLACE WITH ]---------------------------------------------
#
	// Not IE and IE9+

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/jumpbox.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 8
	<form method="post" id="jumpbox" action="{S_JUMPBOX_ACTION}" onsubmit="if(document.jumpbox.f.value == -1){return false;}">

#
#-----[ REPLACE WITH ]---------------------------------------------
#
	<form method="post" id="jumpbox" action="{S_JUMPBOX_ACTION}" onsubmit="if(this.f.value == -1){return false;}">

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/mcp_approve.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 6
		<!-- IF ADDITIONAL_MSG --><p>{ADDITIONAL_MSG}</p><!-- ENDIF -->

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<!-- IF ADDITIONAL_MSG --><p class="error">{ADDITIONAL_MSG}</p><!-- ENDIF -->

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/mcp_front.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 26
			<!-- BEGIN unapproved -->
			<li class="row<!-- IF unapproved.S_ROW_COUNT is odd --> bg1<!-- ELSE --> bg2<!-- ENDIF -->">
				<dl>
					<dt>
						<a href="{unapproved.U_POST_DETAILS}" class="topictitle">{unapproved.SUBJECT}</a> {unapproved.ATTACH_ICON_IMG}<br />

#
#-----[ FIND ]---------------------------------------------
# Around Line 31
						<!-- IF report.PAGINATION --><strong class="pagination"><span>{report.PAGINATION}</span></strong><!-- ENDIF -->

#
#-----[ REPLACE WITH ]---------------------------------------------
# Just remove/delete the lines (replacing with an empty line)


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

#
#-----[ FIND ]---------------------------------------------
# Around Line 76
		<!-- IF S_CLEAR_ALLOWED --><td width="5%" align="center"><input type="checkbox" name="marknote[]" id="note-{usernotes.ID}" value="{usernotes.ID}" /></td><!-- ENDIF -->

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<!-- IF S_CLEAR_ALLOWED --><td style="width: 5%; text-align: center;"><input type="checkbox" name="marknote[]" id="note-{usernotes.ID}" value="{usernotes.ID}" /></td><!-- ENDIF -->

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/mcp_post.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 72
			<form method="post" id="mcp_approve" action="{U_APPROVE_ACTION}">

			<p class="rules">
				<input class="button2" type="submit" value="{L_DISAPPROVE}" name="action[disapprove]" /> &nbsp;
				<input class="button1" type="submit" value="{L_APPROVE}" name="action[approve]" />

#
#-----[ AFTER, ADD ]---------------------------------------------
#
				<!-- IF not S_FIRST_POST --><input type="hidden" name="mode" value="unapproved_posts" /><!-- ENDIF -->

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 32
				<strong style="font-size: 0.95em;"><a href="{S_MODE_ACTION}&amp;first_char=">{L_ALL}</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=a#memberlist">A</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=b#memberlist">B</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=c#memberlist">C</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=d#memberlist">D</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=e#memberlist">E</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=f#memberlist">F</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=g#memberlist">G</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=h#memberlist">H</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=i#memberlist">I</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=j#memberlist">J</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=k#memberlist">K</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=l#memberlist">L</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=m#memberlist">M</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=n#memberlist">N</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=o#memberlist">O</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=p#memberlist">P</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=q#memberlist">Q</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=r#memberlist">R</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=s#memberlist">S</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=t#memberlist">T</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=u#memberlist">U</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=v#memberlist">V</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=w#memberlist">W</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=x#memberlist">X</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=y#memberlist">Y</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=z#memberlist">Z</a>&nbsp; 
				<a href="{S_MODE_ACTION}&amp;first_char=other">#</a></strong>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
				<strong style="font-size: 0.95em;">
				<!-- BEGIN first_char -->
					<a href="{first_char.U_SORT}">{first_char.DESC}</a>&nbsp; 
				<!-- END first_char -->
				</strong>

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/memberlist_view.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 26
		<!-- IF AGE --><dt>{L_AGE}:</dt> <dd>{AGE}</dd><!-- ENDIF -->

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<!-- IF AGE !== '' --><dt>{L_AGE}:</dt> <dd>{AGE}</dd><!-- ENDIF -->

#
#-----[ FIND ]---------------------------------------------
# Around Line 87
				<dt>{L_ACTIVE_IN_FORUM}:</dt> <dd><!-- IF ACTIVE_FORUM --><strong><a href="{U_ACTIVE_FORUM}">{ACTIVE_FORUM}</a></strong><br />({ACTIVE_FORUM_POSTS} / {ACTIVE_FORUM_PCT})<!-- ELSE --> - <!-- ENDIF --></dd>
				<dt>{L_ACTIVE_IN_TOPIC}:</dt> <dd><!-- IF ACTIVE_TOPIC --><strong><a href="{U_ACTIVE_TOPIC}">{ACTIVE_TOPIC}</a></strong><br />({ACTIVE_TOPIC_POSTS} / {ACTIVE_TOPIC_PCT})<!-- ELSE --> - <!-- ENDIF --></dd>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
				<dt>{L_ACTIVE_IN_FORUM}:</dt> <dd><!-- IF ACTIVE_FORUM != '' --><strong><a href="{U_ACTIVE_FORUM}">{ACTIVE_FORUM}</a></strong><br />({ACTIVE_FORUM_POSTS} / {ACTIVE_FORUM_PCT})<!-- ELSE --> - <!-- ENDIF --></dd>
				<dt>{L_ACTIVE_IN_TOPIC}:</dt> <dd><!-- IF ACTIVE_TOPIC != '' --><strong><a href="{U_ACTIVE_TOPIC}">{ACTIVE_TOPIC}</a></strong><br />({ACTIVE_TOPIC_POSTS} / {ACTIVE_TOPIC_PCT})<!-- ELSE --> - <!-- ENDIF --></dd>

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/message_body.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 1
<!-- INCLUDE overall_header.html -->

#
#-----[ REPLACE WITH ]---------------------------------------------
#
<!-- IF S_SIMPLE_MESSAGE -->
	<!-- INCLUDE simple_header.html -->
<!-- ELSE -->
	<!-- INCLUDE overall_header.html -->
<!-- ENDIF -->

#
#-----[ FIND ]---------------------------------------------
# Around Line 10
	<p>{MESSAGE_TEXT}</p>
	<!-- IF SCRIPT_NAME == "search" and not S_BOARD_DISABLED and not S_NO_SEARCH and L_RETURN_TO_SEARCH_ADV --><p><a href="{U_SEARCH}" class="{S_CONTENT_FLOW_BEGIN}">{L_RETURN_TO_SEARCH_ADV}</a></p><!-- ENDIF -->
	<span class="corners-bottom"><span></span></span></div>
</div>


#
#-----[ FIND ]---------------------------------------------
# Around Line 15
<!-- INCLUDE overall_footer.html -->
#
#-----[ REPLACE WITH ]---------------------------------------------
#
<!-- IF S_SIMPLE_MESSAGE -->
	<!-- INCLUDE simple_footer.html -->
<!-- ELSE -->
	<!-- INCLUDE overall_footer.html -->
<!-- ENDIF -->

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 66
	{
		for (var i = 0; i < onload_functions.length; i++)
		{
			eval(onload_functions[i]);
		}

#
#-----[ FIND ]---------------------------------------------
# Around Line 71
	}

#
#-----[ REPLACE WITH ]---------------------------------------------
#
	};

#
#-----[ FIND ]---------------------------------------------
# Around Line 74
	{
		for (var i = 0; i < onunload_functions.length; i++)
		{
			eval(onunload_functions[i]);
		}

#
#-----[ FIND ]---------------------------------------------
# Around Line 79
	}

#
#-----[ REPLACE WITH ]---------------------------------------------
#
	};

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 23
		p: '{LA_BBCODE_P_HELP}',
		w: '{LA_BBCODE_W_HELP}',
		a: '{LA_BBCODE_A_HELP}',
		s: '{LA_BBCODE_S_HELP}',
		f: '{LA_BBCODE_F_HELP}',

#
#-----[ FIND ]---------------------------------------------
# Around Line 28
		e: '{LA_BBCODE_E_HELP}',

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		y: '{LA_BBCODE_Y_HELP}',

#
#-----[ FIND ]---------------------------------------------
# Around Line 77
	<input type="button" class="button2" accesskey="y" name="addlitsitem" value="[*]" style="width: 40px" onclick="bbstyle(-1)" title="{L_BBCODE_LISTITEM_HELP}" />

#
#-----[ REPLACE WITH ]---------------------------------------------
#
	<input type="button" class="button2" accesskey="y" name="addlistitem" value="[*]" style="width: 40px" onclick="bbstyle(-1)" title="{L_BBCODE_LISTITEM_HELP}" />

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 17
#

# General Information about this template
name = prosilver
copyright = &copy; phpBB Group, 2007

#
#-----[ FIND ]---------------------------------------------
# Around Line 22
version = 3.0.9

#
#-----[ REPLACE WITH ]---------------------------------------------
#
version = 3.0.10

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/ucp_groups_manage.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 141
		<tr>
			<td class="bg1" colspan="5">{L_GROUPS_NO_MEMBERS}</td>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<table class="table1" cellspacing="1">
		<thead>
		<tr>
			<th class="name">{L_MEMBERS}</th>
		</tr>
		</thead>
		<tbody>
		<tr>
			<td class="bg1">{L_GROUPS_NO_MEMBERS}</td>

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/ucp_pm_viewmessage_print.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 1
<meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
<meta http-equiv="content-style-type" content="text/css" />
<meta http-equiv="content-language" content="{S_USER_LANG}" />
<title>{SITENAME} :: {PAGE_TITLE}</title>

<style type="text/css">
/* <![CDATA[ */
body {
	font-family: Verdana,serif;
	font-size: 10pt;
}

td {
	font-family: Verdana,serif;
	font-size: 10pt;
	line-height: 150%;
}

.code, .quote {
	font-size: smaller;
	border: black solid 1px;
}

.forum {
	font-family: Arial,Helvetica,sans-serif;
	font-weight: bold;
	font-size: 18pt;
}

.topic {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 14pt;
	font-weight: bold;
}

.gensmall {
	font-size: 8pt;
}

hr {
	color: #888888;
	height: 3px;
	border-style: solid;
}

hr.sep	{
	color: #AAAAAA;
	height: 1px;
	border-style: dashed;
}
/* ]]> */
</style>

</head>
<body>

<table width="85%" cellspacing="3" cellpadding="0" border="0" align="center">
<tr>
	<td colspan="2" align="center"><span class="forum">{SITENAME}</span><br /><span class="gensmall">{L_PRIVATE_MESSAGING}</a></span></td>
</tr>
<tr>
	<td colspan="2"><br /></td>
</tr>
<tr>
	<td><span class="topic">{SUBJECT}</span><br /></td>
	<td align="right" valign="bottom"><span class="gensmall">{PAGE_NUMBER}</span></td>
</tr>
</table>

<hr width="85%" />

<table width="85%" cellspacing="3" cellpadding="0" border="0" align="center">
<tr>
	<td width="10%" nowrap="nowrap">{L_PM_FROM}:&nbsp;</td>
	<td><strong>{MESSAGE_AUTHOR}</strong> [ {SENT_DATE} ]</td>
</tr>

<!-- IF S_TO_RECIPIENT -->
	<tr>
		<td width="10%" nowrap="nowrap">{L_TO}:</td>
		<td>
		<!-- BEGIN to_recipient -->
			<span<!-- IF to_recipient.IS_GROUP --> class="sep"<!-- ENDIF -->>{to_recipient.NAME}</span>&nbsp;
		<!-- END to_recipient -->
		</td>
	</tr>
<!-- ENDIF -->

<!-- IF S_BCC_RECIPIENT -->
	<tr>
		<td width="10%" nowrap="nowrap">{L_BCC}:</td>
		<td>
		<!-- BEGIN bcc_recipient -->
			<!-- IF bcc_recipient.COLOUR --><span style="color:{bcc_recipient.COLOUR}"><!-- ELSE --><span<!-- IF bcc_recipient.IS_GROUP --> class="sep"<!-- ENDIF -->><!-- ENDIF -->{bcc_recipient.NAME}</span>&nbsp;
		<!-- END bcc_recipient -->
		</td>
	</tr>
<!-- ENDIF -->
<tr>
	<td colspan="2"><hr class="sep" />{MESSAGE}</td>
</tr>
</table>

<hr width="85%" />

<table width="85%" cellspacing="3" cellpadding="0" border="0" align="center">
<tr>
	<td><span class="gensmall">{PAGE_NUMBER}</span></td>
	<td align="{S_CONTENT_FLOW_END}"><span class="gensmall">{S_TIMEZONE}</span></td>
</tr>
<tr>
	<td colspan="2" align="center"><span class="gensmall">Powered by phpBB&reg; Forum Software &copy; phpBB Group<br />http://www.phpbb.com/</span></td>
</tr>
</table>

#
#-----[ REPLACE WITH ]---------------------------------------------
#

<meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
<meta http-equiv="content-style-type" content="text/css" />
<meta http-equiv="content-language" content="{S_USER_LANG}" />
<meta http-equiv="imagetoolbar" content="no" />
<meta name="resource-type" content="document" />
<meta name="distribution" content="global" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta name="robots" content="noindex" />
{META}
<title>{SITENAME} &bull; {PAGE_TITLE}</title>

<link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" />
</head>

<body id="phpbb">
<div id="wrap">
	<a id="top" name="top" accesskey="t"></a>

	<div id="page-header">
		<h1>{SITENAME}</h1>
		<p>{SITE_DESCRIPTION}<br /><a href="{U_FORUM}">{U_FORUM}</a></p>

		<h2>{TOPIC_TITLE}</h2>
		<p><a href="{U_TOPIC}">{U_TOPIC}</a></p>
	</div>

	<div id="page-body">
		<div class="page-number">{PAGE_NUMBER}</div>
			<div class="post">
				<h3>{SUBJECT}</h3>
				<div class="date">{L_SENT_AT} <strong>{SENT_DATE}</strong></div>
				<div class="author">{L_PM_FROM} <strong>{MESSAGE_AUTHOR}</strong></div>
				<!-- IF S_TO_RECIPIENT -->
					<div class="author">{L_TO} <strong><!-- BEGIN to_recipient -->{to_recipient.NAME}&nbsp;<!-- END to_recipient --></strong></div>
				<!-- ENDIF -->
				<!-- IF S_BCC_RECIPIENT -->
					<div class="author">{L_BCC} <strong><!-- BEGIN bcc_recipient -->{bcc_recipient.NAME}&nbsp;<!-- END bcc_recipient --></strong></div>
				<!-- ENDIF -->
				<hr />
				<div class="content">{MESSAGE}</div>
			</div>
			<hr />
	</div>

	<div id="page-footer">
		<div class="page-number">{S_TIMEZONE}<br />{PAGE_NUMBER}</div>
		<div class="copyright">Powered by phpBB&reg; Forum Software &copy; phpBB Group<br />http://www.phpbb.com/</div>
	</div>
</div>

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 2
<!-- IF MODERATORS or U_MCP -->
	<p>
		<!-- IF MODERATORS -->
			<strong><!-- IF S_SINGLE_MODERATOR -->{L_MODERATOR}<!-- ELSE -->{L_MODERATORS}<!-- ENDIF -->:</strong> {MODERATORS}
		<!-- ENDIF -->

	</p>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
<!-- IF MODERATORS -->
<p>
	<strong><!-- IF S_SINGLE_MODERATOR -->{L_MODERATOR}<!-- ELSE -->{L_MODERATORS}<!-- ENDIF -->:</strong> {MODERATORS}
</p>

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 1
/* proSilver RTL definitions

#
#-----[ REPLACE WITH ]---------------------------------------------
#
/* RTL definitions

#
#-----[ FIND ]---------------------------------------------
# Around Line 517
}

/**
* cp.css
*/

#
#-----[ FIND ]---------------------------------------------
# Around Line 522
/* proSilver Control Panel Styles

#
#-----[ REPLACE WITH ]---------------------------------------------
#
/* Control Panel Styles

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/theme/buttons.css

#
#-----[ FIND ]---------------------------------------------
# Around Line 1
/* proSilver Button Styles

#
#-----[ REPLACE WITH ]---------------------------------------------
#
/* Button Styles

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 1
/* General proSilver Markup Styles

#
#-----[ REPLACE WITH ]---------------------------------------------
#
/* General Markup Styles

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 1
/* proSilver Content Styles

#
#-----[ REPLACE WITH ]---------------------------------------------
#
/* Content Styles

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/theme/cp.css

#
#-----[ FIND ]---------------------------------------------
# Around Line 1
/* proSilver Control Panel Styles

#
#-----[ REPLACE WITH ]---------------------------------------------
#
/* Control Panel Styles

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/theme/forms.css

#
#-----[ FIND ]---------------------------------------------
# Around Line 1
/* proSilver Form Styles

#
#-----[ REPLACE WITH ]---------------------------------------------
#
/* Form Styles

#
#-----[ FIND ]---------------------------------------------
# Around Line 24
	cursor: pointer;
	vertical-align: middle;
	border: 1px solid #666666;
	padding: 1px;
	background-color: #FAFAFA;

#
#-----[ AFTER, ADD ]---------------------------------------------
#
	font-size: 1em;

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 1
/* proSilver Link Styles

#
#-----[ REPLACE WITH ]---------------------------------------------
#
/* Link Styles

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/theme/print.css

#
#-----[ FIND ]---------------------------------------------
# Around Line 1
/* proSilver Print Style Sheet
-------------------------------------------------
	Author: subBlue  ( http://www.subBlue.com/ )
	Version: 25 August 2004

	Copyright 2004 phpBB Group
-------------------------------------------------*/

#
#-----[ REPLACE WITH ]---------------------------------------------
#
/* Print Style Sheet
---------------------------------------- */

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/theme/stylesheet.css

#
#-----[ FIND ]---------------------------------------------
# Around Line 1
/*  phpBB 3.0 Style Sheet
    --------------------------------------------------------------
	Style name:		proSilver
	Based on style:	proSilver (this is the default phpBB 3 style)
	Original author:	subBlue ( http://www.subBlue.com/ )
	Modified by:		
	
	Copyright 2006 phpBB Group ( http://www.phpbb.com/ )

#
#-----[ REPLACE WITH ]---------------------------------------------
#
/*  phpBB3 Style Sheet
    --------------------------------------------------------------
	Style name:			prosilver (the default phpBB 3.0.x style)
	Based on style:		
	Original author:	Tom Beddard ( http://www.subblue.com/ )
	Modified by:		phpBB Group ( http://www.phpbb.com/ )

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 19
#

# General Information about this theme
name = prosilver
copyright = &copy; phpBB Group, 2007

#
#-----[ FIND ]---------------------------------------------
# Around Line 24
version = 3.0.9

#
#-----[ REPLACE WITH ]---------------------------------------------
#
version = 3.0.10

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 1
/* proSilver Style Sheet Tweaks

#
#-----[ REPLACE WITH ]---------------------------------------------
#
/* Style Sheet Tweaks

# 
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ 
# 
# EoM