Spade

Mini Shell

Directory:~$ /home/lmsyaran/www/joomla4/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/www/joomla4/hathor.tar

component.php000064400000005630151163244070007266 0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

/** @var JDocumentHtml $this */

// Get additional language strings prefixed with TPL_HATHOR
// @todo: Do we really need this?
$lang = JFactory::getLanguage();
$lang->load('tpl_hathor', JPATH_ADMINISTRATOR)
|| $lang->load('tpl_hathor', JPATH_ADMINISTRATOR .
'/templates/hathor/language');

$app = JFactory::getApplication();

// Output as HTML5
$this->setHtml5(true);

// jQuery needed by template.js
JHtml::_('jquery.framework');

// Add template js
JHtml::_('script', 'template.js',
array('version' => 'auto', 'relative'
=> true));

// Add html5 shiv
JHtml::_('script', 'jui/html5.js',
array('version' => 'auto', 'relative'
=> true, 'conditional' => 'lt IE 9'));

// Load optional RTL Bootstrap CSS
JHtml::_('bootstrap.loadCss', false, $this->direction);

// Load system style CSS
JHtml::_('stylesheet',
'templates/system/css/system.css', array('version'
=> 'auto'));

// Loadtemplate CSS
JHtml::_('stylesheet', 'template.css',
array('version' => 'auto', 'relative'
=> true));

// Load additional CSS styles for colors
if (!$this->params->get('colourChoice'))
{
	$colour = 'standard';
}
else
{
	$colour =
htmlspecialchars($this->params->get('colourChoice'));
}

JHtml::_('stylesheet', 'colour_' . $colour .
'.css', array('version' => 'auto',
'relative' => true));

// Load additional CSS styles for rtl sites
if ($this->direction === 'rtl')
{
	JHtml::_('stylesheet', 'template_rtl.css',
array('version' => 'auto', 'relative'
=> true));
	JHtml::_('stylesheet', 'colour_' . $colour .
'_rtl.css', array('version' => 'auto',
'relative' => true));
}

// Load additional CSS styles for bold Text
if ($this->params->get('boldText'))
{
	JHtml::_('stylesheet', 'boldtext.css',
array('version' => 'auto', 'relative'
=> true));
}

// Load specific language related CSS
JHtml::_('stylesheet', 'administrator/language/' .
$lang->getTag() . '/' . $lang->getTag() . '.css',
array('version' => 'auto'));

// Load custom.css
JHtml::_('stylesheet', 'custom.css',
array('version' => 'auto', 'relative'
=> true));

// IE specific
JHtml::_('stylesheet', 'ie8.css',
array('version' => 'auto', 'relative'
=> true, 'conditional' => 'IE 8'));
JHtml::_('stylesheet', 'ie7.css',
array('version' => 'auto', 'relative'
=> true, 'conditional' => 'IE 7'));

// Logo file
if ($this->params->get('logoFile'))
{
	$logo = JUri::root() . $this->params->get('logoFile');
}
else
{
	$logo = $this->baseurl . '/templates/' . $this->template .
'/images/logo.png';
}

?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>"
dir="<?php echo $this->direction; ?>">
<head>
	<jdoc:include type="head" />
</head>
<body class="contentpane">
	<jdoc:include type="message" />
	<jdoc:include type="component" />
</body>
</html>
cpanel.php000064400000011552151163244070006526 0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

/** @var JDocumentHtml $this */

$app   = JFactory::getApplication();
$lang  = JFactory::getLanguage();

// Output as HTML5
$this->setHtml5(true);

// Add template js
JHtml::_('script', 'template.js',
array('version' => 'auto', 'relative'
=> true));

// Add html5 shiv
JHtml::_('script', 'jui/html5.js',
array('version' => 'auto', 'relative'
=> true, 'conditional' => 'lt IE 9'));

// Load optional RTL Bootstrap CSS
JHtml::_('bootstrap.loadCss', false, $this->direction);

// Load system style CSS
JHtml::_('stylesheet',
'templates/system/css/system.css', array('version'
=> 'auto'));

// Load template CSS
JHtml::_('stylesheet', 'template.css',
array('version' => 'auto', 'relative'
=> true));

// Load additional CSS styles for colors
if (!$this->params->get('colourChoice'))
{
	$colour = 'standard';
}
else
{
	$colour =
htmlspecialchars($this->params->get('colourChoice'));
}

JHtml::_('stylesheet', 'colour_' . $colour .
'.css', array('version' => 'auto',
'relative' => true));

// Load additional CSS styles for rtl sites
if ($this->direction === 'rtl')
{
	JHtml::_('stylesheet', 'template_rtl.css',
array('version' => 'auto', 'relative'
=> true));
	JHtml::_('stylesheet', 'colour_' . $colour .
'_rtl.css', array('version' => 'auto',
'relative' => true));
}

// Load additional CSS styles for bold Text
if ($this->params->get('boldText'))
{
	JHtml::_('stylesheet', 'boldtext.css',
array('version' => 'auto', 'relative'
=> true));
}

// Load specific language related CSS
JHtml::_('stylesheet', 'administrator/language/' .
$lang->getTag() . '/' . $lang->getTag() . '.css',
array('version' => 'auto'));

// Load custom.css
JHtml::_('stylesheet', 'custom.css',
array('version' => 'auto', 'relative'
=> true));

// IE specific
JHtml::_('stylesheet', 'ie8.css',
array('version' => 'auto', 'relative'
=> true, 'conditional' => 'IE 8'));
JHtml::_('stylesheet', 'ie7.css',
array('version' => 'auto', 'relative'
=> true, 'conditional' => 'IE 7'));

// Logo file
if ($this->params->get('logoFile'))
{
	$logo = JUri::root() . $this->params->get('logoFile');
}
else
{
	$logo = $this->baseurl . '/templates/' . $this->template .
'/images/logo.png';
}

?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>"
dir="<?php echo $this->direction; ?>">
<head>
	<jdoc:include type="head" />
</head>
<body id="minwidth" class="cpanel-page">
<div id="containerwrap">
	<!-- Header Logo -->
	<div id="header">
		<!-- Site Title and Skip to Content -->
		<div class="title-ua">
			<h1 class="title"><?php echo
$this->params->get('showSiteName') ?
$app->get('sitename') . ' ' .
JText::_('JADMINISTRATION') :
JText::_('JADMINISTRATION'); ?></h1>
			<div id="skiplinkholder"><p><a
id="skiplink" href="#skiptarget"><?php echo
JText::_('TPL_HATHOR_SKIP_TO_MAIN_CONTENT');
?></a></p></div>
		</div>
	</div><!-- end header -->
	<!-- Main Menu Navigation -->
	<div id="nav">
		<div id="module-menu">
			<h2 class="element-invisible"><?php echo
JText::_('TPL_HATHOR_MAIN_MENU'); ?></h2>
			<jdoc:include type="modules" name="menu" />
		</div>
		<div class="clr"></div>
	</div><!-- end nav -->
	<!-- Status Module -->
	<div id="module-status">
		<jdoc:include type="modules" name="status"/>
	</div>
	<!-- Content Area -->
	<div id="content">
		<!-- Component Title -->
		<jdoc:include type="modules" name="title" />
		<!-- System Messages -->
		<jdoc:include type="message" />
		<!-- Sub Menu Navigation -->
		<div id="no-submenu"></div>
		<div class="clr"></div>
		<!-- Beginning of Actual Content -->
		<div id="element-box">
			<p id="skiptargetholder"><a id="skiptarget"
class="skip" tabindex="-1"></a></p>
				<div class="adminform">
					<!-- Display the Quick Icon Shortcuts -->
					<div class="cpanel-icons">
						<jdoc:include type="modules" name="icon" />
					</div>
					<!-- Display Admin Information Panels -->
					<div class="cpanel-component">
						<jdoc:include type="component" />
					</div>
				</div>
				<div class="clr"></div>
		</div><!-- end element-box -->
		<noscript>
			<?php echo JText::_('JGLOBAL_WARNJAVASCRIPT'); ?>
		</noscript>
		<div class="clr"></div>
	</div><!-- end content -->
		<div class="clr"></div>
	</div><!-- end containerwrap -->
	<!-- Footer -->
	<div id="footer">
		<jdoc:include type="modules" name="footer"
style="none"  />
		<p class="copyright">
			<?php
			// Fix wrong display of Joomla!® in RTL language
			if ($lang->isRtl())
			{
				$joomla = '<a href="https://www.joomla.org"
target="_blank">Joomla!</a><sup>&#174;&#x200E;</sup>';
			}
			else
			{
				$joomla = '<a href="https://www.joomla.org"
target="_blank">Joomla!</a><sup>&#174;</sup>';
			}
			echo JText::sprintf('JGLOBAL_ISFREESOFTWARE', $joomla);
			?>
		</p>
	</div>
</body>
</html>
css/boldtext.css000064400000000573151163244070007703 0ustar00@charset
"UTF-8";

/**
 * @package		Joomla.Administrator
 * @subpackage	templates.hathor
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 * @since		1.6
 *
 * Changes to use bold text as the default
 */

/**
 * Default to bold text
 */
body {
	font-weight: bold;
}
css/colour_blue.css000064400000133523151163244070010372 0ustar00.clearfix {
	*zoom: 1;
}
.clearfix:before,
.clearfix:after {
	display: table;
	content: "";
	line-height: 0;
}
.clearfix:after {
	clear: both;
}
.hide-text {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}
.input-block-level {
	display: block;
	width: 100%;
	min-height: 25px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#form-login .btn {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	padding: 4px 14px;
	margin-bottom: 0;
	font-size: 13px;
	line-height: 15px;
	*line-height: 15px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	color: #333333;
	text-shadow: 0 1px 1px rgba(255,255,255,0.75);
	background-color: #f5f5f5;
	background-image: -moz-linear-gradient(top,#ffffff,#e6e6e6);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#ffffff),to(#e6e6e6));
	background-image: -webkit-linear-gradient(top,#ffffff,#e6e6e6);
	background-image: -o-linear-gradient(top,#ffffff,#e6e6e6);
	background-image: linear-gradient(to bottom,#ffffff,#e6e6e6);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',
endColorstr='#ffe5e5e5', GradientType=0);
	border-color: #e6e6e6 #e6e6e6 #bfbfbf;
	*background-color: #e6e6e6;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
	border: 1px solid #bbb;
	*border: 0;
	border-bottom-color: #a2a2a2;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	*margin-left: .3em;
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px
rgba(0,0,0,.05);
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px
rgba(0,0,0,.05);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
}
#form-login .btn:hover,
#form-login .btn:focus,
#form-login .btn:active,
#form-login .btn.active,
#form-login .btn.disabled,
#form-login .btn[disabled] {
	color: #333333;
	background-color: #e6e6e6;
	*background-color: #d9d9d9;
}
#form-login .btn:active,
#form-login .btn.active {
	background-color: #cccccc \9;
}
#form-login .btn:first-child {
	*margin-left: 0;
}
#form-login .btn:hover {
	color: #333333;
	text-decoration: none;
	background-color: #e6e6e6;
	*background-color: #d9d9d9;
	background-position: 0 -15px;
	-webkit-transition: background-position .1s linear;
	-moz-transition: background-position .1s linear;
	-o-transition: background-position .1s linear;
	transition: background-position .1s linear;
}
#form-login .btn:focus {
	outline: thin dotted #333;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
#form-login .btn.active,
#form-login .btn:active {
	background-color: #e6e6e6;
	background-color: #d9d9d9 \9;
	background-image: none;
	outline: 0;
	-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px
rgba(0,0,0,.05);
	-moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px
rgba(0,0,0,.05);
	box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
#form-login .btn.disabled,
#form-login .btn[disabled] {
	cursor: default;
	background-color: #e6e6e6;
	background-image: none;
	opacity: 0.65;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-large {
	padding: 9px 14px;
	font-size: 15px;
	line-height: normal;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.btn-large [class^="icon-"] {
	margin-top: 2px;
}
.input-append input[class*="span"],
.input-append .uneditable-input[class*="span"],
.input-prepend input[class*="span"],
.input-prepend .uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"],
.row-fluid .input-prepend [class*="span"],
.row-fluid .input-append [class*="span"] {
	display: inline-block;
}
.input-append,
.input-prepend {
	margin-bottom: 5px;
	font-size: 0;
	white-space: nowrap;
}
.input-append input,
.input-append select,
.input-append .uneditable-input,
.input-prepend input,
.input-prepend select,
.input-prepend .uneditable-input {
	position: relative;
	margin-bottom: 0;
	*margin-left: 0;
	font-size: 13px;
	vertical-align: top;
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}
.input-append input:focus,
.input-append select:focus,
.input-append .uneditable-input:focus,
.input-prepend input:focus,
.input-prepend select:focus,
.input-prepend .uneditable-input:focus {
	z-index: 2;
}
.input-append .add-on,
.input-prepend .add-on {
	display: inline-block;
	width: auto;
	height: 15px;
	min-width: 16px;
	padding: 4px 5px;
	font-size: 13px;
	font-weight: normal;
	line-height: 15px;
	text-align: center;
	text-shadow: 0 1px 0 #ffffff;
	background-color: #eeeeee;
	border: 1px solid #ccc;
}
.input-append .add-on,
.input-append .btn,
.input-prepend .add-on,
.input-prepend .btn {
	margin-left: -1px;
	vertical-align: top;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.input-append .active,
.input-prepend .active {
	background-color: #a9dba9;
	border-color: #46a546;
}
.input-prepend .add-on,
.input-prepend .btn {
	margin-right: -1px;
}
.input-prepend .add-on:first-child,
.input-prepend .btn:first-child {
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}
.input-append input,
.input-append select,
.input-append .uneditable-input {
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}
.input-append .add-on:last-child,
.input-append .btn:last-child {
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}
.input-prepend.input-append input,
.input-prepend.input-append select,
.input-prepend.input-append .uneditable-input {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.input-prepend.input-append .add-on:first-child,
.input-prepend.input-append .btn:first-child {
	margin-right: -1px;
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}
.input-prepend.input-append .add-on:last-child,
.input-prepend.input-append .btn:last-child {
	margin-left: -1px;
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}
.form-search .input-append .search-query,
.form-search .input-prepend .search-query {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.form-search .input-append .search-query {
	-webkit-border-radius: 14px 0 0 14px;
	-moz-border-radius: 14px 0 0 14px;
	border-radius: 14px 0 0 14px;
}
.form-search .input-append .btn {
	-webkit-border-radius: 0 14px 14px 0;
	-moz-border-radius: 0 14px 14px 0;
	border-radius: 0 14px 14px 0;
}
.form-search .input-prepend .search-query {
	-webkit-border-radius: 0 14px 14px 0;
	-moz-border-radius: 0 14px 14px 0;
	border-radius: 0 14px 14px 0;
}
.form-search .input-prepend .btn {
	-webkit-border-radius: 14px 0 0 14px;
	-moz-border-radius: 14px 0 0 14px;
	border-radius: 14px 0 0 14px;
}
.form-search input,
.form-search textarea,
.form-search select,
.form-search .help-inline,
.form-search .uneditable-input,
.form-search .input-prepend,
.form-search .input-append,
.form-inline input,
.form-inline textarea,
.form-inline select,
.form-inline .help-inline,
.form-inline .uneditable-input,
.form-inline .input-prepend,
.form-inline .input-append,
.form-horizontal input,
.form-horizontal textarea,
.form-horizontal select,
.form-horizontal .help-inline,
.form-horizontal .uneditable-input,
.form-horizontal .input-prepend,
.form-horizontal .input-append {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	margin-bottom: 0;
	vertical-align: middle;
}
.form-search .hide,
.form-inline .hide,
.form-horizontal .hide {
	display: none;
}
.form-search .input-append,
.form-inline .input-append,
.form-search .input-prepend,
.form-inline .input-prepend {
	margin-bottom: 0;
}
.element-invisible {
	position: absolute;
	padding: 0 !important;
	margin: 0 !important;
	border: 0;
	height: 1px;
	width: 1px !important;
	overflow: hidden;
}
#form-login select,
#form-login input[type="text"],
#form-login input[type="password"] {
	display: inline-block;
	padding: 4px 6px;
	margin-bottom: 9px;
	font-size: 13px;
	line-height: 15px;
	color: #555555;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	width: 175px;
}
.subform-repeatable-wrapper div.btn-toolbar {
	float: none;
}
.subform-repeatable-wrapper .text-right {
	text-align: right;
}
.subform-repeatable-wrapper .ui-sortable-helper {
	background: #ffffff;
}
.subform-repeatable-wrapper tr.ui-sortable-helper {
	display: table;
}
.subform-repeatable-wrapper .subform-repeatable-group {
	clear: both;
}
.label,
.badge {
	display: inline-block;
	padding: 2px 4px;
	font-size: 10.998px;
	font-weight: bold;
	line-height: 14px;
	color: #ffffff;
	vertical-align: baseline;
	white-space: nowrap;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	background-color: #999999;
}
.label {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.badge {
	padding-left: 9px;
	padding-right: 9px;
	-webkit-border-radius: 9px;
	-moz-border-radius: 9px;
	border-radius: 9px;
}
.label:empty,
.badge:empty {
	display: none;
}
a.label:hover,
a.label:focus,
a.badge:hover,
a.badge:focus {
	color: #ffffff;
	text-decoration: none;
	cursor: pointer;
}
.label-important,
.badge-important {
	background-color: #a20000;
}
.label-important[href],
.badge-important[href] {
	background-color: #6f0000;
}
.label-warning,
.badge-warning {
	background-color: #f89406;
}
.label-warning[href],
.badge-warning[href] {
	background-color: #c67605;
}
.label-success,
.badge-success {
	background-color: #005800;
}
.label-success[href],
.badge-success[href] {
	background-color: #002500;
}
.label-info,
.badge-info {
	background-color: #3a87ad;
}
.label-info[href],
.badge-info[href] {
	background-color: #2d6987;
}
.label-inverse,
.badge-inverse {
	background-color: #333333;
}
.label-inverse[href],
.badge-inverse[href] {
	background-color: #1a1a1a;
}
.btn .label,
.btn .badge {
	position: relative;
	top: -1px;
}
.btn-mini .label,
.btn-mini .badge {
	top: 0;
}
body {
	background-color: #ffffff;
	color: #2c2c2c;
}
h1 {
	color: #2c2c2c;
}
a:link {
	color: #054993;
}
a:visited {
	color: #054993;
}
#header {
	background: #ffffff url(../images/j_logo.png) no-repeat;
}
#header h1.title {
	color: #2c2c2c;
}
#nav {
	background-color: #b1c4db;
	background-image: -moz-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#a5bbd4),to(#c3d2e5));
	background-image: -webkit-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -o-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: linear-gradient(to bottom,#a5bbd4,#c3d2e5);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa5bbd4',
endColorstr='#ffc3d2e5', GradientType=0);
	border: 1px solid #738498;
}
#content {
	background: #ffffff;
}
#no-submenu {
	border-bottom: 1px solid #738498;
}
#element-box {
	background: #ffffff;
	border-right: 1px solid #738498;
	border-bottom: 1px solid #738498;
	border-left: 1px solid #738498;
}
#element-box.login {
	border-top: 1px solid #738498;
}
.enabled,
.success,
.allow,
span.writable {
	color: #005800;
}
.disabled,
p.error,
.warning,
.deny,
span.unwritable {
	color: #a20000;
}
.nowarning {
	color: #2c2c2c;
}
.none,
.protected {
	color: #738498;
}
span.note {
	background: #ffffff;
	color: #2c2c2c;
}
div.checkin-tick {
	background: url(../images/admin/tick.png) 20px 50% no-repeat;
}
.ol-foreground {
	background-color: #c3d2e5;
}
.ol-background {
	background-color: #005800;
}
.ol-textfont {
	color: #2c2c2c;
}
.ol-captionfont {
	color: #ffffff;
}
.ol-captionfont a {
	color: #054993;
}
div.subheader .padding {
	background: #ffffff;
}
.pagetitle h2 {
	color: #2c2c2c;
}
div.configuration {
	color: #2c2c2c;
	background-image: url(../images/menu/icon-16-config.png);
	background-repeat: no-repeat;
}
div.toolbar-box {
	border-right: 1px solid #738498;
	border-bottom: 1px solid #738498;
	border-left: 1px solid #738498;
	background: #ffffff;
}
div.toolbar-list li {
	color: #2c2c2c;
}
div.toolbar-list li.divider {
	border-right: 1px dotted #e5d9c3;
}
div.toolbar-list a {
	border-left: 1px solid #e5d9c3;
	border-top: 1px solid #e5d9c3;
	border-right: 1px solid #738498;
	border-bottom: 1px solid #738498;
	background: #c3d2e5;
}
div.toolbar-list a:hover {
	border-left: 1px solid #868778;
	border-top: 1px solid #868778;
	border-right: 1px solid #f6f7db;
	border-bottom: 1px solid #f6f7db;
	background: #e5d9c3;
	color: #054993;
}
div.btn-toolbar {
	margin-left: 5px;
	padding-top: 3px;
}
div.btn-toolbar li.divider {
	border-right: 1px dotted #e5d9c3;
}
div.btn-toolbar div.btn-group button {
	border-left: 1px solid #e5d9c3;
	border-top: 1px solid #e5d9c3;
	border-right: 1px solid #738498;
	border-bottom: 1px solid #738498;
	background-color: #b1c4db;
	background-image: -moz-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#a5bbd4),to(#c3d2e5));
	background-image: -webkit-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -o-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: linear-gradient(to bottom,#a5bbd4,#c3d2e5);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa5bbd4',
endColorstr='#ffc3d2e5', GradientType=0);
	padding: 5px 4px 5px 4px;
}
div.btn-toolbar div.btn-group button:hover {
	border-left: 1px solid #868778;
	border-top: 1px solid #868778;
	border-right: 1px solid #f6f7db;
	border-bottom: 1px solid #f6f7db;
	background: #e5d9c3;
	color: #054993;
	cursor: pointer;
}
div.btn-toolbar a {
	border-left: 1px solid #e5d9c3;
	border-top: 1px solid #e5d9c3;
	border-right: 1px solid #738498;
	border-bottom: 1px solid #738498;
	background-color: #b1c4db;
	background-image: -moz-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#a5bbd4),to(#c3d2e5));
	background-image: -webkit-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -o-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: linear-gradient(to bottom,#a5bbd4,#c3d2e5);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa5bbd4',
endColorstr='#ffc3d2e5', GradientType=0);
	padding: 6px 5px;
	text-align: center;
	white-space: nowrap;
	font-size: 1.2em;
	text-decoration: none;
}
div.btn-toolbar a:hover {
	border-left: 1px solid #868778;
	border-top: 1px solid #868778;
	border-right: 1px solid #f6f7db;
	border-bottom: 1px solid #f6f7db;
	background: #e5d9c3;
	color: #054993;
	cursor: pointer;
}
div.btn-toolbar div.btn-group button.inactive {
	background: #c3d2e5;
}
.pane-sliders .title {
	color: #2c2c2c;
}
.pane-sliders .panel {
	border: 1px solid #738498;
}
.pane-sliders .panel h3 {
	background-color: #b1c4db;
	background-image: -moz-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#a5bbd4),to(#c3d2e5));
	background-image: -webkit-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -o-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: linear-gradient(to bottom,#a5bbd4,#c3d2e5);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa5bbd4',
endColorstr='#ffc3d2e5', GradientType=0);
	color: #054993;
}
.pane-sliders .panel h3:hover {
	background: #e5d9c3;
}
.pane-sliders .panel h3:hover a {
	text-decoration: none;
}
.pane-sliders .adminlist {
	border: 0 none;
}
.pane-sliders .adminlist td {
	border: 0 none;
}
.pane-toggler span {
	background: transparent url(../images/j_arrow.png) 5px 50% no-repeat;
}
.pane-toggler-down span {
	background: transparent url(../images/j_arrow_down.png) 5px 50% no-repeat;
}
.pane-toggler-down {
	border-bottom: 1px solid #738498;
}
dl.tabs dt {
	border: 1px solid #738498;
	background-color: #b1c4db;
	background-image: -moz-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#a5bbd4),to(#c3d2e5));
	background-image: -webkit-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -o-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: linear-gradient(to bottom,#a5bbd4,#c3d2e5);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa5bbd4',
endColorstr='#ffc3d2e5', GradientType=0);
	color: #054993;
}
dl.tabs dt:hover {
	background: #e5d9c3;
}
dl.tabs dt.open {
	background: #ffffff;
	border-bottom: 1px solid #ffffff;
	color: #2c2c2c;
}
dl.tabs dt.open a:visited {
	color: #2c2c2c;
}
dl.tabs dt a:hover {
	text-decoration: none;
}
dl.tabs dt a:focus {
	text-decoration: underline;
}
div.current {
	border: 1px solid #738498;
	background: #ffffff;
}
div.current fieldset {
	border: none 0;
}
div.current fieldset.adminform {
	border: 1px solid #738498;
}
#login-page .pagetitle h2 {
	background: transparent;
}
#login-page #header {
	border-bottom: 1px solid #738498;
}
#login-page #lock {
	background: url(../images/j_login_lock.png) 50% 0 no-repeat;
}
#login-page #element-box.login {
	background-color: #b1c4db;
	background-image: -moz-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#a5bbd4),to(#c3d2e5));
	background-image: -webkit-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -o-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: linear-gradient(to bottom,#a5bbd4,#c3d2e5);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa5bbd4',
endColorstr='#ffc3d2e5', GradientType=0);
}
#form-login {
	background: #ffffff;
	border: 1px solid #738498;
}
#form-login label {
	color: #2c2c2c;
}
#form-login div.button1 a {
	color: #054993;
}
#cpanel div.icon a,
.cpanel div.icon a {
	color: #054993;
	border-left: 1px solid #e5d9c3;
	border-top: 1px solid #e5d9c3;
	border-right: 1px solid #738498;
	border-bottom: 1px solid #738498;
	background-color: #b1c4db;
	background-image: -moz-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#a5bbd4),to(#c3d2e5));
	background-image: -webkit-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -o-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: linear-gradient(to bottom,#a5bbd4,#c3d2e5);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa5bbd4',
endColorstr='#ffc3d2e5', GradientType=0);
}
#cpanel div.icon a:hover,
#cpanel div.icon a:focus,
.cpanel div.icon a:hover,
.cpanel div.icon a:focus {
	border-left: 1px solid #868778;
	border-top: 1px solid #868778;
	border-right: 1px solid #f6f7db;
	border-bottom: 1px solid #f6f7db;
	color: #054993;
	background: #e5d9c3;
}
fieldset {
	border: 1px #738498 solid;
}
legend {
	color: #2c2c2c;
}
fieldset ul.checklist input:focus {
	outline: thin dotted #2c2c2c;
}
fieldset#filter-bar {
	border-top: 0 solid #738498;
	border-right: 0 solid #738498;
	border-bottom: 1px solid #738498;
	border-left: 0 solid #738498;
}
fieldset#filter-bar ol,
fieldset#filter-bar ul {
	border: 0;
}
fieldset#filter-bar ol li fieldset,
fieldset#filter-bar ul li fieldset {
	border: 0;
}
.invalid {
	color: #a20000;
}
input.invalid {
	border: 1px solid #a20000;
}
input.readonly,
span.faux-input {
	border: 0;
}
input.required {
	background-color: #e5f0fa;
}
input.disabled {
	background-color: #eeeeee;
}
input,
select,
span.faux-input {
	background-color: #ffffff;
	border: 1px solid #738498;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {
	color: #054993;
	background-color: #b1c4db;
	background-image: -moz-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#a5bbd4),to(#c3d2e5));
	background-image: -webkit-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -o-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: linear-gradient(to bottom,#a5bbd4,#c3d2e5);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa5bbd4',
endColorstr='#ffc3d2e5', GradientType=0);
}
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus {
	background: #e5d9c3;
}
textarea {
	background-color: #ffffff;
	border: 1px solid #738498;
}
input:focus,
select:focus,
textarea:focus,
option:focus,
input:hover,
select:hover,
textarea:hover,
option:hover {
	background-color: #e5d9c3;
	color: #054993;
}
.paramrules {
	background: #c3d2e5;
}
span.gi {
	color: #738498;
}
table.admintable td.key,
table.admintable td.paramlist_key {
	background-color: #c3d2e5;
	color: #2c2c2c;
	border-bottom: 1px solid #738498;
	border-right: 1px solid #738498;
}
table.paramlist td.paramlist_description {
	background-color: #c3d2e5;
	color: #2c2c2c;
	border-bottom: 1px solid #738498;
	border-right: 1px solid #738498;
}
fieldset.adminform {
	border: 1px solid #738498;
}
table.adminform {
	background-color: #ffffff;
}
table.adminform tr.row0 {
	background-color: #ffffff;
}
table.adminform tr.row1 {
	background-color: #e5d9c3;
}
table.adminform th {
	color: #2c2c2c;
	background: #ffffff;
}
table.adminform tr {
	border-bottom: 1px solid #738498;
	border-right: 1px solid #738498;
}
table.adminlist {
	border-spacing: 1px;
	background-color: #ffffff;
	color: #2c2c2c;
}
table.adminlist.modal {
	border-top: 1px solid #738498;
	border-right: 1px solid #738498;
	border-left: 1px solid #738498;
}
table.adminlist a {
	color: #054993;
}
table.adminlist thead th {
	background: #ffffff;
	color: #2c2c2c;
	border-bottom: 1px solid #738498;
}
table.adminlist tbody tr {
	background: #ffffff;
}
table.adminlist tbody tr.row1 {
	background: #ffffff;
}
table.adminlist tbody tr.row1:last-child td,
table.adminlist tbody tr.row1:last-child th {
	border-bottom: 1px solid #738498;
}
table.adminlist tbody tr.row0:hover td,
table.adminlist tbody tr.row1:hover td,
table.adminlist tbody tr.row0:hover th,
table.adminlist tbody tr.row1:hover th,
table.adminlist tbody tr.row0:focus td,
table.adminlist tbody tr.row1:focus td,
table.adminlist tbody tr.row0:focus th,
table.adminlist tbody tr.row1:focus th {
	background-color: #e5d9c3;
}
table.adminlist tbody tr td,
table.adminlist tbody tr th {
	border-right: 1px solid #738498;
}
table.adminlist tbody tr td:last-child {
	border-right: none;
}
table.adminlist tbody tr.row0:last-child td,
table.adminlist tbody tr.row0:last-child th {
	border-bottom: 1px solid #738498;
}
table.adminlist tbody tr.row0 td,
table.adminlist tbody tr.row0 th {
	background-color: #b1c4db;
	background-image: -moz-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#a5bbd4),to(#c3d2e5));
	background-image: -webkit-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -o-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: linear-gradient(to bottom,#a5bbd4,#c3d2e5);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa5bbd4',
endColorstr='#ffc3d2e5', GradientType=0);
}
table.adminlist {
	border-bottom: 0 solid #738498;
}
table.adminlist tfoot tr {
	color: #2c2c2c;
}
table.adminlist tfoot td,
table.adminlist tfoot th {
	background-color: #ffffff;
	border-top: 1px solid #738498;
}
table.adminlist tr td.btns a {
	border: 1px solid #738498;
	background-color: #b1c4db;
	background-image: -moz-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#a5bbd4),to(#c3d2e5));
	background-image: -webkit-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -o-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: linear-gradient(to bottom,#a5bbd4,#c3d2e5);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa5bbd4',
endColorstr='#ffc3d2e5', GradientType=0);
	color: #054993;
}
table.adminlist tr td.btns a:hover,
table.adminlist tr td.btns a:active,
table.adminlist tr td.btns a:focus {
	background-color: #ffffff;
}
a.saveorder {
	background: url(../images/admin/filesave.png) no-repeat;
}
a.saveorder.inactive {
	background-position: 0 -16px;
}
fieldset.batch {
	background: #ffffff;
}
button {
	color: #054993;
	border: 1px solid #738498;
	background-color: #b1c4db;
	background-image: -moz-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#a5bbd4),to(#c3d2e5));
	background-image: -webkit-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -o-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: linear-gradient(to bottom,#a5bbd4,#c3d2e5);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa5bbd4',
endColorstr='#ffc3d2e5', GradientType=0);
}
button:hover,
button:focus {
	background: #e5d9c3;
}
.invalid {
	color: #ff0000;
}
.button1 {
	border: 1px solid #738498;
	color: #054993;
	background-color: #b1c4db;
	background-image: -moz-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#a5bbd4),to(#c3d2e5));
	background-image: -webkit-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -o-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: linear-gradient(to bottom,#a5bbd4,#c3d2e5);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa5bbd4',
endColorstr='#ffc3d2e5', GradientType=0);
}
.button1 a {
	color: #054993;
}
.button1 a:hover,
.button1 a:focus {
	background: #e5d9c3;
}
.button2-left,
.button2-right {
	border: 1px solid #738498;
	background-color: #b1c4db;
	background-image: -moz-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#a5bbd4),to(#c3d2e5));
	background-image: -webkit-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -o-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: linear-gradient(to bottom,#a5bbd4,#c3d2e5);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa5bbd4',
endColorstr='#ffc3d2e5', GradientType=0);
}
.button2-left a,
.button2-right a,
.button2-left span,
.button2-right span {
	color: #054993;
}
.button2-left span,
.button2-right span {
	color: #999999;
}
.page span,
.blank span {
	color: #054993;
}
.button2-left a:hover,
.button2-right a:hover,
.button2-left a:focus,
.button2-right a:focus {
	background: #e5d9c3;
}
.pagination .page span {
	color: #999999;
}
.tip {
	background: #000000;
	border: 1px solid #FFFFFF;
}
.tip-title {
	background: url(../images/selector-arrow-std.png) no-repeat;
}
a img.calendar {
	background: url(../images/calendar.png) no-repeat;
}
.jgrid span.publish {
	background-image: url(../images/admin/tick.png);
}
.jgrid span.unpublish {
	background-image: url(../images/admin/publish_x.png);
}
.jgrid span.archive {
	background-image: url(../images/menu/icon-16-archive.png);
}
.jgrid span.trash {
	background-image: url(../images/menu/icon-16-trash.png);
}
.jgrid span.default {
	background-image: url(../images/menu/icon-16-default.png);
}
.jgrid span.notdefault {
	background-image: url(../images/menu/icon-16-notdefault.png);
}
.jgrid span.checkedout {
	background-image: url(../images/admin/checked_out.png);
}
.jgrid span.downarrow {
	background-image: url(../images/admin/downarrow.png);
}
.jgrid span.downarrow_disabled {
	background-image: url(../images/admin/downarrow0.png);
}
.jgrid span.uparrow {
	background-image: url(../images/admin/uparrow.png);
}
.jgrid span.uparrow_disabled {
	background-image: url(../images/admin/uparrow0.png);
}
.jgrid span.published {
	background-image: url(../images/admin/publish_g.png);
}
.jgrid span.expired {
	background-image: url(../images/admin/publish_r.png);
}
.jgrid span.pending {
	background-image: url(../images/admin/publish_y.png);
}
.jgrid span.warning {
	background-image: url(../images/admin/publish_y.png);
}
.icon-32-send {
	background-image: url(../images/toolbar/icon-32-send.png);
}
.icon-32-delete {
	background-image: url(../images/toolbar/icon-32-delete.png);
}
.icon-32-help {
	background-image: url(../images/toolbar/icon-32-help.png);
}
.icon-32-cancel {
	background-image: url(../images/toolbar/icon-32-cancel.png);
}
.icon-32-checkin {
	background-image: url(../images/toolbar/icon-32-checkin.png);
}
.icon-32-options {
	background-image: url(../images/toolbar/icon-32-config.png);
}
.icon-32-apply {
	background-image: url(../images/toolbar/icon-32-apply.png);
}
.icon-32-back {
	background-image: url(../images/toolbar/icon-32-back.png);
}
.icon-32-forward {
	background-image: url(../images/toolbar/icon-32-forward.png);
}
.icon-32-save {
	background-image: url(../images/toolbar/icon-32-save.png);
}
.icon-32-edit {
	background-image: url(../images/toolbar/icon-32-edit.png);
}
.icon-32-copy {
	background-image: url(../images/toolbar/icon-32-copy.png);
}
.icon-32-move {
	background-image: url(../images/toolbar/icon-32-move.png);
}
.icon-32-new {
	background-image: url(../images/toolbar/icon-32-new.png);
}
.icon-32-upload {
	background-image: url(../images/toolbar/icon-32-upload.png);
}
.icon-32-assign {
	background-image: url(../images/toolbar/icon-32-publish.png);
}
.icon-32-html {
	background-image: url(../images/toolbar/icon-32-html.png);
}
.icon-32-css {
	background-image: url(../images/toolbar/icon-32-css.png);
}
.icon-32-menus {
	background-image: url(../images/toolbar/icon-32-menu.png);
}
.icon-32-publish {
	background-image: url(../images/toolbar/icon-32-publish.png);
}
.icon-32-unblock {
	background-image: url(../images/toolbar/icon-32-unblock.png);
}
.icon-32-unpublish {
	background-image: url(../images/toolbar/icon-32-unpublish.png);
}
.icon-32-restore {
	background-image: url(../images/toolbar/icon-32-revert.png);
}
.icon-32-trash {
	background-image: url(../images/toolbar/icon-32-trash.png);
}
.icon-32-archive {
	background-image: url(../images/toolbar/icon-32-archive.png);
}
.icon-32-unarchive {
	background-image: url(../images/toolbar/icon-32-unarchive.png);
}
.icon-32-preview {
	background-image: url(../images/toolbar/icon-32-preview.png);
}
.icon-32-default {
	background-image: url(../images/toolbar/icon-32-default.png);
}
.icon-32-refresh {
	background-image: url(../images/toolbar/icon-32-refresh.png);
}
.icon-32-save-new {
	background-image: url(../images/toolbar/icon-32-save-new.png);
}
.icon-32-save-copy {
	background-image: url(../images/toolbar/icon-32-save-copy.png);
}
.icon-32-error {
	background-image: url(../images/toolbar/icon-32-error.png);
}
.icon-32-new-style {
	background-image: url(../images/toolbar/icon-32-new-style.png);
}
.icon-32-delete-style {
	background-image: url(../images/toolbar/icon-32-delete-style.png);
}
.icon-32-purge {
	background-image: url(../images/toolbar/icon-32-purge.png);
}
.icon-32-remove {
	background-image: url(../images/toolbar/icon-32-remove.png);
}
.icon-32-featured {
	background-image: url(../images/toolbar/icon-32-featured.png);
}
.icon-32-unfeatured {
	background-image: url(../images/toolbar/icon-32-featured.png);
	background-position: 0% 100%;
}
.icon-32-export {
	background-image: url(../images/toolbar/icon-32-export.png);
}
.icon-32-stats {
	background-image: url(../images/toolbar/icon-32-stats.png);
}
.icon-32-print {
	background-image: url(../images/toolbar/icon-32-print.png);
}
.icon-32-batch {
	background-image: url(../images/toolbar/icon-32-batch.png);
}
.icon-32-envelope {
	background-image: url(../images/toolbar/icon-32-messaging.png);
}
.icon-32-download {
	background-image: url(../images/toolbar/icon-32-export.png);
}
.icon-32-bars {
	background-image: url(../images/toolbar/icon-32-stats.png);
}
.icon-48-categories {
	background-image: url(../images/header/icon-48-category.png);
}
.icon-48-category-edit {
	background-image: url(../images/header/icon-48-category.png);
}
.icon-48-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}
.icon-48-generic {
	background-image: url(../images/header/icon-48-generic.png);
}
.icon-48-banners {
	background-image: url(../images/header/icon-48-banner.png);
}
.icon-48-banners-categories {
	background-image: url(../images/header/icon-48-banner-categories.png);
}
.icon-48-banners-category-edit {
	background-image: url(../images/header/icon-48-banner-categories.png);
}
.icon-48-banners-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}
.icon-48-banners-clients {
	background-image: url(../images/header/icon-48-banner-client.png);
}
.icon-48-banners-tracks {
	background-image: url(../images/header/icon-48-banner-tracks.png);
}
.icon-48-checkin {
	background-image: url(../images/header/icon-48-checkin.png);
}
.icon-48-clear {
	background-image: url(../images/header/icon-48-clear.png);
}
.icon-48-contact {
	background-image: url(../images/header/icon-48-contacts.png);
}
.icon-48-contact-categories {
	background-image: url(../images/header/icon-48-contacts-categories.png);
}
.icon-48-contact-category-edit {
	background-image: url(../images/header/icon-48-contacts-categories.png);
}
.icon-48-contact-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}
.icon-48-purge {
	background-image: url(../images/header/icon-48-purge.png);
}
.icon-48-cpanel {
	background-image: url(../images/header/icon-48-cpanel.png);
}
.icon-48-config {
	background-image: url(../images/header/icon-48-config.png);
}
.icon-48-groups {
	background-image: url(../images/header/icon-48-groups.png);
}
.icon-48-groups-add {
	background-image: url(../images/header/icon-48-groups-add.png);
}
.icon-48-levels {
	background-image: url(../images/header/icon-48-levels.png);
}
.icon-48-levels-add {
	background-image: url(../images/header/icon-48-levels-add.png);
}
.icon-48-module {
	background-image: url(../images/header/icon-48-module.png);
}
.icon-48-menu {
	background-image: url(../images/header/icon-48-menu.png);
}
.icon-48-menu-add {
	background-image: url(../images/header/icon-48-menu-add.png);
}
.icon-48-menumgr {
	background-image: url(../images/header/icon-48-menumgr.png);
}
.icon-48-trash {
	background-image: url(../images/header/icon-48-trash.png);
}
.icon-48-user {
	background-image: url(../images/header/icon-48-user.png);
}
.icon-48-user-add {
	background-image: url(../images/header/icon-48-user-add.png);
}
.icon-48-user-edit {
	background-image: url(../images/header/icon-48-user-edit.png);
}
.icon-48-user-profile {
	background-image: url(../images/header/icon-48-user-profile.png);
}
.icon-48-inbox {
	background-image: url(../images/header/icon-48-inbox.png);
}
.icon-48-new-privatemessage {
	background-image: url(../images/header/icon-48-new-privatemessage.png);
}
.icon-48-msgconfig {
	background-image: url(../images/header/icon-48-message_config.png);
}
.icon-48-langmanager {
	background-image: url(../images/header/icon-48-language.png);
}
.icon-48-mediamanager {
	background-image: url(../images/header/icon-48-media.png);
}
.icon-48-plugin {
	background-image: url(../images/header/icon-48-plugin.png);
}
.icon-48-help_header {
	background-image: url(../images/header/icon-48-help_header.png);
}
.icon-48-impressions {
	background-image: url(../images/header/icon-48-stats.png);
}
.icon-48-browser {
	background-image: url(../images/header/icon-48-stats.png);
}
.icon-48-searchtext {
	background-image: url(../images/header/icon-48-stats.png);
}
.icon-48-thememanager {
	background-image: url(../images/header/icon-48-themes.png);
}
.icon-48-writemess {
	background-image: url(../images/header/icon-48-writemess.png);
}
.icon-48-featured {
	background-image: url(../images/header/icon-48-featured.png);
}
.icon-48-sections {
	background-image: url(../images/header/icon-48-section.png);
}
.icon-48-article-add {
	background-image: url(../images/header/icon-48-article-add.png);
}
.icon-48-article-edit {
	background-image: url(../images/header/icon-48-article-edit.png);
}
.icon-48-article {
	background-image: url(../images/header/icon-48-article.png);
}
.icon-48-content-categories {
	background-image: url(../images/header/icon-48-category.png);
}
.icon-48-content-category-edit {
	background-image: url(../images/header/icon-48-category.png);
}
.icon-48-content-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}
.icon-48-install {
	background-image: url(../images/header/icon-48-extension.png);
}
.icon-48-dbbackup {
	background-image: url(../images/header/icon-48-backup.png);
}
.icon-48-dbrestore {
	background-image: url(../images/header/icon-48-dbrestore.png);
}
.icon-48-dbquery {
	background-image: url(../images/header/icon-48-query.png);
}
.icon-48-systeminfo {
	background-image: url(../images/header/icon-48-info.png);
}
.icon-48-massmail {
	background-image: url(../images/header/icon-48-massmail.png);
}
.icon-48-redirect {
	background-image: url(../images/header/icon-48-redirect.png);
}
.icon-48-search {
	background-image: url(../images/header/icon-48-search.png);
}
.icon-48-finder {
	background-image: url(../images/header/icon-48-search.png);
}
.icon-48-newsfeeds {
	background-image: url(../images/header/icon-48-newsfeeds.png);
}
.icon-48-newsfeeds-categories {
	background-image: url(../images/header/icon-48-newsfeeds-cat.png);
}
.icon-48-newsfeeds-category-edit {
	background-image: url(../images/header/icon-48-newsfeeds-cat.png);
}
.icon-48-newsfeeds-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}
.icon-48-weblinks {
	background-image: url(../images/header/icon-48-links.png);
}
.icon-48-weblinks-categories {
	background-image: url(../images/header/icon-48-links-cat.png);
}
.icon-48-weblinks-category-edit {
	background-image: url(../images/header/icon-48-links-cat.png);
}
.icon-48-weblinks-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}
.icon-48-tags {
	background-image: url(../images/header/icon-48-tags.png);
}
.icon-48-assoc {
	background-image: url(../images/header/icon-48-assoc.png);
}
.icon-48-puzzle {
	background-image: url(../images/header/icon-48-puzzle.png);
}
div.message {
	border: 1px solid #738498;
	color: #2c2c2c;
}
.helpFrame {
	border-left: 0 solid #738498;
	border-right: none;
	border-top: none;
	border-bottom: none;
}
.outline {
	border: 1px solid #738498;
	background: #ffffff;
}
dl.menu_type dt {
	border-bottom: 1px solid #738498;
}
ul#new-modules-list {
	border-top: 1px solid #738498;
}
#skiplinkholder a,
#skiplinkholder a:link,
#skiplinkholder a:visited {
	color: #ffffff;
	background: #054993;
	border-bottom: solid #336 2px;
}
fieldset.panelform {
	border: none 0;
}
a.move_up {
	background-image: url('../images/admin/uparrow.png');
}
span.move_up {
	background-image: url('../images/admin/uparrow0.png');
}
a.move_down {
	background-image: url('../images/admin/downarrow.png');
}
span.move_down {
	background-image: url('../images/admin/downarrow0.png');
}
a.grid_false {
	background-image: url('../images/admin/publish_x.png');
}
a.grid_true {
	background-image: url('../images/admin/tick.png');
}
a.grid_trash {
	background-image: url('../images/admin/icon-16-trash.png');
}
tr.row1 {
	background-color: #c3d2e5;
}
table.aclsummary-table td.col2,
table.aclsummary-table th.col2,
table.aclsummary-table td.col3,
table.aclsummary-table th.col3,
table.aclsummary-table td.col4,
table.aclsummary-table th.col4,
table.aclsummary-table td.col5,
table.aclsummary-table th.col5,
table.aclsummary-table td.col6,
table.aclsummary-table th.col6,
table.aclmodify-table td.col2,
table.aclmodify-table th.col2 {
	border-left: 1px solid #738498;
}
span.icon-16-unset {
	background: url(../images/admin/icon-16-denyinactive.png) no-repeat;
}
span.icon-16-allowed {
	background: url(../images/admin/icon-16-allow.png) no-repeat;
}
span.icon-16-denied {
	background: url(../images/admin/icon-16-deny.png) no-repeat;
}
span.icon-16-locked {
	background: url(../images/admin/checked_out.png) 0 0 no-repeat;
}
label.icon-16-allow {
	background: url(../images/admin/icon-16-allow.png) no-repeat;
}
label.icon-16-deny {
	background: url(../images/admin/icon-16-deny.png) no-repeat;
}
a.icon-16-allow {
	background: url(../images/admin/icon-16-allow.png) no-repeat;
}
a.icon-16-deny {
	background: url(../images/admin/icon-16-deny.png) no-repeat;
}
a.icon-16-allowinactive {
	background: url(../images/admin/icon-16-allowinactive.png) no-repeat;
}
a.icon-16-denyinactive {
	background: url(../images/admin/icon-16-denyinactive.png) no-repeat;
}
ul.acllegend li.acl-allowed {
	background: url(../images/admin/icon-16-allow.png) no-repeat left;
}
ul.acllegend li.acl-denied {
	background: url(../images/admin/icon-16-deny.png) no-repeat left;
}
li.acl-editgroups,
li.acl-resetbtn {
	background-color: #c3d2e5;
	border: 1px solid #738498;
}
li.acl-editgroups a,
li.acl-resetbtn a {
	color: #054993;
}
li.acl-editgroups:hover,
li.acl-resetbtn:hover,
li.acl-editgroups:focus,
li.acl-resetbtn:focus {
	background-color: #e5d9c3;
}
table#acl-config {
	border: 1px solid #738498;
}
table#acl-config th,
table#acl-config td {
	background: #c3d2e5;
	border-bottom: 1px solid #738498;
}
table#acl-config th.acl-groups {
	border-right: 1px solid #738498;
}
#jform_sef_rewrite-lbl {
	background: url(../images/admin/icon-16-notice-note.png) right top
no-repeat;
}
#permissions-sliders .tip {
	background: #ffffff;
	border: 1px solid #738498;
}
#permissions-sliders ul#rules,
#permissions-sliders ul#rules ul {
	border: solid 0 #738498;
	background: #ffffff;
}
ul#rules li .pane-sliders .panel h3.title {
	border: solid 0 #738498;
}
#permissions-sliders ul#rules .pane-slider {
	border: solid 1px #738498;
}
#permissions-sliders ul#rules li h3 {
	border: solid 1px #738498;
}
#permissions-sliders ul#rules li h3.pane-toggler-down a {
	border: solid 0;
}
#permissions-sliders ul#rules .group-kind {
	color: #2c2c2c;
}
#permissions-sliders ul#rules table.group-rules {
	border: solid 1px #738498;
}
#permissions-sliders ul#rules table.group-rules td {
	border-right: solid 1px #738498;
	border-bottom: solid 1px #738498;
}
#permissions-sliders ul#rules table.group-rules th {
	background: #e5d9c3;
	border-right: solid 1px #738498;
	border-bottom: solid 1px #738498;
	color: #2c2c2c;
}
ul#rules table.aclmodify-table {
	border: solid 1px #738498;
}
ul#rules table.group-rules td label {
	border: solid 0 #738498;
}
#permissions-sliders ul#rules .mypanel {
	border: solid 0 #738498;
}
#permissions-sliders  ul#rules  table.group-rules td {
	background: #ffffff;
}
#permissions-sliders span.level {
	color: #738498;
	background-image: none;
}
.check-0,
table.adminlist tbody td.check-0 {
	background-color: #ffffcf;
}
.check-a,
table.adminlist tbody td.check-a {
	background-color: #cfffda;
}
.check-d,
table.adminlist tbody td.check-d {
	background-color: #ffcfcf;
}
#system-message dd ul {
	color: #2c2c2c;
}
#system-message dd.error ul {
	color: #2c2c2c;
}
#system-message dd.message ul {
	color: #2c2c2c;
}
#system-message dd.notice ul {
	color: #2c2c2c;
}
#menu {
	color: #2c2c2c;
}
#menu ul.dropdown-menu {
	background-color: #b1c4db;
	background-image: -moz-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#a5bbd4),to(#c3d2e5));
	background-image: -webkit-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -o-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: linear-gradient(to bottom,#a5bbd4,#c3d2e5);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa5bbd4',
endColorstr='#ffc3d2e5', GradientType=0);
	color: #2c2c2c;
}
#menu ul.dropdown-menu li.dropdown-submenu {
	background: url(../images/j_arrow.png) no-repeat right 50%;
}
#menu ul.dropdown-menu li.divider {
	margin-bottom: 0;
	border-bottom: 1px dotted #738498;
}
#menu a {
	color: #054993;
	background-repeat: no-repeat;
	background-position: left 50%;
}
#menu li {
	border-right: 1px solid #738498;
	background-color: transparent;
}
#menu li a:hover,
#menu li a:focus {
	background-color: #e5d9c3;
}
#menu li.disabled a:hover,
#menu li.disabled a:focus,
#menu li.disabled a {
	color: #738498;
	background-color: #b1c4db;
	background-image: -moz-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#a5bbd4),to(#c3d2e5));
	background-image: -webkit-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -o-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: linear-gradient(to bottom,#a5bbd4,#c3d2e5);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa5bbd4',
endColorstr='#ffc3d2e5', GradientType=0);
}
#menu li ul {
	border: 1px solid #738498;
}
#menu li li {
	background-color: transparent;
}
#menu li.sfhover a {
	background-color: #e5d9c3;
}
#menu li.sfhover li a {
	background-color: transparent;
}
#menu li.sfhover li.sfhover a,
#menu li li a:focus {
	background-color: #e5d9c3;
}
#menu li.sfhover li.sfhover li a {
	background-color: transparent;
}
#menu li.sfhover li.sfhover li.sfhover a,
#menu li li li a:focus {
	background-color: #e5d9c3;
}
#menu li li a:focus,
#menu li li li a:focus {
	background-color: #e5d9c3;
}
#menu li li li a:focus {
	background-color: #e5d9c3;
}
#submenu {
	border-bottom: 1px solid #738498;
}
#submenu li,
#submenu span.nolink {
	background-color: #b1c4db;
	background-image: -moz-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#a5bbd4),to(#c3d2e5));
	background-image: -webkit-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: -o-linear-gradient(top,#a5bbd4,#c3d2e5);
	background-image: linear-gradient(to bottom,#a5bbd4,#c3d2e5);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa5bbd4',
endColorstr='#ffc3d2e5', GradientType=0);
	border: 1px solid #738498;
	color: #054993;
}
#submenu li:hover,
#submenu li:focus {
	background: #e5d9c3;
}
#submenu li.active,
#submenu span.nolink.active {
	background: #ffffff;
	border-bottom: 1px solid #ffffff;
}
#submenu li.active a,
#submenu span.nolink.active {
	color: #000;
}
.element-invisible {
	margin: 0;
	padding: 0;
}
div.CodeMirror-wrapping {
	border: 1px solid #738498;
}
table.adminform tr.row0 {
	background-color: #ffffff;
}
ul.alternating > li:nth-child(odd) {
	background-color: #ffffff;
}
ul.alternating > li:nth-child(even) {
	background-color: #c3d2e5;
}
ol.alternating > li:nth-child(odd) {
	background-color: #ffffff;
}
ol.alternating > li:nth-child(even) {
	background-color: #c3d2e5;
}
#installer-database,
#installer-discover,
#installer-update,
#installer-warnings {
	border-top: 1px solid #738498;
}
#installer-database p.warning {
	background: transparent url(../images/admin/icon-16-deny.png) center left
no-repeat;
}
#installer-database p.nowarning {
	background: transparent url(../images/admin/icon-16-allow.png) center left
no-repeat;
}
.input-append,
.input-prepend {
	font-size: 1.2em;
}
css/colour_blue_rtl.css000064400000015551151163244070011253
0ustar00@charset "UTF-8";

/**
 * @package		Joomla.Administrator
 * @subpackage	templates.hathor
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 * @since		1.6
 *
 * RTL CSS file for the color standard
 */

/**
 * Overall Styles
 */
#header {
	background: #ffffff url(../images/j_logo.png) no-repeat top right;
}

#element-box {
	border-left: 1px solid #738498;
	border-right: 1px solid #738498;
}


/**
 * Various Styles
 */

div.checkin-tick {
		background: url(../images/admin/tick.png) 20px 50% no-repeat;
}

/**
 * Subheader, toolbar, page title
 */

div.toolbar-box {
	border-left: 1px solid #738498;
	border-right: 1px solid #738498;
}

div.toolbar-list li.divider {
	border-left: 1px dotted #e5d9c3;
	border-right: none;
}

div.toolbar-list a:hover {
	border-right: 1px solid #e5d9c3;
	border-left: 1px solid #738498;
}

/**
 * Pane Slider pane Toggler styles
 */
.pane-toggler  span {
	background: transparent url(../images/j_arrow_left.png) right 50%
no-repeat;
}

.pane-toggler-down span {
	background: transparent url(../images/j_arrow_down.png) right 50%
no-repeat;
}

/**
 * Cpanel Settings
 */

#cpanel div.icon a:hover,
#cpanel div.icon a:focus {
	border-right: 1px solid #e5d9c3;
	border-left: 1px solid #738498;
}

fieldset#filter-bar {
	border-left: none;
	border-right: none;
}

/**
 * Admintable Styles
 */

table.admintable td.key,table.admintable td.paramlist_key {
	border-left: 1px solid #738498;
	border-right: none;
}

table.paramlist td.paramlist_description {
	border-left: 1px solid #738498;
	border-right: none;
}

/**
 * Admin Form Styles
 */
table.adminform tr {
	border-left: 1px solid #738498;
	border-right: none;
}

/**
 * Adminlist Table layout
 */

table.adminlist.modal {
	border-right: 1px solid #738498;
	border-left: 1px solid #738498;
}

/* Table row styles */

table.adminlist tbody tr td,
table.adminlist tbody tr th {
	border-left: 1px solid #738498;
	border-right: none;
}

table.adminlist tbody tr td:last-child {
	border-left: none;
}

/**
 * Saving order icon styling in admin tables
 */
a.saveorder {
	background: url(../images/admin/filesave.png) no-repeat;
}

a.saveorder.inactive {
	background-position: 0 -16px;
}

/**
 * Button styling
 */

/* Button 1 Type */

	/* Use this if you add images to the buttons such as directional arrows */

.button1 a {
	/* add padding if you are using the directional images */
	/* padding: 0 6px 0 30px; */
}

	/* Button 2 Type */

.button2-right .prev {
	background-image: url(../images/j_button2_prev.png);
	background-position: right center;
}

.button2-right.off .prev {
	background: url(../images/j_button2_prev_off.png) no-repeat;
}

.button2-right .start {
	background-image: url(../images/j_button2_first.png);
	background-position: right center;
}

.button2-left .next {
	background-image: url(../images/j_button2_next.png);
	background-position: left center;
}

.button2-left.off .next { /* @TODO check the x position */
	background: url(../images/j_button2_next_off.png) 100% 0 no-repeat;
}

.button2-left .end {
	background-image: url(../images/j_arrow_left.png);
	background-position: left center;
}

.button2-left.off .end { /* @TODO check the x position */
	background: url(../images/j_button2_last_off.png) 100% 0 no-repeat;
}

.button2-left .image {
	background: url(../images/j_button2_image.png) 100% 0 no-repeat;
}

.button2-left .readmore {
	background: url(../images/j_button2_readmore.png) 100% 0 no-repeat;
}

.button2-left .pagebreak {
	background: url(../images/j_button2_pagebreak.png) 100% 0 no-repeat;
}

/**
 * Tooltips
 */

/**
 * System Standard Messages
 */
#system-message dd.message ul {
	background: #C3D2E5 url(../images/notice-info.png) 99.5% center no-repeat;
}

/**
 * System Error Messages
 */
#system-message dd.error ul {
	background: #E6C0C0 url(../images/notice-alert.png) 99.5% top no-repeat;
}

/**
 * System Notice Messages
 */
#system-message dd.notice ul {
	background: #EFE7B8 url(../images/notice-note.png) 99%.5 top no-repeat;
}

/**
 * JGrid styles
 */

/**
 * Menu Icons
 * These icons are used on the Administrator menu
 * The classes are constructed dynamically when the menu is generated
 */


/**
 * Toolbar icons
 * These icons are used for the toolbar buttons
 * The classes are constructed dynamically when the toolbar is created
 */

/**
 * Quick Icons
 * Also knows as Header Icons
 * These are used for the Quick Icons on the Control Panel
 * The same classes are also assigned the Component Title
 */

/**
 * General styles
 */

.helpFrame {
	border-right: 0 solid #738498;
	border-left: none;
	border-top: none;
}

/* -- ACL STYLES relocated from com_users/media/grid.css ----------- */

/* -- ACL PANEL STYLES  ----------- */


/* All Tabs */

table.aclsummary-table td.col2,
table.aclsummary-table th.col2,
table.aclsummary-table td.col3,
table.aclsummary-table th.col3,
table.aclsummary-table td.col4,
table.aclsummary-table th.col4,
table.aclsummary-table td.col5,
table.aclsummary-table th.col5,
table.aclsummary-table td.col6,
table.aclsummary-table th.col6,
table.aclmodify-table td.col2,
table.aclmodify-table th.col2 {
	border-right: 1px solid #738498;
	border-left: none;
}

/* Icons */

ul.acllegend li.acl-allowed {
	background:url(../images/admin/icon-16-allow.png) no-repeat right;
}
ul.acllegend li.acl-denied {
	background:url(../images/admin/icon-16-deny.png) no-repeat right;
}

table#acl-config th.acl-groups {
	border-left: 1px solid #738498;
}

table#acl-config th.acl-groups {
	text-align: right;
}

.acl-action {
	margin: auto 0;
}

/* Icons */

span.icon-16-unset {
	background: url(../images/admin/icon-16-denyinactive.png) no-repeat right;
}

span.icon-16-allowed {
	background: url(../images/admin/icon-16-allow.png) no-repeat right;
}

span.icon-16-denied {
	background: url(../images/admin/icon-16-deny.png) no-repeat right;
}

span.icon-16-locked {
	background: url(../images/admin/checked_out.png) no-repeat right;
}

/**
* Mod_rewrite Warning
*/
#jform_sef_rewrite-lbl {
	background: url(../images/admin/icon-16-notice-note.png) left top
no-repeat;
}

/**
* Modal S-Box overrides
*/

#sbox-window {
	text-align: right;
}

/**
* Permission Rules
*/

#permissions-sliders ul#rules table.group-rules td
{
    border-left: solid 1px #738498;
    border-right: solid 0 #738498;
}

#permissions-sliders ul#rules table.group-rules th
{
    border-left: solid 1px #738498;
    border-right: solid 0 #738498;
}

/**
 * Menu Styling
 */

#menu ul li.node {
	background-image: url(../images/j_arrow_left.png);
	background-repeat: no-repeat;
	background-position: left 50%;
}

#menu a {
	background-position: right 50%;
}

#menu li {
	border-left: 1px solid #738498;
	border-right: 0 solid #738498;
}

#menu li li li a:focus {
	border-right: 1px solid #fafafa;
}

/* Installer Database */
#installer-database p.warning {
	background-position: center right;
}

#installer-database p.nowarning {
	background-position: center right;
}
css/colour_brown.css000064400000133523151163244070010572 0ustar00.clearfix
{
	*zoom: 1;
}
.clearfix:before,
.clearfix:after {
	display: table;
	content: "";
	line-height: 0;
}
.clearfix:after {
	clear: both;
}
.hide-text {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}
.input-block-level {
	display: block;
	width: 100%;
	min-height: 25px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#form-login .btn {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	padding: 4px 14px;
	margin-bottom: 0;
	font-size: 13px;
	line-height: 15px;
	*line-height: 15px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	color: #333333;
	text-shadow: 0 1px 1px rgba(255,255,255,0.75);
	background-color: #f5f5f5;
	background-image: -moz-linear-gradient(top,#ffffff,#e6e6e6);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#ffffff),to(#e6e6e6));
	background-image: -webkit-linear-gradient(top,#ffffff,#e6e6e6);
	background-image: -o-linear-gradient(top,#ffffff,#e6e6e6);
	background-image: linear-gradient(to bottom,#ffffff,#e6e6e6);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',
endColorstr='#ffe5e5e5', GradientType=0);
	border-color: #e6e6e6 #e6e6e6 #bfbfbf;
	*background-color: #e6e6e6;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
	border: 1px solid #bbb;
	*border: 0;
	border-bottom-color: #a2a2a2;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	*margin-left: .3em;
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px
rgba(0,0,0,.05);
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px
rgba(0,0,0,.05);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
}
#form-login .btn:hover,
#form-login .btn:focus,
#form-login .btn:active,
#form-login .btn.active,
#form-login .btn.disabled,
#form-login .btn[disabled] {
	color: #333333;
	background-color: #e6e6e6;
	*background-color: #d9d9d9;
}
#form-login .btn:active,
#form-login .btn.active {
	background-color: #cccccc \9;
}
#form-login .btn:first-child {
	*margin-left: 0;
}
#form-login .btn:hover {
	color: #333333;
	text-decoration: none;
	background-color: #e6e6e6;
	*background-color: #d9d9d9;
	background-position: 0 -15px;
	-webkit-transition: background-position .1s linear;
	-moz-transition: background-position .1s linear;
	-o-transition: background-position .1s linear;
	transition: background-position .1s linear;
}
#form-login .btn:focus {
	outline: thin dotted #333;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
#form-login .btn.active,
#form-login .btn:active {
	background-color: #e6e6e6;
	background-color: #d9d9d9 \9;
	background-image: none;
	outline: 0;
	-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px
rgba(0,0,0,.05);
	-moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px
rgba(0,0,0,.05);
	box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
#form-login .btn.disabled,
#form-login .btn[disabled] {
	cursor: default;
	background-color: #e6e6e6;
	background-image: none;
	opacity: 0.65;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-large {
	padding: 9px 14px;
	font-size: 15px;
	line-height: normal;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.btn-large [class^="icon-"] {
	margin-top: 2px;
}
.input-append input[class*="span"],
.input-append .uneditable-input[class*="span"],
.input-prepend input[class*="span"],
.input-prepend .uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"],
.row-fluid .input-prepend [class*="span"],
.row-fluid .input-append [class*="span"] {
	display: inline-block;
}
.input-append,
.input-prepend {
	margin-bottom: 5px;
	font-size: 0;
	white-space: nowrap;
}
.input-append input,
.input-append select,
.input-append .uneditable-input,
.input-prepend input,
.input-prepend select,
.input-prepend .uneditable-input {
	position: relative;
	margin-bottom: 0;
	*margin-left: 0;
	font-size: 13px;
	vertical-align: top;
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}
.input-append input:focus,
.input-append select:focus,
.input-append .uneditable-input:focus,
.input-prepend input:focus,
.input-prepend select:focus,
.input-prepend .uneditable-input:focus {
	z-index: 2;
}
.input-append .add-on,
.input-prepend .add-on {
	display: inline-block;
	width: auto;
	height: 15px;
	min-width: 16px;
	padding: 4px 5px;
	font-size: 13px;
	font-weight: normal;
	line-height: 15px;
	text-align: center;
	text-shadow: 0 1px 0 #ffffff;
	background-color: #eeeeee;
	border: 1px solid #ccc;
}
.input-append .add-on,
.input-append .btn,
.input-prepend .add-on,
.input-prepend .btn {
	margin-left: -1px;
	vertical-align: top;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.input-append .active,
.input-prepend .active {
	background-color: #a9dba9;
	border-color: #46a546;
}
.input-prepend .add-on,
.input-prepend .btn {
	margin-right: -1px;
}
.input-prepend .add-on:first-child,
.input-prepend .btn:first-child {
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}
.input-append input,
.input-append select,
.input-append .uneditable-input {
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}
.input-append .add-on:last-child,
.input-append .btn:last-child {
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}
.input-prepend.input-append input,
.input-prepend.input-append select,
.input-prepend.input-append .uneditable-input {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.input-prepend.input-append .add-on:first-child,
.input-prepend.input-append .btn:first-child {
	margin-right: -1px;
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}
.input-prepend.input-append .add-on:last-child,
.input-prepend.input-append .btn:last-child {
	margin-left: -1px;
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}
.form-search .input-append .search-query,
.form-search .input-prepend .search-query {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.form-search .input-append .search-query {
	-webkit-border-radius: 14px 0 0 14px;
	-moz-border-radius: 14px 0 0 14px;
	border-radius: 14px 0 0 14px;
}
.form-search .input-append .btn {
	-webkit-border-radius: 0 14px 14px 0;
	-moz-border-radius: 0 14px 14px 0;
	border-radius: 0 14px 14px 0;
}
.form-search .input-prepend .search-query {
	-webkit-border-radius: 0 14px 14px 0;
	-moz-border-radius: 0 14px 14px 0;
	border-radius: 0 14px 14px 0;
}
.form-search .input-prepend .btn {
	-webkit-border-radius: 14px 0 0 14px;
	-moz-border-radius: 14px 0 0 14px;
	border-radius: 14px 0 0 14px;
}
.form-search input,
.form-search textarea,
.form-search select,
.form-search .help-inline,
.form-search .uneditable-input,
.form-search .input-prepend,
.form-search .input-append,
.form-inline input,
.form-inline textarea,
.form-inline select,
.form-inline .help-inline,
.form-inline .uneditable-input,
.form-inline .input-prepend,
.form-inline .input-append,
.form-horizontal input,
.form-horizontal textarea,
.form-horizontal select,
.form-horizontal .help-inline,
.form-horizontal .uneditable-input,
.form-horizontal .input-prepend,
.form-horizontal .input-append {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	margin-bottom: 0;
	vertical-align: middle;
}
.form-search .hide,
.form-inline .hide,
.form-horizontal .hide {
	display: none;
}
.form-search .input-append,
.form-inline .input-append,
.form-search .input-prepend,
.form-inline .input-prepend {
	margin-bottom: 0;
}
.element-invisible {
	position: absolute;
	padding: 0 !important;
	margin: 0 !important;
	border: 0;
	height: 1px;
	width: 1px !important;
	overflow: hidden;
}
#form-login select,
#form-login input[type="text"],
#form-login input[type="password"] {
	display: inline-block;
	padding: 4px 6px;
	margin-bottom: 9px;
	font-size: 13px;
	line-height: 15px;
	color: #555555;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	width: 175px;
}
.subform-repeatable-wrapper div.btn-toolbar {
	float: none;
}
.subform-repeatable-wrapper .text-right {
	text-align: right;
}
.subform-repeatable-wrapper .ui-sortable-helper {
	background: #ffffff;
}
.subform-repeatable-wrapper tr.ui-sortable-helper {
	display: table;
}
.subform-repeatable-wrapper .subform-repeatable-group {
	clear: both;
}
.label,
.badge {
	display: inline-block;
	padding: 2px 4px;
	font-size: 10.998px;
	font-weight: bold;
	line-height: 14px;
	color: #ffffff;
	vertical-align: baseline;
	white-space: nowrap;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	background-color: #999999;
}
.label {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.badge {
	padding-left: 9px;
	padding-right: 9px;
	-webkit-border-radius: 9px;
	-moz-border-radius: 9px;
	border-radius: 9px;
}
.label:empty,
.badge:empty {
	display: none;
}
a.label:hover,
a.label:focus,
a.badge:hover,
a.badge:focus {
	color: #ffffff;
	text-decoration: none;
	cursor: pointer;
}
.label-important,
.badge-important {
	background-color: #a20000;
}
.label-important[href],
.badge-important[href] {
	background-color: #6f0000;
}
.label-warning,
.badge-warning {
	background-color: #f89406;
}
.label-warning[href],
.badge-warning[href] {
	background-color: #c67605;
}
.label-success,
.badge-success {
	background-color: #005800;
}
.label-success[href],
.badge-success[href] {
	background-color: #002500;
}
.label-info,
.badge-info {
	background-color: #3a87ad;
}
.label-info[href],
.badge-info[href] {
	background-color: #2d6987;
}
.label-inverse,
.badge-inverse {
	background-color: #333333;
}
.label-inverse[href],
.badge-inverse[href] {
	background-color: #1a1a1a;
}
.btn .label,
.btn .badge {
	position: relative;
	top: -1px;
}
.btn-mini .label,
.btn-mini .badge {
	top: 0;
}
body {
	background-color: #ffffff;
	color: #2c2c2c;
}
h1 {
	color: #2c2c2c;
}
a:link {
	color: #054993;
}
a:visited {
	color: #054993;
}
#header {
	background: #ffffff url(../images/j_logo.png) no-repeat;
}
#header h1.title {
	color: #2c2c2c;
}
#nav {
	background-color: #d5c1b2;
	background-image: -moz-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#d5c1b2),to(#d5c1b2));
	background-image: -webkit-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -o-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: linear-gradient(to bottom,#d5c1b2,#d5c1b2);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd5c1b2',
endColorstr='#ffd5c1b2', GradientType=0);
	border: 1px solid #000000;
}
#content {
	background: #ffffff;
}
#no-submenu {
	border-bottom: 1px solid #000000;
}
#element-box {
	background: #ffffff;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
	border-left: 1px solid #000000;
}
#element-box.login {
	border-top: 1px solid #000000;
}
.enabled,
.success,
.allow,
span.writable {
	color: #005800;
}
.disabled,
p.error,
.warning,
.deny,
span.unwritable {
	color: #a20000;
}
.nowarning {
	color: #2c2c2c;
}
.none,
.protected {
	color: #000000;
}
span.note {
	background: #ffffff;
	color: #2c2c2c;
}
div.checkin-tick {
	background: url(../images/admin/tick.png) 20px 50% no-repeat;
}
.ol-foreground {
	background-color: #d5c1b2;
}
.ol-background {
	background-color: #005800;
}
.ol-textfont {
	color: #2c2c2c;
}
.ol-captionfont {
	color: #ffffff;
}
.ol-captionfont a {
	color: #054993;
}
div.subheader .padding {
	background: #ffffff;
}
.pagetitle h2 {
	color: #2c2c2c;
}
div.configuration {
	color: #2c2c2c;
	background-image: url(../images/menu/icon-16-config.png);
	background-repeat: no-repeat;
}
div.toolbar-box {
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
	border-left: 1px solid #000000;
	background: #ffffff;
}
div.toolbar-list li {
	color: #2c2c2c;
}
div.toolbar-list li.divider {
	border-right: 1px dotted #e5d9c3;
}
div.toolbar-list a {
	border-left: 1px solid #e5d9c3;
	border-top: 1px solid #e5d9c3;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
	background: #d5c1b2;
}
div.toolbar-list a:hover {
	border-left: 1px solid #868778;
	border-top: 1px solid #868778;
	border-right: 1px solid #f6f7db;
	border-bottom: 1px solid #f6f7db;
	background: #e5d9c3;
	color: #054993;
}
div.btn-toolbar {
	margin-left: 5px;
	padding-top: 3px;
}
div.btn-toolbar li.divider {
	border-right: 1px dotted #e5d9c3;
}
div.btn-toolbar div.btn-group button {
	border-left: 1px solid #e5d9c3;
	border-top: 1px solid #e5d9c3;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
	background-color: #d5c1b2;
	background-image: -moz-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#d5c1b2),to(#d5c1b2));
	background-image: -webkit-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -o-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: linear-gradient(to bottom,#d5c1b2,#d5c1b2);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd5c1b2',
endColorstr='#ffd5c1b2', GradientType=0);
	padding: 5px 4px 5px 4px;
}
div.btn-toolbar div.btn-group button:hover {
	border-left: 1px solid #868778;
	border-top: 1px solid #868778;
	border-right: 1px solid #f6f7db;
	border-bottom: 1px solid #f6f7db;
	background: #e5d9c3;
	color: #054993;
	cursor: pointer;
}
div.btn-toolbar a {
	border-left: 1px solid #e5d9c3;
	border-top: 1px solid #e5d9c3;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
	background-color: #d5c1b2;
	background-image: -moz-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#d5c1b2),to(#d5c1b2));
	background-image: -webkit-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -o-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: linear-gradient(to bottom,#d5c1b2,#d5c1b2);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd5c1b2',
endColorstr='#ffd5c1b2', GradientType=0);
	padding: 6px 5px;
	text-align: center;
	white-space: nowrap;
	font-size: 1.2em;
	text-decoration: none;
}
div.btn-toolbar a:hover {
	border-left: 1px solid #868778;
	border-top: 1px solid #868778;
	border-right: 1px solid #f6f7db;
	border-bottom: 1px solid #f6f7db;
	background: #e5d9c3;
	color: #054993;
	cursor: pointer;
}
div.btn-toolbar div.btn-group button.inactive {
	background: #d5c1b2;
}
.pane-sliders .title {
	color: #2c2c2c;
}
.pane-sliders .panel {
	border: 1px solid #000000;
}
.pane-sliders .panel h3 {
	background-color: #d5c1b2;
	background-image: -moz-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#d5c1b2),to(#d5c1b2));
	background-image: -webkit-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -o-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: linear-gradient(to bottom,#d5c1b2,#d5c1b2);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd5c1b2',
endColorstr='#ffd5c1b2', GradientType=0);
	color: #054993;
}
.pane-sliders .panel h3:hover {
	background: #e5d9c3;
}
.pane-sliders .panel h3:hover a {
	text-decoration: none;
}
.pane-sliders .adminlist {
	border: 0 none;
}
.pane-sliders .adminlist td {
	border: 0 none;
}
.pane-toggler span {
	background: transparent url(../images/j_arrow.png) 5px 50% no-repeat;
}
.pane-toggler-down span {
	background: transparent url(../images/j_arrow_down.png) 5px 50% no-repeat;
}
.pane-toggler-down {
	border-bottom: 1px solid #000000;
}
dl.tabs dt {
	border: 1px solid #000000;
	background-color: #d5c1b2;
	background-image: -moz-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#d5c1b2),to(#d5c1b2));
	background-image: -webkit-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -o-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: linear-gradient(to bottom,#d5c1b2,#d5c1b2);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd5c1b2',
endColorstr='#ffd5c1b2', GradientType=0);
	color: #054993;
}
dl.tabs dt:hover {
	background: #e5d9c3;
}
dl.tabs dt.open {
	background: #ffffff;
	border-bottom: 1px solid #ffffff;
	color: #2c2c2c;
}
dl.tabs dt.open a:visited {
	color: #2c2c2c;
}
dl.tabs dt a:hover {
	text-decoration: none;
}
dl.tabs dt a:focus {
	text-decoration: underline;
}
div.current {
	border: 1px solid #000000;
	background: #ffffff;
}
div.current fieldset {
	border: none 0;
}
div.current fieldset.adminform {
	border: 1px solid #000000;
}
#login-page .pagetitle h2 {
	background: transparent;
}
#login-page #header {
	border-bottom: 1px solid #000000;
}
#login-page #lock {
	background: url(../images/j_login_lock.png) 50% 0 no-repeat;
}
#login-page #element-box.login {
	background-color: #d5c1b2;
	background-image: -moz-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#d5c1b2),to(#d5c1b2));
	background-image: -webkit-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -o-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: linear-gradient(to bottom,#d5c1b2,#d5c1b2);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd5c1b2',
endColorstr='#ffd5c1b2', GradientType=0);
}
#form-login {
	background: #ffffff;
	border: 1px solid #000000;
}
#form-login label {
	color: #2c2c2c;
}
#form-login div.button1 a {
	color: #054993;
}
#cpanel div.icon a,
.cpanel div.icon a {
	color: #054993;
	border-left: 1px solid #e5d9c3;
	border-top: 1px solid #e5d9c3;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
	background-color: #d5c1b2;
	background-image: -moz-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#d5c1b2),to(#d5c1b2));
	background-image: -webkit-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -o-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: linear-gradient(to bottom,#d5c1b2,#d5c1b2);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd5c1b2',
endColorstr='#ffd5c1b2', GradientType=0);
}
#cpanel div.icon a:hover,
#cpanel div.icon a:focus,
.cpanel div.icon a:hover,
.cpanel div.icon a:focus {
	border-left: 1px solid #868778;
	border-top: 1px solid #868778;
	border-right: 1px solid #f6f7db;
	border-bottom: 1px solid #f6f7db;
	color: #054993;
	background: #e5d9c3;
}
fieldset {
	border: 1px #000000 solid;
}
legend {
	color: #2c2c2c;
}
fieldset ul.checklist input:focus {
	outline: thin dotted #2c2c2c;
}
fieldset#filter-bar {
	border-top: 0 solid #000000;
	border-right: 0 solid #000000;
	border-bottom: 1px solid #000000;
	border-left: 0 solid #000000;
}
fieldset#filter-bar ol,
fieldset#filter-bar ul {
	border: 0;
}
fieldset#filter-bar ol li fieldset,
fieldset#filter-bar ul li fieldset {
	border: 0;
}
.invalid {
	color: #a20000;
}
input.invalid {
	border: 1px solid #a20000;
}
input.readonly,
span.faux-input {
	border: 0;
}
input.required {
	background-color: #e5f0fa;
}
input.disabled {
	background-color: #eeeeee;
}
input,
select,
span.faux-input {
	background-color: #ffffff;
	border: 1px solid #000000;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {
	color: #054993;
	background-color: #d5c1b2;
	background-image: -moz-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#d5c1b2),to(#d5c1b2));
	background-image: -webkit-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -o-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: linear-gradient(to bottom,#d5c1b2,#d5c1b2);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd5c1b2',
endColorstr='#ffd5c1b2', GradientType=0);
}
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus {
	background: #e5d9c3;
}
textarea {
	background-color: #ffffff;
	border: 1px solid #000000;
}
input:focus,
select:focus,
textarea:focus,
option:focus,
input:hover,
select:hover,
textarea:hover,
option:hover {
	background-color: #e5d9c3;
	color: #054993;
}
.paramrules {
	background: #d5c1b2;
}
span.gi {
	color: #000000;
}
table.admintable td.key,
table.admintable td.paramlist_key {
	background-color: #d5c1b2;
	color: #2c2c2c;
	border-bottom: 1px solid #000000;
	border-right: 1px solid #000000;
}
table.paramlist td.paramlist_description {
	background-color: #d5c1b2;
	color: #2c2c2c;
	border-bottom: 1px solid #000000;
	border-right: 1px solid #000000;
}
fieldset.adminform {
	border: 1px solid #000000;
}
table.adminform {
	background-color: #ffffff;
}
table.adminform tr.row0 {
	background-color: #ffffff;
}
table.adminform tr.row1 {
	background-color: #e5d9c3;
}
table.adminform th {
	color: #2c2c2c;
	background: #ffffff;
}
table.adminform tr {
	border-bottom: 1px solid #000000;
	border-right: 1px solid #000000;
}
table.adminlist {
	border-spacing: 1px;
	background-color: #ffffff;
	color: #2c2c2c;
}
table.adminlist.modal {
	border-top: 1px solid #000000;
	border-right: 1px solid #000000;
	border-left: 1px solid #000000;
}
table.adminlist a {
	color: #054993;
}
table.adminlist thead th {
	background: #ffffff;
	color: #2c2c2c;
	border-bottom: 1px solid #000000;
}
table.adminlist tbody tr {
	background: #ffffff;
}
table.adminlist tbody tr.row1 {
	background: #ffffff;
}
table.adminlist tbody tr.row1:last-child td,
table.adminlist tbody tr.row1:last-child th {
	border-bottom: 1px solid #000000;
}
table.adminlist tbody tr.row0:hover td,
table.adminlist tbody tr.row1:hover td,
table.adminlist tbody tr.row0:hover th,
table.adminlist tbody tr.row1:hover th,
table.adminlist tbody tr.row0:focus td,
table.adminlist tbody tr.row1:focus td,
table.adminlist tbody tr.row0:focus th,
table.adminlist tbody tr.row1:focus th {
	background-color: #e5d9c3;
}
table.adminlist tbody tr td,
table.adminlist tbody tr th {
	border-right: 1px solid #000000;
}
table.adminlist tbody tr td:last-child {
	border-right: none;
}
table.adminlist tbody tr.row0:last-child td,
table.adminlist tbody tr.row0:last-child th {
	border-bottom: 1px solid #000000;
}
table.adminlist tbody tr.row0 td,
table.adminlist tbody tr.row0 th {
	background-color: #d5c1b2;
	background-image: -moz-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#d5c1b2),to(#d5c1b2));
	background-image: -webkit-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -o-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: linear-gradient(to bottom,#d5c1b2,#d5c1b2);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd5c1b2',
endColorstr='#ffd5c1b2', GradientType=0);
}
table.adminlist {
	border-bottom: 0 solid #000000;
}
table.adminlist tfoot tr {
	color: #2c2c2c;
}
table.adminlist tfoot td,
table.adminlist tfoot th {
	background-color: #ffffff;
	border-top: 1px solid #000000;
}
table.adminlist tr td.btns a {
	border: 1px solid #000000;
	background-color: #d5c1b2;
	background-image: -moz-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#d5c1b2),to(#d5c1b2));
	background-image: -webkit-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -o-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: linear-gradient(to bottom,#d5c1b2,#d5c1b2);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd5c1b2',
endColorstr='#ffd5c1b2', GradientType=0);
	color: #054993;
}
table.adminlist tr td.btns a:hover,
table.adminlist tr td.btns a:active,
table.adminlist tr td.btns a:focus {
	background-color: #ffffff;
}
a.saveorder {
	background: url(../images/admin/filesave.png) no-repeat;
}
a.saveorder.inactive {
	background-position: 0 -16px;
}
fieldset.batch {
	background: #ffffff;
}
button {
	color: #054993;
	border: 1px solid #000000;
	background-color: #d5c1b2;
	background-image: -moz-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#d5c1b2),to(#d5c1b2));
	background-image: -webkit-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -o-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: linear-gradient(to bottom,#d5c1b2,#d5c1b2);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd5c1b2',
endColorstr='#ffd5c1b2', GradientType=0);
}
button:hover,
button:focus {
	background: #e5d9c3;
}
.invalid {
	color: #ff0000;
}
.button1 {
	border: 1px solid #000000;
	color: #054993;
	background-color: #d5c1b2;
	background-image: -moz-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#d5c1b2),to(#d5c1b2));
	background-image: -webkit-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -o-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: linear-gradient(to bottom,#d5c1b2,#d5c1b2);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd5c1b2',
endColorstr='#ffd5c1b2', GradientType=0);
}
.button1 a {
	color: #054993;
}
.button1 a:hover,
.button1 a:focus {
	background: #e5d9c3;
}
.button2-left,
.button2-right {
	border: 1px solid #000000;
	background-color: #d5c1b2;
	background-image: -moz-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#d5c1b2),to(#d5c1b2));
	background-image: -webkit-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -o-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: linear-gradient(to bottom,#d5c1b2,#d5c1b2);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd5c1b2',
endColorstr='#ffd5c1b2', GradientType=0);
}
.button2-left a,
.button2-right a,
.button2-left span,
.button2-right span {
	color: #054993;
}
.button2-left span,
.button2-right span {
	color: #999999;
}
.page span,
.blank span {
	color: #054993;
}
.button2-left a:hover,
.button2-right a:hover,
.button2-left a:focus,
.button2-right a:focus {
	background: #e5d9c3;
}
.pagination .page span {
	color: #999999;
}
.tip {
	background: #000000;
	border: 1px solid #FFFFFF;
}
.tip-title {
	background: url(../images/selector-arrow-std.png) no-repeat;
}
a img.calendar {
	background: url(../images/calendar.png) no-repeat;
}
.jgrid span.publish {
	background-image: url(../images/admin/tick.png);
}
.jgrid span.unpublish {
	background-image: url(../images/admin/publish_x.png);
}
.jgrid span.archive {
	background-image: url(../images/menu/icon-16-archive.png);
}
.jgrid span.trash {
	background-image: url(../images/menu/icon-16-trash.png);
}
.jgrid span.default {
	background-image: url(../images/menu/icon-16-default.png);
}
.jgrid span.notdefault {
	background-image: url(../images/menu/icon-16-notdefault.png);
}
.jgrid span.checkedout {
	background-image: url(../images/admin/checked_out.png);
}
.jgrid span.downarrow {
	background-image: url(../images/admin/downarrow.png);
}
.jgrid span.downarrow_disabled {
	background-image: url(../images/admin/downarrow0.png);
}
.jgrid span.uparrow {
	background-image: url(../images/admin/uparrow.png);
}
.jgrid span.uparrow_disabled {
	background-image: url(../images/admin/uparrow0.png);
}
.jgrid span.published {
	background-image: url(../images/admin/publish_g.png);
}
.jgrid span.expired {
	background-image: url(../images/admin/publish_r.png);
}
.jgrid span.pending {
	background-image: url(../images/admin/publish_y.png);
}
.jgrid span.warning {
	background-image: url(../images/admin/publish_y.png);
}
.icon-32-send {
	background-image: url(../images/toolbar/icon-32-send.png);
}
.icon-32-delete {
	background-image: url(../images/toolbar/icon-32-delete.png);
}
.icon-32-help {
	background-image: url(../images/toolbar/icon-32-help.png);
}
.icon-32-cancel {
	background-image: url(../images/toolbar/icon-32-cancel.png);
}
.icon-32-checkin {
	background-image: url(../images/toolbar/icon-32-checkin.png);
}
.icon-32-options {
	background-image: url(../images/toolbar/icon-32-config.png);
}
.icon-32-apply {
	background-image: url(../images/toolbar/icon-32-apply.png);
}
.icon-32-back {
	background-image: url(../images/toolbar/icon-32-back.png);
}
.icon-32-forward {
	background-image: url(../images/toolbar/icon-32-forward.png);
}
.icon-32-save {
	background-image: url(../images/toolbar/icon-32-save.png);
}
.icon-32-edit {
	background-image: url(../images/toolbar/icon-32-edit.png);
}
.icon-32-copy {
	background-image: url(../images/toolbar/icon-32-copy.png);
}
.icon-32-move {
	background-image: url(../images/toolbar/icon-32-move.png);
}
.icon-32-new {
	background-image: url(../images/toolbar/icon-32-new.png);
}
.icon-32-upload {
	background-image: url(../images/toolbar/icon-32-upload.png);
}
.icon-32-assign {
	background-image: url(../images/toolbar/icon-32-publish.png);
}
.icon-32-html {
	background-image: url(../images/toolbar/icon-32-html.png);
}
.icon-32-css {
	background-image: url(../images/toolbar/icon-32-css.png);
}
.icon-32-menus {
	background-image: url(../images/toolbar/icon-32-menu.png);
}
.icon-32-publish {
	background-image: url(../images/toolbar/icon-32-publish.png);
}
.icon-32-unblock {
	background-image: url(../images/toolbar/icon-32-unblock.png);
}
.icon-32-unpublish {
	background-image: url(../images/toolbar/icon-32-unpublish.png);
}
.icon-32-restore {
	background-image: url(../images/toolbar/icon-32-revert.png);
}
.icon-32-trash {
	background-image: url(../images/toolbar/icon-32-trash.png);
}
.icon-32-archive {
	background-image: url(../images/toolbar/icon-32-archive.png);
}
.icon-32-unarchive {
	background-image: url(../images/toolbar/icon-32-unarchive.png);
}
.icon-32-preview {
	background-image: url(../images/toolbar/icon-32-preview.png);
}
.icon-32-default {
	background-image: url(../images/toolbar/icon-32-default.png);
}
.icon-32-refresh {
	background-image: url(../images/toolbar/icon-32-refresh.png);
}
.icon-32-save-new {
	background-image: url(../images/toolbar/icon-32-save-new.png);
}
.icon-32-save-copy {
	background-image: url(../images/toolbar/icon-32-save-copy.png);
}
.icon-32-error {
	background-image: url(../images/toolbar/icon-32-error.png);
}
.icon-32-new-style {
	background-image: url(../images/toolbar/icon-32-new-style.png);
}
.icon-32-delete-style {
	background-image: url(../images/toolbar/icon-32-delete-style.png);
}
.icon-32-purge {
	background-image: url(../images/toolbar/icon-32-purge.png);
}
.icon-32-remove {
	background-image: url(../images/toolbar/icon-32-remove.png);
}
.icon-32-featured {
	background-image: url(../images/toolbar/icon-32-featured.png);
}
.icon-32-unfeatured {
	background-image: url(../images/toolbar/icon-32-featured.png);
	background-position: 0% 100%;
}
.icon-32-export {
	background-image: url(../images/toolbar/icon-32-export.png);
}
.icon-32-stats {
	background-image: url(../images/toolbar/icon-32-stats.png);
}
.icon-32-print {
	background-image: url(../images/toolbar/icon-32-print.png);
}
.icon-32-batch {
	background-image: url(../images/toolbar/icon-32-batch.png);
}
.icon-32-envelope {
	background-image: url(../images/toolbar/icon-32-messaging.png);
}
.icon-32-download {
	background-image: url(../images/toolbar/icon-32-export.png);
}
.icon-32-bars {
	background-image: url(../images/toolbar/icon-32-stats.png);
}
.icon-48-categories {
	background-image: url(../images/header/icon-48-category.png);
}
.icon-48-category-edit {
	background-image: url(../images/header/icon-48-category.png);
}
.icon-48-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}
.icon-48-generic {
	background-image: url(../images/header/icon-48-generic.png);
}
.icon-48-banners {
	background-image: url(../images/header/icon-48-banner.png);
}
.icon-48-banners-categories {
	background-image: url(../images/header/icon-48-banner-categories.png);
}
.icon-48-banners-category-edit {
	background-image: url(../images/header/icon-48-banner-categories.png);
}
.icon-48-banners-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}
.icon-48-banners-clients {
	background-image: url(../images/header/icon-48-banner-client.png);
}
.icon-48-banners-tracks {
	background-image: url(../images/header/icon-48-banner-tracks.png);
}
.icon-48-checkin {
	background-image: url(../images/header/icon-48-checkin.png);
}
.icon-48-clear {
	background-image: url(../images/header/icon-48-clear.png);
}
.icon-48-contact {
	background-image: url(../images/header/icon-48-contacts.png);
}
.icon-48-contact-categories {
	background-image: url(../images/header/icon-48-contacts-categories.png);
}
.icon-48-contact-category-edit {
	background-image: url(../images/header/icon-48-contacts-categories.png);
}
.icon-48-contact-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}
.icon-48-purge {
	background-image: url(../images/header/icon-48-purge.png);
}
.icon-48-cpanel {
	background-image: url(../images/header/icon-48-cpanel.png);
}
.icon-48-config {
	background-image: url(../images/header/icon-48-config.png);
}
.icon-48-groups {
	background-image: url(../images/header/icon-48-groups.png);
}
.icon-48-groups-add {
	background-image: url(../images/header/icon-48-groups-add.png);
}
.icon-48-levels {
	background-image: url(../images/header/icon-48-levels.png);
}
.icon-48-levels-add {
	background-image: url(../images/header/icon-48-levels-add.png);
}
.icon-48-module {
	background-image: url(../images/header/icon-48-module.png);
}
.icon-48-menu {
	background-image: url(../images/header/icon-48-menu.png);
}
.icon-48-menu-add {
	background-image: url(../images/header/icon-48-menu-add.png);
}
.icon-48-menumgr {
	background-image: url(../images/header/icon-48-menumgr.png);
}
.icon-48-trash {
	background-image: url(../images/header/icon-48-trash.png);
}
.icon-48-user {
	background-image: url(../images/header/icon-48-user.png);
}
.icon-48-user-add {
	background-image: url(../images/header/icon-48-user-add.png);
}
.icon-48-user-edit {
	background-image: url(../images/header/icon-48-user-edit.png);
}
.icon-48-user-profile {
	background-image: url(../images/header/icon-48-user-profile.png);
}
.icon-48-inbox {
	background-image: url(../images/header/icon-48-inbox.png);
}
.icon-48-new-privatemessage {
	background-image: url(../images/header/icon-48-new-privatemessage.png);
}
.icon-48-msgconfig {
	background-image: url(../images/header/icon-48-message_config.png);
}
.icon-48-langmanager {
	background-image: url(../images/header/icon-48-language.png);
}
.icon-48-mediamanager {
	background-image: url(../images/header/icon-48-media.png);
}
.icon-48-plugin {
	background-image: url(../images/header/icon-48-plugin.png);
}
.icon-48-help_header {
	background-image: url(../images/header/icon-48-help_header.png);
}
.icon-48-impressions {
	background-image: url(../images/header/icon-48-stats.png);
}
.icon-48-browser {
	background-image: url(../images/header/icon-48-stats.png);
}
.icon-48-searchtext {
	background-image: url(../images/header/icon-48-stats.png);
}
.icon-48-thememanager {
	background-image: url(../images/header/icon-48-themes.png);
}
.icon-48-writemess {
	background-image: url(../images/header/icon-48-writemess.png);
}
.icon-48-featured {
	background-image: url(../images/header/icon-48-featured.png);
}
.icon-48-sections {
	background-image: url(../images/header/icon-48-section.png);
}
.icon-48-article-add {
	background-image: url(../images/header/icon-48-article-add.png);
}
.icon-48-article-edit {
	background-image: url(../images/header/icon-48-article-edit.png);
}
.icon-48-article {
	background-image: url(../images/header/icon-48-article.png);
}
.icon-48-content-categories {
	background-image: url(../images/header/icon-48-category.png);
}
.icon-48-content-category-edit {
	background-image: url(../images/header/icon-48-category.png);
}
.icon-48-content-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}
.icon-48-install {
	background-image: url(../images/header/icon-48-extension.png);
}
.icon-48-dbbackup {
	background-image: url(../images/header/icon-48-backup.png);
}
.icon-48-dbrestore {
	background-image: url(../images/header/icon-48-dbrestore.png);
}
.icon-48-dbquery {
	background-image: url(../images/header/icon-48-query.png);
}
.icon-48-systeminfo {
	background-image: url(../images/header/icon-48-info.png);
}
.icon-48-massmail {
	background-image: url(../images/header/icon-48-massmail.png);
}
.icon-48-redirect {
	background-image: url(../images/header/icon-48-redirect.png);
}
.icon-48-search {
	background-image: url(../images/header/icon-48-search.png);
}
.icon-48-finder {
	background-image: url(../images/header/icon-48-search.png);
}
.icon-48-newsfeeds {
	background-image: url(../images/header/icon-48-newsfeeds.png);
}
.icon-48-newsfeeds-categories {
	background-image: url(../images/header/icon-48-newsfeeds-cat.png);
}
.icon-48-newsfeeds-category-edit {
	background-image: url(../images/header/icon-48-newsfeeds-cat.png);
}
.icon-48-newsfeeds-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}
.icon-48-weblinks {
	background-image: url(../images/header/icon-48-links.png);
}
.icon-48-weblinks-categories {
	background-image: url(../images/header/icon-48-links-cat.png);
}
.icon-48-weblinks-category-edit {
	background-image: url(../images/header/icon-48-links-cat.png);
}
.icon-48-weblinks-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}
.icon-48-tags {
	background-image: url(../images/header/icon-48-tags.png);
}
.icon-48-assoc {
	background-image: url(../images/header/icon-48-assoc.png);
}
.icon-48-puzzle {
	background-image: url(../images/header/icon-48-puzzle.png);
}
div.message {
	border: 1px solid #000000;
	color: #2c2c2c;
}
.helpFrame {
	border-left: 0 solid #000000;
	border-right: none;
	border-top: none;
	border-bottom: none;
}
.outline {
	border: 1px solid #000000;
	background: #ffffff;
}
dl.menu_type dt {
	border-bottom: 1px solid #000000;
}
ul#new-modules-list {
	border-top: 1px solid #000000;
}
#skiplinkholder a,
#skiplinkholder a:link,
#skiplinkholder a:visited {
	color: #ffffff;
	background: #054993;
	border-bottom: solid #336 2px;
}
fieldset.panelform {
	border: none 0;
}
a.move_up {
	background-image: url('../images/admin/uparrow.png');
}
span.move_up {
	background-image: url('../images/admin/uparrow0.png');
}
a.move_down {
	background-image: url('../images/admin/downarrow.png');
}
span.move_down {
	background-image: url('../images/admin/downarrow0.png');
}
a.grid_false {
	background-image: url('../images/admin/publish_x.png');
}
a.grid_true {
	background-image: url('../images/admin/tick.png');
}
a.grid_trash {
	background-image: url('../images/admin/icon-16-trash.png');
}
tr.row1 {
	background-color: #d5c1b2;
}
table.aclsummary-table td.col2,
table.aclsummary-table th.col2,
table.aclsummary-table td.col3,
table.aclsummary-table th.col3,
table.aclsummary-table td.col4,
table.aclsummary-table th.col4,
table.aclsummary-table td.col5,
table.aclsummary-table th.col5,
table.aclsummary-table td.col6,
table.aclsummary-table th.col6,
table.aclmodify-table td.col2,
table.aclmodify-table th.col2 {
	border-left: 1px solid #000000;
}
span.icon-16-unset {
	background: url(../images/admin/icon-16-denyinactive.png) no-repeat;
}
span.icon-16-allowed {
	background: url(../images/admin/icon-16-allow.png) no-repeat;
}
span.icon-16-denied {
	background: url(../images/admin/icon-16-deny.png) no-repeat;
}
span.icon-16-locked {
	background: url(../images/admin/checked_out.png) 0 0 no-repeat;
}
label.icon-16-allow {
	background: url(../images/admin/icon-16-allow.png) no-repeat;
}
label.icon-16-deny {
	background: url(../images/admin/icon-16-deny.png) no-repeat;
}
a.icon-16-allow {
	background: url(../images/admin/icon-16-allow.png) no-repeat;
}
a.icon-16-deny {
	background: url(../images/admin/icon-16-deny.png) no-repeat;
}
a.icon-16-allowinactive {
	background: url(../images/admin/icon-16-allowinactive.png) no-repeat;
}
a.icon-16-denyinactive {
	background: url(../images/admin/icon-16-denyinactive.png) no-repeat;
}
ul.acllegend li.acl-allowed {
	background: url(../images/admin/icon-16-allow.png) no-repeat left;
}
ul.acllegend li.acl-denied {
	background: url(../images/admin/icon-16-deny.png) no-repeat left;
}
li.acl-editgroups,
li.acl-resetbtn {
	background-color: #d5c1b2;
	border: 1px solid #000000;
}
li.acl-editgroups a,
li.acl-resetbtn a {
	color: #054993;
}
li.acl-editgroups:hover,
li.acl-resetbtn:hover,
li.acl-editgroups:focus,
li.acl-resetbtn:focus {
	background-color: #e5d9c3;
}
table#acl-config {
	border: 1px solid #000000;
}
table#acl-config th,
table#acl-config td {
	background: #d5c1b2;
	border-bottom: 1px solid #000000;
}
table#acl-config th.acl-groups {
	border-right: 1px solid #000000;
}
#jform_sef_rewrite-lbl {
	background: url(../images/admin/icon-16-notice-note.png) right top
no-repeat;
}
#permissions-sliders .tip {
	background: #ffffff;
	border: 1px solid #000000;
}
#permissions-sliders ul#rules,
#permissions-sliders ul#rules ul {
	border: solid 0 #000000;
	background: #ffffff;
}
ul#rules li .pane-sliders .panel h3.title {
	border: solid 0 #000000;
}
#permissions-sliders ul#rules .pane-slider {
	border: solid 1px #000000;
}
#permissions-sliders ul#rules li h3 {
	border: solid 1px #000000;
}
#permissions-sliders ul#rules li h3.pane-toggler-down a {
	border: solid 0;
}
#permissions-sliders ul#rules .group-kind {
	color: #2c2c2c;
}
#permissions-sliders ul#rules table.group-rules {
	border: solid 1px #000000;
}
#permissions-sliders ul#rules table.group-rules td {
	border-right: solid 1px #000000;
	border-bottom: solid 1px #000000;
}
#permissions-sliders ul#rules table.group-rules th {
	background: #e5d9c3;
	border-right: solid 1px #000000;
	border-bottom: solid 1px #000000;
	color: #2c2c2c;
}
ul#rules table.aclmodify-table {
	border: solid 1px #000000;
}
ul#rules table.group-rules td label {
	border: solid 0 #000000;
}
#permissions-sliders ul#rules .mypanel {
	border: solid 0 #000000;
}
#permissions-sliders  ul#rules  table.group-rules td {
	background: #ffffff;
}
#permissions-sliders span.level {
	color: #000000;
	background-image: none;
}
.check-0,
table.adminlist tbody td.check-0 {
	background-color: #ffffcf;
}
.check-a,
table.adminlist tbody td.check-a {
	background-color: #cfffda;
}
.check-d,
table.adminlist tbody td.check-d {
	background-color: #ffcfcf;
}
#system-message dd ul {
	color: #2c2c2c;
}
#system-message dd.error ul {
	color: #2c2c2c;
}
#system-message dd.message ul {
	color: #2c2c2c;
}
#system-message dd.notice ul {
	color: #2c2c2c;
}
#menu {
	color: #2c2c2c;
}
#menu ul.dropdown-menu {
	background-color: #d5c1b2;
	background-image: -moz-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#d5c1b2),to(#d5c1b2));
	background-image: -webkit-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -o-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: linear-gradient(to bottom,#d5c1b2,#d5c1b2);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd5c1b2',
endColorstr='#ffd5c1b2', GradientType=0);
	color: #2c2c2c;
}
#menu ul.dropdown-menu li.dropdown-submenu {
	background: url(../images/j_arrow.png) no-repeat right 50%;
}
#menu ul.dropdown-menu li.divider {
	margin-bottom: 0;
	border-bottom: 1px dotted #000000;
}
#menu a {
	color: #054993;
	background-repeat: no-repeat;
	background-position: left 50%;
}
#menu li {
	border-right: 1px solid #000000;
	background-color: transparent;
}
#menu li a:hover,
#menu li a:focus {
	background-color: #e5d9c3;
}
#menu li.disabled a:hover,
#menu li.disabled a:focus,
#menu li.disabled a {
	color: #000000;
	background-color: #d5c1b2;
	background-image: -moz-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#d5c1b2),to(#d5c1b2));
	background-image: -webkit-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -o-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: linear-gradient(to bottom,#d5c1b2,#d5c1b2);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd5c1b2',
endColorstr='#ffd5c1b2', GradientType=0);
}
#menu li ul {
	border: 1px solid #000000;
}
#menu li li {
	background-color: transparent;
}
#menu li.sfhover a {
	background-color: #e5d9c3;
}
#menu li.sfhover li a {
	background-color: transparent;
}
#menu li.sfhover li.sfhover a,
#menu li li a:focus {
	background-color: #e5d9c3;
}
#menu li.sfhover li.sfhover li a {
	background-color: transparent;
}
#menu li.sfhover li.sfhover li.sfhover a,
#menu li li li a:focus {
	background-color: #e5d9c3;
}
#menu li li a:focus,
#menu li li li a:focus {
	background-color: #e5d9c3;
}
#menu li li li a:focus {
	background-color: #e5d9c3;
}
#submenu {
	border-bottom: 1px solid #000000;
}
#submenu li,
#submenu span.nolink {
	background-color: #d5c1b2;
	background-image: -moz-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#d5c1b2),to(#d5c1b2));
	background-image: -webkit-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: -o-linear-gradient(top,#d5c1b2,#d5c1b2);
	background-image: linear-gradient(to bottom,#d5c1b2,#d5c1b2);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd5c1b2',
endColorstr='#ffd5c1b2', GradientType=0);
	border: 1px solid #000000;
	color: #054993;
}
#submenu li:hover,
#submenu li:focus {
	background: #e5d9c3;
}
#submenu li.active,
#submenu span.nolink.active {
	background: #ffffff;
	border-bottom: 1px solid #ffffff;
}
#submenu li.active a,
#submenu span.nolink.active {
	color: #000;
}
.element-invisible {
	margin: 0;
	padding: 0;
}
div.CodeMirror-wrapping {
	border: 1px solid #000000;
}
table.adminform tr.row0 {
	background-color: #ffffff;
}
ul.alternating > li:nth-child(odd) {
	background-color: #ffffff;
}
ul.alternating > li:nth-child(even) {
	background-color: #d5c1b2;
}
ol.alternating > li:nth-child(odd) {
	background-color: #ffffff;
}
ol.alternating > li:nth-child(even) {
	background-color: #d5c1b2;
}
#installer-database,
#installer-discover,
#installer-update,
#installer-warnings {
	border-top: 1px solid #000000;
}
#installer-database p.warning {
	background: transparent url(../images/admin/icon-16-deny.png) center left
no-repeat;
}
#installer-database p.nowarning {
	background: transparent url(../images/admin/icon-16-allow.png) center left
no-repeat;
}
.input-append,
.input-prepend {
	font-size: 1.2em;
}
css/colour_brown_rtl.css000064400000014023151163244070011444
0ustar00@charset "UTF-8";

/**
 * @package		Joomla.Administrator
 * @subpackage	templates.hathor
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 * @since		1.6
 *
 * RTL CSS file for the color standard
 */

/**
 * Overall Styles
 */
#header {
	background: #ffffff url(../images/j_logo.png) no-repeat top right;
}

/**
 * Various Styles
 */
div.checkin-tick {
		background: url(../images/admin/tick.png) 20px 50% no-repeat;
}

/**
 * Pane Slider pane Toggler styles
 */
.pane-toggler  span {
	background: transparent url(../images/j_arrow_left.png) right 50%
no-repeat;
}

.pane-toggler-down span {
	background: transparent url(../images/j_arrow_down.png) right 50%
no-repeat;
}

/**
 * Cpanel Settings
 */
fieldset#filter-bar {
	border-left: none;
	border-right: none;
}

/**
 * Admintable Styles
 */

table.admintable td.key,table.admintable td.paramlist_key {
	border-left: 1px solid #e9e9e9;
	border-right: none;
}

table.paramlist td.paramlist_description {
	border-left: 1px solid #e9e9e9;
	border-right: none;
}

/**
 * Admin Form Styles
 */
table.adminform tr {
	border-left: 1px solid #000000;
	border-right: none;
}

/**
 * Adminlist Table layout
 */

table.adminlist.modal {
	border-right: 1px solid #000000;
	border-left: 1px solid #000000;
}

	/* Table row styles */
table.adminlist tbody tr td:last-child {
	border-left: none;
}

/**
 * Saving order icon styling in admin tables
 */
a.saveorder {
	background: url(../images/admin/filesave.png) no-repeat;
}

a.saveorder.inactive {
	background-position: 0 -16px;
}

/**
 * Button styling
 */

/* Button 1 Type */

	/* Use this if you add images to the buttons such as directional arrows */

.button1 a {
	/* add padding if you are using the directional images */
	/* padding: 0 6px 0 30px; */
}

	/* Button 2 Type */

.button2-right .prev {
	background-image: url(../images/j_button2_prev.png);
	background-position: right center;
}

.button2-right.off .prev {
	background: url(../images/j_button2_prev_off.png) no-repeat;
}

.button2-right .start {
	background-image: url(../images/j_button2_first.png);
	background-position: right center;
}

.button2-left .next {
	background-image: url(../images/j_button2_next.png);
	background-position: left center;
}

.button2-left.off .next { /* @TODO check the x position */
	background: url(../images/j_button2_next_off.png) 100% 0 no-repeat;
}

.button2-left .end {
	background-image: url(../images/j_arrow_left.png);
	background-position: left center;
}

.button2-left.off .end { /* @TODO check the x position */
	background: url(../images/j_button2_last_off.png) 100% 0 no-repeat;
}

.button2-left .image {
	background: url(../images/j_button2_image.png) 100% 0 no-repeat;
}

.button2-left .readmore {
	background: url(../images/j_button2_readmore.png) 100% 0 no-repeat;
}

.button2-left .pagebreak {
	background: url(../images/j_button2_pagebreak.png) 100% 0 no-repeat;
}

/**
 * Tooltips
 */


/**
 * System Standard Messages
 */
#system-message dd.message ul {
	background: #C3D2E5 url(../images/notice-info.png) 99.5% center no-repeat;
}

/**
 * System Error Messages
 */
#system-message dd.error ul {
	background: #E6C0C0 url(../images/notice-alert.png) 99.5% top no-repeat;
}

/**
 * System Notice Messages
 */
#system-message dd.notice ul {
	background: #EFE7B8 url(../images/notice-note.png) 99%.5 top no-repeat;
}

/**
 * JGrid styles
 */

/**
 * Menu Icons
 * These icons are used on the Administrator menu
 * The classes are constructed dynamically when the menu is generated
 */


/**
 * Toolbar icons
 * These icons are used for the toolbar buttons
 * The classes are constructed dynamically when the toolbar is created
 */

/**
 * Quick Icons
 * Also knows as Header Icons
 * These are used for the Quick Icons on the Control Panel
 * The same classes are also assigned the Component Title
 */

/**
 * General styles
 */

.helpFrame {
	border-right: 0 solid #222;
	border-left: none;
	border-top: none;
}

/* -- ACL STYLES relocated from com_users/media/grid.css ----------- */

/* -- ACL PANEL STYLES  ----------- */


/* All Tabs */

table.aclsummary-table td.col2,
table.aclsummary-table th.col2,
table.aclsummary-table td.col3,
table.aclsummary-table th.col3,
table.aclsummary-table td.col4,
table.aclsummary-table th.col4,
table.aclsummary-table td.col5,
table.aclsummary-table th.col5,
table.aclsummary-table td.col6,
table.aclsummary-table th.col6,
table.aclmodify-table td.col2,
table.aclmodify-table th.col2 {
	border-right: 1px solid #cbcbcb;
	border-left: none;
}

/* Icons */

ul.acllegend li.acl-allowed {
	background: url(../images/admin/icon-16-allow.png) no-repeat right;
}
ul.acllegend li.acl-denied {
	background: url(../images/admin/icon-16-deny.png) no-repeat right;
}

table#acl-config th.acl-groups {
	border-left: 1px solid #000000;
}

table#acl-config th.acl-groups {
	text-align: right;
}

.acl-action {
	margin: auto 0;
}

/* Icons */

span.icon-16-unset {
	background: url(../images/admin/icon-16-denyinactive.png) no-repeat right;
}

span.icon-16-allowed {
	background: url(../images/admin/icon-16-allow.png) no-repeat right;
}

span.icon-16-denied {
	background: url(../images/admin/icon-16-deny.png) no-repeat right;
}

span.icon-16-locked {
	background: url(../images/admin/checked_out.png) no-repeat right;
}

/**
* Mod_rewrite Warning
*/
#jform_sef_rewrite-lbl {
	background: url(../images/admin/icon-16-notice-note.png) left top
no-repeat;
}

/**
* Permission Rules
*/

#permissions-sliders ul#rules table.group-rules td {
    border-left: solid 1px #000000;
    border-right: solid 0 #000000;
}

#permissions-sliders ul#rules table.group-rules th {
    border-left: solid 1px #000000;
    border-right: solid 0 #000000;
}

/**
 * Menu Styling
 */

#menu ul li.node {
	background-image: url(../images/j_arrow_left.png);
	background-repeat: no-repeat;
	background-position: left 50%;
}

#menu a {
	background-position: right 50%;
}

/* Installer Database */
#installer-database p.warning {
	background-position: center right;
}

#installer-database p.nowarning {
	background-position: center right;
}
css/colour_highcontrast.css000064400000123014151163244070012132
0ustar00@charset "UTF-8";

/**
 * @package		Joomla.Administrator
 * @subpackage	templates.hathor
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 * @since		1.6
 *
 * Changes to use high contrast colors
 */

/**
 * Main Colors
 * #163365	Text background/border
 * #1c4181  Alternative text background 1/border
 * #1b3f7c	Alternative text background 2/border
 * #fcff20	Text
 * #ffffff	Highlighted Text
 * #10254a	Main hover color/border
 * #000000	Highlight/shadow border
 * #a20000	Invalid Alert Color
 * #00f800	Success Alert Color
 * #feffbf  Disabled Menu/Protected
 *
 * MENU:
 *
 * Standard Link
 * #1b3f7c  Link Background
 * #ffffff	Text
 * #10254a	Border
 *
 * Pressed Link
 * #163365	Text background
 * #ffffff	Highlighted Text
 * #000000	Left & Top Border
 * #1b3f7c	Right & Bottom Border
 *
 * Background behind the links
 * #163365	Background
 * #122b56	Border
 *
 * Inactive (Disabled)
 * #cccccc	Text
 *
 * SUBMENU
 * #163365	Active Tab Background
 * #fcff20	Active Tab Text color
 * #10254a	Hover background
 * #10254a	Border
 * #1b3f7c	"off" Tab Background
 * #ffffff	"off" Tab Text color
 *
 * #1c4181	Color behind the tabs
 */

/**
 * General styles
 */
body {
	background-color: #1c4181;
	color: #fcff20;
}

div#sbox-content {
	background-color: #1c4181;
	color: #fcff20;
}

h1 {
	color: #163365;
}

a:link {
	color: #ffffff;
}

a:visited {
	color: #ffffff;
}

a:hover,a:focus {
	text-decoration: underline;
	color: #fcff20;
}

/**
 * Overall Styles
 */
#header {
	background: #ffffff url(../images/j_logo.png) no-repeat;
}

#header h1.title {
	color: #163365;
}

#footer {
	background: #163365;
	border: 1px solid #1b3f7c;
}

#nav {
	background: #163365;
	border: 1px solid #1b3f7c;
}

#content {
	background: #1c4181;
}

#no-submenu {
	border-bottom: 1px solid #1b3f7c;
}

#element-box {
	background: #163365;
	border-right: 1px solid #1b3f7c;
	border-bottom: 1px solid #1b3f7c;
	border-left: 1px solid #1b3f7c;
}

#element-box.login {
	border-top: 1px solid #1b3f7c;
}

/**
 * Status layout
 */
#module-status a, #module-status span {
	color: #163365;
}

#module-status .preview {
	background: url(../images/menu/icon-16-media.png) 3px 3px no-repeat;
}

#module-status .viewsite {
	background: url(../images/menu/icon-16-viewsite.png) 3px 3px no-repeat;
}

#module-status .unread-messages,#module-status .no-unread-messages {
	background: url(../images/menu/icon-16-messages.png) 3px 3px no-repeat;
}

#module-status .loggedin-users {
	background: url(../images/menu/icon-16-user.png) 3px 3px no-repeat;
}

#module-status .backloggedin-users {
	background: url(../images/menu/icon-16-back-user.png) 3px 3px no-repeat;
}

#module-status .multilanguage {
	background: url(../images/menu/icon-16-language.png) 3px 3px no-repeat;
}

#module-status .logout {
	background: url(../images/menu/icon-16-logout.png) 3px 3px no-repeat;
}

/**
 * Various Styles
 */
.enabled,
.success ,
.allow,
span.writable {
	color: #00f800;
}

.disabled,
p.error,
.warning,
.deny,
span.unwritable	{
	color: #a20000;
}

.nowarning {
	color: #fcff20;
}

.none,.protected {
	color: #feffbf;
}

span.note {
	background: #163365;
	color: #fcff20;
}

div.checkin-tick {
	background: url(../images/admin/tick.png) 20px 50% no-repeat;
}

/**
 * Overlib
 */
.ol-foreground {
	background-color: #fcff20;
}

.ol-background {
	background-color: #1b3f7c;
}

.ol-textfont {
	color: #163365;
}

.ol-captionfont {
	color: #ffffff;
}

.ol-captionfont a {
	color: #1b3f7c;
}

/**
 * Subheader, toolbar, page title
 */
.pagetitle h2 {
	color: #fcff20;
}

div.configuration {
	color: #fcff20;
	background-image: url(../images/menu/icon-16-config.png);
	background-repeat: no-repeat;
}

div.toolbar-box {
	border-right: 1px solid #10254a;
	border-bottom: 1px solid #10254a;
	border-left: 1px solid #10254a;
	background: #163365;
}

div.toolbar-list li {
	color: #fcff20;
}

div.toolbar-list li.divider {
	border-right:1px dotted #1b3f7c;
}

div.toolbar-list a {
	border: 1px solid #10254a;
	color: #fcff20;
	background: #1b3f7c;
}

div.toolbar-list a:hover {
	border-left: 1px solid #000000;
	border-top: 1px solid #000000;
	border-right: 1px solid #1b3f7c;
	border-bottom: 1px solid #1b3f7c;
	background: #163365;
	color: #ffffff;
}

/**
 * Pane Slider pane Toggler styles
 */
.pane-sliders .title {
	color: #fcff20;
	border: 1px solid #10254a;
}

.pane-sliders .panel {
	border: 1px solid #1b3f7c;
}

.pane-sliders .panel h3 {
	background: #1c4181;
	color: #fcff20;
}

.pane-sliders .content {
	background: #163365;
}

.pane-sliders .adminlist {
	border: 0 none;
}

.pane-sliders .adminlist td {
	border: 0 none;
}

.pane-toggler  span {
	background: transparent url(../images/j_arrow.png) 5px 50% no-repeat;
}

.pane-toggler-down span {
	background: transparent url(../images/j_arrow_down.png) 5px 50%
		no-repeat;
}

.pane-toggler-down {
	border-bottom: 1px solid #1b3f7c;
}

/**
 * Tabs
 */
dl.tabs dt {
	border: 1px solid #10254a;
	background: #1c4181;
	color: #fcff20;
}

dl.tabs dt.open {
	background: #163365;
	border-bottom: 1px solid #163365;
	color: #fcff20;
}

dl.tabs dt.open a:visited {
	color: #fcff20;
}

div.current {
	border: 1px solid #10254a;
	background: #163365;
}

div.current dd {
	padding: 0;
	margin: 0;
}

div#menu-assignment h3 {
	border-bottom: 1px solid #fcff20;
}

/**
 * Login Settings
 */
#login-page .pagetitle h2 {
	background-color: transparent;
	/* background-color: #1c4181; */
	color: #fcff20;
}

#login-page #header {
	border-bottom: 1px solid #1b3f7c;
}

#login-page #content {
	background: #1c4181;
}

#login-page #lock {
	background: url(../images/j_login_lock.png) 50% 0 no-repeat;
}

#login-page #element-box.login {
	background: #163365;
	border: 1px solid #10254a;
}

#form-login {
	border: 1px solid #10254a;
	background: #1c4181;
}

#form-login label {
	color: #fcff20;
}

#form-login div.button1 a {
	color: #fcff20;
	background-color: #1b3f7c;
	border: 1px solid #10254a;
}

#form-login div.button1 a:hover,#form-login div.button1 a:focus {
	text-decoration: none;
	background-color: #163365;
	border-top: 1px solid #000000;
	border-right: 1px solid #1b3f7c;
	border-bottom: 1px solid #1b3f7c;
	border-left: 1px solid #000000;
	color: #fcff20;
}

/**
 * Cpanel Settings
 */
.cpanel-page div#element-box {
	background: #163365;
	border: 1px solid #10254a;
}

#cpanel div.icon a, .cpanel div.icon a {
	border: 1px solid #10254a;
	background: #1b3f7c;
	color: #fcff20;
}

#cpanel div.icon a:hover,
#cpanel div.icon a:focus,
.cpanel div.icon a:hover,
.cpanel div.icon a:focus {
	border-left: 1px solid #000000;
	border-top: 1px solid #000000;
	border-right: 1px solid #1b3f7c;
	border-bottom: 1px solid #1b3f7c;
	background: #163365;
	color: #ffffff;
}

/**
 * Form Styles
 */
fieldset {
	border: 3px dotted #1b3f7c;
}

legend {
	color: #fcff20;
}

fieldset ul.checklist input:focus {
	outline: thin dotted #333333;
}

fieldset#filter-bar {
	border-bottom: 1px solid #1b3f7c;
}

fieldset#filter-bar ol, fieldset#filter-bar ul {
	border: 0;
}

fieldset#filter-bar ol li fieldset, fieldset#filter-bar ul li fieldset {
	border: 0;
}

input,span.faux-input, select,option {
	color: #fcff20;
	background-color: #163365;
	border: 1px solid #1b3f7c;
}

/* Note: these visual cues should be augmented by aria */
.invalid {
	color: #a20000;
	background-color: #ffffff;
}

/* must be augmented by aria at the same time if changed dynamically by js
	aria-invalid=true or aria-invalid=false */
input.invalid {
	border: 1px solid #a20000;
}

input.required {
	background-color: #fcff20;
	color: #163365;
	border: 1px solid #1b3f7c;
}

input.disabled {
	background-color: #eeeeee;
}

/* Inputs used as buttons */
input[type="button"],
input[type="submit"],
input[type="reset"] {
	background-color: #1b3f7c;
	border: 1px solid #10254a;
	color: #fcff20;
}

input[type="button"]:hover, input[type="button"]:focus,
input[type="submit"]:hover, input[type="submit"]:focus,
input[type="reset"]:hover, input[type="reset"]:focus {
	background-color: #163365;
	border-top: 1px solid #000000;
	border-right: 1px solid #1b3f7c;
	border-bottom: 1px solid #1b3f7c;
	border-left: 1px solid #000000;
	color: #fcff20;
}

textarea {
	color: #fcff20;
	background-color: #163365;
	border: 1px solid #1b3f7c;
}

input:focus, select:focus, textarea:focus, option:focus,
input:hover, select:hover, textarea:hover, option:hover
	{
	background-color: #10254a;
	color: #fcff20;
}

/**
 * Option or Parameter styles
 */
.paramrules {
	background: #1b3f7c;
}

span.gi {
	color: #ffffff;
}


/**
 * Admintable Styles
 */
table.admintable td.key,table.admintable td.paramlist_key {
	background-color: #1c4181;
	color: #fcff20;
	border-bottom: 1px solid #10254a;
	border-right: 1px solid #10254a;
}

table.paramlist td.paramlist_description {
	background-color: #1c4181;
	color: #fcff20;
	border-bottom: 1px solid #10254a;
	border-right: 1px solid #10254a;
}

/**
 * Admin Form Styles
 */
fieldset.adminform {
	border: 1px solid #1b3f7c;
}

	/* Table styles are for use with tabular data */
table.adminform {
	background-color: #163365;
}

table.adminform tr.row0 {
	background-color: #163365;
}

table.adminform tr.row1 {
	background-color: #10254a;
}

table.adminform th {
	color: #fcff20;
	background: #163365;
}

table.adminform tr {
	border-bottom: 1px solid #1b3f7c;
	border-right: 1px solid #1b3f7c;
}

/**
 * Adminlist Table layout
 */
table.adminlist {
	background-color: #163365;
	color: #fcff20;
}

table.adminlist a {
	color: #ffffff;
}

table.adminlist thead th {
	background: #163365;
	color: #fcff20;
}

/* Table row styles */
table.adminlist tbody tr {
	background: #163365;
}

table.adminlist tbody tr.row1 {
	background: #163365;
}

table.adminlist tbody tr.row1 td,
table.adminlist tbody tr.row1 th {
	border-bottom: 1px solid #1b3f7c;
}

table.adminlist tbody tr.row0:hover td,
table.adminlist tbody tr.row1:hover td,
table.adminlist tbody tr.row0:hover th,
table.adminlist tbody tr.row1:hover th,
table.adminlist tbody tr.row0:focus td,
table.adminlist tbody tr.row1:focus td,
table.adminlist tbody tr.row0:focus th,
table.adminlist tbody tr.row1:focus th {
	background-color: #10254a;
}

table.adminlist tbody tr td,
table.adminlist tbody tr th {
	border-right: 1px solid #1b3f7c;
}

table.adminlist tbody tr td:last-child {
	border-right: none;
}

table.adminlist tbody tr.row0:last-child td,
table.adminlist tbody tr.row0:last-child th {
	border-bottom: 1px solid #1b3f7c;
}

table.adminlist tbody tr.row0 td,
table.adminlist tbody tr.row0 th {
	background: #1c4181;
}

table.adminlist tfoot tr {
	color: #fcff20;
}

/* Table td/th styles */
table.adminlist tfoot td,table.adminlist tfoot th {
	background-color: #163365;
	border-top: 1px solid #1b3f7c;
}

/**
 * Adminlist buttons
 */
table.adminlist tr td.btns a {
	background-color: #1b3f7c;
	border: 1px solid #10254a;
	color: #fcff20;
}

table.adminlist tr td.btns a:hover, table.adminlist tr td.btns a:active,
table.adminlist tr td.btns a:focus {
	background-color: #163365;
	border-top: 1px solid #000000;
	border-right: 1px solid #1b3f7c;
	border-bottom: 1px solid #1b3f7c;
	border-left: 1px solid #000000;
	color: #fcff20;
}

/**
 * Saving order icon styling in admin tables
 */
a.saveorder {
	background: url(../images/admin/filesave.png) no-repeat;
}

a.saveorder.inactive {
	background-position: 0 -16px;
}

/**
 * Saving order icon styling in admin tables
 */
fieldset.batch {
	background: #1c4181;
}


/**
 * Button styling
 */
button {
	color: #fcff20;
	background-color: #1b3f7c;
	border: 1px solid #10254a;
}

button:hover, button:focus {
	background-color: #163365;
	border-top: 1px solid #000000;
	border-right: 1px solid #1b3f7c;
	border-bottom: 1px solid #1b3f7c;
	border-left: 1px solid #000000;
	color: #fcff20;
}

/* Button 1 Type */
.button1 {
	border: none;
	background: #1b3f7c;
}

	/* Use this if you add images to the buttons such as directional arrows */
.button1 .next {
	/* background: transparent url(../images/j_button1_next.png) 100% 0
no-repeat;  */
}

.button1 a {
	border: 1px solid #10254a;
	color: #fcff20;
}

.button1 a:hover,.button1 a:focus {
	text-decoration: none;
	background-color: #163365;
	border-top: 1px solid #000000;
	border-right: 1px solid #1b3f7c;
	border-bottom: 1px solid #1b3f7c;
	border-left: 1px solid #000000;
	color: #fcff20;
}

/* Button 2 Type */
.button2-left,.button2-right {
	border: none;
	background: #1b3f7c;
}

.button2-left a,.button2-right a,.button2-left span,.button2-right span
	{
	color: #fcff20;
	border: 1px solid #10254a;
}

/* these are inactive buttons */
.button2-left span,.button2-right span {
	color: #cccccc;
	border: 1px solid #10254a;
}

.page span,.blank span {
	color: #fcff20;
	border: 1px solid #10254a;
}

.button2-left a:hover,.button2-right a:hover,.button2-left
a:focus,.button2-right a:focus
	{
	text-decoration: none;
	background-color: #163365;
	border-top: 1px solid #000000;
	border-right: 1px solid #1b3f7c;
	border-bottom: 1px solid #1b3f7c;
	border-left: 1px solid #000000;
	color: #fcff20;
}

/**
 * Pagination styles
 */

	/* Grey out the current page number */
.pagination .page span {
	color: #cccccc;
}

/**
 * Tooltips
 */
.tip {
	background: #000000;
	border: 1px solid #FFFFFF;
}

.tip-title {
	background: url(../images/selector-arrow-std.png) no-repeat;
}

/**
 * Calendar
 */
a img.calendar {
	background: url(../images/calendar.png) no-repeat;
}

/**
 * JGrid styles
 */
.jgrid span.publish {
	background-image: url(../images/admin/tick.png);
}

.jgrid span.unpublish {
	background-image: url(../images/admin/publish_x.png);
}

.jgrid span.archive {
	background-image: url(../images/menu/icon-16-archive.png);
}

.jgrid span.trash {
	background-image: url(../images/menu/icon-16-trash.png);
}

.jgrid span.default {
	background-image: url(../images/menu/icon-16-default.png);
}

.jgrid span.notdefault {
	background-image: url(../images/menu/icon-16-notdefault.png);
}

.jgrid span.checkedout {
	background-image: url(../images/admin/checked_out.png);
}

.jgrid span.downarrow {
	background-image: url(../images/admin/downarrow.png);
}

.jgrid span.downarrow_disabled {
	background-image: url(../images/admin/downarrow0.png);
}

.jgrid span.uparrow {
	background-image: url(../images/admin/uparrow.png);
}

.jgrid span.uparrow_disabled {
	background-image: url(../images/admin/uparrow0.png);
}

.jgrid span.published {
	background-image: url(../images/admin/publish_g.png);
}

.jgrid span.expired {
	background-image: url(../images/admin/publish_r.png);
}

.jgrid span.pending	{
	background-image: url(../images/admin/publish_y.png);
}

.jgrid span.warning	{
	background-image: url(../images/admin/publish_y.png);
}

/**
 * Menu Icons
 * These icons are used on the Administrator menu
 * The classes are constructed dynamically when the menu is generated
 */
.icon-16-archive {
	background-image: url(../images/menu/icon-16-archive.png);
}

.icon-16-article {
	background-image: url(../images/menu/icon-16-article.png);
}

.icon-16-banners {
	background-image: url(../images/menu/icon-16-banner.png);
}

.icon-16-banners-clients {
	background-image: url(../images/menu/icon-16-banner-client.png);
}

.icon-16-banners-tracks {
	background-image: url(../images/menu/icon-16-banner-tracks.png);
}

.icon-16-banners-cat {
	background-image: url(../images/menu/icon-16-banner-categories.png);
}

.icon-16-category {
	background-image: url(../images/menu/icon-16-category.png);
}

.icon-16-checkin {
	background-image: url(../images/menu/icon-16-checkin.png);
}

.icon-16-clear {
	background-image: url(../images/menu/icon-16-clear.png);
}

.icon-16-component {
	background-image: url(../images/menu/icon-16-component.png);
}

.icon-16-config {
	background-image: url(../images/menu/icon-16-config.png);
}

.icon-16-contact {
	background-image: url(../images/menu/icon-16-contacts.png);
}

.icon-16-contact-cat {
	background-image: url(../images/menu/icon-16-contacts-categories.png);
}

.icon-16-content {
	background-image: url(../images/menu/icon-16-content.png);
}

.icon-16-cpanel {
	background-image: url(../images/menu/icon-16-cpanel.png);
}

.icon-16-default {
	background-image: url(../images/menu/icon-16-default.png);
}

.icon-16-featured {
	background-image: url(../images/menu/icon-16-featured.png);
}

.icon-16-groups {
	background-image: url(../images/menu/icon-16-groups.png);
}

.icon-16-help {
	background-image: url(../images/menu/icon-16-help.png);
}

.icon-16-help-this {
	background-image: url(../images/menu/icon-16-help-this.png);
}

.icon-16-help-forum {
	background-image: url(../images/menu/icon-16-help-forum.png);
}

.icon-16-help-docs {
	background-image: url(../images/menu/icon-16-help-docs.png);
}

.icon-16-help-jed {
	background-image: url(../images/menu/icon-16-help-jed.png);
}

.icon-16-help-jrd {
	background-image: url(../images/menu/icon-16-help-jrd.png);
}

.icon-16-help-community {
	background-image: url(../images/menu/icon-16-help-community.png);
}

.icon-16-help-security {
	background-image: url(../images/menu/icon-16-help-security.png);
}

.icon-16-help-dev {
	background-image: url(../images/menu/icon-16-help-dev.png);
}

.icon-16-help-shop {
	background-image: url(../images/menu/icon-16-help-shop.png);
}

.icon-16-info {
	background-image: url(../images/menu/icon-16-info.png);
}

.icon-16-install {
	background-image: url(../images/menu/icon-16-install.png);
}

.icon-16-joomlaupdate {
	background-image: url(../images/menu/icon-16-install.png);
}

.icon-16-language {
	background-image: url(../images/menu/icon-16-language.png);
}

.icon-16-levels {
	background-image: url(../images/menu/icon-16-levels.png);
}

.icon-16-logout {
	background-image: url(../images/menu/icon-16-logout.png);
}

.icon-16-maintenance {
	background-image: url(../images/menu/icon-16-maintenance.png);
}

.icon-16-massmail {
	background-image: url(../images/menu/icon-16-massmail.png);
}

.icon-16-media {
	background-image: url(../images/menu/icon-16-media.png);
}

.icon-16-menu {
	background-image: url(../images/menu/icon-16-menu.png);
}

.icon-16-menumgr {
	background-image: url(../images/menu/icon-16-menumgr.png);
}

.icon-16-messages {
	background-image: url(../images/menu/icon-16-messaging.png);
}

.icon-16-messages-add {
	background-image: url(../images/menu/icon-16-new-privatemessage.png);
}

.icon-16-messages-read {
	background-image: url(../images/menu/icon-16-messages.png);
}

.icon-16-module {
	background-image: url(../images/menu/icon-16-module.png);
}

/* .icon-16-new 		{ background-image: url(../images/menu/icon-16-new.png);
} */
.icon-16-newarticle {
	background-image: url(../images/menu/icon-16-newarticle.png);
}

.icon-16-newcategory {
	background-image: url(../images/menu/icon-16-newcategory.png);
}

.icon-16-newgroup {
	background-image: url(../images/menu/icon-16-newgroup.png);
}

.icon-16-newlevel {
	background-image: url(../images/menu/icon-16-newlevel.png);
}

.icon-16-newuser {
	background-image: url(../images/menu/icon-16-newuser.png);
}

.icon-16-plugin {
	background-image: url(../images/menu/icon-16-plugin.png);
}

.icon-16-profile {
	background-image: url(../images/menu/icon-16-user.png);
}

.icon-16-purge {
	background-image: url(../images/menu/icon-16-purge.png);
}

.icon-16-readmess {
	background-image: url(../images/menu/icon-16-readmess.png);
}

.icon-16-section {
	background-image: url(../images/menu/icon-16-section.png);
}

.icon-16-static {
	background-image: url(../images/menu/icon-16-static.png);
}

.icon-16-stats {
	background-image: url(../images/menu/icon-16-stats.png);
}

.icon-16-themes {
	background-image: url(../images/menu/icon-16-themes.png);
}

.icon-16-trash {
	background-image: url(../images/menu/icon-16-trash.png);
}

.icon-16-user {
	background-image: url(../images/menu/icon-16-user.png);
}

.icon-16-user-note {
	background-image: url(../images/menu/icon-16-user-note.png);
}

.icon-16-delete {
	background-image: url(../images/menu/icon-16-delete.png);
}

.icon-16-help-trans {
	background-image: url(../images/menu/icon-16-help-trans.png);
}

.icon-16-newsfeeds {
	background-image: url(../images/menu/icon-16-newsfeeds.png);
}

.icon-16-newsfeeds-cat {
	background-image: url(../images/menu/icon-16-newsfeeds-cat.png);
}

.icon-16-redirect {
	background-image: url(../images/menu/icon-16-redirect.png);
}

.icon-16-search {
	background-image: url(../images/menu/icon-16-search.png);
}

.icon-16-finder {
	background-image: url(../images/menu/icon-16-search.png);
}

.icon-16-weblinks {
	background-image: url(../images/menu/icon-16-links.png);
}

.icon-16-weblinks-cat {
	background-image: url(../images/menu/icon-16-links-cat.png);
}

/**
 * Toolbar icons
 * These icons are used for the toolbar buttons
 * The classes are constructed dynamically when the toolbar is created
 */
.icon-32-send {
	background-image: url(../images/toolbar/icon-32-send.png);
}

.icon-32-delete {
	background-image: url(../images/toolbar/icon-32-delete.png);
}

.icon-32-help {
	background-image: url(../images/toolbar/icon-32-help.png);
}

.icon-32-cancel {
	background-image: url(../images/toolbar/icon-32-cancel.png);
}

.icon-32-checkin {
	background-image: url(../images/toolbar/icon-32-checkin.png);
}

.icon-32-options{
	background-image: url(../images/toolbar/icon-32-config.png);
}

.icon-32-apply {
	background-image: url(../images/toolbar/icon-32-apply.png);
}

.icon-32-back {
	background-image: url(../images/toolbar/icon-32-back.png);
}

.icon-32-forward {
	background-image: url(../images/toolbar/icon-32-forward.png);
}

.icon-32-save {
	background-image: url(../images/toolbar/icon-32-save.png);
}

.icon-32-edit {
	background-image: url(../images/toolbar/icon-32-edit.png);
}

.icon-32-copy {
	background-image: url(../images/toolbar/icon-32-copy.png);
}

.icon-32-move {
	background-image: url(../images/toolbar/icon-32-move.png);
}

.icon-32-new {
	background-image: url(../images/toolbar/icon-32-new.png);
}

.icon-32-upload {
	background-image: url(../images/toolbar/icon-32-upload.png);
}

.icon-32-assign {
	background-image: url(../images/toolbar/icon-32-publish.png);
}

.icon-32-html {
	background-image: url(../images/toolbar/icon-32-html.png);
}

.icon-32-css {
	background-image: url(../images/toolbar/icon-32-css.png);
}

.icon-32-menus {
	background-image: url(../images/toolbar/icon-32-menu.png);
}

.icon-32-publish {
	background-image: url(../images/toolbar/icon-32-publish.png);
}

.icon-32-unblock {
	background-image: url(../images/toolbar/icon-32-unblock.png);
}

.icon-32-unpublish {
	background-image: url(../images/toolbar/icon-32-unpublish.png);
}

.icon-32-restore {
	background-image: url(../images/toolbar/icon-32-revert.png);
}

.icon-32-trash {
	background-image: url(../images/toolbar/icon-32-trash.png);
}

.icon-32-archive {
	background-image: url(../images/toolbar/icon-32-archive.png);
}

.icon-32-unarchive {
	background-image: url(../images/toolbar/icon-32-unarchive.png);
}

.icon-32-preview {
	background-image: url(../images/toolbar/icon-32-preview.png);
}

.icon-32-default {
	background-image: url(../images/toolbar/icon-32-default.png);
}

.icon-32-refresh {
	background-image: url(../images/toolbar/icon-32-refresh.png);
}

.icon-32-save-new {
	background-image: url(../images/toolbar/icon-32-save-new.png);
}

.icon-32-save-copy {
	background-image: url(../images/toolbar/icon-32-save-copy.png);
}

.icon-32-error {
	background-image: url(../images/toolbar/icon-32-error.png);
}

.icon-32-new-style {
	background-image: url(../images/toolbar/icon-32-new-style.png);
}

.icon-32-delete-style {
	background-image: url(../images/toolbar/icon-32-delete-style.png);
}

.icon-32-purge {
	background-image: url(../images/toolbar/icon-32-purge.png);
}

.icon-32-remove {
	background-image: url(../images/toolbar/icon-32-remove.png);
}

.icon-32-featured {
	background-image: url(../images/toolbar/icon-32-featured.png);
}

.icon-32-unfeatured {
	background-image: url(../images/toolbar/icon-32-featured.png);
	background-position: 0% 100%;
}

.icon-32-export {
	background-image: url(../images/toolbar/icon-32-export.png);
}

.icon-32-stats {
	background-image: url(../images/toolbar/icon-32-stats.png);
}

.icon-32-print {
	background-image: url(../images/toolbar/icon-32-print.png);
}

.icon-32-batch {
	background-image: url(../images/toolbar/icon-32-batch.png);
}

.icon-32-envelope {
	background-image: url(../images/toolbar/icon-32-messaging.png);
}
.icon-32-download {
	background-image: url(../images/toolbar/icon-32-export.png);
}

.icon-32-bars {
	background-image: url(../images/toolbar/icon-32-stats.png);
}

/**
 * Quick Icons
 * Also knows as Header Icons
 * These are used for the Quick Icons on the Control Panel
 * The same classes are also assigned the Component Title
 */
.icon-48-categories {
	background-image: url(../images/header/icon-48-category.png);
}

.icon-48-category-edit {
	background-image: url(../images/header/icon-48-category.png);
}

.icon-48-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}

.icon-48-generic {
	background-image: url(../images/header/icon-48-generic.png);
}

.icon-48-banners {
	background-image: url(../images/header/icon-48-banner.png);
}

.icon-48-banners-categories {
	background-image: url(../images/header/icon-48-banner-categories.png);
}

.icon-48-banners-category-edit {
	background-image: url(../images/header/icon-48-banner-categories.png);
}

.icon-48-banners-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}

.icon-48-banners-clients {
	background-image: url(../images/header/icon-48-banner-client.png);
}

.icon-48-banners-tracks {
	background-image: url(../images/header/icon-48-banner-tracks.png);
}

.icon-48-checkin {
	background-image: url(../images/header/icon-48-checkin.png);
}

.icon-48-clear {
	background-image: url(../images/header/icon-48-clear.png);
}

.icon-48-contact {
	background-image: url(../images/header/icon-48-contacts.png);
}

.icon-48-contact-categories {
	background-image: url(../images/header/icon-48-contacts-categories.png);
}

.icon-48-contact-category-edit {
	background-image: url(../images/header/icon-48-contacts-categories.png);
}

.icon-48-contact-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}

.icon-48-purge {
	background-image: url(../images/header/icon-48-purge.png);
}

.icon-48-cpanel {
	background-image: url(../images/header/icon-48-cpanel.png);
}

.icon-48-config {
	background-image: url(../images/header/icon-48-config.png);
}

.icon-48-groups {
	background-image: url(../images/header/icon-48-groups.png);
}

.icon-48-groups-add {
	background-image: url(../images/header/icon-48-groups-add.png);
}

.icon-48-levels {
	background-image: url(../images/header/icon-48-levels.png);
}

.icon-48-levels-add {
	background-image: url(../images/header/icon-48-levels-add.png);
}

.icon-48-module {
	background-image: url(../images/header/icon-48-module.png);
}

.icon-48-menu {
	background-image: url(../images/header/icon-48-menu.png);
}

.icon-48-menu-add {
	background-image: url(../images/header/icon-48-menu-add.png);
}

.icon-48-menumgr {
	background-image: url(../images/header/icon-48-menumgr.png);
}

.icon-48-trash {
	background-image: url(../images/header/icon-48-trash.png);
}

.icon-48-user {
	background-image: url(../images/header/icon-48-user.png);
}

.icon-48-user-add {
	background-image: url(../images/header/icon-48-user-add.png);
}

.icon-48-user-edit {
	background-image: url(../images/header/icon-48-user-edit.png);
}

.icon-48-user-profile {
	background-image: url(../images/header/icon-48-user-profile.png);
}

.icon-48-inbox {
	background-image: url(../images/header/icon-48-inbox.png);
}

.icon-48-new-privatemessage {
	background-image: url(../images/header/icon-48-new-privatemessage.png);
}

.icon-48-msgconfig {
	background-image: url(../images/header/icon-48-message_config.png);
}

.icon-48-langmanager {
	background-image: url(../images/header/icon-48-language.png);
}

.icon-48-mediamanager {
	background-image: url(../images/header/icon-48-media.png);
}

.icon-48-plugin {
	background-image: url(../images/header/icon-48-plugin.png);
}

.icon-48-help_header {
	background-image: url(../images/header/icon-48-help_header.png);
}

.icon-48-impressions {
	background-image: url(../images/header/icon-48-stats.png);
}

.icon-48-browser {
	background-image: url(../images/header/icon-48-stats.png);
}

.icon-48-searchtext {
	background-image: url(../images/header/icon-48-stats.png);
}

.icon-48-thememanager {
	background-image: url(../images/header/icon-48-themes.png);
}

.icon-48-assoc {
	background-image: url(../images/header/icon-48-assoc.png);
}

.icon-48-writemess {
	background-image: url(../images/header/icon-48-writemess.png);
}

.icon-48-featured {
	background-image: url(../images/header/icon-48-featured.png);
}

.icon-48-sections {
	background-image: url(../images/header/icon-48-section.png);
}

.icon-48-article-add {
	background-image: url(../images/header/icon-48-article-add.png);
}

.icon-48-article-edit {
	background-image: url(../images/header/icon-48-article-edit.png);
}

.icon-48-article {
	background-image: url(../images/header/icon-48-article.png);
}

.icon-48-content-categories {
	background-image: url(../images/header/icon-48-category.png);
}

.icon-48-content-category-edit {
	background-image: url(../images/header/icon-48-category.png);
}

.icon-48-content-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}

.icon-48-install {
	background-image: url(../images/header/icon-48-extension.png);
}

.icon-48-dbbackup {
	background-image: url(../images/header/icon-48-backup.png);
}

.icon-48-dbrestore {
	background-image: url(../images/header/icon-48-dbrestore.png);
}

.icon-48-dbquery {
	background-image: url(../images/header/icon-48-query.png);
}

.icon-48-systeminfo {
	background-image: url(../images/header/icon-48-info.png);
}

.icon-48-massmail {
	background-image: url(../images/header/icon-48-massmail.png);
}

.icon-48-redirect {
	background-image: url(../images/header/icon-48-redirect.png);
}

.icon-48-search	{
	background-image: url(../images/header/icon-48-search.png);
}

.icon-48-finder	{
	background-image: url(../images/header/icon-48-search.png);
}

.icon-48-newsfeeds {
	background-image: url(../images/header/icon-48-newsfeeds.png);
}

.icon-48-newsfeeds-categories {
	background-image: url(../images/header/icon-48-newsfeeds-cat.png);
}

.icon-48-newsfeeds-category-edit {
	background-image: url(../images/header/icon-48-newsfeeds-cat.png);
}

.icon-48-newsfeeds-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}

.icon-48-weblinks {
	background-image: url(../images/header/icon-48-links.png);
}

.icon-48-weblinks-categories {
	background-image: url(../images/header/icon-48-links-cat.png);
}

.icon-48-weblinks-category-edit {
	background-image: url(../images/header/icon-48-links-cat.png);
}

.icon-48-weblinks-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}

.icon-48-tags {
	background-image: url(../images/header/icon-48-tags.png);
}

/**
 * General styles
 */
div.message {
	border: 1px solid #1b3f7c;
	color: #333;
}

.helpFrame {
	border-left: 0 solid #1b3f7c;
	border-right: none;
	border-top: none;
	border-bottom: none;
}

/**
 * Override mootree.css styles
 * media/system/css/mootree.css
 */
.mooTree_selected	 {
	background-color: #10254a;
}

/**
 * Modal Styles
 */
dl.menu_type dt {
	border-bottom: 1px solid #1b3f7c;
}

ul#new-modules-list {
	border-top: 1px solid #1b3f7c;
}

/**
 * Override mediamanager.css styles
 * administrator/components/com_media/assets/mediamanager.css
 */
#folderview input#folderpath {
	width: 65%;
	color: #fcff20;
	background-color: #163365;
	border: 1px solid #1b3f7c;
}

.upload-queue .queue-loader {
	background-color: #fcff20;
	color: #163365;
	border: 1px inset #fcff20;
}

.upload-queue .queue-subloader {
	background-color: #1b3f7c;
	color: #fcff20;
}

/**
 * User Accessibility
 */

	/* Skip to Content Visual Styling */
#skiplinkholder a, #skiplinkholder a:link, #skiplinkholder a:visited {
	color: #163365;
	background: #fcff20;
}

/**
 * Admin Form Styles
 */
fieldset.panelform {
	border: none 0;
}

/**
 * ACL STYLES relocated from com_users/media/grid.css
 */
a.move_up {
	background-image: url('../images/admin/uparrow.png');
}

span.move_up {
	background-image: url('../images/admin/uparrow0.png');
}

a.move_down {
	background-image: url('../images/admin/downarrow.png');
}

span.move_down {
	background-image: url('../images/admin/downarrow0.png');
}

a.grid_false {
	background-image: url('../images/admin/publish_x.png');
}

a.grid_true {
	background-image: url('../images/admin/tick.png');
}

a.grid_trash {
	background-image: url('../images/admin/icon-16-trash.png');
}

/**
 * ACL PANEL STYLES
 */

/* All Tabs */

tr.row1 {
	background-color: #1c4181;
}

/* Summary Tab */
table.aclsummary-table td.col2,
table.aclsummary-table th.col2,
table.aclsummary-table td.col3,
table.aclsummary-table th.col3,
table.aclsummary-table td.col4,
table.aclsummary-table th.col4,
table.aclsummary-table td.col5,
table.aclsummary-table th.col5,
table.aclsummary-table td.col6,
table.aclsummary-table th.col6,
table.aclmodify-table td.col2,
table.aclmodify-table th.col2 {
	border-left: 1px solid #cbcbcb;
}

/* Icons */

span.icon-16-unset {
	background: url(../images/admin/icon-16-denyinactive.png) no-repeat;
}

span.icon-16-allowed {
	background: url(../images/admin/icon-16-allow.png) no-repeat;
}

span.icon-16-denied {
	background: url(../images/admin/icon-16-deny.png) no-repeat;
}

span.icon-16-locked {
	background: url(../images/admin/checked_out.png) 0 0 no-repeat;
}

label.icon-16-allow {
	background: url(../images/admin/icon-16-allow.png) no-repeat;
}

label.icon-16-deny {
	background: url(../images/admin/icon-16-deny.png) no-repeat;
}
a.icon-16-allow {
	background: url(../images/admin/icon-16-allow.png) no-repeat ;
}
a.icon-16-deny {
	background: url(../images/admin/icon-16-deny.png) no-repeat ;
}
a.icon-16-allowinactive {
	background: url(../images/admin/icon-16-allowinactive.png) no-repeat ;
}
a.icon-16-denyinactive {
	background: url(../images/admin/icon-16-denyinactive.png) no-repeat ;
}

/* ACL footer/legend */

ul.acllegend li.acl-allowed {
	background: url(../images/admin/icon-16-allow.png) no-repeat left;
}

ul.acllegend li.acl-denied {
	background: url(../images/admin/icon-16-deny.png) no-repeat left;
}

li.acl-editgroups,
li.acl-resetbtn {
	background-color: #1b3f7c;
	border: 1px solid #10254a;
}

li.acl-editgroups a,
li.acl-resetbtn a {
	color: #fcff20
}

li.acl-editgroups:hover,
li.acl-resetbtn:hover,
li.acl-editgroups:focus,
li.acl-resetbtn:focus {
	background-color: #163365;
	border-top: 1px solid #000000;
	border-right: 1px solid #1b3f7c;
	border-bottom: 1px solid #1b3f7c;
	border-left: 1px solid #000000;
	color: #fcff20;
}

/* ACL Config --------- */
table#acl-config {
	border: 1px solid #10254a;
	background: #1c4181;
}

table#acl-config th,
table#acl-config td {
	background: #1c4181;
	border-bottom: 1px solid #10254a;
	border-top: none;
	border-left: none;
	border-right: none;
}

table#acl-config th.acl-groups {
	border-right: 1px solid #10254a;
}

/**
* Mod_rewrite Warning
*/
#jform_sef_rewrite-lbl {
	background: url(../images/admin/icon-16-notice-note.png) right top
no-repeat;
}

/**
* Options modal- config
*/

/* *
* Permission Rules
*/

#permissions-sliders ul#rules,
#permissions-sliders ul#rules ul {
    border:solid 0 #1b3f7c;
    background:#163365;
}

ul#rules li .pane-sliders .panel h3.title {
	border:solid 0 #1b3f7c;
}

#permissions-sliders ul#rules .pane-slider {
	border:solid 1px #1b3f7c;
}

#permissions-sliders ul#rules li h3 {
	background:#1c4181;
	border: 1px solid #1b3f7c;
}

#permissions-sliders ul#rules li h3.pane-toggler-down a {
	border:solid 0;
}

#permissions-sliders ul#rules .group-kind {
	color:#fcff20;
}

#permissions-sliders ul#rules table.group-rules td {
    border-right:solid 1px #1b3f7c;
    border-bottom:solid 1px #1b3f7c;
}

#permissions-sliders ul#rules table.group-rules th {
    background: #10254a;
    border-right:solid 1px #1b3f7c;
    border-bottom:solid 1px #1b3f7c;
    color:#fcff20;
}

ul#rules table.aclmodify-table {
	border:solid 1px #fcff20;
}

ul#rules table.group-rules td label {
	border:solid 0 #1b3f7c;
}

#permissions-sliders ul#rules .mypanel {
	border:solid 0 #1b3f7c;
}

#permissions-sliders  ul#rules  table.group-rules td {
   background: #163365;
}

#permissions-sliders span.level {
	color:#ffffff;
	background-image:none;
}

/*
 * Debug styles
 */
.check-0,
table.adminlist tbody td.check-0,
table.adminlist tbody tr:hover td.check-0 {
	background-color: #FFFFCF;
	color: #163365;
}

.check-a,
table.adminlist tbody td.check-a,
table.adminlist tbody tr:hover td.check-a {
	background-color: #CFFFDA;
	color: #163365;
}

.check-d,
table.adminlist tbody td.check-d,
table.adminlist tbody tr:hover td.check-d {
	background-color: #FFCFCF;
	color: #163365;
}

/**
 * System Messages
 */

#system-message dd ul {
	color: #fcff20;
	border-top: 3px solid #84A7DB;
	border-bottom: 3px solid #84A7DB;
}

#system-message dd.error ul {
	color: #fcff20;
	background: #1c4181 url(../images/notice-alert.png) 4px top no-repeat;
	border-top: 3px solid #a20000;
	border-bottom: 3px solid #a20000;
}

#system-message dd.message ul {
	color: #fcff20;
	background: #10254a url(../images/notice-info.png) 4px center no-repeat;
	border-top: 3px solid #EFE7B8;
	border-bottom: 3px solid #EFE7B8;
}

#system-message dd.notice ul {
	color: #fcff20;
	background: #10254a url(../images/notice-note.png) 4px top no-repeat;
	border-top: 3px solid #F0DC7E;
	border-bottom: 3px solid #F0DC7E;
}

/** CSS file for Accessible Admin Menu
 * based on Matt Carrolls' son of suckerfish
 * with javascript by Bill Tomczak
 */

	/* Note: set up the font-size on the id and used 100% on the elements.
	If ul/li/a are different ems, then the shifting back via non-js keyboard
	doesn't work properly */

/**
 * Menu Styling
 */
#menu { /* this is on the main ul */
	color: #ffffff;
}

#menu ul { /* all lists */
	background-color: #163365;
	color: #ffffff;
}

#menu ul li.node {
	background: #163365 url(../images/j_arrow.png) no-repeat right 50%;
}

#menu a {
	color: #ffffff;
	background-repeat: no-repeat;
	background-position: left 50%;
	background-color: #1b3f7c;
}

#menu li { /* all list items */
	background-color: #163365;
	border-right: 1px solid #000000;
}

#menu li a {
	border: 1px solid #10254a;
}

#menu li li a {
	border: 1px solid #10254a;
}

#menu li a:hover,
#menu li a:active,
#menu li a:focus {
	background-color: #163365;
	border-top: 1px solid #000000;
	border-right: 1px solid #1b3f7c;
	border-bottom: 1px solid #1b3f7c;
	border-left: 1px solid #000000;
	color: #ffffff;
}

#menu li.disabled a:hover,
#menu li.disabled a:focus,
#menu li.disabled a {
	color: #feffbf;
	background-color: #1b3f7c;
	border-top: 1px solid #163365;
	border-right: 1px solid #10254a;
	border-bottom: 1px solid #163365;
	border-left: 1px solid #10254a;
}

#menu li ul { /* second-level lists */
	border-top: 1px solid #10254a;
	border-bottom: 2px solid #10254a;
}

#menu li li { /* second-level row */
	background-color: #163365;
}

#menu li:hover ul,#menu li.sfhover ul {
	/* lists nested under hovered list items */
	margin-left: 0;
	border-left: 1px solid #122b56;
	border-right: 1px solid #122b56;
}

#menu li li:hover ul,#menu li li.sfhover ul {
	border-left: 1px solid #122b56;
	border-right: 1px solid #122b56;
}

/**
 * Styling parents
 */

 	/* 1 level - sfhover */
#menu li.sfhover a {
	background-color: #163365;
	border-top: 1px solid #000000;
	border-right: 1px solid #1b3f7c;
	border-bottom: 1px solid #1b3f7c;
	border-left: 1px solid #000000;
	color: #fcff20;
}

	/* 2 level - normal */
#menu li.sfhover li a { /* background-color: #f0f0f0; */
	background-color: #1b3f7c;
	border: 1px solid #10254a;
	color: #ffffff;
}

	/* 2 level - hover */
#menu li.sfhover li.sfhover a,#menu li li a:focus {
	background-color: #163365;
	border-top: 1px solid #000000;
	border-right: 1px solid #1b3f7c;
	border-bottom: 1px solid #1b3f7c;
	border-left: 1px solid #000000;
	color: #fcff20;
}

	/* 3 level - normal */
#menu li.sfhover li.sfhover li a {
	background-color: #1b3f7c;
	border: 1px solid #10254a;
	color: #ffffff;
}

	/* 3 level - hover */
#menu li.sfhover li.sfhover li.sfhover a {
	background-color: #163365;
	border-top: 1px solid #000000;
	border-right: 1px solid #1b3f7c;
	border-bottom: 1px solid #1b3f7c;
	border-left: 1px solid #000000;
	color: #fcff20;
}

/* bring back the focus elements into view */
#menu li li a:focus, #menu li li li a:focus {
	background-color: #163365;
	border-top: 1px solid #000000;
	border-right: 1px solid #1b3f7c;
	border-bottom: 1px solid #1b3f7c;
	border-left: 1px solid #000000;
	color: #ffffff;
}

#menu li li li a:focus {
	background-color: #163365;
	border-top: 1px solid #000000;
	border-right: 1px solid #1b3f7c;
	border-bottom: 1px solid #1b3f7c;
	border-left: 1px solid #000000;
	color: #ffffff;
}

/**
 * Submenu styling
 */
#submenu {
	border-bottom: 1px solid #10254a;
	/* border-bottom plus padding-bottom is the technique */
	/* This is the background befind the tabs */
	background: #1c4181;
}

#submenu a, #submenu span.nolink {
	background: #1b3f7c;
	border: 1px solid #10254a;
	color: #ffffff;
}

#submenu a:hover, #submenu a:focus {
	background-color: #10254a;
}

#submenu a.active, #submenu span.nolink.active {
	background: #163365;
	border-bottom: 1px solid #163365;
	color: #fcff20;
}

/**
 * Webkit fixes
 **/
input:-webkit-autofill {
	background-color: #163365 !important;
}

/* -- Codemirror Editor  ----------- */
div.editor-border, div.CodeMirror-wrapping {
	border: 1px solid #163365;
	background-color: #ffffff;
}

/* User Notes */
div.unotes h1 {
	background-color: #ffffff;
}
ul.alternating > li:nth-child(odd) { background-color: #163365; }
ul.alternating > li:nth-child(even) { background-color: #10254a; }
ol.alternating > li:nth-child(odd) { background-color: #163365; }
ol.alternating > li:nth-child(even) { background-color: #10254a;}

/* Installer Database */
#installer-database, #installer-discover, #installer-update,
#installer-warnings {
	border-top: 1px solid #1b3f7c;
}
#installer-database p.warning {
	background: transparent url(../images/admin/icon-16-deny.png) center left
no-repeat;
}

#installer-database p.nowarning {
	background: transparent url(../images/admin/icon-16-allow.png) center left
no-repeat;
}
css/colour_highcontrast_rtl.css000064400000017617151163244070013026
0ustar00@charset "UTF-8";

/**
 * @package		Joomla.Administrator
 * @subpackage	templates.hathor
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 * @since		1.6
 *
 * RTL CSS file for the color standard
 */

/**
 * Overall Styles
 */
#header {
	background: #ffffff url(../images/j_logo.png) no-repeat top right;
}

#element-box {
	border-left: 1px solid #1b3f7c;
	border-right: 1px solid #1b3f7c;
}

/**
 * Various Styles
 */

div.checkin-tick {
	background: url(../images/admin/tick.png) 20px 50% no-repeat;
}

/**
 * Subheader, toolbar, page title
 */

div.toolbar-box {
	border-left: 1px solid #10254a;
	border-right: 1px solid #10254a;
}

div.toolbar-list li.divider {
	border-left:1px dotted #1b3f7c;
	border-right:none;
}

div.toolbar-list a:hover {
	border-right: 1px solid #000000;
	border-left: 1px solid #1b3f7c;
}

/**
 * Pane Slider pane Toggler styles
 */
.pane-toggler  span {
	background: transparent url(../images/j_arrow_left.png) right 50%
no-repeat;
}

.pane-toggler-down span {
	background: transparent url(../images/j_arrow_down.png) right 50%
no-repeat;
}

/**
 * Cpanel Settings
 */

#cpanel div.icon a:hover,
#cpanel div.icon a:focus {
	border-right: 1px solid #000000;
	border-left: 1px solid #1b3f7c;
}


fieldset#filter-bar {
	border-left: none;
	border-right: none;
}

/**
 * Admintable Styles
 */

table.admintable td.key,table.admintable td.paramlist_key {
	border-left: 1px solid #10254a;
	border-right: none;
}

table.paramlist td.paramlist_description {
	border-left: 1px solid #10254a;
	border-right: none;
}

/**
 * Admin Form Styles
 */
table.adminform tr {
	border-left: 1px solid #1b3f7c;
	border-right: none;
}

/**
 * Adminlist Table layout
 */

table.adminlist.modal {
	border-right: 1px solid #1b3f7c;
	border-left: 1px solid #1b3f7c;
}


	/* Table row styles */

table.adminlist tbody tr td,
table.adminlist tbody tr th {
	border-left: 1px solid #1b3f7c;
	border-right: none;
}

table.adminlist tbody tr td:last-child {
	border-left: none;
}

/**
 * Saving order icon styling in admin tables
 */
a.saveorder {
	background: url(../images/admin/filesave.png) no-repeat;
}

a.saveorder.inactive {
	background-position: 0 -16px;
}

/**
 * Button styling
 */

/* Button 1 Type */

	/* Use this if you add images to the buttons such as directional arrows */

.button1 a {
	/* add padding if you are using the directional images */
	/* padding: 0 6px 0 30px; */
}

	/* Button 2 Type */

.button2-right .prev {
	background-image: url(../images/j_button2_prev.png);
	background-position: right center;
}

.button2-right.off .prev {
	background: url(../images/j_button2_prev_off.png) no-repeat;
}

.button2-right .start {
	background-image: url(../images/j_button2_first.png);
	background-position: right center;
}

.button2-left .next {
	background-image: url(../images/j_button2_next.png);
	background-position: left center;
}

.button2-left.off .next { /* @TODO check the x position */
	background: url(../images/j_button2_next_off.png) 100% 0 no-repeat;
}

.button2-left .end {
	background-image: url(../images/j_arrow_left.png);
	background-position: left center;
}

.button2-left.off .end { /* @TODO check the x position */
	background: url(../images/j_button2_last_off.png) 100% 0 no-repeat;
}

.button2-left .image {
	background: url(../images/j_button2_image.png) 100% 0 no-repeat;
}

.button2-left .readmore {
	background: url(../images/j_button2_readmore.png) 100% 0 no-repeat;
}

.button2-left .pagebreak {
	background: url(../images/j_button2_pagebreak.png) 100% 0 no-repeat;
}

/**
 * Tooltips
 */


/**
 * System Standard Messages
 */
#system-message dd.message ul {
	background: #10254a url(../images/notice-info.png) 99.5% center no-repeat;
}

/**
 * System Error Messages
 */
#system-message dd.error ul {
	background: #1c4181 url(../images/notice-alert.png) 99.5% top no-repeat;
}

/**
 * System Notice Messages
 */
#system-message dd.notice ul {
	background: #10254a url(../images/notice-note.png) 99%.5 top no-repeat;
}

/**
 * JGrid styles
 */

/**
 * Menu Icons
 * These icons are used on the Administrator menu
 * The classes are constructed dynamically when the menu is generated
 */


/**
 * Toolbar icons
 * These icons are used for the toolbar buttons
 * The classes are constructed dynamically when the toolbar is created
 */

/**
 * Quick Icons
 * Also knows as Header Icons
 * These are used for the Quick Icons on the Control Panel
 * The same classes are also assigned the Component Title
 */

/**
 * General styles
 */

.helpFrame {
	border-right: 0 solid #1b3f7c;
	border-left: none;
	border-top: none;
}

/* -- ACL STYLES relocated from com_users/media/grid.css ----------- */

/* -- ACL PANEL STYLES  ----------- */


/* All Tabs */

table.aclsummary-table td.col2,
table.aclsummary-table th.col2,
table.aclsummary-table td.col3,
table.aclsummary-table th.col3,
table.aclsummary-table td.col4,
table.aclsummary-table th.col4,
table.aclsummary-table td.col5,
table.aclsummary-table th.col5,
table.aclmodify-table td.col2,
table.aclmodify-table th.col2 {
	border-right: 1px solid #cbcbcb;
	border-left: none;
}

/* Icons */

ul.acllegend li.acl-allowed {
	background:url(../images/admin/icon-16-allow.png) no-repeat right;
}
ul.acllegend li.acl-denied {
	background:url(../images/admin/icon-16-deny.png) no-repeat right;
}

table#acl-config th.acl-groups {
	border-left: 1px solid #c7c8b2;
}

table#acl-config th.acl-groups {
	text-align: right;
}

.acl-action {
	margin: auto 0;
}

/* Icons */

span.icon-16-unset {
	background: url(../images/admin/icon-16-denyinactive.png) no-repeat right;
}

span.icon-16-allowed {
	background: url(../images/admin/icon-16-allow.png) no-repeat right;
}

span.icon-16-denied {
	background: url(../images/admin/icon-16-deny.png) no-repeat right;
}

span.icon-16-locked {
	background: url(../images/admin/checked_out.png) no-repeat right;
}

/**
* Mod_rewrite Warning
*/
#jform_sef_rewrite-lbl {
	background: url(../images/admin/icon-16-notice-note.png) left top
no-repeat;
}

/**
* Modal S-Box overrides
*/

#sbox-window {
	text-align:right;
}

/* *
* Permission Rules
*/

#permissions-sliders ul#rules table.group-rules td {
    border-left:solid 1px #1b3f7c;
    border-right:solid 0 #1b3f7c;
}

#permissions-sliders ul#rules table.group-rules th {
    border-left:solid 1px #1b3f7c;
    border-right:solid 0 #1b3f7c;
}

/**
 * Menu Styling
 */

#menu ul li.node {
	background-image: url(../images/j_arrow_left.png);
	background-repeat: no-repeat;
	background-position: left 50%;
}

#menu a {
	background-position: right 50%;
}

#menu li {
	border-left: 1px solid #000000;
}

#menu li a:hover, #menu li a:active, #menu li a:focus {
	border-left: 1px solid #1b3f7c;
	border-right: 1px solid #000000;
}

#menu li.disabled a:hover,#menu li.disabled a:focus,#menu li.disabled a
	{
	border-right: 1px solid #10254a;
	border-left: 1px solid #10254a;
}

#menu li:hover ul,#menu li.sfhover ul {
	/* lists nested under hovered list items */
	border-right: 1px solid #122b56;
	border-left: 1px solid #122b56;
}

#menu li li:hover ul,#menu li li.sfhover ul {
	border-right: 1px solid #122b56;
	border-left: 1px solid #122b56;
}

/**
 * Styling parents
 */

 	/* 1 level - sfhover */
#menu li.sfhover a {
	border-left: 1px solid #1b3f7c;
	border-right: 1px solid #000000;
}

	/* 2 level - hover */
#menu li.sfhover li.sfhover a,#menu li li a:focus {
	border-left: 1px solid #1b3f7c;
	border-right: 1px solid #000000;
}

	/* 3 level - hover */
#menu li.sfhover li.sfhover li.sfhover a,#menu li li li a:focus {
	border-left: 1px solid #1b3f7c;
	border-right: 1px solid #000000;
}

/* bring back the focus elements into view */
#menu li li a:focus {
	border-left: 1px solid #1b3f7c;
	border-right: 1px solid #000000;
}

#menu li li li a:focus {
	border-left: 1px solid #1b3f7c;
	border-right: 1px solid #000000;
}

/* Installer Database */
#installer-database p.warning {
	background-position: center right;
}

#installer-database p.nowarning {
	background-position: center right;
}
css/colour_standard.css000064400000133523151163244070011243
0ustar00.clearfix {
	*zoom: 1;
}
.clearfix:before,
.clearfix:after {
	display: table;
	content: "";
	line-height: 0;
}
.clearfix:after {
	clear: both;
}
.hide-text {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}
.input-block-level {
	display: block;
	width: 100%;
	min-height: 25px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#form-login .btn {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	padding: 4px 14px;
	margin-bottom: 0;
	font-size: 13px;
	line-height: 15px;
	*line-height: 15px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	color: #333333;
	text-shadow: 0 1px 1px rgba(255,255,255,0.75);
	background-color: #f5f5f5;
	background-image: -moz-linear-gradient(top,#ffffff,#e6e6e6);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#ffffff),to(#e6e6e6));
	background-image: -webkit-linear-gradient(top,#ffffff,#e6e6e6);
	background-image: -o-linear-gradient(top,#ffffff,#e6e6e6);
	background-image: linear-gradient(to bottom,#ffffff,#e6e6e6);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',
endColorstr='#ffe5e5e5', GradientType=0);
	border-color: #e6e6e6 #e6e6e6 #bfbfbf;
	*background-color: #e6e6e6;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
	border: 1px solid #bbb;
	*border: 0;
	border-bottom-color: #a2a2a2;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	*margin-left: .3em;
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px
rgba(0,0,0,.05);
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px
rgba(0,0,0,.05);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
}
#form-login .btn:hover,
#form-login .btn:focus,
#form-login .btn:active,
#form-login .btn.active,
#form-login .btn.disabled,
#form-login .btn[disabled] {
	color: #333333;
	background-color: #e6e6e6;
	*background-color: #d9d9d9;
}
#form-login .btn:active,
#form-login .btn.active {
	background-color: #cccccc \9;
}
#form-login .btn:first-child {
	*margin-left: 0;
}
#form-login .btn:hover {
	color: #333333;
	text-decoration: none;
	background-color: #e6e6e6;
	*background-color: #d9d9d9;
	background-position: 0 -15px;
	-webkit-transition: background-position .1s linear;
	-moz-transition: background-position .1s linear;
	-o-transition: background-position .1s linear;
	transition: background-position .1s linear;
}
#form-login .btn:focus {
	outline: thin dotted #333;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
#form-login .btn.active,
#form-login .btn:active {
	background-color: #e6e6e6;
	background-color: #d9d9d9 \9;
	background-image: none;
	outline: 0;
	-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px
rgba(0,0,0,.05);
	-moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px
rgba(0,0,0,.05);
	box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
#form-login .btn.disabled,
#form-login .btn[disabled] {
	cursor: default;
	background-color: #e6e6e6;
	background-image: none;
	opacity: 0.65;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-large {
	padding: 9px 14px;
	font-size: 15px;
	line-height: normal;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.btn-large [class^="icon-"] {
	margin-top: 2px;
}
.input-append input[class*="span"],
.input-append .uneditable-input[class*="span"],
.input-prepend input[class*="span"],
.input-prepend .uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"],
.row-fluid .input-prepend [class*="span"],
.row-fluid .input-append [class*="span"] {
	display: inline-block;
}
.input-append,
.input-prepend {
	margin-bottom: 5px;
	font-size: 0;
	white-space: nowrap;
}
.input-append input,
.input-append select,
.input-append .uneditable-input,
.input-prepend input,
.input-prepend select,
.input-prepend .uneditable-input {
	position: relative;
	margin-bottom: 0;
	*margin-left: 0;
	font-size: 13px;
	vertical-align: top;
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}
.input-append input:focus,
.input-append select:focus,
.input-append .uneditable-input:focus,
.input-prepend input:focus,
.input-prepend select:focus,
.input-prepend .uneditable-input:focus {
	z-index: 2;
}
.input-append .add-on,
.input-prepend .add-on {
	display: inline-block;
	width: auto;
	height: 15px;
	min-width: 16px;
	padding: 4px 5px;
	font-size: 13px;
	font-weight: normal;
	line-height: 15px;
	text-align: center;
	text-shadow: 0 1px 0 #ffffff;
	background-color: #eeeeee;
	border: 1px solid #ccc;
}
.input-append .add-on,
.input-append .btn,
.input-prepend .add-on,
.input-prepend .btn {
	margin-left: -1px;
	vertical-align: top;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.input-append .active,
.input-prepend .active {
	background-color: #a9dba9;
	border-color: #46a546;
}
.input-prepend .add-on,
.input-prepend .btn {
	margin-right: -1px;
}
.input-prepend .add-on:first-child,
.input-prepend .btn:first-child {
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}
.input-append input,
.input-append select,
.input-append .uneditable-input {
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}
.input-append .add-on:last-child,
.input-append .btn:last-child {
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}
.input-prepend.input-append input,
.input-prepend.input-append select,
.input-prepend.input-append .uneditable-input {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.input-prepend.input-append .add-on:first-child,
.input-prepend.input-append .btn:first-child {
	margin-right: -1px;
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}
.input-prepend.input-append .add-on:last-child,
.input-prepend.input-append .btn:last-child {
	margin-left: -1px;
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}
.form-search .input-append .search-query,
.form-search .input-prepend .search-query {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.form-search .input-append .search-query {
	-webkit-border-radius: 14px 0 0 14px;
	-moz-border-radius: 14px 0 0 14px;
	border-radius: 14px 0 0 14px;
}
.form-search .input-append .btn {
	-webkit-border-radius: 0 14px 14px 0;
	-moz-border-radius: 0 14px 14px 0;
	border-radius: 0 14px 14px 0;
}
.form-search .input-prepend .search-query {
	-webkit-border-radius: 0 14px 14px 0;
	-moz-border-radius: 0 14px 14px 0;
	border-radius: 0 14px 14px 0;
}
.form-search .input-prepend .btn {
	-webkit-border-radius: 14px 0 0 14px;
	-moz-border-radius: 14px 0 0 14px;
	border-radius: 14px 0 0 14px;
}
.form-search input,
.form-search textarea,
.form-search select,
.form-search .help-inline,
.form-search .uneditable-input,
.form-search .input-prepend,
.form-search .input-append,
.form-inline input,
.form-inline textarea,
.form-inline select,
.form-inline .help-inline,
.form-inline .uneditable-input,
.form-inline .input-prepend,
.form-inline .input-append,
.form-horizontal input,
.form-horizontal textarea,
.form-horizontal select,
.form-horizontal .help-inline,
.form-horizontal .uneditable-input,
.form-horizontal .input-prepend,
.form-horizontal .input-append {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	margin-bottom: 0;
	vertical-align: middle;
}
.form-search .hide,
.form-inline .hide,
.form-horizontal .hide {
	display: none;
}
.form-search .input-append,
.form-inline .input-append,
.form-search .input-prepend,
.form-inline .input-prepend {
	margin-bottom: 0;
}
.element-invisible {
	position: absolute;
	padding: 0 !important;
	margin: 0 !important;
	border: 0;
	height: 1px;
	width: 1px !important;
	overflow: hidden;
}
#form-login select,
#form-login input[type="text"],
#form-login input[type="password"] {
	display: inline-block;
	padding: 4px 6px;
	margin-bottom: 9px;
	font-size: 13px;
	line-height: 15px;
	color: #555555;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	width: 175px;
}
.subform-repeatable-wrapper div.btn-toolbar {
	float: none;
}
.subform-repeatable-wrapper .text-right {
	text-align: right;
}
.subform-repeatable-wrapper .ui-sortable-helper {
	background: #ffffff;
}
.subform-repeatable-wrapper tr.ui-sortable-helper {
	display: table;
}
.subform-repeatable-wrapper .subform-repeatable-group {
	clear: both;
}
.label,
.badge {
	display: inline-block;
	padding: 2px 4px;
	font-size: 10.998px;
	font-weight: bold;
	line-height: 14px;
	color: #ffffff;
	vertical-align: baseline;
	white-space: nowrap;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	background-color: #999999;
}
.label {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.badge {
	padding-left: 9px;
	padding-right: 9px;
	-webkit-border-radius: 9px;
	-moz-border-radius: 9px;
	border-radius: 9px;
}
.label:empty,
.badge:empty {
	display: none;
}
a.label:hover,
a.label:focus,
a.badge:hover,
a.badge:focus {
	color: #ffffff;
	text-decoration: none;
	cursor: pointer;
}
.label-important,
.badge-important {
	background-color: #a20000;
}
.label-important[href],
.badge-important[href] {
	background-color: #6f0000;
}
.label-warning,
.badge-warning {
	background-color: #f89406;
}
.label-warning[href],
.badge-warning[href] {
	background-color: #c67605;
}
.label-success,
.badge-success {
	background-color: #005800;
}
.label-success[href],
.badge-success[href] {
	background-color: #002500;
}
.label-info,
.badge-info {
	background-color: #3a87ad;
}
.label-info[href],
.badge-info[href] {
	background-color: #2d6987;
}
.label-inverse,
.badge-inverse {
	background-color: #333333;
}
.label-inverse[href],
.badge-inverse[href] {
	background-color: #1a1a1a;
}
.btn .label,
.btn .badge {
	position: relative;
	top: -1px;
}
.btn-mini .label,
.btn-mini .badge {
	top: 0;
}
body {
	background-color: #ffffff;
	color: #2c2c2c;
}
h1 {
	color: #2c2c2c;
}
a:link {
	color: #054993;
}
a:visited {
	color: #054993;
}
#header {
	background: #ffffff url(../images/j_logo.png) no-repeat;
}
#header h1.title {
	color: #2c2c2c;
}
#nav {
	background-color: #f9fade;
	background-image: -moz-linear-gradient(top,#f9fade,#f9fade);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#f9fade),to(#f9fade));
	background-image: -webkit-linear-gradient(top,#f9fade,#f9fade);
	background-image: -o-linear-gradient(top,#f9fade,#f9fade);
	background-image: linear-gradient(to bottom,#f9fade,#f9fade);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9fade',
endColorstr='#fff9fade', GradientType=0);
	border: 1px solid #c7c8b2;
}
#content {
	background: #ffffff;
}
#no-submenu {
	border-bottom: 1px solid #c7c8b2;
}
#element-box {
	background: #ffffff;
	border-right: 1px solid #c7c8b2;
	border-bottom: 1px solid #c7c8b2;
	border-left: 1px solid #c7c8b2;
}
#element-box.login {
	border-top: 1px solid #c7c8b2;
}
.enabled,
.success,
.allow,
span.writable {
	color: #005800;
}
.disabled,
p.error,
.warning,
.deny,
span.unwritable {
	color: #a20000;
}
.nowarning {
	color: #2c2c2c;
}
.none,
.protected {
	color: #c7c8b2;
}
span.note {
	background: #ffffff;
	color: #2c2c2c;
}
div.checkin-tick {
	background: url(../images/admin/tick.png) 20px 50% no-repeat;
}
.ol-foreground {
	background-color: #f9fade;
}
.ol-background {
	background-color: #005800;
}
.ol-textfont {
	color: #2c2c2c;
}
.ol-captionfont {
	color: #ffffff;
}
.ol-captionfont a {
	color: #054993;
}
div.subheader .padding {
	background: #ffffff;
}
.pagetitle h2 {
	color: #2c2c2c;
}
div.configuration {
	color: #2c2c2c;
	background-image: url(../images/menu/icon-16-config.png);
	background-repeat: no-repeat;
}
div.toolbar-box {
	border-right: 1px solid #c7c8b2;
	border-bottom: 1px solid #c7c8b2;
	border-left: 1px solid #c7c8b2;
	background: #ffffff;
}
div.toolbar-list li {
	color: #2c2c2c;
}
div.toolbar-list li.divider {
	border-right: 1px dotted #e5d9c3;
}
div.toolbar-list a {
	border-left: 1px solid #e5d9c3;
	border-top: 1px solid #e5d9c3;
	border-right: 1px solid #c7c8b2;
	border-bottom: 1px solid #c7c8b2;
	background: #f9fade;
}
div.toolbar-list a:hover {
	border-left: 1px solid #868778;
	border-top: 1px solid #868778;
	border-right: 1px solid #f6f7db;
	border-bottom: 1px solid #f6f7db;
	background: #e5d9c3;
	color: #054993;
}
div.btn-toolbar {
	margin-left: 5px;
	padding-top: 3px;
}
div.btn-toolbar li.divider {
	border-right: 1px dotted #e5d9c3;
}
div.btn-toolbar div.btn-group button {
	border-left: 1px solid #e5d9c3;
	border-top: 1px solid #e5d9c3;
	border-right: 1px solid #c7c8b2;
	border-bottom: 1px solid #c7c8b2;
	background-color: #f9fade;
	background-image: -moz-linear-gradient(top,#f9fade,#f9fade);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#f9fade),to(#f9fade));
	background-image: -webkit-linear-gradient(top,#f9fade,#f9fade);
	background-image: -o-linear-gradient(top,#f9fade,#f9fade);
	background-image: linear-gradient(to bottom,#f9fade,#f9fade);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9fade',
endColorstr='#fff9fade', GradientType=0);
	padding: 5px 4px 5px 4px;
}
div.btn-toolbar div.btn-group button:hover {
	border-left: 1px solid #868778;
	border-top: 1px solid #868778;
	border-right: 1px solid #f6f7db;
	border-bottom: 1px solid #f6f7db;
	background: #e5d9c3;
	color: #054993;
	cursor: pointer;
}
div.btn-toolbar a {
	border-left: 1px solid #e5d9c3;
	border-top: 1px solid #e5d9c3;
	border-right: 1px solid #c7c8b2;
	border-bottom: 1px solid #c7c8b2;
	background-color: #f9fade;
	background-image: -moz-linear-gradient(top,#f9fade,#f9fade);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#f9fade),to(#f9fade));
	background-image: -webkit-linear-gradient(top,#f9fade,#f9fade);
	background-image: -o-linear-gradient(top,#f9fade,#f9fade);
	background-image: linear-gradient(to bottom,#f9fade,#f9fade);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9fade',
endColorstr='#fff9fade', GradientType=0);
	padding: 6px 5px;
	text-align: center;
	white-space: nowrap;
	font-size: 1.2em;
	text-decoration: none;
}
div.btn-toolbar a:hover {
	border-left: 1px solid #868778;
	border-top: 1px solid #868778;
	border-right: 1px solid #f6f7db;
	border-bottom: 1px solid #f6f7db;
	background: #e5d9c3;
	color: #054993;
	cursor: pointer;
}
div.btn-toolbar div.btn-group button.inactive {
	background: #f9fade;
}
.pane-sliders .title {
	color: #2c2c2c;
}
.pane-sliders .panel {
	border: 1px solid #c7c8b2;
}
.pane-sliders .panel h3 {
	background-color: #f9fade;
	background-image: -moz-linear-gradient(top,#f9fade,#f9fade);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#f9fade),to(#f9fade));
	background-image: -webkit-linear-gradient(top,#f9fade,#f9fade);
	background-image: -o-linear-gradient(top,#f9fade,#f9fade);
	background-image: linear-gradient(to bottom,#f9fade,#f9fade);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9fade',
endColorstr='#fff9fade', GradientType=0);
	color: #054993;
}
.pane-sliders .panel h3:hover {
	background: #e5d9c3;
}
.pane-sliders .panel h3:hover a {
	text-decoration: none;
}
.pane-sliders .adminlist {
	border: 0 none;
}
.pane-sliders .adminlist td {
	border: 0 none;
}
.pane-toggler span {
	background: transparent url(../images/j_arrow.png) 5px 50% no-repeat;
}
.pane-toggler-down span {
	background: transparent url(../images/j_arrow_down.png) 5px 50% no-repeat;
}
.pane-toggler-down {
	border-bottom: 1px solid #c7c8b2;
}
dl.tabs dt {
	border: 1px solid #c7c8b2;
	background-color: #f9fade;
	background-image: -moz-linear-gradient(top,#f9fade,#f9fade);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#f9fade),to(#f9fade));
	background-image: -webkit-linear-gradient(top,#f9fade,#f9fade);
	background-image: -o-linear-gradient(top,#f9fade,#f9fade);
	background-image: linear-gradient(to bottom,#f9fade,#f9fade);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9fade',
endColorstr='#fff9fade', GradientType=0);
	color: #054993;
}
dl.tabs dt:hover {
	background: #e5d9c3;
}
dl.tabs dt.open {
	background: #ffffff;
	border-bottom: 1px solid #ffffff;
	color: #2c2c2c;
}
dl.tabs dt.open a:visited {
	color: #2c2c2c;
}
dl.tabs dt a:hover {
	text-decoration: none;
}
dl.tabs dt a:focus {
	text-decoration: underline;
}
div.current {
	border: 1px solid #c7c8b2;
	background: #ffffff;
}
div.current fieldset {
	border: none 0;
}
div.current fieldset.adminform {
	border: 1px solid #c7c8b2;
}
#login-page .pagetitle h2 {
	background: transparent;
}
#login-page #header {
	border-bottom: 1px solid #c7c8b2;
}
#login-page #lock {
	background: url(../images/j_login_lock.png) 50% 0 no-repeat;
}
#login-page #element-box.login {
	background-color: #f9fade;
	background-image: -moz-linear-gradient(top,#f9fade,#f9fade);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#f9fade),to(#f9fade));
	background-image: -webkit-linear-gradient(top,#f9fade,#f9fade);
	background-image: -o-linear-gradient(top,#f9fade,#f9fade);
	background-image: linear-gradient(to bottom,#f9fade,#f9fade);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9fade',
endColorstr='#fff9fade', GradientType=0);
}
#form-login {
	background: #ffffff;
	border: 1px solid #c7c8b2;
}
#form-login label {
	color: #2c2c2c;
}
#form-login div.button1 a {
	color: #054993;
}
#cpanel div.icon a,
.cpanel div.icon a {
	color: #054993;
	border-left: 1px solid #e5d9c3;
	border-top: 1px solid #e5d9c3;
	border-right: 1px solid #c7c8b2;
	border-bottom: 1px solid #c7c8b2;
	background-color: #f9fade;
	background-image: -moz-linear-gradient(top,#f9fade,#f9fade);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#f9fade),to(#f9fade));
	background-image: -webkit-linear-gradient(top,#f9fade,#f9fade);
	background-image: -o-linear-gradient(top,#f9fade,#f9fade);
	background-image: linear-gradient(to bottom,#f9fade,#f9fade);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9fade',
endColorstr='#fff9fade', GradientType=0);
}
#cpanel div.icon a:hover,
#cpanel div.icon a:focus,
.cpanel div.icon a:hover,
.cpanel div.icon a:focus {
	border-left: 1px solid #868778;
	border-top: 1px solid #868778;
	border-right: 1px solid #f6f7db;
	border-bottom: 1px solid #f6f7db;
	color: #054993;
	background: #e5d9c3;
}
fieldset {
	border: 1px #c7c8b2 solid;
}
legend {
	color: #2c2c2c;
}
fieldset ul.checklist input:focus {
	outline: thin dotted #2c2c2c;
}
fieldset#filter-bar {
	border-top: 0 solid #c7c8b2;
	border-right: 0 solid #c7c8b2;
	border-bottom: 1px solid #c7c8b2;
	border-left: 0 solid #c7c8b2;
}
fieldset#filter-bar ol,
fieldset#filter-bar ul {
	border: 0;
}
fieldset#filter-bar ol li fieldset,
fieldset#filter-bar ul li fieldset {
	border: 0;
}
.invalid {
	color: #a20000;
}
input.invalid {
	border: 1px solid #a20000;
}
input.readonly,
span.faux-input {
	border: 0;
}
input.required {
	background-color: #e5f0fa;
}
input.disabled {
	background-color: #eeeeee;
}
input,
select,
span.faux-input {
	background-color: #ffffff;
	border: 1px solid #c7c8b2;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {
	color: #054993;
	background-color: #f9fade;
	background-image: -moz-linear-gradient(top,#f9fade,#f9fade);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#f9fade),to(#f9fade));
	background-image: -webkit-linear-gradient(top,#f9fade,#f9fade);
	background-image: -o-linear-gradient(top,#f9fade,#f9fade);
	background-image: linear-gradient(to bottom,#f9fade,#f9fade);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9fade',
endColorstr='#fff9fade', GradientType=0);
}
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus {
	background: #e5d9c3;
}
textarea {
	background-color: #ffffff;
	border: 1px solid #c7c8b2;
}
input:focus,
select:focus,
textarea:focus,
option:focus,
input:hover,
select:hover,
textarea:hover,
option:hover {
	background-color: #e5d9c3;
	color: #054993;
}
.paramrules {
	background: #f9fade;
}
span.gi {
	color: #c7c8b2;
}
table.admintable td.key,
table.admintable td.paramlist_key {
	background-color: #f9fade;
	color: #2c2c2c;
	border-bottom: 1px solid #c7c8b2;
	border-right: 1px solid #c7c8b2;
}
table.paramlist td.paramlist_description {
	background-color: #f9fade;
	color: #2c2c2c;
	border-bottom: 1px solid #c7c8b2;
	border-right: 1px solid #c7c8b2;
}
fieldset.adminform {
	border: 1px solid #c7c8b2;
}
table.adminform {
	background-color: #ffffff;
}
table.adminform tr.row0 {
	background-color: #ffffff;
}
table.adminform tr.row1 {
	background-color: #e5d9c3;
}
table.adminform th {
	color: #2c2c2c;
	background: #ffffff;
}
table.adminform tr {
	border-bottom: 1px solid #c7c8b2;
	border-right: 1px solid #c7c8b2;
}
table.adminlist {
	border-spacing: 1px;
	background-color: #ffffff;
	color: #2c2c2c;
}
table.adminlist.modal {
	border-top: 1px solid #c7c8b2;
	border-right: 1px solid #c7c8b2;
	border-left: 1px solid #c7c8b2;
}
table.adminlist a {
	color: #054993;
}
table.adminlist thead th {
	background: #ffffff;
	color: #2c2c2c;
	border-bottom: 1px solid #c7c8b2;
}
table.adminlist tbody tr {
	background: #ffffff;
}
table.adminlist tbody tr.row1 {
	background: #ffffff;
}
table.adminlist tbody tr.row1:last-child td,
table.adminlist tbody tr.row1:last-child th {
	border-bottom: 1px solid #c7c8b2;
}
table.adminlist tbody tr.row0:hover td,
table.adminlist tbody tr.row1:hover td,
table.adminlist tbody tr.row0:hover th,
table.adminlist tbody tr.row1:hover th,
table.adminlist tbody tr.row0:focus td,
table.adminlist tbody tr.row1:focus td,
table.adminlist tbody tr.row0:focus th,
table.adminlist tbody tr.row1:focus th {
	background-color: #e5d9c3;
}
table.adminlist tbody tr td,
table.adminlist tbody tr th {
	border-right: 1px solid #c7c8b2;
}
table.adminlist tbody tr td:last-child {
	border-right: none;
}
table.adminlist tbody tr.row0:last-child td,
table.adminlist tbody tr.row0:last-child th {
	border-bottom: 1px solid #c7c8b2;
}
table.adminlist tbody tr.row0 td,
table.adminlist tbody tr.row0 th {
	background-color: #f9fade;
	background-image: -moz-linear-gradient(top,#f9fade,#f9fade);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#f9fade),to(#f9fade));
	background-image: -webkit-linear-gradient(top,#f9fade,#f9fade);
	background-image: -o-linear-gradient(top,#f9fade,#f9fade);
	background-image: linear-gradient(to bottom,#f9fade,#f9fade);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9fade',
endColorstr='#fff9fade', GradientType=0);
}
table.adminlist {
	border-bottom: 0 solid #c7c8b2;
}
table.adminlist tfoot tr {
	color: #2c2c2c;
}
table.adminlist tfoot td,
table.adminlist tfoot th {
	background-color: #ffffff;
	border-top: 1px solid #c7c8b2;
}
table.adminlist tr td.btns a {
	border: 1px solid #c7c8b2;
	background-color: #f9fade;
	background-image: -moz-linear-gradient(top,#f9fade,#f9fade);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#f9fade),to(#f9fade));
	background-image: -webkit-linear-gradient(top,#f9fade,#f9fade);
	background-image: -o-linear-gradient(top,#f9fade,#f9fade);
	background-image: linear-gradient(to bottom,#f9fade,#f9fade);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9fade',
endColorstr='#fff9fade', GradientType=0);
	color: #054993;
}
table.adminlist tr td.btns a:hover,
table.adminlist tr td.btns a:active,
table.adminlist tr td.btns a:focus {
	background-color: #ffffff;
}
a.saveorder {
	background: url(../images/admin/filesave.png) no-repeat;
}
a.saveorder.inactive {
	background-position: 0 -16px;
}
fieldset.batch {
	background: #ffffff;
}
button {
	color: #054993;
	border: 1px solid #c7c8b2;
	background-color: #f9fade;
	background-image: -moz-linear-gradient(top,#f9fade,#f9fade);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#f9fade),to(#f9fade));
	background-image: -webkit-linear-gradient(top,#f9fade,#f9fade);
	background-image: -o-linear-gradient(top,#f9fade,#f9fade);
	background-image: linear-gradient(to bottom,#f9fade,#f9fade);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9fade',
endColorstr='#fff9fade', GradientType=0);
}
button:hover,
button:focus {
	background: #e5d9c3;
}
.invalid {
	color: #ff0000;
}
.button1 {
	border: 1px solid #c7c8b2;
	color: #054993;
	background-color: #f9fade;
	background-image: -moz-linear-gradient(top,#f9fade,#f9fade);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#f9fade),to(#f9fade));
	background-image: -webkit-linear-gradient(top,#f9fade,#f9fade);
	background-image: -o-linear-gradient(top,#f9fade,#f9fade);
	background-image: linear-gradient(to bottom,#f9fade,#f9fade);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9fade',
endColorstr='#fff9fade', GradientType=0);
}
.button1 a {
	color: #054993;
}
.button1 a:hover,
.button1 a:focus {
	background: #e5d9c3;
}
.button2-left,
.button2-right {
	border: 1px solid #c7c8b2;
	background-color: #f9fade;
	background-image: -moz-linear-gradient(top,#f9fade,#f9fade);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#f9fade),to(#f9fade));
	background-image: -webkit-linear-gradient(top,#f9fade,#f9fade);
	background-image: -o-linear-gradient(top,#f9fade,#f9fade);
	background-image: linear-gradient(to bottom,#f9fade,#f9fade);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9fade',
endColorstr='#fff9fade', GradientType=0);
}
.button2-left a,
.button2-right a,
.button2-left span,
.button2-right span {
	color: #054993;
}
.button2-left span,
.button2-right span {
	color: #999999;
}
.page span,
.blank span {
	color: #054993;
}
.button2-left a:hover,
.button2-right a:hover,
.button2-left a:focus,
.button2-right a:focus {
	background: #e5d9c3;
}
.pagination .page span {
	color: #999999;
}
.tip {
	background: #000000;
	border: 1px solid #FFFFFF;
}
.tip-title {
	background: url(../images/selector-arrow-std.png) no-repeat;
}
a img.calendar {
	background: url(../images/calendar.png) no-repeat;
}
.jgrid span.publish {
	background-image: url(../images/admin/tick.png);
}
.jgrid span.unpublish {
	background-image: url(../images/admin/publish_x.png);
}
.jgrid span.archive {
	background-image: url(../images/menu/icon-16-archive.png);
}
.jgrid span.trash {
	background-image: url(../images/menu/icon-16-trash.png);
}
.jgrid span.default {
	background-image: url(../images/menu/icon-16-default.png);
}
.jgrid span.notdefault {
	background-image: url(../images/menu/icon-16-notdefault.png);
}
.jgrid span.checkedout {
	background-image: url(../images/admin/checked_out.png);
}
.jgrid span.downarrow {
	background-image: url(../images/admin/downarrow.png);
}
.jgrid span.downarrow_disabled {
	background-image: url(../images/admin/downarrow0.png);
}
.jgrid span.uparrow {
	background-image: url(../images/admin/uparrow.png);
}
.jgrid span.uparrow_disabled {
	background-image: url(../images/admin/uparrow0.png);
}
.jgrid span.published {
	background-image: url(../images/admin/publish_g.png);
}
.jgrid span.expired {
	background-image: url(../images/admin/publish_r.png);
}
.jgrid span.pending {
	background-image: url(../images/admin/publish_y.png);
}
.jgrid span.warning {
	background-image: url(../images/admin/publish_y.png);
}
.icon-32-send {
	background-image: url(../images/toolbar/icon-32-send.png);
}
.icon-32-delete {
	background-image: url(../images/toolbar/icon-32-delete.png);
}
.icon-32-help {
	background-image: url(../images/toolbar/icon-32-help.png);
}
.icon-32-cancel {
	background-image: url(../images/toolbar/icon-32-cancel.png);
}
.icon-32-checkin {
	background-image: url(../images/toolbar/icon-32-checkin.png);
}
.icon-32-options {
	background-image: url(../images/toolbar/icon-32-config.png);
}
.icon-32-apply {
	background-image: url(../images/toolbar/icon-32-apply.png);
}
.icon-32-back {
	background-image: url(../images/toolbar/icon-32-back.png);
}
.icon-32-forward {
	background-image: url(../images/toolbar/icon-32-forward.png);
}
.icon-32-save {
	background-image: url(../images/toolbar/icon-32-save.png);
}
.icon-32-edit {
	background-image: url(../images/toolbar/icon-32-edit.png);
}
.icon-32-copy {
	background-image: url(../images/toolbar/icon-32-copy.png);
}
.icon-32-move {
	background-image: url(../images/toolbar/icon-32-move.png);
}
.icon-32-new {
	background-image: url(../images/toolbar/icon-32-new.png);
}
.icon-32-upload {
	background-image: url(../images/toolbar/icon-32-upload.png);
}
.icon-32-assign {
	background-image: url(../images/toolbar/icon-32-publish.png);
}
.icon-32-html {
	background-image: url(../images/toolbar/icon-32-html.png);
}
.icon-32-css {
	background-image: url(../images/toolbar/icon-32-css.png);
}
.icon-32-menus {
	background-image: url(../images/toolbar/icon-32-menu.png);
}
.icon-32-publish {
	background-image: url(../images/toolbar/icon-32-publish.png);
}
.icon-32-unblock {
	background-image: url(../images/toolbar/icon-32-unblock.png);
}
.icon-32-unpublish {
	background-image: url(../images/toolbar/icon-32-unpublish.png);
}
.icon-32-restore {
	background-image: url(../images/toolbar/icon-32-revert.png);
}
.icon-32-trash {
	background-image: url(../images/toolbar/icon-32-trash.png);
}
.icon-32-archive {
	background-image: url(../images/toolbar/icon-32-archive.png);
}
.icon-32-unarchive {
	background-image: url(../images/toolbar/icon-32-unarchive.png);
}
.icon-32-preview {
	background-image: url(../images/toolbar/icon-32-preview.png);
}
.icon-32-default {
	background-image: url(../images/toolbar/icon-32-default.png);
}
.icon-32-refresh {
	background-image: url(../images/toolbar/icon-32-refresh.png);
}
.icon-32-save-new {
	background-image: url(../images/toolbar/icon-32-save-new.png);
}
.icon-32-save-copy {
	background-image: url(../images/toolbar/icon-32-save-copy.png);
}
.icon-32-error {
	background-image: url(../images/toolbar/icon-32-error.png);
}
.icon-32-new-style {
	background-image: url(../images/toolbar/icon-32-new-style.png);
}
.icon-32-delete-style {
	background-image: url(../images/toolbar/icon-32-delete-style.png);
}
.icon-32-purge {
	background-image: url(../images/toolbar/icon-32-purge.png);
}
.icon-32-remove {
	background-image: url(../images/toolbar/icon-32-remove.png);
}
.icon-32-featured {
	background-image: url(../images/toolbar/icon-32-featured.png);
}
.icon-32-unfeatured {
	background-image: url(../images/toolbar/icon-32-featured.png);
	background-position: 0% 100%;
}
.icon-32-export {
	background-image: url(../images/toolbar/icon-32-export.png);
}
.icon-32-stats {
	background-image: url(../images/toolbar/icon-32-stats.png);
}
.icon-32-print {
	background-image: url(../images/toolbar/icon-32-print.png);
}
.icon-32-batch {
	background-image: url(../images/toolbar/icon-32-batch.png);
}
.icon-32-envelope {
	background-image: url(../images/toolbar/icon-32-messaging.png);
}
.icon-32-download {
	background-image: url(../images/toolbar/icon-32-export.png);
}
.icon-32-bars {
	background-image: url(../images/toolbar/icon-32-stats.png);
}
.icon-48-categories {
	background-image: url(../images/header/icon-48-category.png);
}
.icon-48-category-edit {
	background-image: url(../images/header/icon-48-category.png);
}
.icon-48-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}
.icon-48-generic {
	background-image: url(../images/header/icon-48-generic.png);
}
.icon-48-banners {
	background-image: url(../images/header/icon-48-banner.png);
}
.icon-48-banners-categories {
	background-image: url(../images/header/icon-48-banner-categories.png);
}
.icon-48-banners-category-edit {
	background-image: url(../images/header/icon-48-banner-categories.png);
}
.icon-48-banners-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}
.icon-48-banners-clients {
	background-image: url(../images/header/icon-48-banner-client.png);
}
.icon-48-banners-tracks {
	background-image: url(../images/header/icon-48-banner-tracks.png);
}
.icon-48-checkin {
	background-image: url(../images/header/icon-48-checkin.png);
}
.icon-48-clear {
	background-image: url(../images/header/icon-48-clear.png);
}
.icon-48-contact {
	background-image: url(../images/header/icon-48-contacts.png);
}
.icon-48-contact-categories {
	background-image: url(../images/header/icon-48-contacts-categories.png);
}
.icon-48-contact-category-edit {
	background-image: url(../images/header/icon-48-contacts-categories.png);
}
.icon-48-contact-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}
.icon-48-purge {
	background-image: url(../images/header/icon-48-purge.png);
}
.icon-48-cpanel {
	background-image: url(../images/header/icon-48-cpanel.png);
}
.icon-48-config {
	background-image: url(../images/header/icon-48-config.png);
}
.icon-48-groups {
	background-image: url(../images/header/icon-48-groups.png);
}
.icon-48-groups-add {
	background-image: url(../images/header/icon-48-groups-add.png);
}
.icon-48-levels {
	background-image: url(../images/header/icon-48-levels.png);
}
.icon-48-levels-add {
	background-image: url(../images/header/icon-48-levels-add.png);
}
.icon-48-module {
	background-image: url(../images/header/icon-48-module.png);
}
.icon-48-menu {
	background-image: url(../images/header/icon-48-menu.png);
}
.icon-48-menu-add {
	background-image: url(../images/header/icon-48-menu-add.png);
}
.icon-48-menumgr {
	background-image: url(../images/header/icon-48-menumgr.png);
}
.icon-48-trash {
	background-image: url(../images/header/icon-48-trash.png);
}
.icon-48-user {
	background-image: url(../images/header/icon-48-user.png);
}
.icon-48-user-add {
	background-image: url(../images/header/icon-48-user-add.png);
}
.icon-48-user-edit {
	background-image: url(../images/header/icon-48-user-edit.png);
}
.icon-48-user-profile {
	background-image: url(../images/header/icon-48-user-profile.png);
}
.icon-48-inbox {
	background-image: url(../images/header/icon-48-inbox.png);
}
.icon-48-new-privatemessage {
	background-image: url(../images/header/icon-48-new-privatemessage.png);
}
.icon-48-msgconfig {
	background-image: url(../images/header/icon-48-message_config.png);
}
.icon-48-langmanager {
	background-image: url(../images/header/icon-48-language.png);
}
.icon-48-mediamanager {
	background-image: url(../images/header/icon-48-media.png);
}
.icon-48-plugin {
	background-image: url(../images/header/icon-48-plugin.png);
}
.icon-48-help_header {
	background-image: url(../images/header/icon-48-help_header.png);
}
.icon-48-impressions {
	background-image: url(../images/header/icon-48-stats.png);
}
.icon-48-browser {
	background-image: url(../images/header/icon-48-stats.png);
}
.icon-48-searchtext {
	background-image: url(../images/header/icon-48-stats.png);
}
.icon-48-thememanager {
	background-image: url(../images/header/icon-48-themes.png);
}
.icon-48-writemess {
	background-image: url(../images/header/icon-48-writemess.png);
}
.icon-48-featured {
	background-image: url(../images/header/icon-48-featured.png);
}
.icon-48-sections {
	background-image: url(../images/header/icon-48-section.png);
}
.icon-48-article-add {
	background-image: url(../images/header/icon-48-article-add.png);
}
.icon-48-article-edit {
	background-image: url(../images/header/icon-48-article-edit.png);
}
.icon-48-article {
	background-image: url(../images/header/icon-48-article.png);
}
.icon-48-content-categories {
	background-image: url(../images/header/icon-48-category.png);
}
.icon-48-content-category-edit {
	background-image: url(../images/header/icon-48-category.png);
}
.icon-48-content-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}
.icon-48-install {
	background-image: url(../images/header/icon-48-extension.png);
}
.icon-48-dbbackup {
	background-image: url(../images/header/icon-48-backup.png);
}
.icon-48-dbrestore {
	background-image: url(../images/header/icon-48-dbrestore.png);
}
.icon-48-dbquery {
	background-image: url(../images/header/icon-48-query.png);
}
.icon-48-systeminfo {
	background-image: url(../images/header/icon-48-info.png);
}
.icon-48-massmail {
	background-image: url(../images/header/icon-48-massmail.png);
}
.icon-48-redirect {
	background-image: url(../images/header/icon-48-redirect.png);
}
.icon-48-search {
	background-image: url(../images/header/icon-48-search.png);
}
.icon-48-finder {
	background-image: url(../images/header/icon-48-search.png);
}
.icon-48-newsfeeds {
	background-image: url(../images/header/icon-48-newsfeeds.png);
}
.icon-48-newsfeeds-categories {
	background-image: url(../images/header/icon-48-newsfeeds-cat.png);
}
.icon-48-newsfeeds-category-edit {
	background-image: url(../images/header/icon-48-newsfeeds-cat.png);
}
.icon-48-newsfeeds-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}
.icon-48-weblinks {
	background-image: url(../images/header/icon-48-links.png);
}
.icon-48-weblinks-categories {
	background-image: url(../images/header/icon-48-links-cat.png);
}
.icon-48-weblinks-category-edit {
	background-image: url(../images/header/icon-48-links-cat.png);
}
.icon-48-weblinks-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}
.icon-48-tags {
	background-image: url(../images/header/icon-48-tags.png);
}
.icon-48-assoc {
	background-image: url(../images/header/icon-48-assoc.png);
}
.icon-48-puzzle {
	background-image: url(../images/header/icon-48-puzzle.png);
}
div.message {
	border: 1px solid #c7c8b2;
	color: #2c2c2c;
}
.helpFrame {
	border-left: 0 solid #c7c8b2;
	border-right: none;
	border-top: none;
	border-bottom: none;
}
.outline {
	border: 1px solid #c7c8b2;
	background: #ffffff;
}
dl.menu_type dt {
	border-bottom: 1px solid #c7c8b2;
}
ul#new-modules-list {
	border-top: 1px solid #c7c8b2;
}
#skiplinkholder a,
#skiplinkholder a:link,
#skiplinkholder a:visited {
	color: #ffffff;
	background: #054993;
	border-bottom: solid #336 2px;
}
fieldset.panelform {
	border: none 0;
}
a.move_up {
	background-image: url('../images/admin/uparrow.png');
}
span.move_up {
	background-image: url('../images/admin/uparrow0.png');
}
a.move_down {
	background-image: url('../images/admin/downarrow.png');
}
span.move_down {
	background-image: url('../images/admin/downarrow0.png');
}
a.grid_false {
	background-image: url('../images/admin/publish_x.png');
}
a.grid_true {
	background-image: url('../images/admin/tick.png');
}
a.grid_trash {
	background-image: url('../images/admin/icon-16-trash.png');
}
tr.row1 {
	background-color: #f9fade;
}
table.aclsummary-table td.col2,
table.aclsummary-table th.col2,
table.aclsummary-table td.col3,
table.aclsummary-table th.col3,
table.aclsummary-table td.col4,
table.aclsummary-table th.col4,
table.aclsummary-table td.col5,
table.aclsummary-table th.col5,
table.aclsummary-table td.col6,
table.aclsummary-table th.col6,
table.aclmodify-table td.col2,
table.aclmodify-table th.col2 {
	border-left: 1px solid #c7c8b2;
}
span.icon-16-unset {
	background: url(../images/admin/icon-16-denyinactive.png) no-repeat;
}
span.icon-16-allowed {
	background: url(../images/admin/icon-16-allow.png) no-repeat;
}
span.icon-16-denied {
	background: url(../images/admin/icon-16-deny.png) no-repeat;
}
span.icon-16-locked {
	background: url(../images/admin/checked_out.png) 0 0 no-repeat;
}
label.icon-16-allow {
	background: url(../images/admin/icon-16-allow.png) no-repeat;
}
label.icon-16-deny {
	background: url(../images/admin/icon-16-deny.png) no-repeat;
}
a.icon-16-allow {
	background: url(../images/admin/icon-16-allow.png) no-repeat;
}
a.icon-16-deny {
	background: url(../images/admin/icon-16-deny.png) no-repeat;
}
a.icon-16-allowinactive {
	background: url(../images/admin/icon-16-allowinactive.png) no-repeat;
}
a.icon-16-denyinactive {
	background: url(../images/admin/icon-16-denyinactive.png) no-repeat;
}
ul.acllegend li.acl-allowed {
	background: url(../images/admin/icon-16-allow.png) no-repeat left;
}
ul.acllegend li.acl-denied {
	background: url(../images/admin/icon-16-deny.png) no-repeat left;
}
li.acl-editgroups,
li.acl-resetbtn {
	background-color: #f9fade;
	border: 1px solid #c7c8b2;
}
li.acl-editgroups a,
li.acl-resetbtn a {
	color: #054993;
}
li.acl-editgroups:hover,
li.acl-resetbtn:hover,
li.acl-editgroups:focus,
li.acl-resetbtn:focus {
	background-color: #e5d9c3;
}
table#acl-config {
	border: 1px solid #c7c8b2;
}
table#acl-config th,
table#acl-config td {
	background: #f9fade;
	border-bottom: 1px solid #c7c8b2;
}
table#acl-config th.acl-groups {
	border-right: 1px solid #c7c8b2;
}
#jform_sef_rewrite-lbl {
	background: url(../images/admin/icon-16-notice-note.png) right top
no-repeat;
}
#permissions-sliders .tip {
	background: #ffffff;
	border: 1px solid #c7c8b2;
}
#permissions-sliders ul#rules,
#permissions-sliders ul#rules ul {
	border: solid 0 #c7c8b2;
	background: #ffffff;
}
ul#rules li .pane-sliders .panel h3.title {
	border: solid 0 #c7c8b2;
}
#permissions-sliders ul#rules .pane-slider {
	border: solid 1px #c7c8b2;
}
#permissions-sliders ul#rules li h3 {
	border: solid 1px #c7c8b2;
}
#permissions-sliders ul#rules li h3.pane-toggler-down a {
	border: solid 0;
}
#permissions-sliders ul#rules .group-kind {
	color: #2c2c2c;
}
#permissions-sliders ul#rules table.group-rules {
	border: solid 1px #c7c8b2;
}
#permissions-sliders ul#rules table.group-rules td {
	border-right: solid 1px #c7c8b2;
	border-bottom: solid 1px #c7c8b2;
}
#permissions-sliders ul#rules table.group-rules th {
	background: #e5d9c3;
	border-right: solid 1px #c7c8b2;
	border-bottom: solid 1px #c7c8b2;
	color: #2c2c2c;
}
ul#rules table.aclmodify-table {
	border: solid 1px #c7c8b2;
}
ul#rules table.group-rules td label {
	border: solid 0 #c7c8b2;
}
#permissions-sliders ul#rules .mypanel {
	border: solid 0 #c7c8b2;
}
#permissions-sliders  ul#rules  table.group-rules td {
	background: #ffffff;
}
#permissions-sliders span.level {
	color: #c7c8b2;
	background-image: none;
}
.check-0,
table.adminlist tbody td.check-0 {
	background-color: #ffffcf;
}
.check-a,
table.adminlist tbody td.check-a {
	background-color: #cfffda;
}
.check-d,
table.adminlist tbody td.check-d {
	background-color: #ffcfcf;
}
#system-message dd ul {
	color: #2c2c2c;
}
#system-message dd.error ul {
	color: #2c2c2c;
}
#system-message dd.message ul {
	color: #2c2c2c;
}
#system-message dd.notice ul {
	color: #2c2c2c;
}
#menu {
	color: #2c2c2c;
}
#menu ul.dropdown-menu {
	background-color: #f9fade;
	background-image: -moz-linear-gradient(top,#f9fade,#f9fade);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#f9fade),to(#f9fade));
	background-image: -webkit-linear-gradient(top,#f9fade,#f9fade);
	background-image: -o-linear-gradient(top,#f9fade,#f9fade);
	background-image: linear-gradient(to bottom,#f9fade,#f9fade);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9fade',
endColorstr='#fff9fade', GradientType=0);
	color: #2c2c2c;
}
#menu ul.dropdown-menu li.dropdown-submenu {
	background: url(../images/j_arrow.png) no-repeat right 50%;
}
#menu ul.dropdown-menu li.divider {
	margin-bottom: 0;
	border-bottom: 1px dotted #c7c8b2;
}
#menu a {
	color: #054993;
	background-repeat: no-repeat;
	background-position: left 50%;
}
#menu li {
	border-right: 1px solid #c7c8b2;
	background-color: transparent;
}
#menu li a:hover,
#menu li a:focus {
	background-color: #e5d9c3;
}
#menu li.disabled a:hover,
#menu li.disabled a:focus,
#menu li.disabled a {
	color: #c7c8b2;
	background-color: #f9fade;
	background-image: -moz-linear-gradient(top,#f9fade,#f9fade);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#f9fade),to(#f9fade));
	background-image: -webkit-linear-gradient(top,#f9fade,#f9fade);
	background-image: -o-linear-gradient(top,#f9fade,#f9fade);
	background-image: linear-gradient(to bottom,#f9fade,#f9fade);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9fade',
endColorstr='#fff9fade', GradientType=0);
}
#menu li ul {
	border: 1px solid #c7c8b2;
}
#menu li li {
	background-color: transparent;
}
#menu li.sfhover a {
	background-color: #e5d9c3;
}
#menu li.sfhover li a {
	background-color: transparent;
}
#menu li.sfhover li.sfhover a,
#menu li li a:focus {
	background-color: #e5d9c3;
}
#menu li.sfhover li.sfhover li a {
	background-color: transparent;
}
#menu li.sfhover li.sfhover li.sfhover a,
#menu li li li a:focus {
	background-color: #e5d9c3;
}
#menu li li a:focus,
#menu li li li a:focus {
	background-color: #e5d9c3;
}
#menu li li li a:focus {
	background-color: #e5d9c3;
}
#submenu {
	border-bottom: 1px solid #c7c8b2;
}
#submenu li,
#submenu span.nolink {
	background-color: #f9fade;
	background-image: -moz-linear-gradient(top,#f9fade,#f9fade);
	background-image: -webkit-gradient(linear,0 0,0
100%,from(#f9fade),to(#f9fade));
	background-image: -webkit-linear-gradient(top,#f9fade,#f9fade);
	background-image: -o-linear-gradient(top,#f9fade,#f9fade);
	background-image: linear-gradient(to bottom,#f9fade,#f9fade);
	background-repeat: repeat-x;
	filter:
progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9fade',
endColorstr='#fff9fade', GradientType=0);
	border: 1px solid #c7c8b2;
	color: #054993;
}
#submenu li:hover,
#submenu li:focus {
	background: #e5d9c3;
}
#submenu li.active,
#submenu span.nolink.active {
	background: #ffffff;
	border-bottom: 1px solid #ffffff;
}
#submenu li.active a,
#submenu span.nolink.active {
	color: #000;
}
.element-invisible {
	margin: 0;
	padding: 0;
}
div.CodeMirror-wrapping {
	border: 1px solid #c7c8b2;
}
table.adminform tr.row0 {
	background-color: #ffffff;
}
ul.alternating > li:nth-child(odd) {
	background-color: #ffffff;
}
ul.alternating > li:nth-child(even) {
	background-color: #f9fade;
}
ol.alternating > li:nth-child(odd) {
	background-color: #ffffff;
}
ol.alternating > li:nth-child(even) {
	background-color: #f9fade;
}
#installer-database,
#installer-discover,
#installer-update,
#installer-warnings {
	border-top: 1px solid #c7c8b2;
}
#installer-database p.warning {
	background: transparent url(../images/admin/icon-16-deny.png) center left
no-repeat;
}
#installer-database p.nowarning {
	background: transparent url(../images/admin/icon-16-allow.png) center left
no-repeat;
}
.input-append,
.input-prepend {
	font-size: 1.2em;
}
css/colour_standard_rtl.css000064400000015545151163244070012127
0ustar00@charset "UTF-8";

/**
 * @package		Joomla.Administrator
 * @subpackage	templates.hathor
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 * @since		1.6
 *
 * RTL CSS file for the color standard
 */

/**
 * Overall Styles
 */
#header {
	background: #ffffff url(../images/j_logo.png) no-repeat top right;
}

#element-box {
	border-left: 1px solid #c7c8b2;
	border-right: 1px solid #c7c8b2;
}

/**
 * Various Styles
 */

div.checkin-tick {
	background: url(../images/admin/tick.png) 20px 50% no-repeat;
}

/**
 * Subheader, toolbar, page title
 */
div.toolbar-box {
	border-left: 1px solid #c7c8b2;
	border-right: 1px solid #c7c8b2;
}

div.toolbar-list li.divider {
	border-left:1px dotted #e3e4ca;
	border-right:none;
}

div.toolbar-list a:hover {
	border-right: 1px solid #e3e4ca;
	border-left: 1px solid #c7c8b2;
}

/**
 * Pane Slider pane Toggler styles
 */
.pane-toggler  span {
	background: transparent url(../images/j_arrow_left.png) right 50%
no-repeat;
}

.pane-toggler-down span {
	background: transparent url(../images/j_arrow_down.png) right 50%
		no-repeat;
}

/**
 * Cpanel Settings
 */
#cpanel div.icon a:hover,
#cpanel div.icon a:focus {
	border-right: 1px solid #e3e4ca;
	border-left: 1px solid #c7c8b2;
}

fieldset#filter-bar {
	border-left: none;
	border-right: none;
}

/**
 * Admintable Styles
 */
table.admintable td.key,table.admintable td.paramlist_key {
	border-left: 1px solid #c7c8b2;
	border-right: none;
}

table.paramlist td.paramlist_description {
	border-left: 1px solid #c7c8b2;
	border-right: none;
}

/**
 * Admin Form Styles
 */
table.adminform tr {
	border-left: 1px solid #c7c8b2;
	border-right: none;
}

/**
 * Adminlist Table layout
 */

table.adminlist.modal {
	border-right: 1px solid #c7c8b2;
	border-left: 1px solid #c7c8b2;
}


/* Table row styles */

table.adminlist tbody tr td,
table.adminlist tbody tr th {
	border-left: 1px solid #c7c8b2;
	border-right: none;
}

table.adminlist tbody tr td:last-child {
	border-left: none;
}

/**
 * Saving order icon styling in admin tables
 */
a.saveorder {
	background: url(../images/admin/filesave.png) no-repeat;
}

a.saveorder.inactive {
	background-position: 0 -16px;
}

/**
 * Button styling
 */

/* Button 1 Type */

	/* Use this if you add images to the buttons such as directional arrows */

.button1 a {
	/* add padding if you are using the directional images */
	/* padding: 0 6px 0 30px; */
}

	/* Button 2 Type */

.button2-right .prev {
	background-image: url(../images/j_button2_prev.png);
	background-position: right center;
}

.button2-right.off .prev {
	background: url(../images/j_button2_prev_off.png) no-repeat;
}

.button2-right .start {
	background-image: url(../images/j_button2_first.png);
	background-position: right center;
}

.button2-left .next {
	background-image: url(../images/j_button2_next.png);
	background-position: left center;
}

.button2-left.off .next { /* @TODO check the x position */
	background: url(../images/j_button2_next_off.png) 100% 0 no-repeat;
}

.button2-left .end {
	background-image: url(../images/j_arrow_left.png);
	background-position: left center;
}

.button2-left.off .end { /* @TODO check the x position */
	background: url(../images/j_button2_last_off.png) 100% 0 no-repeat;
}

.button2-left .image {
	background: url(../images/j_button2_image.png) 100% 0 no-repeat;
}

.button2-left .readmore {
	background: url(../images/j_button2_readmore.png) 100% 0 no-repeat;
}

.button2-left .pagebreak {
	background: url(../images/j_button2_pagebreak.png) 100% 0 no-repeat;
}

/**
 * Tooltips
 */

/**
 * System Standard Messages
 */
#system-message dd.message ul {
	background: #C3D2E5 url(../images/notice-info.png) 99.5% center no-repeat;
}

/**
 * System Error Messages
 */
#system-message dd.error ul {
	background: #E6C0C0 url(../images/notice-alert.png) 99.5% top no-repeat;
}

/**
 * System Notice Messages
 */
#system-message dd.notice ul {
	background: #EFE7B8 url(../images/notice-note.png) 99%.5 top no-repeat;
}

/**
 * JGrid styles
 */

/**
 * Menu Icons
 * These icons are used on the Administrator menu
 * The classes are constructed dynamically when the menu is generated
 */


/**
 * Toolbar icons
 * These icons are used for the toolbar buttons
 * The classes are constructed dynamically when the toolbar is created
 */

/**
 * Quick Icons
 * Also knows as Header Icons
 * These are used for the Quick Icons on the Control Panel
 * The same classes are also assigned the Component Title
 */

/**
 * General styles
 */

.helpFrame {
	border-right: 0 solid #c7c8b2;
	border-left: none;
	border-top: none;
}

/* -- ACL STYLES relocated from com_users/media/grid.css ----------- */

/* -- ACL PANEL STYLES  ----------- */


/* All Tabs */

table.aclsummary-table td.col2,
table.aclsummary-table th.col2,
table.aclsummary-table td.col3,
table.aclsummary-table th.col3,
table.aclsummary-table td.col4,
table.aclsummary-table th.col4,
table.aclsummary-table td.col5,
table.aclsummary-table th.col5,
table.aclsummary-table td.col6,
table.aclsummary-table th.col6,
table.aclmodify-table td.col2,
table.aclmodify-table th.col2 {
	border-right: 1px solid #c7c8b2;
	border-left: none;
}

/* Icons */

ul.acllegend li.acl-allowed {
	background:url(../images/admin/icon-16-allow.png) no-repeat right;
}
ul.acllegend li.acl-denied {
	background:url(../images/admin/icon-16-deny.png) no-repeat right;
}

table#acl-config th.acl-groups {
	border-left: 1px solid #c7c8b2;
}

table#acl-config th.acl-groups {
	text-align: right;
}

.acl-action {
	margin: auto 0;
}

/* Icons */

span.icon-16-unset {
	background: url(../images/admin/icon-16-denyinactive.png) no-repeat right;
}

span.icon-16-allowed {
	background: url(../images/admin/icon-16-allow.png) no-repeat right;
}

span.icon-16-denied {
	background: url(../images/admin/icon-16-deny.png) no-repeat right;
}

span.icon-16-locked {
	background: url(../images/admin/checked_out.png) no-repeat right;
}

/**
* Mod_rewrite Warning
*/
#jform_sef_rewrite-lbl {
	background: url(../images/admin/icon-16-notice-note.png) left top
no-repeat;
}

/**
* Modal S-Box overrides
*/

#sbox-window {
	text-align: right;
}

/**
* Permission Rules
*/

#permissions-sliders ul#rules table.group-rules td {
    border-left: solid 1px #c7c8b2;
    border-right: solid 0 #c7c8b2;
}

#permissions-sliders ul#rules table.group-rules th {
    border-left: solid 1px #c7c8b2;
    border-right: solid 0 #c7c8b2;
}

/**
 * Menu Styling
 */

#menu ul li.node {
	background-image: url(../images/j_arrow_left.png);
	background-repeat: no-repeat;
	background-position: left 50%;
}

#menu a {
	background-position: right 50%;
}

#menu li {
	border-left: 1px solid #c7c8b2;
	border-right: 0 solid #c7c8b2;
}

#menu li li li a:focus {
	border-right: 1px solid #fafafa;
}

/* Installer Database */
#installer-database p.warning {
	background-position: center right;
}

#installer-database p.nowarning {
	background-position: center right;
}
css/error.css000064400000002316151163244070007204 0ustar00/**
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 */

.outline {
	border: 1px solid #cccccc;
	background: #ffffff;
	padding: 2px;
}

body {
	height: 100%;
	padding: 0;
	font-family: Arial, Helvetica, Sans Serif;
	font-size: 11px;
	color: #2c2c2c;
	background: #ffffff;
	width: 80%;
	min-width: 400px;
	margin: 15px auto;
}

div {
	background-color: #f9fade;
	padding: 8px;
	border: solid 1px #c7c8b2;
	margin-top: 13px;
	margin-bottom: 25px;
}

.frame {
	background-color: #f9fade;
	padding: 8px;
	border: solid 1px #c7c8b2;
	margin-top: 13px;
	margin-bottom: 25px;
}

.table {
	border-collapse: collapse;
	margin-top: 13px;
}

a {
	border: 1px solid #c7c8b2;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	background-color: #ffffff;
	color: #2c2c2c;
	padding: 3px 20px;
	text-decoration: none;
}

a:hover, a:focus, a:active {
	background-color: #e3e4ca;
	text-decoration: none;
}

td {
	padding: 3px;
	padding-left: 5px;
	padding-right: 5px;
	border: solid 1px #c7c8b2;
	font-size: 10px;
}

.type {
	background-color: #cc0000;
	color: #ffffff;
	font-weight: bold;
	padding: 3px;
}
css/ie7.css000064400000003722151163244070006541 0ustar00@charset
"UTF-8";

/**
 * @package		Joomla.Administrator
 * @subpackage	templates.hathor
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 * @since		1.6
 *
 * CSS file for IE7
 */

/**
 * Special Styles for Internet Explorer 7
 */

input {
	border-width: expression(this.type == "radio" ? '0px'
: this.type == "checkbox" ? '0px' : '1px');
}

div.toolbar-box {
	height: 65px;
}

div.toolbar-list span {
	margin: 0;
	position: relative
}

div.toolbar-list a {
	position: relative;
}

div#subheader {
	height: 2em;
}

#login-page .pagetitle h2 {
	margin: 0px;
	padding: 0px;
}

*:first-child+html .clearfix {
	min-height: 1px;
}

.menu-links li,
.menu-links li label {
	height: 2em;
}

div.article-edit,
div.category-edit {
	zoom: 1;
}

div.pane-sliders,
div.panel,
div.pane-slider,
div.rules-section,
div.mypanel,
div.containerpg,
div.pagination,
div.upload-queue {
	zoom: 1;
}

div.width-20 fieldset.adminform,
div.width-30 fieldset.adminform,
div.width-35 fieldset.adminform,
div.width-40 fieldset.adminform,
div.width-45 fieldset.adminform,
div.width-50 fieldset.adminform,
div.width-55 fieldset.adminform,
div.width-60 fieldset.adminform,
div.width-65 fieldset.adminform,
div.width-70 fieldset.adminform,
div.width-80 fieldset.adminform,
div.width-100 fieldset.adminform {
	zoom: 1;
	margin-bottom:10px;
}

div.toggle-editor {
	margin-top: -5px;
	margin-bottom: 5px;
}

table.adminlist {
	border-bottom-width: 1px;
}

div.current dd {
	width: 100%;
	position: relative;
}

#permissions-sliders ul#rules table.group-rules caption span {
	height: 0;
	overflow: hidden;
	position: absolute;
	padding:0;
	margin:0;
}

div.current ul.menu-links {
	zoom: 1;
	width: 25%;
	margin: 0;
	padding:0;
	list-style-position: inside;
}

div#position-icon.pane-sliders div.pane-down div.icon-wrapper {
	margin: 0;
}

fieldset.panelform fieldset.checkboxes.impunlimited {
	float: none;
	width: 170px;
}
css/ie8.css000064400000001015151163244070006533 0ustar00@charset
"UTF-8";

/**
 * @package		Joomla.Administrator
 * @subpackage	templates.hathor
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 * @since		1.6
 *
 * CSS file for IE8
 */

/**
 * Special Styles for Internet Explorer 8
 */

/* Accessibility: css in template.css for slider keyboard
 * has to be reversed here or the mouse does not work for ie */
.pane-toggler + div.pane-slider {
	/*display: block;*/
}
css/template.css000064400000203134151163244070007667 0ustar00.clearfix {
	*zoom: 1;
}
.clearfix:before,
.clearfix:after {
	display: table;
	content: "";
	line-height: 0;
}
.clearfix:after {
	clear: both;
}
.hide-text {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}
.input-block-level {
	display: block;
	width: 100%;
	min-height: 25px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.fade {
	opacity: 0;
	-webkit-transition: opacity .15s linear;
	-moz-transition: opacity .15s linear;
	-o-transition: opacity .15s linear;
	transition: opacity .15s linear;
}
.fade.in {
	opacity: 1;
}
.collapse {
	position: relative;
	height: 0;
	overflow: hidden;
	-webkit-transition: height .35s ease;
	-moz-transition: height .35s ease;
	-o-transition: height .35s ease;
	transition: height .35s ease;
}
.collapse.in {
	height: auto;
}
.modal-open .dropdown-menu {
	z-index: 2050;
}
.modal-open .dropdown.open {
	*z-index: 2050;
}
.modal-open .popover {
	z-index: 2110;
}
.modal-open .tooltip {
	z-index: 2080;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
	background-color: #000000;
}
.modal-backdrop.fade {
	opacity: 0;
}
.modal-backdrop,
.modal-backdrop.fade.in {
	opacity: 0.8;
	filter: alpha(opacity=80);
}
div.modal {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 1050;
	overflow: auto;
	width: 80%;
	margin: -250px 0 0 -40%;
	background-color: #ffffff;
	border: 1px solid #999;
	border: 1px solid rgba(0,0,0,0.3);
	*border: 1px solid #999;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;
}
div.modal.fade {
	-webkit-transition: opacity .3s linear, top .3s ease-out;
	-moz-transition: opacity .3s linear, top .3s ease-out;
	-o-transition: opacity .3s linear, top .3s ease-out;
	transition: opacity .3s linear, top .3s ease-out;
	top: -25%;
}
div.modal.fade.in {
	top: 50%;
}
.modal-header {
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
}
.modal-header .close {
	float: right;
	margin-top: 2px;
}
.modal-body {
	overflow-y: auto;
	max-height: 400px;
	padding: 15px;
}
.modal-form {
	margin-bottom: 0;
}
.modal-footer {
	padding: 14px 15px 15px;
	margin-bottom: 0;
	text-align: right;
	background-color: #f5f5f5;
	border-top: 1px solid #ddd;
	-webkit-border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	border-radius: 0 0 6px 6px;
	-webkit-box-shadow: inset 0 1px 0 #ffffff;
	-moz-box-shadow: inset 0 1px 0 #ffffff;
	box-shadow: inset 0 1px 0 #ffffff;
	*zoom: 1;
}
.modal-footer:before,
.modal-footer:after {
	display: table;
	content: "";
	line-height: 0;
}
.modal-footer:after {
	clear: both;
}
.modal-footer .btn + .btn {
	margin-left: 5px;
	margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
	margin-left: -1px;
}
body.modal-open {
	overflow: hidden;
	-ms-overflow-style: none;
}
.modal-buttons {
	padding: 15px 0px;
}
.modal-buttons button {
	font-size: 1.2em;
	line-height: 1.6em;
}
.popover {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1060;
	display: none;
	max-width: 276px;
	padding: 1px;
	text-align: left;
	background-color: #ffffff;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
	border: 1px solid #ccc;
	border: 1px solid rgba(0,0,0,0.2);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	white-space: normal;
}
.popover.top {
	margin-top: -10px;
}
.popover.right {
	margin-left: 10px;
}
.popover.bottom {
	margin-top: 10px;
}
.popover.left {
	margin-left: -10px;
}
.popover-title {
	margin: 0;
	padding: 8px 14px;
	font-size: 14px;
	font-weight: normal;
	line-height: 18px;
	background-color: #f7f7f7;
	border-bottom: 1px solid #ebebeb;
	-webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
}
.popover-title:empty {
	display: none;
}
.popover-content {
	padding: 9px 14px;
}
.popover .arrow,
.popover .arrow:after {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
}
.popover .arrow {
	border-width: 11px;
}
.popover .arrow:after {
	border-width: 10px;
	content: "";
}
.popover.top .arrow {
	left: 50%;
	margin-left: -11px;
	border-bottom-width: 0;
	border-top-color: #999;
	border-top-color: rgba(0,0,0,0.25);
	bottom: -11px;
}
.popover.top .arrow:after {
	bottom: 1px;
	margin-left: -10px;
	border-bottom-width: 0;
	border-top-color: #ffffff;
}
.popover.right .arrow {
	top: 50%;
	left: -11px;
	margin-top: -11px;
	border-left-width: 0;
	border-right-color: #999;
	border-right-color: rgba(0,0,0,0.25);
}
.popover.right .arrow:after {
	left: 1px;
	bottom: -10px;
	border-left-width: 0;
	border-right-color: #ffffff;
}
.popover.bottom .arrow {
	left: 50%;
	margin-left: -11px;
	border-top-width: 0;
	border-bottom-color: #999;
	border-bottom-color: rgba(0,0,0,0.25);
	top: -11px;
}
.popover.bottom .arrow:after {
	top: 1px;
	margin-left: -10px;
	border-top-width: 0;
	border-bottom-color: #ffffff;
}
.popover.left .arrow {
	top: 50%;
	right: -11px;
	margin-top: -11px;
	border-right-width: 0;
	border-left-color: #999;
	border-left-color: rgba(0,0,0,0.25);
}
.popover.left .arrow:after {
	right: 1px;
	border-right-width: 0;
	border-left-color: #ffffff;
	bottom: -10px;
}
@font-face {
	font-family: 'IcoMoon';
	src: url('../../../../media/jui/fonts/IcoMoon.eot');
	src: url('../../../../media/jui/fonts/IcoMoon.eot?#iefix')
format('embedded-opentype'),
url('../../../../media/jui/fonts/IcoMoon.woff')
format('woff'),
url('../../../../media/jui/fonts/IcoMoon.ttf')
format('truetype'),
url('../../../../media/jui/fonts/IcoMoon.svg#IcoMoon')
format('svg');
	font-weight: normal;
	font-style: normal;
}
[data-icon]:before {
	font-family: 'IcoMoon';
	content: attr(data-icon);
	speak: none;
}
[class^="icon-"],
[class*=" icon-"] {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: .25em;
	line-height: 14px;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
	font-family: 'IcoMoon';
	font-style: normal;
	speak: none;
}
[class^="icon-"].disabled,
[class*=" icon-"].disabled {
	font-weight: normal;
}
.icon-joomla:before {
	content: "\e200";
}
.icon-chevron-up:before,
.icon-uparrow:before,
.icon-arrow-up:before {
	content: "\e005";
}
.icon-chevron-right:before,
.icon-rightarrow:before,
.icon-arrow-right:before {
	content: "\e006";
}
.icon-chevron-down:before,
.icon-downarrow:before,
.icon-arrow-down:before {
	content: "\e007";
}
.icon-chevron-left:before,
.icon-leftarrow:before,
.icon-arrow-left:before {
	content: "\e008";
}
.icon-arrow-first:before {
	content: "\e003";
}
.icon-arrow-last:before {
	content: "\e004";
}
.icon-arrow-up-2:before {
	content: "\e009";
}
.icon-arrow-right-2:before {
	content: "\e00a";
}
.icon-arrow-down-2:before {
	content: "\e00b";
}
.icon-arrow-left-2:before {
	content: "\e00c";
}
.icon-arrow-up-3:before {
	content: "\e00f";
}
.icon-arrow-right-3:before {
	content: "\e010";
}
.icon-arrow-down-3:before {
	content: "\e011";
}
.icon-arrow-left-3:before {
	content: "\e012";
}
.icon-menu-2:before {
	content: "\e00e";
}
.icon-arrow-up-4:before {
	content: "\e201";
}
.icon-arrow-right-4:before {
	content: "\e202";
}
.icon-arrow-down-4:before {
	content: "\e203";
}
.icon-arrow-left-4:before {
	content: "\e204";
}
.icon-share:before,
.icon-redo:before {
	content: "\27";
}
.icon-undo:before {
	content: "\28";
}
.icon-forward-2:before {
	content: "\e205";
}
.icon-backward-2:before,
.icon-reply:before {
	content: "\e206";
}
.icon-unblock:before,
.icon-refresh:before,
.icon-redo-2:before {
	content: "\6c";
}
.icon-undo-2:before {
	content: "\e207";
}
.icon-move:before {
	content: "\7a";
}
.icon-expand:before {
	content: "\66";
}
.icon-contract:before {
	content: "\67";
}
.icon-expand-2:before {
	content: "\68";
}
.icon-contract-2:before {
	content: "\69";
}
.icon-play:before {
	content: "\e208";
}
.icon-pause:before {
	content: "\e209";
}
.icon-stop:before {
	content: "\e210";
}
.icon-previous:before,
.icon-backward:before {
	content: "\7c";
}
.icon-next:before,
.icon-forward:before {
	content: "\7b";
}
.icon-first:before {
	content: "\7d";
}
.icon-last:before {
	content: "\e000";
}
.icon-play-circle:before {
	content: "\e00d";
}
.icon-pause-circle:before {
	content: "\e211";
}
.icon-stop-circle:before {
	content: "\e212";
}
.icon-backward-circle:before {
	content: "\e213";
}
.icon-forward-circle:before {
	content: "\e214";
}
.icon-loop:before {
	content: "\e001";
}
.icon-shuffle:before {
	content: "\e002";
}
.icon-search:before {
	content: "\53";
}
.icon-zoom-in:before {
	content: "\64";
}
.icon-zoom-out:before {
	content: "\65";
}
.icon-apply:before,
.icon-edit:before,
.icon-pencil:before {
	content: "\2b";
}
.icon-pencil-2:before {
	content: "\2c";
}
.icon-brush:before {
	content: "\3b";
}
.icon-save-new:before,
.icon-plus-2:before {
	content: "\5d";
}
.icon-minus-sign:before,
.icon-minus-2:before {
	content: "\5e";
}
.icon-delete:before,
.icon-remove:before,
.icon-cancel-2:before {
	content: "\49";
}
.icon-publish:before,
.icon-save:before,
.icon-ok:before,
.icon-checkmark:before {
	content: "\47";
}
.icon-new:before,
.icon-plus:before {
	content: "\2a";
}
.icon-plus-circle:before {
	content: "\e215";
}
.icon-minus:before,
.icon-not-ok:before {
	content: "\4b";
}
.icon-ban-circle:before,
.icon-minus-circle:before {
	content: "\e216";
}
.icon-unpublish:before,
.icon-cancel:before {
	content: "\4a";
}
.icon-cancel-circle:before {
	content: "\e217";
}
.icon-checkmark-2:before {
	content: "\e218";
}
.icon-checkmark-circle:before {
	content: "\e219";
}
.icon-info:before {
	content: "\e220";
}
.icon-info-2:before,
.icon-info-circle:before {
	content: "\e221";
}
.icon-question:before,
.icon-question-sign:before,
.icon-help:before {
	content: "\45";
}
.icon-question-2:before,
.icon-question-circle:before {
	content: "\e222";
}
.icon-notification:before {
	content: "\e223";
}
.icon-notification-2:before,
.icon-notification-circle:before {
	content: "\e224";
}
.icon-pending:before,
.icon-warning:before {
	content: "\48";
}
.icon-warning-2:before,
.icon-warning-circle:before {
	content: "\e225";
}
.icon-checkbox-unchecked:before {
	content: "\3d";
}
.icon-checkin:before,
.icon-checkbox:before,
.icon-checkbox-checked:before {
	content: "\3e";
}
.icon-checkbox-partial:before {
	content: "\3f";
}
.icon-square:before {
	content: "\e226";
}
.icon-radio-unchecked:before {
	content: "\e227";
}
.icon-radio-checked:before,
.icon-generic:before {
	content: "\e228";
}
.icon-circle:before {
	content: "\e229";
}
.icon-signup:before {
	content: "\e230";
}
.icon-grid:before,
.icon-grid-view:before {
	content: "\58";
}
.icon-grid-2:before,
.icon-grid-view-2:before {
	content: "\59";
}
.icon-menu:before {
	content: "\5a";
}
.icon-list:before,
.icon-list-view:before {
	content: "\31";
}
.icon-list-2:before {
	content: "\e231";
}
.icon-menu-3:before {
	content: "\e232";
}
.icon-folder-open:before,
.icon-folder:before {
	content: "\2d";
}
.icon-folder-close:before,
.icon-folder-2:before {
	content: "\2e";
}
.icon-folder-plus:before {
	content: "\e234";
}
.icon-folder-minus:before {
	content: "\e235";
}
.icon-folder-3:before {
	content: "\e236";
}
.icon-folder-plus-2:before {
	content: "\e237";
}
.icon-folder-remove:before {
	content: "\e238";
}
.icon-file:before {
	content: "\e016";
}
.icon-file-2:before {
	content: "\e239";
}
.icon-file-add:before,
.icon-file-plus:before {
	content: "\29";
}
.icon-file-minus:before {
	content: "\e017";
}
.icon-file-check:before {
	content: "\e240";
}
.icon-file-remove:before {
	content: "\e241";
}
.icon-save-copy:before,
.icon-copy:before {
	content: "\e018";
}
.icon-stack:before {
	content: "\e242";
}
.icon-tree:before {
	content: "\e243";
}
.icon-tree-2:before {
	content: "\e244";
}
.icon-paragraph-left:before {
	content: "\e246";
}
.icon-paragraph-center:before {
	content: "\e247";
}
.icon-paragraph-right:before {
	content: "\e248";
}
.icon-paragraph-justify:before {
	content: "\e249";
}
.icon-screen:before {
	content: "\e01c";
}
.icon-tablet:before {
	content: "\e01d";
}
.icon-mobile:before {
	content: "\e01e";
}
.icon-box-add:before {
	content: "\51";
}
.icon-box-remove:before {
	content: "\52";
}
.icon-download:before {
	content: "\e021";
}
.icon-upload:before {
	content: "\e022";
}
.icon-home:before {
	content: "\21";
}
.icon-home-2:before {
	content: "\e250";
}
.icon-out-2:before,
.icon-new-tab:before {
	content: "\e024";
}
.icon-out-3:before,
.icon-new-tab-2:before {
	content: "\e251";
}
.icon-link:before {
	content: "\e252";
}
.icon-picture:before,
.icon-image:before {
	content: "\2f";
}
.icon-pictures:before,
.icon-images:before {
	content: "\30";
}
.icon-palette:before,
.icon-color-palette:before {
	content: "\e014";
}
.icon-camera:before {
	content: "\55";
}
.icon-camera-2:before,
.icon-video:before {
	content: "\e015";
}
.icon-play-2:before,
.icon-video-2:before,
.icon-youtube:before {
	content: "\56";
}
.icon-music:before {
	content: "\57";
}
.icon-user:before {
	content: "\22";
}
.icon-users:before {
	content: "\e01f";
}
.icon-vcard:before {
	content: "\6d";
}
.icon-address:before {
	content: "\70";
}
.icon-share-alt:before,
.icon-out:before {
	content: "\26";
}
.icon-enter:before {
	content: "\e257";
}
.icon-exit:before {
	content: "\e258";
}
.icon-comment:before,
.icon-comments:before {
	content: "\24";
}
.icon-comments-2:before {
	content: "\25";
}
.icon-quote:before,
.icon-quotes-left:before {
	content: "\60";
}
.icon-quote-2:before,
.icon-quotes-right:before {
	content: "\61";
}
.icon-quote-3:before,
.icon-bubble-quote:before {
	content: "\e259";
}
.icon-phone:before {
	content: "\e260";
}
.icon-phone-2:before {
	content: "\e261";
}
.icon-envelope:before,
.icon-mail:before {
	content: "\4d";
}
.icon-envelope-opened:before,
.icon-mail-2:before {
	content: "\4e";
}
.icon-unarchive:before,
.icon-drawer:before {
	content: "\4f";
}
.icon-archive:before,
.icon-drawer-2:before {
	content: "\50";
}
.icon-briefcase:before {
	content: "\e020";
}
.icon-tag:before {
	content: "\e262";
}
.icon-tag-2:before {
	content: "\e263";
}
.icon-tags:before {
	content: "\e264";
}
.icon-tags-2:before {
	content: "\e265";
}
.icon-options:before,
.icon-cog:before {
	content: "\38";
}
.icon-cogs:before {
	content: "\37";
}
.icon-screwdriver:before,
.icon-tools:before {
	content: "\36";
}
.icon-wrench:before {
	content: "\3a";
}
.icon-equalizer:before {
	content: "\39";
}
.icon-dashboard:before {
	content: "\78";
}
.icon-switch:before {
	content: "\e266";
}
.icon-filter:before {
	content: "\54";
}
.icon-purge:before,
.icon-trash:before {
	content: "\4c";
}
.icon-checkedout:before,
.icon-lock:before,
.icon-locked:before {
	content: "\23";
}
.icon-unlock:before {
	content: "\e267";
}
.icon-key:before {
	content: "\5f";
}
.icon-support:before {
	content: "\46";
}
.icon-database:before {
	content: "\62";
}
.icon-scissors:before {
	content: "\e268";
}
.icon-health:before {
	content: "\6a";
}
.icon-wand:before {
	content: "\6b";
}
.icon-eye-open:before,
.icon-eye:before {
	content: "\3c";
}
.icon-eye-close:before,
.icon-eye-blocked:before,
.icon-eye-2:before {
	content: "\e269";
}
.icon-clock:before {
	content: "\6e";
}
.icon-compass:before {
	content: "\6f";
}
.icon-broadcast:before,
.icon-connection:before,
.icon-wifi:before {
	content: "\e01b";
}
.icon-book:before {
	content: "\e271";
}
.icon-lightning:before,
.icon-flash:before {
	content: "\79";
}
.icon-print:before,
.icon-printer:before {
	content: "\e013";
}
.icon-feed:before {
	content: "\71";
}
.icon-calendar:before {
	content: "\43";
}
.icon-calendar-2:before {
	content: "\44";
}
.icon-calendar-3:before {
	content: "\e273";
}
.icon-pie:before {
	content: "\77";
}
.icon-bars:before {
	content: "\76";
}
.icon-chart:before {
	content: "\75";
}
.icon-power-cord:before {
	content: "\32";
}
.icon-cube:before {
	content: "\33";
}
.icon-puzzle:before {
	content: "\34";
}
.icon-attachment:before,
.icon-paperclip:before,
.icon-flag-2:before {
	content: "\72";
}
.icon-lamp:before {
	content: "\74";
}
.icon-pin:before,
.icon-pushpin:before {
	content: "\73";
}
.icon-location:before {
	content: "\63";
}
.icon-shield:before {
	content: "\e274";
}
.icon-flag:before {
	content: "\35";
}
.icon-flag-3:before {
	content: "\e275";
}
.icon-bookmark:before {
	content: "\e023";
}
.icon-bookmark-2:before {
	content: "\e276";
}
.icon-heart:before {
	content: "\e277";
}
.icon-heart-2:before {
	content: "\e278";
}
.icon-thumbs-up:before {
	content: "\5b";
}
.icon-thumbs-down:before {
	content: "\5c";
}
.icon-unfeatured:before,
.icon-asterisk:before,
.icon-star-empty:before {
	content: "\40";
}
.icon-star-2:before {
	content: "\41";
}
.icon-featured:before,
.icon-default:before,
.icon-star:before {
	content: "\42";
}
.icon-smiley:before,
.icon-smiley-happy:before {
	content: "\e279";
}
.icon-smiley-2:before,
.icon-smiley-happy-2:before {
	content: "\e280";
}
.icon-smiley-sad:before {
	content: "\e281";
}
.icon-smiley-sad-2:before {
	content: "\e282";
}
.icon-smiley-neutral:before {
	content: "\e283";
}
.icon-smiley-neutral-2:before {
	content: "\e284";
}
.icon-cart:before {
	content: "\e019";
}
.icon-basket:before {
	content: "\e01a";
}
.icon-credit:before {
	content: "\e286";
}
.icon-credit-2:before {
	content: "\e287";
}
.icon-expired:before {
	content: "\4b";
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	background: transparent;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
del {
	text-decoration: line-through;
}
html {
	overflow-y: scroll;
	height: 100%;
}
body {
	margin: 0;
	padding: 0;
	font-size: 62.5%;
	line-height: 1.5em;
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body,
td,
th,
span,
a {
	font-family: Arial, Helvetica, sans-serif;
}
html,
body {
	height: 100%;
}
a,
img {
	padding: 0;
	margin: 0;
}
img {
	border: 0 none;
}
form {
	margin: 0;
	padding: 0;
}
ul {
	padding: 0;
	margin: 0;
}
h1 {
	margin: 0;
	padding-bottom: 8px;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 2em;
}
h2 {
	padding-top: .83em;
	padding-bottom: .83em;
}
h3 {
	font-size: 1.4em;
}
a:link {
	color: #054993;
	text-decoration: none;
}
a:visited {
	color: #054993;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:focus {
	text-decoration: underline;
}
iframe {
	border: 0;
}
.enabled {
	color: #005800;
	font-weight: bold;
}
.disabled {
	color: #a20000;
	font-weight: bold;
}
p.error {
	color: #a20000;
	font-weight: bold;
}
.warning {
	color: #a20000;
	font-weight: bold;
}
.nowarning {
	color: #2c2c2c;
	font-weight: bold;
}
.success {
	color: #005800;
	font-weight: bold;
}
.allow {
	color: #005800;
}
span.writable {
	color: #005800;
}
.deny {
	color: #a20000;
}
span.unwritable {
	color: #a20000;
}
.none {
	color: #aaaaaa;
}
.pointer {
	cursor: pointer;
}
.nowrap {
	white-space: nowrap;
}
p.nowarning,
p.warning {
	margin: 10px;
}
#minwidth,
#minwidth-body {
	min-width: 980px;
}
#containerwrap {
	position: relative;
}
#header {
	position: relative;
}
#header h1.title {
	font-size: 1.5em;
	font-weight: normal;
	line-height: 25px;
	margin: 0;
	padding: 0 0 0 120px;
}
#footer {
	padding: 10px 20px;
}
#footer .copyright {
	margin: 0 0 0 0;
	text-align: center;
}
#footer p {
	font-size: 1.2em;
}
#nav .no-nav {
	line-height: 2em;
}
#content {
	margin: 5px 20px 20px 20px;
}
.cpanel-page div#element-box {
	padding: 15px;
}
#module-status {
	float: right;
	position: relative;
	top: -48px;
}
#module-status div.btn-group {
	display: block;
	float: left;
	padding: 4px 10px 0 10px;
	font-size: 1.2em;
}
#module-status div.divider {
	display: none;
}
#module-status .unread-messages a {
	font-weight: bold;
}
.title-ua {
	position: relative;
	width: 60%;
}
.enabled,
.disabled,
p.error,
.warning,
.nowarning,
.success {
	font-weight: bold;
}
.pointer {
	cursor: pointer;
}
.nowrap {
	white-space: nowrap;
}
span.note {
	display: block;
	padding: 5px;
}
div.checkin-tick {
	text-indent: -9999px;
}
.ol-textfont {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
}
.ol-captionfont {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	font-weight: bold;
}
.ol-captionfont a {
	text-decoration: none;
}
div.subheader .padding {
	padding: 0;
}
div.pagetitle {
	padding: 0 0 5px 5px;
	margin: 0;
	background-repeat: no-repeat;
	background-position: left 50%;
	line-height: 54px;
	width: 100%;
	margin-top: -20px;
	height: 60px;
}
.tabs-left > .nav-tabs {
	float: left;
	margin-right: 19px;
	border-right: 1px solid #DDD;
}
tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
	border-bottom: 0;
}
.tab-content {
	overflow: visible;
}
.tabs-left .tab-content {
	overflow: auto;
}
.nav-tabs > li > span {
	display: block;
	margin-right: 2px;
	padding-right: 12px;
	padding-left: 12px;
	padding-top: 8px;
	padding-bottom: 8px;
	line-height: 18px;
	border: 1px solid transparent;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
}
.btn-micro {
	padding: 1px 4px;
	font-size: 10px;
	line-height: 8px;
}
.tip-wrap {
	max-width: 200px;
	padding: 3px 8px;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	z-index: 100;
}
.pagetitle h2 {
	padding: 0 0 0 50px;
	font-size: 1.3em;
	font-weight: bold;
	line-height: 48px;
	font-style: italic;
}
div.configuration {
	font-size: 1.2em;
	font-weight: bold;
	line-height: 2em;
	padding-left: 30px;
	margin-left: 10px;
}
div.toolbar-box h3 {
	height: 0;
	overflow: hidden;
	position: absolute;
	padding: 0;
	margin: 0;
}
.btn-toolbar {
	margin-bottom: 3px;
	margin-top: 14px;
}
div.btn-toolbar,
div.toolbar-list {
	float: left;
	text-align: left;
	padding: 0;
}
div.toolbar-list li {
	padding: 5px 1px 5px 4px;
	text-align: center;
	height: 52px;
	list-style: none;
	float: left;
}
div.toolbar-list li.spacer {
	width: 10px;
}
div.toolbar-list li.divider {
	width: 10px;
	margin-right: 10px;
}
div.toolbar-list span {
	float: none;
	width: 32px;
	height: 32px;
	margin: 0 auto;
	display: block;
}
div.toolbar-list a {
	display: block;
	float: left;
	white-space: nowrap;
	padding: 1px 5px;
	cursor: pointer;
	font-weight: bold;
}
div.btn-toolbar div.btn-group button {
	display: block;
	float: left;
	white-space: nowrap;
	padding: 1px 5px;
	cursor: pointer;
	text-align: center;
}
div.btn-toolbar button:hover,
div.btn-toolbar button:focus,
div.toolbar-list a:hover,
div.toolbar-list a:focus {
	text-decoration: none;
}
td#mm_pane {
	width: 90%;
}
input#mm_subject {
	width: 200px;
}
textarea#mm_message {
	width: 100%;
}
textarea {
	resize: both;
}
textarea.vert {
	resize: vertical;
}
textarea.noResize {
	resize: none;
}
.pane-sliders {
	margin: 0;
	position: relative;
}
.pane-sliders .title {
	margin: 0;
	padding: 2px;
	cursor: pointer;
}
.pane-sliders .panel {
	margin-bottom: 3px;
}
.pane-sliders .adminlist td {
	border: 0 none;
}
h3.pane-toggler-down a:focus,
h3.pane-toggler a:focus {
	outline: none;
}
.pane-toggler span {
	padding-left: 20px;
}
.pane-toggler-down span {
	padding-left: 20px;
}
.pane-slider.pane-hide {
	display: none;
}
div#position-icon.pane-sliders div.pane-down div.quickicon-wrapper {
	margin: 5px 0 5px 0;
}
div#position-icon.pane-sliders div.pane-down .quickicon-wrapper .icon {
	padding: 5px 0 5px 10px;
	margin: 0;
}
dl.tabs {
	float: left;
	margin: 10px 0 -1px 0;
	z-index: 50;
}
dl.tabs dt {
	float: left;
	padding: 4px 10px;
	margin-left: 3px;
}
dl.tabs dt.open {
	z-index: 100;
}
div.current {
	clear: both;
	padding: 10px 10px;
}
div.current dd {
	padding: 0;
	margin: 0;
}
dl#content-pane.tabs {
	margin: 1px 0 0 0;
}
div.current label,
div.current span.faux-label {
	display: block;
	min-width: 150px;
	float: left;
	clear: left;
	margin-top: 8px;
}
div.current fieldset.radio {
	float: left;
}
div.current fieldset.radio input {
	clear: none;
	min-width: 15px;
	float: left;
	margin: 3px 0 0 2px;
}
div.current fieldset.radio label {
	clear: none;
	min-width: 45px;
	float: left;
	margin: 3px 0 0 2px;
}
div.current fieldset.checkboxes {
	float: left;
	clear: right;
}
div.current fieldset.checkboxes input {
	clear: left;
	min-width: 15px;
	float: left;
	margin: 3px 0 0 2px;
}
div.current fieldset.checkboxes label {
	clear: right;
	min-width: 45px;
	margin: 3px 0 0 2px;
}
div.current input,
div.current span.faux-input,
div.current textarea,
div.current select {
	clear: none;
	float: left;
	margin: 3px 0 0 2px;
}
div.current select {
	margin-bottom: 15px;
}
div.current table#acl-config th.acl-groups {
	text-align: left;
}
div.current table#filter-config th.acl-groups {
	text-align: left;
}
div.current table#filter-config select {
	margin-bottom: 0;
}
div#menu-assignment {
	clear: left;
}
div#menu-assignment ul.menu-links {
	float: left;
	width: 49%;
}
div#menu-assignment ul.menu-links label {
	clear: none;
	float: left;
	margin: 3px 0 0 2px;
}
div#menu-assignment ul.menu-links input {
	clear: left;
	float: left;
}
button.jform-rightbtn {
	float: right;
	margin-right: 0;
}
p.tab-description {
	font-size: 1.091em;
	margin-left: 0;
	margin-top: 5px;
}
#login-page input,
#login-page select {
	float: right;
	clear: none;
}
#login-page .login {
	margin: 0 auto;
	width: 575px;
	margin-bottom: 100px;
}
#login-page .pagetitle h2 {
	margin: -70px 0 30px 0;
	font-size: 2em;
	padding: 0;
}
#login-page p {
	margin: 0;
	padding: 0;
	margin-bottom: 1em;
	font-size: 1.2em;
}
#login-page #header {
	margin-bottom: 100px;
}
#login-page .login-inst {
	float: left;
	width: 35%;
}
#login-page .login-box {
	float: right;
	width: 63%;
}
#login-page #lock {
	width: 150px;
	height: 137px;
}
#login-page #element-box.login {
	padding: 20px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
#login-page .button {
	text-align: right;
}
#login-page .login-text {
	text-align: left;
	width: 40%;
	float: left;
}
#form-login {
	float: left;
	padding: 1.1em;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
#form-login fieldset {
	border: none;
}
#form-login label {
	display: block;
	float: left;
	clear: left;
	width: 100px;
	text-align: right;
	padding: 4px;
	color: #2c2c2c;
	font-weight: bold;
	font-size: 1.4em;
	margin-bottom: 15px;
}
#form-login div.button1 div.next {
	float: left;
}
#form-login div.button1 a {
	height: 2.2em;
	line-height: 2.2em;
	font-size: 1.5em;
	cursor: default;
	padding: 0 15px 0 15px;
}
.login-submit {
	border: 0;
	padding: 0;
	margin: 0;
	width: 0;
	height: 0;
}
#cpanel div.icon,
.cpanel div.icon {
	text-align: center;
	margin-right: 5px;
	float: left;
	margin-bottom: 5px;
}
#cpanel div.icon a,
.cpanel div.icon a {
	display: block;
	float: left;
	height: auto;
	min-height: 97px;
	width: 108px;
	color: #2c2c2c;
	vertical-align: middle;
	text-decoration: none;
	font-weight: bold;
}
#cpanel img,
.cpanel img {
	padding: 10px;
	margin: 0 auto;
}
#cpanel span,
.cpanel span {
	display: block;
	text-align: center;
	padding: 0 0 5px;
}
div.cpanel-icons {
	width: 54%;
	float: left;
}
div.cpanel-component {
	width: 45%;
	float: right;
}
div.col {
	float: left;
}
div.options-section.col {
	float: right;
}
div.col1 {
	float: left;
	width: 45%;
}
div.col2 {
	float: right;
	width: 45%;
}
div.width-1 {
	width: 1%;
}
div.width-3 {
	width: 3%;
}
div.width-5 {
	width: 5%;
}
div.width-10 {
	width: 10%;
}
div.width-20 {
	width: 20%;
}
div.width-30 {
	width: 30%;
}
div.width-35 {
	width: 35%;
}
div.width-40 {
	width: 40%;
}
div.width-45 {
	width: 45%;
}
div.width-50 {
	width: 50%;
}
div.width-55 {
	width: 55%;
}
div.width-60 {
	width: 60%;
}
div.width-65 {
	width: 65%;
}
div.width-70 {
	width: 70%;
}
div.width-80 {
	width: 80%;
}
div.width-100 {
	width: 100%;
}
.clrlft {
	clear: left;
}
.clrrt {
	clear: right;
}
.fltlft {
	float: left;
}
.fltrt {
	float: right;
}
.fltnone {
	float: none;
}
div.main-section {
	width: 60%;
}
div.options-section {
	width: 38%;
	margin: 10px 10px 10px 0;
}
div.width-40.fltrt {
	width: 38%;
	margin: 10px 10px 10px 0;
}
div.rules-section {
	width: 98%;
	margin: 10px;
}
fieldset {
	margin: 2px 10px 2px 10px;
	padding: 5px;
	text-align: left;
}
legend {
	font-size: 1.3em;
	font-weight: bold;
	padding-bottom: 5px;
}
fieldset p {
	margin: 10px 0;
	font-size: 1.2em;
}
fieldset ol,
ol#property-values,
fieldset ul,
ul#property-values {
	margin: 0;
	padding: 0;
}
fieldset li,
ol#property-values li,
ul#property-values li {
	list-style: none;
	margin: 0;
	padding: 5px;
}
fieldset.adminform fieldset.radio,
fieldset.panelform fieldset.radio,
fieldset.adminform-legacy fieldset.radio {
	border: 0;
	float: left;
	padding: 0;
	margin: 0 0 5px 0;
	clear: right;
}
fieldset.adminform fieldset.radio label,
fieldset.panelform fieldset.radio label,
fieldset.adminform fieldset.radio span.faux-label,
fieldset.panelform fieldset.radio span.faux-label {
	min-width: 40px;
	float: left;
	clear: none;
}
fieldset.adminform fieldset.checkboxes,
fieldset.panelform fieldset.checkboxes,
fieldset.adminform-legacy fieldset.checkboxes {
	border: 0;
	float: left;
	padding: 0;
	margin: 0 0 5px 0;
	clear: right;
}
fieldset.adminform fieldset.checkboxes input[type="checkbox"],
fieldset.panelform fieldset.checkboxes input[type="checkbox"] {
	float: left;
	clear: left;
}
fieldset.adminform fieldset.checkboxes label,
fieldset.panelform fieldset.checkboxes label,
fieldset.adminform fieldset.checkboxes span.faux-label,
fieldset.panelform fieldset.checkboxes span.faux-label {
	clear: right;
}
div.current span.spacer > span.before,
fieldset.adminform span.spacer > span.before,
fieldset.panelform span.spacer > span.before {
	clear: both;
	overflow: hidden;
	height: 0;
	display: block;
}
fieldset.panelform-legacy label,
fieldset.adminform-legacy label,
fieldset.panelform-legacy span.faux-label,
fieldset.adminform-legacy span.faux-label {
	min-width: 150px;
	float: left;
}
fieldset.adminform .input-prepend,
fieldset.adminform .input-append,
fieldset.panelform .input-prepend,
fieldset.panelform .input-append {
	float: left;
}
fieldset.adminform .adminformlist .btn.modal,
fieldset.adminform .input-prepend > *,
fieldset.adminform .input-append > *,
fieldset.panelform .adminformlist .btn.modal,
fieldset.panelform .input-prepend > *,
fieldset.panelform .input-append > * {
	float: none;
	vertical-align: middle;
}
fieldset.panelform-legacy label.radiobtn-jno,
fieldset.panelform-legacy label.radiobtn-jyes,
fieldset.panelform-legacy label.radiobtn-show,
fieldset.panelform-legacy label.radiobtn-hide,
fieldset.panelform-legacy label.radiobtn-off,
fieldset.panelform-legacy label.radiobtn-on {
	min-width: 40px !important;
	clear: none !important;
}
#jform_plugdesc-lbl,
#jform_description-lbl {
	font-weight: bold;
	clear: both;
	margin-top: 15px;
}
p.jform_desc {
	clear: left;
}
div#jform_ordering {
	font-size: 1.091em;
	margin-top: 3px;
}
fieldset ul.checklist {
	margin-left: 27px;
}
fieldset ul.checklist input,
fieldset ul.checklist label {
	float: none;
}
fieldset ul.checklist input:focus {
	outline: thin dotted #333333;
}
fieldset#filter-bar {
	margin: 0;
	padding: 5px 10px 5px 10px;
	float: left;
	width: 98%;
}
fieldset#filter-bar ol,
fieldset#filter-bar ul {
	list-style: none;
	margin: 0;
	padding: 5px 0 0;
}
fieldset#filter-bar ol li,
fieldset#filter-bar ul li {
	float: left;
	padding: 0 5px 0 0;
}
fieldset#filter-bar ol li fieldset,
fieldset#filter-bar ul li fieldset {
	margin: 0;
	padding: 0;
}
fieldset#filter-bar .filter-search {
	float: left;
	padding-bottom: 3px;
}
fieldset#filter-bar .filter-select {
	float: right;
}
fieldset#filter-bar input#search {
	width: 10em;
}
.invalid {
	font-weight: bold;
}
input.readonly,
span.faux-input {
	border: 0;
}
.star {
	color: #cc0000;
	font-size: 1.2em;
}
input,
select,
span.faux-input {
	font-size: 1.2em;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
span.readonly {
	float: left;
	font-size: 1.2em;
	line-height: 2em;
}
div.readonly {
	font-size: 1.2em;
	line-height: 2em;
}
div.extdescript {
	margin-left: 10px;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {
	font-family: Arial, Helvetica, sans-serif;
	padding: 1px 6px;
	font-size: 1.2em;
	line-height: 1.5em;
}
textarea {
	font-size: 1.4em;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
input.button {
	cursor: pointer;
}
label {
	font-weight: bold;
	font-size: 1.1em;
}
span.faux-label {
	font-weight: bold;
	font-size: 1.1em;
}
label.selectlabel {
	position: absolute;
	left: -1000em;
}
.paramrules {
	padding: 10px;
}
span.gi {
	font-weight: bold;
	margin-right: 5px;
}
span.gtr {
	visibility: hidden;
	margin-right: 5px;
}
table.admintable td {
	padding: 3px;
	font-size: 1em;
}
table.admintable td.key,
table.admintable td.paramlist_key {
	text-align: right;
	width: 140px;
	font-weight: bold;
	font-size: 1em;
}
table.admintable td.key label,
table.admintable td.paramlist_key label {
	font-size: 1em;
}
table.admintable td.paramlist_value label {
	font-size: 1em;
}
table.admintable input,
table.admintable span.faux-input,
table.admintable select {
	font-size: 1em;
}
table.paramlist td.paramlist_description {
	text-align: left;
	width: 170px;
	font-weight: normal;
}
table.admintable td.key.vtop {
	vertical-align: top;
}
fieldset.adminform {
	margin: 0 10px 10px 10px;
	overflow: hidden;
}
.adminformlist .btn.modal {
	float: left;
	margin-top: 7px;
}
ul.adminformlist,
ul.adminformlist li,
dl.adminformlist,
dl.adminformlist li {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.adminformlist pre {
	font-size: 1.3em;
}
ul.adminformlist .button2-left,
ul.adminformlist .button2-left {
	margin-top: 5px;
}
table.adminform {
	width: 100%;
	border-collapse: collapse;
	margin: 8px 0 10px 0;
	margin-bottom: 15px;
}
table.adminform.nospace {
	margin-bottom: 0;
}
table.adminform th {
	font-size: 1.4em;
	padding: 6px 2px 4px 4px;
	text-align: left;
	height: 25px;
}
table.adminform td {
	padding: 3px;
	text-align: left;
}
table.adminform td#filter-bar {
	text-align: left;
}
table.adminform td.helpMenu {
	text-align: right;
}
table.adminform tr {
	padding-left: 10px;
	padding-right: 10px;
}
td.center,
th.center {
	text-align: center;
}
th.width-1 {
	width: 1%;
}
th.width-3 {
	width: 3%;
}
th.width-5 {
	width: 5%;
}
th.width-10 {
	width: 10%;
}
th.width-12 {
	width: 12%;
}
th.width-15 {
	width: 15%;
}
th.width-20 {
	width: 20%;
}
th.width-25 {
	width: 25%;
}
th.width-30 {
	width: 30%;
}
th.width-40 {
	width: 40%;
}
th.row-number-col {
	width: 3%;
}
th.checkmark-col {
	width: 1%;
}
th.state-col {
	width: 5%;
}
th.ordering-col {
	width: 10%;
}
th.ordering-col a {
	display: block;
	float: left;
	margin-left: 3px;
}
th.ordering-col a img {
	margin-left: 4px;
	margin-right: 4px;
}
.categories th.ordering-col input,
.categories td.order input {
	font-size: 1em;
}
th.category-col {
	width: 5%;
}
th.access-col {
	width: 10%;
}
.categories th.access-col {
	width: 5%;
}
th.hits-col {
	width: 5%;
}
th.id-col {
	width: 3%;
}
th.featured-col {
	width: 5%;
}
th.created-by-col {
	width: 15%;
}
th.date-col {
	width: 5%;
}
th.language-col {
	width: 5%;
}
th.home-col {
	width: 5%;
}
table.adminlist {
	width: 100%;
	float: left;
}
table.adminlist td,
table.adminlist th {
	padding: 4px;
	font-size: 1.2em;
}
table.adminlist thead th {
	text-align: center;
}
table.adminlist thead a:hover {
	text-decoration: none;
}
table.adminlist thead th img {
	vertical-align: middle;
}
table.adminlist tbody th {
	font-weight: bold;
}
table.adminlist tr {
	padding-left: 30px;
	padding-right: 30px;
}
table.adminlist tbody tr {
	text-align: left;
}
table.adminlist tbody tr td,
table.adminlist tbody tr th {
	height: 25px;
}
table.adminlist tfoot tr {
	text-align: center;
}
table.adminlist tfoot td,
table.adminlist tfoot th {
	text-align: center;
}
table.adminlist td.order {
	text-align: center;
	white-space: nowrap;
}
table.adminlist td.order span {
	float: left;
	width: 20px;
	text-align: center;
}
table.adminlist td.order input {
	text-align: center;
	width: 3em;
	font-size: 100%;
}
#media-tree_tree ul {
	list-style: none outside none;
	margin: 0 10px;
}
table.adminlist td.indent-4 {
	padding-left: 4px;
}
table.adminlist td.indent-19 {
	padding-left: 19px;
}
table.adminlist td.indent-34 {
	padding-left: 34px;
}
table.adminlist td.indent-49 {
	padding-left: 49px;
}
table.adminlist td.indent-64 {
	padding-left: 64px;
}
table.adminlist td.indent-79 {
	padding-left: 79px;
}
table.adminlist td.indent-94 {
	padding-left: 94px;
}
table.adminlist td.indent-109 {
	padding-left: 109px;
}
table.adminlist td.indent-124 {
	padding-left: 124px;
}
table.adminlist td.indent-139 {
	padding-left: 139px;
}
table.adminlist tr td.btns a {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding: 3px 20px;
}
table.adminlist tr td.btns a:hover,
table.adminlist tr td.btns a:active,
table.adminlist tr td.btns a:focus {
	text-decoration: none;
}
table.adminlist td li {
	list-style: inside;
}
ul#new-modules-list {
	margin-left: 50px;
	font-size: 1.4em;
	line-height: 1.5em;
}
.clr {
	clear: both;
	overflow: hidden;
	height: 0;
}
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.menu-module-list {
	list-style-position: inside;
	padding-left: 10px;
	margin-left: 5px;
}
.container {
	clear: both;
	text-decoration: none;
}
* html .container {
	display: inline-block;
}
table.noshow {
	width: 100%;
	border-collapse: collapse;
	padding: 0;
	margin: 0;
}
table.noshow tr {
	vertical-align: top;
}
table.noshow fieldset {
	margin: 15px 7px 7px 7px;
}
a.saveorder {
	width: 16px;
	height: 16px;
	display: block;
	overflow: hidden;
	float: right;
	margin-right: 8px;
}
#editor-xtd-buttons {
	padding: 5px;
}
button {
	font-family: Arial, Helvetica, sans-serif;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	margin-right: 3px;
	margin-left: 3px;
}
.invalid {
	font-weight: bold;
}
.button1,
.button1 div {
	height: 1%;
	float: right;
}
.button1 {
	white-space: nowrap;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.button1 a {
	display: block;
	height: 2.2em;
	float: left;
	line-height: 2.2em;
	font-size: 1.2em;
	font-weight: bold;
	cursor: default;
	padding: 0 6px 0 6px;
}
.button1 a:hover,
.button1 a:focus {
	text-decoration: none;
}
.button2-left,
.button2-right {
	float: left;
	line-height: 1.5em;
	font-size: 1.2em;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.button2-left.smallsub,
.button2-right.smallsub {
	line-height: 1.2em;
	font-size: .9em;
}
.button2-left a,
.button2-right a,
.button2-left span,
.button2-right span {
	display: block;
	float: left;
	cursor: default;
}
.button2-left span,
.button2-right span {
	cursor: default;
}
.button2-left .page a,
.button2-right .page a,
.button2-left .page span,
.button2-right .page span,
.button2-left .blank a,
.button2-right .blank a,
.button2-left .blank span,
.button2-right .blank span {
	padding: 0 6px;
}
.page span,
.blank span {
	font-weight: bold;
}
.button2-left a:hover,
.button2-right a:hover,
.button2-left a:focus,
.button2-right a:focus {
	text-decoration: none;
}
.button2-left a,
.button2-left span {
	padding: 0 24px 0 6px;
}
.button2-right a,
.button2-right span {
	padding: 0 6px 0 24px;
}
.button2-left {
	float: left;
	margin-left: 5px;
}
.button2-right {
	float: left;
	margin-left: 5px;
}
div.containerpg {
	position: relative;
	left: 50%;
	float: left;
	clear: left;
}
div.pagination {
	position: relative;
	left: -50%;
	margin: 0 auto;
	padding: .5em;
}
.pagination div.limit {
	float: left;
	margin: 0 10px;
	font-size: 1.2em;
	height: 1.8em;
	line-height: 1.8em;
}
.pagination div.limit label {
	font-size: 100%;
	height: 1.8em;
	line-height: 1.8em;
}
.pagination div.limit select {
	font-size: 100%;
}
.pagination button {
	font-size: 100%;
	height: 2.0em;
	line-height: 1.8em;
	margin-right: 20px;
}
div.pagination .button2-right,
div.pagination .button2-left {
	font-size: 1.2em;
	height: 1.6em;
	line-height: 1.6em;
}
table.adminlist .pagination {
	display: table;
	padding: 0;
	margin: 0 auto;
	font-size: .8em;
}
table.adminlist .pagination button {
	font-size: 1.2em;
	height: 1.6em;
	line-height: 1.5em;
	margin-right: 20px;
}
div.toggle-editor {
	margin-top: 9px;
}
.tip {
	float: left;
	padding: 5px;
	max-width: 400px;
	z-index: 50;
}
.tip-title {
	padding: 0;
	margin: 0;
	font-size: 120%;
	margin-top: -15px;
	padding-top: 15px;
	padding-bottom: 5px;
}
.tip-text {
	font-size: 100%;
	text-align: left;
	margin: 0;
}
a img.calendar {
	width: 16px;
	height: 16px;
	margin-left: 3px;
	cursor: pointer;
	vertical-align: middle;
}
a.jgrid:hover {
	text-decoration: none;
}
.jgrid span.state {
	display: inline-block;
	height: 16px;
	width: 16px;
}
.jgrid span.text {
	display: none;
}
div.message {
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	padding: 3px;
	margin-bottom: 10px;
	font-weight: bold;
}
.helpIndex {
	border: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	overflow: auto;
}
.helpFrame {
	width: 100%;
	height: 800px;
	padding: 0 5px 0 10px;
}
#treecellhelp {
	width: 25%;
	display: block;
	position: relative;
	float: left;
	margin: 0;
	padding: 2px;
	overflow: hidden;
}
#datacellhelp {
	width: 73%;
	display: block;
	float: left;
	margin: 0;
	padding: 2px 0 0 0;
}
.outline {
	padding: 2px;
}
h2.modal-title {
	margin-left: 15px;
	margin-bottom: 0;
	margin-top: 5px;
	font-size: 1.8em;
	padding-bottom: .5em;
}
ul.menu_types {
	padding: 0 0 0 15px;
	width: 95%;
	margin: 0;
}
ul.menu_types li,
dl.menu_type dd ul li {
	width: 240px;
	list-style: none;
	display: block;
	float: left;
	margin-right: 10px;
}
ul.menu_types li {
	width: 47%;
}
dl.menu_type {
	width: 240px;
	margin: 0;
	padding: 0;
}
dl.menu_type dt {
	font-weight: bold;
	font-size: 1.5em;
	float: left;
	margin: 13px 0 5px 0;
	width: 240px;
}
dl.menu_type dd {
	clear: left;
	margin: 0;
}
dl.menu_type dd a {
	font-size: 1.2em;
}
dl.menu_type dd ul li {
	margin: 0;
}
ul#new-modules-list {
	padding: 5px 0 0 15px;
	width: 95%;
	margin: 0;
	list-style: none;
}
ul#new-modules-list li {
	list-style: none;
	display: block;
	float: left;
	margin: 0 20px 0 0;
	width: 47%;
}
ul#new-modules-list li a {
	font-size: 1em;
	line-height: 1.5em;
}
body.contentpane #filter-bar {
	font-size: 80%;
}
body.contentpane input,
body.contentpane select {
	font-size: 120%;
}
#filter-bar input,
#filter-bar select,
#filter-bar button {
	font-size: 110%;
}
#skiplinkholder a,
#skiplinkholder a:link,
#skiplinkholder a:visited {
	display: block;
	width: 99%;
	position: absolute;
	top: 0;
	left: -200%;
	z-index: 2;
}
#skiplinkholder a:focus,
#skiplinkholder a:active {
	left: 0;
	top: 0;
	z-index: 100;
}
#skiplinkholder p {
	margin: 0;
}
#skiptargetholder {
	position: absolute;
	left: -200%;
}
#skiplinkholder a,
#skiplinkholder a:link,
#skiplinkholder a:visited {
	text-decoration: underline;
	padding: 5px;
	font-size: 1.3em;
	font-weight: bold;
	padding-left: 20px;
	padding-right: 20px;
}
.body-overlayed a,
.body-overlayed input,
.body-overlayed button {
	visibility: hidden;
}
.body-overlayed #sbox-window a,
.body-overlayed #sbox-window input,
.body-overlayed #sbox-window button {
	visibility: visible;
}
.element-hidden,
.hide {
	display: none;
}
.hidebtn {
	border: 0 !important;
	padding: 0 !important;
	margin: 0;
	width: 0;
	height: 0;
}
.element-invisible,
.hidelabeltxt {
	height: 0;
	overflow: hidden;
	position: absolute;
	padding: 0;
	margin: 0;
}
legend.element-invisible {
	position: absolute !important;
	margin: 0;
	padding: 0;
	border: 0;
	margin-left: -10000px;
	font-size: 1px;
	height: 0;
}
fieldset.panelform {
	overflow: hidden;
	clear: both;
}
fieldset.adminform label,
fieldset.panelform label,
fieldset.adminform span.faux-label,
fieldset.panelform span.faux-label {
	line-height: 2em;
	clear: left;
	min-width: 12em;
	float: left;
	margin-left: 10px;
	margin-right: 5px;
}
fieldset.adminform.long label,
fieldset.panelform.long label,
fieldset.adminform.long span.faux-label,
fieldset.panelform.long span.faux-label {
	min-width: 18em;
}
fieldset.adminform fieldset.radio label,
fieldset.panelform fieldset.radio label,
fieldset.adminform fieldset.radio span.faux-label,
fieldset.panelform fieldset.radio span.faux-label {
	margin-left: 0;
}
fieldset.adminform input,
fieldset.adminform span.faux-input,
fieldset.adminform textarea,
fieldset.adminform select,
fieldset.adminform img,
fieldset.adminform button,
fieldset.panelform input,
fieldset.panelform span.faux-input,
fieldset.panelform textarea,
fieldset.panelform select,
fieldset.panelform img,
fieldset.panelform button {
	float: left;
	margin: 5px 5px 5px 0;
	width: auto;
}
fieldset.batch {
	margin: 20px 10px 10px 10px;
	padding: 10px;
}
fieldset.batch label {
	margin: 5px;
	min-width: 40px;
}
fieldset.batch button {
	margin: 3px;
}
fieldset#batch-choose-action {
	clear: left;
	border: 0 none;
}
fieldset.batch label {
	float: left;
	clear: none;
}
fieldset label#batch-choose-action-lbl {
	clear: left;
	margin-top: 15px;
}
label#batch-language-lbl,
label#batch-user-lbl {
	clear: left;
	margin-right: 10px;
	margin-top: 15px;
}
select#batch-language-id,
select#batch-user-id {
	margin-top: 15px;
}
select#batch-category-id,
select#batch-position-id,
select#batch-menu-id {
	margin-right: 30px;
}
fieldset.batch select,
fieldset.batch input,
fieldset.batch img,
fieldset.batch button {
	float: left;
}
label#batch-access-lbl,
label#batch-client-lbl {
	margin-right: 10px;
}
div#jform_ordering {
	font-size: 1.091em;
	margin-top: 3px;
}
#jform_impmade,
#jform_clicks {
	width: 30px;
}
fieldset.panelform label#jform-imp {
	min-width: 3em;
	font-size: 1.091em;
}
fieldset.adminform input#jform_clickurl {
	width: 20em;
}
a.move_up {
	display: inline-block;
	height: 16px;
	text-indent: -1000em;
	width: 16px;
}
span.move_up {
	display: inline-block;
	height: 16px;
	width: 16px;
}
a.move_down {
	display: inline-block;
	height: 16px;
	text-indent: -1000em;
	width: 16px;
}
span.move_down {
	display: inline-block;
	height: 16px;
	width: 16px;
}
a.grid_false {
	display: inline-block;
	height: 16px;
	text-indent: -1000em;
	width: 16px;
}
a.grid_true {
	display: inline-block;
	height: 16px;
	text-indent: -1000em;
	width: 16px;
}
a.grid_trash {
	display: inline-block;
	height: 16px;
	text-indent: -1000em;
	width: 16px;
}
div.acl-options {
	width: 100%;
}
table.aclsummary-table,
table.aclmodify-table {
	border-collapse: collapse;
	width: 100%;
	font-size: 1.091em;
}
td.col1 {
	font-size: 1.091em;
	text-align: left;
	padding: 4px;
}
table.aclsummary-table caption,
table.aclmodify-table caption {
	display: none;
}
table.aclsummary-table th.col1 {
	width: 25%;
}
table.aclsummary-table th.col2,
table.aclsummary-table th.col3,
table.aclsummary-table th.col4,
table.aclsummary-table th.col5,
table.aclsummary-table th.col6 {
	width: 15%;
	vertical-align: bottom;
	text-align: center;
}
span.icon-16-unset,
span.icon-16-allowed,
span.icon-16-denied,
span.icon-16-locked {
	padding-left: 18px;
}
label.icon-16-allow,
label.icon-16-deny,
a.icon-16-allow,
a.icon-16-deny,
a.icon-16-allowinactive,
a.icon-16-denyinactive {
	display: block;
	height: 16px;
	width: 16px;
	margin: 0 auto;
}
label.icon-16-allow {
	text-indent: -9999em;
	position: relative;
	left: 40%;
}
label.icon-16-deny {
	text-indent: -9999em;
	position: relative;
	left: 40%;
}
table.aclmodify-table th.col2,
table.aclmodify-table th.col3,
table.aclmodify-table th.col4 {
	width: 20%;
	vertical-align: bottom;
	text-align: center;
}
table.aclmodify-table select {
	margin: 1px;
}
table.aclsummary-table td label,
table.aclmodify-table td label {
	min-width: 20px;
}
ul.acllegend {
	list-style: none;
	font-size: 1.091em;
	padding-bottom: 10px;
}
ul.acllegend li {
	display: block;
	float: left;
	padding-right: 20px;
	margin: 15px 0 15px 10px;
}
ul.acllegend li.acl-allowed {
	padding-left: 20px;
	padding-right: 10px;
}
ul.acllegend li.acl-denied {
	padding-left: 20px;
	padding-right: 20px;
}
ul.acllegend li.acl-editgroups {
	padding-right: 10px;
}
ul.acllegend li.acl-resetbtn {
	padding-right: 0;
}
li.acl-editgroups,
li.acl-resetbtn {
	display: block;
	float: left;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
li.acl-editgroups a,
li.acl-resetbtn a {
	padding: 6px;
	cursor: default;
}
li.acl-editgroups a:hover,
li.acl-resetbtn a:hover,
li.acl-editgroups a:focus,
li.acl-resetbtn a:focus {
	text-decoration: none;
	cursor: default;
}
li.acl-editgroups:hover,
li.acl-resetbtn:hover,
li.acl-editgroups:focus,
li.acl-resetbtn:focus {
	text-decoration: none;
	cursor: default;
}
table#acl-config {
	width: 100%;
	margin-top: 15px;
}
table#acl-config th,
table#acl-config td {
	height: 2em;
	background: #f9fade;
	text-align: center;
	vertical-align: middle;
}
table#acl-config th.acl-groups {
	padding-left: 8px;
	font-weight: bold;
	text-align: left;
}
table#acl-config th.acl-groups span.gi {
	margin-right: 2px;
}
table#acl-config td {
	width: 9em;
}
table#acl-config td select {
	float: none;
}
.acl-action {
	font-size: 1.091em;
	margin: auto 0;
}
.acl-groups {
	font-size: 1.091em;
	font-weight: normal;
}
label#jform_rules-lbl {
	float: none;
	white-space: nowrap;
	display: none;
	visibility: hidden;
}
label#jform_filters-lbl {
	float: none;
	white-space: nowrap;
	display: none;
	visibility: hidden;
}
ul.config-option-list,
ul.config-option-list li {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.config-option-list fieldset {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
#permissions-sliders {
	margin-top: 15px;
}
#permissions-sliders ul#rules,
#permissions-sliders ul#rules ul {
	margin: 0 !important;
	padding: 0 !important;
	list-style-type: none;
}
#permissions-sliders ul#rules li {
	margin: 0;
	padding: 0;
}
#permissions-sliders ul#rules table.group-rules {
	border-collapse: collapse;
	margin: 5px;
	width: 100%;
}
#permissions-sliders ul#rules table.group-rules td {
	padding: 4px;
	vertical-align: middle;
	text-align: left;
	overflow: hidden;
}
#permissions-sliders ul#rules table.group-rules th {
	font-size: 1.2em;
	overflow: hidden;
	font-weight: bold;
}
#permissions-sliders .panel {
	margin-bottom: 3px;
	margin-left: 0;
	border: 0;
}
#permissions-sliders p.rule-desc {
	font-size: 1.1em;
}
#permissions-sliders div.rule-notes {
	font-size: 1.1em;
}
ul#rules table.group-rules td label {
	margin: 0 !important;
	line-height: 1.1em;
}
ul#rules table.group-rules td span {
	font-size: 1.1em;
	padding-bottom: 4px;
}
ul#rules table.group-rules td span span {
	font-size: 100%;
}
table.group-rules td select {
	margin: 0 !important;
}
#permissions-sliders ul#rules .mypanel {
	padding: 0;
	line-height: 1.3em;
}
#permissions-sliders .mypanel table.group-rules caption {
	font-size: 1.3em;
}
#permissions-sliders ul#rules {
	padding: 5px;
}
#permissions-sliders ul#rules table.group-rules th {
	text-align: left;
	padding: 4px;
}
#permissions-sliders ul#rules table.group-rules td label {
	min-width: 1em;
}
#permissions-sliders .pane-toggler span {
	padding-left: 20px;
}
#permissions-sliders .pane-toggler-down span {
	padding-left: 20px;
}
#permissions-sliders .pane-toggler-down span.level,
#permissions-sliders .pane-toggler span.level {
	padding: 0;
}
.swatch {
	text-align: center;
	padding: 0 15px 0 15px;
}
dl.tabs dt h3 {
	padding: 0;
	font-size: 100%;
}
ul.helpmenu li {
	float: right;
	margin: 10px;
	padding: 0;
	list-style-type: none;
	font-weight: bold;
}
#menu {
	position: relative;
	z-index: 100;
	padding: 0;
	margin: 0;
	width: 100%;
	list-style: none;
	font-size: 1.2em;
	font-weight: bold;
}
#menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 100%;
}
#menu ul li.separator {
	margin-bottom: 1em;
}
#menu a {
	padding: 0.35em 2.5em 0.35em 2em;
	vertical-align: middle;
	display: block;
	text-decoration: none;
	font-size: 100%;
}
#menu li {
	float: left;
	font-size: 100%;
}
#menu li a {
	white-space: nowrap;
}
#menu li li a {
	margin-bottom: 1px;
	margin-top: 1px;
	width: 10em;
}
#menu li.disabled a:hover,
#menu li.disabled a:focus,
#menu li.disabled a {
	cursor: default;
}
#menu li ul {
	position: absolute;
	width: 16em;
	margin-left: -1000em;
}
#menu li li {
	border: none;
	width: 16em;
}
#menu li ul ul {
	margin: -2.3em 0 0 -1000em;
}
#menu li:hover ul ul,
#menu li.sfhover ul ul {
	margin-left: -1000em;
}
#menu li:hover ul,
#menu li.sfhover ul {
	margin-left: 0;
}
#menu li li:hover ul,
#menu li li.sfhover ul {
	margin-left: 16em;
}
[class^="menu-"],
[class*=" menu-"] {
	background-position: 3px 50% !important;
}
.menu-archive {
	background-image: url(../images/menu/icon-16-archive.png);
}
.menu-article {
	background-image: url(../images/menu/icon-16-article.png);
}
.menu-associations {
	background-image: url(../images/menu/icon-16-assoc.png);
}
.menu-banners {
	background-image: url(../images/menu/icon-16-banner.png);
}
.menu-banners-clients {
	background-image: url(../images/menu/icon-16-banner-client.png);
}
.menu-banners-tracks {
	background-image: url(../images/menu/icon-16-banner-tracks.png);
}
.menu-banners-cat {
	background-image: url(../images/menu/icon-16-banner-categories.png);
}
.menu-category {
	background-image: url(../images/menu/icon-16-category.png);
}
.menu-checkin {
	background-image: url(../images/menu/icon-16-checkin.png);
}
.menu-clear {
	background-image: url(../images/menu/icon-16-clear.png);
}
.menu-component {
	background-image: url(../images/menu/icon-16-component.png);
}
.menu-config {
	background-image: url(../images/menu/icon-16-config.png);
}
.menu-contact {
	background-image: url(../images/menu/icon-16-contacts.png);
}
.menu-contact-cat {
	background-image: url(../images/menu/icon-16-contacts-categories.png);
}
.menu-content {
	background-image: url(../images/menu/icon-16-content.png);
}
.menu-cpanel {
	background-image: url(../images/menu/icon-16-cpanel.png);
}
.menu-default {
	background-image: url(../images/menu/icon-16-default.png);
}
.menu-featured {
	background-image: url(../images/menu/icon-16-featured.png);
}
.menu-fields {
	background-image: url(../images/menu/icon-16-puzzle.png);
}
.menu-groups {
	background-image: url(../images/menu/icon-16-groups.png);
}
.menu-help {
	background-image: url(../images/menu/icon-16-help.png);
}
.menu-help-this {
	background-image: url(../images/menu/icon-16-help-this.png);
}
.menu-help-forum {
	background-image: url(../images/menu/icon-16-help-forum.png);
}
.menu-help-docs {
	background-image: url(../images/menu/icon-16-help-docs.png);
}
.menu-help-jed {
	background-image: url(../images/menu/icon-16-help-jed.png);
}
.menu-help-jrd {
	background-image: url(../images/menu/icon-16-help-jrd.png);
}
.menu-help-community {
	background-image: url(../images/menu/icon-16-help-community.png);
}
.menu-help-security {
	background-image: url(../images/menu/icon-16-help-security.png);
}
.menu-help-dev {
	background-image: url(../images/menu/icon-16-help-dev.png);
}
.menu-help-shop {
	background-image: url(../images/menu/icon-16-help-shop.png);
}
.menu-info {
	background-image: url(../images/menu/icon-16-info.png);
}
.menu-install {
	background-image: url(../images/menu/icon-16-install.png);
}
.menu-joomlaupdate {
	background-image: url(../images/menu/icon-16-install.png);
}
.menu-language {
	background-image: url(../images/menu/icon-16-language.png);
}
.menu-levels {
	background-image: url(../images/menu/icon-16-levels.png);
}
.menu-logout {
	background-image: url(../images/menu/icon-16-logout.png);
}
.menu-maintenance {
	background-image: url(../images/menu/icon-16-maintenance.png);
}
.menu-massmail {
	background-image: url(../images/menu/icon-16-massmail.png);
}
.menu-media {
	background-image: url(../images/menu/icon-16-media.png);
}
.menu-menu {
	background-image: url(../images/menu/icon-16-menu.png);
}
.menu-menumgr {
	background-image: url(../images/menu/icon-16-menumgr.png);
}
.menu-messages {
	background-image: url(../images/menu/icon-16-messaging.png);
}
.menu-messages-add {
	background-image: url(../images/menu/icon-16-new-privatemessage.png);
}
.menu-messages-read {
	background-image: url(../images/menu/icon-16-messages.png);
}
.menu-module {
	background-image: url(../images/menu/icon-16-module.png);
}
.menu-newarticle {
	background-image: url(../images/menu/icon-16-newarticle.png);
}
.menu-newcategory {
	background-image: url(../images/menu/icon-16-newcategory.png);
}
.menu-newgroup {
	background-image: url(../images/menu/icon-16-newgroup.png);
}
.menu-newlevel {
	background-image: url(../images/menu/icon-16-newlevel.png);
}
.menu-newuser {
	background-image: url(../images/menu/icon-16-newuser.png);
}
.menu-plugin {
	background-image: url(../images/menu/icon-16-plugin.png);
}
.menu-profile {
	background-image: url(../images/menu/icon-16-user.png);
}
.menu-purge {
	background-image: url(../images/menu/icon-16-purge.png);
}
.menu-readmess {
	background-image: url(../images/menu/icon-16-readmess.png);
}
.menu-section {
	background-image: url(../images/menu/icon-16-section.png);
}
.menu-static {
	background-image: url(../images/menu/icon-16-static.png);
}
.menu-stats {
	background-image: url(../images/menu/icon-16-stats.png);
}
.menu-themes {
	background-image: url(../images/menu/icon-16-themes.png);
}
.menu-trash {
	background-image: url(../images/menu/icon-16-trash.png);
}
.menu-user {
	background-image: url(../images/menu/icon-16-user.png);
}
.menu-user-note {
	background-image: url(../images/menu/icon-16-user-note.png);
}
.menu-delete {
	background-image: url(../images/menu/icon-16-delete.png);
}
.menu-help-trans {
	background-image: url(../images/menu/icon-16-help-trans.png);
}
.menu-newsfeeds {
	background-image: url(../images/menu/icon-16-newsfeeds.png);
}
.menu-newsfeeds-cat {
	background-image: url(../images/menu/icon-16-newsfeeds-cat.png);
}
.menu-redirect {
	background-image: url(../images/menu/icon-16-redirect.png);
}
.menu-search {
	background-image: url(../images/menu/icon-16-search.png);
}
.menu-finder {
	background-image: url(../images/menu/icon-16-search.png);
}
.menu-weblinks {
	background-image: url(../images/menu/icon-16-links.png);
}
.menu-weblinks-cat {
	background-image: url(../images/menu/icon-16-links-cat.png);
}
.menu-tags {
	background-image: url(../images/menu/icon-16-tags.png);
}
.menu-postinstall {
	background-image: url(../images/menu/icon-16-generic.png);
}
.icon-32-cog {
	background-image: url(../images/toolbar/icon-32-cog.png);
}
#menu li a:focus+ul {
	margin-left: 0;
}
#menu li li a:focus+ul {
	margin-left: 1016em;
}
#menu li li a:focus {
	margin-left: 1000em;
	width: 10em;
}
#menu li li li a:focus {
	margin-left: 2016em;
	width: 10em;
}
#menu li:hover a:focus,
#menu li.sfhover a.sffocus {
	margin-left: 0;
}
#menu li li:hover a:focus+ul,
#menu li li.sfhover a.sffocus+ul {
	margin-left: 16em;
}
#sidebar {
	float: left;
	margin: 15px 5px;
}
#submenu {
	list-style: none;
	padding: 0;
	margin: 0;
	padding-bottom: 2.5em;
	line-height: 2em;
}
#submenu ul,
#submenu li {
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#submenu li,
#submenu span.nolink {
	float: left;
	font-weight: bold;
	margin-right: 8px;
	padding: 2px 10px 2px 10px;
	text-decoration: none;
	cursor: pointer;
	-moz-border-radius-topright: 3px;
	-moz-border-radius-topleft: 3px;
	-webkit-border-top-right-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	border-top-left-radius: 3px;
}
#submenu span.nolink {
	color: #999;
}
#submenu li.active,
#submenu span.nolink.active {
	cursor: default;
}
#submenu li.active a,
#submenu span.nolink.active,
#submenu li a:hover,
#submenu li a:focus {
	text-decoration: none;
}
.red {
	font-weight: bold;
	color: #c00;
}
.pre_message {
	font-size: 1.3em;
}
span.update-badge {
	background-image: -moz-linear-gradient(center bottom,#FF0000 41%,#FC7E7E
79%);
	background-image: -webkit-gradient(linear,left bottom,left
top,color-stop(0.41,#ff0000),color-stop(0.79,#fc7e7e));
	border: 2px solid white;
	border-radius: 1.5em 1.5em 1.5em 1.5em;
	color: white;
	display: block;
	float: left;
	font-size: 1.2em;
	font-weight: bold;
	height: 1.2em;
	left: 60px;
	min-width: 1em;
	padding: 0 0.1em 0;
	position: relative;
	top: -88px;
}
.unotes ul,
.unotes ol {
	list-style: none;
	list-style-position: inside;
	padding-left: 0;
	padding-right: 0;
}
.unotes div.utitle {
	padding: 10px;
	float: left;
	font-size: 1.2em;
	line-height: 1.2em;
}
.unotes h4 {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 1.3em;
}
.unotes .ubody {
	padding-left: 10px;
	padding-right: 10px;
	font-size: 1.2em;
	line-height: 1.5em;
}
.unotes p {
	padding-bottom: 10px;
}
div#database-sliders {
	margin: 10px;
}
fieldset.uploadform {
	margin-top: 10px;
	margin-bottom: 10px;
	min-height: 200px;
}
#installer-database,
#installer-discover,
#installer-update,
#installer-warnings {
	margin-top: 10px;
}
#installer-database #sidebar {
	float: none;
}
#installer-database p.warning {
	padding-left: 20px;
}
#installer-database p.nowarning {
	padding-left: 20px;
}
.joomlaupdate_spinner {
	float: left;
	margin-right: 15px;
}
.btn-group {
	position: relative;
	display: inline-block;
}
.btn-group + .btn-group {
	margin-left: 5px;
}
.btn-group > .btn {
	position: relative;
	float: left;
	margin-left: -1px;
}
.icon-48-cpanel {
	height: 50px;
	width: 50%;
}
.well {
	min-height: 20px;
	padding: 19px;
	margin-bottom: 20px;
	background-color: #f5f5f5;
	border: 1px solid #eee;
	border: 1px solid rgba(0,0,0,0.05);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
}
.well blockquote {
	border-color: #ddd;
	border-color: rgba(0,0,0,0.15);
}
.well-large {
	padding: 24px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
.well-small {
	padding: 9px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.list-striped,
.row-striped {
	list-style: none;
	line-height: 18px;
	text-align: left;
	vertical-align: middle;
	border-top: 1px solid #dddddd;
	margin-left: 0;
	font-size: 1.2em;
	padding: 9px;
}
.list-striped li,
.list-striped dd,
.row-striped .row,
.row-striped .row-fluid {
	border-bottom: 1px solid #dddddd;
	padding: 8px;
}
.list-striped li:nth-child(odd),
.list-striped dd:nth-child(odd),
.row-striped .row:nth-child(odd),
.row-striped .row-fluid:nth-child(odd) {
	background-color: #f9f9f9;
}
.list-striped li:hover,
.list-striped dd:hover,
.row-striped .row:hover,
.row-striped .row-fluid:hover {
	background-color: #f5f5f5;
}
.row-striped .row-fluid {
	width: 100%;
	box-sizing: border-box;
}
.row-striped .row-fluid [class*="span"] {
	min-height: 10px;
}
.alert {
	padding: 8px 35px 8px 14px;
	margin-bottom: 18px;
	text-shadow: 0 1px 0 rgba(255,255,255,0.5);
	background-color: #fcf8e3;
	border: 1px solid #fbeed5;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	color: #c09853;
	font-size: 120%;
}
.alert-heading {
	color: inherit;
}
.alert .close {
	position: relative;
	right: -30px;
	top: -5px;
	line-height: 18px;
	float: right;
	font-size: 20px;
	font-weight: bold;
}
.alert-success {
	background-color: #dff0d8;
	border-color: #d6e9c6;
	color: #468847;
}
.alert-danger,
.alert-error {
	background-color: #f2dede;
	border-color: #eed3d7;
	color: #b94a48;
}
.alert-info {
	background-color: #d9edf7;
	border-color: #bce8f1;
	color: #3a87ad;
}
.alert-block {
	padding-top: 14px;
	padding-bottom: 14px;
}
.alert-block > p,
.alert-block > ul {
	margin-bottom: 0;
}
.alert-block p + p {
	margin-top: 5px;
}
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active {
	z-index: 2;
}
.btn-group > .btn {
	position: relative;
	float: left;
	margin-left: -1px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
table {
	max-width: 100%;
	background-color: transparent;
	border-collapse: collapse;
	border-spacing: 0;
}
.table {
	width: 100%;
	margin-bottom: 18px;
}
.tab-content > .tab-pane,
.pill-content > .pill-pane {
	display: none;
}
.tab-content > .active,
.pill-content > .active {
	display: block;
}
.tabs-below > .nav-tabs {
	border-top: 1px solid #ddd;
}
#status .btn-toolbar,
#status p {
	margin: 0px;
}
.navbar .btn-group {
	margin: 0;
	padding: 5px 5px 6px;
}
.media .btn {
	margin: 10px 20px;
}
.thumbnails > li {
	list-style: none outside none;
	float: left;
	margin-bottom: 18px;
	margin-left: 20px;
}
#mediamanager-form {
	margin: 10px;
}
.is-tagbox {
	float: left;
}
.item-associations {
	margin: 0;
}
.item-associations li {
	list-style: none;
	display: inline-block;
	margin: 0 0 3px 0;
}
.item-associations li a,
table.adminlist .item-associations li a {
	color: #ffffff;
}
.hidden {
	display: none;
	visibility: hidden;
}
.tooltip {
	position: absolute;
	z-index: 1030;
	display: block;
	visibility: visible;
	font-size: 11px;
	line-height: 1.4;
	opacity: 0;
	filter: alpha(opacity=0);
}
.tooltip.in {
	opacity: 0.8;
	filter: alpha(opacity=80);
}
.tooltip.top {
	margin-top: -3px;
	padding: 5px 0;
}
.tooltip.right {
	margin-left: 3px;
	padding: 0 5px;
}
.tooltip.bottom {
	margin-top: 3px;
	padding: 5px 0;
}
.tooltip.left {
	margin-left: -3px;
	padding: 0 5px;
}
.tooltip-inner {
	max-width: 200px;
	padding: 8px;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	background-color: #000000;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.tooltip-arrow {
	position: absolute;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
}
.tooltip.top .tooltip-arrow {
	bottom: 0;
	left: 50%;
	margin-left: -5px;
	border-width: 5px 5px 0;
	border-top-color: #000000;
}
.tooltip.right .tooltip-arrow {
	top: 50%;
	left: 0;
	margin-top: -5px;
	border-width: 5px 5px 5px 0;
	border-right-color: #000000;
}
.tooltip.left .tooltip-arrow {
	top: 50%;
	right: 0;
	margin-top: -5px;
	border-width: 5px 0 5px 5px;
	border-left-color: #000000;
}
.tooltip.bottom .tooltip-arrow {
	top: 0;
	left: 50%;
	margin-left: -5px;
	border-width: 0 5px 5px;
	border-bottom-color: #000000;
}
.tooltip {
	max-width: 400px;
}
.tooltip-inner {
	max-width: none;
	text-align: left;
	text-shadow: none;
}
th .tooltip-inner {
	font-weight: normal;
}
.tooltip.hasimage {
	opacity: 1;
}
fieldset.panelform .tooltip img {
	float: none;
	margin: 0;
}
div.toggle-editor {
	float: right;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}
.module-edit {
	display: inline-block;
}
.break-word {
	word-break: break-all;
	word-wrap: break-word;
}
.muted {
	color: #999;
}
.popover-content {
	min-height: 33px;
}
css/template_rtl.css000064400000050777151163244070010565 0ustar00@charset
"UTF-8";

/**
 * @package		Joomla.Administrator
 * @subpackage	templates.hathor
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 * @since		1.6
 *
 * RTL CSS file for the template
 */

body {
	direction: rtl;
}

h1, h2, h3 {
	text-align: right;
}

/**
 * CSS Reset
 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background-position: transparent none repeat scroll top right;
}

/* new styles */



/* end new styles */

/**
 * Overall Styles
 */
#header h1.title {
	padding: 0 120px 0 0;
}

#footer {
	padding: 10px 20px;
}

#content {
	margin: 5px 20px 20px 20px;
}

.cpanel-page div#element-box {
	padding: 15px;
}

/**
 * Status layout
 */
#module-status {
	left: 0;
	right: none;
	float: left;
}

#module-status > span {
	float: right;
	padding: 4px 22px 0 20px;
}

/* background images moved to color css file */

/**
 * Various Styles
 */

div.checkin-tick {
	text-indent: -9999px;
}

/**
 * Overlib
 */

/**
 * Subheader, toolbar, page title
 */

div.pagetitle {
	padding: 0 0 5px 0;
	background-position: right 50%;
	line-height: 54px;
}

.pagetitle h2 {
	padding: 0 50px 0 0;
}

div.configuration {
	padding-right: 30px;
	margin-right: 10px;
}

div.toolbar-list {
	float: right;
	text-align: left;
}

div.toolbar-list li {
	padding: 5px 4px 5px 1px;
	float: right;
}

div.toolbar-list li.divider {
	margin-left: 10px;
	margin-right: 0;
}

div.toolbar-list span {
	margin: 0 auto;
}

div.toolbar-list a {
	float: right;
	padding: 1px 5px;
}

/**
 * Massmail component
 */


/**
 * Pane Slider pane Toggler styles
 */
div.pane-sliders {
	margin-left: 10px;
}

.pane-toggler  span {
	padding-left: 0;
	padding-right: 20px;
}

.pane-toggler-down span {
	padding-right: 20px;
	padding-left: 0;
}

div#position-icon.pane-sliders div.pane-down .icon-wrapper .icon {
	padding: 5px 10px 5px 0;
	margin: 0;
}

/**
 * Tabs
 */
dl.tabs {
	float: right;
	margin: 10px 0 -1px 0;
}

dl.tabs dt {
	float: right;
	padding: 4px 10px;
	margin-right: 3px;
}

div.current {
	padding: 10px 10px;
}

/* New parameter styles (check rtl) */

dl#content-pane.tabs {
	margin: 1px 0 0 0;
}

div.current label, div.current span.faux-label {
	float:right;
	clear:right;
}

div.current fieldset.radio {
	float:right;
}

div.current fieldset.radio input {
	float:right;
	margin: 3px 2px 0 0;
}

div.current fieldset.radio label {
	float:right;
	margin: 3px 2px 0 0;
}

div.current fieldset.checkboxes {
	float:right;
	clear:left;
}

div.current fieldset.checkboxes input {
	float:right;
	clear:right;
	margin: 3px 2px 0 0;
}

div.current fieldset.checkboxes label {
	clear:left;
	margin: 3px 2px 0 0;
}

div.current input,
div.current span.faux-input,
div.current textarea,
div.current select {
	float:right;
	margin: 3px 2px 0 0;
}

div.current table#acl-config th.acl-groups {
	text-align: right;
}

div.current table#filter-config th.acl-groups {
	text-align: right;
}

/* -------- Menu Assignments ---------- */
div#menu-assignment {
	clear:right;
}

div#menu-assignment ul.menu-links {
	float:right;
}

div#menu-assignment h3 {
	clear:right;
}

div#menu-assignment ul.menu-links li.menu-link label {
	float: right;
	margin: 3px 2px 0 0;
}
div#menu-assignment ul.menu-links li.menu-link input {
	clear: right;
	float: right;
}

p.tab-description {
	margin-right: 0;
}
/* end new parameter styles */

/**
 * Login Settings
 */
#login-page input, #login-page select {
	float: left;
}

#login-page .login {
	margin: 0 auto;
}

#login-page .pagetitle h2 {
	margin: -70px 0 30px 0;
}

#login-page .login-inst {
	float: right;
}

#login-page .login-box {
	float: left;
}

#login-page .button {
	text-align: left;
}

#login-page .login-text {
	text-align: right;
	float: right;
}

#form-login {
	float: left;
}

#form-login label {
	float: right;
	clear: right;
	text-align: left;
}

#form-login div.button1 div.next {
	float: right;
}

#form-login div.button1 a {
	padding: 0 15px 0 15px;
	/* padding: 0 6px 0 30px; use this if you use images */
}

/**
 * Cpanel Settings
 */
.cpanel div.icon ,
#cpanel div.icon {
	margin-left: 5px;
	float: right;
}

.cpanel div.icon a ,
#cpanel div.icon a {
	float: right;
}

.cpanel img ,
#cpanel img {
	padding: 10px 0;
	margin: 0 auto;
}

div.cpanel-icons {
	float: right;
}

div.cpanel-component {
	float: left;
}

/**
 * Standard Layout Styles
 */
div.col {
	float: right;
}

div.options-section.col {
	float: left;
}

div.col1 {
	float: right;
}

div.col2 {
	float: left;
}

	/* Avoid using the width divs. They are here for 3PD Extensions if needed
	 * Use the specific layout divs listed after. See also the th.width
entries */
.clrlft { clear: right; }
.clrrt { clear: left; }
.fltlft { float: right; }
.fltrt { float: left; }
.fltnone { float: none; }

	/* Layout Divs */
div.options-section {
	margin: 10px 0 10px 10px;
}

/* for bluestork style html */
div.width-40.fltrt {
	margin: 10px 0 10px 10px;
}

/**
 * Form Styles
 */

fieldset {
	margin: 2px 10px 2px 10px;
	text-align: right;
}

fieldset p {
	margin: 10px 0;
}

/* new form fields (check rtl) */

fieldset.adminform fieldset.radio,
fieldset.panelform fieldset.radio,
fieldset.adminform-legacy fieldset.radio  {
	float:right;
	margin: 0 0 5px 0;
	clear:left;
}
fieldset.adminform fieldset.radio label,
fieldset.panelform fieldset.radio label,
fieldset.adminform fieldset.radio span.faux-label,
fieldset.panelform fieldset.radio span.faux-label {
	float:right;
}

fieldset.panelform-legacy label,
fieldset.adminform-legacy label,
fieldset.panelform-legacy span.faux-label,
fieldset.adminform-legacy span.faux-label {
	float:right;

}
/* JParameter classes on radio button labels  */

p.jform_desc {
	clear: right;
}

fieldset ul.checklist {
	margin-right: 27px;
	margin-left: 0;
}

fieldset#filter-bar {
	margin: 0;
	padding: 5px 10px 5px 10px;
}

fieldset#filter-bar ol, fieldset#filter-bar ul {
	padding: 5px 0 0;
}

fieldset#filter-bar ol li, fieldset#filter-bar ul li {
	float: right;
	padding: 0 0 0 5px;
}

fieldset#filter-bar .filter-search {
	float: right;
}

fieldset#filter-bar .filter-select {
	float: left;
}


	/* Note: these visual cues should be augmented by aria */

	/* must be augmented by aria at the same time if changed dynamically by js
	aria-invalid=true or aria-invalid=false */


	/* augmented by aria in template javascript */

span.readonly {
	float: right;
}

div.extdescript {
	margin-right: 10px;
}

input[type="button"] {
	padding: 1px 6px;
}

/**
 * Option or Parameter styles
 */


/* end from alpha2 */

span.gi {
	margin-left: 5px;
}

/**
 * Admintable Styles
 */

table.admintable td.key,table.admintable td.paramlist_key {
	text-align: left;
}

table.paramlist td.paramlist_description {
	text-align: right;
}

/**
 * Admin Form Styles
 */
fieldset.adminform {
	margin: 0 10px 10px 10px;
}
fieldset.adminform .input-prepend,
fieldset.adminform .input-append,
fieldset.panelform .input-prepend,
fieldset.panelform .input-append {
	float: right;
}
fieldset.adminform .adminformlist .btn.modal,
fieldset.adminform .input-prepend > *,
fieldset.adminform .input-append > *,
fieldset.panelform .adminformlist .btn.modal,
fieldset.panelform .input-prepend > *,
fieldset.panelform .input-append > * {
	float: none;
	vertical-align: middle;
}

	/* Table styles are for use with tabular data */
table.adminform {
	margin: 8px 0 10px 0;
}


table.adminform th {
	padding: 6px 4px 4px 2px;
	text-align: right;
}

table.adminform td {
	text-align: right;
}

table.adminform td#filter-bar {
	text-align: right;
}

table.adminform td.helpMenu {
	text-align: left;
}

table.adminform tr {
	padding-right: 10px;
	padding-left: 10px;
	border-left: 1px solid #c7c8b2;
	border-right: none;
}

/**
 * Table formatting styles
 */

	/* Avoid using the width classes. They are here for 3PD Extensions if
needed
	 * Use the specific layout table headers listed after. See also the
div.width entries */

	/* Table header layout classes */

th.ordering-col a {
	float:right;
	margin-right: 3px;
}

th.ordering-col a img {
	margin-right: 4px;
	margin-left: 4px;
}

/**
 * Adminlist Table layout
 */
table.adminlist {
	float: right;
}
	/* Table row styles */
table.adminlist tr {
	padding-left: 30px;
	padding-right: 30px;
}

table.adminlist tbody tr {
	text-align: right;
}

	/* Table td/th styles */
table.adminlist td.order span {
	float: right;
}

/**
 * Tree indentation & nesting - Up to 10 levels deep so don't go
crazy :
 */
table.adminlist td.indent-4 	{ padding-right:4px; }
table.adminlist td.indent-19 	{ padding-right:19px; }
table.adminlist td.indent-34 	{ padding-right:34px; }
table.adminlist td.indent-49 	{ padding-right:49px; }
table.adminlist td.indent-64 	{ padding-right:64px; }
table.adminlist td.indent-79 	{ padding-right:79px; }
table.adminlist td.indent-94 	{ padding-right:94px; }
table.adminlist td.indent-109 	{ padding-right:109px; }
table.adminlist td.indent-124 	{ padding-right:124px; }
table.adminlist td.indent-139 	{ padding-right:139px; }

/**
 * Adminlist buttons
 */
table.adminlist tr td.btns a {
	padding: 3px 20px;
}

/**
 * Modal Modules styles
 */
ul#new-modules-list {
	margin-right: 50px;
	margin-left: 0;
}

/**
 * Utility styles
 */
	/* General Clearing Class */
.menu-module-list {
	padding-right: 10px;
	margin-right: 5px;
}

	/* stu nicholls solution for centering divs */

	/* table solution for global config */

table.noshow fieldset {
	margin: 15px 7px 7px 7px;
}

/**
 * Saving order icon styling in admin tables
 */
a.saveorder {
	float:left;
	margin-left: 8px;
}

/**
 * Button styling
 */
#editor-xtd-buttons {
	padding: 5px;
}

/* Button 1 Type */
.button1,.button1 div {
	float: left;
}

	/* Use this if you add images to the buttons such as directional arrows */

.button1 a {
	float: right;
	padding: 0 6px 0 6px;
}

	/* Button 2 Type */
.button2-left,.button2-right {
	float: right;
}

.button2-left a,
.button2-right a,
.button2-left span,
.button2-right span {
	float: right;
}

	/* these are inactive buttons */

.button2-left .page a,
.button2-right .page a,
.button2-left .page span,
.button2-right .page span,
.button2-left .blank a,
.button2-right .blank a,
.button2-left .blank span,
.button2-right .blank span {
	padding: 0 6px;
}

.button2-left a,.button2-left span {
	padding: 0 6px 0 24px;
}

.button2-right a,.button2-right span {
	padding: 0 24px 0 6px;
}

.button2-left {
	float: right;
	margin-right: 5px;
}

.button2-right {
	float: right;
	margin-right: 5px;
}

/* background images moved to the color rtl css file */

/**
 * Pagination styles
 */

	/* Normal pagination styles */
div.containerpg {
	position: relative;
	right: 50%;
	float: right;
	clear: right;
}

div.pagination {
	right: -50%;
	margin: 0 auto;
}

.pagination a {
	line-height: 1.6em;
}

.pagination div.limit {
	float: right;
	margin: 0 10px;
}

	/* The Go submittal button */
.pagination button {
	margin-left: 20px;
}

	/* Style if pagination is part of the table (old style) */
table.adminlist .pagination {
	margin: 0 auto;
}

table.adminlist .pagination button {
	margin-left: 20px;
}

/**
 * Pagination styles
 */

	/* Normal pagination styles */
div.containerpg {
	right: 50%;
	float: right;
	clear: right;
}

div.pagination {
	right: -50%;
	margin: 0 auto;
}

.pagination div.limit {
	float: right;
	margin: 0 10px;
}

	/* The Go submittal button */
.pagination button {
	margin-left: 20px;
}


	/* Grey out the current page number */


	/* Style if pagination is part of the table (old style) */

table.adminlist .pagination button {
	margin-left: 20px;
}

/**
 * MCE Editor
 */
div.toggle-editor {

}

/**
 * Tooltips
 */

.tip-text {
	text-align: right;
}

/**
 * Calendar
 */
a img.calendar {
	margin-right: 3px;
}

/**
 * General styles
 */

.helpFrame {
	padding: 0 10px 0 5px;
}

#treecellhelp {
	float: right;
}

#datacellhelp {
	float: right;
	padding: 2px 0 0 0;
}

/* -- MODAL STYLES ----------- */
div#sbox-window {
	text-align: right;
}

h2.modal-title {
	margin: 5px 15px 0 0;
}

ul.menu_types {
	padding: 0 15px 0 0;
}
ul.menu_types li,
dl.menu_type dd ul li {
	float:right;
	margin-left: 10px;
	margin-right: 0;
}

dl.menu_type dt {
	float:right;
	margin: 13px 0 5px 0;
}
dl.menu_type dd {
	clear:right;
}

dl.menu_type dd ul li {
	margin: 0;
}

dl.menu_type dd ul {
	margin: 0;
}

ul#new-modules-list {
	padding: 5px 15px 0 0;
	margin: 0;
}
ul#new-modules-list li {
	float:right;
	margin: 0 0 0 20px;
}

/**
 * User Accessibility
 */

	/* Skip to Content Structural Styling */
#skiplinkholder a,
#skiplinkholder a:link,
#skiplinkholder a:visited {
	left: 0;
	right: -200%;
}

#skiplinkholder a:focus, #skiplinkholder a:active {
	right: 0;
	top: 0;
}

#skiplinkholder p {
	margin: 0;
}

#skiptargetholder {
	left: 0;
	right: -200%;
}

	/* Skip to Content Visual Styling */
#skiplinkholder a, #skiplinkholder a:link, #skiplinkholder a:visited {
	padding-left: 20px;
	padding-right: 20px;
}

	/* For elements that aren't to be seen by users unless the user does
something
	 * like clicking on a header to see the collapsed section. */

	/* For elements that aren't to be seen by visual users but do need to
be read by screenreaders.
	 * Cannot be used for elements that can get focus such as links and form
elements */

	/* Firefox has issues styling legend so this is a universal fix
	for making the legend invisible (i.e. visually it's not there, but
screen readers see it */

legend.element-invisible {
	/*margin: 0;
	margin-right: -10000px; */
}

fieldset.adminform label,
fieldset.panelform label,
fieldset.adminform span.faux-label,
fieldset.panelform span.faux-label {
	clear:right;
	float:right;
	margin-right: 10px;
	margin-left: 5px;
}

fieldset.adminform fieldset.radio label,
fieldset.panelform fieldset.radio label,
fieldset.adminform fieldset.radio span.faux-label,
fieldset.panelform fieldset.radio span.faux-label {
	margin-right: 0;
}

/* checkboxes */
fieldset.adminform fieldset.checkboxes,
fieldset.panelform fieldset.checkboxes,
fieldset.adminform-legacy fieldset.checkboxes  {
	float:right;
	margin: 0 0 5px 0;
	clear:left;
}

fieldset.adminform fieldset.checkboxes input[type="checkbox"],
fieldset.panelform fieldset.checkboxes input[type="checkbox"] {
	float: right;
	clear: right;
}

fieldset.adminform fieldset.checkboxes label,
fieldset.panelform fieldset.checkboxes label,
fieldset.adminform fieldset.checkboxes span.faux-label,
fieldset.panelform fieldset.checkboxes span.faux-label {
	clear: left;
}
/* end checkboxes */

fieldset.adminform input, fieldset.adminform span.faux-input,
fieldset.adminform textarea, fieldset.adminform select, fieldset.adminform
img, fieldset.adminform button,
fieldset.panelform input, fieldset.panelform span.faux-input,
fieldset.panelform textarea, fieldset.panelform select, fieldset.panelform
img, fieldset.panelform button {
	float:right;
	margin:5px 0 5px 5px;
}

/* -------- Batch Section ---------- */
fieldset#batch-choose-action {
	clear:none;
	clear: right;
}
fieldset.batch label {
	float: right;
	clear: none;
}
fieldset label#batch-choose-action-lbl {
	clear: none;
	clear: right;
}
label#batch-language-lbl,
label#batch-user-lbl {
	clear: right;
	margin-left: 10px;
	margin-right: 0;
	margin-top: 15px;
}
select#batch-language-id,
select#batch-user-id {
	margin-top: 15px;
}
select#batch-category-id,
select#batch-menu-id,
select#batch-position-id
{
	margin-left: 30px;
	margin-right: 0;
}
fieldset.batch select, fieldset.batch input, fieldset.batch img,
fieldset.batch button {
	float: right;
}
label#batch-access-lbl,
label#batch-client-lbl {
	margin-right: 0;
	margin-left: 10px;
}

/* Banner edit */


/* -- ACL STYLES relocated from com_users/media/grid.css ----------- */

/* -- ACL PANEL STYLES  ----------- */


/* All Tabs */

td.col1 {
	text-align:right;
}

/* Icons */
label.icon-16-allow,
label.icon-16-deny,
a.icon-16-allow,
a.icon-16-deny,
a.icon-16-allowinactive,
a.icon-16-denyinactive {
	margin: 0 auto;
}
label.icon-16-allow {
	right: 40%;
}
label.icon-16-deny {
	right: 40%;
}

ul.acllegend li {
	float: right;
	padding-left: 20px;
	margin: 15px 10px 15px 0;
}
ul.acllegend li.acl-allowed {
	padding-right: 20px;
	padding-left: 10px;
}
ul.acllegend li.acl-denied {
	padding-right: 20px;
	padding-left: 20px;
}
ul.acllegend li.acl-editgroups {
	padding-left: 10px;
}
ul.acllegend li.acl-resetbtn {
	padding-left: 0;
}

li.acl-editgroups,
li.acl-resetbtn {
	float: right;
}

table#acl-config th.acl-groups {
	padding-right: 8px;
}

table#acl-config th.acl-groups {
	text-align: right;
}

.acl-action {
	margin: auto 0;
}

/* Icons */
span.icon-16-unset,
span.icon-16-allowed,
span.icon-16-denied,
span.icon-16-locked {
	padding-left: 0;
	padding-right: 18px;
}

/* *
* Permission Rules
*/

#permissions-sliders ul#rules,
#permissions-sliders ul#rules ul {
    margin: 0 !important;
    padding: 0 !important;
}

#permissions-sliders ul#rules li {
	margin: 0;
	padding: 0;
}

#permissions-sliders ul#rules table.group-rules td {
    padding:4px;
    vertical-align:middle;
    text-align:right;
}

#permissions-sliders .panel {
    margin-bottom: 3px;
    margin-right: 0;
}

ul#rules table.group-rules td label {
	margin: 0 !important;
}

table.group-rules td select {
	margin: 0 !important;
}

#permissions-sliders ul#rules .mypanel {
	padding: 0;
}

#permissions-sliders ul#rules {
	padding: 5px;
}

#permissions-sliders  ul#rules  table.group-rules th {
    text-align: right;
    padding: 4px;
}

#permissions-sliders .pane-toggler  span {
	padding-left: 0;
	padding-right: 20px;
}

#permissions-sliders .pane-toggler-down span {
	padding-left: 0;
	padding-right: 20px;
}

/**
 * Helpmenus
 */
ul.helpmenu li {
	float: left;
}

/**
 * Menu Styling
 */
#menu a {
	padding: 0.35em 2em 0.35em 2.5em;
}

#menu li {
	float: right;
}

#menu li ul { /* second-level lists */
	margin-right: -1000em;
	/* using right instead of display to hide menus because display: none
isn't read by screen readers */
}

#menu li ul ul { /* third-and-above-level lists */
	margin: -2.3em -1000em 0 0;
	/* top margin is equal to parent line height+bottom padding */
}

#menu li:hover ul ul,#menu li.sfhover ul ul {
	margin-right: -1000em;
}

#menu li:hover ul,#menu li.sfhover ul {
	/* lists nested under hovered list items */
	margin-right: 0;
}

#menu li li:hover ul,#menu li li.sfhover ul {
	margin-right: 16em;
}

/**
 * Extra positioning rules for limited noscript keyboard accessibility
 * need the backgrounds here to keep the background as the nav background
 * since it is overlaying other content.
 * Using margin-left instead of left so that can move back without
javascript
 * display downlevel ul
 */
#menu li a:focus+ul {
	margin-right: 0;
}

#menu li li a:focus+ul {
	margin-right: 1016em;
}

/* bring back the focus elements into view */
#menu li li a:focus {
	margin-right: 1000em;
}

#menu li li li a:focus {
	margin-right: 2016em;
}

#menu li:hover a:focus,#menu li.sfhover a.sffocus {
	margin-right: 0;
}

#menu li li:hover a:focus+ul,#menu li li.sfhover a.sffocus+ul {
	margin-right: 16em;
}

/**
 * Submenu styling
 */


#submenu a, #submenu span.nolink {
	float: right;
	margin-left: 8px;
	padding: 2px 10px 2px 10px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

/* Installer Database */
#installer-database p.warning {
	padding-left: 0;
	padding-right: 20px
}

#installer-database #sidebar {
	float: none
}

#installer-database p.nowarning {
	padding-left: 0;
	padding-right: 20px
}

p.nowarning {
	float: none;
	margin-left: 0;
	margin-right: 15px;
}

table.adminlist tfoot button {
	float: right;
}

/* Spinner */
.joomlaupdate_spinner {
	float: right;
	margin-left: 15px;
}

/* Various corrections */
[class*="span"] {
	float: none;
	margin-left: 0;
	margin-right: 0;
}

#sidebar {
	float:right;
	margin: 15px 0;
}

#submenu li, #submenu span.nolink {
	float: right;
}

div.btn-toolbar {
	float: right;
	text-align: right;
}

.btn-group {
	float: right;
	margin-right: 10px;
}

#module-status div.btn-group {
	float: right;
}

.nav-tabs > li, .nav-pills > li {
	float: none;
}

.tabs-left > .nav-tabs {
	border-right: 0 solid #DDDDDD;
	float: right;
	margin-right: 19px;
}

.list-striped, .row-striped {
	text-align: right;
}

.row-fluid [class*="span"] {
	float: none;
}
.media .btn {
	float: none;
}

.media {
	float:none;
	margin: 10px 20px;
}

.alert .close {
	right: 5px;
	float: left;
}

.popover,
.tooltip-inner {
	text-align: right;
}
div.toggle-editor {
	float: left;
}
#editor-xtd-buttons .btn {
	float: right;
}
div.toggle-editor {
	margin-top: 14px;
}
.modal-footer button {
	float: left;
}
#form-login  {
	float: right;
}css/theme.css000064400000013617151163244070007163 0ustar00@charset
"UTF-8";

/**
 * @package		Joomla.Administrator
 * @subpackage	templates.hathor
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 * @since		1.6
 */

/* ThemeOfficeMenu Style Sheet */

.ThemeOfficeMenu,
.ThemeOfficeSubMenuTable {
	font-family: Arial, Verdana, sans-serif;
	font-size: 13px;
	padding: 0;
	white-space: nowrap;
	cursor: default;
	height: 25px;
}

.ThemeOfficeSubMenu {
	position: absolute;
	visibility:	hidden;
	/*
	   Netscape/Mozilla renders borders by increasing
	   their z-index.  The following line is necessary
	   to cover any borders underneath
	*/
	z-index:	100;
	border:		0;
	padding:	0;
	overflow:	visible;
	border:		1px solid #8C867B;
	filter:progid:DXImageTransform.Microsoft.Shadow(color=#BDC3BD,
Direction=135, Strength=4);
}

.ThemeOfficeSubMenuTable {
	overflow:	visible;
}

.ThemeOfficeMainItem,
.ThemeOfficeMainItemHover,
.ThemeOfficeMainItemActive,
.ThemeOfficeMenuItem,
.ThemeOfficeMenuItemHover,
.ThemeOfficeMenuItemActive {
	border:	0;
	cursor: default;
	white-space: nowrap;
}

.ThemeOfficeMainItem {
	/*background-color:	#EFEBDE;*/
}

.ThemeOfficeMainItemHover,
.ThemeOfficeMainItemActive {
	background-color:	#e7eddf;
}

.ThemeOfficeMenuItem {
	background-color:	#F1F3F5;
}

.ThemeOfficeMenuItemHover,
.ThemeOfficeMenuItemActive {
	background-color:	#e7eddf;
}


/* horizontal main menu */

.ThemeOfficeMainItem {
	padding: 4px 1px 4px 1px;
	border: 0;
}

td.ThemeOfficeMainItemHover,
td.ThemeOfficeMainItemActive {
	padding:	0;
	border-right:	1px solid #6d9d2e;
	border-left:	1px solid #6d9d2e;
}

.ThemeOfficeMainFolderLeft,
.ThemeOfficeMainItemLeft,
.ThemeOfficeMainFolderText,
.ThemeOfficeMainItemText,
.ThemeOfficeMainFolderRight,
.ThemeOfficeMainItemRight {
	background-color: inherit;
}

/* vertical main menu sub components */

td.ThemeOfficeMainFolderLeft,
td.ThemeOfficeMainItemLeft {
	padding-top:	2px;
	padding-bottom:	2px;
	padding-left:	0;
	padding-right:	2px;

	border-top:	1px solid #6d9d2e;
	border-bottom:	1px solid #6d9d2e;
	border-left:	1px solid #6d9d2e;

	background-color:	inherit;
}

td.ThemeOfficeMainFolderText,
td.ThemeOfficeMainItemText {
	padding-top:	2px;
	padding-bottom:	2px;
	padding-left:	5px;
	padding-right:	5px;

	border-top:	1px solid #6d9d2e;
	border-bottom:	1px solid #6d9d2e;

	background-color:	inherit;
	white-space:	nowrap;
}

td.ThemeOfficeMainFolderRight,
td.ThemeOfficeMainItemRight {
	padding-top:	2px;
	padding-bottom:	2px;
	padding-left:	0;
	padding-right:	0;

	border-top:	1px solid #6d9d2e;
	border-bottom:	1px solid #6d9d2e;
	border-right:	1px solid #6d9d2e;

	background-color:	inherit;
}

tr.ThemeOfficeMainItem td.ThemeOfficeMainFolderLeft,
tr.ThemeOfficeMainItem td.ThemeOfficeMainItemLeft {
	padding-top:	3px;
	padding-bottom:	3px;
	padding-left:	1px;
	padding-right:	2px;
	white-space:	nowrap;
	border:	0;
	background-color: inherit;
}

tr.ThemeOfficeMainItem td.ThemeOfficeMainFolderText,
tr.ThemeOfficeMainItem td.ThemeOfficeMainItemText {
	padding-top:	3px;
	padding-bottom:	3px;
	padding-left:	5px;
	padding-right:	5px;
	border:		0;
	background-color:	inherit;
}

tr.ThemeOfficeMainItem td.ThemeOfficeMainItemRight,
tr.ThemeOfficeMainItem td.ThemeOfficeMainFolderRight {
	padding-top:	3px;
	padding-bottom:	3px;
	padding-left:	0;
	padding-right:	1px;
	border:		0;
	background-color:	inherit;
}

/* sub menu sub components */

.ThemeOfficeMenuFolderLeft,
.ThemeOfficeMenuItemLeft {
	padding-top:	2px;
	padding-bottom:	2px;
	padding-left:	1px;
	padding-right:	3px;
	border-top:	1px solid #6d9d2e;
	border-bottom:	1px solid #6d9d2e;
	border-left:	1px solid #6d9d2e;
	background-color:	inherit;
	white-space:	nowrap;
}

.ThemeOfficeMenuFolderText,
.ThemeOfficeMenuItemText {
	padding-top:	2px;
	padding-bottom:	2px;
	padding-left:	5px;
	padding-right:	5px;

	border-top:	1px solid #6d9d2e;
	border-bottom:	1px solid #6d9d2e;

	background-color:	inherit;
	white-space:	nowrap;
}

.ThemeOfficeMenuFolderRight,
.ThemeOfficeMenuItemRight {
	padding-top:	2px;
	padding-bottom:	2px;
	padding-left:	0;
	padding-right:	0;

	border-top:	1px solid #6d9d2e;
	border-bottom:	1px solid #6d9d2e;
	border-right:	1px solid #6d9d2e;
	background-color:	inherit;
	white-space:	nowrap;
}

.ThemeOfficeMenuItem .ThemeOfficeMenuFolderLeft,
.ThemeOfficeMenuItem .ThemeOfficeMenuItemLeft {
	padding-top:	3px;
	padding-bottom:	3px;
	padding-left:	2px;
	padding-right:	3px;
	white-space:	nowrap;
	border: 	0;
	background-color:	#DDE1E6;
}

.ThemeOfficeMenuItem .ThemeOfficeMenuFolderText,
.ThemeOfficeMenuItem .ThemeOfficeMenuItemText {
	padding-top:	3px;
	padding-bottom:	3px;
	padding-left:	5px;
	padding-right:	5px;
	border:		0;
	background-color:	inherit;
}

.ThemeOfficeMenuItem .ThemeOfficeMenuFolderRight,
.ThemeOfficeMenuItem .ThemeOfficeMenuItemRight {
	padding-top:	3px;
	padding-bottom:	3px;
	padding-left:	0;
	padding-right:	1px;
	border:		0;
	background-color:	inherit;
}

/* menu splits */

.ThemeOfficeMenuSplit {
	margin:		2px;
	height:		1px;
	overflow:	hidden;
	background-color:	inherit;
	border-top:	1px solid #C6C3BD;
}

/* image shadow animation */
/*
	seq1:	image for normal
	seq2:	image for hover and active
	To use, in the icon field, input the following:
	<img class="seq1" src="normal.gif" /><img
class="seq2" src="hover.gif" />
*/

.ThemeOfficeMenuItem img.seq1 {
	display:	inline;
}

.ThemeOfficeMenuItemHover seq2,
.ThemeOfficeMenuItemActive seq2 {
	display:	inline;
}

.ThemeOfficeMenuItem .seq2,
.ThemeOfficeMenuItemHover .seq1,
.ThemeOfficeMenuItemActive .seq1 {
	display:	none;
}

/* inactive settings */
div.inactive td.ThemeOfficeMainItemHover,
div.inactive td.ThemeOfficeMainItemActive {
	border-top: 0;
	border-right:	1px solid #f1f3f5;
	border-left:	1px solid #f1f3f5;
}

div.inactive .ThemeOfficeMainItem {
	color: #bbb;
}

div.inactive span.ThemeOfficeMainItemText {
	color: #aaa;
}

div.inactive .ThemeOfficeMainItemHover,
div.inactive .ThemeOfficeMainItemActive {
	background-color:	#f1f3f5;
}error.php000064400000006220151163244070006411 0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

/** @var JDocumentError $this */

$app = JFactory::getApplication();
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>"
dir="<?php echo $this->direction; ?>">
<head>
	<meta charset="utf-8" />
	<title><?php echo $this->title; ?> <?php echo
htmlspecialchars($this->error->getMessage(), ENT_QUOTES,
'UTF-8'); ?></title>
	<link href="<?php echo $this->baseurl;
?>/templates/<?php echo  $this->template;
?>/css/error.css" rel="stylesheet" />
	<?php if ($app->get('debug_lang', '0') ==
'1' || $app->get('debug', '0') ==
'1') : ?>
		<!-- Load additional CSS styles for debug mode-->
		<link href="<?php echo JUri::root(true);
?>/media/cms/css/debug.css" rel="stylesheet" />
	<?php endif; ?>
	<!-- Load additional CSS styles for rtl sites -->
	<?php if ($this->direction == 'rtl') : ?>
		<link href="<?php echo $this->baseurl;
?>/templates/<?php echo  $this->template;
?>/css/template_rtl.css" rel="stylesheet" />
	<?php endif; ?>
	<!--[if lt IE 9]><script src="<?php echo
JUri::root(true);
?>/media/jui/js/html5.js"></script><![endif]-->
</head>
<body class="errors">
	<div>
		<h1>
			<?php echo $this->error->getCode(); ?> - <?php echo
JText::_('JERROR_AN_ERROR_HAS_OCCURRED'); ?>
		</h1>
	</div>
	<div>
		<p>
			<?php echo htmlspecialchars($this->error->getMessage(),
ENT_QUOTES, 'UTF-8'); ?>
			<?php if ($this->debug) : ?>
				<br/><?php echo
htmlspecialchars($this->error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->error->getLine(); ?>
			<?php endif; ?>
		</p>
		<p><a href="index.php"><?php echo
JText::_('JGLOBAL_TPL_CPANEL_LINK_TEXT');
?></a></p>
		<?php if ($this->debug) : ?>
			<div>
				<?php echo $this->renderBacktrace(); ?>
				<?php // Check if there are more Exceptions and render their data as
well ?>
				<?php if ($this->error->getPrevious()) : ?>
					<?php $loop = true; ?>
					<?php // Reference $this->_error here and in the loop as
setError() assigns errors to this property and we need this for the
backtrace to work correctly ?>
					<?php // Make the first assignment to setError() outside the loop
so the loop does not skip Exceptions ?>
					<?php $this->setError($this->_error->getPrevious()); ?>
					<?php while ($loop === true) : ?>
						<p><strong><?php echo
JText::_('JERROR_LAYOUT_PREVIOUS_ERROR');
?></strong></p>
						<p>
							<?php echo htmlspecialchars($this->_error->getMessage(),
ENT_QUOTES, 'UTF-8'); ?>
							<br/><?php echo
htmlspecialchars($this->_error->getFile(), ENT_QUOTES,
'UTF-8');?>:<?php echo $this->_error->getLine();
?>
						</p>
						<?php echo $this->renderBacktrace(); ?>
						<?php $loop =
$this->setError($this->_error->getPrevious()); ?>
					<?php endwhile; ?>
					<?php // Reset the main error object to the base error ?>
					<?php $this->setError($this->error); ?>
				<?php endif; ?>
			</div>
		<?php endif; ?>
	</div>
	<div class="clr"></div>
	<noscript>
			<?php echo JText::_('JGLOBAL_WARNJAVASCRIPT'); ?>
	</noscript>
</body>
</html>
favicon.ico000064400000003743151163244070006677 0ustar00�PNG


IHDR�asRGB���	pHYs��$iTXtXML:com.adobe.xmp<x:xmpmeta
xmlns:x="adobe:ns:meta/" x:xmptk="XMP Core 5.4.0">
   <rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:xmp="http://ns.adobe.com/xap/1.0/">
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <tiff:Compression>5</tiff:Compression>
         <tiff:XResolution>72</tiff:XResolution>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:YResolution>72</tiff:YResolution>
         <exif:PixelXDimension>16</exif:PixelXDimension>
         <exif:ColorSpace>1</exif:ColorSpace>
         <exif:PixelYDimension>16</exif:PixelYDimension>
         <dc:subject>
            <rdf:Seq/>
         </dc:subject>
         <xmp:ModifyDate>2015:03:15 13:03:46</xmp:ModifyDate>
         <xmp:CreatorTool>Pixelmator 3.3.1</xmp:CreatorTool>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
>Iv]XIDAT8}�]h\E�ϙ�{wﺻI]m�XClK4�RE�w-E��(->�f|)y�~(Z�"ȢA�R�h�Z�B46M��-$ӆ6&-k41����c�xn��S��\����s��g;^��t}�Pc{���յ��
׽�uQ��{VJ�5"I"�:�����X���7���O))����:L;�j8�lQ�P
��%!��럒|2��qye��4��m�m<3�@�!��$�+c粒���J�ۤ-S�R��Hk�A8$��k���
)��[�O�/�ov,�6�˔�}�O0|�
��n�����N�ҀF�{Ӂ�{ǽLK�)��{�|�G��
ʭ�"W���?��X-����Y�W�~Rn�2�˰o.�
x�*S߇�Kê:
�4`DF�oԝ.(Y�&pKq��ѵX�n���9�bbn��|��cc�N��ݛZĴ�&��ܖۑ�t�B���Trj]ޱ*�Sxqd�w?��	p�|���n�)3^E8Y��⑷g"rU`Wn�A�O�5���?�H�lpY[��Q8��+��]��r�q�oޱe��t����j	Z�G�O\}�����r���7�wَ�C����V6t�b70j�#Ū�!��_WH+��R����F&/������Ϗ��j.9W���xZA!�/�W>	`[�X;���GP���w6�V���R�{4w�e��WD�0�Α�h�������Lȣ��%J�Л��z����=i
ZϰŠ��Q����^"���O:58՛�k��~h���l`M��ǽS�qV1DZ���m���hb��w�yu�K����o��;�������DS(IEND�B`�html/com_admin/help/default.php000064400000003721151163244070012531
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

jimport('joomla.language.help');
?>
<form action="<?php echo
JRoute::_('index.php?option=com_admin&amp;view=help');
?>" method="post" name="adminForm"
id="adminForm">
<div class="width-50 fltrt helplinks">
	<ul class="helpmenu">
		<li><?php echo JHtml::_('link',
JHelp::createUrl('JHELP_GLOSSARY'),
JText::_('COM_ADMIN_GLOSSARY'), array('target' =>
'helpFrame')) ?></li>
		<li><?php echo JHtml::_('link',
'https://www.gnu.org/licenses/gpl-2.0.html',
JText::_('COM_ADMIN_LICENSE'), array('target' =>
'helpFrame')) ?></li>
		<li><?php echo JHtml::_('link',
$this->latest_version_check,
JText::_('COM_ADMIN_LATEST_VERSION_CHECK'),
array('target' => 'helpFrame')) ?></li>
		<li><?php echo JHtml::_('link',
JHelp::createUrl('JHELP_START_HERE'),
JText::_('COM_ADMIN_START_HERE'), array('target' =>
'helpFrame')) ?></li>
	</ul>
</div>
<div class="clr"> </div>
	<div id="treecellhelp" class="width-20 fltleft">
		<fieldset class="adminform whitebg" title="<?php
echo JText::_('COM_ADMIN_ALPHABETICAL_INDEX'); ?>">
			<legend><?php echo
JText::_('COM_ADMIN_ALPHABETICAL_INDEX'); ?></legend>

			<div class="helpIndex">
				<ul class="subext">
					<?php foreach ($this->toc as $k => $v):?>
						<li>
							<?php $url = JHelp::createUrl('JHELP_'.strtoupper($k));
?>
							<?php echo JHtml::_('link', $url, $v,
array('target' => 'helpFrame'));?>
						</li>
					<?php endforeach;?>
				</ul>
			</div>
		</fieldset>
	</div>

	<div id="datacellhelp" class="width-80 fltrt">
		<fieldset title="<?php echo
JText::_('COM_ADMIN_VIEW'); ?>">
			<legend>
				<?php echo JText::_('COM_ADMIN_VIEW'); ?>
			</legend>
				<iframe name="helpFrame" src="<?php echo
$this->page;?>" class="helpFrame"></iframe>
		</fieldset>
	</div>
</form>
html/com_admin/profile/edit.php000064400000004304151163244070012540
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.formvalidator');

// Get the form fieldsets.
$fieldsets = $this->form->getFieldsets();

JFactory::getDocument()->addScriptDeclaration("
	Joomla.submitbutton = function(task)
	{
		if (task == 'profile.cancel' ||
document.formvalidator.isValid(document.getElementById('profile-form')))
		{
			Joomla.submitform(task,
document.getElementById('profile-form'));
		}
	}
");
?>
<form action="<?php echo
JRoute::_('index.php?option=com_admin&view=profile&layout=edit&id='.$this->item->id);
?>" method="post" name="adminForm"
id="profile-form" class="form-validate"
enctype="multipart/form-data">
	<div class="col main-section">
		<fieldset class="adminform">
			<legend><?php echo
JText::_('COM_ADMIN_USER_ACCOUNT_DETAILS'); ?></legend>
			<ul class="adminformlist">
			<?php foreach
($this->form->getFieldset('user_details') as $field) :
?>
				<li><?php echo $field->label; ?>
				<?php echo $field->input; ?></li>
			<?php endforeach; ?>
			</ul>
		</fieldset>
	</div>

	<div class="col options-section">
		<?php
		echo JHtml::_('sliders.start');
		foreach ($fieldsets as $fieldset) :
			if ($fieldset->name == 'user_details') :
				continue;
			endif;
			echo JHtml::_('sliders.panel', JText::_($fieldset->label),
$fieldset->name);
		?>
		<fieldset class="panelform">
		<legend class="element-invisible"><?php echo
JText::_($fieldset->label); ?></legend>
		<ul class="adminformlist">
		<?php foreach ($this->form->getFieldset($fieldset->name) as
$field) : ?>
			<?php if ($field->hidden) : ?>
				<?php echo $field->input; ?>
			<?php else: ?>
				<li><?php echo $field->label; ?>
				<?php echo $field->input; ?></li>
			<?php endif; ?>
		<?php endforeach; ?>
		</ul>
		</fieldset>
		<?php endforeach; ?>
		<?php echo JHtml::_('sliders.end'); ?>

		<input type="hidden" name="task"
value="" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_admin/sysinfo/default.php000064400000002712151163244070013272
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Add specific helper files for html generation
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');
// Load switcher behavior
JHtml::_('behavior.switcher');
?>

<form action="<?php echo JRoute::_('index.php');
?>" method="post" name="adminForm"
id="adminForm">
	<div id="config-document">
		<div id="page-site" class="tab">
			<div class="noshow">
				<div class="width-100">
					<?php echo $this->loadTemplate('system'); ?>
				</div>
			</div>
		</div>

		<div id="page-phpsettings" class="tab">
			<div class="noshow">
				<div class="width-60">
					<?php echo $this->loadTemplate('phpsettings'); ?>
				</div>
			</div>
		</div>

		<div id="page-config" class="tab">
			<div class="noshow">
				<div class="width-60">
					<?php echo $this->loadTemplate('config'); ?>
				</div>
			</div>
		</div>

		<div id="page-directory" class="tab">
			<div class="noshow">
				<div class="width-60">
					<?php echo $this->loadTemplate('directory'); ?>
				</div>
			</div>
		</div>

		<div id="page-phpinfo" class="tab">
			<div class="noshow">
				<div class="width-100">
					<?php echo $this->loadTemplate('phpinfo'); ?>
				</div>
			</div>
		</div>
	</div>

	<div class="clr"></div>
</form>
html/com_admin/sysinfo/default_config.php000064400000001635151163244070014622
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<fieldset class="adminform">
	<legend><?php echo
JText::_('COM_ADMIN_CONFIGURATION_FILE'); ?></legend>
	<table class="adminlist">
		<thead>
			<tr>
				<th width="300">
					<?php echo JText::_('COM_ADMIN_SETTING'); ?>
				</th>
				<th>
					<?php echo JText::_('COM_ADMIN_VALUE'); ?>
				</th>
			</tr>
		</thead>
		<tfoot>
			<tr>
				<td colspan="2">&#160;</td>
			</tr>
		</tfoot>
		<tbody>
			<?php foreach ($this->config as $key => $value):?>
			<tr>
				<td>
					<?php echo $key;?>
				</td>
				<td>
					<?php echo htmlspecialchars($value, ENT_QUOTES);?>
				</td>
			</tr>
			<?php endforeach;?>
		</tbody>
	</table>
</fieldset>
html/com_admin/sysinfo/default_directory.php000064400000001746151163244070015364
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<fieldset class="adminform">
	<legend><?php echo
JText::_('COM_ADMIN_DIRECTORY_PERMISSIONS'); ?></legend>
	<table class="adminlist">
		<thead>
			<tr>
				<th width="650">
					<?php echo JText::_('COM_ADMIN_DIRECTORY'); ?>
				</th>
				<th>
					<?php echo JText::_('COM_ADMIN_STATUS'); ?>
				</th>
			</tr>
		</thead>
		<tfoot>
			<tr>
				<td colspan="2">&#160;</td>
			</tr>
		</tfoot>
		<tbody>
			<?php foreach ($this->directory as $dir => $info) : ?>
			<tr>
				<td>
					<?php echo JHtml::_('directory.message', $dir,
$info['message']);?>
				</td>
				<td>
					<?php echo JHtml::_('directory.writable',
$info['writable']);?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>
</fieldset>
html/com_admin/sysinfo/default_navigation.php000064400000002274151163244070015514
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div id="submenu-box">
	<div class="submenu-box">
		<div class="submenu-pad">
			<ul id="submenu" class="information nav
nav-list">
				<li>
					<a href="#" onclick="return false;"
id="site" class="active">
						<?php echo JText::_('COM_ADMIN_SYSTEM_INFORMATION');
?></a>
				</li>
				<li>
					<a href="#" onclick="return false;"
id="phpsettings">
						<?php echo JText::_('COM_ADMIN_PHP_SETTINGS');
?></a>
				</li>
				<li>
					<a href="#" onclick="return false;"
id="config">
						<?php echo JText::_('COM_ADMIN_CONFIGURATION_FILE');
?></a>
				</li>
				<li>
					<a href="#" onclick="return false;"
id="directory">
						<?php echo JText::_('COM_ADMIN_DIRECTORY_PERMISSIONS');
?></a>
				</li>
				<li>
					<a href="#" onclick="return false;"
id="phpinfo">
						<?php echo JText::_('COM_ADMIN_PHP_INFORMATION');
?></a>
				</li>
			</ul>
			<div class="clr"></div>
		</div>
	</div>
	<div class="clr"></div>
</div>
html/com_admin/sysinfo/default_phpsettings.php000064400000007462151163244070015731
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<fieldset class="adminform">
	<legend><?php echo
JText::_('COM_ADMIN_RELEVANT_PHP_SETTINGS'); ?></legend>
	<table class="adminlist">
		<thead>
			<tr>
				<th width="250">
					<?php echo JText::_('COM_ADMIN_SETTING'); ?>
				</th>
				<th>
					<?php echo JText::_('COM_ADMIN_VALUE'); ?>
				</th>
			</tr>
		</thead>
		<tfoot>
			<tr>
				<td colspan="2">&#160;
				</td>
			</tr>
		</tfoot>
		<tbody>
			<tr>
				<td>
					<?php echo JText::_('COM_ADMIN_SAFE_MODE'); ?>
				</td>
				<td>
					<?php echo JHtml::_('phpsetting.boolean',
$this->php_settings['safe_mode']); ?>
				</td>
			</tr>
			<tr>
				<td>
					<?php echo JText::_('COM_ADMIN_OPEN_BASEDIR'); ?>
				</td>
				<td>
					<?php echo JHtml::_('phpsetting.string',
$this->php_settings['open_basedir']); ?>
				</td>
			</tr>
			<tr>
				<td>
					<?php echo JText::_('COM_ADMIN_DISPLAY_ERRORS'); ?>
				</td>
				<td>
					<?php echo JHtml::_('phpsetting.boolean',
$this->php_settings['display_errors']); ?>
				</td>
			</tr>
			<tr>
				<td>
					<?php echo JText::_('COM_ADMIN_SHORT_OPEN_TAGS'); ?>
				</td>
				<td>
					<?php echo JHtml::_('phpsetting.boolean',
$this->php_settings['short_open_tag']); ?>
				</td>
			</tr>
			<tr>
				<td>
					<?php echo JText::_('COM_ADMIN_FILE_UPLOADS'); ?>
				</td>
				<td>
					<?php echo JHtml::_('phpsetting.boolean',
$this->php_settings['file_uploads']); ?>
				</td>
			</tr>
			<tr>
				<td>
					<?php echo JText::_('COM_ADMIN_MAGIC_QUOTES'); ?>
				</td>
				<td>
					<?php echo JHtml::_('phpsetting.boolean',
$this->php_settings['magic_quotes_gpc']); ?>
				</td>
			</tr>
			<tr>
				<td>
					<?php echo JText::_('COM_ADMIN_REGISTER_GLOBALS'); ?>
				</td>
				<td>
					<?php echo JHtml::_('phpsetting.boolean',
$this->php_settings['register_globals']); ?>
				</td>
			</tr>
			<tr>
				<td>
					<?php echo JText::_('COM_ADMIN_OUTPUT_BUFFERING'); ?>
				</td>
				<td>
					<?php echo JHtml::_('phpsetting.boolean',
$this->php_settings['output_buffering']); ?>
				</td>
			</tr>
			<tr>
				<td>
					<?php echo JText::_('COM_ADMIN_SESSION_SAVE_PATH'); ?>
				</td>
				<td>
					<?php echo JHtml::_('phpsetting.string',
$this->php_settings['session.save_path']); ?>
				</td>
			</tr>
			<tr>
				<td>
					<?php echo JText::_('COM_ADMIN_SESSION_AUTO_START');
?>
				</td>
				<td>
					<?php echo JHtml::_('phpsetting.integer',
$this->php_settings['session.auto_start']); ?>
				</td>
			</tr>
			<tr>
				<td>
					<?php echo JText::_('COM_ADMIN_XML_ENABLED'); ?>
				</td>
				<td>
					<?php echo JHtml::_('phpsetting.set',
$this->php_settings['xml']); ?>
				</td>
			</tr>
			<tr>
				<td>
					<?php echo JText::_('COM_ADMIN_ZLIB_ENABLED'); ?>
				</td>
				<td>
					<?php echo JHtml::_('phpsetting.set',
$this->php_settings['zlib']); ?>
				</td>
			</tr>
			<tr>
				<td>
					<?php echo JText::_('COM_ADMIN_ZIP_ENABLED'); ?>
				</td>
				<td>
					<?php echo JHtml::_('phpsetting.set',
$this->php_settings['zip']); ?>
				</td>
			</tr>
			<tr>
				<td>
					<?php echo JText::_('COM_ADMIN_DISABLED_FUNCTIONS');
?>
				</td>
				<td>
					<?php echo JHtml::_('phpsetting.string',
$this->php_settings['disable_functions']); ?>
				</td>
			</tr>
			<tr>
				<td>
					<?php echo JText::_('COM_ADMIN_MBSTRING_ENABLED'); ?>
				</td>
				<td>
					<?php echo JHtml::_('phpsetting.set',
$this->php_settings['mbstring']); ?>
				</td>
			</tr>
			<tr>
				<td>
					<?php echo JText::_('COM_ADMIN_ICONV_AVAILABLE'); ?>
				</td>
				<td>
					<?php echo JHtml::_('phpsetting.set',
$this->php_settings['iconv']); ?>
				</td>
			</tr>
		</tbody>
	</table>
</fieldset>
html/com_admin/sysinfo/default_system.php000064400000004375151163244070014705
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<fieldset class="adminform">
	<legend><?php echo
JText::_('COM_ADMIN_SYSTEM_INFORMATION'); ?></legend>
	<table class="adminlist">
		<thead>
			<tr>
				<th width="250">
					<?php echo JText::_('COM_ADMIN_SETTING'); ?>
				</th>
				<th>
					<?php echo JText::_('COM_ADMIN_VALUE'); ?>
				</th>
			</tr>
		</thead>
		<tfoot>
			<tr>
				<td colspan="2">&#160;
				</td>
			</tr>
		</tfoot>
		<tbody>
			<tr>
				<td>
					<strong><?php echo
JText::_('COM_ADMIN_PHP_BUILT_ON'); ?></strong>
				</td>
				<td>
					<?php echo $this->info['php'];?>
				</td>
			</tr>
			<tr>
				<td>
					<strong><?php echo
JText::_('COM_ADMIN_DATABASE_VERSION'); ?></strong>
				</td>
				<td>
					<?php echo $this->info['dbversion'];?>
				</td>
			</tr>
			<tr>
				<td>
					<strong><?php echo
JText::_('COM_ADMIN_DATABASE_COLLATION'); ?></strong>
				</td>
				<td>
					<?php echo $this->info['dbcollation'];?>
				</td>
			</tr>
			<tr>
				<td>
					<strong><?php echo
JText::_('COM_ADMIN_PHP_VERSION'); ?></strong>
				</td>
				<td>
					<?php echo $this->info['phpversion'];?>
				</td>
			</tr>
			<tr>
				<td>
					<strong><?php echo
JText::_('COM_ADMIN_WEB_SERVER'); ?></strong>
				</td>
				<td>
					<?php echo JHtml::_('system.server',
$this->info['server']); ?>
				</td>
			</tr>
			<tr>
				<td>
					<strong><?php echo
JText::_('COM_ADMIN_WEBSERVER_TO_PHP_INTERFACE');
?></strong>
				</td>
				<td>
					<?php echo $this->info['sapi_name'];?>
				</td>
			</tr>
			<tr>
				<td>
					<strong><?php echo
JText::_('COM_ADMIN_JOOMLA_VERSION'); ?></strong>
				</td>
				<td>
					<?php echo $this->info['version'];?>
				</td>
			</tr>
			<tr>
				<td>
					<strong><?php echo
JText::_('COM_ADMIN_PLATFORM_VERSION'); ?></strong>
				</td>
				<td>
					<?php echo $this->info['platform'];?>
				</td>
			</tr>
			<tr>
				<td>
					<strong><?php echo
JText::_('COM_ADMIN_USER_AGENT'); ?></strong>
				</td>
				<td>
					<?php echo $this->info['useragent'];?>
				</td>
			</tr>
		</tbody>
	</table>
</fieldset>
html/com_associations/associations/default.php000064400000014645151163244070015716
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_associations
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JLoader::register('AssociationsHelper', JPATH_ADMINISTRATOR .
'/components/com_associations/helpers/associations.php');

JHtml::_('jquery.framework');
JHtml::_('bootstrap.tooltip');
JHtml::_('behavior.multiselect');
JHtml::_('formbehavior.chosen', 'select');

$listOrder        =
$this->escape($this->state->get('list.ordering'));
$listDirn         =
$this->escape($this->state->get('list.direction'));
$canManageCheckin =
JFactory::getUser()->authorise('core.manage',
'com_checkin');
$colSpan          = 5;

$iconStates = array(
	-2 => 'icon-trash',
	0  => 'icon-unpublish',
	1  => 'icon-publish',
	2  => 'icon-archive',
);

JText::script('COM_ASSOCIATIONS_PURGE_CONFIRM_PROMPT');

JFactory::getDocument()->addScriptDeclaration('
	Joomla.submitbutton = function(pressbutton)
	{
		if (pressbutton == "associations.purge")
		{
			if
(confirm(Joomla.JText._("COM_ASSOCIATIONS_PURGE_CONFIRM_PROMPT")))
			{
				Joomla.submitform(pressbutton);
			}
			else
			{
				return false;
			}
		}
		else
		{
			Joomla.submitform(pressbutton);
		}
	};
');
?>
<form action="<?php echo
JRoute::_('index.php?option=com_associations&view=associations');
?>" method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
<?php echo JLayoutHelper::render('joomla.searchtools.default',
array('view' => $this)); ?>
	<?php if (empty($this->items)) : ?>
		<div class="alert alert-no-items">
			<?php echo JText::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
		</div>
	<?php else : ?>
		<table class="adminlist" id="associationsList">
			<thead>
				<tr>
					<?php if (!empty($this->typeSupports['state'])) :
?>
						<th width="1%" class="center nowrap">
							<?php echo JHtml::_('searchtools.sort',
'JSTATUS', 'state', $listDirn, $listOrder); $colSpan++;
?>
						</th>
					<?php endif; ?>
					<th class="nowrap">
						<?php echo JHtml::_('searchtools.sort',
'JGLOBAL_TITLE', 'title', $listDirn, $listOrder); ?>
					</th>
					<th width="15%" class="nowrap">
						<?php echo JText::_('JGRID_HEADING_LANGUAGE'); ?>
					</th>
					<th width="5%" class="nowrap">
						<?php echo
JText::_('COM_ASSOCIATIONS_HEADING_ASSOCIATION'); ?>
					</th>
					<th width="15%" class="nowrap">
						<?php echo
JText::_('COM_ASSOCIATIONS_HEADING_NO_ASSOCIATION'); ?>
					</th>
					<?php if (!empty($this->typeFields['menutype'])) :
?>
						<th width="10%" class="nowrap">
							<?php echo JHtml::_('searchtools.sort',
'COM_ASSOCIATIONS_HEADING_MENUTYPE', 'menutype_title',
$listDirn, $listOrder); $colSpan++; ?>
						</th>
					<?php endif; ?>
					<?php if (!empty($this->typeFields['access'])) : ?>
						<th width="5%" class="nowrap hidden-phone">
							<?php echo JHtml::_('searchtools.sort',
'JGRID_HEADING_ACCESS', 'access_level', $listDirn,
$listOrder); $colSpan++; ?>
						</th>
					<?php endif; ?>
					<th width="1%" class="nowrap hidden-phone">
						<?php echo JHtml::_('searchtools.sort',
'JGRID_HEADING_ID', 'id', $listDirn, $listOrder); ?>
					</th>
				</tr>
			</thead>
			<tfoot>
				<tr>
					<td colspan="<?php echo $colSpan; ?>">
						<?php echo $this->pagination->getListFooter(); ?>
					</td>
				</tr>
			</tfoot>
			<tbody>
			<?php foreach ($this->items as $i => $item) :
				$canCheckin = true;
				$canEdit    = AssociationsHelper::allowEdit($this->extensionName,
$this->typeName, $item->id);
				$canCheckin = $canManageCheckin ||
AssociationsHelper::canCheckinItem($this->extensionName,
$this->typeName, $item->id);
				$isCheckout =
AssociationsHelper::isCheckoutItem($this->extensionName,
$this->typeName, $item->id);
				?>
				<tr class="row<?php echo $i % 2; ?>">
					<?php if (!empty($this->typeSupports['state'])) :
?>
						<td class="center">
							<span class="<?php echo
$iconStates[$this->escape($item->state)];
?>"></span>
						</td>
					<?php endif; ?>
					<td class="nowrap has-context">
						<?php if (isset($item->level)) : ?>
							<?php echo
JLayoutHelper::render('joomla.html.treeprefix',
array('level' => $item->level)); ?>
						<?php endif; ?>
						<?php if ($canCheckin && $isCheckout) : ?>
							<?php echo JHtml::_('jgrid.checkedout', $i,
$item->editor, $item->checked_out_time, 'associations.',
$canCheckin); ?>
						<?php endif; ?>
						<?php if ($canEdit && !$isCheckout) : ?>
							<a href="<?php echo JRoute::_($this->editUri .
'&id=' . (int) $item->id); ?>">
							<?php echo $this->escape($item->title); ?></a>
						<?php else : ?>
							<span title="<?php echo
JText::sprintf('JFIELD_ALIAS_LABEL',
$this->escape($item->alias)); ?>"><?php echo
$this->escape($item->title); ?></span>
						<?php endif; ?>
						<?php if (!empty($this->typeFields['alias'])) : ?>
							<span class="small">
								<?php echo JText::sprintf('JGLOBAL_LIST_ALIAS',
$this->escape($item->alias)); ?>
							</span>
						<?php endif; ?>
						<?php if (!empty($this->typeFields['catid'])) : ?>
							<div class="small">
								<?php echo JText::_('JCATEGORY') . ": " .
$this->escape($item->category_title); ?>
							</div>
						<?php endif; ?>
					</td>
					<td class="small">
						<?php echo
JLayoutHelper::render('joomla.content.language', $item); ?>
					</td>
					<td>
						<?php echo
AssociationsHelper::getAssociationHtmlList($this->extensionName,
$this->typeName, (int) $item->id, $item->language, !$isCheckout,
false); ?>
					</td>
					<td>
						<?php echo
AssociationsHelper::getAssociationHtmlList($this->extensionName,
$this->typeName, (int) $item->id, $item->language, !$isCheckout,
true); ?>
					</td>
					<?php if (!empty($this->typeFields['menutype'])) :
?>
						<td class="small">
							<?php echo $this->escape($item->menutype_title); ?>
						</td>
					<?php endif; ?>
					<?php if (!empty($this->typeFields['access'])) : ?>
						<td class="small hidden-phone">
							<?php echo $this->escape($item->access_level); ?>
						</td>
					<?php endif; ?>
					<td class="hidden-phone">
						<?php echo $item->id; ?>
					</td>
				</tr>
				<?php endforeach; ?>
			</tbody>
		</table>
	<?php endif; ?>
	<input type="hidden" name="task"
value=""/>
	<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_banners/banner/edit.php000064400000011104151163244070012701
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');

JHtml::_('jquery.framework');
JHtml::_('behavior.formvalidator');

JFactory::getDocument()->addScriptDeclaration("
	Joomla.submitbutton = function(task)
	{
		if (task == 'banner.cancel' ||
document.formvalidator.isValid(document.getElementById('banner-form')))
		{
			Joomla.submitform(task,
document.getElementById('banner-form'));
		}
	}
");
?>
<form action="<?php echo
JRoute::_('index.php?option=com_banners&layout=edit&id='
. (int) $this->item->id); ?>" method="post"
name="adminForm" id="banner-form"
class="form-validate">
	<div class="col main-section">
		<fieldset class="adminform">
			<legend><?php echo empty($this->item->id) ?
JText::_('COM_BANNERS_NEW_BANNER') :
JText::sprintf('COM_BANNERS_BANNER_DETAILS',
$this->item->id); ?></legend>
			<ul class="adminformlist">
				<li><?php echo $this->form->getLabel('name');
?>
				<?php echo $this->form->getInput('name');
?></li>

				<li><?php echo $this->form->getLabel('alias');
?>
				<?php echo $this->form->getInput('alias');
?></li>

				<li><?php echo
$this->form->getLabel('access'); ?>
				<?php echo $this->form->getInput('access');
?></li>

				<li><?php echo $this->form->getLabel('catid');
?>
				<?php echo $this->form->getInput('catid');
?></li>

				<li><?php echo $this->form->getLabel('state');
?>
				<?php echo $this->form->getInput('state');
?></li>

				<li><?php echo $this->form->getLabel('type');
?>
				<?php echo $this->form->getInput('type');
?></li>
			</ul>
			<ul id="image">
				<?php foreach ($this->form->getFieldset('image') as
$field) : ?>
					<li><?php echo $field->label; ?>
						<?php echo $field->input; ?></li>
				<?php endforeach; ?>
			</ul>
			<ul>
				<li><div id="custom">
					<?php echo
$this->form->getLabel('custombannercode'); ?>
					<?php echo
$this->form->getInput('custombannercode'); ?>
				</div>
				</li>

				<li><div id="url">
				<?php echo $this->form->getLabel('clickurl'); ?>
				<?php echo $this->form->getInput('clickurl'); ?>
				</div>
				</li>

				<li>
				<?php echo $this->form->getLabel('description');
?>
				<div class="clr"></div>
				<?php echo $this->form->getInput('description');
?>
				<div class="clr"></div>
				</li>

				<li><?php echo
$this->form->getLabel('language'); ?>
				<?php echo $this->form->getInput('language');
?></li>

				<li><?php echo $this->form->getLabel('id');
?>
				<?php echo $this->form->getInput('id');
?></li>
			</ul>
			<div class="clr"> </div>

		</fieldset>
	</div>

<div class="col options-section">
	<?php echo JHtml::_('sliders.start',
'banner-sliders-' . $this->item->id,
array('useCookie' => 1)); ?>

	<?php echo JHtml::_('sliders.panel',
JText::_('COM_BANNERS_GROUP_LABEL_PUBLISHING_DETAILS'),
'publishing-details'); ?>
		<fieldset class="panelform">
		<legend class="element-invisible"><?php echo
JText::_('JGLOBAL_FIELDSET_PUBLISHING'); ?></legend>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset('publish') as
$field) : ?>
				<li><?php echo $field->label; ?>
					<?php echo $field->input; ?></li>
			<?php endforeach; ?>
			</ul>
		</fieldset>

	<?php echo JHtml::_('sliders.panel',
JText::_('COM_BANNERS_GROUP_LABEL_BANNER_DETAILS'),
'otherparams'); ?>
		<fieldset class="panelform">
		<legend class="element-invisible"><?php echo
JText::_('COM_BANNERS_BANNER_DETAILS'); ?></legend>

		<ul class="adminformlist">
			<?php foreach
($this->form->getFieldset('otherparams') as $field) : ?>
				<li><?php echo $field->label; ?>
					<?php echo $field->input; ?></li>
			<?php endforeach; ?>
			<?php foreach
($this->form->getFieldset('bannerdetails') as $field) :
?>
				<li><?php echo $field->label; ?>
					<?php echo $field->input; ?></li>
			<?php endforeach; ?>
		</ul>	
		</fieldset>

	<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_METADATA_OPTIONS'),
'metadata'); ?>
		<fieldset class="panelform">
		<legend class="element-invisible"><?php echo
JText::_('JGLOBAL_FIELDSET_METADATA_OPTIONS');
?></legend>
			<ul class="adminformlist">
				<?php foreach ($this->form->getFieldset('metadata')
as $field) : ?>
					<li><?php echo $field->label; ?>
						<?php echo $field->input; ?></li>
				<?php endforeach; ?>
			</ul>
		</fieldset>

	<?php echo JHtml::_('sliders.end'); ?>
	<input type="hidden" name="task" value=""
/>
	<?php echo JHtml::_('form.token'); ?>
</div>

<div class="clr"></div>
</form>
html/com_banners/banners/default.php000064400000024765151163244070013604
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.multiselect');

$user      = JFactory::getUser();
$userId    = $user->get('id');
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$canOrder  = $user->authorise('core.edit.state',
'com_banners');
$saveOrder = $listOrder == 'ordering';
?>
<form action="<?php echo
JRoute::_('index.php?option=com_banners&view=banners');
?>" method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_BANNERS_SEARCH_IN_TITLE'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>

		<div class="filter-select">
			<label class="selectlabel"
for="filter_published">
				<?php echo JText::_('JOPTION_SELECT_PUBLISHED'); ?>
			</label>
			<select name="filter_published"
id="filter_published">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('jgrid.publishedOptions'), 'value',
'text', $this->state->get('filter.published'),
true);?>
			</select>

			<label class="selectlabel"
for="filter_client_id">
				<?php echo JText::_('COM_BANNERS_SELECT_CLIENT'); ?>
			</label>
			<select name="filter_client_id"
id="filter_client_id">
				<option value=""><?php echo
JText::_('COM_BANNERS_SELECT_CLIENT');?></option>
				<?php echo JHtml::_('select.options',
BannersHelper::getClientOptions(), 'value', 'text',
$this->state->get('filter.client_id'));?>
			</select>

			<label class="selectlabel"
for="filter_category_id">
				<?php echo JText::_('JOPTION_SELECT_CATEGORY'); ?>
			</label>
			<select name="filter_category_id"
id="filter_category_id">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_CATEGORY');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('category.options', 'com_banners'),
'value', 'text',
$this->state->get('filter.category_id'));?>
			</select>

			<label class="selectlabel"
for="filter_language">
				<?php echo JText::_('JOPTION_SELECT_LANGUAGE'); ?>
			</label>
			<select name="filter_language"
id="filter_language">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_LANGUAGE');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('contentlanguage.existing', true, true),
'value', 'text',
$this->state->get('filter.language'));?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'COM_BANNERS_HEADING_NAME', 'name', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap state-col">
					<?php echo JHtml::_('grid.sort', 'JSTATUS',
'state', $listDirn, $listOrder); ?>
				</th>
				<th class="nowrap width-5">
					<?php echo JHtml::_('grid.sort',
'COM_BANNERS_HEADING_STICKY', 'sticky', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap width-10">
					<?php echo JHtml::_('grid.sort',
'COM_BANNERS_HEADING_CLIENT', 'client_name', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap title category-col">
					<?php echo JHtml::_('grid.sort', 'JCATEGORY',
'category_title', $listDirn, $listOrder); ?>
				</th>
				<th class="nowrap ordering-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ORDERING', 'ordering', $listDirn,
$listOrder); ?>
					<?php if ($canOrder && $saveOrder) : ?>
						<?php echo JHtml::_('grid.order', $this->items,
'filesave.png', 'banners.saveorder'); ?>
					<?php endif;?>
				</th>
				<th class="nowrap width-5">
					<?php echo JHtml::_('grid.sort',
'COM_BANNERS_HEADING_IMPRESSIONS', 'impmade',
$listDirn, $listOrder); ?>
				</th>
				<th class="nowrap width-10">
					<?php echo JHtml::_('grid.sort',
'COM_BANNERS_HEADING_CLICKS', 'clicks', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap width-5">
					<?php echo JText::_('COM_BANNERS_HEADING_METAKEYWORDS');
?>
				</th>
				<th class="width-10">
					<?php echo JText::_('COM_BANNERS_HEADING_PURCHASETYPE');
?>
				</th>
				<th class="language-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_LANGUAGE', 'a.language',
$this->state->get('list.direction'),
$this->state->get('list.ordering')); ?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'id', $listDirn, $listOrder); ?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) :
			$ordering   = ($listOrder == 'ordering');
			$item->cat_link =
JRoute::_('index.php?option=com_categories&extension=com_banners&task=edit&type=other&cid[]='
. $item->catid);
			$canCreate  = $user->authorise('core.create',    
'com_banners.category.' . $item->catid);
			$canEdit    = $user->authorise('core.edit',      
'com_banners.category.' . $item->catid);
			$canCheckin = $user->authorise('core.manage',    
'com_checkin') || $item->checked_out == $userId ||
$item->checked_out == 0;
			$canChange  = $user->authorise('core.edit.state',
'com_banners.category.' . $item->catid) &&
$canCheckin;
			?>
			<tr class="row<?php echo $i % 2; ?>">
				<td>
					<?php echo JHtml::_('grid.id', $i, $item->id); ?>
				</td>
				<td>
					<?php if ($item->checked_out) : ?>
						<?php echo JHtml::_('jgrid.checkedout', $i,
$item->editor, $item->checked_out_time, 'banners.',
$canCheckin); ?>
					<?php endif; ?>
					<?php if ($canEdit) : ?>
						<a href="<?php echo
JRoute::_('index.php?option=com_banners&task=banner.edit&id='.(int)
$item->id); ?>">
							<?php echo $this->escape($item->name); ?></a>
					<?php else : ?>
							<?php echo $this->escape($item->name); ?>
					<?php endif; ?>
					<p class="smallsub">
						<?php echo JText::sprintf('JGLOBAL_LIST_ALIAS',
$this->escape($item->alias));?></p>
				</td>
				<td class="center">
					<?php echo JHtml::_('jgrid.published', $item->state,
$i, 'banners.', $canChange, 'cb', $item->publish_up,
$item->publish_down); ?>
				</td>
				<td class="center">
					<?php echo JHtml::_('banner.pinned', $item->sticky,
$i, $canChange);?>
				</td>
				<td class="center">
					<?php echo $item->client_name;?>
				</td>
				<td class="center">
					<?php echo $this->escape($item->category_title); ?>
				</td>
				<td class="order">
					<?php if ($canChange) : ?>
						<?php if ($saveOrder) : ?>
							<?php if ($listDirn == 'asc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
@$this->items[$i - 1]->catid == $item->catid,
'banners.orderup', 'JLIB_HTML_MOVE_UP', $ordering);
?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
@$this->items[$i + 1]->catid == $item->catid,
'banners.orderdown', 'JLIB_HTML_MOVE_DOWN', $ordering);
?></span>
							<?php elseif ($listDirn == 'desc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
@$this->items[$i - 1]->catid == $item->catid,
'banners.orderdown', 'JLIB_HTML_MOVE_UP', $ordering);
?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
@$this->items[$i + 1]->catid == $item->catid,
'banners.orderup', 'JLIB_HTML_MOVE_DOWN', $ordering);
?></span>
							<?php endif; ?>
						<?php endif; ?>
						<?php $disabled = $saveOrder ?  '' :
'disabled="disabled"'; ?>
						<input type="text" name="order[]"
value="<?php echo $item->ordering;?>" <?php echo
$disabled; ?> class="text-area-order" title="<?php
echo $item->name; ?> order" />
					<?php else : ?>
						<?php echo $item->ordering; ?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo JText::sprintf('COM_BANNERS_IMPRESSIONS',
$item->impmade, $item->imptotal ?:
JText::_('COM_BANNERS_UNLIMITED'));?>
				</td>
				<td class="center">
					<?php echo $item->clicks;?> -
					<?php echo sprintf('%.2f%%', $item->impmade ? 100 *
$item->clicks / $item->impmade : 0);?>
				</td>
				<td>
					<?php echo $item->metakey; ?>
				</td>
				<td class="center">
					<?php if ($item->purchase_type < 0):?>
						<?php echo JText::sprintf('COM_BANNERS_DEFAULT',
($item->client_purchase_type > 0) ?
JText::_('COM_BANNERS_FIELD_VALUE_'.$item->client_purchase_type)
:
JText::_('COM_BANNERS_FIELD_VALUE_'.$this->state->params->get('purchase_type')));?>
					<?php else:?>
						<?php echo
JText::_('COM_BANNERS_FIELD_VALUE_'.$item->purchase_type);?>
					<?php endif;?>
				</td>
				<td class="center">
					<?php echo
JLayoutHelper::render('joomla.content.language', $item); ?>
				</td>
				<td class="center">
					<?php echo $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>
	<div class="clr"> </div>

	<?php //Load the batch processing form. ?>
	<?php if ($user->authorise('core.create',
'com_banners')
		&& $user->authorise('core.edit',
'com_banners')
		&& $user->authorise('core.edit.state',
'com_banners')) : ?>
		<?php echo JHtml::_(
			'bootstrap.renderModal',
			'collapseModal',
			array(
				'title'  =>
JText::_('COM_BANNERS_BATCH_OPTIONS'),
				'footer' =>
$this->loadTemplate('batch_footer'),
			),
			$this->loadTemplate('batch_body')
		); ?>
	<?php endif; ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_banners/client/edit.php000064400000006566151163244070012732
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.formvalidator');

JFactory::getDocument()->addScriptDeclaration("
	Joomla.submitbutton = function(task)
	{
		if (task == 'client.cancel' ||
document.formvalidator.isValid(document.getElementById('client-form')))
		{
			Joomla.submitform(task,
document.getElementById('client-form'));
		}
	}
");
?>

<form action="<?php echo
JRoute::_('index.php?option=com_banners&layout=edit&id='.(int)
$this->item->id); ?>" method="post"
name="adminForm" id="client-form"
class="form-validate">

<div class="col main-section">
	<fieldset class="adminform">
		<legend><?php echo empty($this->item->id) ?
JText::_('COM_BANNERS_NEW_CLIENT') :
JText::sprintf('COM_BANNERS_EDIT_CLIENT', $this->item->id);
?></legend>
		<ul class="adminformlist">
				<li><?php echo $this->form->getLabel('name');
?>
				<?php echo $this->form->getInput('name');
?></li>

				<li><?php echo
$this->form->getLabel('contact'); ?>
				<?php echo $this->form->getInput('contact');
?></li>

				<li><?php echo $this->form->getLabel('email');
?>
				<?php echo $this->form->getInput('email');
?></li>

				<?php if ($this->canDo->get('core.edit.state')) :
?>
					<li><?php echo
$this->form->getLabel('state'); ?>
					<?php echo $this->form->getInput('state');
?></li>
				<?php endif; ?>

				<li><?php echo
$this->form->getLabel('purchase_type'); ?>
				<?php echo $this->form->getInput('purchase_type');
?></li>

				<li><?php echo
$this->form->getLabel('track_impressions'); ?>
				<?php echo
$this->form->getInput('track_impressions');
?></li>

				<li><?php echo
$this->form->getLabel('track_clicks'); ?>
				<?php echo $this->form->getInput('track_clicks');
?></li>

				<li><?php echo $this->form->getLabel('id');
?>
				<?php echo $this->form->getInput('id');
?></li>
		</ul>

	</fieldset>
</div>

<div class="col options-section">
	<?php echo JHtml::_('sliders.start',
'banner-client-sliders-' . $this->item->id,
array('useCookie' => 1)); ?>

	<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_METADATA_OPTIONS'),
'metadata'); ?>
		<fieldset class="panelform">
		<legend class="element-invisible"><?php echo
JText::_('JGLOBAL_FIELDSET_METADATA_OPTIONS');
?></legend>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset('metadata')
as $field) : ?>
				<li>
					<?php if (!$field->hidden) : ?>
						<?php echo $field->label; ?>
					<?php endif; ?>
					<?php echo $field->input; ?>
				</li>
			<?php endforeach; ?>
			</ul>
		</fieldset>

	<?php echo JHtml::_('sliders.panel',
JText::_('COM_BANNERS_EXTRA'), 'extra'); ?>
		<fieldset class="panelform">
		<legend class="element-invisible"><?php echo
JText::_('COM_BANNERS_EXTRA'); ?></legend>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset('extra') as
$field) : ?>
				<li><?php if (!$field->hidden) : ?>
					<?php echo $field->label; ?>
				<?php endif; ?>
				<?php echo $field->input; ?></li>
			<?php endforeach; ?>
			</ul>
		</fieldset>

	<?php echo JHtml::_('sliders.end'); ?>

	<input type="hidden" name="task" value=""
/>
	<?php echo JHtml::_('form.token'); ?>
</div>

<div class="clr"></div>
</form>
html/com_banners/clients/default.php000064400000012703151163244070013602
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.multiselect');

$user      = JFactory::getUser();
$userId    = $user->get('id');
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
?>

<form action="<?php echo
JRoute::_('index.php?option=com_banners&view=clients');
?>" method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_BANNERS_SEARCH_IN_TITLE'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>

		<div class="filter-select">
			<label class="selectlabel" for="filter_state">
				<?php echo JText::_('JOPTION_SELECT_PUBLISHED'); ?>
			</label>
			<select name="filter_state" id="filter_state">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('jgrid.publishedOptions'), 'value',
'text', $this->state->get('filter.state'),
true);?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th>
					<?php echo JHtml::_('grid.sort',
'COM_BANNERS_HEADING_CLIENT', 'name', $listDirn,
$listOrder); ?>
				</th>
				<th class="width-30">
					<?php echo JHtml::_('grid.sort',
'COM_BANNERS_HEADING_CONTACT', 'contact', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap state-col">
					<?php echo JHtml::_('grid.sort', 'JSTATUS',
'state', $listDirn, $listOrder); ?>
				</th>
				<th class="width-5">
					<?php echo JHtml::_('grid.sort',
'COM_BANNERS_HEADING_ACTIVE', 'nbanners', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap width-5">
					<?php echo JText::_('COM_BANNERS_HEADING_METAKEYWORDS');
?>
				</th>
				<th class="width-10">
					<?php echo JText::_('COM_BANNERS_HEADING_PURCHASETYPE');
?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'id', $listDirn, $listOrder); ?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) :
			$ordering   = ($listOrder == 'ordering');
			$canCreate  = $user->authorise('core.create',    
'com_banners');
			$canEdit    = $user->authorise('core.edit',      
'com_banners');
			$canCheckin = $user->authorise('core.manage',    
'com_checkin') || $item->checked_out ==
$user->get('id') || $item->checked_out == 0;
			$canChange  = $user->authorise('core.edit.state',
'com_banners') && $canCheckin;
			?>
			<tr class="row<?php echo $i % 2; ?>">
				<td class="center">
					<?php echo JHtml::_('grid.id', $i, $item->id); ?>
				</td>
				<td>
					<?php if ($item->checked_out) : ?>
						<?php echo JHtml::_('jgrid.checkedout', $i,
$item->editor, $item->checked_out_time, 'clients.',
$canCheckin); ?>
					<?php endif; ?>
					<?php if ($canEdit) : ?>
						<a href="<?php echo
JRoute::_('index.php?option=com_banners&task=client.edit&id='.(int)
$item->id); ?>">
							<?php echo $this->escape($item->name); ?></a>
					<?php else : ?>
							<?php echo $this->escape($item->name); ?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo $item->contact;?>
				</td>
				<td class="center">
					<?php echo JHtml::_('jgrid.published', $item->state,
$i, 'clients.', $canChange);?>
				</td>
				<td class="center">
					<?php echo $item->nbanners; ?>
				</td>
				<td>
					<?php echo $item->metakey; ?>
				</td>
				<td class="center">
					<?php if ($item->purchase_type < 0):?>
						<?php echo JText::sprintf('COM_BANNERS_DEFAULT',
JText::_('COM_BANNERS_FIELD_VALUE_'.$this->state->params->get('purchase_type')));?>
					<?php else:?>
						<?php echo
JText::_('COM_BANNERS_FIELD_VALUE_'.$item->purchase_type);?>
					<?php endif;?>
				</td>
				<td class="center">
					<?php echo $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_banners/download/default.php000064400000002333151163244070013746
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_banners
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('bootstrap.tooltip', '.hasTooltip',
array('placement' => 'bottom'));
?>
<div class="container-popup">
	<form
		class="form-validate"
		id="download-form"
		name="adminForm"
		action="<?php echo
JRoute::_('index.php?option=com_banners&task=tracks.display&format=raw');
?>"
		method="post">

		<fieldset class="adminform">
			<ul class="adminformlist">
				<?php foreach ($this->form->getFieldset() as $field) : ?>
					<li>
						<?php echo $this->form->getLabel($field->fieldname);
?>
						<?php echo $this->form->getInput($field->fieldname);
?>
					</li>
				<?php endforeach; ?>
			</ul>
		</fieldset>

		<button class="hidden"
			id="closeBtn"
			type="button"
			onclick="window.parent.jQuery('#modal-download').modal('hide');">
		</button>
		<button class="hidden"
			id="exportBtn"
			type="button"
			onclick="this.form.submit();window.top.setTimeout('window.parent.jQuery(\'#downloadModal\').modal(\'hide\')',
700);">
		</button>
	</form>
</div>
html/com_banners/tracks/default.php000064400000013434151163244070013432
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');

JHtml::_('behavior.multiselect');
JHtml::_('behavior.modal', 'a.modal');

$user      = JFactory::getUser();
$userId    = $user->get('id');
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
?>
<form id="adminForm" name="adminForm"
action="<?php echo
JRoute::_('index.php?option=com_banners&view=tracks');
?>" method="post">
<?php if (!empty( $this->sidebar)) : ?>
	<div class="span2" id="j-sidebar-container">
		<?php echo $this->sidebar; ?>
	</div>
	<div class="span10" id="j-main-container">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>

		<fieldset id="filter-bar">
			<legend class="element-invisible"><?php echo
JText::_('COM_BANNERS_BEGIN_LABEL'); ?></legend>
			<div class="filter-search">
				<label class="filter-hide-lbl"
for="filter_begin"><?php echo
JText::_('COM_BANNERS_BEGIN_LABEL'); ?></label>
				<?php echo JHtml::_('calendar',
$this->state->get('filter.begin'),
'filter_begin', 'filter_begin', '%Y-%m-%d',
array('size' => 10));?>

				<label class="filter-hide-lbl"
for="filter_end"><?php echo
JText::_('COM_BANNERS_END_LABEL'); ?></label>
				<?php echo JHtml::_('calendar',
$this->state->get('filter.end'), 'filter_end',
'filter_end', '%Y-%m-%d', array('size' =>
10));?>
			</div>

			<div class="filter-select">
				<label class="selectlabel"
for="filter_client_id">
					<?php echo JText::_('COM_BANNERS_SELECT_CLIENT'); ?>
				</label>
				<select id="filter_client_id"
name="filter_client_id">
					<option value=""><?php echo
JText::_('COM_BANNERS_SELECT_CLIENT');?></option>
					<?php echo JHtml::_('select.options',
BannersHelper::getClientOptions(), 'value', 'text',
$this->state->get('filter.client_id'));?>
				</select>

				<label class="selectlabel"
for="filter_category_id">
					<?php echo JText::_('JOPTION_SELECT_CATEGORY'); ?>
				</label>
				<?php $category =
$this->state->get('filter.category_id');?>
				<select id="filter_category_id"
name="filter_category_id">
					<option value=""><?php echo
JText::_('JOPTION_SELECT_CATEGORY');?></option>
					<?php echo JHtml::_('select.options',
JHtml::_('category.options', 'com_banners'),
'value', 'text', $category);?>
				</select>

				<label class="selectlabel" for="filter_type">
					<?php echo JText::_('COM_BANNERS_SELECT_TYPE'); ?>
				</label>
				<select id="filter_type" name="filter_type">
					<?php echo JHtml::_('select.options',
array(JHtml::_('select.option', '0',
JText::_('COM_BANNERS_SELECT_TYPE')),
JHtml::_('select.option', 1,
JText::_('COM_BANNERS_IMPRESSION')),
JHtml::_('select.option', 2,
JText::_('COM_BANNERS_CLICK'))), 'value',
'text', $this->state->get('filter.type'));?>
				</select>

				<button id="filter-go" type="submit"><?php
echo JText::_('JSUBMIT'); ?></button>
			</div>
		</fieldset>

		<div class="clr"> </div>

		<table class="adminlist">
			<thead>
				<tr>
					<th class="title">
						<?php echo JHtml::_('grid.sort',
'COM_BANNERS_HEADING_NAME', 'name', $listDirn,
$listOrder); ?>
					</th>
					<th class="nowrap width-20">
						<?php echo JHtml::_('grid.sort',
'COM_BANNERS_HEADING_CLIENT', 'client_name', $listDirn,
$listOrder); ?>
					</th>
					<th class="width-20">
						<?php echo JHtml::_('grid.sort', 'JCATEGORY',
'category_title', $listDirn, $listOrder); ?>
					</th>
					<th class="nowrap width-10">
						<?php echo JHtml::_('grid.sort',
'COM_BANNERS_HEADING_TYPE', 'track_type', $listDirn,
$listOrder); ?>
					</th>
					<th class="nowrap width-10">
						<?php echo JHtml::_('grid.sort',
'COM_BANNERS_HEADING_COUNT', 'count', $listDirn,
$listOrder); ?>
					</th>
					<th class="nowrap width-10">
						<?php echo JHtml::_('grid.sort', 'JDATE',
'track_date', $listDirn, $listOrder); ?>
					</th>
				</tr>
			</thead>

			<tbody>
			<?php foreach ($this->items as $i => $item) :?>
				<tr class="row<?php echo $i % 2; ?>">
					<td>
						<?php echo $item->banner_name;?>
					</td>
					<td>
						<?php echo $item->client_name;?>
					</td>
					<td>
						<?php echo $item->category_title;?>
					</td>
					<td>
						<?php echo $item->track_type == 1 ?
JText::_('COM_BANNERS_IMPRESSION'):
JText::_('COM_BANNERS_CLICK');?>
					</td>
					<td>
						<?php echo $item->count;?>
					</td>
					<td>
						<?php echo JHtml::_('date', $item->track_date,
JText::_('DATE_FORMAT_LC5'));?>
					</td>
				</tr>
			<?php endforeach; ?>
			</tbody>
		</table>

		<?php // Load the export form ?>
		<?php echo JHtml::_(
			'bootstrap.renderModal',
			'downloadModal',
			array(
				'title'       =>
JText::_('COM_BANNERS_TRACKS_DOWNLOAD'),
				'url'         =>
JRoute::_('index.php?option=com_banners&amp;view=download&amp;tmpl=component'),
				'width'       => '100%',
				'height'      => '300px',
				'footer'      => '<button type="button"
class="btn" data-dismiss="modal"'
						. ' onclick="jQuery(\'#downloadModal
iframe\').contents().find(\'#closeBtn\').click();">'
						. JText::_('COM_BANNERS_CANCEL') .
'</button>'
						. '<button type="button" class="btn
btn-success"'
						. ' onclick="jQuery(\'#downloadModal
iframe\').contents().find(\'#exportBtn\').click();">'
						. JText::_('COM_BANNERS_TRACKS_EXPORT') .
'</button>',
			)
		); ?>

		<?php echo $this->pagination->getListFooter(); ?>

		<input name="task" type="hidden"
value="" />
		<input name="boxchecked" type="hidden"
value="0" />
		<input name="filter_order" type="hidden"
value="<?php echo $listOrder; ?>" />
		<input name="filter_order_Dir" type="hidden"
value="<?php echo $listDirn; ?>" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_cache/cache/default.php000064400000005730151163244070012621
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
?>

<form action="<?php echo
JRoute::_('index.php?option=com_cache'); ?>"
method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
		<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-select fltrt">
			<label class="selectlabel" for="client_id">
				<?php echo JText::_('COM_CACHE_SELECT_CLIENT'); ?>
			</label>
			<select name="client_id" id="client_id">
				<?php echo JHtml::_('select.options',
CacheHelper::getClientOptions(), 'value', 'text',
$this->state->get('client_id'));?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>
<table class="adminlist">
	<thead>
		<tr>
			<th class="checkmark-col">
				<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
			</th>
			<th class="title nowrap">
				<?php echo JHtml::_('grid.sort', 
'COM_CACHE_GROUP', 'group', $listDirn, $listOrder);
?>
			</th>
			<th class="width-5 center nowrap">
				<?php echo JHtml::_('grid.sort', 
'COM_CACHE_NUMBER_OF_FILES', 'count', $listDirn,
$listOrder); ?>
			</th>
			<th class="width-10 center">
				<?php echo JHtml::_('grid.sort', 
'COM_CACHE_SIZE', 'size', $listDirn, $listOrder); ?>
			</th>
		</tr>
	</thead>

	<tbody>
		<?php
		$i = 0;
		foreach ($this->data as $folder => $item) : ?>
		<tr class="row<?php echo $i % 2; ?>">
			<td>
				<input type="checkbox" id="cb<?php echo
$i;?>" name="cid[]" value="<?php echo
$item->group; ?>"
onclick="Joomla.isChecked(this.checked);" />
			</td>
			<td>
				<span class="bold">
					<?php echo $item->group; ?>
				</span>
			</td>
			<td class="center">
				<?php echo $item->count; ?>
			</td>
			<td class="center">
				<?php echo JHtml::_('number.bytes', $item->size*1024);
?>
			</td>
		</tr>
		<?php $i++; endforeach; ?>
	</tbody>
</table>

<?php echo $this->pagination->getListFooter(); ?>

<input type="hidden" name="task" value=""
/>
<input type="hidden" name="boxchecked"
value="0" />
<input type="hidden" name="client"
value="<?php echo $this->client->id;?>" />
<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
<?php echo JHtml::_('form.token'); ?>
</div>
</form>
html/com_cache/purge/default.php000064400000002141151163244070012671
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_cache
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>

<form action="<?php echo
JRoute::_('index.php?option=com_cache'); ?>"
method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
<table class="adminlist">
	<thead>
		<tr>
			<th>
				<?php echo JText::_('COM_CACHE_PURGE_EXPIRED_ITEMS');
?>
			</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td>
			<p class="mod-purge-instruct"><?php echo
JText::_('COM_CACHE_PURGE_INSTRUCTIONS'); ?></p>
			<p class="warning"><?php echo
JText::_('COM_CACHE_RESOURCE_INTENSIVE_WARNING'); ?></p>
			</td>
		</tr>
	</tbody>
</table>

<div>
	<input type="hidden" name="task" value=""
/>
	<?php echo JHtml::_('form.token'); ?>
</div>
</div>
</form>
html/com_categories/categories/default.php000064400000033443151163244070014767
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');

JHtml::_('behavior.multiselect');

$app       = JFactory::getApplication();
$user      = JFactory::getUser();
$userId    = $user->get('id');
$extension =
$this->escape($this->state->get('filter.extension'));
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$ordering  = ($listOrder == 'a.lft');
$canOrder  = $user->authorise('core.edit.state', $extension);
$saveOrder = ($listOrder == 'a.lft' && $listDirn ==
'asc');
$jinput    = JFactory::getApplication()->input;
$component = $jinput->get('extension');
?>

<div class="categories">
	<form action="<?php echo
JRoute::_('index.php?option=com_categories&view=categories');
?>" method="post" name="adminForm"
id="adminForm">
		<?php if (!empty($this->sidebar)) : ?>
			<div id="j-sidebar-container" class="span2">
				<?php echo $this->sidebar; ?>
			</div>
		<?php endif; ?>
		<div id="j-main-container"<?php echo
!empty($this->sidebar) ? ' class="span10"' :
''; ?>>
			<fieldset id="filter-bar">
				<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
				<div class="filter-search">
					<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
					<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_CATEGORIES_ITEMS_SEARCH_FILTER'); ?>" />

					<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
					<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
				</div>

				<div class="filter-select">
					<label class="selectlabel"
for="filter_level"><?php echo
JText::_('JOPTION_SELECT_MAX_LEVELS'); ?></label>
					<select name="filter_level"
id="filter_level">
						<option value=""><?php echo
JText::_('JOPTION_SELECT_MAX_LEVELS'); ?></option>
						<?php echo JHtml::_('select.options',
$this->f_levels, 'value', 'text',
$this->state->get('filter.level')); ?>
					</select>

					<label class="selectlabel"
for="filter_published"><?php echo
JText::_('JOPTION_SELECT_PUBLISHED'); ?></label>
					<select name="filter_published"
id="filter_published">
						<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED'); ?></option>
						<?php echo JHtml::_('select.options',
JHtml::_('jgrid.publishedOptions'), 'value',
'text', $this->state->get('filter.published'),
true); ?>
					</select>

					<label class="selectlabel"
for="filter_access"><?php echo
JText::_('JOPTION_SELECT_ACCESS'); ?></label>
					<select name="filter_access"
id="filter_access">
						<option value=""><?php echo
JText::_('JOPTION_SELECT_ACCESS'); ?></option>
						<?php echo JHtml::_('select.options',
JHtml::_('access.assetgroups'), 'value',
'text', $this->state->get('filter.access'));
?>
					</select>

					<label class="selectlabel"
for="filter_language"><?php echo
JText::_('JOPTION_SELECT_LANGUAGE'); ?></label>
					<select name="filter_language"
id="filter_language">
						<option value=""><?php echo
JText::_('JOPTION_SELECT_LANGUAGE'); ?></option>
						<?php echo JHtml::_('select.options',
JHtml::_('contentlanguage.existing', true, true),
'value', 'text',
$this->state->get('filter.language')); ?>
					</select>

					<label class="selectlabel"
for="filter_tag"><?php echo
JText::_('JOPTION_SELECT_TAG'); ?></label>
					<select name="filter_tag" id="filter_tag">
						<option value=""><?php echo
JText::_('JOPTION_SELECT_TAG'); ?></option>
						<?php echo JHtml::_('select.options',
JHtml::_('tag.options', true, true), 'value',
'text', $this->state->get('filter.tag')); ?>
					</select>

					<button type="submit" id="filter-go">
						<?php echo JText::_('JSUBMIT'); ?></button>
				</div>
			</fieldset>
			<div class="clr"></div>

			<table class="adminlist">
				<thead>
					<tr>
						<th class="checkmark-col">
							<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
						</th>
						<th class="title">
							<?php echo JHtml::_('grid.sort',
'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder);
?>
						</th>
						<th class="nowrap state-col">
							<?php echo JHtml::_('grid.sort', 'JSTATUS',
'a.published', $listDirn, $listOrder); ?>
						</th>
						<th class="nowrap ordering-col">
							<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ORDERING', 'a.lft', $listDirn,
$listOrder); ?>
							<?php if ($canOrder && $saveOrder) : ?>
								<?php echo JHtml::_('grid.order', $this->items,
'filesave.png', 'categories.saveorder'); ?>
							<?php endif; ?>
						</th>
						<?php if (isset($this->items[0]) &&
property_exists($this->items[0], 'count_published')) : ?>
							<th width="1%" class="nowrap center
hidden-phone">
								<span class="icon-publish hasTooltip"
aria-hidden="true" title="<?php echo
JText::_('COM_CATEGORY_COUNT_PUBLISHED_ITEMS');
?>"><span class="element-invisible"><?php
echo JText::_('COM_CATEGORY_COUNT_PUBLISHED_ITEMS');
?></span></span>
							</th>
						<?php endif; ?>
						<?php if (isset($this->items[0]) &&
property_exists($this->items[0], 'count_unpublished')) : ?>
							<th width="1%" class="nowrap center
hidden-phone">
								<span class="icon-unpublish hasTooltip"
aria-hidden="true" title="<?php echo
JText::_('COM_CATEGORY_COUNT_UNPUBLISHED_ITEMS');
?>"><span class="element-invisible"><?php
echo JText::_('COM_CATEGORY_COUNT_UNPUBLISHED_ITEMS');
?></span></span>
							</th>
						<?php endif; ?>
						<?php if (isset($this->items[0]) &&
property_exists($this->items[0], 'count_archived')) : ?>
							<th width="1%" class="nowrap center
hidden-phone">
								<span class="icon-archive hasTooltip"
aria-hidden="true" title="<?php echo
JText::_('COM_CATEGORY_COUNT_ARCHIVED_ITEMS');
?>"><span class="element-invisible"><?php
echo JText::_('COM_CATEGORY_COUNT_ARCHIVED_ITEMS');
?></span></span>
							</th>
						<?php endif; ?>
						<?php if (isset($this->items[0]) &&
property_exists($this->items[0], 'count_trashed')) : ?>
							<th width="1%" class="nowrap center
hidden-phone">
								<span class="icon-trash hasTooltip"
aria-hidden="true" title="<?php echo
JText::_('COM_CATEGORY_COUNT_TRASHED_ITEMS');
?>"><span class="element-invisible"><?php
echo JText::_('COM_CATEGORY_COUNT_TRASHED_ITEMS');
?></span></span>
							</th>
						<?php endif; ?>
						<th class="access-col">
							<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ACCESS', 'access_level', $listDirn,
$listOrder); ?>
						</th>
						<?php if ($this->assoc) : ?>
							<th width="5%">
								<?php echo JHtml::_('grid.sort',
'COM_CATEGORY_HEADING_ASSOCIATION', 'association',
$listDirn, $listOrder); ?>
							</th>
						<?php endif; ?>
						<th class="language-col">
							<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_LANGUAGE', 'language',
$this->state->get('list.direction'),
$this->state->get('list.ordering')); ?>
						</th>
						<th class="nowrap id-col">
							<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
						</th>
					</tr>
				</thead>

				<tbody>
					<?php foreach ($this->items as $i => $item) : ?>
						<?php
						$orderkey = array_search($item->id,
$this->ordering[$item->parent_id]);
						$canEdit = $user->authorise('core.edit', $extension .
'.category.' . $item->id);
						$canCheckin = $user->authorise('core.admin',
'com_checkin') || $item->checked_out == $userId ||
$item->checked_out == 0;
						$canEditOwn = $user->authorise('core.edit.own',
$extension . '.category.' . $item->id) &&
$item->created_user_id == $userId;
						$canChange = $user->authorise('core.edit.state',
$extension . '.category.' . $item->id) && $canCheckin;
						?>
						<tr class="row<?php echo $i % 2; ?>">
							<td class="center">
								<?php echo JHtml::_('grid.id', $i, $item->id);
?>
							</td>
							<td>
								<?php echo str_repeat('<span
class="gi">|&mdash;</span>', $item->level -
1) ?>
								<?php if ($item->checked_out) : ?>
									<?php echo JHtml::_('jgrid.checkedout', $i,
$item->editor, $item->checked_out_time, 'categories.',
$canCheckin); ?>
								<?php endif; ?>
								<?php if ($canEdit || $canEditOwn) : ?>
									<a href="<?php echo
JRoute::_('index.php?option=com_categories&task=category.edit&id='
. $item->id . '&extension=' . $extension); ?>">
										<?php echo $this->escape($item->title); ?></a>
								<?php else : ?>
									<?php echo $this->escape($item->title); ?>
								<?php endif; ?>
								<p class="smallsub" title="<?php echo
$this->escape($item->path); ?>">
									<?php echo str_repeat('<span
class="gtr">|&mdash;</span>', $item->level -
1) ?>
									<?php if (empty($item->note)) : ?>
										<?php echo JText::sprintf('JGLOBAL_LIST_ALIAS',
$this->escape($item->alias)); ?>
									<?php else : ?>
										<?php echo JText::sprintf('JGLOBAL_LIST_ALIAS_NOTE',
$this->escape($item->alias), $this->escape($item->note)); ?>
									<?php endif; ?></p>
							</td>
							<td class="center">
								<?php echo JHtml::_('jgrid.published',
$item->published, $i, 'categories.', $canChange); ?>
							</td>
							<td class="order">
								<?php if ($canChange) : ?>
									<?php if ($saveOrder) : ?>
										<span><?php echo
$this->pagination->orderUpIcon($i,
isset($this->ordering[$item->parent_id][$orderkey - 1]),
'categories.orderup', 'JLIB_HTML_MOVE_UP', $ordering);
?></span>
										<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
isset($this->ordering[$item->parent_id][$orderkey + 1]),
'categories.orderdown', 'JLIB_HTML_MOVE_DOWN',
$ordering); ?></span>
									<?php endif; ?>
									<?php $disabled = $saveOrder ? '' :
'disabled="disabled"'; ?>
									<input type="text" name="order[]"
value="<?php echo $orderkey + 1; ?>" <?php echo
$disabled; ?> class="text-area-order" title="<?php
echo $item->title; ?> order" />
								<?php else : ?>
									<?php echo $orderkey + 1; ?>
								<?php endif; ?>
							</td>
							<?php if (isset($this->items[0]) &&
property_exists($this->items[0], 'count_published')) : ?>
								<td class="center">
									<a title="<?php echo
JText::_('COM_CATEGORY_COUNT_PUBLISHED_ITEMS'); ?>"
href="<?php echo JRoute::_('index.php?option=' .
$component . '&filter[category_id]=' . (int) $item->id .
'&filter[published]=1' . '&filter[level]=' .
(int) $item->level); ?>">
										<?php echo $item->count_published; ?></a>
								</td>
							<?php endif; ?>
							<?php if (isset($this->items[0]) &&
property_exists($this->items[0], 'count_unpublished')) : ?>
								<td class="center">
									<a title="<?php echo
JText::_('COM_CATEGORY_COUNT_UNPUBLISHED_ITEMS'); ?>"
href="<?php echo JRoute::_('index.php?option=' .
$component . '&filter[category_id]=' . (int) $item->id .
'&filter[published]=0' . '&filter[level]=' .
(int) $item->level); ?>">
										<?php echo $item->count_unpublished; ?></a>
								</td>
							<?php endif; ?>
							<?php if (isset($this->items[0]) &&
property_exists($this->items[0], 'count_archived')) : ?>
								<td class="center">
									<a title="<?php echo
JText::_('COM_CATEGORY_COUNT_ARCHIVED_ITEMS'); ?>"
href="<?php echo JRoute::_('index.php?option=' .
$component . '&filter[category_id]=' . (int) $item->id .
'&filter[published]=2' . '&filter[level]=' .
(int) $item->level); ?>">
										<?php echo $item->count_archived; ?></a>
								</td>
							<?php endif; ?>
							<?php if (isset($this->items[0]) &&
property_exists($this->items[0], 'count_trashed')) : ?>
								<td class="center">
									<a title="<?php echo
JText::_('COM_CATEGORY_COUNT_TRASHED_ITEMS'); ?>"
href="<?php echo JRoute::_('index.php?option=' .
$component . '&filter[category_id]=' . (int) $item->id .
'&filter[published]=-2' . '&filter[level]=' .
(int) $item->level); ?>">
										<?php echo $item->count_trashed; ?></a>
								</td>
							<?php endif; ?>
							<td class="center">
								<?php echo $this->escape($item->access_level); ?>
							</td>
							<?php if ($this->assoc) : ?>
								<td class="center">
									<?php if ($item->association): ?>
										<?php echo
JHtml::_('CategoriesAdministrator.association', $item->id,
$extension); ?>
									<?php endif; ?>
								</td>
							<?php endif; ?>
							<td class="center nowrap">
								<?php echo
JLayoutHelper::render('joomla.content.language', $item); ?>
							</td>
							<td class="center">
						<span title="<?php echo sprintf('%d-%d',
$item->lft, $item->rgt); ?>">
							<?php echo (int) $item->id; ?></span>
							</td>
						</tr>
					<?php endforeach; ?>
				</tbody>
			</table>

			<?php echo $this->pagination->getListFooter(); ?>
			<div class="clr"></div>

			<?php //Load the batch processing form. ?>
			<?php if ($user->authorise('core.create', $extension)
				&& $user->authorise('core.edit', $extension)
				&& $user->authorise('core.edit.state',
$extension)) : ?>
				<?php echo JHtml::_(
					'bootstrap.renderModal',
					'collapseModal',
					array(
						'title'  =>
JText::_('COM_CATEGORIES_BATCH_OPTIONS'),
						'footer' =>
$this->loadTemplate('batch_footer'),
					),
					$this->loadTemplate('batch_body')
				); ?>
			<?php endif; ?>

			<input type="hidden" name="extension"
value="<?php echo $extension; ?>" />
			<input type="hidden" name="task"
value="" />
			<input type="hidden" name="boxchecked"
value="0" />
			<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
			<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
			<?php echo JHtml::_('form.token'); ?>
		</div>
	</form>
</div>
html/com_categories/category/edit.php000064400000013733151163244070013760
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');

$input = JFactory::getApplication()->input;

$saveHistory =
$this->state->get('params')->get('save_history',
0);

JHtml::_('behavior.keepalive');
JHtml::_('behavior.formvalidator');

JFactory::getDocument()->addScriptDeclaration("
	Joomla.submitbutton = function(task)
	{
		if (task == 'category.cancel' ||
document.formvalidator.isValid(document.getElementById('item-form')))
{
			" . $this->form->getField('description')->save()
. "
			Joomla.submitform(task, document.getElementById('item-form'));
		}
	}
");
$assoc = JLanguageAssociations::isEnabled();

?>

<div class="category-edit">
	<form action="<?php echo
JRoute::_('index.php?option=com_categories&extension=' .
$input->getCmd('extension', 'com_content') .
'&layout=edit&id=' . (int) $this->item->id);
?>" method="post" name="adminForm"
id="item-form" class="form-validate">
		<div class="col main-section">
			<fieldset class="adminform">
				<legend><?php echo
JText::_('COM_CATEGORIES_FIELDSET_DETAILS'); ?></legend>
				<ul class="adminformlist">
					<li>
						<?php echo $this->form->getLabel('title'); ?>
						<?php echo $this->form->getInput('title'); ?>
					</li>
					<li>
						<?php echo $this->form->getLabel('alias'); ?>
						<?php echo $this->form->getInput('alias'); ?>
					</li>
					<li>
						<?php echo $this->form->getLabel('extension');
?>
						<?php echo $this->form->getInput('extension');
?>
					</li>
					<li>
						<?php echo $this->form->getLabel('parent_id');
?>
						<?php echo $this->form->getInput('parent_id');
?>
					</li>
					<li>
						<?php echo $this->form->getLabel('published');
?>
						<?php echo $this->form->getInput('published');
?>
					</li>
					<li>
						<?php echo $this->form->getLabel('access'); ?>
						<?php echo $this->form->getInput('access'); ?>
					</li>
					<?php if ($this->canDo->get('core.admin')) : ?>
						<li>
							<span class="faux-label"><?php echo
JText::_('JGLOBAL_ACTION_PERMISSIONS_LABEL'); ?></span>
							<button type="button"
onclick="document.location.href='#access-rules';">
								<?php echo JText::_('JGLOBAL_PERMISSIONS_ANCHOR');
?></button>

						</li>
					<?php endif; ?>
					<li>
						<?php echo $this->form->getLabel('language');
?>
						<?php echo $this->form->getInput('language');
?>
					</li>
					<!-- Tag field -->
					<li>
						<?php if ($this->checkTags) : ?>
							<?php echo $this->form->getLabel('tags'); ?>
							<div class="is-tagbox">
								<?php echo $this->form->getInput('tags'); ?>
							</div>
						<?php endif; ?>
					</li>
					<?php if ($saveHistory) : ?>
						<li><?php echo
$this->form->getLabel('version_note'); ?>
						<?php echo $this->form->getInput('version_note');
?></li>
					<?php endif; ?>
					<li>
						<?php echo $this->form->getLabel('id'); ?>
						<?php echo $this->form->getInput('id'); ?>
					</li>
					<li>
						<?php echo $this->form->getLabel('hits'); ?>
						<?php echo $this->form->getInput('hits'); ?>
					</li>
				</ul>

				<div class="clr"></div>
				<?php echo $this->form->getLabel('description');
?>
				<div class="clr"></div>
				<?php echo $this->form->getInput('description');
?>
				<div class="clr"></div>
			</fieldset>
		</div>

		<div class="col options-section">

			<?php echo JHtml::_('sliders.start',
'categories-sliders-' . $this->item->id,
array('useCookie' => 1)); ?>
			<?php echo $this->loadTemplate('options'); ?>
			<div class="clr"></div>

			<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_METADATA_OPTIONS'),
'meta-options'); ?>
			<fieldset class="panelform">
				<legend class="element-invisible"><?php echo
JText::_('JGLOBAL_FIELDSET_METADATA_OPTIONS');
?></legend>
				<?php echo $this->loadTemplate('metadata'); ?>
			</fieldset>

			<?php $fieldSets = $this->form->getFieldsets(); ?>
			<?php foreach ($fieldSets as $name => $fieldSet) : ?>
				<?php if ($name !== 'basic' && $name !==
'item_associations' && $name !== 'jmetadata') :
?>
					<?php
					$label = !empty($fieldSet->label) ? $fieldSet->label :
'COM_CATEGORIES_' . $name . '_FIELDSET_LABEL';
					echo JHtml::_('sliders.panel', JText::_($label), $name .
'-options');
					if (isset($fieldSet->description) &&
trim($fieldSet->description))
					{
						echo '<p class="tip">' .
$this->escape(JText::_($fieldSet->description)) .
'</p>';
					}
					?>
					<div class="clr"></div>
					<fieldset class="panelform">
						<ul class="adminformlist">
							<?php foreach ($this->form->getFieldset($name) as $field) :
?>
								<li>
									<?php echo $field->label; ?>
									<?php echo $field->input; ?>
								</li>
							<?php endforeach; ?>
						</ul>
					</fieldset>
				<?php endif; ?>
			<?php endforeach; ?>

			<?php if ($assoc) : ?>
				<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_ASSOCIATIONS'),
'-options');?>
				<?php echo $this->loadTemplate('associations'); ?>
			<?php endif; ?>

			<?php echo JHtml::_('sliders.end'); ?>
		</div>
		<div class="clr"></div>

		<?php if ($this->canDo->get('core.admin')) : ?>
			<div class="col rules-section">

				<?php echo JHtml::_('sliders.start',
'permissions-sliders-' . $this->item->id,
array('useCookie' => 1)); ?>

				<?php echo JHtml::_('sliders.panel',
JText::_('COM_CATEGORIES_FIELDSET_RULES'),
'access-rules'); ?>
				<fieldset class="panelform">
					<legend class="element-invisible"><?php echo
JText::_('COM_CATEGORIES_FIELDSET_RULES'); ?></legend>
					<?php echo $this->form->getLabel('rules'); ?>
					<?php echo $this->form->getInput('rules'); ?>
				</fieldset>

				<?php echo JHtml::_('sliders.end'); ?>
			</div>
		<?php endif; ?>
		<div>
			<input type="hidden" name="task"
value="" />
			<?php echo JHtml::_('form.token'); ?>
		</div>
	</form>
	<div class="clr"></div>
</div>
html/com_categories/category/edit_options.php000064400000004261151163244070015527
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die; ?>

<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_PUBLISHING'),
'publishing-details'); ?>

<fieldset class="panelform">
	<legend class="element-invisible"><?php echo
JText::_('COM_CONTENT_FIELDSET_PUBLISHING'); ?></legend>
	<ul class="adminformlist">
		<li>
			<?php echo $this->form->getLabel('created_user_id');
?>
			<?php echo $this->form->getInput('created_user_id');
?>
		</li>
		<?php if ((int) $this->item->created_time) : ?>
			<li>
				<?php echo $this->form->getLabel('created_time');
?>
				<?php echo $this->form->getInput('created_time');
?>
			</li>
		<?php endif; ?>
		<?php if ($this->item->modified_user_id) : ?>
			<li>
				<?php echo
$this->form->getLabel('modified_user_id'); ?>
				<?php echo
$this->form->getInput('modified_user_id'); ?>
			</li>
			<li>
				<?php echo $this->form->getLabel('modified_time');
?>
				<?php echo $this->form->getInput('modified_time');
?>
			</li>
		<?php endif; ?>
	</ul>
</fieldset>

<?php $fieldSets = $this->form->getFieldsets('params');
?>
<?php foreach ($fieldSets as $name => $fieldSet) : ?>
	<?php
	$label = !empty($fieldSet->label) ? $fieldSet->label :
'COM_CATEGORIES_' . $name . '_FIELDSET_LABEL';
	echo JHtml::_('sliders.panel', JText::_($label), $name .
'-options');
	if (isset($fieldSet->description) &&
trim($fieldSet->description))
	{
		echo '<p class="tip">' .
$this->escape(JText::_($fieldSet->description)) .
'</p>';
	}
	?>
	<fieldset class="panelform">
		<legend class="element-invisible"><?php echo
JText::_($label); ?></legend>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset($name) as $field) :
?>
				<li>
					<?php echo $field->label; ?>
					<?php echo $field->input; ?>
				</li>
			<?php endforeach; ?>
			<?php if ($name == 'basic'): ?>
				<li>
					<?php echo $this->form->getLabel('note'); ?>
					<?php echo $this->form->getInput('note'); ?>
				</li>
			<?php endif; ?>
		</ul>
	</fieldset>
<?php endforeach; ?>
html/com_checkin/checkin/default.php000064400000005402151163244070013517
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_checkin
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn =
$this->escape($this->state->get('list.direction'));
?>
<form action="<?php echo
JRoute::_('index.php?option=com_checkin'); ?>"
method="post" name="adminForm"
id="adminForm">
	<?php if (!empty($this->sidebar)) : ?>
		<div id="j-sidebar-container" class="span2">
			<?php echo $this->sidebar; ?>
		</div>
	<?php endif; ?>
	<div id="j-main-container"<?php echo
!empty($this->sidebar) ? ' class="span10"' :
''; ?>>
		<fieldset id="filter-bar">
			<div class="filter-search fltlft">
				<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
				<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_CHECKIN_FILTER_SEARCH_DESC'); ?>" />

				<button type="submit" class="btn"><?php
echo JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
				<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
			</div>
		</fieldset>
		<div class="clr"></div>

		<table id="global-checkin" class="adminlist">
			<thead>
				<tr>
					<th width="1%">
						<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
					</th>
					<th class="left"><?php echo
JHtml::_('grid.sort', 'COM_CHECKIN_DATABASE_TABLE',
'table', $listDirn, $listOrder); ?></th>
					<th><?php echo JHtml::_('grid.sort',
'COM_CHECKIN_ITEMS_TO_CHECK_IN', 'count', $listDirn,
$listOrder); ?></th>
				</tr>
			</thead>
			<tbody>
				<?php foreach ($this->items as $table => $count): $i = 0;
?>
					<tr class="row<?php echo $i % 2; ?>">
						<td class="center"><?php echo
JHtml::_('grid.id', $i, $table); ?></td>
						<td><?php echo JText::sprintf('COM_CHECKIN_TABLE',
$table); ?></td>
						<td width="200" class="center"><?php
echo $count; ?></td>
					</tr>
				<?php endforeach; ?>
			</tbody>
			<tfoot>
				<tr>
					<td colspan="15">
						<?php echo $this->pagination->getListFooter(); ?>
					</td>
				</tr>
			</tfoot>
		</table>
		<input type="hidden" name="task"
value="" />
		<input type="hidden" name="boxchecked"
value="0" />
		<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
		<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_config/application/default.php000064400000005100151163244070014252
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_config
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.formvalidator');
JHtml::_('behavior.switcher');

// Load submenu template, using element id 'submenu' as needed by
behavior.switcher
$this->document->setBuffer($this->loadTemplate('navigation'),
'modules', 'submenu');

JFactory::getDocument()->addScriptDeclaration("
	Joomla.submitbutton = function(task)
	{
		if (task == 'application.cancel' ||
document.formvalidator.isValid(document.getElementById('application-form')))
{
			Joomla.submitform(task,
document.getElementById('application-form'));
		}
	}
");
?>

<form action="<?php echo
JRoute::_('index.php?option=com_config'); ?>"
id="application-form" method="post"
name="adminForm" class="form-validate">
	<?php if ($this->ftp) : ?>
		<?php echo $this->loadTemplate('ftplogin'); ?>
	<?php endif; ?>
	<div id="config-document">
		<div id="page-site" class="tab">
			<div class="noshow">
				<div class="width-60 fltlft">
					<?php echo $this->loadTemplate('site'); ?>
					<?php echo $this->loadTemplate('metadata'); ?>
				</div>
				<div class="width-40 fltrt">
					<?php echo $this->loadTemplate('seo'); ?>
					<?php echo $this->loadTemplate('cookie'); ?>
				</div>
			</div>
		</div>
		<div id="page-system" class="tab">
			<div class="noshow">
				<div class="width-60 fltlft">
					<?php echo $this->loadTemplate('system'); ?>
				</div>
				<div class="width-40 fltrt">
					<?php echo $this->loadTemplate('debug'); ?>
					<?php echo $this->loadTemplate('cache'); ?>
					<?php echo $this->loadTemplate('session'); ?>
				</div>
			</div>
		</div>
		<div id="page-server" class="tab">
			<div class="noshow">
				<div class="width-60 fltlft">
					<?php echo $this->loadTemplate('server'); ?>
					<?php echo $this->loadTemplate('locale'); ?>
					<?php echo $this->loadTemplate('ftp'); ?>
				</div>
				<div class="width-40 fltrt">
					<?php echo $this->loadTemplate('database'); ?>
					<?php echo $this->loadTemplate('mail'); ?>
				</div>
			</div>
		</div>
		<div id="page-permissions" class="tab">
			<div class="noshow">
				<?php echo $this->loadTemplate('permissions'); ?>
			</div>
		</div>
		<div id="page-filters" class="tab">
			<div class="noshow">
				<?php echo $this->loadTemplate('filters'); ?>
			</div>
		</div>
		<input type="hidden" name="task"
value="" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
	<div class="clr"></div>
</form>
html/com_config/application/default_cache.php000064400000001202151163244070015374
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_config
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div class="width-100">

	<fieldset class="adminform">
		<legend><?php echo
JText::_('COM_CONFIG_CACHE_SETTINGS'); ?></legend>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset('cache') as
$field): ?>
				<li>
					<?php echo $field->label; ?>
					<?php echo $field->input; ?>
				</li>
			<?php endforeach; ?>
		</ul>

	</fieldset>
</div>
html/com_config/application/default_cookie.php000064400000001204151163244070015604
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_config
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>

<div class="width-100">

	<fieldset class="adminform">
		<legend><?php echo
JText::_('COM_CONFIG_COOKIE_SETTINGS'); ?></legend>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset('cookie') as
$field): ?>
				<li>
					<?php echo $field->label; ?>
					<?php echo $field->input; ?>
				</li>
			<?php endforeach; ?>
		</ul>
	</fieldset>
</div>
html/com_config/application/default_database.php000064400000001206151163244070016101
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_config
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div class="width-100">
	<fieldset class="adminform">
		<legend><?php echo
JText::_('COM_CONFIG_DATABASE_SETTINGS'); ?></legend>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset('database')
as $field): ?>
				<li>
					<?php echo $field->label; ?>
					<?php echo $field->input; ?>
				</li>
			<?php endforeach; ?>
		</ul>
	</fieldset>
</div>
html/com_config/application/default_debug.php000064400000001200151163244070015415
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_config
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div class="width-100">
	<fieldset class="adminform">
		<legend><?php echo
JText::_('COM_CONFIG_DEBUG_SETTINGS'); ?></legend>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset('debug') as
$field): ?>
				<li>
					<?php echo $field->label; ?>
					<?php echo $field->input; ?>
				</li>
			<?php endforeach; ?>
		</ul>
	</fieldset>
</div>
html/com_config/application/default_filters.php000064400000001246151163244070016011
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_config
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div class="width-80">
	<fieldset class="adminform">
		<legend><?php echo
JText::_('COM_CONFIG_TEXT_FILTER_SETTINGS'); ?></legend>
		<p><?php echo
JText::_('COM_CONFIG_TEXT_FILTERS_DESC'); ?></p>
		<?php foreach ($this->form->getFieldset('filters') as
$field) : ?>
			<?php echo $field->label; ?>
			<div class="clr"></div>
			<?php echo $field->input; ?>
		<?php endforeach; ?>
	</fieldset>
</div>
html/com_config/application/default_ftp.php000064400000001174151163244070015132
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_config
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div class="width-100">
	<fieldset class="adminform">
		<legend><?php echo
JText::_('COM_CONFIG_FTP_SETTINGS'); ?></legend>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset('ftp') as
$field): ?>
				<li>
					<?php echo $field->label; ?>
					<?php echo $field->input; ?>
				</li>
			<?php endforeach; ?>
		</ul>
	</fieldset>
</div>
html/com_config/application/default_ftplogin.php000064400000002065151163244070016163
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_config
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div class="width-100">
	<fieldset title="<?php echo
JText::_('COM_CONFIG_FTP_DETAILS'); ?>"
class="adminform">
		<legend><?php echo JText::_('COM_CONFIG_FTP_DETAILS');
?></legend>
		<?php echo JText::_('COM_CONFIG_FTP_DETAILS_TIP'); ?>

		<?php if ($this->ftp instanceof Exception) : ?>
			<p><?php echo JText::_($this->ftp->message);
?></p>
		<?php endif; ?>
		<ul class="adminformlist">
			<li>
				<label for="username"><?php echo
JText::_('JGLOBAL_USERNAME'); ?></label>
				<input type="text" id="username"
name="username" class="input_box" size="70"
value="" />
			</li>
			<li>
				<label for="password"><?php echo
JText::_('JGLOBAL_PASSWORD'); ?></label>
				<input type="password" id="password"
name="password" class="input_box" size="70"
value="" />
			</li>
		</ul>
	</fieldset>
</div>
html/com_config/application/default_locale.php000064400000001204151163244070015572
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_config
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div class="width-100">
	<fieldset class="adminform">
		<legend><?php echo
JText::_('COM_CONFIG_LOCATION_SETTINGS'); ?></legend>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset('locale') as
$field): ?>
				<li>
					<?php echo $field->label; ?>
					<?php echo $field->input; ?>
				</li>
			<?php endforeach; ?>
		</ul>
	</fieldset>
</div>
html/com_config/application/default_mail.php000064400000002117151163244070015261
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_config
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('jquery.token');
JHtml::_('script', 'system/sendtestmail.js',
array('version' => 'auto', 'relative'
=> true));

JFactory::getDocument()->addScriptDeclaration('
	var sendtestmail_url = "' . addslashes(JUri::base()) .
'index.php?option=com_config&task=config.sendtestmail.application&format=json";
 ');
?>
<div class="width-100">
	<fieldset class="adminform">
		<legend><?php echo
JText::_('COM_CONFIG_MAIL_SETTINGS'); ?></legend>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset('mail') as
$field): ?>
				<li>
					<?php echo $field->label; ?>
					<?php echo $field->input; ?>
				</li>
			<?php endforeach; ?>
		</ul>
		<button type="button" class="btn btn-small"
id="sendtestmail">
			<span><?php echo
JText::_('COM_CONFIG_SENDMAIL_ACTION_BUTTON'); ?></span>
		</button>
	</fieldset>
</div>
html/com_config/application/default_metadata.php000064400000001213151163244070016113
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_config
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div class="width-100">
	<fieldset class="adminform long">
		<legend><?php echo
JText::_('COM_CONFIG_METADATA_SETTINGS'); ?></legend>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset('metadata')
as $field): ?>
				<li>
					<?php echo $field->label; ?>
					<?php echo $field->input; ?>
				</li>
			<?php endforeach; ?>
		</ul>
	</fieldset>
</div>
html/com_config/application/default_navigation.php000064400000001663151163244070016503
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div id="submenu-box">
	<ul id="submenu" class="configuration">
		<li><a href="#" onclick="return false;"
id="site" class="active"><?php echo
JText::_('JSITE'); ?></a></li>
		<li><a href="#" onclick="return false;"
id="system"><?php echo
JText::_('COM_CONFIG_SYSTEM'); ?></a></li>
		<li><a href="#" onclick="return false;"
id="server"><?php echo
JText::_('COM_CONFIG_SERVER'); ?></a></li>
		<li><a href="#" onclick="return false;"
id="permissions"><?php echo
JText::_('COM_CONFIG_PERMISSIONS'); ?></a>
		</li>
		<li><a href="#" onclick="return false;"
id="filters"><?php echo
JText::_('COM_CONFIG_TEXT_FILTERS') ?></a></li>
	</ul>
	<div class="clr"></div>
</div>
html/com_config/application/default_permissions.php000064400000001151151163244070016707
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_config
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div class="width-100">
	<fieldset class="adminform">
		<legend><?php echo
JText::_('COM_CONFIG_PERMISSION_SETTINGS'); ?></legend>
		<?php foreach ($this->form->getFieldset('permissions')
as $field) : ?>
			<?php echo $field->label; ?>
			<div class="clr"></div>
			<?php echo $field->input; ?>
		<?php endforeach; ?>
	</fieldset>
</div>
html/com_config/application/default_seo.php000064400000001201151163244070015116
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_config
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div class="width-100">
	<fieldset class="adminform long">
		<legend><?php echo
JText::_('COM_CONFIG_SEO_SETTINGS'); ?></legend>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset('seo') as
$field): ?>
				<li>
					<?php echo $field->label; ?>
					<?php echo $field->input; ?>
				</li>
			<?php endforeach; ?>
		</ul>
	</fieldset>
</div>
html/com_config/application/default_server.php000064400000001202151163244070015637
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_config
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div class="width-100">
	<fieldset class="adminform">
		<legend><?php echo
JText::_('COM_CONFIG_SERVER_SETTINGS'); ?></legend>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset('server') as
$field): ?>
				<li>
					<?php echo $field->label; ?>
					<?php echo $field->input; ?>
				</li>
			<?php endforeach; ?>
		</ul>
	</fieldset>
</div>
html/com_config/application/default_session.php000064400000001204151163244070016016
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_config
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div class="width-100">
	<fieldset class="adminform">
		<legend><?php echo
JText::_('COM_CONFIG_SESSION_SETTINGS'); ?></legend>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset('session') as
$field): ?>
				<li>
					<?php echo $field->label; ?>
					<?php echo $field->input; ?>
				</li>
			<?php endforeach; ?>
		</ul>
	</fieldset>
</div>
html/com_config/application/default_site.php000064400000001176151163244070015307
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_config
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div class="width-100">
	<fieldset class="adminform">
		<legend><?php echo
JText::_('COM_CONFIG_SITE_SETTINGS'); ?></legend>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset('site') as
$field): ?>
				<li>
					<?php echo $field->label; ?>
					<?php echo $field->input; ?>
				</li>
			<?php endforeach; ?>
		</ul>
	</fieldset>
</div>
html/com_config/application/default_system.php000064400000001202151163244070015655
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_config
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div class="width-100">
	<fieldset class="adminform">
		<legend><?php echo
JText::_('COM_CONFIG_SYSTEM_SETTINGS'); ?></legend>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset('system') as
$field): ?>
				<li>
					<?php echo $field->label; ?>
					<?php echo $field->input; ?>
				</li>
			<?php endforeach; ?>
		</ul>
	</fieldset>
</div>
html/com_config/component/default.php000064400000004120151163244070013752
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_config
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$app = JFactory::getApplication();
$template = $app->getTemplate();

JHtml::_('behavior.formvalidator');
JHtml::_('bootstrap.framework');

JFactory::getDocument()->addScriptDeclaration("
	Joomla.submitbutton = function(task)
	{
		if
(document.formvalidator.isValid(document.getElementById('component-form')))
{
			Joomla.submitform(task,
document.getElementById('component-form'));
		}
	}
");
?>
<form action="<?php echo
JRoute::_('index.php?option=com_config'); ?>"
id="component-form" method="post"
name="adminForm" autocomplete="off"
class="form-validate">
	<?php
	echo JHtml::_('tabs.start', 'config-tabs-' .
$this->component->option . '_configuration',
array('useCookie' => 1));
	$fieldSets = $this->form->getFieldsets();
	?>
	<?php foreach ($fieldSets as $name => $fieldSet) : ?>
		<?php
		$label = empty($fieldSet->label) ? 'COM_CONFIG_' . $name .
'_FIELDSET_LABEL' : $fieldSet->label;
		echo JHtml::_('tabs.panel', JText::_($label),
'publishing-details');
		if (isset($fieldSet->description) &&
!empty($fieldSet->description))
		{
		echo '<p class="tab-description">' .
JText::_($fieldSet->description) . '</p>';
		}
		?>
		<ul class="config-option-list">
			<?php foreach ($this->form->getFieldset($name) as $field):
?>
				<li>
					<?php if (!$field->hidden) : ?>
						<?php echo $field->label; ?>
					<?php endif; ?>
					<?php echo $field->input; ?>
				</li>
			<?php endforeach; ?>
		</ul>

		<div class="clr"></div>
	<?php endforeach; ?>
	<?php echo JHtml::_('tabs.end'); ?>
	<div>
		<input type="hidden" name="id"
value="<?php echo $this->component->id; ?>" />
		<input type="hidden" name="component"
value="<?php echo $this->component->option; ?>" />
		<input type="hidden" name="return"
value="<?php echo $this->return; ?>" />
		<input type="hidden" name="task"
value="" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_contact/contact/edit.php000064400000017632151163244070013106
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.formvalidator');

$app = JFactory::getApplication();
$input = $app->input;

$saveHistory =
$this->state->get('params')->get('save_history',
0);

$assoc = JLanguageAssociations::isEnabled();

JFactory::getDocument()->addScriptDeclaration("
	Joomla.submitbutton = function(task)
	{
		if (task == 'contact.cancel' ||
document.formvalidator.isValid(document.getElementById('contact-form')))
		{
			" . $this->form->getField('misc')->save() .
"
			Joomla.submitform(task,
document.getElementById('contact-form'));
		}
	}
");
$fieldSets = $this->form->getFieldsets();
?>
<form action="<?php echo
JRoute::_('index.php?option=com_contact&layout=edit&id='.(int)
$this->item->id); ?>" method="post"
name="adminForm" id="contact-form"
class="form-validate">
	<div class="col main-section">
		<fieldset class="adminform">
			<legend><?php echo empty($this->item->id) ?
JText::_('COM_CONTACT_NEW_CONTACT') :
JText::sprintf('COM_CONTACT_EDIT_CONTACT',
$this->item->id); ?></legend>
			<ul class="adminformlist">
				<li><?php echo $this->form->getLabel('name');
?>
				<?php echo $this->form->getInput('name');
?></li>

				<li><?php echo $this->form->getLabel('alias');
?>
				<?php echo $this->form->getInput('alias');
?></li>

				<li><?php echo
$this->form->getLabel('user_id'); ?>
				<?php echo $this->form->getInput('user_id');
?></li>

				<li><?php echo $this->form->getLabel('catid');
?>
				<?php echo $this->form->getInput('catid');
?></li>

				<li><?php echo
$this->form->getLabel('published'); ?>
				<?php echo $this->form->getInput('published');
?></li>

				<li><?php echo
$this->form->getLabel('access'); ?>
				<?php echo $this->form->getInput('access');
?></li>

				<li><?php echo
$this->form->getLabel('ordering'); ?>
				<?php echo $this->form->getInput('ordering');
?></li>

				<li><?php echo
$this->form->getLabel('featured'); ?>
				<?php echo $this->form->getInput('featured');
?></li>

				<li><?php echo
$this->form->getLabel('language'); ?>
				<?php echo $this->form->getInput('language');
?></li>

				<!-- Tag field -->
				<li><?php echo $this->form->getLabel('tags');
?>
					<div class="is-tagbox">
						<?php echo $this->form->getInput('tags'); ?>
					</div>
				</li>

				<?php if ($saveHistory) : ?>
					<li><?php echo
$this->form->getLabel('version_note'); ?>
					<?php echo $this->form->getInput('version_note');
?></li>
				<?php endif; ?>

				<li><?php echo $this->form->getLabel('id');
?>
				<?php echo $this->form->getInput('id');
?></li>
			</ul>
			<div class="clr"></div>
			<?php echo $this->form->getLabel('misc'); ?>
			<div class="clr"></div>
			<?php echo $this->form->getInput('misc'); ?>
		</fieldset>
	</div>
	<div class="col options-section">
		<?php echo JHtml::_('sliders.start',
'contact-slider'); ?>
			<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_PUBLISHING'),
'publishing-details'); ?>

			<fieldset class="panelform">
			<legend class="element-invisible"><?php echo
JText::_('JGLOBAL_FIELDSET_PUBLISHING'); ?></legend>
				<ul class="adminformlist">

					<li><?php echo
$this->form->getLabel('created_by'); ?>
					<?php echo $this->form->getInput('created_by');
?></li>

					<li><?php echo
$this->form->getLabel('created_by_alias'); ?>
					<?php echo
$this->form->getInput('created_by_alias'); ?></li>

					<li><?php echo
$this->form->getLabel('created'); ?>
					<?php echo $this->form->getInput('created');
?></li>

					<li><?php echo
$this->form->getLabel('publish_up'); ?>
					<?php echo $this->form->getInput('publish_up');
?></li>

					<li><?php echo
$this->form->getLabel('publish_down'); ?>
					<?php echo $this->form->getInput('publish_down');
?></li>

					<?php if ($this->item->modified_by) : ?>
						<li><?php echo
$this->form->getLabel('modified_by'); ?>
						<?php echo $this->form->getInput('modified_by');
?></li>

						<li><?php echo
$this->form->getLabel('modified'); ?>
						<?php echo $this->form->getInput('modified');
?></li>
					<?php endif; ?>

				</ul>
			</fieldset>
			<?php echo JHtml::_('sliders.panel',
JText::_('COM_CONTACT_CONTACT_DETAILS'),
'basic-options'); ?>

			<fieldset class="panelform">
			<legend class="element-invisible"><?php echo
JText::_('COM_CONTACT_CONTACT_DETAILS'); ?></legend>
				<p><?php echo empty($this->item->id) ?
JText::_('COM_CONTACT_DETAILS') :
JText::sprintf('COM_CONTACT_EDIT_DETAILS',
$this->item->id); ?></p>

				<ul class="adminformlist">
					<li><?php echo
$this->form->getLabel('image'); ?>
					<?php echo $this->form->getInput('image');
?></li>

					<li><?php echo
$this->form->getLabel('con_position'); ?>
					<?php echo $this->form->getInput('con_position');
?></li>

					<li><?php echo
$this->form->getLabel('email_to'); ?>
					<?php echo $this->form->getInput('email_to');
?></li>

					<li><?php echo
$this->form->getLabel('address'); ?>
					<?php echo $this->form->getInput('address');
?></li>

					<li><?php echo
$this->form->getLabel('suburb'); ?>
					<?php echo $this->form->getInput('suburb');
?></li>

					<li><?php echo
$this->form->getLabel('state'); ?>
					<?php echo $this->form->getInput('state');
?></li>

					<li><?php echo
$this->form->getLabel('postcode'); ?>
					<?php echo $this->form->getInput('postcode');
?></li>

					<li><?php echo
$this->form->getLabel('country'); ?>
					<?php echo $this->form->getInput('country');
?></li>

					<li><?php echo
$this->form->getLabel('telephone'); ?>
					<?php echo $this->form->getInput('telephone');
?></li>

					<li><?php echo
$this->form->getLabel('mobile'); ?>
					<?php echo $this->form->getInput('mobile');
?></li>

					<li><?php echo $this->form->getLabel('fax');
?>
					<?php echo $this->form->getInput('fax');
?></li>

					<li><?php echo
$this->form->getLabel('webpage'); ?>
					<?php echo $this->form->getInput('webpage');
?></li>

					<li><?php echo
$this->form->getLabel('sortname1'); ?>
					<?php echo $this->form->getInput('sortname1');
?></li>

					<li><?php echo
$this->form->getLabel('sortname2'); ?>
					<?php echo $this->form->getInput('sortname2');
?></li>

					<li><?php echo
$this->form->getLabel('sortname3'); ?>
					<?php echo $this->form->getInput('sortname3');
?></li>
				</ul>
			</fieldset>

			<?php echo $this->loadTemplate('params'); ?>

			<?php foreach ($fieldSets as $name => $fieldSet) : ?>
				<?php if ($name != 'details' && $name !=
'display' && $name != 'item_associations'
&& $name != 'jmetadata' && $name !=
'email') : ?>
					<?php echo JHtml::_('sliders.panel',
JText::_($fieldSet->label), $name.'-options'); ?>
					<?php if (isset($fieldSet->description) &&
trim($fieldSet->description)) : ?>
						<p class="tip"><?php echo
$this->escape(JText::_($fieldSet->description));?></p>
					<?php endif; ?>
					<fieldset class="panelform">
						<ul class="adminformlist">
						<?php foreach ($this->form->getFieldset($name) as $field) :
?>
							<li>
								<?php echo $field->label; ?>
								<?php echo $field->input; ?>
							</li>
						<?php endforeach; ?>
						</ul>
					</fieldset>
				<?php endif ?>
			<?php endforeach; ?>

			<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_METADATA_OPTIONS'),
'meta-options'); ?>
			<fieldset class="panelform">
			<legend class="element-invisible"><?php echo
JText::_('JGLOBAL_FIELDSET_METADATA_OPTIONS');
?></legend>
				<?php echo $this->loadTemplate('metadata'); ?>
			</fieldset>

			<?php if ($assoc) : ?>
				<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_ASSOCIATIONS'),
'-options');?>
				<?php echo $this->loadTemplate('associations'); ?>
			<?php endif; ?>

		<?php echo JHtml::_('sliders.end'); ?>
		<input type="hidden" name="task"
value="" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_contact/contact/edit_params.php000064400000001713151163244070014442
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$fieldSets = $this->form->getFieldsets('params');
foreach ($fieldSets as $name => $fieldSet) :
	echo JHtml::_('sliders.panel', JText::_($fieldSet->label),
$name.'-params');
	if (isset($fieldSet->description) &&
trim($fieldSet->description)) :
		echo '<p
class="tip">'.$this->escape(JText::_($fieldSet->description)).'</p>';
	endif;
	?>
	<fieldset class="panelform" >
	<legend class="element-invisible"><?php echo
JText::_($fieldSet->label); ?></legend>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset($name) as $field) :
?>
				<li><?php echo $field->label; ?>
				<?php echo $field->input; ?></li>
			<?php endforeach; ?>
		</ul>
	</fieldset>
<?php endforeach; ?>
html/com_contact/contacts/default.php000064400000024766151163244070013776
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.multiselect');

$app       = JFactory::getApplication();
$user      = JFactory::getUser();
$userId    = $user->get('id');
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$canOrder  = $user->authorise('core.edit.state',
'com_contact');
$saveOrder = $listOrder == 'a.ordering';
$assoc     = JLanguageAssociations::isEnabled();
?>

<form action="<?php echo
JRoute::_('index.php?option=com_contact'); ?>"
method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_CONTACT_SEARCH_IN_NAME'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>
		<div class="filter-select">
			<label class="selectlabel"
for="filter_published">
				<?php echo JText::_('JOPTION_SELECT_PUBLISHED'); ?>
			</label>
			<select name="filter_published"
id="filter_published">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('jgrid.publishedOptions'), 'value',
'text', $this->state->get('filter.published'),
true);?>
			</select>

			<label class="selectlabel"
for="filter_category_id">
				<?php echo JText::_('JOPTION_SELECT_CATEGORY'); ?>
			</label>
			<select name="filter_category_id"
id="filter_category_id">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_CATEGORY');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('category.options', 'com_contact'),
'value', 'text',
$this->state->get('filter.category_id'));?>
			</select>

			<label class="selectlabel"
for="filter_access">
				<?php echo JText::_('JOPTION_SELECT_ACCESS'); ?>
			</label>
			<select name="filter_access"
id="filter_access">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_ACCESS');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('access.assetgroups'), 'value',
'text', $this->state->get('filter.access'));?>
			</select>

			<label class="selectlabel"
for="filter_language">
				<?php echo JText::_('JOPTION_SELECT_LANGUAGE'); ?>
			</label>
			<select name="filter_language"
id="filter_language">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_LANGUAGE');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('contentlanguage.existing', true, true),
'value', 'text',
$this->state->get('filter.language'));?>
			</select>

			<label class="selectlabel" for="filter_tag">
				<?php echo JText::_('JOPTION_SELECT_TAG'); ?>
			</label>
			<select name="filter_tag" id="filter_tag">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_TAG');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('tag.options', true, true), 'value',
'text', $this->state->get('filter.tag'));?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_TITLE', 'a.name', $listDirn, $listOrder);
?>
				</th>
				<th>
					<?php echo JHtml::_('grid.sort',
'COM_CONTACT_FIELD_LINKED_USER_LABEL', 'ul.name',
$listDirn, $listOrder); ?>
				</th>
				<th class="nowrap state-col">
					<?php echo JHtml::_('grid.sort', 'JSTATUS',
'a.state', $listDirn, $listOrder); ?>
				</th>
				<th class="nowrap featured-col">
					<?php echo JHtml::_('grid.sort', 'JFEATURED',
'a.featured', $listDirn, $listOrder, null, 'desc');
?>
				</th>
				<th class="title category-col">
					<?php echo JHtml::_('grid.sort', 'JCATEGORY',
'category_title', $listDirn, $listOrder); ?>
				</th>
				<th class="nowrap ordering-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ORDERING', 'a.ordering', $listDirn,
$listOrder); ?>
					<?php if ($canOrder && $saveOrder) : ?>
						<?php echo JHtml::_('grid.order', $this->items,
'filesave.png', 'contacts.saveorder'); ?>
					<?php endif; ?>
				</th>
				<th class="title access-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ACCESS', 'access_level', $listDirn,
$listOrder); ?>
				</th>
				<?php if ($assoc) : ?>
					<th width="5%">
						<?php echo JHtml::_('grid.sort',
'COM_CONTACT_HEADING_ASSOCIATION', 'association',
$listDirn, $listOrder); ?>
					</th>
				<?php endif;?>
				<th class="language-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_LANGUAGE', 'a.language', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php
		$n = count($this->items);
		foreach ($this->items as $i => $item) :
			$ordering   = $listOrder == 'a.ordering';
			$canCreate  = $user->authorise('core.create',    
'com_contact.category.' . $item->catid);
			$canEdit    = $user->authorise('core.edit',      
'com_contact.category.' . $item->catid);
			$canCheckin = $user->authorise('core.manage',    
'com_checkin') || $item->checked_out == $userId ||
$item->checked_out == 0;
			$canEditOwn = $user->authorise('core.edit.own',  
'com_contact.category.' . $item->catid) &&
$item->created_by == $userId;
			$canChange  = $user->authorise('core.edit.state',
'com_contact.category.' . $item->catid) &&
$canCheckin;

			$item->cat_link =
JRoute::_('index.php?option=com_categories&extension=com_contact&task=edit&type=other&id='.$item->catid);
			?>
			<tr class="row<?php echo $i % 2; ?>">
				<td class="center">
					<?php echo JHtml::_('grid.id', $i, $item->id); ?>
				</td>
				<td>
					<?php if ($item->checked_out) : ?>
						<?php echo JHtml::_('jgrid.checkedout', $i,
$item->editor, $item->checked_out_time, 'contacts.',
$canCheckin); ?>
					<?php endif; ?>
					<?php if ($canEdit || $canEditOwn) : ?>
						<a href="<?php echo
JRoute::_('index.php?option=com_contact&task=contact.edit&id='.(int)
$item->id); ?>">
						<?php echo $this->escape($item->name); ?></a>
					<?php else : ?>
						<?php echo $this->escape($item->name); ?>
					<?php endif; ?>
					<p class="smallsub">
						<?php echo JText::sprintf('JGLOBAL_LIST_ALIAS',
$this->escape($item->alias));?></p>
				</td>
				<td align="center">
					<?php if (!empty($item->linked_user)) : ?>
						<a href="<?php echo
JRoute::_('index.php?option=com_users&task=user.edit&id='.$item->user_id);?>"><?php
echo $item->linked_user;?></a>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo JHtml::_('jgrid.published',
$item->published, $i, 'contacts.', $canChange, 'cb',
$item->publish_up, $item->publish_down); ?>
				</td>
				<td class="center">
					<?php echo JHtml::_('contact.featured',
$item->featured, $i, $canChange); ?>
				</td>
				<td class="center">
					<?php echo $item->category_title; ?>
				</td>
				<td class="order">
					<?php if ($canChange) : ?>
						<?php if ($saveOrder) : ?>
							<?php if ($listDirn == 'asc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
$item->catid == @$this->items[$i - 1]->catid,
'contacts.orderup', 'JLIB_HTML_MOVE_UP', $ordering);
?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
$item->catid == @$this->items[$i + 1]->catid,
'contacts.orderdown', 'JLIB_HTML_MOVE_DOWN',
$ordering); ?></span>
							<?php elseif ($listDirn == 'desc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
$item->catid == @$this->items[$i - 1]->catid,
'contacts.orderdown', 'JLIB_HTML_MOVE_UP', $ordering);
?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
$item->catid == @$this->items[$i + 1]->catid,
'contacts.orderup', 'JLIB_HTML_MOVE_DOWN', $ordering);
?></span>
							<?php endif; ?>
						<?php endif; ?>
						<?php $disabled = $saveOrder ?  '' :
'disabled="disabled"'; ?>
						<input type="text" name="order[]"
value="<?php echo $item->ordering; ?>" <?php echo
$disabled; ?> class="text-area-order" title="<?php
echo $item->name; ?> order" />
					<?php else : ?>
						<?php echo $item->ordering; ?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo $item->access_level; ?>
				</td>
				<?php if ($assoc) : ?>
					<td class="center">
						<?php if ($item->association) : ?>
							<?php echo JHtml::_('contact.association',
$item->id); ?>
						<?php endif; ?>
					</td>
				<?php endif;?>
				<td class="center">
					<?php echo
JLayoutHelper::render('joomla.content.language', $item); ?>
				</td>
				<td class="center">
					<?php echo $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

		<?php //Load the batch processing form. ?>
		<?php if ($user->authorise('core.create',
'com_contact')
			&& $user->authorise('core.edit',
'com_contact')
			&& $user->authorise('core.edit.state',
'com_contact')) : ?>
			<?php echo JHtml::_(
				'bootstrap.renderModal',
				'collapseModal',
				array(
					'title'  =>
JText::_('COM_CONTACT_BATCH_OPTIONS'),
					'footer' =>
$this->loadTemplate('batch_footer'),
				),
				$this->loadTemplate('batch_body')
			); ?>
		<?php endif; ?>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_contact/contacts/modal.php000064400000013335151163244070013434
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

$forcedLanguage =
JFactory::getApplication()->input->get('forcedLanguage',
'', 'cmd');
$function  =
JFactory::getApplication()->input->getCmd('function',
'jSelectContact');
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
?>
<form action="<?php echo
JRoute::_('index.php?option=com_contact&view=contacts&layout=modal&tmpl=component');?>"
method="post" name="adminForm"
id="adminForm">
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter-search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo JText::_('JSEARCH_FILTER');
?>" />

			<button type="submit">
				<?php echo JText::_('JSEARCH_FILTER_SUBMIT');
?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();">
				<?php echo JText::_('JSEARCH_FILTER_CLEAR');
?></button>
		</div>

		<div class="filter-select">
			<label class="selectlabel"
for="filter_access">
				<?php echo JText::_('JOPTION_SELECT_ACCESS'); ?>
			</label>
			<select name="filter_access"
id="filter_access">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_ACCESS');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('access.assetgroups'), 'value',
'text', $this->state->get('filter.access'));?>
			</select>

			<label class="selectlabel"
for="filter_published">
				<?php echo JText::_('JOPTION_SELECT_PUBLISHED'); ?>
			</label>
			<select name="filter_published"
id="filter_published">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('jgrid.publishedOptions'), 'value',
'text', $this->state->get('filter.published'),
true);?>
			</select>

			<label class="selectlabel"
for="filter_category_id">
				<?php echo JText::_('JOPTION_SELECT_CATEGORY'); ?>
			</label>
			<select name="filter_category_id"
id="filter_category_id">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_CATEGORY');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('category.options', 'com_contact'),
'value', 'text',
$this->state->get('filter.category_id'));?>
			</select>

			<?php if ($forcedLanguage) : ?>
				<input type="hidden" name="forcedLanguage"
value="<?php echo $this->escape($forcedLanguage); ?>"
/>
				<input type="hidden" name="filter_language"
value="<?php echo
$this->escape($this->state->get('filter.language'));
?>" />
			<?php else : ?>
				<label class="selectlabel"
for="filter_language"><?php echo
JText::_('JOPTION_SELECT_LANGUAGE'); ?></label>
				<select name="filter_language"
id="filter_language">
					<option value=""><?php echo
JText::_('JOPTION_SELECT_LANGUAGE');?></option>
					<?php echo JHtml::_('select.options',
JHtml::_('contentlanguage.existing', true, true),
'value', 'text',
$this->state->get('filter.language'));?>
				</select>
			<?php endif; ?>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist modal">
		<thead>
			<tr>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_TITLE', 'a.name', $listDirn, $listOrder);
?>
				</th>
				<th>
					<?php echo JHtml::_('grid.sort',
'COM_CONTACT_FIELD_LINKED_USER_LABEL', 'ul.name',
$listDirn, $listOrder); ?>
				</th>
				<th class="title access-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ACCESS', 'access_level', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap state-col">
					<?php echo JHtml::_('grid.sort', 'JCATEGORY',
'a.catid', $listDirn, $listOrder); ?>
				</th>
				<th class="title language-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_LANGUAGE', 'language', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) : ?>
			<tr class="row<?php echo $i % 2; ?>">
				<th>
					<a class="pointer" onclick="if (window.parent)
window.parent.<?php echo
$this->escape($function);?>('<?php echo $item->id;
?>', '<?php echo
$this->escape(addslashes($item->name)); ?>');">
						<?php echo $this->escape($item->name); ?></a>
				</th>
				<td class="center">
					<?php if (!empty($item->linked_user)) : ?>
						<?php echo $item->linked_user;?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo $this->escape($item->access_level); ?>
				</td>
				<td class="center">
					<?php echo $this->escape($item->category_title); ?>
				</td>
				<td class="center">
					<?php echo
JLayoutHelper::render('joomla.content.language', $item); ?>
				</td>
				<td class="center">
					<?php echo (int) $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<input type="hidden" name="forcedLanguage"
value="<?php echo $forcedLanguage; ?>" />
	<?php echo JHtml::_('form.token'); ?>
</form>
html/com_content/article/edit.php000064400000025222151163244070013107
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.formvalidator');
JHtml::_('behavior.keepalive');

// Create shortcut to parameters.
$params = $this->state->get('params');
$params = $params->toArray();
$saveHistory =
$this->state->get('params')->get('save_history',
0);

// This checks if the config options have ever been saved. If they
haven't they will fall back to the original settings.
$editoroptions = isset($params['show_publishing_options']);

$input = JFactory::getApplication()->input;

if (!$editoroptions):
	$params['show_publishing_options'] = '1';
	$params['show_article_options'] = '1';
	$params['show_urls_images_backend'] = '0';
	$params['show_urls_images_frontend'] = '0';
endif;

// Check if the article uses configuration settings besides global. If so,
use them.
if
(!empty($this->item->attribs['show_publishing_options'])):
		$params['show_publishing_options'] =
$this->item->attribs['show_publishing_options'];
endif;
if (!empty($this->item->attribs['show_article_options'])):
		$params['show_article_options'] =
$this->item->attribs['show_article_options'];
endif;
if
(!empty($this->item->attribs['show_urls_images_backend'])):
		$params['show_urls_images_backend'] =
$this->item->attribs['show_urls_images_backend'];
endif;

$assoc = JLanguageAssociations::isEnabled();

JFactory::getDocument()->addScriptDeclaration("
	Joomla.submitbutton = function(task)
	{
		if (task == 'article.cancel' ||
document.formvalidator.isValid(document.getElementById('item-form')))
		{
			" . $this->form->getField('articletext')->save()
. "
			Joomla.submitform(task, document.getElementById('item-form'));
		}
	}
");
?>
<div class="article-edit">

<form action="<?php echo
JRoute::_('index.php?option=com_content&layout=edit&id='.(int)
$this->item->id); ?>" method="post"
name="adminForm" id="item-form"
class="form-validate">
	<div class="col main-section">
		<fieldset class="adminform">
			<legend><?php echo empty($this->item->id) ?
JText::_('COM_CONTENT_NEW_ARTICLE') :
JText::sprintf('COM_CONTENT_EDIT_ARTICLE',
$this->item->id); ?></legend>
			<ul class="adminformlist">
				<li><?php echo $this->form->getLabel('title');
?>
				<?php echo $this->form->getInput('title');
?></li>

				<li><?php echo $this->form->getLabel('alias');
?>
				<?php echo $this->form->getInput('alias');
?></li>

				<li><?php echo $this->form->getLabel('catid');
?>
				<?php echo $this->form->getInput('catid');
?></li>

				<li><?php echo $this->form->getLabel('state');
?>
				<?php echo $this->form->getInput('state');
?></li>

				<li><?php echo
$this->form->getLabel('access'); ?>
				<?php echo $this->form->getInput('access');
?></li>

				<?php if ($this->canDo->get('core.admin')) : ?>
					<li><span class="faux-label"><?php echo
JText::_('JGLOBAL_ACTION_PERMISSIONS_LABEL'); ?></span>
						<button type="button"
onclick="document.location.href='#access-rules';">
							<?php echo JText::_('JGLOBAL_PERMISSIONS_ANCHOR');
?>
						</button>
					</li>
				<?php endif; ?>

				<li><?php echo
$this->form->getLabel('featured'); ?>
				<?php echo $this->form->getInput('featured');
?></li>

				<li><?php echo
$this->form->getLabel('language'); ?>
				<?php echo $this->form->getInput('language');
?></li>

				<!-- Tag field -->
				<li><?php echo $this->form->getLabel('tags');
?>
					<div class="is-tagbox">
						<?php echo $this->form->getInput('tags'); ?>
					</div>
				</li>

				<?php if ($saveHistory) : ?>
					<li><?php echo
$this->form->getLabel('version_note'); ?>
					<?php echo $this->form->getInput('version_note');
?></li>
				<?php endif; ?>

				<li><?php echo $this->form->getLabel('id');
?>
				<?php echo $this->form->getInput('id');
?></li>

			</ul>

			<div class="clr"></div>
			<?php echo $this->form->getLabel('articletext');
?>
			<div class="clr"></div>
			<?php echo $this->form->getInput('articletext');
?>
			<div class="clr"></div>
		</fieldset>
	</div>

	<div class="col options-section">
		<?php echo JHtml::_('sliders.start',
'content-sliders-' . $this->item->id,
array('useCookie' => 1)); ?>
		<?php // Do not show the publishing options if the edit form is
configured not to. ?>
		<?php  if ($params['show_publishing_options'] || (
$params['show_publishing_options'] = '' &&
!empty($editoroptions)) ) : ?>
			<?php echo JHtml::_('sliders.panel',
JText::_('COM_CONTENT_FIELDSET_PUBLISHING'),
'publishing-details'); ?>
			<fieldset class="panelform">
				<ul class="adminformlist">
					<li><?php echo
$this->form->getLabel('created_by'); ?>
					<?php echo $this->form->getInput('created_by');
?></li>

					<li><?php echo
$this->form->getLabel('created_by_alias'); ?>
					<?php echo
$this->form->getInput('created_by_alias'); ?></li>

					<li><?php echo
$this->form->getLabel('created'); ?>
					<?php echo $this->form->getInput('created');
?></li>

						<li><?php echo
$this->form->getLabel('publish_up'); ?>
						<?php echo $this->form->getInput('publish_up');
?></li>

					<li><?php echo
$this->form->getLabel('publish_down'); ?>
					<?php echo $this->form->getInput('publish_down');
?></li>

					<?php if ($this->item->modified_by) : ?>
						<li><?php echo
$this->form->getLabel('modified_by'); ?>
						<?php echo $this->form->getInput('modified_by');
?></li>

						<li><?php echo
$this->form->getLabel('modified'); ?>
						<?php echo $this->form->getInput('modified');
?></li>
					<?php endif; ?>

					<?php if ($this->item->version) : ?>
						<li><?php echo
$this->form->getLabel('version'); ?>
						<?php echo $this->form->getInput('version');
?></li>
					<?php endif; ?>

					<?php if ($this->item->hits) : ?>
						<li><?php echo
$this->form->getLabel('hits'); ?>
						<?php echo $this->form->getInput('hits');
?></li>
					<?php endif; ?>
				</ul>
			</fieldset>
		<?php  endif; ?>
		<?php  $fieldSets = $this->form->getFieldsets(); ?>
			<?php foreach ($fieldSets as $name => $fieldSet) : ?>
				<?php
					// If the parameter says to show the article options or if the
parameters have never been set, we will
					// show the article options.

					if ($params['show_article_options'] ||
($params['show_article_options'] == '' &&
!empty($editoroptions))):

					// Go through all the fieldsets except the configuration and
basic-limited, which are
					// handled separately below.
					if ($name != 'editorConfig' && $name !=
'basic-limited' && $name != 'item_associations'
&& $name != 'jmetadata') : ?>
						<?php echo JHtml::_('sliders.panel',
JText::_($fieldSet->label), $name.'-options'); ?>
						<?php if (isset($fieldSet->description) &&
trim($fieldSet->description)) : ?>
							<p class="tip"><?php echo
$this->escape(JText::_($fieldSet->description));?></p>
						<?php endif; ?>
						<fieldset class="panelform">
							<ul class="adminformlist">
							<?php foreach ($this->form->getFieldset($name) as $field) :
?>
								<li><?php echo $field->label; ?>
								<?php echo $field->input; ?></li>
							<?php endforeach; ?>
							</ul>
						</fieldset>
					<?php endif ?>
					<?php // If we are not showing the options we need to use the
hidden fields so the values are not lost.  ?>
				<?php  elseif ($name == 'basic-limited') : ?>
						<?php foreach
($this->form->getFieldset('basic-limited') as $field) :
?>
							<?php  echo $field->input; ?>
						<?php endforeach; ?>

				<?php endif; ?>
			<?php endforeach; ?>
			<?php // Not the best place, but here for continuity with 1.5/1/6/1.7
?>
				<fieldset class="panelform">
				</fieldset>
				<?php
					// We need to make a separate space for the configuration
					// so that those fields always show to those wih permissions
					if ( $this->canDo->get('core.admin')   ):  ?>
					<?php  echo JHtml::_('sliders.panel',
JText::_('COM_CONTENT_SLIDER_EDITOR_CONFIG'),
'configure-sliders'); ?>
						<fieldset  class="panelform" >
							<ul class="adminformlist">
							<?php foreach
($this->form->getFieldset('editorConfig') as $field) :
?>
								<li><?php echo $field->label; ?>
								<?php echo $field->input; ?></li>
							<?php endforeach; ?>
							</ul>
						</fieldset>
				<?php endif ?>

		<?php // The URL and images fields only show if the configuration is
set to allow them.  ?>
		<?php // This is for legacy reasons. ?>
		<?php if ($params['show_urls_images_backend']) : ?>
			<?php echo JHtml::_('sliders.panel',
JText::_('COM_CONTENT_FIELDSET_URLS_AND_IMAGES'),
'urls_and_images-options'); ?>
				<fieldset class="panelform">
				<ul class="adminformlist">
					<li>
					<?php echo $this->form->getLabel('images'); ?>
					<?php echo $this->form->getInput('images');
?></li>

					<?php foreach ($this->form->getGroup('images') as
$field) : ?>
						<li>
							<?php if (!$field->hidden) : ?>
								<?php echo $field->label; ?>
							<?php endif; ?>
							<?php echo $field->input; ?>
						</li>
					<?php endforeach; ?>
						<?php foreach ($this->form->getGroup('urls') as
$field) : ?>
						<li>
							<?php if (!$field->hidden) : ?>
								<?php echo $field->label; ?>
							<?php endif; ?>
							<?php echo $field->input; ?>
						</li>
					<?php endforeach; ?>
				</ul>
				</fieldset>
		<?php endif; ?>
		<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_METADATA_OPTIONS'),
'meta-options'); ?>
			<fieldset class="panelform">
			<legend class="element-invisible"><?php echo
JText::_('JGLOBAL_FIELDSET_METADATA_OPTIONS');
?></legend>
				<?php echo $this->loadTemplate('metadata'); ?>
			</fieldset>

		<?php if ($assoc) : ?>
			<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_ASSOCIATIONS'),
'-options');?>
			<?php echo $this->loadTemplate('associations'); ?>
		<?php endif; ?>

		<?php echo JHtml::_('sliders.end'); ?>
	</div>

	<div class="clr"></div>
	<?php if ($this->canDo->get('core.admin')) : ?>
		<div  class="col rules-section">
			<?php echo JHtml::_('sliders.start',
'permissions-sliders-' . $this->item->id,
array('useCookie' => 1)); ?>

				<?php echo JHtml::_('sliders.panel',
JText::_('COM_CONTENT_FIELDSET_RULES'),
'access-rules'); ?>
				<fieldset class="panelform">
					<legend class="element-invisible"><?php echo
JText::_('COM_CONTENT_FIELDSET_RULES'); ?></legend>
					<?php echo $this->form->getLabel('rules'); ?>
					<?php echo $this->form->getInput('rules'); ?>
				</fieldset>

			<?php echo JHtml::_('sliders.end'); ?>
		</div>
	<?php endif; ?>
	<div>
		<input type="hidden" name="task"
value="" />
		<input type="hidden" name="return"
value="<?php echo $input->get('return', null,
'BASE64');?>" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
<div class="clr"></div>
</div>
html/com_content/articles/default.php000064400000027403151163244070013774
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.multiselect');

$app       = JFactory::getApplication();
$user      = JFactory::getUser();
$userId    = $user->get('id');
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$saveOrder = $listOrder == 'a.ordering';
$assoc     = JLanguageAssociations::isEnabled();
$n         = count($this->items);
?>

<form action="<?php echo
JRoute::_('index.php?option=com_content&view=articles');
?>" method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_CONTENT_FILTER_SEARCH_DESC'); ?>" />
			<button type="submit" class="btn"><?php
echo JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>

		<div class="filter-select">
			<label class="selectlabel"
for="filter_published"><?php echo
JText::_('JOPTION_SELECT_PUBLISHED'); ?></label>
			<select name="filter_published"
id="filter_published">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('jgrid.publishedOptions'), 'value',
'text', $this->state->get('filter.published'),
true); ?>
			</select>

			<label class="selectlabel"
for="filter_category_id"><?php echo
JText::_('JOPTION_SELECT_CATEGORY'); ?></label>
			<select name="filter_category_id"
id="filter_category_id">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_CATEGORY'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('category.options', 'com_content',
array('filter.published' => array(-2, 0, 1, 2))),
'value', 'text',
$this->state->get('filter.category_id')); ?>
			</select>

			<label class="selectlabel"
for="filter_level"><?php echo
JText::_('JOPTION_SELECT_MAX_LEVELS'); ?></label>
			<select name="filter_level" id="filter_level">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_MAX_LEVELS'); ?></option>
				<?php echo JHtml::_('select.options', $this->f_levels,
'value', 'text',
$this->state->get('filter.level')); ?>
			</select>

			<label class="selectlabel"
for="filter_access"><?php echo
JText::_('JOPTION_SELECT_ACCESS'); ?></label>
			<select name="filter_access"
id="filter_access">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_ACCESS'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('access.assetgroups'), 'value',
'text', $this->state->get('filter.access'));
?>
			</select>

			<label class="selectlabel"
for="filter_author_id"><?php echo
JText::_('JOPTION_SELECT_AUTHOR'); ?></label>
			<select name="filter_author_id" 
id="filter_author_id">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_AUTHOR'); ?></option>
				<?php echo JHtml::_('select.options', $this->authors,
'value', 'text',
$this->state->get('filter.author_id')); ?>
			</select>

			<label class="selectlabel"
for="filter_language"><?php echo
JText::_('JOPTION_SELECT_LANGUAGE'); ?></label>
			<select name="filter_language"
id="filter_language">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_LANGUAGE'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('contentlanguage.existing', true, true),
'value', 'text',
$this->state->get('filter.language')); ?>
			</select>

			<label class="selectlabel"
for="filter_tag"><?php echo
JText::_('JOPTION_SELECT_TAG'); ?></label>
			<select name="filter_tag" id="filter_tag">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_TAG'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('tag.options', true, true), 'value',
'text', $this->state->get('filter.tag')); ?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder);
?>
				</th>
				<th class="nowrap state-col">
					<?php echo JHtml::_('grid.sort', 'JSTATUS',
'a.state', $listDirn, $listOrder); ?>
				</th>
				<th class="nowrap featured-col">
					<?php echo JHtml::_('grid.sort', 'JFEATURED',
'a.featured', $listDirn, $listOrder, null, 'desc');
?>
				</th>
				<th class="title category-col">
					<?php echo JHtml::_('grid.sort', 'JCATEGORY',
'category_title', $listDirn, $listOrder); ?>
				</th>
				<th class="nowrap ordering-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ORDERING', 'a.ordering', $listDirn,
$listOrder); ?>
					<?php if ($saveOrder) : ?>
						<?php echo JHtml::_('grid.order', $this->items,
'filesave.png', 'articles.saveorder'); ?>
					<?php endif; ?>
				</th>
				<th class="title access-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ACCESS', 'access_level', $listDirn,
$listOrder); ?>
				</th>
				<?php if ($assoc) : ?>
				<th width="5%">
					<?php echo JHtml::_('grid.sort',
'COM_CONTENT_HEADING_ASSOCIATION', 'association',
$listDirn, $listOrder); ?>
				</th>
				<?php endif;?>
				<th class="title created-by-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_CREATED_BY', 'a.created_by', $listDirn,
$listOrder); ?>
				</th>
				<th class="title date-col">
					<?php echo JHtml::_('grid.sort',
'COM_CONTENT_HEADING_DATE_CREATED', 'a.created',
$listDirn, $listOrder); ?>
				</th>
				<th class="hits-col">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_HITS', 'a.hits', $listDirn, $listOrder); ?>
				</th>
				<th class="language-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_LANGUAGE', 'language', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) :
			$item->max_ordering = 0; //??
			$ordering   = ($listOrder == 'a.ordering');
			$canCreate  = $user->authorise('core.create',    
'com_content.category.' . $item->catid);
			$canEdit    = $user->authorise('core.edit',      
'com_content.article.' . $item->id);
			$canCheckin = $user->authorise('core.manage',    
'com_checkin') || $item->checked_out == $userId ||
$item->checked_out == 0;
			$canEditOwn = $user->authorise('core.edit.own',  
'com_content.article.' . $item->id) &&
$item->created_by == $userId;
			$canChange  = $user->authorise('core.edit.state',
'com_content.article.' . $item->id) && $canCheckin;
			?>
			<tr class="row<?php echo $i % 2; ?>">
				<th class="center">
					<?php echo JHtml::_('grid.id', $i, $item->id); ?>
				</th>
				<td class="break-word">
					<?php if ($item->checked_out) : ?>
						<?php echo JHtml::_('jgrid.checkedout', $i,
$item->editor, $item->checked_out_time, 'articles.',
$canCheckin); ?>
					<?php endif; ?>
					<?php if ($canEdit || $canEditOwn) : ?>
						<a href="<?php echo
JRoute::_('index.php?option=com_content&task=article.edit&id='.$item->id);
?>">
							<?php echo $this->escape($item->title); ?></a>
					<?php else : ?>
						<?php echo $this->escape($item->title); ?>
					<?php endif; ?>
					<p class="smallsub">
						<?php echo JText::sprintf('JGLOBAL_LIST_ALIAS',
$this->escape($item->alias)); ?></p>
				</td>
				<td class="center">
					<?php echo JHtml::_('jgrid.published', $item->state,
$i, 'articles.', $canChange, 'cb',
$item->publish_up, $item->publish_down); ?>
				</td>
				<td class="center">
					<?php echo JHtml::_('contentadministrator.featured',
$item->featured, $i, $canChange); ?>
				</td>
				<td class="center">
					<?php echo $this->escape($item->category_title); ?>
				</td>
				<td class="order">
					<?php if ($canChange) : ?>
						<?php if ($saveOrder) : ?>
							<?php if ($listDirn == 'asc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
$item->catid == @$this->items[$i - 1]->catid,
'articles.orderup', 'JLIB_HTML_MOVE_UP', $ordering);
?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
$item->catid == @$this->items[$i + 1]->catid,
'articles.orderdown', 'JLIB_HTML_MOVE_DOWN',
$ordering); ?></span>
							<?php elseif ($listDirn == 'desc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
$item->catid == @$this->items[$i - 1]->catid,
'articles.orderdown', 'JLIB_HTML_MOVE_UP', $ordering);
?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
$item->catid == @$this->items[$i + 1]->catid,
'articles.orderup', 'JLIB_HTML_MOVE_DOWN', $ordering);
?></span>
							<?php endif; ?>
						<?php endif; ?>
						<?php $disabled = $saveOrder ?  '' :
'disabled="disabled"'; ?>
						<input type="text" name="order[]"
value="<?php echo $item->ordering; ?>" <?php echo
$disabled; ?> class="text-area-order" title="<?php
echo $item->title; ?> order" />
					<?php else : ?>
						<?php echo $item->ordering; ?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo $this->escape($item->access_level); ?>
				</td>
				<?php if ($assoc) : ?>
				<td class="center">
					<?php if ($item->association):?>
						<?php echo JHtml::_('contentadministrator.association',
$item->id); ?>
					<?php endif;?>
				</td>
				<?php endif;?>
				<td class="center">
					<?php if ($item->created_by_alias) : ?>
						<?php echo $this->escape($item->author_name); ?>
						<p class="smallsub"> <?php echo
JText::sprintf('JGLOBAL_LIST_ALIAS',
$this->escape($item->created_by_alias)); ?></p>
					<?php else : ?>
						<?php echo $this->escape($item->author_name); ?>
					<?php endif; ?>
				</td>
				<td class="center nowrap">
					<?php echo JHtml::_('date', $item->created,
JText::_('DATE_FORMAT_LC4')); ?>
				</td>
				<td class="center">
					<?php echo (int) $item->hits; ?>
				</td>
				<td class="center">
					<?php echo
JLayoutHelper::render('joomla.content.language', $item); ?>
				</td>
				<td class="center">
					<?php echo (int) $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

		<?php //Load the batch processing form. ?>
		<?php if ($user->authorise('core.create',
'com_content')
			&& $user->authorise('core.edit',
'com_content')
			&& $user->authorise('core.edit.state',
'com_content')) : ?>
			<?php echo JHtml::_(
				'bootstrap.renderModal',
				'collapseModal',
				array(
					'title'  =>
JText::_('COM_CONTENT_BATCH_OPTIONS'),
					'footer' =>
$this->loadTemplate('batch_footer'),
				),
				$this->loadTemplate('batch_body')
			); ?>
		<?php endif; ?>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_content/articles/modal.php000064400000014016151163244070013440
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$app = JFactory::getApplication();

if ($app->isClient('site'))
{
	JSession::checkToken('get') or
die(JText::_('JINVALID_TOKEN'));
}

JLoader::register('ContentHelperRoute', JPATH_ROOT .
'/components/com_content/helpers/route.php');

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

$function  = $app->input->getCmd('function',
'jSelectArticle');
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
?>
<form action="<?php echo
JRoute::_('index.php?option=com_content&view=articles&layout=modal&tmpl=component&function='.$function.'&'.JSession::getFormToken().'=1');?>"
method="post" name="adminForm"
id="adminForm">
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search">
				<?php echo JText::_('JSEARCH_FILTER_LABEL'); ?>
			</label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_CONTENT_FILTER_SEARCH_DESC'); ?>" />

			<button type="submit">
				<?php echo JText::_('JSEARCH_FILTER_SUBMIT');
?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();">
				<?php echo JText::_('JSEARCH_FILTER_CLEAR');
?></button>
		</div>

		<div class="filter-select">
			<label class="selectlabel"
for="filter_access"><?php echo
JText::_('JOPTION_SELECT_ACCESS'); ?></label>
			<select name="filter_access"
id="filter_access">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_ACCESS');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('access.assetgroups'), 'value',
'text', $this->state->get('filter.access'));?>
			</select>

			<label class="selectlabel"
for="filter_published"><?php echo
JText::_('JOPTION_SELECT_PUBLISHED'); ?></label>
			<select name="filter_published"
id="filter_published">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('jgrid.publishedOptions'), 'value',
'text', $this->state->get('filter.published'),
true);?>
			</select>

			<label class="selectlabel"
for="filter_category_id"><?php echo
JText::_('JOPTION_SELECT_CATEGORY'); ?></label>
			<select name="filter_category_id"
id="filter_category_id">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_CATEGORY');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('category.options', 'com_content'),
'value', 'text',
$this->state->get('filter.category_id'));?>
			</select>
			<?php if ($this->state->get('filter.forcedLanguage'))
: ?>
			<input type="hidden" name="forcedLanguage"
value="<?php echo
$this->escape($this->state->get('filter.forcedLanguage'));
?>" />
			<input type="hidden" name="filter_language"
value="<?php echo
$this->escape($this->state->get('filter.language'));
?>" />
			<?php else : ?>
			<label class="selectlabel"
for="filter_language"><?php echo
JText::_('JOPTION_SELECT_LANGUAGE'); ?></label>
			<select name="filter_language"
id="filter_language">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_LANGUAGE');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('contentlanguage.existing', true, true),
'value', 'text',
$this->state->get('filter.language'));?>
			</select>
			<?php endif; ?>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>

	<table class="adminlist modal">
		<thead>
			<tr>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder);
?>
				</th>
				<th class="title access-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ACCESS', 'access_level', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap state-col">
					<?php echo JHtml::_('grid.sort', 'JCATEGORY',
'a.catid', $listDirn, $listOrder); ?>
				</th>
				<th class="title language-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_LANGUAGE', 'language', $listDirn,
$listOrder); ?>
				</th>
				<th class="title date-col">
					<?php echo JHtml::_('grid.sort', 'JDATE',
'a.created', $listDirn, $listOrder); ?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) : ?>
			<tr class="row<?php echo $i % 2; ?>">
				<th>
					<a class="pointer" onclick="if (window.parent)
window.parent.<?php echo
$this->escape($function);?>('<?php echo $item->id;
?>', '<?php echo
$this->escape(addslashes($item->title)); ?>', '<?php
echo $this->escape($item->catid); ?>', null, '<?php
echo $this->escape(ContentHelperRoute::getArticleRoute($item->id,
$item->catid, $item->language)); ?>');">
						<?php echo $this->escape($item->title); ?></a>
				</th>
				<td class="center">
					<?php echo $this->escape($item->access_level); ?>
				</td>
				<td class="center">
					<?php echo $this->escape($item->category_title); ?>
				</td>
				<td class="center">
					<?php echo
JLayoutHelper::render('joomla.content.language', $item); ?>
				</td>
				<td class="center nowrap">
					<?php echo JHtml::_('date', $item->created,
JText::_('DATE_FORMAT_LC4')); ?>
				</td>
				<td class="center">
					<?php echo (int) $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
</form>
html/com_content/featured/default.php000064400000023114151163244070013760
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */
/* add accessibility, labels on input forms */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.multiselect');

$user      = JFactory::getUser();
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$canOrder  = $user->authorise('core.edit.state',
'com_content');
$saveOrder = $listOrder == 'fp.ordering';
$n         = count($this->items);
?>

<form action="<?php echo
JRoute::_('index.php?option=com_content&view=featured');
?>" method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_CONTENT_FILTER_SEARCH_DESC'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>

		<div class="filter-select">
			<label class="selectlabel"
for="filter_published"><?php echo
JText::_('JOPTION_SELECT_PUBLISHED'); ?></label>
			<select name="filter_published"
id="filter_published">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('jgrid.publishedOptions'), 'value',
'text', $this->state->get('filter.published'),
true); ?>
			</select>

			<label class="selectlabel"
for="filter_category_id"><?php echo
JText::_('JOPTION_SELECT_CATEGORY'); ?></label>
			<select name="filter_category_id"
id="filter_category_id">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_CATEGORY'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('category.options', 'com_content'),
'value', 'text',
$this->state->get('filter.category_id')); ?>
			</select>

			<label class="selectlabel"
for="filter_level"><?php echo
JText::_('JOPTION_SELECT_MAX_LEVELS'); ?></label>
			<select name="filter_level" id="filter_level">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_MAX_LEVELS'); ?></option>
				<?php echo JHtml::_('select.options', $this->f_levels,
'value', 'text',
$this->state->get('filter.level')); ?>
			</select>

			<label class="selectlabel"
for="filter_access"><?php echo
JText::_('JOPTION_SELECT_ACCESS'); ?></label>
			<select name="filter_access"
id="filter_access">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_ACCESS');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('access.assetgroups'), 'value',
'text', $this->state->get('filter.access'));
?>
			</select>

			<label class="selectlabel"
for="filter_language"><?php echo
JText::_('JOPTION_SELECT_LANGUAGE'); ?></label>
			<select name="filter_language"
id="filter_language">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_LANGUAGE'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('contentlanguage.existing', true, true),
'value', 'text',
$this->state->get('filter.language')); ?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder);
?>
				</th>
				<th class="nowrap state-col">
					<?php echo JHtml::_('grid.sort', 'JSTATUS',
'a.state', $listDirn, $listOrder); ?>
				</th>
				<th class="title category-col">
					<?php echo JHtml::_('grid.sort', 'JCATEGORY',
'a.catid', $listDirn, $listOrder); ?>
				</th>
				<th class="nowrap ordering-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ORDERING', 'fp.ordering', $listDirn,
$listOrder); ?>
					<?php if ($canOrder && $saveOrder) : ?>
						<?php echo JHtml::_('grid.order', $this->items,
'filesave.png', 'featured.saveorder'); ?>
					<?php endif; ?>
				</th>
				<th class="title access-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ACCESS', 'a.access', $listDirn,
$listOrder); ?>
				</th>
				<th class="title created-by-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_CREATED_BY', 'a.created_by', $listDirn,
$listOrder); ?>
				</th>
				<th class="title date-col">
					<?php echo JHtml::_('grid.sort',
'COM_CONTENT_HEADING_DATE_CREATED', 'a.created',
$listDirn, $listOrder); ?>
				</th>
				<th class="hits-col">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_HITS', 'a.hits', $listDirn, $listOrder); ?>
				</th>
				<th class="language-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_LANGUAGE', 'language', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php
		foreach ($this->items as $i => $item) :
			$item->max_ordering = 0; //??
			$ordering   = ($listOrder == 'fp.ordering');
			$assetId    = 'com_content.article.' . $item->id;
			$canCreate  = $user->authorise('core.create',    
'com_content.category.' . $item->catid);
			$canEdit    = $user->authorise('core.edit',      
'com_content.article.' . $item->id);
			$canCheckin = $user->authorise('core.manage',    
'com_checkin') || $item->checked_out ==
$user->get('id')|| $item->checked_out == 0;
			$canChange  = $user->authorise('core.edit.state',
'com_content.article.' . $item->id) && $canCheckin;
			?>
			<tr class="row<?php echo $i % 2; ?>">
				<th class="center">
					<?php echo JHtml::_('grid.id', $i, $item->id); ?>
				</th>
				<td>
					<?php if ($item->checked_out) : ?>
						<?php echo JHtml::_('jgrid.checkedout', $i,
$item->editor, $item->checked_out_time, 'featured.',
$canCheckin); ?>
					<?php endif; ?>
					<?php if ($canEdit) : ?>
					<a href="<?php echo
JRoute::_('index.php?option=com_content&task=article.edit&return=featured&id='.$item->id);?>">
						<?php echo $this->escape($item->title); ?></a>
					<?php else : ?>
						<?php echo $this->escape($item->title); ?>
					<?php endif; ?>
					<p class="smallsub">
						<?php echo JText::sprintf('JGLOBAL_LIST_ALIAS',
$this->escape($item->alias)); ?></p>
				</td>
				<td class="center">
					<?php echo JHtml::_('jgrid.published', $item->state,
$i, 'articles.', $canChange, 'cb',
$item->publish_up, $item->publish_down); ?>
				</td>
				<td class="center">
					<?php echo $this->escape($item->category_title); ?>
				</td>
				<td class="order">
					<?php if ($canChange) : ?>
						<?php if ($saveOrder) : ?>
							<?php if ($listDirn == 'asc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
true, 'featured.orderup', 'JLIB_HTML_MOVE_UP',
$ordering); ?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
true, 'featured.orderdown', 'JLIB_HTML_MOVE_DOWN',
$ordering); ?></span>
							<?php elseif ($listDirn == 'desc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
true, 'featured.orderdown', 'JLIB_HTML_MOVE_UP',
$ordering); ?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
true, 'featured.orderup', 'JLIB_HTML_MOVE_DOWN',
$ordering); ?></span>
							<?php endif; ?>
						<?php endif; ?>
						<?php $disabled = $saveOrder ?  '' :
'disabled="disabled"'; ?>
						<input type="text" name="order[]"
value="<?php echo $item->ordering; ?>" <?php echo
$disabled; ?> class="text-area-order" title="<?php
echo $item->title; ?> order" />
					<?php else : ?>
						<?php echo $item->ordering; ?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo $this->escape($item->access_level); ?>
				</td>
				<td class="center">
					<?php if ($item->created_by_alias) : ?>
						<?php echo $this->escape($item->author_name); ?>
						<p class="smallsub"> <?php echo
JText::sprintf('JGLOBAL_LIST_ALIAS',
$this->escape($item->created_by_alias)); ?></p>
					<?php else : ?>
						<?php echo $this->escape($item->author_name); ?>
					<?php endif; ?>
				</td>
				<td class="center nowrap">
					<?php echo JHtml::_('date', $item->created,
JText::_('DATE_FORMAT_LC4')); ?>
				</td>
				<td class="center">
					<?php echo (int) $item->hits; ?>
				</td>
				<td class="center">
					<?php echo
JLayoutHelper::render('joomla.content.language', $item); ?>
				</td>
				<td class="center">
					<?php echo (int) $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_contenthistory/history/modal.php000064400000021037151163244070014756
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
JSession::checkToken('get') or
die(JText::_('JINVALID_TOKEN'));

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');
JHtml::_('bootstrap.tooltip', '.hasTooltip',
array('placement' => 'bottom'));
JHtml::_('behavior.multiselect');
JHtml::_('jquery.framework');

$input = JFactory::getApplication()->input;
$field = $input->getCmd('field');
$function = 'jSelectContenthistory_' . $field;
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn =
$this->escape($this->state->get('list.direction'));
$message = JText::_('COM_CONTENTHISTORY_BUTTON_SELECT_ONE',
true);
$compareMessage =
JText::_('COM_CONTENTHISTORY_BUTTON_SELECT_TWO', true);
JText::script('JLIB_HTML_PLEASE_MAKE_A_SELECTION_FROM_THE_LIST');
$deleteMessage =
"alert(Joomla.JText._('JLIB_HTML_PLEASE_MAKE_A_SELECTION_FROM_THE_LIST'));";
$aliasArray = explode('.', $this->state->type_alias);
$option = (end($aliasArray) == 'category') ?
'com_categories&amp;extension=' . implode('.',
array_slice($aliasArray, 0, count($aliasArray) - 1)) : $aliasArray[0];
$filter = JFilterInput::getInstance();
$task = $filter->clean(end($aliasArray)) . '.loadhistory';
$loadUrl = JRoute::_('index.php?option=' .
$filter->clean($option) . '&amp;task=' . $task);
$deleteUrl =
JRoute::_('index.php?option=com_contenthistory&task=history.delete');
$hash = $this->state->get('sha1_hash');
$formUrl =
'index.php?option=com_contenthistory&view=history&layout=modal&tmpl=component&item_id='
. $this->state->get('item_id') . '&type_id='
	. $this->state->get('type_id') .
'&type_alias=' .
$this->state->get('type_alias') . '&' .
JSession::getFormToken() . '=1';

JFactory::getDocument()->addScriptDeclaration("
	(function ($){
		$(document).ready(function (){
			$('#toolbar-load').click(function() {
				var ids = $('input[id*=\'cb\']:checked');
				if (ids.length == 1) {
					// Add version item id to URL
					var url = $('#toolbar-load').attr('data-url') +
'&version_id=' + ids[0].value;
					$('#content-url').attr('data-url', url);
					if (window.parent) {
						window.parent.location = url;
					}
				} else {
					alert('" . $message . "');
				}
			});

		$('#toolbar-preview').click(function() {
				var windowSizeArray = ['width=800, height=600, resizable=yes,
scrollbars=yes'];
				var ids = $('input[id*=\'cb\']:checked');
				if (ids.length == 1) {
					// Add version item id to URL
					var url = $('#toolbar-preview').attr('data-url') +
'&version_id=' + ids[0].value;
					$('#content-url').attr('data-url', url);
					if (window.parent) {
						window.open(url, '', windowSizeArray);
						return false;
					}
				} else {
					alert('" . $message . "');
				}
			});

			$('#toolbar-compare').click(function() {
				var windowSizeArray = ['width=1000, height=600, resizable=yes,
scrollbars=yes'];
				var ids = $('input[id*=\'cb\']:checked');
				if (ids.length == 2) {
					// Add version item ids to URL
					var url = $('#toolbar-compare').attr('data-url') +
'&id1=' + ids[0].value + '&id2=' +
ids[1].value;
					$('#content-url').attr('data-url', url);
					if (window.parent) {
						window.open(url, '', windowSizeArray);
						return false;
					}
				} else {
					alert('" . $compareMessage . "');
				}
			});
		});
	})(jQuery);
	"
);

?>
<div class="modal-header">
	<h3><?php echo
JText::_('COM_CONTENTHISTORY_MODAL_TITLE'); ?></h3>
</div>

<div class="modal-body">

	<div class="modal-buttons">
		<button id="toolbar-load" type="submit"
class="btn pointer hasTooltip" title="<?php echo
JText::_('COM_CONTENTHISTORY_BUTTON_LOAD_DESC'); ?>"
data-url="<?php echo JRoute::_($loadUrl);?>">
			<span class="icon-upload"></span><span
class="hidden-phone"><?php echo
JText::_('COM_CONTENTHISTORY_BUTTON_LOAD');
?></span></button>
		<button id="toolbar-preview" type="button"
class="btn pointer hasTooltip" title="<?php echo
JText::_('COM_CONTENTHISTORY_BUTTON_PREVIEW_DESC'); ?>"
data-url="<?php echo
JRoute::_('index.php?option=com_contenthistory&view=preview&layout=preview&tmpl=component&'
. JSession::getFormToken() . '=1');?>">
			<span class="icon-search"></span><span
class="hidden-phone"><?php echo
JText::_('COM_CONTENTHISTORY_BUTTON_PREVIEW');
?></span></button>
		<button id="toolbar-compare" type="button"
class="btn pointer hasTooltip" title="<?php echo
JText::_('COM_CONTENTHISTORY_BUTTON_COMPARE_DESC'); ?>"
data-url="<?php echo
JRoute::_('index.php?option=com_contenthistory&view=compare&layout=compare&tmpl=component&'
. JSession::getFormToken() . '=1');?>">
			<span class="icon-zoom-in"></span><span
class="hidden-phone"><?php echo
JText::_('COM_CONTENTHISTORY_BUTTON_COMPARE');
?></span></button>
		<button onclick="if
(document.adminForm.boxchecked.value==0){<?php echo $deleteMessage;
?>}else{ Joomla.submitbutton('history.keep')}"
class="btn pointer hasTooltip" title="<?php echo
JText::_('COM_CONTENTHISTORY_BUTTON_KEEP_DESC'); ?>">
			<span class="icon-lock"></span><span
class="hidden-phone"><?php echo
JText::_('COM_CONTENTHISTORY_BUTTON_KEEP');
?></span></button>
		<button onclick="if
(document.adminForm.boxchecked.value==0){<?php echo $deleteMessage;
?>}else{ Joomla.submitbutton('history.delete')}"
class="btn pointer hasTooltip" title="<?php echo
JText::_('COM_CONTENTHISTORY_BUTTON_DELETE_DESC');
?>">
			<span class="icon-delete"></span><span
class="hidden-phone"><?php echo
JText::_('COM_CONTENTHISTORY_BUTTON_DELETE');
?></span></button>
	</div>

	<form action="<?php echo JRoute::_($formUrl);?>"
method="post" name="adminForm"
id="adminForm">
		<table class="adminlist modal">
			<thead>
				<tr>
					<th width="1%" class="title">
						<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
					</th>
					<th width="15%" class="title">
						<?php echo JText::_('JDATE'); ?>
					</th>
					<th width="15%" class="title">
						<?php echo JText::_('COM_CONTENTHISTORY_VERSION_NOTE');
?>
					</th>
					<th width="10%" class="title">
						<?php echo JText::_('COM_CONTENTHISTORY_KEEP_VERSION');
?>
					</th>
					<th width="15%" class="title">
						<?php echo JText::_('JAUTHOR'); ?>
					</th>
					<th width="10%" class="title">
						<?php echo
JText::_('COM_CONTENTHISTORY_CHARACTER_COUNT'); ?>
					</th>
				</tr>
			</thead>

			<tbody>
			<?php $i = 0; ?>
			<?php foreach ($this->items as $item) : ?>
				<tr class="row<?php echo $i % 2; ?>">
					<td class="center">
						<?php echo JHtml::_('grid.id', $i,
$item->version_id); ?>
					</td>
					<td class="nowrap">
						<a class="save-date"
onclick="window.open(this.href,'win2','width=800,height=600,resizable=yes,scrollbars=yes');
return false;"
							href="<?php echo
JRoute::_('index.php?option=com_contenthistory&view=preview&layout=preview&tmpl=component&'
. JSession::getFormToken() . '=1&version_id=' .
$item->version_id);?>">
							<?php echo JHtml::_('date', $item->save_date,
JText::_('DATE_FORMAT_LC6')); ?>
						</a>
						<?php if ($item->sha1_hash == $hash) :?>
							<span class="icon-featured"></span>&nbsp;
						<?php endif; ?>
					</td>
					<td class="center">
						<?php echo htmlspecialchars($item->version_note); ?>
					</td>
					<td class="center">
						<?php if ($item->keep_forever) : ?>
							<a class="btn btn-mini active" rel="tooltip"
href="javascript:void(0);"
								onclick="return listItemTask('cb<?php echo $i;
?>','history.keep')"
								data-original-title="<?php echo
JText::_('COM_CONTENTHISTORY_BUTTON_KEEP_TOGGLE_OFF');
?>">
								<?php echo JText::_('JYES'); ?>&nbsp;<span
class="icon-lock"></span>
							</a>
						<?php else : ?>
							<a class="btn btn-mini active" rel="tooltip"
href="javascript:void(0);"
								onclick="return listItemTask('cb<?php echo $i;
?>','history.keep')"
								data-original-title="<?php echo
JText::_('COM_CONTENTHISTORY_BUTTON_KEEP_TOGGLE_ON');
?>">
								<?php echo JText::_('JNO'); ?>
							</a>
						<?php endif; ?>
					</td>
					<td class="center">
						<?php echo htmlspecialchars($item->editor); ?>
					</td>
					<td class="center">
						<?php echo number_format((int) $item->character_count, 0,
JText::_('DECIMALS_SEPARATOR'),
JText::_('THOUSANDS_SEPARATOR')); ?>
					</td>
				</tr>
				<?php $i++; ?>
			<?php endforeach; ?>
			</tbody>
		</table>

		<?php echo $this->pagination->getListFooter(); ?>

		<input type="hidden" name="task"
value="" />
		<input type="hidden" name="boxchecked"
value="0" />
		<?php echo JHtml::_('form.token'); ?>

	</form>
</div>
html/com_cpanel/cpanel/default.php000064400000002443151163244070013215
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

// no direct access
defined('_JEXEC') or die;

use Joomla\Registry\Registry;

echo JHtml::_('sliders.start', 'panel-sliders',
array('useCookie' => '1'));
if (JFactory::getUser()->authorise('core.manage',
'com_postinstall')) :
	if ($this->postinstall_message_count):
		echo JHtml::_('sliders.panel',
JText::_('COM_CPANEL_MESSAGES_TITLE'),
'cpanel-panel-com-postinstall');
	?>
		<div class="modal-body">
			<p>
				<?php echo JText::_('COM_CPANEL_MESSAGES_BODY_NOCLOSE');
?>
			</p>
			<p>
				<?php echo
JText::_('COM_CPANEL_MESSAGES_BODYMORE_NOCLOSE'); ?>
			</p>
		</div>
		<div class="modal-footer">
			<button
onclick="window.location='index.php?option=com_postinstall&eid=700';
return false" class="btn btn-primary btn-large" >
				<?php echo JText::_('COM_CPANEL_MESSAGES_REVIEW'); ?>
			</button>
		</div>
	<?php endif; ?>
<?php endif;

foreach ($this->modules as $module)
{
	$output = JModuleHelper::renderModule($module);
	echo JHtml::_('sliders.panel', $module->title,
'cpanel-panel-' . $module->name);
	echo $output;
}

echo JHtml::_('sliders.end');
html/com_fields/field/edit.php000064400000012245151163244070012344
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_fields
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */
defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');

JHtml::_('behavior.formvalidator');
JHtml::_('behavior.keepalive');
JHtml::_('formbehavior.chosen', '#jform_catid', null,
array('disable_search_threshold' => 0 ));

$app = JFactory::getApplication();
$input = $app->input;

JFactory::getDocument()->addScriptDeclaration('
	Joomla.submitbutton = function(task)
	{
		if (task == "field.cancel" ||
document.formvalidator.isValid(document.getElementById("item-form")))
		{
			Joomla.submitform(task, document.getElementById("item-form"));
		}
	};
	jQuery(document).ready(function() {
		jQuery("#jform_title").data("dp-old-value",
jQuery("#jform_title").val());
		jQuery("#jform_title").change(function(data, handler) {
			if(jQuery("#jform_title").data("dp-old-value") ==
jQuery("#jform_label").val()) {
				jQuery("#jform_label").val(jQuery("#jform_title").val());
			}

			jQuery("#jform_title").data("dp-old-value",
jQuery("#jform_title").val());
		});
	});
');
?>
<div class="fields-edit">
<form action="<?php echo
JRoute::_('index.php?option=com_fields&context=' .
$input->getCmd('context', 'com_content') .
'&layout=edit&id=' . (int) $this->item->id);
?>" method="post" name="adminForm"
id="item-form" class="form-validate">
	<div class="col main-section">
		<fieldset class="adminform">
			<ul class="adminformlist">
				<li>
					<?php echo $this->form->getLabel('title'); ?>
					<?php echo $this->form->getInput('title'); ?>
				</li>
			</ul>
			<div class="clr"></div>
		</fieldset>
		<fieldset class="adminform">
			<ul class="adminformlist">
				<li><?php echo
$this->form->renderField('type'); ?></li>
				<li><?php echo
$this->form->renderField('name'); ?></li>
				<li><?php echo
$this->form->renderField('label'); ?></li>
				<li><?php echo
$this->form->renderField('description'); ?></li>
				<li><?php echo
$this->form->renderField('required'); ?></li>
				<li><?php echo
$this->form->renderField('default_value'); ?></li>

				<?php foreach
($this->form->getFieldsets('fieldparams') as $name =>
$fieldSet) : ?>
					<?php foreach ($this->form->getFieldset($name) as $field) :
?>
						<li><?php echo $field->renderField(); ?></li>
					<?php endforeach; ?>
				<?php endforeach; ?>
			</ul>
		</fieldset>

	</div>
	<div class="col options-section">
		<?php echo JHtml::_('sliders.start',
'groups-sliders-' . $this->item->id,
array('useCookie' => 1)); ?>
		<?php echo JHtml::_('sliders.panel',
JText::_('COM_FIELDS_VIEW_FIELD_FIELDSET_GENERAL'),
'general'); ?>
				<?php $this->set('fields',
						array(
							array(
								'published',
								'state',
								'enabled',
							),
							'group_id',
							'assigned_cat_ids',
							'access',
							'language',
							'note',
						)
				); ?>
				<?php echo JLayoutHelper::render('joomla.edit.global',
$this); ?>
				<?php $this->set('fields', null); ?>

		<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_OPTIONS'), '-options');
?>
		<?php $this->set('ignore_fieldsets',
array('fieldparams')); ?>
		<?php echo JLayoutHelper::render('joomla.edit.params',
$this); ?>

		<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_PUBLISHING'),
'publishing-details'); ?>
			<fieldset class="panelform">
			<legend class="element-invisible"><?php echo
JText::_('JGLOBAL_FIELDSET_PUBLISHING'); ?></legend>
				<ul class="adminformlist">

					<li><?php echo
$this->form->getLabel('created_user_id'); ?>
					<?php echo
$this->form->getInput('created_user_id'); ?></li>

					<li><?php echo
$this->form->getLabel('created_time'); ?>
					<?php echo $this->form->getInput('created_time');
?></li>

					<?php if ($this->item->modified_by) : ?>
						<li><?php echo
$this->form->getLabel('modified_by'); ?>
						<?php echo $this->form->getInput('modified_by');
?></li>

						<li><?php echo
$this->form->getLabel('modified_time'); ?>
						<?php echo $this->form->getInput('modified_time');
?></li>
					<?php endif; ?>

					<li><?php echo $this->form->getLabel('id');
?>
					<?php echo $this->form->getInput('id');
?></li>

				</ul>
			</fieldset>
		<?php echo JHtml::_('sliders.end'); ?>
		<div class="clr"></div>
	</div>
	<div class="clr"></div>
		<?php if ($this->canDo->get('core.admin')) : ?>
			<div class="col rules-section">
				<?php echo JHtml::_('sliders.start',
'permissions-sliders-' . $this->item->id,
array('useCookie' => 1)); ?>

				<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_ACTION_PERMISSIONS_LABEL'),
'access-rules'); ?>
				<fieldset class="panelform">
					<legend class="element-invisible"><?php echo
JText::_('JGLOBAL_ACTION_PERMISSIONS_LABEL');
?></legend>
						<?php echo $this->form->getLabel('rules'); ?>
						<?php echo $this->form->getInput('rules'); ?>
				</fieldset>

				<?php echo JHtml::_('sliders.end'); ?>
			</div>
		<?php endif; ?>

		<?php echo $this->form->getInput('context'); ?>
		<input type="hidden" name="task"
value="" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
<div class="clr"></div>
</div>
html/com_fields/fields/default.php000064400000015717151163244070013235
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_fields
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */
defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');

JHtml::_('bootstrap.tooltip');
JHtml::_('behavior.multiselect');
JHtml::_('formbehavior.chosen', 'select');

$app       = JFactory::getApplication();
$user      = JFactory::getUser();
$userId    = $user->get('id');
$context   =
$this->escape($this->state->get('filter.context'));
$component = $this->state->get('filter.component');
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$ordering  = ($listOrder == 'a.ordering');
$saveOrder = ($listOrder == 'a.ordering' &&
strtolower($listDirn) == 'asc');

// The category object of the component
$category = JCategories::getInstance(str_replace('com_',
'', $component));

if ($saveOrder)
{
	$saveOrderingUrl =
'index.php?option=com_fields&task=fields.saveOrderAjax&tmpl=component';
	JHtml::_('sortablelist.sortable', 'fieldList',
'adminForm', strtolower($listDirn), $saveOrderingUrl, false,
true);
}
?>

<form action="<?php echo
JRoute::_('index.php?option=com_fields&view=fields');
?>" method="post" name="adminForm"
id="adminForm">
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
		<div id="filter-bar" class="js-stools-container-bar
pull-left">
			<div class="btn-group pull-left">
				<?php echo
$this->filterForm->getField('context')->input; ?>
			</div>&nbsp;
		</div>
		<?php echo
JLayoutHelper::render('joomla.searchtools.default',
array('view' => $this)); ?>
		<?php if (empty($this->items)) : ?>
			<div class="alert alert-no-items">
				<?php echo JText::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
			</div>
		<?php else : ?>
			<table class="adminlist" id="fieldList">
				<thead>
					<tr>
						<th class="checkmark-col">
							<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
						</th>
						<th width="1%" class="nowrap center">
							<?php echo JHtml::_('searchtools.sort',
'JSTATUS', 'a.state', $listDirn, $listOrder); ?>
						</th>
						<th>
							<?php echo JHtml::_('searchtools.sort',
'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder);
?>
						</th>
						<th>
							<?php echo JHtml::_('searchtools.sort',
'COM_FIELDS_FIELD_TYPE_LABEL', 'a.type', $listDirn,
$listOrder); ?>
						</th>
						<th>
							<?php echo JHtml::_('searchtools.sort',
'COM_FIELDS_FIELD_GROUP_LABEL', 'g.title', $listDirn,
$listOrder); ?>
						</th>
						<th width="10%" class="nowrap
hidden-phone">
							<?php echo JHtml::_('searchtools.sort',
'JGRID_HEADING_ACCESS', 'a.access', $listDirn,
$listOrder); ?>
						</th>
						<th width="5%" class="nowrap hidden-phone">
							<?php echo JHtml::_('searchtools.sort',
'JGRID_HEADING_LANGUAGE', 'a.language', $listDirn,
$listOrder); ?>
						</th>
						<th width="1%" class="nowrap hidden-phone">
							<?php echo JHtml::_('searchtools.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
						</th>
					</tr>
				</thead>
				<tfoot>
					<tr>
						<td colspan="9">
							<?php echo $this->pagination->getListFooter(); ?>
						</td>
					</tr>
				</tfoot>
				<tbody>
					<?php foreach ($this->items as $i => $item) : ?>
						<?php $ordering   = ($listOrder == 'a.ordering'); ?>
						<?php $canEdit    = $user->authorise('core.edit',
$component . '.field.' . $item->id); ?>
						<?php $canCheckin = $user->authorise('core.admin',
'com_checkin') || $item->checked_out == $userId ||
$item->checked_out == 0; ?>
						<?php $canEditOwn = $user->authorise('core.edit.own',
$component . '.field.' . $item->id) &&
$item->created_user_id == $userId; ?>
						<?php $canChange  =
$user->authorise('core.edit.state', $component .
'.field.' . $item->id) && $canCheckin; ?>
						<tr class="row<?php echo $i % 2; ?>"
item-id="<?php echo $item->id ?>">
							<td class="center">
								<?php echo JHtml::_('grid.id', $i, $item->id);
?>
							</td>
							<td class="center">
								<?php echo JHtml::_('jgrid.published',
$item->state, $i, 'fields.', $canChange); ?>
							</td>
							<td>
								<div class="pull-left break-word">
									<?php if ($item->checked_out) : ?>
										<?php echo JHtml::_('jgrid.checkedout', $i,
$item->editor, $item->checked_out_time, 'fields.',
$canCheckin); ?>
									<?php endif; ?>
									<?php if ($canEdit || $canEditOwn) : ?>
										<a href="<?php echo
JRoute::_('index.php?option=com_fields&task=field.edit&id='
. $item->id . '&context=' . $context); ?>">
											<?php echo $this->escape($item->title); ?></a>
									<?php else : ?>
										<?php echo $this->escape($item->title); ?>
									<?php endif; ?>
									<span class="small break-word">
										<?php if (empty($item->note)) : ?>
											<?php echo JText::sprintf('JGLOBAL_LIST_NAME',
$this->escape($item->name)); ?>
										<?php else : ?>
											<?php echo JText::sprintf('JGLOBAL_LIST_NAME_NOTE',
$this->escape($item->name), $this->escape($item->note)); ?>
										<?php endif; ?>
									</span>
									<div class="small">
										<?php if ($category) : ?>
											<?php echo JText::_('JCATEGORY') . ': ';
?>
											<?php $categories =
FieldsHelper::getAssignedCategoriesTitles($item->id); ?>
											<?php if ($categories) : ?>
												<?php echo implode(', ', $categories); ?>
											<?php else : ?>
												<?php echo JText::_('JALL'); ?>
											<?php endif; ?>
										<?php endif; ?>
									</div>
								</div>
							</td>
							<td class="small">
								<?php echo $this->escape($item->type); ?>
							</td>
							<td>
								<?php echo $this->escape($item->group_title); ?>
							</td>
							<td class="small hidden-phone">
								<?php echo $this->escape($item->access_level); ?>
							</td>
							<td class="small nowrap hidden-phone">
								<?php echo
JLayoutHelper::render('joomla.content.language', $item); ?>
							</td>
							<td class="center hidden-phone">
								<span><?php echo (int) $item->id; ?></span>
							</td>
						</tr>
					<?php endforeach; ?>
				</tbody>
			</table>
			<?php //Load the batch processing form. ?>
			<?php if ($user->authorise('core.create', $component)
				&& $user->authorise('core.edit', $component)
				&& $user->authorise('core.edit.state',
$component)) : ?>
				<?php echo JHtml::_(
						'bootstrap.renderModal',
						'collapseModal',
						array(
							'title' =>
JText::_('COM_FIELDS_VIEW_FIELDS_BATCH_OPTIONS'),
							'footer' =>
$this->loadTemplate('batch_footer')
						),
						$this->loadTemplate('batch_body')
					); ?>
			<?php endif; ?>
		<?php endif; ?>
		<input type="hidden" name="task"
value="" />
		<input type="hidden" name="boxchecked"
value="0" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_fields/group/edit.php000064400000010104151163244070012405
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_fields
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */
defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');

JHtml::_('behavior.formvalidator');
JHtml::_('behavior.keepalive');
JHtml::_('behavior.tabstate');

$app = JFactory::getApplication();
$input = $app->input;

JFactory::getDocument()->addScriptDeclaration('
	Joomla.submitbutton = function(task)
	{
		if (task == "group.cancel" ||
document.formvalidator.isValid(document.getElementById("item-form")))
		{
			Joomla.submitform(task, document.getElementById("item-form"));
		}
	};
');
?>
<div class="groups-edit">
<form action="<?php echo
JRoute::_('index.php?option=com_fields&layout=edit&id=' .
(int) $this->item->id); ?>" method="post"
name="adminForm" id="item-form"
class="form-validate">
	<div class="col main-section">
		<fieldset class="adminform">
		<legend><?php echo
JText::_('COM_FIELDS_VIEW_FIELD_FIELDSET_GENERAL');
?></legend>
		<ul class="adminformlist">
			<li>
				<?php echo $this->form->getLabel('title'); ?>
				<?php echo $this->form->getInput('title'); ?>
			</li>
			<li>
				<?php echo $this->form->getLabel('description');
?>
				<?php echo $this->form->getInput('description');
?>
			</li>
			<li>
				<?php echo $this->form->getLabel('published'); ?>
				<?php echo $this->form->getInput('published'); ?>
			</li>
			<li>
				<?php echo $this->form->getLabel('access'); ?>
				<?php echo $this->form->getInput('access'); ?>
			</li>
			<li>
				<?php echo $this->form->getLabel('language'); ?>
				<?php echo $this->form->getInput('language'); ?>
			</li>
			<li>
				<?php echo $this->form->getLabel('note'); ?>
				<?php echo $this->form->getInput('note'); ?>
			</li>
		</ul>
		<div class="clr"></div>
		</fieldset>
	</div>

	<div class="col options-section">
		<?php echo JHtml::_('sliders.start',
'groups-sliders-' . $this->item->id,
array('useCookie' => 1)); ?>
		<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_PUBLISHING'),
'publishing-details'); ?>
		<fieldset class="panelform">
			<legend class="element-invisible"><?php echo
JText::_('JGLOBAL_FIELDSET_PUBLISHING'); ?></legend>
			<ul class="adminformlist">
				<li>
					<?php echo $this->form->getLabel('created_by');
?>
					<?php echo $this->form->getInput('created_by');
?>
				</li>
				<?php if ((int) $this->item->created) : ?>
					<li>
						<?php echo $this->form->getLabel('created'); ?>
						<?php echo $this->form->getInput('created'); ?>
					</li>
				<?php endif; ?>
				<?php if ($this->item->modified_by) : ?>
					<li>
						<?php echo $this->form->getLabel('modified_by');
?>
						<?php echo $this->form->getInput('modified_by');
?>
					</li>
					<li>
						<?php echo $this->form->getLabel('modified');
?>
						<?php echo $this->form->getInput('modified');
?>
					</li>
					<li>
						<?php echo $this->form->getLabel('id'); ?>
						<?php echo $this->form->getInput('id'); ?>
					</li>
				<?php endif; ?>
			</ul>
		</fieldset>
		<?php echo JHtml::_('sliders.end'); ?>
		<div class="clr"></div>

		<?php $this->set('ignore_fieldsets',
array('fieldparams')); ?>
	</div>
	<div class="clr"></div>

	<?php if ($this->canDo->get('core.admin')) : ?>
		<div class="col rules-section">
			<?php echo JHtml::_('sliders.start',
'permissions-sliders-' . $this->item->id,
array('useCookie' => 1)); ?>

			<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_ACTION_PERMISSIONS_LABEL'),
'access-rules'); ?>
			<fieldset class="panelform">
				<legend class="element-invisible"><?php echo
JText::_('JGLOBAL_ACTION_PERMISSIONS_LABEL');
?></legend>
					<?php echo $this->form->getLabel('rules'); ?>
					<?php echo $this->form->getInput('rules'); ?>
			</fieldset>

				<?php echo JHtml::_('sliders.end'); ?>
		</div>
	<?php endif; ?>

		<?php echo $this->form->getInput('context'); ?>
		<input type="hidden" name="task"
value="" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
<div class="clr"></div>
</div>html/com_fields/groups/default.php000064400000013364151163244070013302
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_fields
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */
defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');

JHtml::_('bootstrap.tooltip');
JHtml::_('behavior.multiselect');
JHtml::_('formbehavior.chosen', 'select');

$app       = JFactory::getApplication();
$user      = JFactory::getUser();
$userId    = $user->get('id');

$component = '';
$parts     =
FieldsHelper::extract($this->state->get('filter.context'));

if ($parts)
{
	$component = $this->escape($parts[0]);
}

$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$ordering  = ($listOrder == 'a.ordering');
$saveOrder = ($listOrder == 'a.ordering' &&
strtolower($listDirn) == 'asc');

if ($saveOrder)
{
	$saveOrderingUrl =
'index.php?option=com_fields&task=groups.saveOrderAjax&tmpl=component';
	JHtml::_('sortablelist.sortable', 'groupList',
'adminForm', strtolower($listDirn), $saveOrderingUrl, false,
true);
}
?>

<form action="<?php echo
JRoute::_('index.php?option=com_fields&view=groups');
?>" method="post" name="adminForm"
id="adminForm">
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
		<div id="filter-bar" class="js-stools-container-bar
pull-left">
			<div class="btn-group pull-left">
				<?php echo
$this->filterForm->getField('context')->input; ?>
			</div>&nbsp;
		</div>
		<?php echo
JLayoutHelper::render('joomla.searchtools.default',
array('view' => $this)); ?>
		<?php if (empty($this->items)) : ?>
			<div class="alert alert-no-items">
				<?php echo JText::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
			</div>
		<?php else : ?>
			<table class="adminlist" id="groupList">
				<thead>
					<tr>
						<th width="1%" class="center">
							<?php echo JHtml::_('grid.checkall'); ?>
						</th>
						<th width="1%" class="nowrap center">
							<?php echo JHtml::_('searchtools.sort',
'JSTATUS', 'a.state', $listDirn, $listOrder); ?>
						</th>
						<th>
							<?php echo JHtml::_('searchtools.sort',
'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder);
?>
						</th>
						<th width="10%" class="nowrap
hidden-phone">
							<?php echo JHtml::_('searchtools.sort',
'JGRID_HEADING_ACCESS', 'a.access', $listDirn,
$listOrder); ?>
						</th>
						<th width="5%" class="nowrap hidden-phone">
							<?php echo JHtml::_('searchtools.sort',
'JGRID_HEADING_LANGUAGE', 'a.language', $listDirn,
$listOrder); ?>
						</th>
						<th width="1%" class="nowrap hidden-phone">
							<?php echo JHtml::_('searchtools.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
						</th>
					</tr>
				</thead>
				<tfoot>
					<tr>
						<td colspan="9">
							<?php echo $this->pagination->getListFooter(); ?>
						</td>
					</tr>
				</tfoot>
				<tbody>
					<?php foreach ($this->items as $i => $item) : ?>
						<?php $ordering   = ($listOrder == 'a.ordering'); ?>
						<?php $canEdit    = $user->authorise('core.edit',
$component . '.fieldgroup.' . $item->id); ?>
						<?php $canCheckin = $user->authorise('core.admin',
'com_checkin') || $item->checked_out == $userId ||
$item->checked_out == 0; ?>
						<?php $canEditOwn = $user->authorise('core.edit.own',
$component . '.fieldgroup.' . $item->id) &&
$item->created_by == $userId; ?>
						<?php $canChange  =
$user->authorise('core.edit.state', $component .
'.fieldgroup.' . $item->id) && $canCheckin; ?>
						<tr class="row<?php echo $i % 2; ?>"
item-id="<?php echo $item->id ?>">
							<td class="center">
								<?php echo JHtml::_('grid.id', $i, $item->id);
?>
							</td>
							<td class="center">
								<?php echo JHtml::_('jgrid.published',
$item->state, $i, 'groups.', $canChange); ?>
							</td>
							<td>
								<div class="pull-left break-word">
									<?php if ($item->checked_out) : ?>
										<?php echo JHtml::_('jgrid.checkedout', $i,
$item->editor, $item->checked_out_time, 'groups.',
$canCheckin); ?>
									<?php endif; ?>
									<?php if ($canEdit || $canEditOwn) : ?>
										<a href="<?php echo
JRoute::_('index.php?option=com_fields&task=group.edit&id='
. $item->id); ?>">
											<?php echo $this->escape($item->title); ?></a>
									<?php else : ?>
										<?php echo $this->escape($item->title); ?>
									<?php endif; ?>
									<span class="small break-word">
										<?php if ($item->note) : ?>
											<?php echo JText::sprintf('JGLOBAL_LIST_NOTE',
$this->escape($item->note)); ?>
										<?php endif; ?>
									</span>
								</div>
							</td>
							<td class="small hidden-phone">
								<?php echo $this->escape($item->access_level); ?>
							</td>
							<td class="small nowrap hidden-phone">
								<?php echo
JLayoutHelper::render('joomla.content.language', $item); ?>
							</td>
							<td class="center hidden-phone">
								<span><?php echo (int) $item->id; ?></span>
							</td>
						</tr>
					<?php endforeach; ?>
				</tbody>
			</table>
			<?php //Load the batch processing form. ?>
			<?php if ($user->authorise('core.create', $component)
				&& $user->authorise('core.edit', $component)
				&& $user->authorise('core.edit.state',
$component)) : ?>
				<?php echo JHtml::_(
						'bootstrap.renderModal',
						'collapseModal',
						array(
							'title' =>
JText::_('COM_FIELDS_VIEW_GROUPS_BATCH_OPTIONS'),
							'footer' =>
$this->loadTemplate('batch_footer')
						),
						$this->loadTemplate('batch_body')
					); ?>
			<?php endif; ?>
		<?php endif; ?>
		<input type="hidden" name="task"
value="" />
		<input type="hidden" name="boxchecked"
value="0" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_finder/filters/default.php000064400000014127151163244070013432
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$user      = JFactory::getUser();
$userId    = $user->get('id');
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));

JText::script('COM_FINDER_INDEX_CONFIRM_DELETE_PROMPT');

JFactory::getDocument()->addScriptDeclaration("
Joomla.submitbutton = function(pressbutton)
{
	if (pressbutton == 'filters.delete')
	{
		if
(confirm(Joomla.JText._('COM_FINDER_INDEX_CONFIRM_DELETE_PROMPT')))
		{
			Joomla.submitform(pressbutton);
		}
		else
		{
			return false;
		}
	}
	Joomla.submitform(pressbutton);
}
");
?>

<form action="<?php echo
JRoute::_('index.php?option=com_finder&view=filters');?>"
method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::sprintf('COM_FINDER_SEARCH_LABEL',
JText::_('COM_FINDER_FILTERS')); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::sprintf('COM_FINDER_SEARCH_LABEL',
JText::_('COM_FINDER_FILTERS')); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_FINDER_FILTER_SEARCH_DESCRIPTION'); ?>"
/>
			<button type="submit" class="btn"><?php
echo JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>

		<div class="filter-select">
			<label class="selectlabel"
for="filter_state"><?php echo
JText::_('COM_FINDER_INDEX_FILTER_BY_STATE'); ?></label>
			<select name="filter_state" id="filter_state">
				<option value=""><?php echo
JText::_('COM_FINDER_INDEX_FILTER_BY_STATE');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('finder.statelist'), 'value',
'text', $this->state->get('filter.state'));?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder);
?>
				</th>
				<th class="nowrap state-col">
					<?php echo JHtml::_('grid.sort', 'JSTATUS',
'a.state', $listDirn, $listOrder); ?>
				</th>
				<th class="title created-by-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_CREATED_BY', 'a.created_by_alias',
$listDirn, $listOrder); ?>
				</th>
				<th class="title date-col">
					<?php echo JHtml::_('grid.sort',
'COM_FINDER_FILTER_TIMESTAMP', 'a.created', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap width-5">
					<?php echo JHtml::_('grid.sort',
'COM_FINDER_FILTER_MAP_COUNT', 'a.map_count',
$listDirn, $listOrder); ?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.filter_id', $listDirn,
$listOrder); ?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php if (count($this->items) == 0) : ?>
			<tr class="row0">
				<td class="center" colspan="7">
					<?php
					if ($this->total == 0):
						echo JText::_('COM_FINDER_NO_FILTERS');
						?>
						<a href="<?php echo
JRoute::_('index.php?option=com_finder&task=filter.add');
?>" title="<?php echo
JText::_('COM_FINDER_CREATE_FILTER'); ?>">
							<?php echo JText::_('COM_FINDER_CREATE_FILTER'); ?>
						</a>
						<?php
					else:
						echo JText::_('COM_FINDER_NO_RESULTS');
					endif;
					?>
				</td>
			</tr>
		<?php endif; ?>

		<?php foreach ($this->items as $i => $item) :
			$canCreate  = $user->authorise('core.create',    
'com_finder');
			$canEdit    = $user->authorise('core.edit',      
'com_finder');
			$canCheckin = $user->authorise('core.manage',    
'com_checkin') || $filter->checked_out ==
$user->get('id') || $filter->checked_out == 0;
			$canChange  = $user->authorise('core.edit.state',
'com_finder') && $canCheckin;
			?>
			<tr class="row<?php echo $i % 2; ?>">
				<th class="center">
					<?php echo JHtml::_('grid.id', $i, $item->filter_id);
?>
				</th>
				<td>
					<?php if ($item->checked_out)
					{
						echo JHtml::_('jgrid.checkedout', $i, $item->editor,
$item->checked_out_time, 'filters.', $canCheckin);
					} ?>
					<?php if ($canEdit) { ?>
						<a href="<?php echo
JRoute::_('index.php?option=com_finder&task=filter.edit&filter_id='
. (int) $item->filter_id); ?>">
							<?php echo $this->escape($item->title); ?></a>
					<?php } else {
							echo $this->escape($item->title);
					} ?>
				</td>
				<td class="center nowrap">
					<?php echo JHtml::_('jgrid.published', $item->state,
$i, 'filters.', $canChange); ?>
				</td>
				<td class="center nowrap">
					<?php echo $item->created_by_alias ?: $item->user_name; ?>
				</td>
				<td class="center nowrap">
					<?php echo JHtml::_('date', $item->created,
JText::_('DATE_FORMAT_LC4')); ?>
				</td>
				<td class="center nowrap">
					<?php echo $item->map_count; ?>
				</td>
				<td class="center">
					<?php echo (int) $item->filter_id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_finder/index/default.php000064400000014601151163244070013066
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('bootstrap.tooltip');

$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$lang      = JFactory::getLanguage();

JText::script('COM_FINDER_INDEX_CONFIRM_PURGE_PROMPT');
JText::script('COM_FINDER_INDEX_CONFIRM_DELETE_PROMPT');

JFactory::getDocument()->addScriptDeclaration("
	Joomla.submitbutton = function(pressbutton)
	{
		if (pressbutton == 'index.purge')
		{
			if
(confirm(Joomla.JText._('COM_FINDER_INDEX_CONFIRM_PURGE_PROMPT')))
			{
				Joomla.submitform(pressbutton);
			}
			else
			{
				return false;
			}
		}
		if (pressbutton == 'index.delete')
		{
			if
(confirm(Joomla.JText._('COM_FINDER_INDEX_CONFIRM_DELETE_PROMPT')))
			{
				Joomla.submitform(pressbutton);
			}
			else
			{
				return false;
			}
		}

		Joomla.submitform(pressbutton);
	}
");
?>
<form action="<?php echo
JRoute::_('index.php?option=com_finder&view=index');?>"
method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::sprintf('COM_FINDER_SEARCH_LABEL',
JText::_('COM_FINDER_ITEMS')); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::sprintf('COM_FINDER_SEARCH_LABEL',
JText::_('COM_FINDER_ITEMS')); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_FINDER_FILTER_SEARCH_DESCRIPTION'); ?>"
/>
			<button type="submit" class="btn"><?php
echo JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>

		<div class="filter-select">
			<label class="selectlabel"
for="filter_type"><?php echo
JText::_('COM_FINDER_INDEX_TYPE_FILTER'); ?></label>
			<select name="filter_type" id="filter_type">
				<option value=""><?php echo
JText::_('COM_FINDER_INDEX_TYPE_FILTER'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('finder.typeslist'), 'value',
'text', $this->state->get('filter.type'));?>
			</select>

			<label class="selectlabel"
for="filter_state"><?php echo
JText::_('COM_FINDER_INDEX_FILTER_BY_STATE'); ?></label>
			<select name="filter_state" id="filter_state">
				<option value=""><?php echo
JText::_('COM_FINDER_INDEX_FILTER_BY_STATE');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('finder.statelist'), 'value',
'text', $this->state->get('filter.state'));?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_TITLE', 'l.title', $listDirn, $listOrder);
?>
				</th>
				<th class="nowrap state-col">
					<?php echo JHtml::_('grid.sort', 'JSTATUS',
'l.published', $listDirn, $listOrder); ?>
				</th>
				<th class="nowrap width-5">
					<?php echo JHtml::_('grid.sort',
'COM_FINDER_INDEX_HEADING_INDEX_TYPE', 'l.type_id',
$listDirn, $listOrder); ?>
				</th>
				<th class="nowrap width-20">
					<?php echo JHtml::_('grid.sort',
'COM_FINDER_INDEX_HEADING_LINK_URL', 'l.url',
$listDirn, $listOrder); ?>
				</th>
				<th class="title date-col">
					<?php echo JHtml::_('grid.sort',
'COM_FINDER_INDEX_HEADING_INDEX_DATE', 'l.indexdate',
$listDirn, $listOrder); ?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php if (count($this->items) == 0) : ?>
			<tr class="row0">
				<td align="center" colspan="7">
					<?php
					if ($this->total == 0)
					{
						echo JText::_('COM_FINDER_INDEX_NO_DATA') . '  '
. JText::_('COM_FINDER_INDEX_TIP');
					} else {
						echo JText::_('COM_FINDER_INDEX_NO_CONTENT');
					}
					?>
				</td>
			</tr>
		<?php endif; ?>
		<?php $canChange =
JFactory::getUser()->authorise('core.manage',
'com_finder'); ?>
		<?php foreach ($this->items as $i => $item) : ?>
			<tr class="row<?php echo $i % 2; ?>">
				<th class="center">
					<?php echo JHtml::_('grid.id', $i, $item->link_id);
?>
				</th>
				<td class="pull-left break-word">
					<?php if ((int) $item->publish_start_date or (int)
$item->publish_end_date or (int) $item->start_date or (int)
$item->end_date) : ?>
					<img src="<?php echo
JUri::root();?>/media/system/images/calendar.png"
style="border:1px;float:right" class="hasTooltip"
title="<?php echo JHtml::_('tooltipText',
JText::sprintf('COM_FINDER_INDEX_DATE_INFO',
$item->publish_start_date, $item->publish_end_date,
$item->start_date, $item->end_date), '', 0); ?>"
/>
					<?php endif; ?>
					<?php echo $this->escape($item->title); ?>
				</td>
				<td class="center nowrap">
					<?php echo JHtml::_('jgrid.published',
$item->published, $i, 'index.', $canChange, 'cb');
?>
				</td>
				<td class="center nowrap">
					<?php
					$key = FinderHelperLanguage::branchSingular($item->t_title);
					echo $lang->hasKey($key) ? JText::_($key) : $item->t_title;
					?>
				</td>
				<td class="nowrap">
					<?php
					if (strlen($item->url) > 80)
					{
						echo substr($item->url, 0, 70) . '...';
					} else {
						echo $item->url;
					}
					?>
				</td>
				<td class="center nowrap">
					<?php echo JHtml::_('date', $item->indexdate,
JText::_('DATE_FORMAT_LC4')); ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task"
value="display" />
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_finder/maps/default.php000064400000012143151163244070012716
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.multiselect');

$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$lang      = JFactory::getLanguage();

JText::script('COM_FINDER_MAPS_CONFIRM_DELETE_PROMPT');

JFactory::getDocument()->addScriptDeclaration("
	Joomla.submitbutton = function(pressbutton)
	{
		if (pressbutton == 'map.delete')
		{
			if
(confirm(Joomla.JText._('COM_FINDER_MAPS_CONFIRM_DELETE_PROMPT')))
			{
				Joomla.submitform(pressbutton);
			}
			else
			{
				return false;
			}
		}
		Joomla.submitform(pressbutton);
	}
");
?>

<form action="<?php echo
JRoute::_('index.php?option=com_finder&view=maps');?>"
method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::sprintf('COM_FINDER_SEARCH_LABEL',
JText::_('COM_FINDER_MAPS')); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::sprintf('COM_FINDER_SEARCH_LABEL',
JText::_('COM_FINDER_MAPS')); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_FINDER_FILTER_SEARCH_DESCRIPTION'); ?>"
/>
			<button type="submit" class="btn"><?php
echo JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>

		<div class="filter-select">
			<label class="selectlabel"
for="filter_branch"><?php echo
JText::sprintf('COM_FINDER_FILTER_BY',
JText::_('COM_FINDER_MAPS')); ?></label>
			<select name="filter_branch"
id="filter_branch">
				<?php echo JHtml::_('select.options',
JHtml::_('finder.mapslist'), 'value', 'text',
$this->state->get('filter.branch'));?>
			</select>

			<label class="selectlabel"
for="filter_state"><?php echo
JText::_('COM_FINDER_INDEX_FILTER_BY_STATE'); ?></label>
			<select name="filter_state" id="filter_state">
				<option value=""><?php echo
JText::_('COM_FINDER_INDEX_FILTER_BY_STATE');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('finder.statelist'), 'value',
'text', $this->state->get('filter.state')); ?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?>
			</button>
		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder);
?>
				</th>
				<th class="nowrap state-col">
					<?php echo JHtml::_('grid.sort', 'JSTATUS',
'a.state', $listDirn, $listOrder); ?>
				</th>
				<th width="1%" class="nowrap center">
					<?php echo JText::_('COM_FINDER_HEADING_NODES'); ?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php if (count($this->items) == 0) : ?>
			<tr class="row0">
				<td class="center" colspan="5">
					<?php echo JText::_('COM_FINDER_MAPS_NO_CONTENT'); ?>
				</td>
			</tr>
		<?php endif; ?>
		<?php $canChange =
JFactory::getUser()->authorise('core.manage',
'com_finder'); ?>
		<?php foreach ($this->items as $i => $item) :?>
			<tr class="row<?php echo $i % 2; ?>">
				<th class="center">
					<?php echo JHtml::_('grid.id', $i, $item->id); ?>
				</th>
				<td>
					<?php if ((int) $item->num_children === 0) : ?>
						<span class="gi">&mdash;</span>
					<?php endif; ?>
					<?php
					$key = FinderHelperLanguage::branchSingular($item->title);
					$title = $lang->hasKey($key) ? JText::_($key) : $item->title;
					echo $this->escape(($title == '*') ?
JText::_('JALL_LANGUAGE') : $title);
					?>
				</td>
				<td class="center">
					<?php echo JHtml::_('jgrid.published', $item->state,
$i, 'maps.', $canChange, 'cb'); ?>
				</td>
				<td class="center btns">
				<?php if ((int) $item->num_children === 0) : ?>
					<span class="badge <?php if ($item->num_nodes > 0)
echo 'badge-info'; ?>"><?php echo
$item->num_nodes; ?></span>
				<?php else : ?>
					&nbsp;
				<?php endif; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_installer/database/default.php000064400000006107151163244070014253
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_installer
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

?>
<div id="installer-database">
<form action="<?php echo
JRoute::_('index.php?option=com_installer&view=warnings');?>"
method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
<?php if ($this->errorCount === 0) : ?>
	<?php echo JHtml::_('sliders.start',
'database-sliders', array('useCookie' => 1)); ?>

<?php else : ?>
	<?php echo JHtml::_('sliders.start',
'database-sliders', array('useCookie' => 1)); ?>

	<?php $panelName =
JText::plural('COM_INSTALLER_MSG_N_DATABASE_ERROR_PANEL',
$this->errorCount); ?>
	<?php echo JHtml::_('sliders.panel', $panelName,
'error-panel'); ?>
	<fieldset class="panelform">
		<ul>
			<?php if (!$this->filterParams) : ?>
				<li><?php echo
JText::_('COM_INSTALLER_MSG_DATABASE_FILTER_ERROR'); ?>
			<?php endif; ?>

			<?php if ($this->schemaVersion !=
$this->changeSet->getSchema()) : ?>
				<li><?php echo
JText::sprintf('COM_INSTALLER_MSG_DATABASE_SCHEMA_ERROR',
$this->schemaVersion, $this->changeSet->getSchema());
?></li>
			<?php endif; ?>

			<?php if (version_compare($this->updateVersion, JVERSION) != 0) :
?>
				<li><?php echo
JText::sprintf('COM_INSTALLER_MSG_DATABASE_UPDATEVERSION_ERROR',
$this->updateVersion, JVERSION); ?></li>
			<?php endif; ?>

			<?php foreach ($this->errors as $line => $error) : ?>
				<?php $key = 'COM_INSTALLER_MSG_DATABASE_' .
$error->queryType;
				$msgs = $error->msgElements;
				$file = basename($error->file);
				$msg0 = isset($msgs[0]) ? $msgs[0] : ' ';
				$msg1 = isset($msgs[1]) ? $msgs[1] : ' ';
				$msg2 = isset($msgs[2]) ? $msgs[2] : ' ';
				$message = JText::sprintf($key, $file, $msg0, $msg1, $msg2); ?>
				<li><?php echo $message; ?></li>
			<?php endforeach; ?>
		</ul>
	</fieldset>
<?php endif; ?>

<?php echo JHtml::_('sliders.panel',
JText::_('COM_INSTALLER_MSG_DATABASE_INFO'),
'furtherinfo-pane'); ?>
	<fieldset class="panelform">
	<ul>
		<li><?php echo
JText::sprintf('COM_INSTALLER_MSG_DATABASE_SCHEMA_VERSION',
$this->schemaVersion); ?></li>
		<li><?php echo
JText::sprintf('COM_INSTALLER_MSG_DATABASE_UPDATE_VERSION',
$this->updateVersion); ?></li>
		<li><?php echo
JText::sprintf('COM_INSTALLER_MSG_DATABASE_DRIVER',
JFactory::getDbo()->name); ?></li>
		<li><?php echo
JText::sprintf('COM_INSTALLER_MSG_DATABASE_CHECKED_OK',
count($this->results['ok'])); ?></li>
		<li><?php echo
JText::sprintf('COM_INSTALLER_MSG_DATABASE_SKIPPED',
count($this->results['skipped'])); ?></li>
	</ul>
	</fieldset>
<?php echo JHtml::_('sliders.end'); ?>

<div class="clr"> </div>
<div>
	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<?php echo JHtml::_('form.token'); ?>
</div>
</div>
</form>
</div>
html/com_installer/default/default_ftp.php000064400000001754151163244070015007
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<fieldset class="adminform" title="<?php echo
JText::_('COM_INSTALLER_MSG_DESCFTPTITLE'); ?>">
	<legend><?php echo
JText::_('COM_INSTALLER_MSG_DESCFTPTITLE'); ?></legend>

	<?php echo JText::_('COM_INSTALLER_MSG_DESCFTP'); ?>

	<?php if ($this->ftp instanceof Exception) : ?>
		<p><?php echo JText::_($this->ftp->getMessage());
?></p>
	<?php endif; ?>

	<ul class="adminformlist">
		<li><label for="username"><?php echo
JText::_('JGLOBAL_USERNAME'); ?></label>
		<input type="text" id="username"
name="username" value="" /></li>

		<li><label for="password"><?php echo
JText::_('JGLOBAL_PASSWORD'); ?></label>
		<input type="password" id="password"
name="password" class="input_box" value=""
/></li>
	</ul>

</fieldset>
html/com_installer/discover/default.php000064400000007716151163244070014334
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('bootstrap.tooltip');
JHtml::_('behavior.multiselect');

$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
?>

<div id="installer-discover">
<form action="<?php echo
JRoute::_('index.php?option=com_installer&view=discover');?>"
method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<?php if ($this->showMessage) : ?>
		<?php echo $this->loadTemplate('message'); ?>
	<?php endif; ?>

	<?php if ($this->ftp) : ?>
		<?php echo $this->loadTemplate('ftp'); ?>
	<?php endif; ?>

	<?php if (count($this->items)) : ?>
	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col"><input
type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" /></th>
				<th class="title nowrap"><?php echo
JHtml::_('grid.sort', 'COM_INSTALLER_HEADING_NAME',
'name', $listDirn, $listOrder); ?></th>
				<th class="center"><?php echo
JHtml::_('grid.sort', 'COM_INSTALLER_HEADING_TYPE',
'type', $listDirn, $listOrder); ?></th>
				<th class="width-10 center"><?php echo
JText::_('JVERSION'); ?></th>
				<th class="width-10 center"><?php echo
JText::_('JDATE'); ?></th>
				<th><?php echo JHtml::_('grid.sort',
'COM_INSTALLER_HEADING_FOLDER', 'folder', $listDirn,
$listOrder); ?></th>
				<th><?php echo JHtml::_('grid.sort',
'COM_INSTALLER_HEADING_CLIENT', 'client_id', $listDirn,
$listOrder); ?></th>
				<th class="width-15 center"><?php echo
JText::_('JAUTHOR'); ?></th>
				<th class="nowrap id-col"><?php echo
JHtml::_('grid.sort', 'COM_INSTALLER_HEADING_ID',
'extension_id', $listDirn, $listOrder); ?></th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) : ?>
			<tr class="row<?php echo $i % 2;?>">
				<td><?php echo JHtml::_('grid.id', $i,
$item->extension_id); ?></td>
				<td><span class="bold hasTooltip"
title="<?php echo JHtml::_('tooltipText', $item->name,
$item->description, 0); ?>"><?php echo $item->name;
?></span></td>
				<td class="center"><?php echo
JText::_('COM_INSTALLER_TYPE_' . $item->type);
?></td>
				<td class="center"><?php echo @$item->version !=
'' ? $item->version : '&#160;'; ?></td>
				<td class="center"><?php echo
@$item->creationDate != '' ? $item->creationDate :
'&#160;'; ?></td>
				<td class="center"><?php echo @$item->folder !=
'' ? $item->folder :
JText::_('COM_INSTALLER_TYPE_NONAPPLICABLE'); ?></td>
				<td class="center"><?php echo $item->client;
?></td>
				<td class="center">
					<span class="editlinktip hasTooltip" title="<?php
echo JHtml::_('tooltipText',
JText::_('COM_INSTALLER_AUTHOR_INFORMATION'),
$item->author_info, 0); ?>">
						<?php echo @$item->author != '' ? $item->author :
'&#160;'; ?>
					</span>
				</td>
				<td><?php echo $item->extension_id ?></td>
			</tr>
		<?php endforeach; ?>
		</tbody>
	</table>
	<?php echo $this->pagination->getListFooter(); ?>
	<?php echo
JText::_('COM_INSTALLER_MSG_DISCOVER_DESCRIPTION'); ?>
	<?php else : ?>
		<p class="nowarning">
			<?php echo
JText::_('COM_INSTALLER_MSG_DISCOVER_DESCRIPTION'); ?>
		</p>
		<p class="nowarning">
			<?php echo
JText::_('COM_INSTALLER_MSG_DISCOVER_NOEXTENSION'); ?>
		</p>
	<?php endif; ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
</div>
html/com_installer/install/default.php000064400000000646151163244070014157
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_installer
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<?php if ($this->showMessage) : ?>
<?php echo $this->loadTemplate('message'); ?>
<?php endif; ?>
<?php echo $this->loadTemplate('form'); ?>
html/com_installer/install/default_form.php000064400000012266151163244070015203
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_installer
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// MooTools is loaded for B/C for extensions generating JavaScript in their
install scripts, this call will be removed at 4.0
JHtml::_('behavior.framework', true);
JHtml::_('bootstrap.tooltip');

JFactory::getDocument()->addScriptDeclaration("
	Joomla.submitbutton = function()
	{
		var form = document.getElementById('adminForm');

		// do field validation
		if (form.install_package.value == ''){
			alert('" .
JText::_('COM_INSTALLER_MSG_INSTALL_PLEASE_SELECT_A_PACKAGE',
true) . "');
		}
		else
		{
			form.installtype.value = 'upload';
			form.submit();
		}
	};

	Joomla.submitbutton3 = function()
	{
		var form = document.getElementById('adminForm');

		// do field validation
		if (form.install_directory.value == ''){
			alert('" .
JText::_('COM_INSTALLER_MSG_INSTALL_PLEASE_SELECT_A_DIRECTORY',
true) . "');
		}
		else
		{
			JoomlaInstaller.showLoading();
			form.installtype.value = 'folder';
			form.submit();
		}
	};

	Joomla.submitbutton4 = function()
	{
		var form = document.getElementById('adminForm');

		// do field validation
		if (form.install_url.value == '' || form.install_url.value ==
'http://' || form.install_url.value == 'https://'){
			alert('" .
JText::_('COM_INSTALLER_MSG_INSTALL_ENTER_A_URL', true) .
"');
		}
		else
		{
			form.installtype.value = 'url';
			form.submit();
		}
	};

	Joomla.submitbuttonInstallWebInstaller = function()
	{
		var form = document.getElementById('adminForm');

		form.install_url.value =
'https://appscdn.joomla.org/webapps/jedapps/webinstaller.xml';

		Joomla.submitbutton4();
	};

	// Add spindle-wheel for installations:
	jQuery(document).ready(function($) {
		var outerDiv = $(\"#installer-install\");
		
		JoomlaInstaller.getLoadingOverlay()
			.css(\"top\", outerDiv.position().top - $(window).scrollTop())
			.css(\"left\", \"0\")
			.css(\"width\", \"100%\")
			.css(\"height\", \"100%\")
			.css(\"display\", \"none\")
			.css(\"margin-top\", \"-10px\");
	});
	
	var JoomlaInstaller = {
		getLoadingOverlay: function () {
			return jQuery(\"#loading\");
		},
		showLoading: function () {
			this.getLoadingOverlay().css(\"display\",
\"block\");
		},
		hideLoading: function () {
			this.getLoadingOverlay().css(\"display\", \"none\");
		}
	};
");

JFactory::getDocument()->addStyleDeclaration(
	'
	#loading {
		background: rgba(255, 255, 255, .8) url(\'' .
JHtml::_('image', 'jui/ajax-loader.gif', '',
null, true, true) . '\') 50% 15% no-repeat;
		position: fixed;
		opacity: 0.8;
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity = 80);
		filter: alpha(opacity = 80);
		overflow: hidden;
	}
	'
);
?>
<div id="installer-install" class="clearfix">
	<form enctype="multipart/form-data" action="<?php
echo
JRoute::_('index.php?option=com_installer&view=install');?>"
method="post" name="adminForm"
id="adminForm">
		<?php if (!empty($this->sidebar)) : ?>
			<div id="j-sidebar-container" class="span2">
				<?php echo $this->sidebar; ?>
			</div>
			<div id="j-main-container" class="span10">
		<?php else : ?>
			<div id="j-main-container">
		<?php endif;?>

		<?php if ($this->showJedAndWebInstaller &&
!$this->showMessage) : ?>
			<div class="alert j-jed-message" style="margin-bottom:
20px; line-height: 2em; color:#333333; clear:both;">
				<a
href="index.php?option=com_config&view=component&component=com_installer&path=&return=<?php
echo urlencode(base64_encode(JUri::getInstance())); ?>"
class="close hasTooltip icon-options"
data-dismiss="alert" title="<?php echo
str_replace('"', '&quot;',
JText::_('COM_INSTALLER_SHOW_JED_INFORMATION_TOOLTIP'));
?>"></a>
				<p><?php echo
JText::_('COM_INSTALLER_INSTALL_FROM_WEB_INFO');
?>&nbsp;<?php echo
JText::_('COM_INSTALLER_INSTALL_FROM_WEB_TOS'); ?></p>
				<input class="btn" type="button"
value="<?php echo
JText::_('COM_INSTALLER_INSTALL_FROM_WEB_ADD_TAB'); ?>"
onclick="Joomla.submitbuttonInstallWebInstaller()" />
			</div>
		<?php endif; ?>

		<?php if ($this->ftp) : ?>
			<?php echo $this->loadTemplate('ftp'); ?>
		<?php endif; ?>
		<div class="width-70 fltlft">

			<?php $firstTab =
JEventDispatcher::getInstance()->trigger('onInstallerViewBeforeFirstTab',
array()); ?>

			<?php // Show installation fieldsets ?>
			<?php $tabs =
JEventDispatcher::getInstance()->trigger('onInstallerAddInstallationTab',
array()); ?>
			<?php foreach ($tabs as $tab) : ?>
				<fieldset class="uploadform">
					<?php echo $tab['content']; ?>
				</fieldset>
			<?php endforeach; ?>

			<?php $lastTab =
JEventDispatcher::getInstance()->trigger('onInstallerViewAfterLastTab',
array()); ?>

			<?php $tabs = array_merge($firstTab, $tabs, $lastTab); ?>
			<?php if (!$tabs) : ?>
				<?php
JFactory::getApplication()->enqueueMessage(JText::_('COM_INSTALLER_NO_INSTALLATION_PLUGINS_FOUND'),
'warning'); ?>
			<?php endif; ?>

			<input type="hidden" name="type"
value="" />
			<input type="hidden" name="installtype"
value="upload" />
			<input type="hidden" name="task"
value="install.install" />
			<?php echo JHtml::_('form.token'); ?>
		</div>
	</div>
	</form>
</div>
<div id="loading"></div>
html/com_installer/languages/default.php000064400000010325151163244070014452
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_installer
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.multiselect');
JHtml::_('bootstrap.tooltip');

$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));

$version = new JVersion;

// Add spindle-wheel for language installation.
JFactory::getDocument()->addScriptDeclaration('
jQuery(document).ready(function($) {
	Joomla.loadingLayer("load");
	$("#adminForm").on("submit", function(e) {
		if (document.getElementsByName("task")[0].value ==
"languages.install")
		{
			Joomla.loadingLayer("show");
		}
	});
});
');
?>
<div id="installer-languages">
	<form action="<?php echo
JRoute::_('index.php?option=com_installer&view=languages');?>"
method="post" name="adminForm"
id="adminForm">
	<?php if (!empty( $this->sidebar)) : ?>
		<div id="j-sidebar-container" class="span2">
			<?php echo $this->sidebar; ?>
		</div>
		<div id="j-main-container" class="span10">
	<?php else : ?>
		<div id="j-main-container">
	<?php endif;?>

		<?php if (count($this->items) ||
$this->escape($this->state->get('filter.search'))) :
?>
			<?php echo $this->loadTemplate('filter'); ?>
			<table class="adminlist">
				<thead>
					<tr>
						<th width="5%"></th>
						<th class="nowrap">
							<?php echo JHtml::_('grid.sort',
'COM_INSTALLER_HEADING_NAME', 'name', $listDirn,
$listOrder); ?>
						</th>
						<th width="10%" class="center">
							<?php echo JText::_('JVERSION'); ?>
						</th>
						<th class="center nowrap hidden-phone">
							<?php echo JText::_('COM_INSTALLER_HEADING_TYPE');
?>
						</th>
						<th width="35%" class="nowrap
hidden-phone">
							<?php echo
JText::_('COM_INSTALLER_HEADING_DETAILS_URL'); ?>
						</th>
					</tr>
				</thead>
				<tbody>
					<?php foreach ($this->items as $i => $language) :
						preg_match('#^pkg_([a-z]{2,3}-[A-Z]{2})$#',
$language->element, $element);
						$language->code  = $element[1];
						?>
					<tr class="row<?php echo $i % 2; ?>">
						<td>
							<?php $buttonText =
(isset($this->installedLang[0][$language->code]) ||
isset($this->installedLang[1][$language->code])) ?
'REINSTALL' : 'INSTALL'; ?>
							<?php $onclick =
'document.getElementById(\'install_url\').value =
\'' . $language->detailsurl . '\';
Joomla.submitbutton(\'install.install\');'; ?>
							<input type="button" class="btn btn-small"
value="<?php echo JText::_('COM_INSTALLER_' . $buttonText
. '_BUTTON'); ?>" onclick="<?php echo $onclick;
?>" />
						</td>
						<td>
							<?php echo $language->name; ?>

							<?php $minorVersion = $version::MAJOR_VERSION . '.' .
$version::MINOR_VERSION; ?>
							<?php // Display a Note if language pack version is not equal to
Joomla version ?>
							<?php if (substr($language->version, 0, 3) != $minorVersion
									|| substr($language->version, 0, 5) !=
$version->getShortVersion()) : ?>
								<div class="small"><?php echo
JText::_('JGLOBAL_LANGUAGE_VERSION_NOT_PLATFORM');
?></div>
							<?php endif; ?>
						</td>
						<td class="center">
							<?php echo $language->version; ?>
						</td>
						<td class="center">
							<?php echo JText::_('COM_INSTALLER_TYPE_' .
strtoupper($language->type)); ?>
						</td>
						<td>
							<?php echo $language->detailsurl; ?>
						</td>
					</tr>
					<?php endforeach; ?>
				</tbody>
			</table>
			<?php echo $this->pagination->getListFooter(); ?>
		<?php else : ?>
			<div class="alert"><?php echo
JText::_('COM_INSTALLER_MSG_LANGUAGES_NOLANGUAGES');
?></div>
		<?php endif; ?>

		<input type="hidden" name="task"
value="" />
		<input type="hidden" name="return"
value="<?php echo
base64_encode('index.php?option=com_installer&view=languages')
?>" />
		<input type="hidden" id="install_url"
name="install_url" />
		<input type="hidden" name="installtype"
value="url" />
		<input type="hidden" name="boxchecked"
value="0" />
		<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
		<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
		<?php echo JHtml::_('form.token'); ?>
		</div>
	</form>
</div>
html/com_installer/languages/default_filter.php000064400000002035151163244070016016
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_installer
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

?>
<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
	<div class="filter-search">
		<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
		<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_INSTALLER_LANGUAGES_FILTER_SEARCH_DESC');
?>" />
		<button type="submit" class="btn"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
		<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
	</div>
</fieldset>
<div class="clr"></div>
html/com_installer/manage/default.php000064400000011073151163244070013735
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.multiselect');
JHtml::_('bootstrap.tooltip');

$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
?>

<div id="installer-manage">
<form action="<?php echo
JRoute::_('index.php?option=com_installer&view=manage');?>"
method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<?php if ($this->showMessage) : ?>
		<?php echo $this->loadTemplate('message'); ?>
	<?php endif; ?>

	<?php if ($this->ftp) : ?>
		<?php echo $this->loadTemplate('ftp'); ?>
	<?php endif; ?>

	<?php echo $this->loadTemplate('filter'); ?>

	<?php if (count($this->items)) : ?>
	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="title nowrap">
					<?php echo JHtml::_('grid.sort',
'COM_INSTALLER_HEADING_NAME', 'name', $listDirn,
$listOrder); ?>
				</th>
				<th>
					<?php echo JHtml::_('grid.sort',
'COM_INSTALLER_HEADING_LOCATION', 'client_id',
$listDirn, $listOrder); ?>
				</th>
				<th class="width-10 center">
					<?php echo JHtml::_('grid.sort', 'JSTATUS',
'status', $listDirn, $listOrder); ?>
				</th>
				<th class="center">
					<?php echo JHtml::_('grid.sort',
'COM_INSTALLER_HEADING_TYPE', 'type', $listDirn,
$listOrder); ?>
				</th>
				<th class="width-10 center">
					<?php echo JText::_('JVERSION'); ?>
				</th>
				<th class="width-10">
					<?php echo JText::_('JDATE'); ?>
				</th>
				<th class="width-15 center">
					<?php echo JText::_('JAUTHOR'); ?>
				</th>
				<th>
					<?php echo JHtml::_('grid.sort',
'COM_INSTALLER_HEADING_FOLDER', 'folder', $listDirn,
$listOrder); ?>
				</th>
				<th>
					<?php echo JHtml::_('grid.sort',
'COM_INSTALLER_HEADING_PACKAGE_ID', 'package_id',
$listDirn, $listOrder); ?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'COM_INSTALLER_HEADING_ID', 'extension_id', $listDirn,
$listOrder); ?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) : ?>
			<tr class="row<?php echo $i % 2; if ($item->status == 2)
echo ' protected';?>">
				<td>
					<?php echo JHtml::_('grid.id', $i,
$item->extension_id); ?>
				</td>
				<td>
					<span class="bold hasTooltip" title="<?php echo
JHtml::_('tooltipText', $item->name, $item->description,
0); ?>">
						<?php echo $item->name; ?>
					</span>
				</td>
				<td class="center">
					<?php echo $item->client; ?>
				</td>
				<td class="center">
					<?php if (!$item->element) : ?>
					<strong>X</strong>
					<?php else : ?>
						<?php echo JHtml::_('InstallerHtml.Manage.state',
$item->status, $i, $item->status < 2, 'cb'); ?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo JText::_('COM_INSTALLER_TYPE_' .
$item->type); ?>
				</td>
				<td class="center">
					<?php echo @$item->version != '' ? $item->version :
'&#160;'; ?>
				</td>
				<td class="center">
					<?php echo @$item->creationDate != '' ?
$item->creationDate : '&#160;'; ?>
				</td>
				<td class="center">
					<span class="editlinktip hasTooltip" title="<?php
echo JHtml::_('tooltipText',
JText::_('COM_INSTALLER_AUTHOR_INFORMATION'),
$item->author_info, 0); ?>">
						<?php echo @$item->author != '' ? $item->author :
'&#160;'; ?>
					</span>
				</td>
				<td class="center">
					<?php echo @$item->folder != '' ? $item->folder :
JText::_('COM_INSTALLER_TYPE_NONAPPLICABLE'); ?>
				</td>
				<td class="center">
					<?php echo $item->package_id ?:
JText::_('COM_INSTALLER_TYPE_NONAPPLICABLE'); ?>
				</td>
				<td>
					<?php echo $item->extension_id ?>
				</td>
			</tr>
		<?php endforeach; ?>
		</tbody>
	</table>
	<?php echo $this->pagination->getListFooter(); ?>
	<?php endif; ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
</div>
html/com_installer/manage/default_filter.php000064400000005505151163244070015305
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

?>
<fieldset id="filter-bar">
<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
	<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_INSTALLER_FILTER_LABEL'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
	</div>

	<div class="filter-select">
			<label class="selectlabel"
for="filter_client_id">
				<?php echo JText::_('COM_INSTALLER_VALUE_CLIENT_SELECT');
?>
			</label>
			<select name="filter_client_id"
id="filter_client_id">
				<?php echo JHtml::_('select.options', array('0'
=> JText::_('JSITE'), '1' =>
JText::_('JADMINISTRATOR')), 'value', 'text',
$this->state->get('filter.client_id'), true); ?>
			</select>

			<label class="selectlabel"
for="filter_status">
				<?php echo JText::_('COM_INSTALLER_VALUE_STATE_SELECT');
?>
			</label>
			<select name="filter_status"
id="filter_status">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED'); ?></option>
				<?php echo JHtml::_('select.options',
InstallerHelper::getStateOptions(), 'value', 'text',
$this->state->get('filter.status'), true); ?>
			</select>

			<label class="selectlabel" for="filter_type">
				<?php echo JText::_('COM_INSTALLER_VALUE_TYPE_SELECT');
?>
			</label>
			<select name="filter_type" id="filter_type">
				<option value=""><?php echo
JText::_('COM_INSTALLER_VALUE_TYPE_SELECT'); ?></option>
				<?php echo JHtml::_('select.options',
InstallerHelper::getExtensionTypes(), 'value', 'text',
$this->state->get('filter.type'), true); ?>
			</select>

			<label class="selectlabel"
for="filter_folder">
				<?php echo JText::_('COM_INSTALLER_VALUE_FOLDER_SELECT');
?>
			</label>
			<select name="filter_folder"
id="filter_folder">
				<option value=""><?php echo
JText::_('COM_INSTALLER_VALUE_FOLDER_SELECT');
?></option>
				<?php echo JHtml::_('select.options',
array_merge(InstallerHelper::getExtensionGroupes(), array('*'
=> JText::_('COM_INSTALLER_VALUE_FOLDER_NONAPPLICABLE'))),
'value', 'text',
$this->state->get('filter.folder'), true); ?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>

		</div>

</fieldset>
<div class="clr"></div>
html/com_installer/update/default.php000064400000007443151163244070013775
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.multiselect');
JHtml::_('bootstrap.tooltip');

$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
?>

<div id="installer-update">
<form action="<?php echo
JRoute::_('index.php?option=com_installer&view=update');?>"
method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<?php if ($this->showMessage) : ?>
		<?php echo $this->loadTemplate('message'); ?>
	<?php endif; ?>

	<?php if ($this->ftp) : ?>
		<?php echo $this->loadTemplate('ftp'); ?>
	<?php endif; ?>

	<?php if (count($this->items)) : ?>
	<table class="adminlist" cellspacing="1">
		<thead>
			<tr>
				<th class="checkmark-col"><input
type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" /></th>
				<th class="nowrap"><?php echo
JHtml::_('grid.sort', 'COM_INSTALLER_HEADING_NAME',
'name', $listDirn, $listOrder); ?></th>
				<th class="nowrap"><?php echo
JHtml::_('grid.sort',
'COM_INSTALLER_HEADING_INSTALLTYPE', 'extension_id',
$listDirn, $listOrder); ?></th>
				<th ><?php echo JHtml::_('grid.sort',
'COM_INSTALLER_HEADING_TYPE', 'type', $listDirn,
$listOrder); ?></th>
				<th class="width-10" class="center"><?php
echo JText::_('JVERSION'); ?></th>
				<th><?php echo JHtml::_('grid.sort',
'COM_INSTALLER_HEADING_FOLDER', 'folder', $listDirn,
$listOrder); ?></th>
				<th><?php echo JHtml::_('grid.sort',
'COM_INSTALLER_HEADING_CLIENT', 'client_id', $listDirn,
$listOrder); ?></th>
				<th class="width-25"><?php echo
JText::_('COM_INSTALLER_HEADING_DETAILSURL'); ?></th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) : ?>
			<?php $client = $item->client_id ?
JText::_('JADMINISTRATOR') : JText::_('JSITE'); ?>
			<tr class="row<?php echo $i % 2; ?>">
				<td><?php echo JHtml::_('grid.id', $i,
$item->update_id); ?></td>
				<td>
					<span class="editlinktip hasTooltip" title="<?php
echo JHtml::_('tooltipText',
JText::_('JGLOBAL_DESCRIPTION'), $item->description ?:
JText::_('COM_INSTALLER_MSG_UPDATE_NODESC'), 0); ?>">
					<?php echo $item->name; ?>
					</span>
				</td>
				<td class="center">
					<?php echo $item->extension_id ?
JText::_('COM_INSTALLER_MSG_UPDATE_UPDATE') :
JText::_('COM_INSTALLER_NEW_INSTALL') ?>
				</td>
				<td><?php echo JText::_('COM_INSTALLER_TYPE_' .
$item->type) ?></td>
				<td class="center"><?php echo $item->version
?></td>
				<td class="center"><?php echo @$item->folder !=
'' ? $item->folder :
JText::_('COM_INSTALLER_TYPE_NONAPPLICABLE'); ?></td>
				<td class="center"><?php echo $client;
?></td>
				<td><?php echo $item->detailsurl ?>
					<?php if (isset($item->infourl)) : ?>
					<br /><a href="<?php echo
$item->infourl;?>"><?php echo
$item->infourl;?></a>
					<?php endif; ?>
				</td>
			</tr>
		<?php endforeach;?>
		</tbody>
	</table>
	<?php echo $this->pagination->getListFooter(); ?>

	<?php else : ?>
		<p class="nowarning"><?php echo
JText::_('COM_INSTALLER_MSG_UPDATE_NOUPDATES'); ?></p>
	<?php endif; ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
</div>
html/com_installer/warnings/default.php000064400000002735151163244070014342
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_installer
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div id="installer-warnings">
<form action="<?php echo
JRoute::_('index.php?option=com_installer&view=warnings');
?>" method="post" name="adminForm"
id="adminForm">
<?php if (!empty($this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php
else : ?>
	<div id="j-main-container">
<?php endif; ?>
<?php

if (!count($this->messages))
{
	echo '<p class="nowarning">' .
JText::_('COM_INSTALLER_MSG_WARNINGS_NONE') .
'</p>';
}
else
{
	echo JHtml::_('sliders.start', 'warning-sliders',
array('useCookie' => 1));
	foreach ($this->messages as $message)
	{
		echo JHtml::_('sliders.panel', $message['message'],
str_replace(' ', '', $message['message']));
		echo '<div style="padding: 5px;" >' .
$message['description'] . '</div>';
	}
	echo JHtml::_('sliders.panel',
JText::_('COM_INSTALLER_MSG_WARNINGFURTHERINFO'),
'furtherinfo-pane');
	echo '<div style="padding: 5px;" >' .
JText::_('COM_INSTALLER_MSG_WARNINGFURTHERINFODESC') .
'</div>';
	echo JHtml::_('sliders.end');
}
?>
<div class="clr"> </div>
<div>
	<input type="hidden" name="boxchecked"
value="0" />
	<?php echo JHtml::_('form.token'); ?>
</div>
</div>
</form>
</div>
html/com_joomlaupdate/default/default.php000064400000005645151163244070014630
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_joomlaupdate
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

/** @var JoomlaupdateViewDefault $this */

JHtml::_('jquery.framework');
JHtml::_('bootstrap.tooltip');
JHtml::_('formbehavior.chosen', 'select');
JHtml::script('com_joomlaupdate/default.js', false, true, false);

JFactory::getDocument()->addScriptDeclaration("
jQuery(document).ready(function($) {
	$('#extraction_method').change(function(e){
		extractionMethodHandler('#extraction_method',
'row_ftp');
	});
	$('#upload_method').change(function(e){
		extractionMethodHandler('#upload_method',
'upload_ftp');
	});

	$('button.submit').on('click', function() {
		$('div.download_message').show();
	});
});");
?>

<div id="joomlaupdate-wrapper">
	<form enctype="multipart/form-data"
action="index.php" method="post"
id="adminForm" class="form-horizontal">
		<?php echo  JHtml::_('sliders.start',
'joomlaupdate-slider'); ?>
		<?php if ($this->showUploadAndUpdate) : ?>
			<?php echo JHtml::_('sliders.panel',
JText::_('COM_JOOMLAUPDATE_VIEW_DEFAULT_TAB_ONLINE'),
'online-update'); ?>
		<?php endif; ?>

		<?php if ($this->selfUpdate) : ?>
			<?php // If we have a self update notice to install it first! ?>
			<?php
JFactory::getApplication()->enqueueMessage(JText::_('COM_JOOMLAUPDATE_VIEW_DEFAULT_INSTALL_SELF_UPDATE_FIRST'),
'error'); ?>
			<?php echo $this->loadTemplate('updatemefirst'); ?>
		<?php else : ?>
			<?php if
(!isset($this->updateInfo['object']->downloadurl->_data)
&& $this->updateInfo['installed'] <
$this->updateInfo['latest']) : ?>
				<?php // If we have no download URL we can't reinstall or
update ?>
				<?php echo $this->loadTemplate('nodownload'); ?>
			<?php elseif (!$this->updateInfo['hasUpdate']) : ?>
				<?php // If we have no update we can reinstall the core ?>
				<?php echo $this->loadTemplate('reinstall'); ?>
			<?php else : ?>
				<?php // Ok let's show the update template ?>
				<?php echo $this->loadTemplate('update'); ?>
			<?php endif; ?>
		<?php endif; ?>

		<input type="hidden" name="task"
value="update.download" />
		<input type="hidden" name="option"
value="com_joomlaupdate" />

		<?php echo JHtml::_('form.token'); ?>
	</form>

	<?php // Only Super Users have access to the Update & Install for
obvious security reasons ?>
	<?php if ($this->showUploadAndUpdate) : ?>
		<?php echo JHtml::_('sliders.panel',
JText::_('COM_JOOMLAUPDATE_VIEW_DEFAULT_TAB_UPLOAD'),
'upload-update'); ?>
		<?php echo $this->loadTemplate('upload'); ?>
		<?php echo JHtml::_('sliders.end'); ?>
	<?php endif; ?>

	<div class="download_message" style="display:
none">
		<p></p>
		<p class="nowarning">
			<?php echo
JText::_('COM_JOOMLAUPDATE_VIEW_DEFAULT_DOWNLOAD_IN_PROGRESS');
?>
		</p>
		<div class="joomlaupdate_spinner"></div>
	</div>
	<div id="loading"></div>
</div>
html/com_languages/installed/default.php000064400000007167151163244070014446
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.core');
// Add specific helper files for html generation
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');
$user     = JFactory::getUser();
$userId   = $user->get('id');
?>

<form action="<?php echo
JRoute::_('index.php?option=com_languages&view=installed');
?>" method="post" id="adminForm"
name="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
		<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-select fltrt">
			<label class="selectlabel" for="client_id">
				<?php echo JText::_('COM_CACHE_SELECT_CLIENT'); ?>
			</label>
			<select name="client_id" id="client_id">
			<?php
			$options   = array();
			$options[] = JHtml::_('select.option', '0',
JText::_('JSITE'));
			$options[] = JHtml::_('select.option', '1',
JText::_('JADMINISTRATOR'));
			echo JHtml::_('select.options', $options, 'value',
'text', $this->state->get('client_id'));
			?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>
	<?php if ($this->ftp) : ?>
		<?php echo $this->loadTemplate('ftp');?>
	<?php endif; ?>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					&#160;
				</th>
				<th class="title">
					<?php echo JText::_('COM_LANGUAGES_HEADING_LANGUAGE');
?>
				</th>
				<th>
					<?php echo
JText::_('COM_LANGUAGES_FIELD_LANG_TAG_LABEL'); ?>
				</th>
				<th class="width-5">
					<?php echo JText::_('COM_LANGUAGES_HEADING_DEFAULT');
?>
				</th>
				<th class="width-10">
					<?php echo JText::_('JVERSION'); ?>
				</th>
				<th class="width-10">
					<?php echo JText::_('JDATE'); ?>
				</th>
				<th class="width-20">
					<?php echo JText::_('JAUTHOR'); ?>
				</th>
				<th class="width-25">
					<?php echo
JText::_('COM_LANGUAGES_HEADING_AUTHOR_EMAIL'); ?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->rows as $i => $row) :
			$canCreate = $user->authorise('core.create',    
'com_languages');
			$canEdit   = $user->authorise('core.edit',      
'com_languages');
			$canChange = $user->authorise('core.edit.state',
'com_languages');
		?>
			<tr class="row<?php echo $i % 2; ?>">
				<td>
					<?php echo JHtml::_('languages.id', $i,
$row->language);?>
				</td>
				<td>
					<?php echo $this->escape($row->name); ?>
				</td>
				<td align="center">
					<?php echo $this->escape($row->language); ?>
				</td>
				<td class="center">
					<?php echo JHtml::_('jgrid.isdefault',
$row->published, $i, 'installed.', !$row->published
&& $canChange);?>
				</td>
				<td class="center">
					<?php echo $this->escape($row->version); ?>
				</td>
				<td class="center">
					<?php echo $this->escape($row->creationDate); ?>
				</td>
				<td class="center">
					<?php echo $this->escape($row->author); ?>
				</td>
				<td class="center">
					<?php echo
JStringPunycode::emailToUTF8($this->escape($row->authorEmail)); ?>
				</td>
			</tr>
		<?php endforeach;?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_languages/installed/default_ftp.php000064400000001676151163244070015316
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
	<fieldset class="adminform" title="<?php echo
JText::_('COM_LANGUAGES_FTP_TITLE'); ?>">
		<legend><?php echo
JText::_('COM_LANGUAGES_FTP_TITLE'); ?></legend>

		<?php echo JText::_('COM_LANGUAGES_FTP_DESC'); ?>

		<?php if ($ftp instanceof Exception) : ?>
			<p class="warning"><?php echo
JText::_($ftp->message); ?></p>
		<?php endif; ?>

		<div>
			<label for="username"><?php echo
JText::_('JGLOBAL_USERNAME'); ?></label>
			<input type="text" id="username"
name="username" value="" />
		</div>
		<div>
			<label for="password"><?php echo
JText::_('JGLOBAL_PASSWORD'); ?></label>
			<input type="password" id="password"
name="password" value="" />
		</div>
	</fieldset>
html/com_languages/languages/default.php000064400000016570151163244070014433
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('bootstrap.tooltip');
JHtml::_('behavior.multiselect');

$user      = JFactory::getUser();
$userId    = $user->get('id');
$n         = count($this->items);
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$canOrder  = $user->authorise('core.edit.state',
'com_languages');
$saveOrder = $listOrder == 'a.ordering';
?>

<form action="<?php echo
JRoute::_('index.php?option=com_languages&view=languages');
?>" method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif; ?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_LANGUAGES_SEARCH_IN_TITLE'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>

		<div class="filter-select">
			<label class="selectlabel"
for="filter_published">
				<?php echo JText::_('JOPTION_SELECT_PUBLISHED'); ?>
			</label>
			<select name="filter_published"
id="filter_published">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('languages.publishedOptions'), 'value',
'text', $this->state->get('filter.published'),
true); ?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder);
?>
				</th>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'COM_LANGUAGES_HEADING_TITLE_NATIVE', 'a.title_native',
$listDirn, $listOrder); ?>
				</th>
				<th class="nowrap width-5">
					<?php echo JHtml::_('grid.sort',
'COM_LANGUAGES_FIELD_LANG_TAG_LABEL', 'a.lang_code',
$listDirn, $listOrder); ?>
				</th>
				<th class="nowrap width-5">
					<?php echo JHtml::_('grid.sort',
'COM_LANGUAGES_FIELD_LANG_CODE_LABEL', 'a.sef',
$listDirn, $listOrder); ?>
				</th>
				<th class="nowrap width-5">
					<?php echo JHtml::_('grid.sort',
'COM_LANGUAGES_HEADING_LANG_IMAGE', 'a.image',
$listDirn, $listOrder); ?>
				</th>
				<th class="nowrap width-5">
					<?php echo JHtml::_('grid.sort', 'JSTATUS',
'a.published', $listDirn, $listOrder); ?>
				</th>
				<th width="nowrap ordering-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ORDERING', 'a.ordering', $listDirn,
$listOrder); ?>
					<?php if ($canOrder && $saveOrder) : ?>
						<?php echo JHtml::_('grid.order', $this->items,
'filesave.png', 'languages.saveorder'); ?>
					<?php endif; ?>
				</th>
				<th class="nowrap width-5">
					<?php echo JHtml::_('grid.sort',
'COM_LANGUAGES_HOMEPAGE', '', $listDirn, $listOrder);
?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.lang_id', $listDirn,
$listOrder); ?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php
		foreach ($this->items as $i => $item) :
			$ordering  = ($listOrder == 'a.ordering');
			$canCreate = $user->authorise('core.create',    
'com_languages');
			$canEdit   = $user->authorise('core.edit',      
'com_languages');
			$canChange = $user->authorise('core.edit.state',
'com_languages');
		?>
			<tr class="row<?php echo $i % 2; ?>">
				<td>
					<?php echo JHtml::_('grid.id', $i, $item->lang_id);
?>
				</td>
				<td>
					<span class="editlinktip hasTooltip" title="<?php
echo JHtml::_('tooltipText',
JText::_('JGLOBAL_EDIT_ITEM'), $item->title, 0);
?>">
					<?php if ($canEdit) : ?>
						<a href="<?php echo
JRoute::_('index.php?option=com_languages&task=language.edit&lang_id='.(int)
$item->lang_id); ?>">
							<?php echo $this->escape($item->title); ?></a>
					<?php else : ?>
							<?php echo $this->escape($item->title); ?>
					<?php endif; ?>
					</span>
				</td>
				<td class="center">
					<?php echo $this->escape($item->title_native); ?>
				</td>
				<td class="center">
					<?php echo $this->escape($item->lang_code); ?>
				</td>
				<td class="center">
					<?php echo $this->escape($item->sef); ?>
				</td>
				<td class="center">
					<?php if ($item->image) : ?>
						<?php echo JHtml::_('image', 'mod_languages/'
. $item->image . '.gif', $item->image, null, true);
?>&nbsp;<?php echo $this->escape($item->image); ?>
					<?php else : ?>
						<?php echo JText::_('JNONE'); ?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo JHtml::_('jgrid.published',
$item->published, $i, 'languages.', $canChange); ?>
				</td>
				<td class="order">
					<?php if ($canChange) : ?>
						<?php if ($saveOrder) :?>
							<?php if ($listDirn == 'asc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
true, 'languages.orderup', 'JLIB_HTML_MOVE_UP',
$ordering); ?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
true, 'languages.orderdown', 'JLIB_HTML_MOVE_DOWN',
$ordering); ?></span>
							<?php elseif ($listDirn == 'desc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
true, 'languages.orderdown', 'JLIB_HTML_MOVE_UP',
$ordering); ?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
true, 'languages.orderup', 'JLIB_HTML_MOVE_DOWN',
$ordering); ?></span>
							<?php endif; ?>
						<?php endif; ?>
						<?php $disabled = $saveOrder ? '' :
'disabled="disabled"'; ?>
						<input type="text" name="order[]"
size="5" value="<?php echo $item->ordering;
?>" <?php echo $disabled; ?>
class="text-area-order" />
					<?php else : ?>
						<?php echo $item->ordering; ?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php if ($item->home == '1') : ?>
						<?php echo JText::_('JYES'); ?>
					<?php else:?>
						<?php echo JText::_('JNO'); ?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo $this->escape($item->lang_id); ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<div>
		<input type="hidden" name="task"
value="" />
		<input type="hidden" name="boxchecked"
value="0" />
		<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
		<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
	</div>
</form>
html/com_languages/overrides/default.php000064400000007625151163244070014470
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_languages
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');
$client    = $this->state->get('filter.client') ==
'site' ? JText::_('JSITE') :
JText::_('JADMINISTRATOR');
$language  = $this->state->get('filter.language');
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
?>

<form action="<?php echo
JRoute::_('index.php?option=com_languages&view=overrides');
?>" method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
		<div class="filter-search fltlft">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_LANGUAGES_VIEW_OVERRIDES_FILTER_SEARCH_DESC');
?>" />

			<button type="submit" class="btn"><?php
echo JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>
		<div class="filter-select fltrt">
			<select name="filter_language_client"
onchange="this.form.submit()">
				<?php echo JHtml::_('select.options', $this->languages,
null, 'text',
$this->state->get('filter.language_client')); ?>
			</select>
		</div>
	</fieldset>

	<div class="clr"></div>

	<table class="adminlist">
		<thead>
			<tr>
				<th width="1%">
					<input type="checkbox" name="checkall-toggle"
value="" onclick="Joomla.checkAll(this)" />
				</th>
				<th width="30%" class="left">
					<?php echo JHtml::_('grid.sort',
'COM_LANGUAGES_VIEW_OVERRIDES_KEY', 'key', $listDirn,
$listOrder); ?>
				</th>
				<th class="left">
					<?php echo JHtml::_('grid.sort',
'COM_LANGUAGES_VIEW_OVERRIDES_TEXT', 'text', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap">
					<?php echo
JText::_('COM_LANGUAGES_FIELD_LANG_TAG_LABEL'); ?>
				</th>
				<th>
					<?php echo JText::_('JCLIENT'); ?>
				</th>
			</tr>
		</thead>
		<tfoot>
			<tr>
				<td colspan="5">
					<?php echo $this->pagination->getListFooter(); ?>
				</td>
			</tr>
		</tfoot>
		<tbody>
		<?php $canEdit =
JFactory::getUser()->authorise('core.edit',
'com_languages');
		$i = 0;
		foreach ($this->items as $key => $text) : ?>
			<tr class="row<?php echo $i % 2; ?>"
id="overriderrow<?php echo $i; ?>">
				<td class="center">
					<?php echo JHtml::_('grid.id', $i, $key); ?>
				</td>
				<td>
					<?php if ($canEdit) : ?>
						<a id="key[<?php	echo $this->escape($key); ?>]"
href="<?php echo
JRoute::_('index.php?option=com_languages&task=override.edit&id='.$key);
?>"><?php echo $this->escape($key); ?></a>
					<?php else: ?>
						<?php echo $this->escape($key); ?>
					<?php endif; ?>
				</td>
				<td>
					<span id="string[<?php	echo $this->escape($key);
?>]"><?php echo $this->escape($text); ?></span>
				</td>
				<td class="center">
					<?php echo $language; ?>
				</td>
				<td class="center">
					<?php echo $client; ?>
				</td>
			</tr>
			<?php $i++;
		endforeach; ?>
		</tbody>
	</table>
	<div>
		<input type="hidden" name="task"
value="" />
		<input type="hidden" name="boxchecked"
value="0" />
		<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
		<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</div>
</form>
html/com_menus/item/edit.php000064400000014105151163244070012075
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.framework');
JHtml::_('behavior.formvalidator');
JHtml::_('behavior.modal');

$assoc = JLanguageAssociations::isEnabled();

// Ajax for parent items
$script = "
jQuery(document).ready(function ($){
	$('#jform_menutype').change(function(){
		var menutype = $(this).val();
		$.ajax({
			url:
'index.php?option=com_menus&task=item.getParentItem&menutype='
+ menutype,
			dataType: 'json'
		}).done(function(data) {
			$('#jform_parent_id option').each(function() {
				if ($(this).val() != '1') {
					$(this).remove();
				}
			});
			$.each(data, function (i, val) {
				var option = $('<option>');
				option.text(val.title).val(val.id);
				$('#jform_parent_id').append(option);
			});
			$('#jform_parent_id').trigger('liszt:updated');
		});
	});
});
Joomla.submitbutton = function(task, type){
	if (task == 'item.setType' || task ==
'item.setMenuType')
	{
		if (task == 'item.setType')
		{
			jQuery('#item-form
input[name=\"jform[type]\"]').val(type);
			jQuery('#fieldtype').val('type');
		} else {
			jQuery('#item-form
input[name=\"jform[menutype]\"]').val(type);
		}
		Joomla.submitform('item.setType',
document.getElementById('item-form'));
	} else if (task == 'item.cancel' ||
document.formvalidator.isValid(document.getElementById('item-form')))
	{
		Joomla.submitform(task, document.getElementById('item-form'));
	}
	else
	{
		// special case for modal popups validation response
		jQuery('#item-form .modal-value.invalid').each(function(){
			var field = jQuery(this),
				idReversed =
field.attr('id').split('').reverse().join(''),
				separatorLocation = idReversed.indexOf('_'),
				nameId = '#' +
idReversed.substr(separatorLocation).split('').reverse().join('')
+ 'name';
			jQuery(nameId).addClass('invalid');
		});
	}
};
";
// Add the script to the document head.
JFactory::getDocument()->addScriptDeclaration($script);

// In case of modal
$input = JFactory::getApplication()->input;
$isModal  = $input->get('layout') == 'modal' ? true
: false;
$layout   = $isModal ? 'modal' : 'edit';
$tmpl     = $isModal || $input->get('tmpl', '',
'cmd') === 'component' ?
'&tmpl=component' : '';
$clientId = $this->state->get('item.client_id', 0);
?>

<div class="menuitem-edit">

<form action="<?php echo
JRoute::_('index.php?option=com_menus&view=item&client_id='
. $clientId . '&layout=' . $layout . $tmpl .
'&id=' . (int) $this->item->id); ?>"
method="post" name="adminForm" id="item-form"
class="form-validate">

<div class="col main-section">
	<fieldset class="adminform">
		<legend><?php echo
JText::_('COM_MENUS_ITEM_DETAILS');?></legend>
			<ul class="adminformlist">

				<li><?php echo $this->form->getLabel('type');
?>
				<?php echo $this->form->getInput('type');
?></li>

				<li><?php echo $this->form->getLabel('title');
?>
				<?php echo $this->form->getInput('title');
?></li>

				<?php if ($this->item->type == 'url') : ?>
					<?php $this->form->setFieldAttribute('link',
'readonly', 'false');?>
					<li><?php echo $this->form->getLabel('link');
?>
					<?php echo $this->form->getInput('link');
?></li>
				<?php endif; ?>

				<?php if ($this->item->type != 'url') : ?>
					<li><?php echo
$this->form->getLabel('alias'); ?>
					<?php echo $this->form->getInput('alias');
?></li>
				<?php endif; ?>

				<li><?php echo $this->form->getLabel('note');
?>
				<?php echo $this->form->getInput('note');
?></li>

				<?php if ($this->item->type !== 'url') : ?>
					<li><?php echo $this->form->getLabel('link');
?>
					<?php echo $this->form->getInput('link');
?></li>
				<?php endif ?>

				<?php if ($this->canDo->get('core.edit.state')) :
?>
					<li><?php echo
$this->form->getLabel('published'); ?>
					<?php echo $this->form->getInput('published');
?></li>
				<?php endif ?>

				<li><?php echo
$this->form->getLabel('access'); ?>
				<?php echo $this->form->getInput('access');
?></li>

				<li><?php echo
$this->form->getLabel('menutype'); ?>
				<?php echo $this->form->getInput('menutype');
?></li>

				<li><?php echo
$this->form->getLabel('parent_id'); ?>
				<?php echo $this->form->getInput('parent_id');
?></li>

				<li><?php echo
$this->form->getLabel('menuordering'); ?>
				<?php echo $this->form->getInput('menuordering');
?></li>

				<li><?php echo
$this->form->getLabel('browserNav'); ?>
				<?php echo $this->form->getInput('browserNav');
?></li>

				<?php if ($this->canDo->get('core.edit.state')) :
?>
					<?php if ($this->item->type == 'component') : ?>
					<li><?php echo $this->form->getLabel('home');
?>
					<?php echo $this->form->getInput('home');
?></li>
					<?php endif; ?>
				<?php endif; ?>

				<li><?php echo
$this->form->getLabel('language'); ?>
				<?php echo $this->form->getInput('language');
?></li>

				<li><?php echo
$this->form->getLabel('template_style_id'); ?>
				<?php echo
$this->form->getInput('template_style_id');
?></li>

				<li><?php echo $this->form->getLabel('id');
?>
				<?php echo $this->form->getInput('id');
?></li>

				<li><?php echo
$this->form->getLabel('client_id'); ?>
					<?php echo $this->form->getInput('client_id');
?></li>
			</ul>

	</fieldset>
</div>

<div class="col options-section">
	<?php echo JHtml::_('sliders.start',
'menu-sliders-'.$this->item->id); ?>
	<?php //Load  parameters.
		echo $this->loadTemplate('options'); ?>

		<div class="clr"></div>

		<?php if (!empty($this->modules)) : ?>
			<?php echo JHtml::_('sliders.panel',
JText::_('COM_MENUS_ITEM_MODULE_ASSIGNMENT'),
'module-options'); ?>
			<fieldset>
				<?php echo $this->loadTemplate('modules'); ?>
			</fieldset>
		<?php endif; ?>

	<?php echo JHtml::_('sliders.end'); ?>

	<input type="hidden" name="task" value=""
/>
	<?php echo $this->form->getInput('component_id'); ?>
	<?php echo JHtml::_('form.token'); ?>
	<input type="hidden" id="fieldtype"
name="fieldtype" value="" />
</div>
</form>

<div class="clr"></div>
</div>
html/com_menus/item/edit_options.php000064400000004507151163244070013655
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$assoc = JLanguageAssociations::isEnabled();

?>
<?php
	$fieldSets = $this->form->getFieldsets('request');

	if (!empty($fieldSets))
	{
		$fieldSet = array_shift($fieldSets);
		$label = !empty($fieldSet->label) ? $fieldSet->label :
'COM_MENUS_'.$fieldSet->name.'_FIELDSET_LABEL';
		echo JHtml::_('sliders.panel', JText::_($label),
'request-options');
		if (isset($fieldSet->description) &&
trim($fieldSet->description)) :
			echo '<p
class="tip">'.$this->escape(JText::_($fieldSet->description)).'</p>';
		endif;
	?>
		<fieldset class="panelform">
			<legend class="element-invisible"><?php echo
JText::_($label) ?></legend>
			<?php $hidden_fields = ''; ?>
			<ul class="adminformlist">
				<?php foreach ($this->form->getFieldset('request')
as $field) : ?>
				<?php if (!$field->hidden) : ?>
				<li>
					<?php echo $field->label; ?>
					<?php echo $field->input; ?>
				</li>
				<?php else : $hidden_fields .= $field->input; ?>
				<?php endif; ?>
				<?php endforeach; ?>
			</ul>
			<?php echo $hidden_fields; ?>
		</fieldset>
<?php
	}

	$fieldSets = $this->form->getFieldsets('params');

	foreach ($fieldSets as $name => $fieldSet) :
		$label = !empty($fieldSet->label) ? $fieldSet->label :
'COM_MENUS_'.$name.'_FIELDSET_LABEL';
		echo JHtml::_('sliders.panel', JText::_($label),
$name.'-options');
			if (isset($fieldSet->description) &&
trim($fieldSet->description)) :
				echo '<p
class="tip">'.$this->escape(JText::_($fieldSet->description)).'</p>';
			endif;
			?>
		<div class="clr"></div>
		<fieldset class="panelform">
			<legend class="element-invisible"><?php echo
JText::_($label) ?></legend>
			<ul class="adminformlist">
				<?php foreach ($this->form->getFieldset($name) as $field) :
?>
					<li><?php echo $field->label; ?>
					<?php echo $field->input; ?></li>
				<?php endforeach; ?>
			</ul>
		</fieldset>
	<?php endforeach;?>

	<?php if ($assoc &&
$this->state->get('item.client_id') != 1) : ?>
		<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_ASSOCIATIONS'),
'-options');?>
		<?php echo $this->loadTemplate('associations'); ?>
	<?php endif; ?>
html/com_menus/items/default.php000064400000027415151163244070012767
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.multiselect');

$user       = JFactory::getUser();
$app        = JFactory::getApplication();
$userId     = $user->get('id');
$listOrder  =
$this->escape($this->state->get('list.ordering'));
$listDirn   =
$this->escape($this->state->get('list.direction'));
$ordering   = ($listOrder == 'a.lft');
$canOrder   = $user->authorise('core.edit.state',
'com_menus');
$saveOrder  = ($listOrder == 'a.lft' && $listDirn ==
'asc');
$menutypeid = (int) $this->state->get('menutypeid');
$assoc      = JLanguageAssociations::isEnabled() &&
$this->state->get('filter.client_id') == 0;
?>

<?php // Set up the filter bar. ?>
<form action="<?php echo
JRoute::_('index.php?option=com_menus&view=items');
?>" method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif; ?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_MENUS_ITEMS_SEARCH_FILTER'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>
		<div class="filter-select">
			<label class="selectlabel" for="menutype">
				<?php echo JText::_('TPL_HATHOR_COM_MENUS_MENU'); ?>
			</label>
			<select name="menutype" id="menutype">
				<?php echo JHtml::_('select.options',
JHtml::_('menu.menus'), 'value', 'text',
$this->state->get('filter.menutype')); ?>
			</select>

			<label class="selectlabel" for="filter_level">
				<?php echo JText::_('COM_MENUS_OPTION_SELECT_LEVEL');
?>
			</label>
			<select name="filter_level" id="filter_level">
				<option value=""><?php echo
JText::_('COM_MENUS_OPTION_SELECT_LEVEL'); ?></option>
				<?php echo JHtml::_('select.options', $this->f_levels,
'value', 'text',
$this->state->get('filter.level')); ?>
			</select>

			<label class="selectlabel"
for="filter_published">
				<?php echo JText::_('JOPTION_SELECT_PUBLISHED'); ?>
			</label>
			<select name="filter[published]"
id="filter_published">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('jgrid.publishedOptions', array('archived'
=> false)), 'value', 'text',
$this->state->get('filter.published'), true); ?>
			</select>

			<label class="selectlabel"
for="filter_access">
				<?php echo JText::_('JOPTION_SELECT_ACCESS'); ?>
			</label>
			<select name="filter[access]"
id="filter_access">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_ACCESS'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('access.assetgroups'), 'value',
'text', $this->state->get('filter.access'));
?>
			</select>

			<label class="selectlabel"
for="filter_language">
				<?php echo JText::_('JOPTION_SELECT_LANGUAGE'); ?>
			</label>
			<select name="filter[language]"
id="filter_language">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_LANGUAGE'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('contentlanguage.existing', true, true),
'value', 'text',
$this->state->get('filter.language')); ?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>
<?php //Set up the grid heading. ?>
	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder);
?>
				</th>
				<th class="nowrap state-col">
					<?php echo JHtml::_('grid.sort', 'JSTATUS',
'a.published', $listDirn, $listOrder); ?>
				</th>
				<th class="nowrap ordering-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ORDERING', 'a.lft', $listDirn,
$listOrder); ?>
					<?php if ($canOrder && $saveOrder) : ?>
						<?php echo JHtml::_('grid.order', $this->items,
'filesave.png', 'items.saveorder'); ?>
					<?php endif; ?>
				</th>
				<th class="title access-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ACCESS', 'access_level', $listDirn,
$listOrder); ?>
				</th>
				<th width="10%">
					<?php echo JText::_('JGRID_HEADING_MENU_ITEM_TYPE');
?>
				</th>
				<?php if ($this->state->get('filter.client_id') ==
0): ?>
				<th class="home-col">
					<?php echo JHtml::_('grid.sort',
'COM_MENUS_HEADING_HOME', 'a.home', $listDirn,
$listOrder); ?>
				</th>
				<?php endif; ?>
				<?php if ($assoc) : ?>
				<th class="width-5">
					<?php echo JHtml::_('grid.sort',
'COM_MENUS_HEADING_ASSOCIATION', 'association',
$listDirn, $listOrder); ?>
				</th>
				<?php endif; ?>
				<th class="language-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_LANGUAGE', 'language', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php
		foreach ($this->items as $i => $item) :
			$orderkey   = array_search($item->id,
$this->ordering[$item->parent_id]);
			$canCreate  = $user->authorise('core.create',    
'com_menus.menu.' . $menutypeid);
			$canEdit    = $user->authorise('core.edit',      
'com_menus.menu.' . $menutypeid);
			$canCheckin = $user->authorise('core.manage',    
'com_checkin') || $item->checked_out ==
$user->get('id')|| $item->checked_out == 0;
			$canChange  = $user->authorise('core.edit.state',
'com_menus.menu.' . $menutypeid) && $canCheckin;
		?>
			<tr class="row<?php echo $i % 2; ?>">
				<td class="center">
					<?php echo JHtml::_('grid.id', $i, $item->id); ?>
				</td>
				<td>
					<?php echo str_repeat('<span
class="gi">|&mdash;</span>', $item->level -
1) ?>
					<?php if ($item->checked_out) : ?>
						<?php echo JHtml::_('jgrid.checkedout', $i,
$item->editor, $item->checked_out_time, 'items.',
$canCheckin); ?>
					<?php endif; ?>
					<?php if ($canEdit && !$item->protected) : ?>
						<a href="<?php echo
JRoute::_('index.php?option=com_menus&task=item.edit&id='.(int)
$item->id); ?>">
							<?php echo $this->escape($item->title); ?></a>
					<?php else : ?>
						<?php echo $this->escape($item->title); ?>
					<?php endif; ?>
					<p class="smallsub" title="<?php echo
$this->escape($item->path); ?>">
						<?php echo str_repeat('<span
class="gtr">|&mdash;</span>', $item->level -
1) ?>
						<?php if ($item->type != 'url') : ?>
							<?php if (empty($item->note)) : ?>
								<?php echo JText::sprintf('JGLOBAL_LIST_ALIAS',
$this->escape($item->alias)); ?>
							<?php else : ?>
								<?php echo JText::sprintf('JGLOBAL_LIST_ALIAS_NOTE',
$this->escape($item->alias), $this->escape($item->note)); ?>
							<?php endif; ?>
						<?php elseif ($item->type == 'url' &&
$item->note) : ?>
							<?php echo JText::sprintf('JGLOBAL_LIST_NOTE',
$this->escape($item->note)); ?>
						<?php endif; ?></p>
				</td>
				<td class="center">
					<?php echo JHtml::_('MenusHtml.Menus.state',
$item->published, $i, $canChange, 'cb'); ?>
				</td>
				<td class="order">
					<?php if ($canChange) : ?>
						<?php if ($saveOrder) : ?>
							<span><?php echo $this->pagination->orderUpIcon($i,
isset($this->ordering[$item->parent_id][$orderkey - 1]),
'items.orderup', 'JLIB_HTML_MOVE_UP', $ordering);
?></span>
							<span><?php echo $this->pagination->orderDownIcon($i,
$this->pagination->total,
isset($this->ordering[$item->parent_id][$orderkey + 1]),
'items.orderdown', 'JLIB_HTML_MOVE_DOWN', $ordering);
?></span>
						<?php endif; ?>
						<?php $disabled = $saveOrder ? '' :
'disabled="disabled"'; ?>
						<input type="text" name="order[]"
value="<?php echo $orderkey + 1; ?>" <?php echo
$disabled; ?> class="text-area-order" title="<?php
echo $item->title; ?> order" />
					<?php else : ?>
						<?php echo $orderkey + 1; ?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo $this->escape($item->access_level); ?>
				</td>
				<td class="nowrap">
					<span title="<?php echo isset($item->item_type_desc) ?
htmlspecialchars($this->escape($item->item_type_desc), ENT_COMPAT,
'UTF-8') : ''; ?>">
						<?php echo $this->escape($item->item_type);
?></span>
				</td>
				<?php if ($this->state->get('filter.client_id') ==
0): ?>
				<td class="center">
					<?php if ($item->type == 'component') : ?>
						<?php if ($item->language == '*' || $item->home ==
'0'):?>
							<?php echo JHtml::_('jgrid.isdefault', $item->home,
$i, 'items.', ($item->language != '*' ||
!$item->home) && $canChange && !$item->protected);
?>
						<?php elseif ($canChange):?>
							<a href="<?php echo
JRoute::_('index.php?option=com_menus&task=items.unsetDefault&cid[]='.$item->id.'&'.JSession::getFormToken().'=1');
?>">
								<?php if ($item->language_image) : ?>
									<?php echo JHtml::_('image',
'mod_languages/' . $item->language_image . '.gif',
$item->language_title, array('title' =>
JText::sprintf('COM_MENUS_GRID_UNSET_LANGUAGE',
$item->language_title)), true); ?>
								<?php else : ?>
									<span class="label" title="<?php echo
JText::sprintf('COM_MENUS_GRID_UNSET_LANGUAGE',
$item->language_title); ?>"><?php echo
$item->language_sef; ?></span>
								<?php endif; ?>
							</a>
						<?php else:?>
							<?php if ($item->language_image) : ?>
								<?php echo JHtml::_('image',
'mod_languages/' . $item->language_image . '.gif',
$item->language_title, array('title' =>
$item->language_title), true); ?>
							<?php else : ?>
								<span class="label" title="<?php echo
$item->language_title; ?>"><?php echo
$item->language_sef; ?></span>
							<?php endif; ?>
						<?php endif; ?>
					<?php endif; ?>
				</td>
				<?php endif; ?>
				<?php if ($assoc) : ?>
				<td class="center">
					<?php if ($item->association):?>
						<?php echo JHtml::_('MenusHtml.Menus.association',
$item->id); ?>
					<?php endif; ?>
				</td>
				<?php endif; ?>
				<td class="center">
					<?php echo
JLayoutHelper::render('joomla.content.language', $item); ?>
				</td>
				<td class="center">
					<span title="<?php echo sprintf('%d-%d',
$item->lft, $item->rgt); ?>">
						<?php echo (int) $item->id; ?></span>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>
	<div class="clr"> </div>

	<?php //Load the batch processing form.is user is allowed ?>
	<?php if ($user->authorise('core.create',
'com_menus') || $user->authorise('core.edit',
'com_menus')) : ?>
		<?php echo JHtml::_(
			'bootstrap.renderModal',
			'collapseModal',
			array(
				'title'  => JText::_('COM_MENUS_BATCH_OPTIONS'),
				'footer' =>
$this->loadTemplate('batch_footer'),
			),
			$this->loadTemplate('batch_body')
		); ?>
	<?php endif; ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_menus/menu/edit.php000064400000004407151163244070012107
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.formvalidator');

JText::script('ERROR');

JFactory::getDocument()->addScriptDeclaration("
		Joomla.submitbutton = function(task)
		{
			var form = document.getElementById('item-form');
			if (task == 'menu.cancel' ||
document.formvalidator.isValid(form))
			{
				Joomla.submitform(task, form);
			}
		};
");
?>

<div class="menu-edit">

<form action="<?php echo
JRoute::_('index.php?option=com_menus&layout=edit&id='.(int)
$this->item->id); ?>" method="post"
name="adminForm" id="item-form">
<div class="col main-section">
	<fieldset class="adminform">
		<legend><?php echo
JText::_('COM_MENUS_MENU_DETAILS');?></legend>
			<ul class="adminformlist">
				<li><?php echo $this->form->getLabel('title');
?>
				<?php echo $this->form->getInput('title');
?></li>

				<li><?php echo
$this->form->getLabel('menutype'); ?>
				<?php echo $this->form->getInput('menutype');
?></li>

				<li><?php echo
$this->form->getLabel('description'); ?>
				<?php echo $this->form->getInput('description');
?></li>

				<li><?php echo
$this->form->getLabel('client_id'); ?>
				<?php echo $this->form->getInput('client_id');
?></li>
			</ul>
	</fieldset>
</div>
	<div class="clr"></div>
	<?php if ($this->canDo->get('core.admin')) : ?>
		<div  class="col rules-section">
			<?php echo JHtml::_('sliders.start',
'permissions-sliders-' . $this->item->id,
array('useCookie' => 1)); ?>

				<?php echo JHtml::_('sliders.panel',
JText::_('COM_MENUS_FIELDSET_RULES'), 'access-rules');
?>
				<fieldset class="panelform">
					<legend class="element-invisible"><?php echo
JText::_('COM_CONTENT_FIELDSET_RULES'); ?></legend>
					<?php echo $this->form->getLabel('rules'); ?>
					<?php echo $this->form->getInput('rules'); ?>
				</fieldset>

			<?php echo JHtml::_('sliders.end'); ?>
		</div>
	<?php endif; ?>
	<input type="hidden" name="task" value=""
/>
	<?php echo JHtml::_('form.token'); ?>

</form>
<div class="clr"></div>
</div>
html/com_menus/menus/default.php000064400000020757151163244070012777
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');

JHtml::_('behavior.multiselect');

$uri       = JUri::getInstance();
$return    = base64_encode($uri);
$user      = JFactory::getUser();
$userId    = $user->get('id');
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$modMenuId = (int) $this->get('ModMenuId');

$script = array();
$script[] = 'jQuery(document).ready(function() {';

foreach ($this->items as $item) :
	if ($user->authorise('core.edit', 'com_menus')) :
		$script[] = '	function jSelectPosition_' . $item->id .
'(name) {';
		$script[] = '		document.getElementById("' . $item->id .
'").value = name;';
		$script[] =
'		jQuery(".modal").modal("hide");';
		$script[] = '	};';
	endif;
endforeach;

$script[] = '	jQuery(".modal").on("hidden",
function () {';
$script[] = '		setTimeout(function(){';
$script[] = '			window.parent.location.reload();';
$script[] = '		},1000);';
$script[] = '	});';
$script[] = '});';

JFactory::getDocument()->addScriptDeclaration(implode("\n",
$script));
?>
<form action="<?php echo
JRoute::_('index.php?option=com_menus&view=menus');?>"
method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('COM_MENUS_MENU_SEARCH_FILTER'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_MENUS_ITEMS_SEARCH_FILTER'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>
	</fieldset>
	<div class="clearfix"> </div>
	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col" rowspan="2">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th rowspan="2">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder);
?>
				</th>
				<th class="width-30" colspan="3">
					<?php echo
JText::_('COM_MENUS_HEADING_NUMBER_MENU_ITEMS'); ?>
				</th>
				<th class="width-20" rowspan="2">
					<?php echo JText::_('COM_MENUS_HEADING_LINKED_MODULES');
?>
				</th>
				<th class="nowrap id-col" rowspan="2">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
				</th>
			</tr>
			<tr>
				<th class="width-10">
					<?php echo JText::_('COM_MENUS_HEADING_PUBLISHED_ITEMS');
?>
				</th>
				<th class="width-10">
					<?php echo
JText::_('COM_MENUS_HEADING_UNPUBLISHED_ITEMS'); ?>
				</th>
				<th class="width-10">
					<?php echo JText::_('COM_MENUS_HEADING_TRASHED_ITEMS');
?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) :
			$canCreate = $user->authorise('core.create',    
'com_menus');
			$canEdit   = $user->authorise('core.edit',      
'com_menus');
			$canChange = $user->authorise('core.edit.state',
'com_menus');
			$canManageItems = $user->authorise('core.manage',
'com_menus.menu.' . (int) $item->id);
		?>
			<tr class="row<?php echo $i % 2; ?>">
				<td class="center">
					<?php echo JHtml::_('grid.id', $i, $item->id); ?>
				</td>
				<td>
					<?php if ($canManageItems) : ?>
					<a href="<?php echo
JRoute::_('index.php?option=com_menus&view=items&menutype='
. $item->menutype); ?>">
						<?php echo $this->escape($item->title); ?></a>
					<?php else : ?>
						<?php echo $this->escape($item->title); ?>
					<?php endif; ?>
					<p class="smallsub">(<span><?php echo
JText::_('COM_MENUS_MENU_MENUTYPE_LABEL') ?></span>
						<?php if ($canEdit) : ?>
							<?php echo '<a
href="'.JRoute::_('index.php?option=com_menus&task=menu.edit&id='.$item->id).'
title='.$this->escape($item->description).'">'.
							$this->escape($item->menutype).'</a>'; ?>)
						<?php else : ?>
							<?php echo $this->escape($item->menutype)?>)
						<?php endif; ?>
					</p>
				</td>
				<td class="center btns">
					<a href="<?php echo
JRoute::_('index.php?option=com_menus&view=items&menutype='.$item->menutype.'&filter_published=1');?>">
						<?php echo $item->count_published; ?></a>
				</td>
				<td class="center btns">
					<a href="<?php echo
JRoute::_('index.php?option=com_menus&view=items&menutype='.$item->menutype.'&filter_published=0');?>">
						<?php echo $item->count_unpublished; ?></a>
				</td>
				<td class="center btns">
					<a href="<?php echo
JRoute::_('index.php?option=com_menus&view=items&menutype='.$item->menutype.'&filter_published=-2');?>">
						<?php echo $item->count_trashed; ?></a>
				</td>
				<td class="left">
				<ul class="menu-module-list">
					<?php
					if (isset($this->modules[$item->menutype])) :
						foreach ($this->modules[$item->menutype] as &$module) :
						?>
						<li>
							<?php if ($canEdit) : ?>
								<?php $link =
JRoute::_('index.php?option=com_modules&task=module.edit&id='.$module->id.'&return='.$return.'&tmpl=component&layout=modal');
?>
								<a href="#module<?php echo $module->id;
?>Modal" role="button" class="button"
data-toggle="modal" title="<?php echo
JText::_('COM_MENUS_EDIT_MODULE_SETTINGS');?>">
									<?php echo
JText::sprintf('COM_MENUS_MODULE_ACCESS_POSITION',
$this->escape($module->title),
$this->escape($module->access_title),
$this->escape($module->position)); ?></a>
							<?php else : ?>
								<?php echo
JText::sprintf('COM_MENUS_MODULE_ACCESS_POSITION',
$this->escape($module->title),
$this->escape($module->access_title),
$this->escape($module->position)); ?>
							<?php endif; ?>
						</li>
						<?php endforeach; ?>
				</ul>
					<?php foreach ($this->modules[$item->menutype] as
&$module) : ?>
						<?php if ($canEdit) : ?>
							<?php $link =
JRoute::_('index.php?option=com_modules&task=module.edit&id='.$module->id.'&return='.$return.'&tmpl=component&layout=modal');
?>
							<?php echo JHtml::_(
									'bootstrap.renderModal',
									'module' . $module->id . 'Modal',
									array(
										'url'    => $link,
										'title'  =>
JText::_('COM_MENUS_EDIT_MODULE_SETTINGS'),
										'height' => '300px',
										'width'  => '800px',
										'footer' => '<button type="button"
class="btn" data-dismiss="modal">'
											. JText::_('JLIB_HTML_BEHAVIOR_CLOSE') .
'</button>'
											. '<button type="button" class="btn
btn-success" data-dismiss="modal"
onclick="jQuery(\'#module'
											. $module->id . 'Modal
iframe\').contents().find(\'#saveBtn\').click();">'
											. JText::_('JSAVE') . '</button>',
									)
								); ?>
						<?php endif; ?>
					<?php endforeach; ?>
					<?php elseif ($modMenuId) : ?>
						<?php $link =
JRoute::_('index.php?option=com_modules&task=module.add&eid='
. $modMenuId . '&params[menutype]=' . $item->menutype);
?>
						<a href="<?php echo $link; ?>"><?php echo
JText::_('COM_MENUS_ADD_MENU_MODULE'); ?></a>
						<?php echo JHtml::_(
							'bootstrap.renderModal',
							'moduleModal',
							array(
								'url'    => $link,
								'title'  =>
JText::_('COM_MENUS_EDIT_MODULE_SETTINGS'),
								'height' => '500px',
								'width'  => '800px',
								'footer' => '<button type="button"
class="btn" data-dismiss="modal">'
									. JText::_('JLIB_HTML_BEHAVIOR_CLOSE') .
'</button>',
							)
						); ?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_menus/menutypes/default.php000064400000003037151163244070013671
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$input = JFactory::getApplication()->input;
// Checking if loaded via index.php or component.php
$tmpl = ($input->getCmd('tmpl') != '') ?
'1' : '';

JFactory::getDocument()->addScriptDeclaration(
		'
		setmenutype = function(type) {
			var tmpl = ' . json_encode($tmpl) . ';
			if (tmpl)
			{
				window.parent.Joomla.submitbutton("item.setType", type);
				window.parent.jQuery("#menuTypeModal").modal("hide");
			}
			else
			{
				window.location="index.php?option=com_menus&view=item&task=item.setType&layout=edit&type="
+ type;
			}
		};
	'
);
?>

<h2 class="modal-title"><?php echo
JText::_('COM_MENUS_TYPE_CHOOSE'); ?></h2>
<ul class="menu_types">
	<?php foreach ($this->types as $name => $list): ?>
	<li><dl class="menu_type">
			<dt><?php echo JText::_($name); ?></dt>
			<dd><ul>
					<?php foreach ($list as $item): ?>
					<li><a class="choose_type" href="#"
title="<?php echo JText::_($item->description); ?>"
							onclick="javascript:setmenutype('<?php echo
base64_encode(json_encode(array('id' => $this->recordId,
'title' => isset($item->type) ? $item->type :
$item->title, 'request' => $item->request)));
?>')">
							<?php echo JText::_($item->title);?>
						</a>
					</li>
					<?php endforeach; ?>
				</ul>
			</dd>
		</dl>
	</li>
	<?php endforeach; ?>

</ul>
html/com_messages/message/edit.php000064400000002723151163244070013246
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_messages
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.formvalidator');
JHtml::_('behavior.keepalive');

JFactory::getDocument()->addScriptDeclaration("
	Joomla.submitbutton = function(task)
	{
		if (task == 'message.cancel' ||
document.formvalidator.isValid(document.getElementById('message-form')))
		{
			Joomla.submitform(task,
document.getElementById('message-form'));
		}
	}
");
?>

<form action="<?php echo
JRoute::_('index.php?option=com_messages'); ?>"
method="post" name="adminForm"
id="message-form" class="form-validate
form-horizontal">
	<fieldset class="adminform">
		<ul class="adminformlist">
			<li><?php echo
$this->form->getLabel('user_id_to'); ?>
				<?php echo $this->form->getInput('user_id_to');
?></li>

			<li><?php echo
$this->form->getLabel('subject'); ?>
				<?php echo $this->form->getInput('subject');
?></li>
		</ul>
	</fieldset>
	<fieldset class="adminform">
		<legend><?php echo
$this->form->getLabel('message'); ?></legend>
		<ul class="adminformlist">
			<li><?php echo
$this->form->getInput('message'); ?> </li>
		</ul>
	</fieldset>
	<input type="hidden" name="task" value=""
/>
	<?php echo JHtml::_('form.token'); ?>
</form>
html/com_messages/messages/default.php000064400000010136151163244070014125
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.multiselect');

$user      = JFactory::getUser();
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
?>

<form action="<?php echo
JRoute::_('index.php?option=com_messages&view=messages');
?>" method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_MESSAGES_SEARCH_IN_SUBJECT'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>
		<div class="filter-select">
			<label class="selectlabel" for="filter_state">
				<?php echo JText::_('JOPTION_SELECT_PUBLISHED'); ?>
			</label>
			<select name="filter_state" id="filter_state">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED');?></option>
				<?php echo JHtml::_('select.options',
MessagesHelper::getStateOptions(), 'value', 'text',
$this->state->get('filter.state'));?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>

		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'COM_MESSAGES_HEADING_SUBJECT', 'a.subject', $listDirn,
$listOrder); ?>
				</th>
				<th class="width-5">
					<?php echo JHtml::_('grid.sort',
'COM_MESSAGES_HEADING_READ', 'a.state', $listDirn,
$listOrder); ?>
				</th>
				<th class="width-15">
					<?php echo JHtml::_('grid.sort',
'COM_MESSAGES_HEADING_FROM', 'a.user_id_from',
$listDirn, $listOrder); ?>
				</th>
				<th class="nowrap width-20">
					<?php echo JHtml::_('grid.sort', 'JDATE',
'a.date_time', $listDirn, $listOrder); ?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) :
			$canChange = $user->authorise('core.edit.state',
'com_messages');
			?>
			<tr class="row<?php echo $i % 2; ?>">
				<td>
					<?php echo JHtml::_('grid.id', $i, $item->message_id);
?>
				</td>
				<td>
					<a href="<?php echo
JRoute::_('index.php?option=com_messages&view=message&message_id='.(int)
$item->message_id); ?>">
						<?php echo $this->escape($item->subject); ?></a>
				</td>
				<td class="center">
					<?php echo JHtml::_('messages.state', $item->state,
$i, $canChange); ?>
				</td>
				<td>
					<?php echo $item->user_from; ?>
				</td>
				<td>
					<?php echo JHtml::_('date', $item->date_time,
JText::_('DATE_FORMAT_LC2')); ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
</div>
</form>
html/com_modules/module/edit.php000064400000011661151163244070012751
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.formvalidator');
JHtml::_('behavior.combobox');
$hasContent = empty($this->item->module) || $this->item->module
== 'custom' || $this->item->module ==
'mod_custom';

$script = "Joomla.submitbutton = function(task)
	{
			if (task == 'module.cancel' ||
document.formvalidator.isValid(document.getElementById('module-form')))
{";
if ($hasContent)
{
	$script .= $this->form->getField('content')->save();
}
$script .= "	Joomla.submitform(task,
document.getElementById('module-form'));
				if (self != top)
				{
					window.parent.jQuery('.modal').modal('hide');
				}
			}
	}";

JFactory::getDocument()->addScriptDeclaration($script);
?>
<div class="module-edit">

<form action="<?php echo
JRoute::_('index.php?option=com_modules&layout=edit&id='.(int)
$this->item->id); ?>" method="post"
name="adminForm" id="module-form"
class="form-validate">
	<div class="col main-section">
		<fieldset class="adminform">
			<legend><?php echo JText::_('JDETAILS');
?></legend>
			<ul class="adminformlist">

			<li><?php echo $this->form->getLabel('title');
?>
			<?php echo $this->form->getInput('title');
?></li>

			<li><?php echo
$this->form->getLabel('showtitle'); ?>
			<?php echo $this->form->getInput('showtitle');
?></li>

			<li><?php echo
$this->form->getLabel('position'); ?>
			<?php echo $this->form->getInput('custom_position');
?>
			<label id="jform_custom_position-lbl"
for="jform_custom_position"
class="element-invisible"><?php echo
JText::_('TPL_HATHOR_COM_MODULES_CUSTOM_POSITION_LABEL');?></label>
			<?php echo $this->form->getInput('position');
?></li>

			<?php if ((string) $this->item->xml->name != 'Login
Form') : ?>
			<li><?php echo
$this->form->getLabel('published'); ?>
			<?php echo $this->form->getInput('published');
?></li>
			<?php endif; ?>

			<li><?php echo $this->form->getLabel('access');
?>
			<?php echo $this->form->getInput('access');
?></li>

			<li><?php echo
$this->form->getLabel('ordering'); ?>
			<?php echo $this->form->getInput('ordering');
?></li>

			<?php if ((string) $this->item->xml->name != 'Login
Form') : ?>
			<li><?php echo
$this->form->getLabel('publish_up'); ?>
			<?php echo $this->form->getInput('publish_up');
?></li>

			<li><?php echo
$this->form->getLabel('publish_down'); ?>
			<?php echo $this->form->getInput('publish_down');
?></li>
			<?php endif; ?>

			<li><?php echo
$this->form->getLabel('language'); ?>
			<?php echo $this->form->getInput('language');
?></li>

			<li><?php echo $this->form->getLabel('note');
?>
			<?php echo $this->form->getInput('note');
?></li>

			<?php if ($this->item->id) : ?>
				<li><?php echo $this->form->getLabel('id');
?>
				<?php echo $this->form->getInput('id');
?></li>
			<?php endif; ?>

			<li><?php echo $this->form->getLabel('module');
?>
			<?php echo $this->form->getInput('module'); ?>
			<span class="faux-input"><?php if
($this->item->xml) echo ($text = (string)
$this->item->xml->name) ? JText::_($text) :
$this->item->module;else echo
JText::_(COM_MODULES_ERR_XML);?></span></li>

			<li><?php echo
$this->form->getLabel('client_id'); ?>
			<input type="text" size="35"
id="jform_client_id" value="<?php echo
$this->item->client_id == 0 ? JText::_('JSITE') :
JText::_('JADMINISTRATOR'); ?>	"
class="readonly" readonly="readonly" />
			<?php echo $this->form->getInput('client_id');
?></li>
			</ul>
			<div class="clr"></div>

			<?php if ($this->item->xml) : ?>
				<?php if ($text = trim($this->item->xml->description)) :
?>
					<span class="faux-label">
						<?php echo JText::_('COM_MODULES_MODULE_DESCRIPTION');
?>
					</span>
					<div class="clr"></div>
					<div class="readonly mod-desc extdescript">
						<?php echo JText::_($text); ?>
					</div>
				<?php endif; ?>
			<?php else : ?>
				<?php echo JText::_('COM_MODULES_ERR_XML'); ?>
			<?php endif; ?>
			<div class="clr"></div>
		</fieldset>
	</div>

	<div class="col options-section">
	<?php echo JHtml::_('sliders.start',
'module-sliders'); ?>
		<?php echo $this->loadTemplate('options'); ?>
	<?php echo JHtml::_('sliders.end'); ?>
	</div>

	<?php if ($hasContent) : ?>
		<div class="col main-section">
		<fieldset class="adminform">
			<legend><?php echo
JText::_('COM_MODULES_CUSTOM_OUTPUT'); ?></legend>
			<ul class="adminformlist">
				<li><?php echo
$this->form->getLabel('content'); ?>
			<div class="clr"></div>
				<?php echo $this->form->getInput('content');
?></li>
			</ul>
		</fieldset>
		</div>
	<?php endif; ?>

	<?php if ($this->item->client_id == 0) :?>
	<div class="col main-section">
		<?php echo $this->loadTemplate('assignment'); ?>
	</div>
	<?php endif; ?>

	<div>
		<input type="hidden" name="task"
value="" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
</div>
html/com_modules/module/edit_assignment.php000064400000011500151163244070015171
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_modules
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Initialise related data.
JLoader::register('MenusHelper', JPATH_ADMINISTRATOR .
'/components/com_menus/helpers/menus.php');
$menuTypes = MenusHelper::getMenuLinks();

JFactory::getDocument()->addScriptDeclaration("
	window.addEvent('domready', function(){
		validate();
		document.getElements('select').addEvent('change',
function(e){validate();});
	});
	function validate(){
		var value = document.id('jform_assignment').value;
		var list  = document.id('menu-assignment');
		if (value == '-' || value == '0'){
			$$('.jform-assignments-button').each(function(el)
{el.setProperty('disabled', true); });
			list.getElements('input').each(function(el){
				el.setProperty('disabled', true);
				if (value == '-'){
					el.setProperty('checked', false);
				} else {
					el.setProperty('checked', true);
				}
			});
		} else {
			$$('.jform-assignments-button').each(function(el)
{el.setProperty('disabled', false); });
			list.getElements('input').each(function(el){
				el.setProperty('disabled', false);
			});
		}
	}
");
?>

		<fieldset class="adminform">
			<legend><?php echo
JText::_('COM_MODULES_MENU_ASSIGNMENT'); ?></legend>
			<label id="jform_menus-lbl"
for="jform_menus"><?php echo
JText::_('COM_MODULES_MODULE_ASSIGN'); ?></label>

			<fieldset id="jform_menus" class="radio">
				<select name="jform[assignment]"
id="jform_assignment">
					<?php echo JHtml::_('select.options',
ModulesHelper::getAssignmentOptions($this->item->client_id),
'value', 'text', $this->item->assignment,
true);?>
				</select>

			</fieldset>

			<label id="jform_menuselect-lbl"
for="jform_menuselect"><?php echo
JText::_('JGLOBAL_MENU_SELECTION'); ?></label>

			<button type="button" class="jform-assignments-button
jform-rightbtn"
onclick="$$('.chkbox').each(function(el) { el.checked =
!el.checked; });">
				<?php echo JText::_('JGLOBAL_SELECTION_INVERT_ALL'); ?>
			</button>

			<button type="button" class="jform-assignments-button
jform-rightbtn"
onclick="$$('.chkbox').each(function(el) { el.checked =
false; });">
				<?php echo JText::_('JGLOBAL_SELECTION_NONE'); ?>
			</button>

			<button type="button" class="jform-assignments-button
jform-rightbtn"
onclick="$$('.chkbox').each(function(el) { el.checked =
true; });">
				<?php echo JText::_('JGLOBAL_SELECTION_ALL'); ?>
			</button>

			<div class="clr"></div>

			<div id="menu-assignment">

			<?php echo JHtml::_('tabs.start',
'module-menu-assignment-tabs', array('useCookie' =>
1));?>

			<?php foreach ($menuTypes as &$type) :
				echo JHtml::_('tabs.panel', $type->title ?:
$type->menutype, $type->menutype.'-details');

				$chkbox_class = 'chk-menulink-' . $type->id; ?>

				<button type="button" class="jform-assignments-button
jform-rightbtn" onclick="$$('.<?php echo $chkbox_class;
?>').each(function(el) { el.checked = !el.checked; });">
					<?php echo JText::_('JGLOBAL_SELECTION_INVERT'); ?>
				</button>

				<button type="button" class="jform-assignments-button
jform-rightbtn" onclick="$$('.<?php echo $chkbox_class;
?>').each(function(el) { el.checked = false; });">
					<?php echo JText::_('JGLOBAL_SELECTION_NONE'); ?>
				</button>

				<button type="button" class="jform-assignments-button
jform-rightbtn" onclick="$$('.<?php echo $chkbox_class;
?>').each(function(el) { el.checked = true; });">
					<?php echo JText::_('JGLOBAL_SELECTION_ALL'); ?>
				</button>

				<div class="clr"></div>

				<?php $count = count($type->links); ?>
				<?php $i     = 0; ?>
				<?php if ($count) : ?>
				<ul class="menu-links">
					<?php
					foreach ($type->links as $link) :
						if (trim($this->item->assignment) == '-') :
							$checked = '';
						elseif ($this->item->assignment == 0) :
							$checked = ' checked="checked"';
						elseif ($this->item->assignment < 0) :
							$checked = in_array(-$link->value, $this->item->assigned) ?
' checked="checked"' : '';
						elseif ($this->item->assignment > 0) :
							$checked = in_array($link->value, $this->item->assigned) ?
' checked="checked"' : '';
						endif;
					?>
					<li class="menu-link">
						<input type="checkbox" class="chkbox <?php echo
$chkbox_class; ?>" name="jform[assigned][]"
value="<?php echo (int) $link->value;?>"
id="link<?php echo (int) $link->value;?>"<?php echo
$checked;?>/>
						<label for="link<?php echo (int)
$link->value;?>">
							<?php echo $link->text; ?>
						</label>
					</li>
					<?php if ($count > 20 && ++$i == ceil($count / 2))
:?>
					</ul><ul class="menu-links">
					<?php endif; ?>
					<?php endforeach; ?>
				</ul>
				<div class="clr"></div>
				<?php endif; ?>
			<?php endforeach; ?>

			<?php echo JHtml::_('tabs.end');?>

			</div>
		</fieldset>
html/com_modules/module/edit_options.php000064400000002332151163244070014517
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

	$fieldSets = $this->form->getFieldsets('params');

	foreach ($fieldSets as $name => $fieldSet) :
		$label = !empty($fieldSet->label) ? $fieldSet->label :
'COM_MODULES_'.$name.'_FIELDSET_LABEL';
		echo JHtml::_('sliders.panel', JText::_($label),
$name.'-options');
			if (isset($fieldSet->description) &&
trim($fieldSet->description)) :
				echo '<p
class="tip">'.$this->escape(JText::_($fieldSet->description)).'</p>';
			endif;
			?>
		<fieldset class="panelform">
		<legend class="element-invisible"><?php echo
JText::_($label); ?></legend>
		<?php $hidden_fields = ''; ?>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset($name) as $field) :
?>
			<?php if (!$field->hidden) : ?>
			<li>
				<?php echo $field->label; ?>
				<?php echo $field->input; ?>
			</li>
			<?php else : $hidden_fields .= $field->input; ?>
			<?php endif; ?>
			<?php endforeach; ?>
		</ul>
		<?php echo $hidden_fields; ?>
		</fieldset>
	<?php endforeach; ?>
html/com_modules/modules/default.php000064400000025632151163244070013636
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.multiselect');
JHtml::_('behavior.modal');

$client    = $this->state->get('client_id') ?
'administrator' : 'site';
$user      = JFactory::getUser();
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$canOrder  = $user->authorise('core.edit.state',
'com_modules');
$saveOrder = $listOrder == 'ordering';
?>

<form action="<?php echo
JRoute::_('index.php?option=com_modules'); ?>"
method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif; ?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_MODULES_MODULES_FILTER_SEARCH_DESC'); ?>"
/>
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>

		<div class="filter-select">
			<label class="selectlabel" for="client_id">
				<?php echo JText::_('JGLOBAL_FILTER_CLIENT'); ?>
			</label>
			<select name="client_id" id="client_id">
				<?php echo JHtml::_('select.options',
ModulesHelper::getClientOptions(), 'value', 'text',
$this->state->get('client_id')); ?>
			</select>

			<label class="selectlabel" for="filter_state">
				<?php echo JText::_('JOPTION_SELECT_PUBLISHED'); ?>
			</label>
			<select name="filter_state" id="filter_state">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED'); ?></option>
				<?php echo JHtml::_('select.options',
ModulesHelper::getStateOptions(), 'value', 'text',
$this->state->get('filter.state')); ?>
			</select>

			<label class="selectlabel"
for="filter_position">
				<?php echo JText::_('COM_MODULES_OPTION_SELECT_POSITION');
?>
			</label>
			<select name="filter_position"
id="filter_position">
				<option value=""><?php echo
JText::_('COM_MODULES_OPTION_SELECT_POSITION');
?></option>
				<?php echo JHtml::_('select.options',
ModulesHelper::getPositions($this->state->get('client_id')),
'value', 'text',
$this->state->get('filter.position')); ?>
			</select>

			<label class="selectlabel"
for="filter_module">
				<?php echo JText::_('COM_MODULES_OPTION_SELECT_MODULE');
?>
			</label>
			<select name="filter_module"
id="filter_module">
				<option value=""><?php echo
JText::_('COM_MODULES_OPTION_SELECT_MODULE');
?></option>
				<?php echo JHtml::_('select.options',
ModulesHelper::getModules($this->state->get('client_id')),
'value', 'text',
$this->state->get('filter.module')); ?>
			</select>

			<label class="selectlabel"
for="filter_access">
				<?php echo JText::_('JOPTION_SELECT_ACCESS'); ?>
			</label>
			<select name="filter_access"
id="filter_access">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_ACCESS'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('access.assetgroups'), 'value',
'text', $this->state->get('filter.access'));
?>
			</select>

			<label class="selectlabel"
for="filter_language">
				<?php echo JText::_('JOPTION_SELECT_LANGUAGE'); ?>
			</label>
			<select name="filter_language"
id="filter_language">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_LANGUAGE'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('contentlanguage.existing', true, true),
'value', 'text',
$this->state->get('filter.language')); ?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>

		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist" id="modules-mgr">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_TITLE', 'title', $listDirn, $listOrder); ?>
				</th>
				<th class="width-5">
					<?php echo JHtml::_('grid.sort', 'JSTATUS',
'published', $listDirn, $listOrder); ?>
				</th>
				<th class="width-20">
					<?php echo JHtml::_('grid.sort',
'COM_MODULES_HEADING_POSITION', 'position', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap ordering-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ORDERING', 'ordering', $listDirn,
$listOrder); ?>
					<?php if ($canOrder && $saveOrder) : ?>
						<?php echo JHtml::_('grid.order', $this->items,
'filesave.png', 'modules.saveorder'); ?>
					<?php endif; ?>
				</th>
				<th class="width-10">
					<?php echo JHtml::_('grid.sort',
'COM_MODULES_HEADING_MODULE', 'name', $listDirn,
$listOrder); ?>
				</th>
				<th class="width-10">
					<?php echo JHtml::_('grid.sort',
'COM_MODULES_HEADING_PAGES', 'pages', $listDirn,
$listOrder); ?>
				</th>
				<th class="title access-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ACCESS', 'access', $listDirn,
$listOrder); ?>
				</th>
				<th class="language-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_LANGUAGE', 'language_title', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'id', $listDirn, $listOrder); ?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) :
			$ordering  = ($listOrder == 'ordering');
			$canCreate  = $user->authorise('core.create',    
'com_modules');
			$canEdit    = $user->authorise('core.edit',      
'com_modules');
			$canCheckin = $user->authorise('core.manage',    
'com_checkin') || $item->checked_out ==
$user->get('id') || $item->checked_out == 0;
			$canChange  = $user->authorise('core.edit.state',
'com_modules') && $canCheckin;
		?>
			<tr class="row<?php echo $i % 2; ?>">
				<td class="center">
					<?php echo JHtml::_('grid.id', $i, $item->id); ?>
				</td>
				<td>
					<?php if ($item->checked_out) : ?>
						<?php echo JHtml::_('jgrid.checkedout', $i,
$item->editor, $item->checked_out_time, 'modules.',
$canCheckin); ?>
					<?php endif; ?>
					<?php if ($canEdit) : ?>
						<a href="<?php echo
JRoute::_('index.php?option=com_modules&task=module.edit&id='.(int)
$item->id); ?>">
							<?php echo $this->escape($item->title); ?></a>
					<?php else : ?>
							<?php echo $this->escape($item->title); ?>
					<?php endif; ?>
					<?php if (!empty($item->note)) : ?>
					<p class="smallsub">
						<?php echo JText::sprintf('JGLOBAL_LIST_NOTE',
$this->escape($item->note)); ?></p>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php // Check if extension is enabled ?>
					<?php if ($item->enabled > 0) : ?>
						<?php echo JHtml::_('modules.state',
$item->published, $i, $canChange, 'cb'); ?>
					<?php else : ?>
						<?php // Extension is not enabled, show a message that indicates
this. ?>
							<button class="btn btn-micro hasTooltip"
title="<?php echo
JText::_('COM_MODULES_MSG_MANAGE_EXTENSION_DISABLED');
?>">
								<span class="icon-ban-circle"
aria-hidden="true"></span>
							</button>
					<?php endif; ?>					
				</td>
				<td class="center">
					<?php echo $item->position; ?>
				</td>
				<td class="order">
					<?php if ($canChange) : ?>
						<?php if ($saveOrder) :?>
							<?php if ($listDirn == 'asc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
@$this->items[$i - 1]->position == $item->position,
'modules.orderup', 'JLIB_HTML_MOVE_UP', $ordering);
?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
@$this->items[$i + 1]->position == $item->position,
'modules.orderdown', 'JLIB_HTML_MOVE_DOWN', $ordering);
?></span>
							<?php elseif ($listDirn == 'desc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
@$this->items[$i - 1]->position == $item->position,
'modules.orderdown', 'JLIB_HTML_MOVE_UP', $ordering);
?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
@$this->items[$i + 1]->position == $item->position,
'modules.orderup', 'JLIB_HTML_MOVE_DOWN', $ordering);
?></span>
							<?php endif; ?>
						<?php endif; ?>
						<?php $disabled = $saveOrder ?  '' :
'disabled="disabled"'; ?>
						<input type="text" name="order[]"
value="<?php echo $item->ordering; ?>" <?php echo
$disabled; ?> class="text-area-order" title="<?php
echo $item->title; ?> order" />
					<?php else : ?>
						<?php echo $item->ordering; ?>
					<?php endif; ?>
				</td>
				<td class="left">
					<?php echo $item->name; ?>
				</td>
				<td class="center">
					<?php echo $item->pages; ?>
				</td>

				<td class="center">
					<?php echo $this->escape($item->access_level); ?>
				</td>
				<td class="center">
					<?php if ($item->language == ''):?>
						<?php echo JText::_('JDEFAULT'); ?>
					<?php elseif ($item->language == '*'):?>
						<?php echo JText::alt('JALL', 'language');
?>
					<?php else:?>
						<?php echo $item->language_title ? JHtml::_('image',
'mod_languages/' . $item->language_image . '.gif',
$item->language_title, array('title' =>
$item->language_title), true) . '&nbsp;' .
$this->escape($item->language_title) :
JText::_('JUNDEFINED'); ?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo (int) $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php // Load the batch processing form. ?>
	<?php if ($user->authorise('core.create',
'com_modules')
		&& $user->authorise('core.edit',
'com_modules')
		&& $user->authorise('core.edit.state',
'com_modules')) : ?>
		<?php echo JHtml::_(
			'bootstrap.renderModal',
			'collapseModal',
			array(
				'title' =>
JText::_('COM_MODULES_BATCH_OPTIONS'),
				'footer' =>
$this->loadTemplate('batch_footer')
			),
			$this->loadTemplate('batch_body')
		); ?>
	<?php endif; ?>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
</div>
</form>
<script type="text/javascript">
jQuery("#client_id").on("change", function()
{
	jQuery("#filter_position, #filter_module,
#filter_language").val("");
});
</script>
html/com_modules/positions/modal.php000064400000010702151163244070013655
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

$function  =
JFactory::getApplication()->input->getCmd('function',
'jSelectPosition');
$lang      = JFactory::getLanguage();
$ordering  =
$this->escape($this->state->get('list.ordering'));
$direction =
$this->escape($this->state->get('list.direction'));
$clientId  = $this->state->get('client_id');
$state     = $this->state->get('filter.state');
$template  = $this->state->get('filter.template');
$type      = $this->state->get('filter.type');
?>
<form action="<?php echo
JRoute::_('index.php?option=com_modules&view=positions&layout=modal&tmpl=component&function='.$function.'&client_id='
.$clientId);?>" method="post" name="adminForm"
id="adminForm">
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label for="filter_search">
				<?php echo JText::_('JSEARCH_FILTER_LABEL'); ?>
			</label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" size="30" title="<?php echo
JText::_('COM_MODULES_FILTER_SEARCH_DESC'); ?>" />

			<button type="submit">
				<?php echo JText::_('JSEARCH_FILTER_SUBMIT');
?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();">
				<?php echo JText::_('JSEARCH_FILTER_CLEAR');
?></button>
		</div>

		<div class="filter-select">
			<label class="selectlabel" for="filter_state">
				<?php echo JText::_('JOPTION_SELECT_PUBLISHED'); ?>
			</label>
			<select name="filter_state" id="filter_state">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('modules.templateStates'), 'value',
'text', $state, true);?>
			</select>

			<label class="selectlabel" for="filter_type">
				<?php echo JText::_('COM_MODULES_OPTION_SELECT_TYPE');
?>
			</label>
			<select name="filter_type" id="filter_type">
				<option value=""><?php echo
JText::_('COM_MODULES_OPTION_SELECT_TYPE');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('modules.types'), 'value', 'text',
$type, true);?>
			</select>

			<label class="selectlabel"
for="filter_template">
				<?php echo JText::_('JOPTION_SELECT_TEMPLATE'); ?>
			</label>
			<select name="filter_template"
id="filter_template">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_TEMPLATE');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('modules.templates', $clientId), 'value',
'text', $template, true);?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="title width-20">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_TITLE', 'value', $direction, $ordering); ?>
				</th>
				<th>
					<?php echo JHtml::_('grid.sort',
'COM_MODULES_HEADING_TEMPLATES', 'templates',
$direction, $ordering); ?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php $i = 1; foreach ($this->items as $value => $templates) :
?>
			<tr class="row<?php echo $i = 1 - $i;?>">
				<td>
					<a class="pointer" onclick="if (window.parent)
window.parent.<?php echo $function;?>('<?php echo $value;
?>');"><?php echo $this->escape($value);
?></a>
				</td>
				<td>
					<?php if (!empty($templates)):?>
					<a class="pointer" onclick="if (window.parent)
window.parent.<?php echo $function;?>('<?php echo $value;
?>');">
						<ul>
						<?php foreach ($templates as $template => $label):?>
							<li><?php echo $lang->hasKey($label) ?
JText::sprintf('COM_MODULES_MODULE_TEMPLATE_POSITION',
JText::_($template), JText::_($label)) :
JText::_($template);?></li>
						<?php endforeach;?>
						</ul>
					</a>
					<?php endif;?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<div>
		<input type="hidden" name="task"
value="" />
		<input type="hidden" name="boxchecked"
value="0" />
		<input type="hidden" name="filter_order"
value="<?php echo $ordering; ?>" />
		<input type="hidden" name="filter_order_Dir"
value="<?php echo $direction; ?>" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_newsfeeds/newsfeed/edit.php000064400000012005151163244070013570
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.formvalidator');
JHtml::_('behavior.keepalive');

$app = JFactory::getApplication();
$input = $app->input;

$saveHistory =
$this->state->get('params')->get('save_history',
0);

$assoc = JLanguageAssociations::isEnabled();

JFactory::getDocument()->addScriptDeclaration("
	Joomla.submitbutton = function(task)
	{
		if (task == 'newsfeed.cancel' ||
document.formvalidator.isValid(document.getElementById('newsfeed-form')))
		{
			Joomla.submitform(task,
document.getElementById('newsfeed-form'));
		}
	}
");
?>

<form action="<?php echo
JRoute::_('index.php?option=com_newsfeeds&id='.(int)
$this->item->id); ?>" method="post"
name="adminForm" id="newsfeed-form"
class="form-validate">
	<div class="col main-section">
		<fieldset class="adminform">
			<legend><?php echo empty($this->item->id) ?
JText::_('COM_NEWSFEEDS_NEW_NEWSFEED') :
JText::sprintf('COM_NEWSFEEDS_EDIT_NEWSFEED',
$this->item->id); ?></legend>
			<ul class="adminformlist">
			<li><?php echo $this->form->getLabel('name');
?>
			<?php echo $this->form->getInput('name');
?></li>

			<li><?php echo $this->form->getLabel('alias');
?>
			<?php echo $this->form->getInput('alias');
?></li>

			<li><?php echo $this->form->getLabel('link');
?>
			<?php echo $this->form->getInput('link');
?></li>

			<li><?php echo $this->form->getLabel('catid');
?>
			<?php echo $this->form->getInput('catid');
?></li>

			<li><?php echo
$this->form->getLabel('published'); ?>
			<?php echo $this->form->getInput('published');
?></li>

			<li><?php echo $this->form->getLabel('access');
?>
			<?php echo $this->form->getInput('access');
?></li>

			<li><?php echo
$this->form->getLabel('ordering'); ?>
			<?php echo $this->form->getInput('ordering');
?></li>

			<li><?php echo
$this->form->getLabel('language'); ?>
			<?php echo $this->form->getInput('language');
?></li>

			<!-- Tag field -->
			<li><?php echo $this->form->getLabel('tags');
?>
				<div class="is-tagbox">
					<?php echo $this->form->getInput('tags'); ?>
				</div>
			</li>

			<?php if ($saveHistory) : ?>
				<li><?php echo
$this->form->getLabel('version_note'); ?>
				<?php echo $this->form->getInput('version_note');
?></li>
			<?php endif; ?>

			<li><?php echo $this->form->getLabel('id');
?>
			<?php echo $this->form->getInput('id');
?></li>
			</ul>
		</fieldset>
	</div>

	<div class="col options-section">
		<?php echo JHtml::_('sliders.start',
'newsfeed-sliders-' . $this->item->id,
array('useCookie' => 1)); ?>

			<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_PUBLISHING'),
'publishing-details'); ?>

			<fieldset class="panelform">
			<legend class="element-invisible"><?php echo
JText::_('JGLOBAL_FIELDSET_PUBLISHING'); ?></legend>
			<ul class="adminformlist">
				<li><?php echo
$this->form->getLabel('created_by'); ?>
				<?php echo $this->form->getInput('created_by');
?></li>

				<li><?php echo
$this->form->getLabel('created_by_alias'); ?>
				<?php echo
$this->form->getInput('created_by_alias'); ?></li>

				<li><?php echo
$this->form->getLabel('created'); ?>
				<?php echo $this->form->getInput('created');
?></li>

				<li><?php echo
$this->form->getLabel('publish_up'); ?>
				<?php echo $this->form->getInput('publish_up');
?></li>

				<li><?php echo
$this->form->getLabel('publish_down'); ?>
				<?php echo $this->form->getInput('publish_down');
?></li>

				<?php if ($this->item->modified_by) : ?>
					<li><?php echo
$this->form->getLabel('modified_by'); ?>
					<?php echo $this->form->getInput('modified_by');
?></li>

					<li><?php echo
$this->form->getLabel('modified'); ?>
					<?php echo $this->form->getInput('modified');
?></li>
				<?php endif; ?>

				<li><?php echo
$this->form->getLabel('numarticles'); ?>
				<?php echo $this->form->getInput('numarticles');
?></li>

				<li><?php echo
$this->form->getLabel('cache_time'); ?>
				<?php echo $this->form->getInput('cache_time');
?></li>

				<li><?php echo $this->form->getLabel('rtl');
?>
				<?php echo $this->form->getInput('rtl');
?></li>
			</ul>
			</fieldset>

			<?php echo $this->loadTemplate('params'); ?>

			<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_METADATA_OPTIONS'),
'meta-options'); ?>
			<fieldset class="panelform">
			<legend class="element-invisible"><?php echo
JText::_('JGLOBAL_FIELDSET_METADATA_OPTIONS');
?></legend>
				<?php echo $this->loadTemplate('metadata'); ?>
			</fieldset>

			<?php if ($assoc) : ?>
				<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_ASSOCIATIONS'),
'-options');?>
				<?php echo $this->loadTemplate('associations'); ?>
			<?php endif; ?>

		<?php echo JHtml::_('sliders.end'); ?>
		<input type="hidden" name="task"
value="" />
		<?php echo JHtml::_('form.token'); ?>
	</div>

	<div class="clr"></div>
</form>
html/com_newsfeeds/newsfeed/edit_params.php000064400000001704151163244070015137
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$fieldSets = $this->form->getFieldsets('params');
foreach ($fieldSets as $name => $fieldSet) :
	echo JHtml::_('sliders.panel', JText::_($fieldSet->label),
$name.'-params');
	if (isset($fieldSet->description) &&
trim($fieldSet->description)) :
		echo '<p
class="tip">'.$this->escape(JText::_($fieldSet->description)).'</p>';
	endif;
	?>
	<fieldset class="panelform">
	<legend class="element-invisible"><?php echo
JText::_($fieldSet->label); ?></legend>
	<ul class="adminformlist">
		<?php foreach ($this->form->getFieldset($name) as $field) :
?>
			<li><?php echo $field->label; ?>
			<?php echo $field->input; ?></li>
		<?php endforeach; ?>
	</ul>
	</fieldset>
<?php endforeach; ?>
html/com_newsfeeds/newsfeeds/default.php000064400000024277151163244070014470
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.multiselect');

$app       = JFactory::getApplication();
$user      = JFactory::getUser();
$userId    = $user->get('id');
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$canOrder  = $user->authorise('core.edit.state',
'com_newsfeeds');
$saveOrder = $listOrder == 'a.ordering';
$assoc     = JLanguageAssociations::isEnabled();
?>

<form action="<?php echo
JRoute::_('index.php?option=com_newsfeeds&view=newsfeeds');
?>" method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif; ?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_NEWSFEEDS_SEARCH_IN_TITLE'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>

		<div class="filter-select">
			<label class="selectlabel"
for="filter_published">
				<?php echo JText::_('JOPTION_SELECT_PUBLISHED'); ?>
			</label>
			<select name="filter_published"
id="filter_published">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('jgrid.publishedOptions'), 'value',
'text', $this->state->get('filter.published'),
true); ?>
			</select>

			<label class="selectlabel"
for="filter_category_id">
				<?php echo JText::_('JOPTION_SELECT_CATEGORY'); ?>
			</label>
			<select name="filter_category_id"
id="filter_category_id">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_CATEGORY'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('category.options', 'com_newsfeeds'),
'value', 'text',
$this->state->get('filter.category_id')); ?>
			</select>

			<label class="selectlabel"
for="filter_access">
				<?php echo JText::_('JOPTION_SELECT_ACCESS'); ?>
			</label>
			<select name="filter_access"
id="filter_access">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_ACCESS'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('access.assetgroups'), 'value',
'text', $this->state->get('filter.access'));
?>
			</select>

			<label class="selectlabel"
for="filter_language">
				<?php echo JText::_('JOPTION_SELECT_LANGUAGE'); ?>
			</label>
			<select name="filter_language"
id="filter_language">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_LANGUAGE'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('contentlanguage.existing', true, true),
'value', 'text',
$this->state->get('filter.language')); ?>
			</select>

			<label class="selectlabel" for="filter_tag">
				<?php echo JText::_('JOPTION_SELECT_TAG'); ?>
			</label>
			<select name="filter_tag" id="filter_tag">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_TAG'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('tag.options', true, true), 'value',
'text', $this->state->get('filter.tag')); ?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_TITLE', 'a.name', $listDirn, $listOrder);
?>
				</th>
				<th class="nowrap state-col">
					<?php echo JHtml::_('grid.sort', 'JSTATUS',
'a.published', $listDirn, $listOrder); ?>
				</th>
				<th class="nowrap title category-col">
					<?php echo JHtml::_('grid.sort', 'JCATEGORY',
'category_title', $listDirn, $listOrder); ?>
				</th>
				<th class="nowrap ordering-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ORDERING', 'a.ordering', $listDirn,
$listOrder); ?>
					<?php if ($canOrder && $saveOrder) : ?>
						<?php echo JHtml::_('grid.order', $this->items,
'filesave.png', 'newsfeeds.saveorder'); ?>
					<?php endif; ?>
				</th>
				<th class="title access-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ACCESS', 'a.access', $listDirn,
$listOrder); ?>
				</th>
				<th class="width-10">
					<?php echo JHtml::_('grid.sort',
'COM_NEWSFEEDS_NUM_ARTICLES_HEADING', 'numarticles',
$listDirn, $listOrder); ?>
				</th>
				<th class="width-5">
					<?php echo JHtml::_('grid.sort',
'COM_NEWSFEEDS_CACHE_TIME_HEADING', 'a.cache_time',
$listDirn, $listOrder); ?>
				</th>
				<?php if ($assoc) : ?>
					<th class="width-5">
						<?php echo JHtml::_('grid.sort',
'COM_NEWSFEEDS_HEADING_ASSOCIATION', 'association',
$listDirn, $listOrder); ?>
					</th>
				<?php endif; ?>
				<th class="width-5">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_LANGUAGE', 'a.language', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) :
			$ordering   = ($listOrder == 'a.ordering');
			$canCreate  = $user->authorise('core.create',    
'com_newsfeeds.category.' . $item->catid);
			$canEdit    = $user->authorise('core.edit',      
'com_newsfeeds.category.' . $item->catid);
			$canCheckin = $user->authorise('core.manage',    
'com_checkin') || $item->checked_out ==
$user->get('id') || $item->checked_out == 0;
			$canChange  = $user->authorise('core.edit.state',
'com_newsfeeds.category.' . $item->catid) &&
$canCheckin;
			?>
			<tr class="row<?php echo $i % 2; ?>">
				<th class="center">
					<?php echo JHtml::_('grid.id', $i, $item->id); ?>
				</th>
				<td>
					<?php if ($item->checked_out) : ?>
						<?php echo JHtml::_('jgrid.checkedout', $i,
$item->editor, $item->checked_out_time, 'newsfeeds.',
$canCheckin); ?>
					<?php endif; ?>
					<?php if ($canEdit) : ?>
						<a href="<?php echo
JRoute::_('index.php?option=com_newsfeeds&task=newsfeed.edit&id='.(int)
$item->id); ?>">
							<?php echo $this->escape($item->name); ?></a>
					<?php else : ?>
							<?php echo $this->escape($item->name); ?>
					<?php endif; ?>
					<p class="smallsub">
						<?php echo JText::sprintf('JGLOBAL_LIST_ALIAS',
$this->escape($item->alias)); ?></p>
				</td>
				<td class="center">
					<?php echo JHtml::_('jgrid.published',
$item->published, $i, 'newsfeeds.', $canChange,
'cb', $item->publish_up, $item->publish_down); ?>
				</td>
				<td class="center">
					<?php echo $this->escape($item->category_title); ?>
				</td>
				<td class="order">
					<?php if ($canChange) : ?>
						<?php if ($saveOrder) :?>
							<?php if ($listDirn == 'asc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
$item->catid == @$this->items[$i - 1]->catid,
'newsfeeds.orderup', 'JLIB_HTML_MOVE_UP', $ordering);
?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
$item->catid == @$this->items[$i + 1]->catid,
'newsfeeds.orderdown', 'JLIB_HTML_MOVE_DOWN',
$ordering); ?></span>
							<?php elseif ($listDirn == 'desc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
$item->catid == @$this->items[$i - 1]->catid,
'newsfeeds.orderdown', 'JLIB_HTML_MOVE_UP', $ordering);
?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
$item->catid == @$this->items[$i + 1]->catid,
'newsfeeds.orderup', 'JLIB_HTML_MOVE_DOWN', $ordering);
?></span>
							<?php endif; ?>
						<?php endif; ?>
						<?php $disabled = $saveOrder ?  '' :
'disabled="disabled"'; ?>
						<input type="text" name="order[]"
size="5" value="<?php echo $item->ordering;
?>" <?php echo $disabled; ?>
class="text-area-order" title="<?php echo $item->name;
?> order" />
					<?php else : ?>
						<?php echo $item->ordering; ?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo $this->escape($item->access_level); ?>
				</td>
				<td class="center">
					<?php echo (int) $item->numarticles; ?>
				</td>
				<td class="center">
					<?php echo (int) $item->cache_time; ?>
				</td>
				<?php if ($assoc) : ?>
					<td class="center">
						<?php if ($item->association) : ?>
							<?php echo JHtml::_('newsfeed.association',
$item->id); ?>
						<?php endif; ?>
					</td>
				<?php endif; ?>
				<td class="center">
					<?php echo
JLayoutHelper::render('joomla.content.language', $item); ?>
				</td>
				<td class="center">
					<?php echo (int) $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php //Load the batch processing form if user is allowed ?>
	<?php if ($user->authorise('core.create',
'com_newsfeeds')
		&& $user->authorise('core.edit',
'com_newsfeeds')
		&& $user->authorise('core.edit.state',
'com_newsfeeds')) : ?>
		<?php echo JHtml::_(
			'bootstrap.renderModal',
			'collapseModal',
			array(
				'title'  =>
JText::_('COM_NEWSFEEDS_BATCH_OPTIONS'),
				'footer' =>
$this->loadTemplate('batch_footer'),
			),
			$this->loadTemplate('batch_body')
		); ?>
	<?php endif; ?>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
</div>
</form>
html/com_newsfeeds/newsfeeds/modal.php000064400000013015151163244070014124
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

$forcedLanguage =
JFactory::getApplication()->input->get('forcedLanguage',
'', 'cmd');

$function  =
JFactory::getApplication()->input->getCmd('function',
'jSelectNewsfeed');
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
?>
<form action="<?php echo
JRoute::_('index.php?option=com_newsfeeds&view=newsfeeds&layout=modal&tmpl=component');?>"
method="post" name="adminForm"
id="adminForm">
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search fltlft">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" size="30" title="<?php echo
JText::_('COM_NEWSFEEDS_SEARCH_IN_TITLE'); ?>" />

			<button type="submit">
				<?php echo JText::_('JSEARCH_FILTER_SUBMIT');
?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();">
				<?php echo JText::_('JSEARCH_FILTER_CLEAR');
?></button>
		</div>

		<div class="filter-select fltrt">
			<label class="selectlabel"
for="filter_access">
				<?php echo JText::_('JOPTION_SELECT_ACCESS'); ?>
			</label>
			<select name="filter_access"
id="filter_access">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_ACCESS');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('access.assetgroups'), 'value',
'text', $this->state->get('filter.access'));?>
			</select>

			<label class="selectlabel"
for="filter_published">
				<?php echo JText::_('JOPTION_SELECT_PUBLISHED'); ?>
			</label>
			<select name="filter_published"
id="filter_published">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('jgrid.publishedOptions'), 'value',
'text', $this->state->get('filter.state'),
true);?>
			</select>

			<label class="selectlabel"
for="filter_category_id">
				<?php echo JText::_('JOPTION_SELECT_CATEGORY'); ?>
			</label>
			<select name="filter_category_id"
id="filter_category_id">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_CATEGORY');?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('category.options', 'com_newsfeeds'),
'value', 'text',
$this->state->get('filter.category_id'));?>
			</select>

			<?php if ($forcedLanguage) : ?>
				<input type="hidden" name="forcedLanguage"
value="<?php echo $this->escape($forcedLanguage); ?>"
/>
				<input type="hidden" name="filter_language"
value="<?php echo
$this->escape($this->state->get('filter.language'));
?>" />
			<?php else : ?>
				<label class="selectlabel"
for="filter_language"><?php echo
JText::_('JOPTION_SELECT_LANGUAGE'); ?></label>
				<select name="filter_language"
id="filter_language">
					<option value=""><?php echo
JText::_('JOPTION_SELECT_LANGUAGE');?></option>
					<?php echo JHtml::_('select.options',
JHtml::_('contentlanguage.existing', true, true),
'value', 'text',
$this->state->get('filter.language'));?>
				</select>
			<?php endif; ?>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>

	<table class="adminlist modal">
		<thead>
			<tr>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_TITLE', 'a.name', $listDirn, $listOrder);
?>
				</th>
				<th class="title access-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ACCESS', 'access_level', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap state-col">
					<?php echo JHtml::_('grid.sort', 'JCATEGORY',
'a.catid', $listDirn, $listOrder); ?>
				</th>
				<th class="title language-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_LANGUAGE', 'language', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) : ?>
			<tr class="row<?php echo $i % 2; ?>">
				<th>
					<a class="pointer" onclick="if (window.parent)
window.parent.<?php echo
$this->escape($function);?>('<?php echo $item->id;
?>', '<?php echo
$this->escape(addslashes($item->name)); ?>');">
						<?php echo $this->escape($item->name); ?></a>
				</th>
				<td class="center">
					<?php echo $this->escape($item->access_level); ?>
				</td>
				<td class="center">
					<?php echo $this->escape($item->category_title); ?>
				</td>
				<td class="center">
					<?php echo
JLayoutHelper::render('joomla.content.language', $item); ?>
				</td>
				<td class="center">
					<?php echo (int) $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<input type="hidden" name="forcedLanguage"
value="<?php echo $forcedLanguage; ?>" />
	<?php echo JHtml::_('form.token'); ?>
</form>
html/com_plugins/plugin/edit.php000064400000005376151163244070013001
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.formvalidator');

JFactory::getDocument()->addScriptDeclaration("
	Joomla.submitbutton = function(task)
	{
		if (task == 'plugin.cancel' ||
document.formvalidator.isValid(document.getElementById('style-form')))
		{
			Joomla.submitform(task,
document.getElementById('style-form'));
		}
	}
");
?>

<form action="<?php echo
JRoute::_('index.php?option=com_plugins&layout=edit&extension_id='.(int)
$this->item->extension_id); ?>" method="post"
name="adminForm" id="style-form"
class="form-validate">
	<div class="col main-section">
		<fieldset class="adminform">
			<legend><?php echo JText::_('JDETAILS')
?></legend>
			<ul class="adminformlist">

			<li><?php echo $this->form->getLabel('name');
?>
			<?php echo $this->form->getInput('name'); ?>
			<span class="readonly plg-name"><?php echo
JText::_($this->item->name);?></span></li>

			<li><?php echo
$this->form->getLabel('enabled'); ?>
			<?php echo $this->form->getInput('enabled');
?></li>

			<li><?php echo $this->form->getLabel('access');
?>
			<?php echo $this->form->getInput('access');
?></li>

			<li><?php echo
$this->form->getLabel('ordering'); ?>
			<?php echo $this->form->getInput('ordering');
?></li>

			<li><?php echo $this->form->getLabel('folder');
?>
			<?php echo $this->form->getInput('folder');
?></li>

			<li><?php echo
$this->form->getLabel('element'); ?>
			<?php echo $this->form->getInput('element');
?></li>

			<?php if ($this->item->extension_id) : ?>
				<li><?php echo
$this->form->getLabel('extension_id'); ?>
				<?php echo $this->form->getInput('extension_id');
?></li>
			<?php endif; ?>
			</ul>
			<!-- Plugin metadata -->
			<?php if ($this->item->xml) : ?>
				<?php if ($text = trim($this->item->xml->description)) :
?>

					<label id="jform_extdescription-lbl">
						<?php echo JText::_('JGLOBAL_DESCRIPTION'); ?>
					</label>
					<div class="clr"></div>
					<div class="readonly plg-desc extdescript">
						<?php echo JText::_($text); ?>
					</div>

				<?php endif; ?>
			<?php else : ?>
				<?php echo JText::_('COM_PLUGINS_XML_ERR'); ?>
			<?php endif; ?>

		</fieldset>
	</div>

	<div class="col options-section">
	<?php echo JHtml::_('sliders.start',
'plugin-sliders-'.$this->item->extension_id); ?>

		<?php echo $this->loadTemplate('options'); ?>

		<div class="clr"></div>

	<?php echo JHtml::_('sliders.end'); ?>
	<input type="hidden" name="task" value=""
/>
	<?php echo JHtml::_('form.token'); ?>
	</div>

	<div class="clr"></div>
</form>
html/com_plugins/plugin/edit_options.php000064400000002312151163244070014537
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$fieldSets = $this->form->getFieldsets('params');

foreach ($fieldSets as $name => $fieldSet) :
	$label = !empty($fieldSet->label) ? $fieldSet->label :
'COM_PLUGINS_'.$name.'_FIELDSET_LABEL';
	echo JHtml::_('sliders.panel', JText::_($label),
$name.'-options');
	if (isset($fieldSet->description) &&
trim($fieldSet->description)) :
		echo '<p
class="tip">'.$this->escape(JText::_($fieldSet->description)).'</p>';
	endif;
	?>
	<fieldset class="panelform">
		<legend class="element-invisible"><?php echo
JText::_($label) ?></legend>
		<?php $hidden_fields = ''; ?>
		<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset($name) as $field) :
?>
			<?php if (!$field->hidden) : ?>
			<li>
				<?php echo $field->label; ?>
				<?php echo $field->input; ?>
			</li>
			<?php else : $hidden_fields .= $field->input; ?>
			<?php endif; ?>
			<?php endforeach; ?>
		</ul>
		<?php echo $hidden_fields; ?>
	</fieldset>
<?php endforeach; ?>
html/com_plugins/plugins/default.php000064400000017104151163244070013653
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.multiselect');

$user      = JFactory::getUser();
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$canOrder  = $user->authorise('core.edit.state',
'com_plugins');
$saveOrder = $listOrder == 'ordering';
?>
<form action="<?php echo
JRoute::_('index.php?option=com_plugins&view=plugins');
?>" method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif; ?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_PLUGINS_SEARCH_IN_TITLE'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>

		<div class="filter-select">
			<label class="selectlabel"
for="filter_enabled">
				<?php echo JText::_('JOPTION_SELECT_PUBLISHED'); ?>
			</label>
			<select name="filter_enabled"
id="filter_enabled">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED'); ?></option>
				<?php echo JHtml::_('select.options',
PluginsHelper::publishedOptions(), 'value', 'text',
$this->state->get('filter.enabled'), true); ?>
			</select>

			<label class="selectlabel"
for="filter_folder">
				<?php echo JText::_('COM_PLUGINS_OPTION_FOLDER'); ?>
			</label>
			<select name="filter_folder"
id="filter_folder">
				<option value=""><?php echo
JText::_('COM_PLUGINS_OPTION_FOLDER'); ?></option>
				<?php echo JHtml::_('select.options',
PluginsHelper::folderOptions(), 'value', 'text',
$this->state->get('filter.folder')); ?>
			</select>
			<label class="selectlabel"
for="filter_access">
				<?php echo JText::_('JOPTION_SELECT_ACCESS'); ?>
			</label>
			<select name="filter_access"
id="filter_access">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_ACCESS'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('access.assetgroups'), 'value',
'text', $this->state->get('filter.access'));
?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'COM_PLUGINS_NAME_HEADING', 'name', $listDirn,
$listOrder); ?>
				</th>
				<th class="width-5">
					<?php echo JHtml::_('grid.sort', 'JENABLED',
'enabled', $listDirn, $listOrder); ?>
				</th>
				<th class="nowrap ordering-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ORDERING', 'ordering', $listDirn,
$listOrder); ?>
					<?php if ($canOrder && $saveOrder) : ?>
						<?php echo JHtml::_('grid.order', $this->items,
'filesave.png', 'plugins.saveorder'); ?>
					<?php endif; ?>
				</th>

				<th class="nowrap width-10">
					<?php echo JHtml::_('grid.sort',
'COM_PLUGINS_FOLDER_HEADING', 'folder', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap width-10">
					<?php echo JHtml::_('grid.sort',
'COM_PLUGINS_ELEMENT_HEADING', 'element', $listDirn,
$listOrder); ?>
				</th>
				<th class="title access-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ACCESS', 'access', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'extension_id', $listDirn,
$listOrder); ?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) :
			$ordering   = ($listOrder == 'ordering');
			$canEdit    = $user->authorise('core.edit',      
'com_plugins');
			$canCheckin = $user->authorise('core.manage',    
'com_checkin') || $item->checked_out ==
$user->get('id') || $item->checked_out == 0;
			$canChange  = $user->authorise('core.edit.state',
'com_plugins') && $canCheckin;
		?>
			<tr class="row<?php echo $i % 2; ?>">
				<td class="center">
					<?php echo JHtml::_('grid.id', $i,
$item->extension_id); ?>
				</td>
				<td>
					<?php if ($item->checked_out) : ?>
						<?php echo JHtml::_('jgrid.checkedout', $i,
$item->editor, $item->checked_out_time, 'plugins.',
$canCheckin); ?>
					<?php endif; ?>
					<?php if ($canEdit) : ?>
						<a href="<?php echo
JRoute::_('index.php?option=com_plugins&task=plugin.edit&extension_id='.(int)
$item->extension_id); ?>">
							<?php echo $item->name; ?></a>
					<?php else : ?>
							<?php echo $item->name; ?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo JHtml::_('jgrid.published', $item->enabled,
$i, 'plugins.', $canChange); ?>
				</td>
				<td class="order">
					<?php if ($canChange) : ?>
						<?php if ($saveOrder) : ?>
							<?php if ($listDirn == 'asc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
@$this->items[$i - 1]->folder == $item->folder,
'plugins.orderup', 'JLIB_HTML_MOVE_UP', $ordering);
?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
@$this->items[$i + 1]->folder == $item->folder,
'plugins.orderdown', 'JLIB_HTML_MOVE_DOWN', $ordering);
?></span>
							<?php elseif ($listDirn == 'desc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
@$this->items[$i - 1]->folder == $item->folder,
'plugins.orderdown', 'JLIB_HTML_MOVE_UP', $ordering);
?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
@$this->items[$i + 1]->folder == $item->folder,
'plugins.orderup', 'JLIB_HTML_MOVE_DOWN', $ordering);
?></span>
							<?php endif; ?>
						<?php endif; ?>
						<?php $disabled = $saveOrder ?  '' :
'disabled="disabled"'; ?>
						<input type="text" name="order[]"
value="<?php echo $item->ordering; ?>" <?php echo
$disabled; ?> class="text-area-order" title="<?php
echo $item->name; ?> order" />
					<?php else : ?>
						<?php echo $item->ordering; ?>
					<?php endif; ?>
				</td>

				<td class="nowrap center">
					<?php echo $this->escape($item->folder); ?>
				</td>
				<td class="nowrap center">
					<?php echo $this->escape($item->element); ?>
				</td>
				<td class="center">
					<?php echo $this->escape($item->access_level); ?>
				</td>
				<td class="center">
					<?php echo (int) $item->extension_id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
</div>
</form>
html/com_postinstall/messages/default.php000064400000006211151163244070014671
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_postinstall
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$renderer       =
JFactory::getDocument()->loadRenderer('module');
$options        = array('style' => 'raw');
$mod            = JModuleHelper::getModule('mod_feed');
$param          = array(
	'rssurl'          =>
'https://www.joomla.org/announcements/release-news.feed?type=rss',
	'rsstitle'        => 0,
	'rssdesc'         => 0,
	'rssimage'        => 1,
	'rssitems'        => 5,
	'rssitemdesc'     => 1,
	'word_count'      => 200,
	'cache'           => 0,
	'moduleclass_sfx' => ' list-striped'
);
$params         = array('params' => json_encode($param));
?>

<?php if (empty($this->items)): ?>
<h2><?php echo
JText::_('COM_POSTINSTALL_LBL_NOMESSAGES_TITLE') ?></h2>
<p><?php echo
JText::_('COM_POSTINSTALL_LBL_NOMESSAGES_DESC') ?></p>
<div>
	<button
onclick="window.location='index.php?option=com_postinstall&view=messages&task=reset&eid=<?php
echo $this->eid; ?>&<?php echo $this->token ?>=1';
return false;" class="btn btn-warning">
		<span class="icon icon-eye-open"></span>
		<?php echo JText::_('COM_POSTINSTALL_BTN_RESET') ?>
	</button>
</div>
<?php if ($this->eid == 700): ?>
	<br/>
	<div>
		<h3><?php echo
JText::_('COM_POSTINSTALL_LBL_RELEASENEWS'); ?></h3>
		<?php echo $renderer->render($mod, $params, $options); ?>
	</div>
<?php endif; ?>
<?php else: ?>
<?php
	if ($this->eid == 700):
		echo JHtml::_('sliders.start', 'panel-sliders',
array('useCookie' => '1'));
		echo JHtml::_('sliders.panel',
JText::_('COM_POSTINSTALL_LBL_MESSAGES'),
'postinstall-panel-messages');
	else:
?>
	<h2><?php echo JText::_('COM_POSTINSTALL_LBL_MESSAGES')
?></h2>
<?php endif; ?>
	<?php foreach ($this->items as $item): ?>
	<fieldset>
		<legend><?php echo JText::_($item->title_key)
?></legend>
		<p class="small">
			<?php echo
JText::sprintf('COM_POSTINSTALL_LBL_SINCEVERSION',
$item->version_introduced) ?>
		</p>
		<p><?php echo JText::_($item->description_key)
?></p>

		<div>
			<?php if ($item->type !== 'message'): ?>
			<button
onclick="window.location='index.php?option=com_postinstall&view=messages&task=action&id=<?php
echo $item->postinstall_message_id ?>&<?php echo
$this->token ?>=1'; return false;" class="btn
btn-primary">
				<?php echo JText::_($item->action_key) ?>
			</button>
			<?php endif; ?>
			<?php if
(JFactory::getUser()->authorise('core.edit.state',
'com_postinstall')) : ?>
			<button
onclick="window.location='index.php?option=com_postinstall&view=message&task=unpublish&id=<?php
echo $item->postinstall_message_id ?>&<?php echo
$this->token ?>=1'; return false;" class="btn
btn-inverse btn-small">
				<?php echo JText::_('COM_POSTINSTALL_BTN_HIDE') ?>
			</button>
			<?php endif; ?>
		</div>
	</fieldset>
	<?php endforeach; ?>
<?php
	if ($this->eid == 700):
		echo JHtml::_('sliders.panel',
JText::_('COM_POSTINSTALL_LBL_RELEASENEWS'),
'postinstall-panel-releasenotes');
?>
		<?php echo $renderer->render($mod, $params, $options); ?>
<?php
	echo JHtml::_('sliders.end');
	endif;
?>
<?php endif; ?>
html/com_redirect/links/default.php000064400000015262151163244070013435
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.multiselect');

$user      = JFactory::getUser();
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
?>

<form action="<?php echo
JRoute::_('index.php?option=com_redirect&view=links');
?>" method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_REDIRECT_SEARCH_LINKS'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>

		<div class="filter-select">
			<label class="selectlabel"
for="filter_published">
				<?php echo JText::_('JOPTION_SELECT_PUBLISHED'); ?>
			</label>
			<select name="filter_state"
id="filter_published">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED');?></option>
				<?php echo JHtml::_('select.options',
RedirectHelper::publishedOptions(), 'value', 'text',
$this->state->get('filter.state'), true);?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'COM_REDIRECT_HEADING_OLD_URL', 'a.old_url', $listDirn,
$listOrder); ?>
				</th>
				<th class="width-30">
					<?php echo JHtml::_('grid.sort',
'COM_REDIRECT_HEADING_NEW_URL', 'a.new_url', $listDirn,
$listOrder); ?>
				</th>
				<th class="width-30">
					<?php echo JHtml::_('grid.sort',
'COM_REDIRECT_HEADING_REFERRER', 'a.referer',
$listDirn, $listOrder); ?>
				</th>
				<th class="width-10">
					<?php echo JHtml::_('grid.sort',
'COM_REDIRECT_HEADING_CREATED_DATE', 'a.created_date',
$listDirn, $listOrder); ?>
				</th>
				<th width="1%" class="nowrap">
					<?php echo JHtml::_('grid.sort',
'COM_REDIRECT_HEADING_HITS', 'a.hits', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap state-col">
					<?php echo JHtml::_('grid.sort', 'JSTATUS',
'a.published', $listDirn, $listOrder); ?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) :
			$canCreate = $user->authorise('core.create',    
'com_redirect');
			$canEdit   = $user->authorise('core.edit',      
'com_redirect');
			$canChange = $user->authorise('core.edit.state',
'com_redirect');
			?>
			<tr class="row<?php echo $i % 2; ?>">
				<td class="center">
					<?php echo JHtml::_('grid.id', $i, $item->id); ?>
				</td>
				<td>
					<?php if ($canEdit) : ?>
						<a href="<?php echo
JRoute::_('index.php?option=com_redirect&task=link.edit&id='.$item->id);?>"
title="<?php echo $this->escape($item->old_url);
?>">
							<?php echo $this->escape(str_replace(JUri::root(),
'', rawurldecode($item->old_url))); ?></a>
					<?php else : ?>
							<?php echo $this->escape(str_replace(JUri::root(),
'', rawurldecode($item->old_url))); ?>
					<?php endif; ?>
				</td>
				<td>
					<?php echo $this->escape(rawurldecode($item->new_url)); ?>
				</td>
				<td>
					<?php echo $this->escape($item->referer); ?>
				</td>
				<td class="center">
					<?php echo JHtml::_('date', $item->created_date,
JText::_('DATE_FORMAT_LC4')); ?>
				</td>
				<td class="center">
					<?php echo (int) $item->hits; ?>
				</td>
				<td class="center">
					<?php echo JHtml::_('redirect.published',
$item->published, $i); ?>
				</td>
				<td class="center">
					<?php echo (int) $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php //Load the batch processing form if user is allowed ?>
	<?php if ($user->authorise('core.create',
'com_redirect')
		&& $user->authorise('core.edit',
'com_redirect')
		&& $user->authorise('core.edit.state',
'com_redirect')) : ?>
		<?php echo JHtml::_(
			'bootstrap.renderModal',
			'collapseModal',
			array(
				'title'  =>
JText::_('COM_REDIRECT_BATCH_OPTIONS'),
				'footer' =>
$this->loadTemplate('batch_footer'),
			),
			$this->loadTemplate('batch_body')
		); ?>
	<?php endif;?>

	<?php echo $this->pagination->getListFooter(); ?>
	<p class="footer-tip">
		<?php if ($this->enabled && $this->collect_urls_enabled)
: ?>
			<span class="enabled"><?php echo
JText::sprintf('COM_REDIRECT_COLLECT_URLS_ENABLED',
JText::_('COM_REDIRECT_PLUGIN_ENABLED')); ?></span>
		<?php elseif ($this->enabled &&
!$this->collect_urls_enabled) : ?>
			<?php $link = JHtml::_(
				'link',
				JRoute::_('index.php?option=com_plugins&task=plugin.edit&extension_id='
. RedirectHelper::getRedirectPluginId()),
				JText::_('COM_REDIRECT_SYSTEM_PLUGIN')
			);
			?>
			<span class="enabled"><?php echo
JText::sprintf('COM_REDIRECT_COLLECT_MODAL_URLS_DISABLED',
JText::_('COM_REDIRECT_PLUGIN_ENABLED'), $link);
?></span>
		<?php elseif (!$this->enabled) : ?>
			<span class="disabled"><?php echo
JText::sprintf('COM_REDIRECT_PLUGIN_DISABLED',
'index.php?option=com_plugins&task=plugin.edit&extension_id='
. RedirectHelper::getRedirectPluginId()); ?></span>
		<?php endif; ?>
	</p>
	<div class="clr"></div>

	<?php if (!empty($this->items)) : ?>
		<?php echo $this->loadTemplate('addform'); ?>
	<?php endif; ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
</div>
</form>
html/com_search/searches/default.php000064400000005321151163244070013551
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.multiselect');

$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
?>

<form action="<?php echo
JRoute::_('index.php?option=com_search&view=searches');
?>" method="post" name="adminForm"
id="adminForm">
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_SEARCH_SEARCH_IN_PHRASE'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>


	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'COM_SEARCH_HEADING_PHRASE', 'a.search_term',
$listDirn, $listOrder); ?>
				</th>
				<th class="hits-col">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_HITS', 'a.hits', $listDirn, $listOrder); ?>
				</th>
				<th class="width-15">
					<?php echo JText::_('COM_SEARCH_HEADING_RESULTS'); ?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) : ?>
			<tr class="row<?php echo $i % 2; ?>">
					<td>
						<?php echo $this->escape($item->search_term); ?>
					</td>
					<td class="center">
						<?php echo (int) $item->hits; ?>
					</td>
					<td class="center">
					<?php if ($this->state->get('show_results')) :
?>
						<?php echo (int) $item->returns; ?>
					<?php else: ?>
						<?php echo JText::_('COM_SEARCH_NO_RESULTS'); ?>
					<?php endif; ?>
					</td>
				</tr>
			<?php endforeach; ?>
			</tbody>
		</table>

		<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
</form>
html/com_tags/tag/edit.php000064400000010116151163244070011517
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

$saveHistory =
$this->state->get('params')->get('save_history',
0);

JHtml::_('behavior.formvalidator');

JFactory::getDocument()->addScriptDeclaration("
	Joomla.submitbutton = function(task)
	{
		if (task == 'tag.cancel' ||
document.formvalidator.isValid(document.getElementById('tag-form')))
		{
			" . $this->form->getField('description')->save()
. "
			Joomla.submitform(task, document.getElementById('tag-form'));
		}
	}
");
?>

<div class="weblink-edit">

<form action="<?php echo
JRoute::_('index.php?option=com_tags&layout=edit&id='.(int)
$this->item->id); ?>" method="post"
name="adminForm" id="tag-form"
class="form-validate">
	<div class="col main-section">
		<fieldset class="adminform">
			<legend><?php echo empty($this->item->id) ?
JText::_('JTOOLBAR_NEW') :
JText::sprintf('JTOOLBAR_EDIT', $this->item->id);
?></legend>
			<ul class="adminformlist">
				<li><?php echo $this->form->getLabel('title');
?>
				<?php echo $this->form->getInput('title');
?></li>

				<li><?php echo $this->form->getLabel('alias');
?>
				<?php echo $this->form->getInput('alias');
?></li>

				<li><?php echo
$this->form->getLabel('parent_id'); ?>
				<?php echo $this->form->getInput('parent_id');
?></li>

				<li><?php echo
$this->form->getLabel('published'); ?>
				<?php echo $this->form->getInput('published');
?></li>

				<li><?php echo
$this->form->getLabel('access'); ?>
				<?php echo $this->form->getInput('access');
?></li>

				<li><?php echo
$this->form->getLabel('language'); ?>
				<?php echo $this->form->getInput('language');
?></li>

				<?php if ($saveHistory) : ?>
					<li><?php echo
$this->form->getLabel('version_note'); ?>
					<?php echo $this->form->getInput('version_note');
?></li>
				<?php endif; ?>

				<li><?php echo $this->form->getLabel('id');
?>
				<?php echo $this->form->getInput('id');
?></li>
			</ul>

			<div>
				<?php echo $this->form->getLabel('description');
?>
				<div class="clr"></div>
				<?php echo $this->form->getInput('description');
?>
			</div>
		</fieldset>
	</div>

	<div class="col options-section">
		<?php echo JHtml::_('sliders.start',
'weblink-sliders-'.$this->item->id,
array('useCookie' => 1)); ?>

		<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_PUBLISHING'),
'publishing-details'); ?>

		<fieldset class="panelform">
			<legend class="element-invisible"><?php echo
JText::_('JGLOBAL_FIELDSET_PUBLISHING'); ?></legend>
			<ul class="adminformlist">

				<li><?php echo
$this->form->getLabel('created_by'); ?>
				<?php echo $this->form->getInput('created_by');
?></li>

				<li><?php echo
$this->form->getLabel('created_by_alias'); ?>
				<?php echo
$this->form->getInput('created_by_alias'); ?></li>

				<li><?php echo
$this->form->getLabel('created'); ?>
				<?php echo $this->form->getInput('created');
?></li>

				<li><?php echo
$this->form->getLabel('publish_up'); ?>
				<?php echo $this->form->getInput('publish_up');
?></li>

				<li><?php echo
$this->form->getLabel('publish_down'); ?>
				<?php echo $this->form->getInput('publish_down');
?></li>

				<?php if ($this->item->modified_user_id) : ?>
					<li><?php echo
$this->form->getLabel('modified_user_id'); ?>
					<?php echo
$this->form->getInput('modified_user_id'); ?></li>

					<li><?php echo
$this->form->getLabel('modified'); ?>
					<?php echo $this->form->getInput('modified');
?></li>
				<?php endif; ?>

				<?php if ($this->item->hits) : ?>
					<li><?php echo $this->form->getLabel('hits');
?>
					<?php echo $this->form->getInput('hits');
?></li>
				<?php endif; ?>

			</ul>
		</fieldset>

		<?php echo $this->loadTemplate('options'); ?>

		<?php echo $this->loadTemplate('metadata'); ?>

		<?php echo JHtml::_('sliders.end'); ?>

		<input type="hidden" name="task"
value="" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
	<div class="clr"></div>
</form>
</div>

html/com_tags/tag/edit_metadata.php000064400000002617151163244070013366
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$fieldSets = $this->form->getFieldsets('metadata');
foreach ($fieldSets as $name => $fieldSet) :
	echo JHtml::_('sliders.panel', JText::_($fieldSet->label),
$name.'-options');
	if (isset($fieldSet->description) &&
trim($fieldSet->description)) :
		echo '<p
class="tip">'.$this->escape(JText::_($fieldSet->description)).'</p>';
	endif;
	?>
	<fieldset class="panelform">
	<legend class="element-invisible"><?php echo
JText::_($fieldSet->label); ?></legend>
		<ul class="adminformlist">
			<?php if ($name == 'jmetadata') : // Include the real
fields in this panel. ?>
				<li><?php echo
$this->form->getLabel('metadesc'); ?>
				<?php echo $this->form->getInput('metadesc');
?></li>

				<li><?php echo
$this->form->getLabel('metakey'); ?>
				<?php echo $this->form->getInput('metakey');
?></li>

				<li><?php echo
$this->form->getLabel('xreference'); ?>
				<?php echo $this->form->getInput('xreference');
?></li>
			<?php endif; ?>
			<?php foreach ($this->form->getFieldset($name) as $field) :
?>
				<li><?php echo $field->label; ?>
				<?php echo $field->input; ?></li>
			<?php endforeach; ?>
		</ul>
	</fieldset>
<?php endforeach; ?>
html/com_tags/tag/edit_options.php000064400000004354151163244070013301
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

if (isset($fieldSet->description) &&
trim($fieldSet->description)) :
	echo '<p
class="tip">'.$this->escape(JText::_($fieldSet->description)).'</p>';
endif;
?>
<fieldset class="panelform">
	<legend class="element-invisible"><?php echo
JText::_($fieldSet->label); ?></legend>
	<ul class="adminformlist">
			<li><?php echo
$this->form->getLabel('created_user_id'); ?>
			<?php echo $this->form->getInput('created_user_id');
?></li>

			<li><?php echo
$this->form->getLabel('created_by_alias'); ?>
			<?php echo $this->form->getInput('created_by_alias');
?></li>

			<li><?php echo
$this->form->getLabel('created_time'); ?>
			<?php echo $this->form->getInput('created_time');
?></li>

			<li><?php echo
$this->form->getLabel('publish_up'); ?>
			<?php echo $this->form->getInput('publish_up');
?></li>

			<li><?php echo
$this->form->getLabel('publish_down'); ?>
			<?php echo $this->form->getInput('publish_down');
?></li>

			<li><?php echo
$this->form->getLabel('modified_user_id'); ?>
			<?php echo $this->form->getInput('modified_user_id');
?></li>

			<li><?php echo
$this->form->getLabel('modified_time'); ?>
			<?php echo $this->form->getInput('modified_time');
?></li>
			<li><?php echo
$this->form->getLabel('version'); ?>
			<?php echo $this->form->getInput('version');
?></li>


			</ul>
</fieldset>

<?php $fieldSets = $this->form->getFieldsets('params');
	foreach ($fieldSets as $name => $fieldSet) :
	echo JHtml::_('sliders.panel', JText::_($fieldSet->label),
$name.'-params');
	if (isset($fieldSet->description) &&
trim($fieldSet->description)) :
		echo '<p
class="tip">'.$this->escape(JText::_($fieldSet->description)).'</p>';
	endif;
	?>
	<fieldset class="panelform">
		<legend class="element-invisible"><?php echo
JText::_($fieldSet->label); ?></legend>
		<ul class="adminformlist">
		<?php foreach ($this->form->getFieldset($name) as $field) :
?>
			<li><?php echo $field->label; ?>
			<?php echo $field->input; ?></li>
		<?php endforeach; ?>
		</ul>
	</fieldset>
<?php endforeach; ?>
html/com_tags/tags/default.php000064400000015712151163244070012410
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.multiselect');

$app       = JFactory::getApplication();
$user      = JFactory::getUser();
$userId    = $user->get('id');
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$saveOrder = $listOrder == 'a.ordering';
$n         = count($this->items);
?>

<form action="<?php echo
JRoute::_('index.php?option=com_tags&view=tags');?>"
method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_TAGS_FILTER_SEARCH_DESC'); ?>" />
			<button type="submit" class="btn"><?php
echo JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>

		<div class="filter-select">
			<label class="selectlabel"
for="filter_published"><?php echo
JText::_('JOPTION_SELECT_PUBLISHED'); ?></label>
			<select name="filter_published"
id="filter_published">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('jgrid.publishedOptions'), 'value',
'text', $this->state->get('filter.published'),
true); ?>
			</select>

			<label class="selectlabel"
for="filter_access"><?php echo
JText::_('JOPTION_SELECT_ACCESS'); ?></label>
			<select name="filter_access"
id="filter_access">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_ACCESS'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('access.assetgroups'), 'value',
'text', $this->state->get('filter.access'));
?>
			</select>

			<label class="selectlabel"
for="filter_author_id"><?php echo
JText::_('JOPTION_SELECT_AUTHOR'); ?></label>
			<select name="filter_author_id"
id="filter_author_id">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_AUTHOR'); ?></option>
				<?php echo JHtml::_('select.options', $this->authors,
'value', 'text',
$this->state->get('filter.author_id')); ?>
			</select>

			<label class="selectlabel"
for="filter_language"><?php echo
JText::_('JOPTION_SELECT_LANGUAGE'); ?></label>
			<select name="filter_language"
id="filter_language">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_LANGUAGE'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('contentlanguage.existing', true, true),
'value', 'text',
$this->state->get('filter.language')); ?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>
	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder);
?>
				</th>
				<th class="nowrap state-col">
					<?php echo JHtml::_('grid.sort', 'JSTATUS',
'a.published', $listDirn, $listOrder); ?>
				</th>
				<th class="title access-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ACCESS', 'access', $listDirn,
$listOrder); ?>
				<th class="language-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_LANGUAGE', 'language', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) :
			$item->max_ordering = 0; //??
			$canCreate  = $user->authorise('core.create',    
'com_tags');
			$canEdit    = $user->authorise('core.edit',      
'com_tags.tag.' . $item->id);
			$canCheckin = $user->authorise('core.manage',    
'com_checkin') || $item->checked_out_user_id == $userId ||
$item->checked_out_user_id == 0;
			$canChange  = $user->authorise('core.edit.state',
'com_tags.tag.' . $item->id) && $canCheckin;
			?>
			<tr class="row<?php echo $i % 2; ?>">
				<th class="center">
					<?php echo JHtml::_('grid.id', $i, $item->id); ?>
				</th>
				<td>
					<?php if ($item->level > 0): ?>
					<?php echo str_repeat('<span
class="gi">&mdash;</span>', $item->level -
1) ?>
					<?php endif; ?>

					<?php if ($item->checked_out) : ?>
						<?php echo JHtml::_('jgrid.checkedout', $i,
$item->editor, $item->checked_out_time, 'tags.',
$canCheckin); ?>
					<?php endif; ?>
					<?php if ($canEdit || $canEditOwn) : ?>
						<a href="<?php echo
JRoute::_('index.php?option=com_tags&task=tag.edit&id='.$item->id);
?>">
							<?php echo $this->escape($item->title); ?></a>
					<?php else : ?>
						<?php echo $this->escape($item->title); ?>
					<?php endif; ?>
					<p class="smallsub">
						<?php echo JText::sprintf('JGLOBAL_LIST_ALIAS',
$this->escape($item->alias)); ?></p>
				</td>
				<td class="center">
					<?php echo JHtml::_('jgrid.published',
$item->published, $i, 'tags.', $canChange, 'cb');
?>
				</td>
				<td class="center">
					<?php echo $this->escape($item->access_title); ?>
				</td>
				<td class="center">
					<?php echo
JLayoutHelper::render('joomla.content.language', $item); ?>
				</td>
				<td class="center">
					<?php echo (int) $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php //Load the batch processing form if user is allowed ?>
	<?php if ($user->authorise('core.create',
'com_tags')
		&& $user->authorise('core.edit',
'com_tags')
		&& $user->authorise('core.edit.state',
'com_tags')) : ?>
		<?php echo JHtml::_(
			'bootstrap.renderModal',
			'collapseModal',
			array(
				'title'  => JText::_('COM_TAGS_BATCH_OPTIONS'),
				'footer' =>
$this->loadTemplate('batch_footer'),
			),
			$this->loadTemplate('batch_body')
		); ?>
	<?php endif;?>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_templates/style/edit.php000064400000005712151163244070013152
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_templates
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.formvalidator');
JHtml::_('behavior.keepalive');
$user = JFactory::getUser();

JFactory::getDocument()->addScriptDeclaration("
	Joomla.submitbutton = function(task)
	{
		if (task == 'style.cancel' ||
document.formvalidator.isValid(document.getElementById('style-form')))
		{
			Joomla.submitform(task,
document.getElementById('style-form'));
		}
	}
");
?>

<form action="<?php echo
JRoute::_('index.php?option=com_templates&layout=edit&id='.(int)
$this->item->id); ?>" method="post"
name="adminForm" id="style-form"
class="form-validate">
	<div class="width-60 fltlft">
		<fieldset class="adminform">
			<legend><?php echo
JText::_('JDETAILS');?></legend>
			<ul class="adminformlist">
			<li><?php echo $this->form->getLabel('title');
?>
			<?php echo $this->form->getInput('title');
?></li>

			<li><?php echo
$this->form->getLabel('template'); ?>
			<?php echo $this->form->getInput('template'); ?>
			<?php echo $this->form->getLabel('client_id'); ?>
			<?php echo $this->form->getInput('client_id'); ?>
			<input type="text" size="35" value="<?php
echo $this->item->client_id == 0 ? JText::_('JSITE') :
JText::_('JADMINISTRATOR'); ?>	"
class="readonly" readonly="readonly" /></li>

			<li><?php echo $this->form->getLabel('home');
?>
			<?php echo $this->form->getInput('home');
?></li>

			<?php if ($this->item->id) : ?>
				<li><?php echo $this->form->getLabel('id');
?>
				<span class="readonly"><?php echo
$this->item->id; ?></span></li>
			<?php endif; ?>
			</ul>
			<div class="clr"></div>
			<?php if ($this->item->xml) : ?>
				<?php if ($text = trim($this->item->xml->description)) :
?>
					<label>
						<?php echo
JText::_('COM_TEMPLATES_TEMPLATE_DESCRIPTION'); ?>
					</label>
					<span class="readonly mod-desc"><?php echo
JText::_($text); ?></span>
				<?php endif; ?>
			<?php else : ?>
				<p class="error"><?php echo
JText::_('COM_TEMPLATES_ERR_XML'); ?></p>
			<?php endif; ?>
			<div class="clr"></div>
		</fieldset>
		<input type="hidden" name="task"
value="" />
		<?php echo JHtml::_('form.token'); ?>
	</div>

	<div class="width-40 fltrt">
	<?php echo JHtml::_('sliders.start',
'template-sliders-'.$this->item->id); ?>

		<?php //get the menu parameters that are automatically set but may be
modified.
			echo $this->loadTemplate('options'); ?>

		<div class="clr"></div>

	<?php echo JHtml::_('sliders.end'); ?>
	</div>
	<?php if ($user->authorise('core.edit',
'com_menu') && $this->item->client_id == 0):?>
		<?php if ($this->canDo->get('core.edit.state')) :
?>
			<div class="width-60 fltlft">
			<?php echo $this->loadTemplate('assignment'); ?>
			</div>
			<?php endif; ?>
		<?php endif;?>

	<div class="clr"></div>
</form>
html/com_templates/style/edit_assignment.php000064400000003725151163244070015404
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_templates
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Initialise related data.
JLoader::register('MenusHelper', JPATH_ADMINISTRATOR .
'/components/com_menus/helpers/menus.php');
$menuTypes = MenusHelper::getMenuLinks();
$user = JFactory::getUser();

?>
<fieldset class="adminform">
	<legend><?php echo
JText::_('COM_TEMPLATES_MENUS_ASSIGNMENT'); ?></legend>
		<label id="jform_menuselect-lbl"
for="jform_menuselect"><?php echo
JText::_('JGLOBAL_MENU_SELECTION'); ?></label>

		<button type="button" class="jform-rightbtn"
onclick="$$('.chk-menulink').each(function(el) { el.checked
= !el.checked; });">
			<?php echo JText::_('JGLOBAL_SELECTION_INVERT_ALL'); ?>
		</button>
		<div class="clr"></div>
		<div id="menu-assignment">

		<?php foreach ($menuTypes as &$type) : ?>
			<ul class="menu-links">
				<button type="button" class="jform-rightbtn"
onclick="$$('.<?php echo $type->menutype;
?>').each(function(el) { el.checked = !el.checked; });">
					<?php echo JText::_('JGLOBAL_SELECTION_INVERT'); ?>
				</button>
				<div class="clr"></div>
				<h3><?php echo $type->title ?: $type->menutype;
?></h3>

				<?php foreach ($type->links as $link) : ?>
					<li class="menu-link">
						<input type="checkbox"
name="jform[assigned][]" value="<?php echo (int)
$link->value;?>" id="link<?php echo (int)
$link->value;?>"<?php if ($link->template_style_id ==
$this->item->id):?> checked="checked"<?php
endif;?><?php if ($link->checked_out &&
$link->checked_out != $user->id):?>
disabled="disabled"<?php else:?> class="chk-menulink
<?php echo $type->menutype; ?>"<?php endif;?> />
						<label for="link<?php echo (int)
$link->value;?>" >
							<?php echo $link->text; ?>
						</label>
					</li>
				<?php endforeach; ?>
			</ul>
		<?php endforeach; ?>

		</div>
</fieldset>
html/com_templates/style/edit_options.php000064400000002042151163244070014716
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_templates
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

	$fieldSets = $this->form->getFieldsets('params');

	foreach ($fieldSets as $name => $fieldSet) :
		$label = !empty($fieldSet->label) ? $fieldSet->label :
'COM_TEMPLATES_'.$name.'_FIELDSET_LABEL';
		echo JHtml::_('sliders.panel', JText::_($label),
$name.'-options');
			if (isset($fieldSet->description) &&
trim($fieldSet->description)) :
				echo '<p
class="tip">'.$this->escape(JText::_($fieldSet->description)).'</p>';
			endif;
			?>
		<fieldset class="panelform">
			<ul class="adminformlist">
			<?php foreach ($this->form->getFieldset($name) as $field) :
?>
				<li>
				<?php if (!$field->hidden) : ?>
					<?php echo $field->label; ?>
				<?php endif; ?>
					<?php echo $field->input; ?>
				</li>
			<?php endforeach; ?>
			</ul>
		</fieldset>
	<?php endforeach;  ?>
html/com_templates/styles/default.php000064400000017140151163244070014032
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('bootstrap.tooltip');
JHtml::_('script', 'system/multiselect.js',
array('version' => 'auto', 'relative'
=> true));

$user      = JFactory::getUser();
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
?>

<form action="<?php echo
JRoute::_('index.php?option=com_templates&view=styles');
?>" method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_TEMPLATES_STYLES_FILTER_SEARCH_DESC'); ?>"
/>
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>

		<div class="filter-select">
			<label class="selectlabel"
for="client_id"><?php echo
JText::_('JGLOBAL_FILTER_CLIENT'); ?></label>
			<select name="client_id" id="client_id">
				<?php echo JHtml::_('select.options',
TemplatesHelper::getClientOptions(), 'value', 'text',
$this->state->get('client_id'));?>
			</select>

			<label class="selectlabel"
for="filter_template"><?php echo
JText::_('COM_TEMPLATES_FILTER_TEMPLATE'); ?></label>
			<select name="filter_template"
id="filter_template">
				<option value="0"><?php echo
JText::_('COM_TEMPLATES_FILTER_TEMPLATE'); ?></option>
				<?php echo JHtml::_('select.options',
TemplatesHelper::getTemplateOptions($this->state->get('client_id')),
'value', 'text',
$this->state->get('filter.template'));?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					&#160;
				</th>
				<th>
					<?php echo JHtml::_('grid.sort',
'COM_TEMPLATES_HEADING_STYLE', 'a.title', $listDirn,
$listOrder); ?>
				</th>
				<th class="width-10">
					<?php echo JHtml::_('grid.sort', 'JCLIENT',
'a.client_id', $listDirn, $listOrder); ?>
				</th>
				<th>
					<?php echo JHtml::_('grid.sort',
'COM_TEMPLATES_HEADING_TEMPLATE', 'a.template',
$listDirn, $listOrder); ?>
				</th>
				<th class="width-5">
					<?php echo JHtml::_('grid.sort',
'COM_TEMPLATES_HEADING_DEFAULT', 'a.home', $listDirn,
$listOrder); ?>
				</th>
				<th class="width-5">
					<?php echo JText::_('COM_TEMPLATES_HEADING_ASSIGNED');
?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
				</th>
			</tr>
		</thead>

		<tbody>
			<?php foreach ($this->items as $i => $item) :
				$canCreate = $user->authorise('core.create',    
'com_templates');
				$canEdit   = $user->authorise('core.edit',      
'com_templates');
				$canChange = $user->authorise('core.edit.state',
'com_templates');
			?>
			<tr class="row<?php echo $i % 2; ?>">
				<td class="center">
					<?php echo JHtml::_('grid.id', $i, $item->id); ?>
				</td>
				<td>
					<?php if ($this->preview && $item->client_id ==
'0') : ?>
						<a target="_blank" href="<?php echo
JUri::root().'index.php?tp=1&templateStyle='.(int)
$item->id ?>" class="jgrid hasTooltip"
title="<?php echo JHtml::_('tooltipText',
JText::_('COM_TEMPLATES_TEMPLATE_PREVIEW'), $item->title, 0);
?>" ><span class="state
icon-16-preview"><span class="text"><?php echo
JText::_('COM_TEMPLATES_TEMPLATE_PREVIEW');
?></span></span></a>
					<?php elseif ($item->client_id == '1') : ?>
						<span class="jgrid hasTooltip" title="<?php echo
JHtml::_('tooltipText',
'COM_TEMPLATES_TEMPLATE_NO_PREVIEW_ADMIN');
?>"><span class="state
icon-16-nopreview"><span class="text"><?php echo
JText::_('COM_TEMPLATES_TEMPLATE_NO_PREVIEW_ADMIN');
?></span></span></span>
					<?php else: ?>
						<span class="jgrid hasTooltip" title="<?php echo
JHtml::_('tooltipText',
'COM_TEMPLATES_TEMPLATE_NO_PREVIEW'); ?>"><span
class="state icon-16-nopreview"><span
class="text"><?php echo
JText::_('COM_TEMPLATES_TEMPLATE_NO_PREVIEW');
?></span></span></span>
					<?php endif; ?>
					<?php if ($canEdit) : ?>
					<a href="<?php echo
JRoute::_('index.php?option=com_templates&task=style.edit&id='.(int)
$item->id); ?>">
						<?php echo $this->escape($item->title);?></a>
					<?php else : ?>
						<?php echo $this->escape($item->title);?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo $item->client_id == 0 ? JText::_('JSITE') :
JText::_('JADMINISTRATOR'); ?>
				</td>
				<td>
					<label for="cb<?php echo $i;?>">
						<?php echo $this->escape($item->template);?>
					</label>
				</td>
				<td class="center">
					<?php if ($item->home == '0' || $item->home ==
'1'):?>
						<?php echo JHtml::_('jgrid.isdefault', $item->home !=
'0', $i, 'styles.', $canChange &&
$item->home != '1');?>
					<?php elseif ($canChange):?>
						<a href="<?php echo
JRoute::_('index.php?option=com_templates&task=styles.unsetDefault&cid[]='.$item->id.'&'.JSession::getFormToken().'=1');?>">
							<?php if ($item->image) : ?>
								<?php echo JHtml::_('image',
'mod_languages/' . $item->image . '.gif',
$item->language_title, array('title' =>
JText::sprintf('COM_TEMPLATES_GRID_UNSET_LANGUAGE',
$item->language_title)), true);?>
							<?php else : ?>
								<span class="label" title="<?php echo
JText::sprintf('COM_TEMPLATES_GRID_UNSET_LANGUAGE',
$item->language_title); ?>"><?php echo
$item->language_sef; ?></span>
							<?php endif; ?>
						</a>
					<?php else:?>
						<?php echo JHtml::_('image', 'mod_languages/'
. $item->image . '.gif', $item->language_title,
array('title' => $item->language_title), true); ?>
						<?php if ($item->image) : ?>
							<?php echo JHtml::_('image', 'mod_languages/'
. $item->image . '.gif', $item->language_title,
array('title' => $item->language_title), true); ?>
						<?php else : ?>
							<span class="label" title="<?php echo
$item->language_title; ?>"><?php echo
$item->language_sef; ?></span>
						<?php endif; ?>
					<?php endif;?>
				</td>
				<td class="center">
					<?php if ($item->assigned > 0) : ?>
						<?php echo JHtml::_('image', 'admin/tick.png',
JText::plural('COM_TEMPLATES_ASSIGNED', $item->assigned),
array('title' =>
JText::plural('COM_TEMPLATES_ASSIGNED', $item->assigned)),
true); ?>
					<?php else : ?>
						&#160;
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo (int) $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_templates/template/default.php000064400000051275151163244070014331
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_templates
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('bootstrap.tooltip');

$input = JFactory::getApplication()->input;
if ($this->type == 'image')
{
	JHtml::_('script', 'system/jquery.Jcrop.min.js',
array('version' => 'auto', 'relative'
=> true));
	JHtml::_('stylesheet', 'system/jquery.Jcrop.min.css',
array('version' => 'auto', 'relative'
=> true));
}
JFactory::getDocument()->addScriptDeclaration("
jQuery(document).ready(function($){
	// Hide all the folder when the page loads
	$('.folder ul, .component-folder ul').hide();
	// Display the tree after loading
	$('.directory-tree').removeClass('directory-tree');
	// Show all the lists in the path of an open file
	$('.show > ul').show();
	// Stop the default action of anchor tag on a click event
	$('.folder-url, .component-folder-url').click(function(event){
		event.preventDefault();
	});
	// Prevent the click event from proliferating
	$('.file,
.component-file-url').bind('click',function(e){
		e.stopPropagation();
	});
	// Toggle the child indented list on a click event
	$('.folder,
.component-folder').bind('click',function(e){
		$(this).children('ul').toggle();
		e.stopPropagation();
	});
	// New file tree
	$('#fileModal .folder-url').bind('click',function(e){
		$('.folder-url').removeClass('selected');
		e.stopPropagation();
		$('#fileModal
input.address').val($(this).attr('data-id'));
		$(this).addClass('selected');
	});
	// Folder manager tree
	$('#folderModal
.folder-url').bind('click',function(e){
		$('.folder-url').removeClass('selected');
		e.stopPropagation();
		$('#folderModal
input.address').val($(this).attr('data-id'));
		$(this).addClass('selected');
	});
});");
if ($this->type == 'image')
{
	JFactory::getDocument()->addScriptDeclaration("
		jQuery(document).ready(function() {
			var jcrop_api;
			// Configuration for image cropping
			$('#image-crop').Jcrop({
				onChange:   showCoords,
				onSelect:   showCoords,
				onRelease:  clearCoords,
				trueSize:   " . $this->image['width'] . ","
. $this->image['height'] . "]
			},function(){
				jcrop_api = this;
			});
			// Function for calculating the crop coordinates
			function showCoords(c)
			{
				$('#x').val(c.x);
				$('#y').val(c.y);
				$('#w').val(c.w);
				$('#h').val(c.h);
			};
			// Function for clearing the coordinates
			function clearCoords()
			{
				$('#adminForm input').val('');
			};
		});");
}
JFactory::getDocument()->addStyleDeclaration('
	/* Styles for modals */
	.selected{
		background: #08c;
		color: #fff;
	}
	.selected:hover{
		background: #08c !important;
		color: #fff;
	}
	.modal-body .column {
		width: 50%; float: left;
	}
	#deleteFolder{
		margin: 0;
	}
	#image-crop{
		max-width: 100% !important;
		width: auto;
		height: auto;
	}
	.directory-tree{
		display: none;
	}
	.tree-holder{
		overflow-x: auto;
	}
');
if ($this->type == 'font')
{
	JFactory::getDocument()->addStyleDeclaration(
			"/* Styles for font preview */
		@font-face
		{
			font-family: previewFont;
			src: url('" . $this->font['address'] .
"')
		}
		.font-preview{
			font-family: previewFont !important;
		}"
	);
}
?>
<div class="width-60 fltlft">

	<?php if ($this->type != 'home'): ?>
		<div  id="deleteModal" class="modal hide fade">
			<fieldset>
				<div class="modal-header">
					<button type="button" class="close"
data-dismiss="modal" aria-label="<?php echo
JText::_('JLIB_HTML_BEHAVIOR_CLOSE'); ?>">
						<span aria-hidden="true">&times;</span>
					</button>
					<h3><?php echo
JText::_('COM_TEMPLATES_ARE_YOU_SURE');?></h3>
				</div>
				<div class="modal-body">
					<p><?php echo
JText::sprintf('COM_TEMPLATES_MODAL_FILE_DELETE',
$this->fileName); ?></p>
				</div>
				<div class="modal-footer">
					<form method="post" action="">
						<input type="hidden" name="option"
value="com_templates" />
						<input type="hidden" name="task"
value="template.delete" />
						<input type="hidden" name="id"
value="<?php echo $input->getInt('id'); ?>"
/>
						<input type="hidden" name="file"
value="<?php echo $this->file; ?>" />
						<?php echo JHtml::_('form.token'); ?>
						<button type="button" class="btn"
data-dismiss="modal"><?php echo
JText::_('COM_TEMPLATES_TEMPLATE_CLOSE'); ?></button>
						<button type="submit"><?php echo
JText::_('COM_TEMPLATES_BUTTON_DELETE');?></button>
					</form>
				</div>
			</fieldset>
		</div>
	<?php endif; ?>
	<div  id="folderModal" class="modal hide fade">
		<fieldset>
			<legend><?php echo
JText::_('COM_TEMPLATES_MANAGE_FOLDERS');?></legend>
			<div class="modal-body">
				<div class="width-50 fltlft">
					<form method="post" action="<?php echo
JRoute::_('index.php?option=com_templates&task=template.createFolder&id='
. $input->getInt('id') . '&file=' .
$this->file); ?>">
						<fieldset>
							<label><?php echo
JText::_('COM_TEMPLATES_FOLDER_NAME');?></label>
							<input type="text" name="name" required />
							<input type="hidden" class="address"
name="address" />

							<input type="submit" value="<?php echo
JText::_('COM_TEMPLATES_BUTTON_CREATE');?>"
class="btn btn-primary" />
						</fieldset>
					</form>
				</div>
				<div class="width-50 fltlft">
					<?php echo $this->loadTemplate('folders');?>
				</div>
			</div>
			<div class="modal-footer">
				<form id="deleteFolder" method="post"
action="<?php echo
JRoute::_('index.php?option=com_templates&task=template.deleteFolder&id='
. $input->getInt('id') . '&file=' .
$this->file); ?>">
					<fieldset>
						<button type="button" class="btn"
data-dismiss="modal"><?php echo
JText::_('COM_TEMPLATES_TEMPLATE_CLOSE'); ?></button>
						<input type="hidden" class="address"
name="address" />
						<input type="submit" value="<?php echo
JText::_('COM_TEMPLATES_BUTTON_DELETE');?>"
class="btn btn-danger" />
					</fieldset>
				</form>
			</div>
		</fieldset>
	</div>

	<div  id="fileModal" class="modal hide fade">
		<fieldset>
			<legend><?php echo
JText::_('COM_TEMPLATES_BUTTON_FILE');?></legend>
			<div class="modal-body">
				<div class="width-50 fltlft">
					<form method="post" action="<?php echo
JRoute::_('index.php?option=com_templates&task=template.createFile&id='
. $input->getInt('id') . '&file=' .
$this->file); ?>">
						<fieldset>
							<label><?php echo
JText::_('COM_TEMPLATES_NEW_FILE_TYPE');?></label>
							<select name="type" required >
								<option value="null">- <?php echo
JText::_('COM_TEMPLATES_NEW_FILE_SELECT');?> -</option>
								<option value="css">css</option>
								<option value="php">php</option>
								<option value="js">js</option>
								<option value="xml">xml</option>
								<option value="ini">ini</option>
								<option value="less">less</option>
								<option value="txt">txt</option>
							</select>
							<br />
							<label><?php echo
JText::_('COM_TEMPLATES_FILE_NAME');?></label>
							<input type="text" name="name" required />
							<input type="hidden" class="address"
name="address" />

							<input type="submit" value="<?php echo
JText::_('COM_TEMPLATES_BUTTON_CREATE');?>"
class="btn btn-primary" />
						</fieldset>
					</form>
					<br />
					<form method="post" action="<?php echo
JRoute::_('index.php?option=com_templates&task=template.uploadFile&id='
. $input->getInt('id') . '&file=' .
$this->file); ?>"
						  enctype="multipart/form-data" >
						<fieldset>
							<input type="hidden" class="address"
name="address" />
							<input type="file" name="files" required
/>
							<input type="submit" value="<?php echo
JText::_('COM_TEMPLATES_BUTTON_UPLOAD');?>"
class="btn btn-primary" /><br>
							<?php $cMax    =
$this->state->get('params')->get('upload_limit');
?>
							<?php $maxSize = JHtml::_('number.bytes',
JUtility::getMaxUploadSize($cMax . 'MB')); ?>
							<?php echo
JText::sprintf('JGLOBAL_MAXIMUM_UPLOAD_SIZE_LIMIT', $maxSize);
?>
						</fieldset>
					</form>
					<br />
					<?php if ($this->type != 'home'): ?>
						<form method="post" action="<?php echo
JRoute::_('index.php?option=com_templates&task=template.copyFile&id='
. $input->getInt('id') . '&file=' .
$this->file); ?>"
							  enctype="multipart/form-data" >
							<fieldset>
								<input type="hidden" class="address"
name="address" />
								<div class="control-group">
									<label for="new_name" class="control-label
hasTooltip" title="<?php echo
JHtml::_('tooltipText',
'COM_TEMPLATES_FILE_NEW_NAME_DESC'); ?>"><?php echo
JText::_('COM_TEMPLATES_FILE_NEW_NAME_LABEL')?></label>
									<div class="controls">
										<input type="text" id="new_name"
name="new_name" required />
									</div>
								</div>
								<input type="submit" value="<?php echo
JText::_('COM_TEMPLATES_BUTTON_COPY_FILE');?>"
class="btn btn-primary" />
							</fieldset>
						</form>
					<?php endif; ?>
				</div>
				<div class="width-50 fltlft">
					<?php echo $this->loadTemplate('folders');?>
				</div>
			</div>
			<div class="modal-footer">
				<button type="button" class="btn"
data-dismiss="modal"><?php echo
JText::_('COM_TEMPLATES_TEMPLATE_CLOSE'); ?></button>
			</div>
		</fieldset>
	</div>

	<?php if ($this->type != 'home'): ?>
		<form action="<?php echo
JRoute::_('index.php?option=com_templates&task=template.resizeImage&id='
. $input->getInt('id') . '&file=' .
$this->file); ?>"
			  method="post" >
			<div  id="resizeModal" class="modal hide
fade">
				<div class="modal-header">
					<button type="button" class="close"
data-dismiss="modal" aria-label="<?php echo
JText::_('JLIB_HTML_BEHAVIOR_CLOSE'); ?>">
						<span aria-hidden="true">&times;</span>
					</button>
					<h3><?php echo
JText::_('COM_TEMPLATES_RESIZE_IMAGE'); ?></h3>
				</div>
				<div class="modal-body">
					<div id="template-manager-css"
class="form-horizontal">
						<div class="control-group">
							<label for="height" class="control-label
hasTooltip" title="<?php echo
JHtml::_('tooltipText', 'COM_TEMPLATES_IMAGE_HEIGHT');
?>"><?php echo
JText::_('COM_TEMPLATES_IMAGE_HEIGHT')?></label>
							<div class="controls">
								<input class="input-xlarge" type="number"
name="height" placeholder="<?php echo
$this->image['height']; ?> px" required />
							</div>
							<br />
							<label for="width" class="control-label
hasTooltip" title="<?php echo
JHtml::_('tooltipText', 'COM_TEMPLATES_IMAGE_WIDTH');
?>"><?php echo
JText::_('COM_TEMPLATES_IMAGE_WIDTH')?></label>
							<div class="controls">
								<input class="input-xlarge" type="number"
name="width" placeholder="<?php echo
$this->image['width']; ?> px" required />
							</div>
						</div>
					</div>
				</div>
				<div class="modal-footer">
					<button type="button" class="btn"
data-dismiss="modal"><?php echo
JText::_('COM_TEMPLATES_TEMPLATE_CLOSE'); ?></button>
					<button type="submit" class="btn
btn-primary"><?php echo
JText::_('COM_TEMPLATES_BUTTON_RESIZE'); ?></button>
				</div>
			</div>
			<?php echo JHtml::_('form.token'); ?>
		</form>
	<?php endif; ?>

	<?php if ($this->type == 'home'): ?>
		<form action="<?php echo
JRoute::_('index.php?option=com_templates&view=template&id='
. $input->getInt('id') . '&file=' .
$this->file); ?>" method="post"
name="adminForm" id="adminForm"
class="form-horizontal">
			<input type="hidden" name="task"
value="" />
			<?php echo JHtml::_('form.token'); ?>
			<div id="home-box" style="text-align:
justify;">
				<h1><p><?php echo
JText::_('COM_TEMPLATES_HOME_HEADING');
?></p></h1>
				<p><?php echo JText::_('COM_TEMPLATES_HOME_TEXT');
?></p>
				<p>
					<a
href="https://docs.joomla.org/Special:MyLanguage/J3.x:How_to_use_the_Template_Manager"
target="_blank">
						<?php echo JText::_('COM_TEMPLATES_HOME_BUTTON'); ?>
					</a>
				</p>
			</div>
		</form>
	<?php endif; ?>
	<?php if ($this->type == 'file'): ?>
		<form action="<?php echo
JRoute::_('index.php?option=com_templates&view=template&id='
. $input->getInt('id') . '&file=' .
$this->file); ?>" method="post"
name="adminForm" id="adminForm"
class="form-horizontal">
			<fieldset class="adminform">
				<legend><?php echo
JText::_('COM_TEMPLATES_SOURCE_CODE');?></legend>
				<p class="label"><?php echo
JText::_('COM_TEMPLATES_TOGGLE_FULL_SCREEN'); ?></p>
				<div class="clr"></div>
				<div class="editor-border">
					<?php echo $this->form->getInput('source'); ?>
				</div>
				<input type="hidden" name="task"
value="" />
				<?php echo JHtml::_('form.token'); ?>


				<?php echo $this->form->getInput('extension_id');
?>
				<?php echo $this->form->getInput('filename'); ?>
			</fieldset>
		</form>
	<?php endif; ?>
	<?php if ($this->type == 'image'): ?>
		<div id="image-box"><img id="image-crop"
src="<?php echo $this->image['address'] .
'?' . time(); ?>" /></div>
		<form action="<?php echo
JRoute::_('index.php?option=com_templates&view=template&id='
. $input->getInt('id') . '&file=' .
$this->file); ?>" method="post"
name="adminForm" id="adminForm">
			<input type ="hidden" id="x" name="x"
/>
			<input type ="hidden" id="y" name="y"
/>
			<input type ="hidden" id="h" name="h"
/>
			<input type ="hidden" id="w" name="w"
/>
			<input type="hidden" name="task"
value="" />
			<?php echo JHtml::_('form.token'); ?>
		</form>
	<?php endif; ?>
	<?php if ($this->type == 'archive'): ?>
		<legend><?php echo
JText::_('COM_TEMPLATES_FILE_CONTENT_PREVIEW');
?></legend>
		<form action="<?php echo
JRoute::_('index.php?option=com_templates&view=template&id='
. $input->getInt('id') . '&file=' .
$this->file); ?>" method="post"
name="adminForm" id="adminForm"
class="form-horizontal">
			<fieldset>
				<ul class="nav nav-list">
					<?php foreach ($this->archive as $file): ?>
						<li>
							<?php if (substr($file, -1) === DIRECTORY_SEPARATOR): ?>
								<span class="icon-folder"
aria-hidden="true"></span>&nbsp;<?php echo $file;
?>
							<?php endif; ?>
							<?php if (substr($file, -1) != DIRECTORY_SEPARATOR): ?>
								<span class="icon-file"
aria-hidden="true"></span>&nbsp;<?php echo $file;
?>
							<?php endif; ?>
						</li>
					<?php endforeach; ?>
				</ul>
			</fieldset>
			<input type="hidden" name="task"
value="" />
			<?php echo JHtml::_('form.token'); ?>

		</form>
	<?php endif; ?>
	<?php if ($this->type == 'font'): ?>
		<div class="font-preview">
			<form action="<?php echo
JRoute::_('index.php?option=com_templates&view=template&id='
. $input->getInt('id') . '&file=' .
$this->file); ?>" method="post"
name="adminForm" id="adminForm"
class="form-horizontal">
				<fieldset class="adminform">
					<legend><?php echo
JText::_('COM_TEMPLATES_SOURCE_CODE');?></legend>
					<p class="lead">H1</p><h1>Quickly gaze at
Joomla! views from HTML, CSS, JavaScript and XML </h1>
					<p class="lead">H2</p><h2>Quickly gaze at
Joomla! views from HTML, CSS, JavaScript and XML </h2>
					<p class="lead">H3</p><h3>Quickly gaze at
Joomla! views from HTML, CSS, JavaScript and XML </h3>
					<p class="lead">H4</p><h4>Quickly gaze at
Joomla! views from HTML, CSS, JavaScript and XML </h4>
					<p class="lead">H5</p><h5>Quickly gaze at
Joomla! views from HTML, CSS, JavaScript and XML </h5>
					<p class="lead">H6</p> <h6>Quickly gaze at
Joomla! views from HTML, CSS, JavaScript and XML </h6>
					<p class="lead">Bold</p><b>Quickly gaze at
Joomla! views from HTML, CSS, JavaScript and XML </b>
					<p class="lead">Italics</p><i>Quickly gaze
at Joomla! views from HTML, CSS, JavaScript and XML </i>
					<p class="lead">Unordered List</p>
					<ul>
						<li>Item</li>
						<li>Item</li>
						<li>Item<br />
							<ul>
								<li>Item</li>
								<li>Item</li>
								<li>Item<br />
									<ul>
										<li>Item</li>
										<li>Item</li>
										<li>Item</li>
									</ul>
								</li>
							</ul>
						</li>
					</ul>
					<p class="lead">Ordered List</p>
					<ol>
						<li>Item</li>
						<li>Item</li>
						<li>Item<br />
							<ul>
								<li>Item</li>
								<li>Item</li>
								<li>Item<br />
									<ul>
										<li>Item</li>
										<li>Item</li>
										<li>Item</li>
									</ul>
								</li>
							</ul>
						</li>
					</ol>
					<input type="hidden" name="task"
value="" />
					<?php echo JHtml::_('form.token'); ?>
				</fieldset>
			</form>
		</div>
	<?php endif; ?>

	<fieldset class="adminform">
		<legend><?php echo
JText::_('COM_TEMPLATES_TEMPLATE_DESCRIPTION');?></legend>

		<?php echo $this->loadTemplate('description');?>
	</fieldset>

	<div class="clr"></div>
</div>

<div class="width-40 fltrt">

	<?php if ($this->type != 'home'): ?>
		<fieldset class="adminform">
			<legend><?php echo
JText::_('COM_TEMPLATES_FILE_INFO');?></legend>
			<?php if ($this->type == 'file'): ?>
				<p><?php echo
JText::sprintf('COM_TEMPLATES_TEMPLATE_FILENAME',
$this->source->filename, $this->template->element);
?></p>
			<?php endif; ?>
			<?php if ($this->type == 'image'): ?>
				<p><?php echo
JText::sprintf('COM_TEMPLATES_TEMPLATE_FILENAME',
$this->image['path'], $this->template->element);
?></p>
			<?php endif; ?>
			<?php if ($this->type == 'font'): ?>
				<p><?php echo
JText::sprintf('COM_TEMPLATES_TEMPLATE_FILENAME',
$this->font['rel_path'], $this->template->element);
?></p>
			<?php endif; ?>
		</fieldset>
	<?php endif; ?>

	<fieldset class="adminform">
		<legend><?php echo
JText::_('COM_TEMPLATES_TEMPLATE_FILES');?></legend>

		<?php echo $this->loadTemplate('tree');?>
	</fieldset>

	<?php echo JHtml::_('sliders.start',
'content-sliders', array('useCookie' => 1)); ?>
	<?php echo JHtml::_('sliders.panel',
JText::_('COM_TEMPLATES_TEMPLATE_COPY'),
'template-copy'); ?>
	<form action="<?php echo
JRoute::_('index.php?option=com_templates&task=template.copy&id='
. $input->getInt('id') . '&file=' .
$this->file); ?>"
		  method="post" name="adminForm"
id="adminForm">
		<fieldset class="panelform">
			<label id="new_name" class="hasTooltip"
title="<?php echo JHtml::_('tooltipText',
'COM_TEMPLATES_TEMPLATE_NEW_NAME_DESC'); ?>"><?php
echo
JText::_('COM_TEMPLATES_TEMPLATE_NEW_NAME_LABEL')?></label>
			<input type="text" id="new_name"
name="new_name"  />
			<button type="submit"><?php echo
JText::_('COM_TEMPLATES_TEMPLATE_COPY'); ?></button>
		</fieldset>
		<?php echo JHtml::_('form.token'); ?>
	</form>
	<?php if ($this->type != 'home'): ?>
		<?php  echo JHtml::_('sliders.panel',
JText::_('COM_TEMPLATES_BUTTON_RENAME'),
'file-rename'); ?>
		<form action="<?php echo
JRoute::_('index.php?option=com_templates&task=template.renameFile&id='
. $input->getInt('id') . '&file=' .
$this->file); ?>"
			  method="post" name="adminForm"
id="adminForm">
			<fieldset class="panelform">
				<label id="new_name" class="hasTooltip"
title="<?php echo JHtml::_('tooltipText',
JText::_('COM_TEMPLATES_NEW_FILE_NAME')); ?>"><?php
echo JText::_('COM_TEMPLATES_NEW_FILE_NAME')?></label>
				<input type="text" name="new_name"  />
				<button type="submit"><?php echo
JText::_('COM_TEMPLATES_BUTTON_RENAME'); ?></button>
			</fieldset>
			<?php echo JHtml::_('form.token'); ?>
		</form>
	<?php endif; ?>
	<?php  echo JHtml::_('sliders.panel',
JText::_('COM_TEMPLATES_OVERRIDES_MODULES'),
'override-module'); ?>
	<fieldset class="panelform">
		<ul class="adminformlist">
			<?php foreach ($this->overridesList['modules'] as
$module): ?>
				<li>
					<a href="<?php echo
JRoute::_('index.php?option=com_templates&view=template&task=template.overrides&folder='
. $module->path . '&id=' .
$input->getInt('id') . '&file=' .
$this->file); ?>">
						<span
class="icon-copy"></span>&nbsp;<?php echo
$module->name; ?>
					</a>
				</li>
			<?php endforeach; ?>
		</ul>
	</fieldset>
	<?php  echo JHtml::_('sliders.panel',
JText::_('COM_TEMPLATES_OVERRIDES_COMPONENTS'),
'override-component'); ?>
	<fieldset class="panelform">
		<ul class="adminformlist">
			<?php foreach ($this->overridesList['components'] as
$key => $value): ?>
				<li class="component-folder">
					<a href="#" class="component-folder-url">
						<span
class="icon-folder"></span>&nbsp;<?php echo $key;
?>
					</a>
					<ul class="adminformList">
						<?php foreach ($value as $view): ?>
							<li>
								<a class="component-file-url" href="<?php echo
JRoute::_('index.php?option=com_templates&view=template&task=template.overrides&folder='
. $view->path . '&id=' . $input->getInt('id')
. '&file=' . $this->file); ?>">
									<span
class="icon-copy"></span>&nbsp;<?php echo
$view->name; ?>
								</a>
							</li>
						<?php endforeach; ?>
					</ul>
				</li>
			<?php endforeach; ?>
		</ul>
	</fieldset>
	<?php  echo JHtml::_('sliders.panel',
JText::_('COM_TEMPLATES_OVERRIDES_LAYOUTS'),
'override-layout'); ?>
	<fieldset class="panelform">
		<ul class="adminformlist">
			<?php foreach ($this->overridesList['layouts'] as
$layout): ?>
				<li>
					<a href="<?php echo
JRoute::_('index.php?option=com_templates&view=template&task=template.overrides&folder='
. $layout->path . '&id=' .
$input->getInt('id') . '&file=' .
$this->file); ?>">
						<span
class="icon-copy"></span>&nbsp;<?php echo
$layout->name; ?>
					</a>
				</li>
			<?php endforeach; ?>
		</ul>
	</fieldset>
	<?php echo JHtml::_('sliders.end'); ?>
</div>
html/com_templates/template/default_description.php000064400000001517151163244070016726
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_templates
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>

<div class="pull-left">
	<?php echo JHtml::_('templates.thumb',
$this->template->element, $this->template->client_id); ?>
	<?php echo JHtml::_('templates.thumbModal',
$this->template->element, $this->template->client_id); ?>
</div>
<h2><?php echo ucfirst($this->template->element);
?></h2>
<?php $client =
JApplicationHelper::getClientInfo($this->template->client_id); ?>
<p><?php $this->template->xmldata =
TemplatesHelper::parseXMLTemplateFile($client->path,
$this->template->element);?></p>
<p><?php  echo
JText::_($this->template->xmldata->description);
?></p>html/com_templates/template/default_folders.php000064400000001426151163244070016040
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_templates
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
ksort($this->files, SORT_STRING);
?>

<ul class='nav nav-list directory-tree'>
	<?php foreach ($this->files as $key => $value): ?>
		<?php if (is_array($value)): ?>
			<li class="folder-select">
				<a class='folder-url nowrap' data-id='<?php echo
base64_encode($key); ?>' href=''>
					<span class='icon-folder-close'>&nbsp;<?php
$explodeArray = explode('/', $key); echo end($explodeArray);
?></span>
				</a>
				<?php echo $this->folderTree($value); ?>
			</li>
		<?php endif; ?>
	<?php endforeach; ?>
</ul>
html/com_templates/template/default_tree.php000064400000003024151163244070015335
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_templates
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
ksort($this->files, SORT_STRING);
?>

<ul class='nav nav-list directory-tree'>
	<?php foreach ($this->files as $key => $value): ?>
		<?php if (is_array($value)): ?>
			<?php
			$keyArray  = explode('/', $key);
			$fileArray = explode('/', $this->fileName);
			$count     = 0;

			$keyArrayCount = count($keyArray);

			if (count($fileArray) >= $keyArrayCount)
			{
				for ($i = 0; $i < $keyArrayCount; $i++)
				{
					if ($keyArray[$i] === $fileArray[$i])
					{
						$count++;
					}
				}

				if ($count === $keyArrayCount)
				{
					$class = 'folder show';
				}
				else
				{
					$class = 'folder';
				}
			}
			else
			{
				$class = 'folder';
			}

			?>
			<li class="<?php echo $class; ?>">
				<a class='folder-url nowrap' href=''>
					<span class='icon-folder-close'>&nbsp;<?php
$explodeArray = explode('/', $key); echo end($explodeArray);
?></span>
				</a>
				<?php echo $this->directoryTree($value); ?>
			</li>
		<?php endif; ?>
		<?php if (is_object($value)): ?>
			<li>
				<a class="file nowrap" href='<?php echo
JRoute::_('index.php?option=com_templates&view=template&id='
. $this->id . '&file=' . $value->id) ?>'>
					<span class='icon-file'>&nbsp;<?php echo
$value->name; ?></span>
				</a>
			</li>
		<?php endif; ?>
	<?php endforeach; ?>
</ul>
html/com_templates/templates/default.php000064400000012257151163244070014511
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('bootstrap.tooltip');
JHtml::_('behavior.multiselect');

$user      = JFactory::getUser();
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
?>

<form action="<?php echo
JRoute::_('index.php?option=com_templates&view=templates');
?>" method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_TEMPLATES_TEMPLATES_FILTER_SEARCH_DESC');
?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>
		<div class="filter-select">
			<label class="selectlabel" for="client_id">
				<?php echo JText::_('JGLOBAL_FILTER_CLIENT'); ?>
			</label>
			<select name="client_id" id="client_id">
				<?php echo JHtml::_('select.options',
TemplatesHelper::getClientOptions(), 'value', 'text',
$this->state->get('client_id'));?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist" id="template-mgr">
		<thead>
			<tr>
				<th class="checkmark-col">
					&#160;
				</th>
				<th>
					<?php echo JHtml::_('grid.sort',
'COM_TEMPLATES_HEADING_TEMPLATE', 'a.element',
$listDirn, $listOrder); ?>
				</th>
				<th class="width-10">
					<?php echo JHtml::_('grid.sort', 'JCLIENT',
'a.client_id', $listDirn, $listOrder); ?>
				</th>
				<th class="center width-10">
					<?php echo JText::_('JVERSION'); ?>
				</th>
				<th class="width-15">
					<?php echo JText::_('JDATE'); ?>
				</th>
				<th class="width-25">
					<?php echo JText::_('JAUTHOR'); ?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) : ?>
			<tr class="row<?php echo $i % 2; ?>">
				<td class="center">
					<?php echo JHtml::_('templates.thumb', $item->element,
$item->client_id); ?>
				</td>
				<td class="template-name">
					<a href="<?php echo
JRoute::_('index.php?option=com_templates&view=template&id='.(int)
$item->extension_id . '&file=' . $this->file);
?>">
						<?php echo
JText::sprintf('COM_TEMPLATES_TEMPLATE_DETAILS', $item->name);
?></a>
					<p>
					<?php if ($this->preview && $item->client_id ==
'0') : ?>
						<a href="<?php echo
JUri::root().'index.php?tp=1&template='.$item->element;
?>" target="_blank">
							<?php echo JText::_('COM_TEMPLATES_TEMPLATE_PREVIEW');
?></a>
					<?php elseif ($item->client_id == '1') : ?>
						<?php echo
JText::_('COM_TEMPLATES_TEMPLATE_NO_PREVIEW_ADMIN'); ?>
					<?php else: ?>
						<span class="hasTooltip" title="<?php echo
JHtml::_('tooltipText',
'COM_TEMPLATES_TEMPLATE_NO_PREVIEW',
'COM_TEMPLATES_TEMPLATE_NO_PREVIEW_DESC'); ?>">
							<?php echo
JText::_('COM_TEMPLATES_TEMPLATE_NO_PREVIEW'); ?></span>
					<?php endif; ?>
					</p>
				</td>
				<td class="center">
					<?php echo $item->client_id == 0 ? JText::_('JSITE') :
JText::_('JADMINISTRATOR'); ?>
				</td>
				<td class="center">
					<?php echo
$this->escape($item->xmldata->get('version')); ?>
				</td>
				<td class="center">
					<?php echo
$this->escape($item->xmldata->get('creationDate'));
?>
				</td>
				<td>
					<?php if ($author = $item->xmldata->get('author'))
: ?>
						<p><?php echo $this->escape($author); ?></p>
					<?php else : ?>
						&mdash;
					<?php endif; ?>
					<?php if ($email =
$item->xmldata->get('authorEmail')) : ?>
						<p><?php echo $this->escape($email); ?></p>
					<?php endif; ?>
					<?php if ($url = $item->xmldata->get('authorUrl'))
: ?>
						<p><a href="<?php echo $this->escape($url);
?>">
							<?php echo $this->escape($url); ?></a></p>
					<?php endif; ?>
				</td>
				<?php echo JHtml::_('templates.thumbModal',
$item->element, $item->client_id); ?>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_users/debuggroup/default.php000064400000013346151163244070014021
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('bootstrap.tooltip');

$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
?>

<form action="<?php echo
JRoute::_('index.php?option=com_users&view=debuggroup&group_id='.(int)
$this->state->get('group_id'));?>"
method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('COM_USERS_SEARCH_ASSETS'); ?></legend>
		<div class="filter-search fltlft">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('COM_USERS_SEARCH_ASSETS'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_USERS_SEARCH_USERS'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_RESET'); ?></button>
		</div>

		<div class="filter-select fltrt">
			<label class="selectlabel"
for="filter_component"><?php echo
JText::_('COM_USERS_OPTION_SELECT_COMPONENT');
?></label>
			<select name="filter_component"
id="filter_component">
				<option value=""><?php echo
JText::_('COM_USERS_OPTION_SELECT_COMPONENT');?></option>
				<?php if (!empty($this->components))
				{
					echo JHtml::_('select.options', $this->components,
'value', 'text',
$this->state->get('filter.component'));
				}?>
			</select>

			<label class="selectlabel"
for="filter_level_start"><?php echo
JText::_('COM_USERS_OPTION_SELECT_LEVEL_START');
?></label>
			<select name="filter_level_start"
id="filter_level_start">
				<option value=""><?php echo
JText::_('COM_USERS_OPTION_SELECT_LEVEL_START');?></option>
				<?php echo JHtml::_('select.options', $this->levels,
'value', 'text',
$this->state->get('filter.level_start'));?>
			</select>

			<label class="selectlabel"
for="filter_level_end"><?php echo
JText::_('COM_USERS_OPTION_SELECT_LEVEL_END');
?></label>
			<select name="filter_level_end"
id="filter_level_end">
				<option value=""><?php echo
JText::_('COM_USERS_OPTION_SELECT_LEVEL_END');?></option>
				<?php echo JHtml::_('select.options', $this->levels,
'value', 'text',
$this->state->get('filter.level_end'));?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>

	</fieldset>
	<div class="clr"> </div>

	<div>
		<?php echo JText::_('COM_USERS_DEBUG_LEGEND'); ?>
		<span class="check-0 swatch"><?php echo
JText::sprintf('COM_USERS_DEBUG_IMPLICIT_DENY',
'-');?></span>
		<span class="check-a swatch"><?php echo
JText::sprintf('COM_USERS_DEBUG_EXPLICIT_ALLOW',
'&#10003;');?></span>
		<span class="check-d swatch"><?php echo
JText::sprintf('COM_USERS_DEBUG_EXPLICIT_DENY',
'&#10007;');?></span>
	</div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="left">
					<?php echo JHtml::_('grid.sort',
'COM_USERS_HEADING_ASSET_TITLE', 'a.title', $listDirn,
$listOrder); ?>
				</th>
				<th class="left">
					<?php echo JHtml::_('grid.sort',
'COM_USERS_HEADING_ASSET_NAME', 'a.name', $listDirn,
$listOrder); ?>
				</th>
				<?php foreach ($this->actions as $key => $action) : ?>
				<th class="width-5">
					<span class="hasTooltip" title="<?php echo
JHtml::_('tooltipText', $key, $action[1]);
?>"><?php echo JText::_($key); ?></span>
				</th>
				<?php endforeach; ?>
				<th class="width-5 nowrap">
					<?php echo JHtml::_('grid.sort',
'COM_USERS_HEADING_LFT', 'a.lft', $listDirn,
$listOrder); ?>
				</th>
				<th class="width-5 nowrap">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) : ?>
			<tr class="row1">
				<td>
					<?php echo $this->escape($item->title); ?>
				</td>
				<td class="nowrap">
					<?php echo str_repeat('<span
class="gi">|&mdash;</span>', $item->level)
?>
					<?php echo $this->escape($item->name); ?>
				</td>
				<?php foreach ($this->actions as $action) : ?>
					<?php
					$name  = $action[0];
					$check = $item->checks[$name];
					if ($check === true) :
						$class = 'check-a';
						$text  = '&#10003;';
					elseif ($check === false) :
						$class = 'check-d';
						$text  = '&#10007;';
					elseif ($check === null) :
						$class = 'check-0';
						$text  = '-';
					else :
						$class = '';
						$text  = '&#160;';
					endif;
					?>
				<td class="center <?php echo $class;?>">
					<?php echo $text; ?>
				</td>
				<?php endforeach; ?>
				<td class="center">
					<?php echo (int) $item->lft; ?>
					- <?php echo (int) $item->rgt; ?>
				</td>
				<td class="center">
					<?php echo (int) $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<div>
		<input type="hidden" name="task"
value="" />
		<input type="hidden" name="boxchecked"
value="0" />
		<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
		<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</div>
</form>
html/com_users/debuguser/default.php000064400000013346151163244070013643
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('bootstrap.tooltip');

$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
?>

<form action="<?php echo
JRoute::_('index.php?option=com_users&view=debuguser&user_id='
. (int) $this->state->get('user_id')); ?>"
method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('COM_USERS_SEARCH_ASSETS'); ?></legend>
		<div class="filter-search fltlft">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('COM_USERS_SEARCH_ASSETS'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_USERS_SEARCH_USERS'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_RESET'); ?></button>
		</div>

		<div class="filter-select fltrt">
			<label class="selectlabel"
for="filter_component"><?php echo
JText::_('COM_USERS_OPTION_SELECT_COMPONENT');
?></label>
			<select name="filter_component"
id="filter_component">
				<option value=""><?php echo
JText::_('COM_USERS_OPTION_SELECT_COMPONENT');?></option>
				<?php if (!empty($this->components))
				{
					echo JHtml::_('select.options', $this->components,
'value', 'text',
$this->state->get('filter.component'));
				}?>
			</select>

			<label class="selectlabel"
for="filter_level_start"><?php echo
JText::_('COM_USERS_OPTION_SELECT_LEVEL_START');
?></label>
			<select name="filter_level_start"
id="filter_level_start">
				<option value=""><?php echo
JText::_('COM_USERS_OPTION_SELECT_LEVEL_START');?></option>
				<?php echo JHtml::_('select.options', $this->levels,
'value', 'text',
$this->state->get('filter.level_start'));?>
			</select>

			<label class="selectlabel"
for="filter_level_end"><?php echo
JText::_('COM_USERS_OPTION_SELECT_LEVEL_END');
?></label>
			<select name="filter_level_end"
id="filter_level_end">
				<option value=""><?php echo
JText::_('COM_USERS_OPTION_SELECT_LEVEL_END');?></option>
				<?php echo JHtml::_('select.options', $this->levels,
'value', 'text',
$this->state->get('filter.level_end'));?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>

	</fieldset>
	<div class="clr"> </div>

	<div>
		<?php echo JText::_('COM_USERS_DEBUG_LEGEND'); ?>
		<span class="check-0 swatch"><?php echo
JText::sprintf('COM_USERS_DEBUG_IMPLICIT_DENY',
'-');?></span>
		<span class="check-a swatch"><?php echo
JText::sprintf('COM_USERS_DEBUG_EXPLICIT_ALLOW',
'&#10003;');?></span>
		<span class="check-d swatch"><?php echo
JText::sprintf('COM_USERS_DEBUG_EXPLICIT_DENY',
'&#10007;');?></span>
	</div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="left">
					<?php echo JHtml::_('grid.sort',
'COM_USERS_HEADING_ASSET_TITLE', 'a.title', $listDirn,
$listOrder); ?>
				</th>
				<th class="left">
					<?php echo JHtml::_('grid.sort',
'COM_USERS_HEADING_ASSET_NAME', 'a.name', $listDirn,
$listOrder); ?>
				</th>
				<?php foreach ($this->actions as $key => $action) : ?>
				<th class="width-5">
					<span class="hasTooltip" title="<?php echo
JHtml::_('tooltipText', $key, $action[1]);
?>"><?php echo JText::_($key); ?></span>
				</th>
				<?php endforeach; ?>
				<th class="width-5 nowrap">
					<?php echo JHtml::_('grid.sort',
'COM_USERS_HEADING_LFT', 'a.lft', $listDirn,
$listOrder); ?>
				</th>
				<th class="width-5 nowrap">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) : ?>
			<tr class="row1">
				<th>
					<?php echo $this->escape($item->title); ?>
				</th>
				<td class="nowrap">
					<?php echo str_repeat('<span
class="gi">|&mdash;</span>', $item->level)
?>
					<?php echo $this->escape($item->name); ?>
				</td>
				<?php foreach ($this->actions as $action) : ?>
					<?php
					$name  = $action[0];
					$check = $item->checks[$name];
					if ($check === true) :
						$class = 'check-a';
						$text  = '&#10003;';
					elseif ($check === false) :
						$class = 'check-d';
						$text  = '&#10007;';
					elseif ($check === null) :
						$class = 'check-0';
						$text  = '-';
					else :
						$class = '';
						$text  = '&#160;';
					endif;
					?>
				<td class="center <?php echo $class;?>">
					<?php echo $text; ?>
				</td>
				<?php endforeach; ?>
				<td class="center">
					<?php echo (int) $item->lft; ?>
					- <?php echo (int) $item->rgt; ?>
				</td>
				<td class="center">
					<?php echo (int) $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<div>
		<input type="hidden" name="task"
value="" />
		<input type="hidden" name="boxchecked"
value="0" />
		<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
		<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</div>
</form>
html/com_users/groups/default.php000064400000011411151163244070013164
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.multiselect');

$user      = JFactory::getUser();
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));

JText::script('COM_USERS_GROUPS_CONFIRM_DELETE');

$groupsWithUsers = array();

foreach ($this->items as $i => $item)
{
	if ($item->user_count > 0)
	{
		$groupsWithUsers[] = $i;
	}
}
JFactory::getDocument()->addScriptDeclaration('
		Joomla.submitbutton = function(task) {
			if (task == "groups.delete") {
				var f = document.adminForm;
				var cb = "";
				var groupsWithUsers = [' . implode(',',
$groupsWithUsers) . '];
				for (index = 0; index < groupsWithUsers.length; ++index) {
					cb = f["cb" + groupsWithUsers[index]];
					if (cb && cb.checked) {
						if
(confirm(Joomla.JText._("COM_USERS_GROUPS_CONFIRM_DELETE"))) {
							Joomla.submitform(task);
						}
						return;
					}
				}
			}
			Joomla.submitform(task);
		};
');
?>
<form action="<?php echo
JRoute::_('index.php?option=com_users&view=groups');?>"
method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('COM_USERS_SEARCH_GROUPS_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('COM_USERS_SEARCH_GROUPS_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_USERS_SEARCH_IN_GROUPS'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="title">
					<?php echo JText::_('COM_USERS_HEADING_GROUP_TITLE');
?>
				</th>
				<th class="width-10">
					<?php echo JText::_('COM_USERS_HEADING_USERS_IN_GROUP');
?>
				</th>
				<th class="nowrap id-col">
					<?php echo JText::_('JGRID_HEADING_ID'); ?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) :
			$canCreate = $user->authorise('core.create',
'com_users');
			$canEdit   = $user->authorise('core.edit',  
'com_users');
			// If this group is super admin and this user is not super admin,
$canEdit is false
			if (!$user->authorise('core.admin') &&
JAccess::checkGroup($item->id, 'core.admin'))
			{
				$canEdit = false;
			}
			$canChange =
$user->authorise('core.edit.state',	'com_users');
		?>
			<tr class="row<?php echo $i % 2; ?>">
				<td>
					<?php if ($canEdit) : ?>
						<?php echo JHtml::_('grid.id', $i, $item->id); ?>
					<?php endif; ?>
				</td>
				<td>
					<?php echo str_repeat('<span
class="gi">|&mdash;</span>', $item->level)
?>
					<?php if ($canEdit) : ?>
					<a href="<?php echo
JRoute::_('index.php?option=com_users&task=group.edit&id='.$item->id);?>">
						<?php echo $this->escape($item->title); ?></a>
					<?php else : ?>
						<?php echo $this->escape($item->title); ?>
					<?php endif; ?>
					<?php if (JDEBUG) : ?>
						<div class="fltrt"><div class="button2-left
smallsub"><div class="blank"><a
href="<?php echo
JRoute::_('index.php?option=com_users&view=debuggroup&group_id='.(int)
$item->id);?>">
						<?php echo
JText::_('COM_USERS_DEBUG_GROUP');?></a></div></div></div>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo $item->user_count ?: ''; ?>
				</td>
				<td class="center">
					<?php echo (int) $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
</div>
</form>
html/com_users/levels/default.php000064400000011622151163244070013143
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.multiselect');

$user      = JFactory::getUser();
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$canOrder  = $user->authorise('core.edit.state',
'com_users');
$saveOrder = $listOrder == 'a.ordering';
?>

<form action="<?php echo
JRoute::_('index.php?option=com_users&view=levels');
?>" method="post" id="adminForm"
name="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif; ?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('COM_USERS_SEARCH_ACCESS_LEVELS'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('COM_USERS_SEARCH_ACCESS_LEVELS'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_USERS_SEARCH_TITLE_LEVELS'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_RESET'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th>
					<?php echo JHtml::_('grid.sort',
'COM_USERS_HEADING_LEVEL_NAME', 'a.title', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap ordering-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ORDERING', 'a.ordering', $listDirn,
$listOrder); ?>
					<?php if ($canOrder && $saveOrder) : ?>
						<?php echo JHtml::_('grid.order', $this->items,
'filesave.png', 'levels.saveorder'); ?>
					<?php endif; ?>
				</th>
				<th class="nowrap id-col">
					<?php echo JText::_('JGRID_HEADING_ID'); ?>
				</th>
				<th class="width-40">
					&#160;
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) :
			$ordering  = ($listOrder == 'a.ordering');
			$canCreate = $user->authorise('core.create',    
'com_users');
			$canEdit   = $user->authorise('core.edit',      
'com_users');
			$canChange = $user->authorise('core.edit.state',
'com_users');
			?>
			<tr class="row<?php echo $i % 2; ?>">
				<td>
					<?php echo JHtml::_('grid.id', $i, $item->id); ?>
				</td>
				<td>
					<?php if ($canEdit) : ?>
					<a href="<?php echo
JRoute::_('index.php?option=com_users&task=level.edit&id='.$item->id);
?>">
						<?php echo $this->escape($item->title); ?></a>
					<?php else : ?>
						<?php echo $this->escape($item->title); ?>
					<?php endif; ?>
				</td>
				<td class="order">
					<?php if ($canChange) : ?>
						<?php if ($saveOrder) :?>
							<?php if ($listDirn == 'asc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
true, 'levels.orderup', 'JLIB_HTML_MOVE_UP',
$ordering); ?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
true, 'levels.orderdown', 'JLIB_HTML_MOVE_DOWN',
$ordering); ?></span>
							<?php elseif ($listDirn == 'desc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
true, 'levels.orderdown', 'JLIB_HTML_MOVE_UP',
$ordering); ?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
true, 'levels.orderup', 'JLIB_HTML_MOVE_DOWN',
$ordering); ?></span>
							<?php endif; ?>
						<?php endif; ?>
						<?php $disabled = $saveOrder ?  '' :
'disabled="disabled"'; ?>
						<input type="text" name="order[]"
value="<?php echo $item->ordering; ?>" <?php echo
$disabled; ?> class="text-area-order" title="<?php
echo $item->title; ?> order" />
					<?php else : ?>
						<?php echo $item->ordering; ?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo (int) $item->id; ?>
				</td>
				<td>
					&#160;
				</td>
			</tr>
		<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
</div>
</form>
html/com_users/note/edit.php000064400000004213151163244070012115
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_users
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.formvalidator');

JFactory::getDocument()->addScriptDeclaration('
jQuery(document).ready(function() {
	Joomla.submitbutton = function(task)
	{
		if (task == "note.cancel" ||
document.formvalidator.isValid(document.getElementById("note-form")))
		{
			' . $this->form->getField('body')->save() .
'
			Joomla.submitform(task, document.getElementById("note-form"));
		}
	}
});');
?>
<form action="<?php echo
JRoute::_('index.php?option=com_users&view=note&id=' .
(int) $this->item->id);?>" method="post"
name="adminForm" id="note-form"
class="form-validate">
	<div class="col main-section">
		<fieldset class="adminform">
			<legend><?php echo empty($this->item->id) ?
JText::_('COM_USERS_NEW_NOTE') :
JText::sprintf('COM_USERS_EDIT_NOTE', $this->item->id);
?></legend>
			<ul class="adminformlist">
				<li>
					<?php echo $this->form->getLabel('subject'); ?>
					<?php echo $this->form->getInput('subject'); ?>
				</li>
				<li>
					<div class="clr"></div>
					<?php echo $this->form->getLabel('user_id'); ?>
					<?php echo $this->form->getInput('user_id'); ?>
				</li>
				<li>
					<?php echo $this->form->getLabel('catid'); ?>
					<?php echo $this->form->getInput('catid'); ?>
				</li>
				<li>
					<?php echo $this->form->getLabel('state'); ?>
					<?php echo $this->form->getInput('state'); ?>
				</li>
				<li>
					<?php echo $this->form->getLabel('review_time');
?>
					<?php echo $this->form->getInput('review_time');
?>
				</li>
				<li>
					<?php echo $this->form->getLabel('version_note');
?>
					<?php echo $this->form->getInput('version_note');
?>
				</li>
			</ul>
			<div class="clr"></div>
			<?php echo $this->form->getLabel('body'); ?>
			<div class="clr"></div>
			<div class="editor">
				<?php echo $this->form->getInput('body'); ?>
			</div>

			<input type="hidden" name="task"
value="" />
			<?php echo JHtml::_('form.token'); ?>
		</fieldset>
</form>
html/com_users/notes/default.php000064400000013505151163244070013003
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$user = JFactory::getUser();
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn =
$this->escape($this->state->get('list.direction'));
$canEdit = $user->authorise('core.edit',
'com_users');
?>
<form action="<?php echo
JRoute::_('index.php?option=com_users&view=notes');?>"
method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('COM_USERS_SEARCH_IN_NOTE_TITLE'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_USERS_SEARCH_IN_NOTE_TITLE'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>

		<div class="filter-select">
			<span class="faux-label"><?php echo
JText::_('COM_USERS_FILTER_LABEL'); ?></span>

			<label class="selectlabel"
for="filter_category_id">
				<?php echo JText::_('JOPTION_SELECT_CATEGORY'); ?>
			</label>
			<select name="filter_category_id"
id="filter_category_id" >
				<option value=""><?php echo
JText::_('JOPTION_SELECT_CATEGORY');?></option>
				<?php
				echo JHtml::_(
					'select.options', JHtml::_('category.options',
'com_users'),
					'value', 'text',
$this->state->get('filter.category_id')
				); ?>
			</select>

			<label class="selectlabel"
for="filter_published">
				<?php echo JText::_('JOPTION_SELECT_PUBLISHED'); ?>
			</label>
			<select name="filter_published"
id="filter_published">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED');?></option>
				<?php
				echo JHtml::_(
					'select.options',
JHtml::_('jgrid.publishedOptions'),
					'value', 'text',
$this->state->get('filter.published'), true
				); ?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="toggle"
value="" class="checklist-toggle" title="<?php
echo JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="width-15">
					<?php echo JHtml::_('grid.sort',
'COM_USERS_USER_HEADING', 'u.name', $listDirn,
$listOrder); ?>
				</th>
				<th  class="title">
					<?php echo JHtml::_('grid.sort',
'COM_USERS_SUBJECT_HEADING', 'a.subject', $listDirn,
$listOrder); ?>
				</th>
				<th class="width-20">
					<?php echo JHtml::_('grid.sort',
'COM_USERS_CATEGORY_HEADING', 'c.title', $listDirn,
$listOrder); ?>
				</th>
				<th class="width-5">
					<?php echo JHtml::_('grid.sort', 'JSTATUS',
'a.state', $listDirn, $listOrder); ?>
				</th>
				<th class="width-10">
					<?php echo JHtml::_('grid.sort',
'COM_USERS_REVIEW_HEADING', 'a.review_time', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
				</th>
			</tr>
		</thead>
		<tbody>
		<?php foreach ($this->items as $i => $item) : ?>
			<?php $canChange =
$user->authorise('core.edit.state',	'com_users');
?>
			<tr class="row<?php echo $i % 2; ?>">
				<td class="center checklist">
					<?php echo JHtml::_('grid.id', $i, $item->id); ?>
				</td>
				<td>
					<?php if ($item->checked_out) : ?>
						<?php echo JHtml::_('jgrid.checkedout', $i,
$item->editor, $item->checked_out_time); ?>
					<?php endif; ?>
					<?php if ($canEdit) : ?>
						<a href="<?php echo
JRoute::_('index.php?option=com_users&task=note.edit&id='.$item->id);?>">
							<?php echo $this->escape($item->user_name); ?></a>
					<?php else : ?>
						<?php echo $this->escape($item->user_name); ?>
					<?php endif; ?>
				</td>
				<td>
					<?php if ($item->subject) : ?>
						<?php echo $this->escape($item->subject); ?>
					<?php else : ?>
						<?php echo JText::_('COM_USERS_EMPTY_SUBJECT'); ?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php if ($item->catid &&
$item->cparams->get('image')) : ?>
					<?php echo JHtml::_('users.image',
$item->cparams->get('image')); ?>
					<?php endif; ?>
					<?php echo $this->escape($item->category_title); ?>
				</td>
				<td class="center">
					<?php echo JHtml::_('jgrid.published', $item->state,
$i, 'notes.', $canChange, 'cb', $item->publish_up,
$item->publish_down); ?>
				</td>
				<td class="center">
					<?php if ($item->review_time !==
JFactory::getDbo()->getNullDate()) : ?>
						<?php echo JHtml::_('date', $item->review_time,
JText::_('DATE_FORMAT_LC4')); ?>
					<?php else : ?>
						<?php echo JText::_('COM_USERS_EMPTY_REVIEW'); ?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo (int) $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<div>
		<input type="hidden" name="task"
value="" />
		<input type="hidden" name="boxchecked"
value="0" />
		<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
		<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</div>
</form>
html/com_users/user/edit.php000064400000011402151163244070012124
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');

JHtml::_('behavior.formvalidator');
JHtml::_('behavior.keepalive');

// Get the form fieldsets.
$fieldsets = $this->form->getFieldsets();

JFactory::getDocument()->addScriptDeclaration("
	Joomla.submitbutton = function(task)
	{
		if (task == 'user.cancel' ||
document.formvalidator.isValid(document.getElementById('user-form')))
		{
			Joomla.submitform(task, document.getElementById('user-form'));
		}
	}

	Joomla.twoFactorMethodChange = function(e)
	{
		var selectedPane = 'com_users_twofactor_' +
jQuery('#jform_twofactor_method').val();

		jQuery.each(jQuery('#com_users_twofactor_forms_container>div'),
function(i, el) {
			if (el.id != selectedPane)
			{
				jQuery('#' + el.id).hide(0);
			}
			else
			{
				jQuery('#' + el.id).show(0);
			}
		});
	}
");
?>

<form action="<?php echo
JRoute::_('index.php?option=com_users&layout=edit&id='.(int)
$this->item->id); ?>" method="post"
name="adminForm" id="user-form"
class="form-validate" enctype="multipart/form-data">
	<div class="col main-section">
		<fieldset class="adminform">
			<legend><?php echo
JText::_('COM_USERS_USER_ACCOUNT_DETAILS'); ?></legend>
			<ul class="adminformlist">
			<?php foreach
($this->form->getFieldset('user_details') as $field) :
?>
				<li><?php echo $field->label; ?>
				<?php echo $field->input; ?></li>
			<?php endforeach; ?>
			</ul>
		</fieldset>
	</div>
	<div class="col options-section">
		<?php echo  JHtml::_('sliders.start',
'user-slider', array('useCookie' => 1)); ?>
		<?php if ($this->grouplist) : ?>
			<?php echo JHtml::_('sliders.panel',
JText::_('COM_USERS_ASSIGNED_GROUPS'), 'groups'); ?>
			<fieldset class="panelform">
				<legend class="element-invisible"><?php echo
JText::_('COM_USERS_ASSIGNED_GROUPS'); ?></legend>
				<?php echo $this->loadTemplate('groups'); ?>
			</fieldset>
		<?php endif; ?>
		<?php
		foreach ($fieldsets as $fieldset) :
			if ($fieldset->name == 'user_details') :
				continue;
			endif;
			echo JHtml::_('sliders.panel', JText::_($fieldset->label),
$fieldset->name);
		?>
		<fieldset class="panelform">
			<ul class="adminformlist">
				<?php foreach ($this->form->getFieldset($fieldset->name) as
$field) : ?>
					<?php if ($field->hidden) : ?>
						<?php echo $field->input; ?>
					<?php else : ?>
						<li><?php echo $field->label; ?>
						<?php echo $field->input; ?></li>
					<?php endif; ?>
				<?php endforeach; ?>
			</ul>
		</fieldset>
		<?php endforeach; ?>

		<?php if (!empty($this->tfaform) && $this->item->id):
?>
		<?php echo JHtml::_('sliders.panel',
JText::_('COM_USERS_USER_TWO_FACTOR_AUTH'),
'twofactorauth'); ?>
		<div class="control-group">
			<div class="control-label">
				<label id="jform_twofactor_method-lbl"
for="jform_twofactor_method" class="hasTooltip"
						title="<?php echo '<strong>' .
JText::_('COM_USERS_USER_FIELD_TWOFACTOR_LABEL') .
'</strong><br />' .
JText::_('COM_USERS_USER_FIELD_TWOFACTOR_DESC'); ?>">
					<?php echo
JText::_('COM_USERS_USER_FIELD_TWOFACTOR_LABEL'); ?>
				</label>
			</div>
			<div class="controls">
				<?php echo JHtml::_('select.genericlist',
Usershelper::getTwoFactorMethods(), 'jform[twofactor][method]',
array('onchange' =>
'Joomla.twoFactorMethodChange()'), 'value',
'text', $this->otpConfig->method,
'jform_twofactor_method', false) ?>
			</div>
		</div>
		<div id="com_users_twofactor_forms_container">
			<?php foreach ($this->tfaform as $form): ?>
			<?php $style = $form['method'] ==
$this->otpConfig->method ? 'display: block' :
'display: none'; ?>
			<div id="com_users_twofactor_<?php echo
$form['method'] ?>" style="<?php echo $style;
?>">
				<?php echo $form['form'] ?>
			</div>
			<?php endforeach; ?>
		</div>

		<fieldset>
			<legend>
				<?php echo JText::_('COM_USERS_USER_OTEPS') ?>
			</legend>
			<div class="alert alert-info">
				<?php echo JText::_('COM_USERS_USER_OTEPS_DESC') ?>
			</div>
			<?php if (empty($this->otpConfig->otep)): ?>
			<div class="alert alert-warning">
				<?php echo JText::_('COM_USERS_USER_OTEPS_WAIT_DESC')
?>
			</div>
			<?php else: ?>
			<?php foreach ($this->otpConfig->otep as $otep): ?>
			<span class="span3">
				<?php echo substr($otep, 0, 4) ?>-<?php echo substr($otep, 4,
4) ?>-<?php echo substr($otep, 8, 4) ?>-<?php echo
substr($otep, 12, 4) ?>
			</span>
			<?php endforeach; ?>
			<div class="clearfix"></div>
			<?php endif; ?>
		</fieldset>
		<?php endif; ?>

		<?php echo JHtml::_('sliders.end'); ?>

		<input type="hidden" name="task"
value="" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
html/com_users/users/default.php000064400000023237151163244070013017
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('bootstrap.tooltip');
JHtml::_('behavior.multiselect');

$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn =
$this->escape($this->state->get('list.direction'));
$loggeduser = JFactory::getUser();
?>

<form action="<?php echo
JRoute::_('index.php?option=com_users&view=users');?>"
method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif;?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('COM_USERS_SEARCH_USERS'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('COM_USERS_SEARCH_USERS'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_USERS_SEARCH_USERS'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_RESET'); ?></button>
		</div>

		<div class="filter-select">
			<span class="faux-label"><?php echo
JText::_('COM_USERS_FILTER_LABEL'); ?></span>

			<label class="selectlabel" for="filter_state">
				<?php echo JText::_('COM_USERS_FILTER_LABEL'); ?>
			</label>
			<select name="filter_state" id="filter_state">
				<option value="*"><?php echo
JText::_('COM_USERS_FILTER_STATE');?></option>
				<?php echo JHtml::_('select.options',
UsersHelper::getStateOptions(), 'value', 'text',
$this->state->get('filter.state'));?>
			</select>

			<label class="selectlabel"
for="filter_active">
				<?php echo JText::_('COM_USERS_FILTER_ACTIVE'); ?>
			</label>
			<select name="filter_active"
id="filter_active">
				<option value="*"><?php echo
JText::_('COM_USERS_FILTER_ACTIVE');?></option>
				<?php echo JHtml::_('select.options',
UsersHelper::getActiveOptions(), 'value', 'text',
$this->state->get('filter.active'));?>
			</select>

			<label class="selectlabel"
for="filter_group_id">
				<?php echo JText::_('COM_USERS_FILTER_USERGROUP'); ?>
			</label>
			<select name="filter_group_id"
id="filter_group_id">
				<option value=""><?php echo
JText::_('COM_USERS_FILTER_USERGROUP');?></option>
				<?php echo JHtml::_('select.options',
UsersHelper::getGroups(), 'value', 'text',
$this->state->get('filter.group_id'));?>
			</select>

			<label class="selectlabel"
for="filter_lastvisitrange">
				<?php echo
JText::_('COM_USERS_OPTION_FILTER_LAST_VISIT_DATE'); ?>
			</label>
			<select name="filter_lastvisitrange"
id="filter_lastvisitrange" >
				<option value=""><?php echo
JText::_('COM_USERS_OPTION_FILTER_LAST_VISIT_DATE');?></option>
				<?php echo JHtml::_('select.options',
Usershelper::getRangeOptions(), 'value', 'text',
$this->state->get('filter.lastvisitrange'));?>
			</select>

			<label class="selectlabel" for="filter_range">
				<?php echo JText::_('COM_USERS_OPTION_FILTER_DATE'); ?>
			</label>
			<select name="filter_range" id="filter_range"
>
				<option value=""><?php echo
JText::_('COM_USERS_OPTION_FILTER_DATE');?></option>
				<?php echo JHtml::_('select.options',
Usershelper::getRangeOptions(), 'value', 'text',
$this->state->get('filter.range'));?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'COM_USERS_HEADING_NAME', 'a.name', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap width-10">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_USERNAME', 'a.username', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap width-5">
					<?php echo JHtml::_('grid.sort',
'COM_USERS_HEADING_ENABLED', 'a.block', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap width-5">
					<?php echo JHtml::_('grid.sort',
'COM_USERS_HEADING_ACTIVATED', 'a.activation',
$listDirn, $listOrder); ?>
				</th>
				<th class="nowrap width-10">
					<?php echo JText::_('COM_USERS_HEADING_GROUPS'); ?>
				</th>
				<th class="nowrap width-15">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_EMAIL', 'a.email', $listDirn, $listOrder);
?>
				</th>
				<th class="nowrap width-15">
					<?php echo JHtml::_('grid.sort',
'COM_USERS_HEADING_LAST_VISIT_DATE', 'a.lastvisitDate',
$listDirn, $listOrder); ?>
				</th>
				<th class="nowrap width-15">
					<?php echo JHtml::_('grid.sort',
'COM_USERS_HEADING_REGISTRATION_DATE',
'a.registerDate', $listDirn, $listOrder); ?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) :
			$canEdit   = $this->canDo->get('core.edit');
			$canChange =
$loggeduser->authorise('core.edit.state',	'com_users');

			// If this group is super admin and this user is not super admin,
$canEdit is false
			if ((!$loggeduser->authorise('core.admin')) &&
JAccess::check($item->id, 'core.admin'))
			{
				$canEdit   = false;
				$canChange = false;
			}
		?>
			<tr class="row<?php echo $i % 2; ?>">
				<td>
					<?php if ($canEdit) : ?>
						<?php echo JHtml::_('grid.id', $i, $item->id); ?>
					<?php endif; ?>
				</td>
				<td class="break-word">
					<div class="fltrt">
						<?php echo JHtml::_('users.filterNotes',
$item->note_count, $item->id); ?>
						<?php echo JHtml::_('users.notes', $item->note_count,
$item->id); ?>
						<?php echo JHtml::_('users.addNote', $item->id);
?>
						<?php if ($item->requireReset == '1') : ?>
						<span class="label label-warning"><?php echo
JText::_('COM_USERS_PASSWORD_RESET_REQUIRED'); ?></span>
						<?php endif; ?>
						<?php echo JHtml::_('users.notesModal',
$item->note_count, $item->id); ?>
					</div>
					<?php if ($canEdit) : ?>
					<a href="<?php echo
JRoute::_('index.php?option=com_users&task=user.edit&id='.(int)
$item->id); ?>" title="<?php echo
JText::sprintf('COM_USERS_EDIT_USER',
$this->escape($item->name)); ?>">
						<?php echo $this->escape($item->name); ?></a>
					<?php else : ?>
						<?php echo $this->escape($item->name); ?>
					<?php endif; ?>
					<?php if (JDEBUG) : ?>
						<div class="fltrt"><div class="button2-left
smallsub"><div class="blank"><a
href="<?php echo
JRoute::_('index.php?option=com_users&view=debuguser&user_id='.(int)
$item->id);?>">
						<?php echo
JText::_('COM_USERS_DEBUG_USER');?></a></div></div></div>
					<?php endif; ?>
				</td>
				<td class="center break-word">
					<?php echo $this->escape($item->username); ?>
				</td>
				<td class="center">
					<?php if ($canChange) : ?>
						<?php if ($loggeduser->id != $item->id) : ?>
							<?php echo JHtml::_('grid.boolean', $i,
!$item->block, 'users.unblock', 'users.block');
?>
						<?php else : ?>
							<?php echo JHtml::_('grid.boolean', $i,
!$item->block, 'users.block', null); ?>
						<?php endif; ?>
					<?php else : ?>
						<?php echo JText::_($item->block ? 'JNO' :
'JYES'); ?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo JHtml::_('grid.boolean', $i,
!$item->activation, 'users.activate', null); ?>
				</td>
				<td class="center">
					<?php if (substr_count($item->group_names, "\n") >
1) : ?>
						<span class="hasTooltip" title="<?php echo
JHtml::_('tooltipText',
JText::_('COM_USERS_HEADING_GROUPS'),
nl2br($item->group_names), 0); ?>"><?php echo
JText::_('COM_USERS_USERS_MULTIPLE_GROUPS'); ?></span>
					<?php else : ?>
						<?php echo nl2br($item->group_names); ?>
					<?php endif; ?>
				</td>
				<td class="center break-word">
					<?php echo $this->escape($item->email); ?>
				</td>
				<td class="center">
					<?php if ($item->lastvisitDate !=
$this->db->getNullDate()) : ?>
						<?php echo JHtml::_('date', $item->lastvisitDate,
JText::_('DATE_FORMAT_LC6')); ?>
					<?php else:?>
						<?php echo JText::_('JNEVER'); ?>
					<?php endif;?>
				</td>
				<td class="center">
					<?php echo JHtml::_('date', $item->registerDate,
JText::_('DATE_FORMAT_LC6')); ?>
				</td>
				<td class="center">
					<?php echo (int) $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

	<?php // Load the batch processing form if user is allowed ?>
	<?php if ($loggeduser->authorise('core.create',
'com_users')
		&& $loggeduser->authorise('core.edit',
'com_users')
		&& $loggeduser->authorise('core.edit.state',
'com_users')) : ?>
		<?php echo JHtml::_(
			'bootstrap.renderModal',
			'collapseModal',
			array(
				'title'  => JText::_('COM_USERS_BATCH_OPTIONS'),
				'footer' =>
$this->loadTemplate('batch_footer'),
			),
			$this->loadTemplate('batch_body')
		); ?>
	<?php endif;?>

	<?php echo $this->pagination->getListFooter(); ?>
	<div>
		<input type="hidden" name="task"
value="" />
		<input type="hidden" name="boxchecked"
value="0" />
		<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
		<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</div>
</form>
html/com_users/users/modal.php000064400000007055151163244070012467
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

$input     = JFactory::getApplication()->input;
$field     = $input->getCmd('field');
$function  = 'jSelectUser_'.$field;
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
?>
<form action="<?php echo
JRoute::_('index.php?option=com_users&view=users&layout=modal&tmpl=component&groups='
. $input->get('groups', '', 'BASE64') .
'&excluded=' . $input->get('excluded',
'', 'BASE64'));?>" method="post"
name="adminForm" id="adminForm">
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_USERS_SEARCH_IN_NAME'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
			<button type="button" data-user-value=""
data-user-name="<?php echo
$this->escape(JText::_('JLIB_FORM_SELECT_USER')); ?>"
data-user-field="<?php echo $this->escape($field);?>"
				onclick="if (window.parent)
window.parent.jSelectUser(this);"><?php echo
JText::_('JOPTION_NO_USER')?></button>
		</div>

		<div class="filter-select">
			<label for="filter_group_id">
				<?php echo JText::_('COM_USERS_FILTER_USER_GROUP'); ?>
			</label>
			<?php echo JHtml::_('access.usergroup',
'filter_group_id',
$this->state->get('filter.group_id')); ?>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>

	<table class="adminlist modal">
		<thead>
			<tr>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'COM_USERS_HEADING_NAME', 'a.name', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap width=25">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_USERNAME', 'a.username', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap width=25">
					<?php echo JText::_('COM_USERS_HEADING_GROUPS'); ?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php
			$i = 0;
			foreach ($this->items as $item) : ?>
			<tr class="row<?php echo $i % 2; ?>">
				<td>
					<a class="pointer"
						data-user-value="<?php echo $item->id; ?>"
data-user-name="<?php echo $this->escape($item->name);
?>" data-user-field="<?php echo
$this->escape($field);?>"
						onclick="if (window.parent)
window.parent.jSelectUser(this);">
						<?php echo $item->name; ?></a>
				</td>
				<td class="center">
					<?php echo $item->username; ?>
				</td>
				<td class="title">
					<?php echo nl2br($item->group_names); ?>
				</td>
			</tr>
		<?php endforeach; ?>
		</tbody>
	</table>

	<?php echo $this->pagination->getListFooter(); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
</form>
html/com_weblinks/weblink/edit.php000064400000011337151163244070013265
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

$saveHistory =
$this->state->get('params')->get('save_history',
0);

JHtml::_('behavior.formvalidator');

JFactory::getDocument()->addScriptDeclaration("
	Joomla.submitbutton = function(task)
	{
		if (task == 'weblink.cancel' ||
document.formvalidator.isValid(document.id('weblink-form')))
		{
			" . $this->form->getField('description')->save()
. "
			Joomla.submitform(task,
document.getElementById('weblink-form'));
		}
	}
");
?>
<div class="weblink-edit">

<form action="<?php echo
JRoute::_('index.php?option=com_weblinks&layout=edit&id='.(int)
$this->item->id); ?>" method="post"
name="adminForm" id="weblink-form"
class="form-validate">
	<div class="col main-section">
		<fieldset class="adminform">
			<legend><?php echo empty($this->item->id) ?
JText::_('COM_WEBLINKS_NEW_WEBLINK') :
JText::sprintf('COM_WEBLINKS_EDIT_WEBLINK',
$this->item->id); ?></legend>
			<ul class="adminformlist">
				<li><?php echo $this->form->getLabel('title');
?>
				<?php echo $this->form->getInput('title');
?></li>

				<li><?php echo $this->form->getLabel('alias');
?>
				<?php echo $this->form->getInput('alias');
?></li>

				<li><?php echo $this->form->getLabel('url');
?>
				<?php echo $this->form->getInput('url');
?></li>

				<li><?php echo $this->form->getLabel('catid');
?>
				<?php echo $this->form->getInput('catid');
?></li>

				<li><?php echo $this->form->getLabel('state');
?>
				<?php echo $this->form->getInput('state');
?></li>

				<li><?php echo
$this->form->getLabel('access'); ?>
				<?php echo $this->form->getInput('access');
?></li>

				<li><?php echo
$this->form->getLabel('ordering'); ?>
				<?php echo $this->form->getInput('ordering');
?></li>

				<li><?php echo
$this->form->getLabel('language'); ?>
				<?php echo $this->form->getInput('language');
?></li>

				<!-- Tag field -->
				<li><?php echo $this->form->getLabel('tags');
?>
					<div class="is-tagbox">
						<?php echo $this->form->getInput('tags'); ?>
					</div>
				</li>

				<?php if ($saveHistory) : ?>
					<li><?php echo
$this->form->getLabel('version_note'); ?>
					<?php echo $this->form->getInput('version_note');
?></li>
				<?php endif; ?>

				<li><?php echo $this->form->getLabel('id');
?>
				<?php echo $this->form->getInput('id');
?></li>
			</ul>

			<div>
				<?php echo $this->form->getLabel('description');
?>
				<div class="clr"></div>
				<?php echo $this->form->getInput('description');
?>
			</div>
		</fieldset>
	</div>

	<div class="col options-section">
		<?php echo JHtml::_('sliders.start',
'weblink-sliders-'.$this->item->id,
array('useCookie' => 1)); ?>

		<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_PUBLISHING'),
'publishing-details'); ?>

		<fieldset class="panelform">
			<legend class="element-invisible"><?php echo
JText::_('JGLOBAL_FIELDSET_PUBLISHING'); ?></legend>
			<ul class="adminformlist">

				<li><?php echo
$this->form->getLabel('created_by'); ?>
				<?php echo $this->form->getInput('created_by');
?></li>

				<li><?php echo
$this->form->getLabel('created_by_alias'); ?>
				<?php echo
$this->form->getInput('created_by_alias'); ?></li>

				<li><?php echo
$this->form->getLabel('created'); ?>
				<?php echo $this->form->getInput('created');
?></li>

				<li><?php echo
$this->form->getLabel('publish_up'); ?>
				<?php echo $this->form->getInput('publish_up');
?></li>

				<li><?php echo
$this->form->getLabel('publish_down'); ?>
				<?php echo $this->form->getInput('publish_down');
?></li>

				<?php if ($this->item->modified_by) : ?>
					<li><?php echo
$this->form->getLabel('modified_by'); ?>
					<?php echo $this->form->getInput('modified_by');
?></li>

					<li><?php echo
$this->form->getLabel('modified'); ?>
					<?php echo $this->form->getInput('modified');
?></li>
				<?php endif; ?>

				<?php if ($this->item->hits) : ?>
					<li><?php echo $this->form->getLabel('hits');
?>
					<?php echo $this->form->getInput('hits');
?></li>
				<?php endif; ?>

			</ul>
		</fieldset>

		<?php echo $this->loadTemplate('params'); ?>

		<?php echo JHtml::_('sliders.panel',
JText::_('JGLOBAL_FIELDSET_METADATA_OPTIONS'),
'meta-options'); ?>
		<fieldset class="panelform">
		<legend class="element-invisible"><?php echo
JText::_('JGLOBAL_FIELDSET_METADATA_OPTIONS');
?></legend>
			<?php echo $this->loadTemplate('metadata'); ?>
		</fieldset>

		<?php echo JHtml::_('sliders.end'); ?>

		<input type="hidden" name="task"
value="" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
	<div class="clr"></div>
</form>
</div>
html/com_weblinks/weblink/edit_params.php000064400000001707151163244070014630
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$fieldSets = $this->form->getFieldsets('params');
foreach ($fieldSets as $name => $fieldSet) :
	echo JHtml::_('sliders.panel', JText::_($fieldSet->label),
$name.'-params');
	if (isset($fieldSet->description) &&
trim($fieldSet->description)) :
		echo '<p
class="tip">'.$this->escape(JText::_($fieldSet->description)).'</p>';
	endif;
	?>
	<fieldset class="panelform">
		<legend class="element-invisible"><?php echo
JText::_($fieldSet->label); ?></legend>
		<ul class="adminformlist">
		<?php foreach ($this->form->getFieldset($name) as $field) :
?>
			<li><?php echo $field->label; ?>
			<?php echo $field->input; ?></li>
		<?php endforeach; ?>
		</ul>
	</fieldset>
<?php endforeach; ?>
html/com_weblinks/weblinks/default.php000064400000022226151163244070014146
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');

JHtml::_('behavior.multiselect');
JHtml::_('behavior.modal');

$user      = JFactory::getUser();
$userId    = $user->get('id');
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$canOrder  = $user->authorise('core.edit.state',
'com_weblinks');
$saveOrder = $listOrder == 'a.ordering';
?>

<form action="<?php echo
JRoute::_('index.php?option=com_weblinks&view=weblinks');
?>" method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif; ?>
	<fieldset id="filter-bar">
	<legend class="element-invisible"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></legend>
		<div class="filter-search">
			<label class="filter-search-lbl"
for="filter_search"><?php echo
JText::_('JSEARCH_FILTER_LABEL'); ?></label>
			<input type="text" name="filter_search"
id="filter_search" value="<?php echo
$this->escape($this->state->get('filter.search'));
?>" title="<?php echo
JText::_('COM_WEBLINKS_SEARCH_IN_TITLE'); ?>" />
			<button type="submit"><?php echo
JText::_('JSEARCH_FILTER_SUBMIT'); ?></button>
			<button type="button"
onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php
echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button>
		</div>

		<div class="filter-select">
			<label class="selectlabel"
for="filter_published">
				<?php echo JText::_('JOPTION_SELECT_PUBLISHED'); ?>
			</label>
			<select name="filter_published"
id="filter_published">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_PUBLISHED'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('jgrid.publishedOptions'), 'value',
'text', $this->state->get('filter.state'), true);
?>
			</select>

			<label class="selectlabel"
for="filter_category_id">
				<?php echo JText::_('JOPTION_SELECT_CATEGORY'); ?>
			</label>
			<select name="filter_category_id"
id="filter_category_id">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_CATEGORY'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('category.options', 'com_weblinks'),
'value', 'text',
$this->state->get('filter.category_id')); ?>
			</select>

			<label class="selectlabel"
for="filter_access">
				<?php echo JText::_('JOPTION_SELECT_ACCESS'); ?>
			</label>
			<select name="filter_access"
id="filter_access">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_ACCESS'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('access.assetgroups'), 'value',
'text', $this->state->get('filter.access'));
?>
			</select>

			<label class="selectlabel"
for="filter_language">
				<?php echo JText::_('JOPTION_SELECT_LANGUAGE'); ?>
			</label>
			<select name="filter_language"
id="filter_language">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_LANGUAGE'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('contentlanguage.existing', true, true),
'value', 'text',
$this->state->get('filter.language')); ?>
			</select>

			<label class="selectlabel" for="filter_tag">
				<?php echo JText::_('JOPTION_SELECT_TAG'); ?>
			</label>
			<select name="filter_tag" id="filter_tag">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_TAG'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('tag.options', true, true), 'value',
'text', $this->state->get('filter.tag')); ?>
			</select>

			<button type="submit" id="filter-go">
				<?php echo JText::_('JSUBMIT'); ?></button>
		</div>
	</fieldset>
	<div class="clr"> </div>

	<table class="adminlist">
		<thead>
			<tr>
				<th class="checkmark-col">
					<input type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" />
				</th>
				<th class="title">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder);
?>
				</th>
				<th class="nowrap state-col">
					<?php echo JHtml::_('grid.sort', 'JSTATUS',
'a.state', $listDirn, $listOrder); ?>
				</th>
				<th class="nowrap title category-col">
					<?php echo JHtml::_('grid.sort', 'JCATEGORY',
'category_title', $listDirn, $listOrder); ?>
				</th>
				<th class="nowrap ordering-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ORDERING', 'a.ordering', $listDirn,
$listOrder); ?>
					<?php if ($canOrder && $saveOrder) : ?>
						<?php echo JHtml::_('grid.order', $this->items,
'filesave.png', 'weblinks.saveorder'); ?>
					<?php endif; ?>
				</th>
				<th class="title access-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ACCESS', 'a.access', $listDirn,
$listOrder); ?>
				</th>
				<th class="hits-col">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_HITS', 'a.hits', $listDirn, $listOrder); ?>
				</th>
				<th class="width-5">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_LANGUAGE', 'a.language', $listDirn,
$listOrder); ?>
				</th>
				<th class="nowrap id-col">
					<?php echo JHtml::_('grid.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
				</th>
			</tr>
		</thead>

		<tbody>
		<?php foreach ($this->items as $i => $item) :
			$ordering       = ($listOrder == 'a.ordering');
			$item->cat_link =
JRoute::_('index.php?option=com_categories&extension=com_weblinks&task=edit&type=other&cid[]='
. $item->catid);
			$canCreate      = $user->authorise('core.create',    
'com_weblinks.category.' . $item->catid);
			$canEdit        = $user->authorise('core.edit',      
'com_weblinks.category.' . $item->catid);
			$canCheckin     = $user->authorise('core.manage',    
'com_checkin') || $item->checked_out ==
$user->get('id') || $item->checked_out == 0;
			$canChange      = $user->authorise('core.edit.state',
'com_weblinks.category.' . $item->catid) &&
$canCheckin;
			?>
			<tr class="row<?php echo $i % 2; ?>">
				<td>
					<?php echo JHtml::_('grid.id', $i, $item->id); ?>
				</td>
				<td>
					<?php if ($item->checked_out) : ?>
						<?php echo JHtml::_('jgrid.checkedout', $i,
$item->editor, $item->checked_out_time, 'weblinks.',
$canCheckin); ?>
					<?php endif; ?>
					<?php if ($canEdit) : ?>
						<a href="<?php echo
JRoute::_('index.php?option=com_weblinks&task=weblink.edit&id='.(int)
$item->id); ?>">
							<?php echo $this->escape($item->title); ?></a>
					<?php else : ?>
							<?php echo $this->escape($item->title); ?>
					<?php endif; ?>
					<p class="smallsub">
						<?php echo JText::sprintf('JGLOBAL_LIST_ALIAS',
$this->escape($item->alias)); ?></p>
				</td>
				<td class="center">
					<?php echo JHtml::_('jgrid.published', $item->state,
$i, 'weblinks.', $canChange, 'cb',
$item->publish_up, $item->publish_down); ?>
				</td>
				<td class="center">
					<?php echo $this->escape($item->category_title); ?>
				</td>
				<td class="order">
					<?php if ($canChange) : ?>
						<?php if ($saveOrder) :?>
							<?php if ($listDirn == 'asc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
$item->catid == @$this->items[$i - 1]->catid,
'weblinks.orderup', 'JLIB_HTML_MOVE_UP', $ordering);
?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
$item->catid == @$this->items[$i + 1]->catid,
'weblinks.orderdown', 'JLIB_HTML_MOVE_DOWN',
$ordering); ?></span>
							<?php elseif ($listDirn == 'desc') : ?>
								<span><?php echo $this->pagination->orderUpIcon($i,
$item->catid == @$this->items[$i - 1]->catid,
'weblinks.orderdown', 'JLIB_HTML_MOVE_UP', $ordering);
?></span>
								<span><?php echo
$this->pagination->orderDownIcon($i, $this->pagination->total,
$item->catid == @$this->items[$i + 1]->catid,
'weblinks.orderup', 'JLIB_HTML_MOVE_DOWN', $ordering);
?></span>
							<?php endif; ?>
						<?php endif; ?>
						<?php $disabled = $saveOrder ? '' :
'disabled="disabled"'; ?>
						<input type="text" name="order[]"
value="<?php echo $item->ordering; ?>" <?php echo
$disabled; ?> class="text-area-order" title="<?php
echo $item->title; ?> order" />
					<?php else : ?>
						<?php echo $item->ordering; ?>
					<?php endif; ?>
				</td>
				<td class="center">
					<?php echo $this->escape($item->access_level); ?>
				</td>
				<td class="center">
					<?php echo $item->hits; ?>
				</td>
				<td class="center">
					<?php echo
JLayoutHelper::render('joomla.content.language', $item); ?>
				</td>
				<td class="center">
					<?php echo (int) $item->id; ?>
				</td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>

<?php echo $this->pagination->getListFooter(); ?>
	<div class="clr"> </div>

	<?php //Load the batch processing form. ?>
	<?php echo $this->loadTemplate('batch'); ?>

	<input type="hidden" name="task" value=""
/>
	<input type="hidden" name="boxchecked"
value="0" />
	<input type="hidden" name="filter_order"
value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir"
value="<?php echo $listDirn; ?>" />
	<?php echo JHtml::_('form.token'); ?>
</div>
</form>
html/layouts/com_media/toolbar/deletemedia.php000064400000000751151163244070015550
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_media
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$title = JText::_('JTOOLBAR_DELETE');
?>
<button
onclick="MediaManager.submit('folder.delete')"
class="toolbar">
	<span class="icon-32-delete" title="<?php echo
$title; ?>"></span> <?php echo $title; ?>
</button>
html/layouts/com_media/toolbar/newfolder.php000064400000000770151163244070015274
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_media
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$title = JText::_('COM_MEDIA_CREATE_NEW_FOLDER');
?>
<button data-toggle="collapse"
data-target="#collapseFolder" class="toolbar">
	<span class="icon-folder" title="<?php echo $title;
?>"></span> <?php echo $title; ?>
</button>
html/layouts/com_media/toolbar/uploadmedia.php000064400000000757151163244070015600
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_media
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$title = JText::_('JTOOLBAR_UPLOAD');
?>
<button data-toggle="collapse"
data-target="#collapseUpload" class="toolbar">
	<span class="icon-32-upload" title="<?php echo
$title; ?>"></span> <?php echo $title; ?>
</button>
html/layouts/com_messages/toolbar/mysettings.php000064400000001110151163244070016232
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_messages
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$text = JText::_('COM_MESSAGES_TOOLBAR_MY_SETTINGS');
?>
<a rel="{handler:'iframe', size:{x:700,y:300}}"
href="index.php?option=com_messages&amp;view=config&amp;tmpl=component"
title="<?php echo $text; ?>" class="messagesSettings
toolbar">
	<span class="icon-32-options"></span> <?php echo
$text; ?>
</a>
html/layouts/com_modules/toolbar/cancelselect.php000064400000000746151163244070016330
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_modules
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$text = JText::_('JTOOLBAR_CANCEL');
?>
<a
onclick="location.href='index.php?option=com_modules'"
class="toolbar" title="<?php echo $text; ?>">
	<span class="icon-32-cancel"></span> <?php echo
$text; ?>
</a>
html/layouts/com_modules/toolbar/newmodule.php000064400000000756151163244070015703
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_modules
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$text = JText::_('JTOOLBAR_NEW');
?>
<a href="javascript:void(0)"
onclick="location.href='index.php?option=com_modules&amp;view=select'"
class="toolbar">
	<span class="icon-32-new"></span>
	<?php echo $text; ?>
</a>
html/layouts/joomla/edit/details.php000064400000006567151163244070013575
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// JLayout for standard handling of the details sidebar in administrator
edit screens.
$title =
$displayData->get('form')->getValue('title');
$published =
$displayData->get('form')->getValue('published');
$saveHistory =
$displayData->get('state')->get('params')->get('save_history',
0);
?>
<div class="span2">
<h4><?php echo JText::_('JDETAILS');?></h4>
			<hr />
			<fieldset class="form-vertical">
				<?php if (empty($title)) : ?>
					<div class="control-group">
						<div class="controls">
							<?php echo
$displayData->get('form')->getValue('name');
?>
						</div>
					</div>
				<?php else : ?>
				<div class="control-group">
					<div class="controls">
						<?php echo
$displayData->get('form')->getValue('title');
?>
					</div>
				</div>
				<?php endif; ?>

				<?php if ($published) : ?>
					<div class="control-group">
						<div class="control-label">
							<?php echo
$displayData->get('form')->getLabel('published');
?>
						</div>
						<div class="controls">
							<?php echo
$displayData->get('form')->getInput('published');
?>
						</div>
					</div>
				<?php else : ?>
					<div class="control-group">
						<div class="control-label">
							<?php echo
$displayData->get('form')->getLabel('state');
?>
						</div>
						<div class="controls">
							<?php echo
$displayData->get('form')->getInput('state');
?>
						</div>
					</div>
				<?php endif; ?>

				<div class="control-group">
					<div class="control-label">
						<?php echo
$displayData->get('form')->getLabel('access');
?>
					</div>
					<div class="controls">
						<?php echo
$displayData->get('form')->getInput('access');
?>
					</div>
				</div>
				<div class="control-group">
					<div class="control-label">
						<?php echo
$displayData->get('form')->getLabel('featured');
?>
					</div>
					<div class="controls">
						<?php echo
$displayData->get('form')->getInput('featured');
?>
					</div>
				</div>
				<?php if (JLanguageMultilang::isEnabled()) : ?>
					<div class="control-group">
						<div class="control-label">
							<?php echo
$displayData->get('form')->getLabel('language');
?>
						</div>
						<div class="controls">
							<?php echo
$displayData->get('form')->getInput('language');
?>
						</div>
					</div>
				<?php else : ?>
				<input type="hidden" name="language"
value="<?php echo
$displayData->get('form')->getValue('language');
?>" />
				<?php endif; ?>
				<div class="control-group">
					<?php foreach
($displayData->get('form')->getFieldset('jmetadata')
as $field) : ?>
						<?php if ($field->name == 'jform[metadata][tags][]')
:?>
						<div class="control-group">
							<div class="control-label"><?php echo
$field->label; ?></div>
							<div class="controls"><?php echo
$field->input; ?></div>
						</div>
						<?php endif; ?>
					<?php endforeach; ?>
				</div>
				<?php if ($saveHistory) : ?>
					<div class="control-group">
						<div class="control-label">
							<?php echo
$displayData->get('form')->getLabel('version_note');
?>
						</div>
						<div class="controls">
							<?php echo
$displayData->get('form')->getInput('version_note');
?>
						</div>
					</div>
				<?php endif; ?>
			</fieldset>
		</div>
html/layouts/joomla/edit/fieldset.php000064400000002425151163244070013734
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$app = JFactory::getApplication();
$form = $displayData->getForm();

$name = $displayData->get('fieldset');
$fieldSet = $form->getFieldset($name);

if (empty($fieldSet))
{
	return;
}

$ignoreFields = $displayData->get('ignore_fields') ? :
array();
$extraFields = $displayData->get('extra_fields') ? : array();

if ($displayData->get('show_options', 1))
{
	if (isset($extraFields[$name]))
	{
		foreach ($extraFields[$name] as $f)
		{
			if (in_array($f, $ignoreFields))
			{
				continue;
			}
			if ($form->getField($f))
			{
				$fieldSet[] = $form->getField($f);
			}
		}
	}

	$html = array();
	$html[] = '<fieldset class="panelform">';
	$html[] = '<ul class="adminformlist">';

	foreach ($fieldSet as $field)
	{
		$html[] = '<li> ' . $field->label . $field->input .
'</li>';
	}
	$html[] = '</ul>';
	$html[] = '</fieldset>';

	echo implode('', $html);
}
else
{
	$html = array();
	$html[] = '<div style="display:none;">';
	foreach ($fieldSet as $field)
	{
		$html[] = $field->input;
	}
	$html[] = '</div>';

	echo implode('', $html);
}
html/layouts/joomla/edit/global.php000064400000002562151163244070013377
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$app       = JFactory::getApplication();
$form      = $displayData->getForm();
$input     = $app->input;
$component = $input->getCmd('option',
'com_content');

if ($component === 'com_categories')
{
	$extension = $input->getCmd('extension',
'com_content');
	$parts     = explode('.', $extension);
	$component = $parts[0];
}

$saveHistory =
JComponentHelper::getParams($component)->get('save_history',
0);

$fields = $displayData->get('fields') ?: array(
	array('parent', 'parent_id'),
	array('published', 'state', 'enabled'),
	array('category', 'catid'),
	'featured',
	'sticky',
	'access',
	'language',
	'tags',
	'note',
	'version_note',
);

$hiddenFields = $displayData->get('hidden_fields') ?: array();

if (!$saveHistory)
{
	$hiddenFields[] = 'version_note';
}

$html   = array();
$html[] = '<fieldset class="panelform">';

foreach ($fields as $field)
{
	foreach ((array) $field as $f)
	{
		if ($form->getField($f))
		{
			if (in_array($f, $hiddenFields))
			{
				$form->setFieldAttribute($f, 'type', 'hidden');
			}

			$html[] = $form->renderField($f);
			break;
		}
	}
}

$html[] = '</fieldset>';

echo implode('', $html);
html/layouts/joomla/edit/metadata.php000064400000002472151163244070013717
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// JLayout for standard handling of metadata fields in the administrator
content edit screens.
$form = $displayData->get('form');
?>
<fieldset>
	<div class="control-group">
		<?php echo $form->getLabel('metadesc'); ?>
		<div class="controls">
			<?php echo $form->getInput('metadesc'); ?>
		</div>
	</div>
	<div class="control-group">
		<?php echo $form->getLabel('metakey'); ?>
		<div class="controls">
			<?php echo $form->getInput('metakey'); ?>
		</div>
	</div>
	<?php if ($form->getLabel('xreference')):?>
		<div class="control-group">
			<?php echo $form->getLabel('xreference'); ?>
			<div class="controls">
				<?php echo $form->getInput('xreference'); ?>
			</div>
		</div>
	<?php endif; ?>
	<?php foreach ($form->getGroup('metadata') as $field) :
?>
		<?php if ($field->name != 'jform[metadata][tags][]')
:?>
			<div class="control-group">
				<?php if (!$field->hidden) : ?>
					<?php echo $field->label; ?>
				<?php endif; ?>
				<div class="controls">
					<?php echo $field->input; ?>
				</div>
			</div>
		<?php endif; ?>
	<?php endforeach; ?>
</fieldset>
html/layouts/joomla/edit/params.php000064400000004661151163244070013424
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$app       = JFactory::getApplication();
$form      = $displayData->getForm();
$fieldSets = $form->getFieldsets();

if (empty($fieldSets))
{
	return;
}

$ignoreFieldsets = $displayData->get('ignore_fieldsets') ?:
array();
$ignoreFields    = $displayData->get('ignore_fields') ?:
array();
$extraFields     = $displayData->get('extra_fields') ?:
array();
$tabName         = $displayData->get('tab_name') ?:
'myTab';

if (!empty($displayData->hiddenFieldsets))
{
	// These are required to preserve data on save when fields are not
displayed.
	$hiddenFieldsets = $displayData->hiddenFieldsets ?: array();
}

if (!empty($displayData->configFieldsets))
{
	// These are required to configure showing and hiding fields in the
editor.
	$configFieldsets = $displayData->configFieldsets ?: array();
}

if ($displayData->get('show_options', 1))
{
	foreach ($fieldSets as $name => $fieldSet)
	{
		// Ensure any fieldsets we don't want to show are skipped (including
repeating formfield fieldsets)
		if ((isset($fieldSet->repeat) && $fieldSet->repeat == true)
			|| in_array($name, $ignoreFieldsets)
			|| (!empty($configFieldsets) && in_array($name,
$configFieldsets))
			|| (!empty($hiddenFieldsets) && in_array($name,
$hiddenFieldsets))
		)
		{
			continue;
		}

		if (!empty($fieldSet->label))
		{
			$label = JText::_($fieldSet->label);
		}
		else
		{
			$label = strtoupper('JGLOBAL_FIELDSET_' . $name);
			if (JText::_($label) === $label)
			{
				$label = strtoupper($app->input->get('option') .
'_' . $name . '_FIELDSET_LABEL');
			}
			$label = JText::_($label);
		}

		if (isset($fieldSet->description) &&
trim($fieldSet->description))
		{
			echo '<p class="alert alert-info">' .
$this->escape(JText::_($fieldSet->description)) .
'</p>';
		}

		$displayData->fieldset = $name;
		echo JLayoutHelper::render('joomla.edit.fieldset',
$displayData);
	}
}
else
{
	$html   = array();
	$html[] = '<div style="display:none;">';
	foreach ($fieldSets as $name => $fieldSet)
	{
		if (in_array($name, $ignoreFieldsets))
		{
			continue;
		}

		if (in_array($name, $hiddenFieldsets))
		{
			foreach ($form->getFieldset($name) as $field)
			{
				$html[] = $field->input;
			}
		}
	}
	$html[] = '</div>';

	echo implode('', $html);
}
html/layouts/joomla/quickicons/icon.php000064400000002215151163244070014305
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$id      = empty($displayData['id']) ? '' : ('
id="' . $displayData['id'] . '"');
$target  = empty($displayData['target']) ? '' : ('
target="' . $displayData['target'] .
'"');
$onclick = empty($displayData['onclick']) ? '' :
(' onclick="' . $displayData['onclick'] .
'"');
$title   = empty($displayData['title']) ? '' : ('
title="' . $this->escape($displayData['title']) .
'"');
$text    = empty($displayData['text']) ? '' :
('<span>' . $displayData['text'] .
'</span>')

?>
<div class="quickicon-wrapper"<?php echo $id; ?>>
	<div class="icon">
		<a href="<?php echo $displayData['link'];
?>"<?php echo $target . $onclick . $title; ?>>
			<?php echo JHtml::_('image',
empty($displayData['icon']) ? '' :
$displayData['icon'], empty($displayData['alt']) ? null
: htmlspecialchars($displayData['alt'], ENT_COMPAT,
'UTF-8'), null, true); ?>
			<?php echo $text; ?>
		</a>
	</div>
</div>
html/layouts/joomla/sidebars/submenu.php000064400000001651151163244070014462
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

?>
<div id="sidebar">
	<div class="sidebar-nav">
		<?php if ($displayData->displayMenu) : ?>
		<ul id="submenu" class="nav nav-list">
			<?php foreach ($displayData->list as $item) :
			if (isset ($item[2]) && $item[2] == 1) : ?>
				<li class="active">
			<?php else : ?>
				<li>
			<?php endif;
			if ($displayData->hide) : ?>
				<a class="nolink"><?php echo $item[0];
?></a>
			<?php else :
				if ($item[1] !== '') : ?>
					<a href="<?php echo JFilterOutput::ampReplace($item[1]);
?>"><?php echo $item[0]; ?></a>
				<?php else : ?>
					<?php echo $item[0]; ?>
				<?php endif;
			endif; ?>
			</li>
			<?php endforeach; ?>
		</ul>
		<?php endif; ?>
	</div>
</div>
html/layouts/joomla/toolbar/base.php000064400000000600151163244070013555
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>

<li class="button" <?php echo $displayData['id'];
?>>
	<?php echo $displayData['action']; ?>
</li>
html/layouts/joomla/toolbar/batch.php000064400000001000151163244070013717
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$title = $displayData['title'];

?>
<button type="button" data-toggle="modal"
data-target="#collapseModal" class="btn btn-small">
	<span class="icon-32-batch" title="<?php echo $title;
?>"></span>
	<?php echo $title; ?>
</button>
html/layouts/joomla/toolbar/confirm.php000064400000001031151163244070014277
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$doTask = $displayData['doTask'];
$class  = $displayData['class'];
$text   = $displayData['text'];

?>

<a href="javascript:void(0)" onclick="<?php echo
$doTask; ?>" class="toolbar">
	<span class="<?php echo $class; ?>"></span>
	<?php echo $text; ?>
</a>
html/layouts/joomla/toolbar/containerclose.php000064400000000504151163244070015656
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>

	</ul>
	<div class="clr"></div>
</div>
html/layouts/joomla/toolbar/containeropen.php000064400000000545151163244070015517
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>

<div class="toolbar-list" id="<?php echo
$displayData['id']; ?>">
	<ul>
html/layouts/joomla/toolbar/help.php000064400000000772151163244070013605
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$doTask = $displayData['doTask'];
$text   = $displayData['text'];

?>

<a href="javascript:void(0)" onclick="<?php echo
$doTask; ?>" rel="help" class="toolbar">
	<span class="icon-32-help"></span>
	<?php echo $text; ?>
</a>
html/layouts/joomla/toolbar/iconclass.php000064400000000510151163244070014621
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
icon-32-<?php echo $displayData['icon']; ?>
html/layouts/joomla/toolbar/link.php000064400000000775151163244070013615
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$doTask = $displayData['doTask'];
$class  = $displayData['class'];
$text   = $displayData['text'];

?>

<a href="<?php echo $doTask; ?>;"
class="toolbar">
	<span class="<?php echo $class; ?>"></span>
	<?php echo $text; ?>
</a>
html/layouts/joomla/toolbar/modal.php000064400000001333151163244070013743
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.core');

$selector = $displayData['selector'];
$class    = isset($displayData['class']) ?
$displayData['class'] : 'toolbar';
$icon     = isset($displayData['icon']) ?
$displayData['icon'] : '';
$text     = isset($displayData['text']) ?
$displayData['text'] : '';
?>
<a class="<?php echo $class; ?>"
data-toggle="modal" data-target="#<?php echo $selector;
?>">
	<span class="icon-32-<?php echo $icon;
?>"></span>
	<?php echo $text; ?>
</a>
html/layouts/joomla/toolbar/popup.php000064400000001142151163244070014010
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$doTask = $displayData['doTask'];
$class  = $displayData['class'];
$text   = $displayData['text'];
$name   = $displayData['name'];
?>

<a onclick="<?php echo $doTask; ?>" class="modal
toolbar" data-toggle="modal"
data-target="#modal-<?php echo $name; ?>">
	<span class="<?php echo $class; ?>"></span>
	<?php echo $text; ?>
</a>
html/layouts/joomla/toolbar/separator.php000064400000000705151163244070014651
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$class = empty($displayData['style']) ? 'spacer' :
$displayData['style'];
$style = $displayData['style'];

?>
<li class="<?php echo $class; ?>"<?php echo $style;
?>></li>
html/layouts/joomla/toolbar/slider.php000064400000001221151163244070014125
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$doTask  = $displayData['doTask'];
$class   = $displayData['class'];
$text    = $displayData['text'];
$name    = $displayData['name'];
$onClose = $displayData['onClose'];
?>

<a onclick="<?php echo $doTask; ?>"
data-toggle="collapse" data-target="#collapse-<?php echo
$name; ?>"<?php echo $onClose; ?>>
	<span class="<?php echo $class; ?>"></span>
	<?php echo $text; ?>
</a>
html/layouts/joomla/toolbar/standard.php000064400000001105151163244070014444
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$doTask   = $displayData['doTask'];
$class    = $displayData['class'];
$text     = $displayData['text'];
$btnClass = $displayData['btnClass'];

?>

<a href="javascript:void(0)" onclick="<?php echo
$doTask; ?>" class="toolbar">
	<span class="<?php echo $class; ?>"></span>
	<?php echo $text; ?>
</a>
html/layouts/joomla/toolbar/title.php000064400000001247151163244070013774
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$class = 'pagetitle';

if (!empty($displayData['icon']))
{
	// Strip the extension.
	$icons = explode(' ', $displayData['icon']);

	foreach ($icons as $i => $icon)
	{
		$icons[$i] = 'icon-48-' . preg_replace('#\.[^.]*$#',
'', $icon);
	}
	$class .= ' ' . htmlspecialchars(implode(' ', $icons),
ENT_COMPAT, 'UTF-8');
}
?>
<div class="<?php echo $class; ?>">
	<h2>
		<?php echo $displayData['title']; ?>
	</h2>
</div>
html/layouts/joomla/toolbar/versions.php000064400000001634151163244070014523
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.modal',
'a.modal_jform_contenthistory');

?>
<a rel="{handler: 'iframe', size: {x: <?php echo
$displayData['height']; ?>, y: <?php echo
$displayData['width']; ?>}}"
	href="index.php?option=com_contenthistory&amp;view=history&amp;layout=modal&amp;tmpl=component&amp;item_id=<?php
echo (int) $displayData['itemId']; ?>&amp;type_id=<?php
echo $displayData['typeId']; ?>&amp;type_alias=<?php
echo $displayData['typeAlias']; ?>&amp;<?php echo
JSession::getFormToken(); ?>=1"
	title="<?php echo $displayData['title']; ?>"
class="toolbar modal_jform_contenthistory">
	<span class="icon-32-restore"></span> <?php echo
$displayData['title']; ?>
</a>
html/layouts/plugins/user/profile/fields/dob.php000064400000000605151163244070016036
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * $text  string  infotext to be displayed
 */
extract($displayData);

?>
<div class="clrlft"><?php echo $text; ?></div>
html/modules.php000064400000002344151163244070007677 0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * This is a file to add template specific chrome to module rendering.  To
use it you would
 * set the style attribute for the given module(s) include in your template
to use the style
 * for each given modChrome function.
 *
 * eg.  To render a module mod_test in the submenu style, you would use the
following include:
 * <jdoc:include type="module" name="test"
style="submenu" />
 *
 * This gives template designers ultimate control over how modules are
rendered.
 *
 * NOTICE: All chrome wrapping methods should be named: modChrome_{STYLE}
and take the same
 * two arguments.
 */

/*
 * Module chrome for rendering the module in a submenu
 */
function modChrome_xhtmlid($module, &$params, &$attribs)
{
	if ($module->content)
	{
		?>
		<div id="<?php echo (int) $attribs['id']
?>">

				<?php echo $module->content; ?>
				<div class="clr"></div>

		</div>
		<?php
	} elseif ($attribs['id'] == 'submenu-box')
	{
		?>
		<div id="no-submenu"></div>
		<?php
	}
}
?>
html/mod_login/default.php000064400000004010151163244070011612
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.keepalive');
?>
<form action="<?php echo JRoute::_('index.php', true,
$params->get('usesecure')); ?>"
method="post" id="form-login">
	<fieldset class="loginform">

		<label id="mod-login-username-lbl"
for="mod-login-username"><?php echo
JText::_('JGLOBAL_USERNAME'); ?></label>
		<input name="username" id="mod-login-username"
type="text" size="15" autofocus="true" />

		<label id="mod-login-password-lbl"
for="mod-login-password"><?php echo
JText::_('JGLOBAL_PASSWORD'); ?></label>
		<input name="passwd" id="mod-login-password"
type="password" size="15" />
		<?php if (count($twofactormethods) > 1): ?>
			<div class="control-group">
				<div class="controls">
					<label for="mod-login-secretkey">
						<?php echo JText::_('JGLOBAL_SECRETKEY'); ?>
					</label>
					<input name="secretkey"
autocomplete="one-time-code" tabindex="3"
id="mod-login-secretkey" type="text"
class="input-medium" size="15"/>
				</div>
			</div>
		<?php endif; ?>
		<?php if (!empty ($langs)) : ?>
			<label id="mod-login-language-lbl"
for="lang"><?php echo
JText::_('MOD_LOGIN_LANGUAGE'); ?></label>
			<?php echo $langs; ?>
		<?php endif; ?>

		<div class="clr"></div>

		<div class="button-holder">
			<div class="button1">
				<div class="next">
					<a href="#"
onclick="document.getElementById('form-login').submit();">
						<?php echo JText::_('MOD_LOGIN_LOGIN'); ?></a>
				</div>
			</div>
		</div>

		<div class="clr"></div>
		<input type="submit" class="hidebtn"
value="<?php echo JText::_('MOD_LOGIN_LOGIN');
?>" />
		<input type="hidden" name="option"
value="com_login" />
		<input type="hidden" name="task"
value="login" />
		<input type="hidden" name="return"
value="<?php echo $return; ?>" />
		<?php echo JHtml::_('form.token'); ?>
	</fieldset>
</form>
html/mod_quickicon/default.php000064400000000661151163244070012477
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  mod_quickicon
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$html = JHtml::_('icons.buttons', $buttons);
?>
<?php if (!empty($html)): ?>
	<div class="cpanel clearfix">
		<?php echo $html;?>
	</div>
<?php endif;?>
html/pagination.php000064400000010572151163244070010362 0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * This is a file to add template specific chrome to pagination rendering.
 *
 * pagination_list_footer
 *	Input variable $list is an array with offsets:
 *		$list[prefix]		: string
 *		$list[limit]		: int
 *		$list[limitstart]	: int
 *		$list[total]		: int
 *		$list[limitfield]	: string
 *		$list[pagescounter]	: string
 *		$list[pageslinks]	: string
 *
 * pagination_list_render
 *	Input variable $list is an array with offsets:
 *		$list[all]
 *			[data]		: string
 *			[active]	: boolean
 *		$list[start]
 *			[data]		: string
 *			[active]	: boolean
 *		$list[previous]
 *			[data]		: string
 *			[active]	: boolean
 *		$list[next]
 *			[data]		: string
 *			[active]	: boolean
 *		$list[end]
 *			[data]		: string
 *			[active]	: boolean
 *		$list[pages]
 *			[{PAGE}][data]		: string
 *			[{PAGE}][active]	: boolean
 *
 * pagination_item_active
 *	Input variable $item is an object with fields:
 *		$item->base	: integer
 *		$item->prefix	: string
 *		$item->link	: string
 *		$item->text	: string
 *
 * pagination_item_inactive
 *	Input variable $item is an object with fields:
 *		$item->base	: integer
 *		$item->prefix	: string
 *		$item->link	: string
 *		$item->text	: string
 *
 * This gives template designers ultimate control over how pagination is
rendered.
 *
 * NOTE: If you override pagination_item_active OR pagination_item_inactive
you MUST override them both
 */

function pagination_list_footer($list)
{
	/**
	 * Fix javascript jump menu
	 *
	 * Remove the onchange=Joomla.submitform from the select tag
	 * Add in a button with onclick instead
	 */
	$fixlimit = $list['limitfield'];
	$fixlimit =
preg_replace('/onchange="Joomla.submitform\(\);"/',
'', $fixlimit);

	$html = '<div class="containerpg"><div
class="pagination">';

	$html .= '<div class="limit"><label
for="limit">' . JText::_('JGLOBAL_DISPLAY_NUM')
. ' </label>';
	$html .= "\n" . $fixlimit;
	$html .= "\n" . '<button id="pagination-go"
type="button" onclick="Joomla.submitform()">' .
JText::_('JSUBMIT') . '</button></div>';
	$html .= "\n" . $list['pageslinks'];
	$html .= "\n" . '<div class="limit">'
. $list['pagescounter'] . '</div>';

	$html .= "\n" . '<input type="hidden"
name="' . $list['prefix'] . 'limitstart"
value="' . $list['limitstart'] . '"
/>';
	$html .= "\n" . '<div
class="clr"></div></div></div>';

	return $html;
}

function pagination_list_render($list)
{
	$html = null;

	if ($list['start']['active'])
	{
		$html .= '<div class="button2-right"><div
class="start">'.
$list['start']['data'].
'</div></div>';
	} else {
		$html .= '<div class="button2-right off"><div
class="start">'.
$list['start']['data'].
'</div></div>';
	}
	if ($list['previous']['active'])
	{
		$html .= '<div class="button2-right"><div
class="prev">'.
$list['previous']['data'].
'</div></div>';
	} else {
		$html .= '<div class="button2-right off"><div
class="prev">'.
$list['previous']['data'].
'</div></div>';
	}

	$html .= '<div class="button2-left"><div
class="page">';
	foreach ($list['pages'] as $page)
	{
		$html .= $page['data'];
	}
	$html .= '</div></div>';

	if ($list['next']['active'])
	{
		$html .= '<div class="button2-left"><div
class="next">'.
$list['next']['data'].
'</div></div>';
	} else {
		$html .= '<div class="button2-left off"><div
class="next">'.
$list['next']['data'].
'</div></div>';
	}
	if ($list['end']['active'])
	{
		$html .= '<div class="button2-left"><div
class="end">'. $list['end']['data'].
'</div></div>';
	} else {
		$html .= '<div class="button2-left off"><div
class="end">'. $list['end']['data'].
'</div></div>';
	}

	return $html;
}

function pagination_item_active(&$item)
{
	if ($item->base > 0)
	{
		return '<a href="#"
title="'.$item->text.'"
onclick="document.adminForm.' . $item->prefix .
'limitstart.value=' .$item->base.';
Joomla.submitform();return false;">'.$item->text.
'</a>';
	}
	else
	{
		return '<a href="#"
title="'.$item->text.'"
onclick="document.adminForm.' . $item->prefix .
'limitstart.value=0; Joomla.submitform();return
false;">'.$item->text. '</a>';
	}
}

function pagination_item_inactive(&$item)
{
	if ($item->active)
	{
		$class = 'class="active"';
	}
	else
	{
		$class = '';
	}
	return '<span ' . $class . '>' . $item->text
. '</span>';
}
images/admin/blank.png000064400000000121151163244070010673 0ustar00�PNG


IHDR7n�$tRNS���
IDATxch��L��IEND�B`�images/admin/checked_out.png000064400000000606151163244070012071
0ustar00�PNG


IHDR�aMIDATxc�	H�-�0u�����_�r���n�Dj.J�1w����F�����̂e+׼_�b�{
_����|����Y���
+֬�|��x5�lX�b� �.WQ�2����	�0y�
]������vN�������2m�y��7̜9���_�0c��/�����U�����d��G�����c����*��?o���G��	�%�m��t��V��:�6`O:A*ZqP\��P��߿����K�O�:����3�/_������96�
PPQ3�IJ��cמ����9�߾�����_�i��Qq���s�BgI��IEND�B`�images/admin/collapseall.png000064400000000231151163244070012101
0ustar00�PNG


IHDR

r��|`IDAT(�cX���b1�8W?�'��j꙲�h����jz�?ƪ������?�c��X\kpb����"#
~��@�����	`�����14���!�ڡcXIEND�B`�images/admin/disabled.png000064400000000407151163244070011362
0ustar00�PNG


IHDR��7��IDATx��Ua�P��_B$TB%	�0	��	s�1C�ƫ��x��L}��LB{�fsa,O�9Y�9ʷ��0�<0�y�͞6Xb��������4,JD�'fV�d�����#�	gaxGT4���aH���Ɉ�J{E4l��
c<�
N}�o�A,��g��J'�
ܣ�CiW�%rW]�w�9����'�'��.�
*�9
�IEND�B`�images/admin/downarrow-1.png000064400000000261151163244070011771
0ustar00�PNG


IHDR��h6tRNS���7X}fIDATxc�O"
Yè�����;:�hwK˖���

�jk���۷85�FC@
��t��Y��~�~,)	�zm\�K�ӟ_�<�7<��p(��w�'C%�k
�y�j�IEND�B`�images/admin/downarrow.png000064400000000261151163244070011633
0ustar00�PNG


IHDR�axIDATxcl`0g�V�@�����E�@�~�Bx
�\��?�I�W[vd�4|���2@o�f
>���
Ij=�
����dŊ���K��'��e@����@�8�D�e{1�
IEND�B`�images/admin/downarrow0.png000064400000000227151163244070011715
0ustar00�PNG


IHDR��7�^IDATxcN�����	hJN����ߞBSp�����0�5�3w���󻙱(�ļ��`h�é�lV���x|�p�ŸU�(�-=���A[IX�PH�IEND�B`�images/admin/expandall.png000064400000000263151163244070011563
0ustar00�PNG


IHDR

r��|zIDATxڍ��	� �a[��Z��6誫fh��� �
0�����|�
�y݂4�OB���8-�J$�����~H_Ġ�R	U�.KacP��K;ݞ���Oa+P��	���r�S�5�����w��SIEND�B`�images/admin/featured.png000064400000000724151163244070011414
0ustar00�PNG


IHDR�a�IDATx����AD;�A!(�
A!(3333���̟�����]{]b|U�nn�{Q���Q�Ճ��>�I���{^e���Q��À�(�Pf"e�s�ݛ�'���݀��]���s��`�f${l���Mnx�����<+����-�w`�0�i�N�՞y�9����y�wu��J�����Zc-f^~�s���ׁfU��[��J������u�5ͲNb�5k��e�rp�n��(h_%�]��<r��/?2X"��h�ށy���Ǵ;����7_���|�d�
��e��yG���]�yb�;�Pm?Gg�~���z��w,<N�P���
�=@��c�*�����2q�
��!���b�8E晲���9@UƬT��y&o'�'�S���-;��cU�\�IEND�B`�images/admin/filesave.png000064400000002023151163244070011405
0ustar00�PNG


IHDR
����IDATHǵ�KOW����g��Q#��V,Pc�"��`�H�t�,Zu��#�UR��Q�HWi[�*
�t���<�pC1�1O{&��ئhIUu��+�9��=����G:k��h����EQ�c���ܿ�`1�u�k?�}��|������,�*cR�/W��,�w:����\���&���$���PO��.���p����5n�)loovw�@Qd@�}����۶4w�<��2�ւV�-,,�"8�@Qu-9:ha
�R��dj��P�����H̕u#hC<'��*�QȊ�"���1�s9��s0���088������[Z�aT���BGGF`u�d.d�'�3�`�Q�-b���A'4
/�JB<��\�k�����?��S����#�t�'�O�������cY��
P��Q@b�x�
�O��Ez���F@Շ���D��'Ʊ�1��-0
���ح�N	z�9LMM�����K�H�P�)�~�حT��>�=x���4ꗎj��&&rp/M�4~�u��:NEf�Q:�)&3i��Mc�F��c�!0??�>,m7[���bs�B��a|�
$l,��!��&��ZV˱m��2	��i����T:�&�$S�8k+�Y�l���R�2�W��0yj���8Gs���ȃy�^�#Gy�iZ�,733s�x��������<p��u1=�@b'E݈w�omm������q
��ߙ���04�&B%P��r���C&������I1nnn��.YA���c٬�xty�J�έ;������	���j&���ԍ�Y�6H��j��N<��^]I���e0M�ض(�����h�ժQ!T��*^���`B����,?Ž-��̓��5��]F�~���y��z�N�y`�y
����X�?��

b��Gz	�φ(3�$H�p_���}�"�IEND�B`�images/admin/filter_16.png000064400000000367151163244070011413
0ustar00�PNG


IHDR�a�IDATxݏ5RCDs�1��%���
�qwww�O6�
tg�|+��
5��$��ɣR�"KAm�%����{�,,�ގ
�n�D�l��m<��8z�cq�Mj\��D,��p<��qKU`i�a<>��7�f/>,�����;�ؼ����i\��J[+���=�Z5!����-�IEND�B`�images/admin/icon-16-allow.png000064400000000531151163244070012101
0ustar00�PNG


IHDR�a
IDATx��%pA��߫�*^�W�&��#WTQefffffff��j����Q�;�,����/M�R��FRW>+��]Ç�3%SǕ�.����Š�k?M��̨!o}�l�>����(PHm�:�V��3jO.헲sNs}�s��ֿ���sFl/U��O��$u��u�T�����r�|&��ޛl��^*��Bө�μ����0B�UXx��^=��X�����DՁ�u`�B+�ѱ�w@#��m+��qD1B���Ա�
w@�J4�Ǯ���'+���f&�,��IEND�B`�images/admin/icon-16-allowinactive.png000064400000000527151163244100013623
0ustar00�PNG


IHDR�aIDATx�уn�Q�ƍ�x���>©��3���l�^g۶�:��h;��ڗ����R*p�g4��Fǭ|Va��8|��Қ�y���h�P��ڀ��fc�D��Æ���ǒ��_踹7��;{t\��y�g@�M.[�n6N=�0�P�S}(,�r��f_�?���H�;̿U[��:��&#�e9��"~�s��Q{$�􅠰#Vȍ{b��^�c�d��
�2O[�z
�s��IP�W�m�n��qPү2o3m��(�v
,���E�.Bޟ�_�v�Y�^��IEND�B`�images/admin/icon-16-deny.png000064400000000542151163244100011716
0ustar00�PNG


IHDR�a)IDATx͒��`��]��ڶm�6�nv�]ߛ��Z�m����Yv�Q��y����G���Ei���:��ײ�e��37�26�T-[&a�h�����>[�G`�i�3chUc�66��᯼X�����+��G����hBzZ��P&/秵�����wy�F���-�{n��9��������"�$�l�!5oř��r�ط�8���&��uJnӣ�nR#����g�a��J��\$�{��p�N_�D8��`�8H�O�˔���C�8�@�����i7�֋�9��K�������IEND�B`�images/admin/icon-16-denyinactive.png000064400000000541151163244100013440
0ustar00�PNG


IHDR�a(IDATxc�����p߀���	`��"�M�(�σ==^f$4�ix�������~����":
ⱅ6N�π�_��6<qsŠ��6<�
�����������GN�x�萆����y�e��ݶᡛmÓ�8����K�]Æ��a�*Lw�k���rbo������6\3�h��d���C�;��
/��p�h�Ec���fZ�\2Ѱ�e��p�\�ᨿ'V|�ڸᜑczᔡ�c����
D`�i☾��Q}��oB:��l�@܀�4{u�8���@���u���IEND�B`�images/admin/icon-16-links.png000064400000001044151163244100012075
0ustar00�PNG


IHDR�a�IDATx���Q�O\��S������I�m>۶m�wgv϶;�wP'�F����0ESk{
�ᷓ7~Rn�L�3:�Z<@�ą��9��b�b�k"[C���ډ�Fd��VNL�6�
r��S����n���/儞�H�'{�ag��3���RX$wS��1����v"����yp���..��s{V�����
Ǎ��h#¾���].��{�c�����;�	��"�Kz�KYy9M&3M��<���;��-o��+�#��>vvt���A���g�5L6�y*��i���rOm�-=g|e�&�ɨ��}�k�<w��O��9�����<�a���:��0��K<���Ǎ�K�s�t/���tT�{��XM��������/x�@�����IHL�5�䒙orqٝ4�V�Ν,�Yq??�͍���q�Lm�����+�r2q;�x�G<�ש��i.�ō�B�J
�e��N"n�j��{yt�+��i@IEND�B`�images/admin/icon-16-notice-note.png000064400000000751151163244100013205
0ustar00�PNG


IHDR�a�IDATx��3�XI�o�}~k۶m7k�F�:�/U��I�&���4���.g�7���7��L�1L:�?l
O���N�y��X�ָR
H��p��(�;��l������1:�/DU>w�����p�j���Q����G�b�G:�����M*wx$�	X�W��ЧD�����*�a<$�����BA(Q�����f	i�lN�)�畨PZڟw��O�/����
OC(�-""��"b��?�G���#�K�����O;䵴9d$���t�d^�۬�e���""Zd����P�&�B}�
���㚡��S)��6�W�K�����t_�����U�E��M��q��G4�\��5E�c����t""*E�z>���ʣ�&�K�?	t�.�W�5���	H��xS�\���a�)2�$`0�������IEND�B`�images/admin/icon-16-protected.png000064400000000615151163244100012751
0ustar00�PNG


IHDR�aTIDATxݐ��a�7��醵�fnm۶wr��ضm3���za5�x��?���-�X|�����b�C(���O�����+�VX~{{d���?������?y-��I�XJ��u�������Z&�[.��H�L��	(���Q�������\���G�(�?��S�=���?����ɢ������bSF�']��8|��銀��v>74טp���x�\�����lی������c�������3��;SpilN]�g
�:��7
��
��d���ő�������4`��ۯ�}�ՎLq9���t�U�`
�l�՛p��ʀV���I��HIEND�B`�images/admin/menu_divider.png000064400000000113151163244100012251
0ustar00�PNG


IHDR���IDATc<p���P�BI����IEND�B`�images/admin/note_add_16.png000064400000000657151163244100011677
0ustar00�PNG


IHDR(-S�PLTEF�
Y�.K�P�b�9N�
R�
[�y�TZ���Z��T��@��X��b��I��U�̃��c��,��\��/��E��L�Ϟ��V��Z��P��3��e��z��N��V�Ҕ��?��c��g�눵�z��q��e��~��M���ܼ����x�[���������������������������g�IDAT�=KBa���F���"
I56I���ojtp�!p���'�+
|��d�3`N���i���Wp�B�Q�nЃj+tՐ�I�[A�2�!���_W9�-d.GS�G23�����g\�*�j�����U��K�gaS�@�/���{��A_'���3��}�q��=�m���оey	���T�hv��IEND�B`�images/admin/publish_g.png000064400000000632151163244100011561
0ustar00�PNG


IHDR��h6tRNS����6OIDATxc�����O����H���g�~�t�	�~�����r����ON�y
4��޽{א�4�=�����xA�����(�۷�(*�p��)t0�m�^X��
E�{��ٻk�o�=��
��WK��p@�4Э@��v4;�?n�����/��h����s��
��s�����K睭*â�}	��C�@S��޼%�w
[���n�Xâ�J�;G��	�D{8ҎK%oTz��	v
Ժ+����@Tv�t۩e@Y�1
�ӿ�t�ò�����-i�<p!	i�=�ꀚ!q$�"b�=0��+
�Z^v��N�IEND�B`�images/admin/publish_r.png000064400000001017151163244100011572
0ustar00�PNG


IHDR�a�IDATx����q�o��ݳ�m�6���?d�v=��]S�����;��{�9ۥ�HjҔ����BK�@3�W�栾\�_Q	>E9��ԕ�+��'����µ��$�6���=>X��k����9�si�N��q}����P�:ϸ�y��D}"]��w�^��=�.c)��(���=�&�vU�T��Y@�W���m�������s�M�����p����6R�̅���M��дwo�g��")6��q�g|��#ؽ�bą6�^
ĆUO8�/�+ۗf~��>�ZႮ�0'�"��EOm\b+�|f��$K-a.O6�M5/������:T���j�8���,��x7��gw���j�ՕW�uhC!�;B��P^g�Ԇ��N���Nܗ��!���e�����15m?�&��Nh�%}K��x���"{$�i��Zn�P�f	E6�&0�}x��F��G�����h�0IEND�B`�images/admin/publish_x.png000064400000000647151163244100011610
0ustar00�PNG


IHDR�anIDATx���Q��_mۍ����ncm����;{q�):�Z{Pqj�տc�&��y��������s£�{�R|gŻ��QlxJ��A��'�
�z'S�5���G\�o?�8���-�Zl���I��E��1�O�1v��J?�n�K���)����P�4��Q誻�Ӎ���1�~��|`�4o�T.��¡Ք�@'��>�{EZOF�,���s�ݳ��T6�����H�uϳ�d�rt�����Ral��+>E�j	پS~p)��C
��u�ܻ���^�@�|)��'6҃�nן����;�Z�Al�oH�ހm�~�/x5�z|�.7�7��n�Q��ov
��и$z$�{[H��Nli���OIEND�B`�images/admin/publish_y.png000064400000000551151163244100011603
0ustar00�PNG


IHDR�a0IDATxc�:xU�R���Il���c��_;X߿�fY���Y��
l�`���R���D9��~Mb����%�揭�A�`�������6�����ݐ�,�
I�@��E�k�{�O�F�������Q�<\�A~��M�]3��O�&�c��~�7�0��X
���
1�>./l0�peV^ֲ@D!�4�
)�a!RT>,����s�0xs��P�@b&�&V�ү����`M���Y
��{پ��:���b��6p��TϛY��,a��@���5�NIEND�B`�images/admin/sort_asc.png000064400000000152151163244100011417
0ustar00�PNG


IHDR	�8��tRNS�[�"�#IDATxc����Ǚ��$�1�d1�L
�d�	��"r�m�IEND�B`�images/admin/sort_desc.png000064400000000153151163244100011570
0ustar00�PNG


IHDR	�8��tRNS�[�"�$IDATxc�	�
��?���3�2A
�$F"w��.IEND�B`�images/admin/tick.png000064400000000714151163244100010540
0ustar00�PNG


IHDR�a�IDATx���@�k[qj۶ֶm�:��m�m�?�~�t�Rۛ|��L������d�o��S�A�T�$�~92=z9s;�NŖBYD���>��S���n����)�i�=����
[\��w��8�DI����
�Q���z_J)���2��G�E���Ƥ��58nZ/}����G��ݯ��Q8��;5��aQ��#���]Ь���c�v9�r��|E�w_���y�C�ӡ�S��u�9���˪�r����˳�#�3Ah���͢��K��M‰�9��.�=����n<Uy02���r��j��C�#���<�<�9���-5��	�tE���������;B��
�J��9�r��Ez�u���ȣ�H�E#ʝ����va�J
�52��qIEND�B`�images/admin/trash.png000064400000000602151163244100010723
0ustar00�PNG


IHDR(-S�PLTE�����ţ����������𨫴������:;B��������̚����ɤ�����229��������٦�����������˘��ru{�������`ak���]^i���pqv��WXc���RS[������JLU���������|~�CDLkmv�H�tRNS@��f�IDATx^M�E��0І�L�q��/5�;?y�dK�qC����:�~�Hw!���z^M��H��c�W�M<�_�
珛BL�)��jT;Ъ9ji��E=�ڃ
��E�^!��"h�Y���k=k'j`F68X�Yv�����]��o�?�
�
}�IEND�B`�images/admin/uparrow-1.png000064400000000267151163244100011446
0ustar00�PNG


IHDR��h6tRNS���7X}lIDATxc�O"
_è�G�O?�|�X
o<8��v,4�
���W'��y{Ѷ��Oo��4��V��
�`j8^RS�@SRRpj��t)]X��ΛD{���9w�
�84�ӝsKguIEND�B`�images/admin/uparrow.png000064400000000260151163244100011301
0ustar00�PNG


IHDR�awIDATxc�`mzQ��di�Zu_��R��_pu5��b�4�L;e���y
f&J�F�~f >��p&Q�6l��X�
�Y�l���8p;^��v�<�'�����h�
��IEND�B`�images/admin/uparrow0.png000064400000000226151163244100011363
0ustar00�PNG


IHDR��7�]IDATxc�`V�,i<�T�\���嫗�B��l���똱Hoc�v~�(�Ģ`_�p�d��Q��o��G��h
Nw����V�V��H��:M�IEND�B`�images/arrow.png000064400000000145151163244100007646
0ustar00�PNG


IHDR˝�tRNS���IDATxc���v�/��&�A�=������5�F�\�IEND�B`�images/bg-menu.gif000064400000000045151163244100010026
0ustar00GIF87a����,���;images/calendar.png000064400000001120151163244100010257
0ustar00�PNG


IHDR�aIDATx����I���}�c۶K��b�rl뿈�۶}w��ۙ�,�U���L�&+���O'Cm�����?jnP���he�"Gf�-];
@�޹vr�!��]�<Zp9q�0����<���w��ף�{���`�@�l~FB|�����Wi>�|L�?�H�H���<y�|
P!�%E�ӳa�ݧ[�<�8�rXu�>���aݡ������/�}1�(Vy��f�������ݟ�!��d�H
�;7��Ξ�(:��!�����ʔ(�m;���',���=0Bpq㱇~4�C�
���(�ō��p<�/��6�OJ������́�P�HQ�ߺ�5��e�m�r�9)�$�F}AIHsl���p��-,,��~�+
b���sҒb�J��X�0�!4��E�3����u�M�q���\������S��c��W�!T,�ĿO�R"O<7�{E��.�y����圴��S��!�I#�}S�\�ђ��������[���
��A�3f�vIIEND�B`�images/header/icon-48-alert.png000064400000004416151163244100012237
0ustar00�PNG


IHDR00W���IDATx��	l���e+�]�6��8Gs�Wlqn�@B�A���6���;;��1�i�e�i�M�P�椤	�I҄��hd]3�Z��w���S�.����&�I����~�{�G��?�0^z�{��ϭ�Ѹvy߹U�N�X�{l���lݸ�����OL.�Tg�9��Y��&X�12��gs��g`�s�ֵ����3����<`�x�+�%ς
s��b��I��O/�cN2P5X�K�M#�WP�܈-���30P��K�)�+��JY���Z����s�خA�&�~`^��mݹ��эnKr���@
��u��I��������	��ն&�_~]e�1T�ý��F�/50
v�aڬ�u_����\]d�\�PL(��	*H�˵�0X��w�"T����LU>*I�SI>R���c�w��b5�K�����B�0*�:��ޥ�e��8[�L�k��3�ݚOϭ��.ہ�,`~���d������[�$���0�Sѱ�p�
�ر�s��֘��᪙�8
�X�qػ�����-��;d�v�԰��k}��lUh��dܡ�*�/M�S����Z��$8̌�K]�ґ�D@�ul	���kQ����]^3/Qh�q�j�?�j"�ۮ�;o��5�[��.��^9՞���%	`^�
���k�n�H��ߢ��8?[�3�َp�yi!=��>���@i�p�<E�Pm��rn�hq�H1W
Uh��7��E�<j'�fe��y�(�w�Y�x߭&RW���Ss�]��B�U��PY2nz�
�ϯY�
�e��;nф�D�å��w�Js&#T;��6Yt�t�ާ�p�0o��,��Q��
M����Y�IԺm3z���b2o��+��A
�w�2&޴�p9ē��ח�ϡ�Z�=o"Q�y
�B*P��c�Og�����)�F�ly�n
ޥ�Z4��9h�1�M����0+�b���\+P�K
�c���*F����C�I��u�I4@�C&�>&.�e8�H�s�.��$1�rO��إ4X�c�2q�7�IԲ��h7�ǬK;�z��hP�
���	c�pd�����Jb�tȸ�4z��N5�l��9��3���K3q���E�Bxz1o�v���]����1�i���<�+�а�'W���ʹ�.P�+�̛h�,��q�P��r�Z%1�CtZ$�3�/���:V�>�s>_
�M4@ݲ��69.Ҥn�4j���f	N��!s��H}s�g,�����.�pͼ�`�,��wk�m��o���=��'��������m|
G6~�Z���q&�]�)����ֵ;hۜS��4b��dޞ�k�]���n¡Y���+q�����y�,��q�۝�N��,��8�'��ҡ�G�aW�H�r�%�����'�[\]�dS�W�V�>�L��tD�oلp�w�8n��j�;�8�J����p^�p��g�����q���)��س���dauX�s�����ø��zŕhv��C!�mJ5+B�o�ǷnF��=C�FSh��gKR�Z�����[Y]��]0m�ٝ���8��58lV�Q����oB���ؕ+ccGcQ�Օ�ͫ�{v�0�=��/WU��S��N=�J���y¦B���
ǫk�a�j?�[���M�}y�Q�N:�Y��No
���z2�j�ׯח/��m+�4صh�	�NS�#V����go��(�,~�!�O�-�R�*G�W�
���cs��q�7UX�V�
5X
V�������Ϛ��T�Q��4tx���MC+�	bR#�wЪ�q2��K'���vZ�F{�0�i&?1��WY�ɕ3�/_���T�*J���
�hw(T0��oxRpȡ�Lj0-�|0?1�k+�׽�6�֤��
z���W��fo:ڊ�k�'�v-I��y*vU`s��C���L
&�����[�u�*sׯ�X.nv���v��ac�<�i4�6��L���on��B�2BIh�D"���D�NL�t~?�H&��TBE�		�1��0�|���
q�3�"��"��"�0pf������לɃ&�@����۫��Y�07b|@����=<��G	%_�4�O�vA�Q+��3����{��I<��QB���<NH�6�����U�sR�='�/D�&�A(�z�-�u�nLa�>�#
�$��u2�!��>���O�87/	
�����7�@���UIEND�B`�images/header/icon-48-apply.png000064400000002546151163244100012257
0ustar00�PNG


IHDR00W��-IDATx�n#[��s�\9=�|
��AfC+�4��af��^v�<�f���e�q�ɕRd9��#����n�[
�<x"�D�'���_FZ4ʗ�JQ��'.��"��x�'O�#�.!�b2&p�YNR�Nw�Uo�Tm�QO�]��z�4}�t��v'�wx|�MP�`B��8|�D	�����g��iJ�x��:
"�@�߸[��<{�[#x�D���-�<n����o�Љ8�ib�S��
0x0xI ��9�^�
��H��"��>�oBa�%��+�WL�i�#��^�m�;�,a?��n�<,����+��)�"A��ww�/V��>g�(��SG
���Ý'��j"�~ex�����Qv�d;���:��^dД֝�M�_�=�������v���R�'�7�~�r.��\
=}?�0
�۪{Ҋ�i��.3���Z~$19�	������q�<3?OT��	���Fv�.�^��0��2|�o��+0���)��res��>�A���s�)[!m5�m>xI��@}r�����Ŕ����M�o�	\���\����h��ãGu�?���"i�I��^|X�oo�#�����H��k[���}�RFl��%m7=&��"�;�h7�5�/��%*��!V]�|g|�J�Û�_F��ՙ�%��Z�C�K�\"�J�J<;��r�~.�m���6.�v�O/alvo��H�F���)�s"�]	*q��L&��5�J���P���3���[x���G7��"�vL�(����$�$�������y/v^�M�~c�����%`_�)D�j��IT��%�uO��H���$��
�/0F�)�p&�JD���>�1�V�@/��:`���v<�W�wC�0�$�p��.d��l�t��E��%��!	��(���ހtg�R6BP���0L�w�|��I�9�$���H�J@і	��k7�e�k��C^%g�$L�)
�I�F��8��[�%<W�R6�S�*ds��m��cL�7n��I���L��$�U)[�dޢ�ߛ��y��HBv��aw���I8ѻ�3�]��݂�
2	;�6��!�[t�7e/�x�m�ry��?lx����#�5�����Dv��4G]���O�nv�/K�BO����8��|��ȱ���@T��l�0b��=�tl�6-
�6����CB`x?0c
v���$�1����-s�M$|8&p�,B��B��B�<+W�g�-�')L�:�
��<x"p0�?�yX=ѶIEND�B`�images/header/icon-48-archive.png000064400000003354151163244110012552
0ustar00�PNG


IHDR00W���IDATxݚl$���e4��13���1+La�Df��|��l��̻�Δ�����3��J5�}�U�UK
C�\kc<��
_;q�ԆT"~~ժ��wl��6�A������@�����L&233b�x���^������:������#�����=�D"v"��?x�`�m����j!	�J)u�x����'?�I%�p���|�K_�Ξ=����ƻ�0���yBB@H�@->p�}����L}��-�f�����o�b``�(��RQ
���ߺ|����e�r��Z|�U�|��((EMM
��+&''@����(�8
˔R�˺�_L��9�?¼eq�7��҂W���F�o��
T
�B��A]}=�ϞCcf�⩀.�đ#G:7nܸ@�����=���=����Beu5�v�b���\mK[���������A�Cz��u��ֲj�
nqJ����)0L~���=$���Z����cld������/�?�	�<���N	]�����"�
����ؽ����cG���	�B�Y10
��߿�?��_Ο�
�ye�������g�9��aTN��3�[4y�����_�
�{z�no�����(����G����c���,]��$�	���q��<G�D�Lc�N�:)�����ͯ~I4fβؾs�&�/1�et�С&d1==��t����C��+Ȍ�p��{���L	�2?����f�O�8�<w�)�{{�'�|�_�p���$ְ�lww���/JEM��R�u�zB�0r�?^<�(�%�Lc]]]�����d�R֭_O2�f�)���׋��2���h����"�Oǐ9pǧ?E"e��2�x
�XP9���D6��WJ��c:[��΁��2����x{{{�׎!��S>�xB�Q.HXa\B:Q3@�?��A?Cρt*I2��9��h/�H�1��	S��a!az�7^��dF�I��
gJ���9`�k�=r���}�9PL���Y
⢭d�8�6*s����m���W��J��0��gR�2*+��������
�f��m��R�wm�Z�s��,��[����#�ff+�'���Td�x-�9p��%����
�(e����=;O�U��5���;e��w��t�m-D���^�1��+V"B�K�-�%/}�
���,{ZD���˙q����M��z����B,����b.��d�U\�>�^�[ڻ�Ź����H��/,�<ʮ=��͞�Q�K�7O}�5Y�T���*��mˇ��8�n��/_�d���<eQ�E\G����p$�
]VF&���,ʝg/��(�"��S�!�!{�T���::;-@�fe�
����c�����+і�t����.0>:ʨc�x�2�\�\���j��$Bzbb����\a|lP�Y��+���PB�]�l)�.�n���w"'��r��%z��L�@Ey�V�
#%%���r�,��|K$D�G8��"67;�m+#UȊ��k.�K��K�c��%�I�N
e1��/�z�i�X�E6$_qi�3���L��mY��r�wGѝĚ�grj��!$�BN.l2�*I6���.Y;�	�(0g�S�r`-p3�Y?s���S�`@�ʀ�K�K@�g�@�dm��
A����3�#=�3�{���wgy�nIEND�B`�images/header/icon-48-article-add.png000064400000004417151163244110013303
0ustar00�PNG


IHDR00W���IDATx�Yt+]ݓ�$�Q�P��m۶m۶m�~۶����چ�=�;o2��*��Zg�a��>��{�jX��_\�E{d8�c}�x�����R����dt\$�Qlhh����+^�iY%���
ͦi����ӧ?200�Z)��7��
�F�n\B���%��ĪW�$¿����ں�6�B��C�����ª`���r<�H$��J�P-
�Q\J�f��z=��o�4�
t]��r�ώ�Ç�W\6�������IZ���c�|����fՑF����DZJhlrrrJ��$�&LWTP�X�X���~�wE�b	p6�̀iH�r��
�9�a������k#g�bjr�
u�y�kCͫ9��g?�ٽ�|�;����=|���Ӄ��%
�L����HR��ɵ��7�Zv�t���=@��,�x<~������G�1*BEI^�7@4%y
cvx�������uy�p����?d�t����U��-�
#~��nwK"B�YFFk[�����ov�Ðg���"�J���wÛh�\���D�K_��ߟ�'<[ք�7op���
���m�Z�H7�D��xCPe�>x�����(�(TS���=�K�E2����EľN��9�>G��<;O��M	`�,8p�~��VpAz�T��E.Z=pD��I��:	�����f3�Y^�p>C��FFh?�e�2�����T%���o����|�-�/�6��zP�=P�V��k]�Z�h�&T-�v
H���?>~���oF>p6��r9:�|!W�M�@V����]U%���9�y^�=f�nw�;���?[�C���_�n�<�K��N{���[��ˌ���N�$188��ER��9�6�E�?�l���<-}pMK��3?�i�Q�U�*eG�JtI\�X,~6�	�fe�!閂j`>C�<�Q8�߷�uf��9��Y�/����>�W����}�{��i�\)D�^V�¿�)y%�.��_L'y��`i�U�
�t-B�}�o�^�;$��!q���׿,��Y��w���j��V��n�kK~�R�ȫ�&�1G��>w���Ce�eF�t�P���f�rπ¯�����+�
~��ߪم_B��f��3�2$��OOO�~�_3r>
�Ñ+5���@��T&����?0�F��B���b�鸝�q$V�:5�pT�I��l���b[Am��Z_��^kjjb鐴5R�3�*U��.����G��,C�&7E&�)[#¡��e�U>�S��#��|~��=EJ�@���M���1��y���T<N��q!ͺ7-W�Kّc���Y`؟Cq\K�f������Q3l.w����7�6).D7��M��s�PD�CU�7��K�m(���N�om+v�=Z��M��VI,�,n"$4*_���$O��g�8�K#���8˲c	�W�:IZf˱ouƙw���3h�%@'{��Ők�'"�C�N�PӨ8�;���ҮD)!�2c=r�YTm�����O�<	�0��}R����
0���<�����,M3�^012�/�>#�N�u	�~W鏋��d�V�A��jT�E����A
k�w>�s��q@��b?��;%T��^��;jP�+�>6y�ϔs.6�Z����~H����p
��d|?�Z|9x��.s����#�����5����@0t���]Q�4Y������[�2��|>��R�Α�P�
ʛ����zO�X]��]������o�
~�4�ܕ
:L-�7�܊���栙�Pa�r����:�V�y��"���C�C�o�I���Y>��,*�x�G��"R���d��]��s�MK�"_A�w���	ب���%�`B!<�_
�C!����w���3�ԱzG��S�K�qy��3}1h�=�|�!
L=�)X��_��*/�%��@Al�e��!���7
��l�bg�>1�͑$��cy�
�Kh�.;�C!k����	̦f��܎���:���N!syZc����6�o�&��g��B�.�����D!����*7p̦���`0�P8,ǻ���=������2�1TZ�r4L~a{��Eۄ�����`���K�W��m�7��@Fb�>�b����=Y��vi��K�J����z��>	���чmƗ�w?`H{i�=5��{��Z�ɾ9��_+�Pm�+��ow�3?�7IEND�B`�images/header/icon-48-article-edit.png000064400000004634151163244110013501
0ustar00�PNG


IHDR00W��	cIDATxݙst,��/���ٶm۶m۶�O]D3N43�5�m�*�W��>�:N�qq���t��L�ާ�Nu��.㨅N^a����@�/ܡ�����p�]����R��.++{�o��+��T�����h���C9�
sw���;)�x�\E���"F9�U�4���)��>����D:�l��F(JT��!��������,KKK���+r5
���|�N�x�������H
�f�U�4��ҋ/
����kj��dz��"�.�������^3H�G=���ꪀ��Q��˻f���+^=888���&ccc���/W|��˺��]U�C񜘘/7#@w�+�y݉	`p���'~��������u��2=5��Z_����1Ü�uV
�Co�����I@gG����J��ǁ�LI���k����\���B�9��w�2S�[���򪉉	9s���d=7�9H�>�9��$�=�ufιH]M�K�����S����gP���͎Y����!̊
f����V����ሯ�kY�$sss��R~/P�]�㠥x����"@z�}Ÿ|P
?99)LJJ������EO~�s(��=�O�Қ������>q7��ㅅ�S��q���u`�456����)�ho��ّ|cQ��#@Z�����y�3����D����r����
4��|ݡ�q�C0+#�s򃙐1	�=��^|��U�+�c��+	z���F���Y:5\�n�I
��Ǯ7>�ُ���TN��7������]����.8cb��t}~~�.��,�0�u?�;����S����+�W�¨��R'!q�
�p�cf�gU�<O�.�f>//+�ifV��r,��ęs��&'K��_C�J[���v�ѿ���}��]O���?��ș�5D�5��!��̐D�9&�9����<�t����==2�U�E׎X��6�Emm�XY)Y�����~��V5:�[5z��Nw&+ǐ"V
�b��		QH���	����6|YVK�*������j���Z��<@����$ݭ�9��8�9
T���>=n�D�9.��}))251�JK妨(IKM���/�����7�����O~�o��Eބ�}/��3�L�1;��ϝ;G,۳<��4���A}��U�Xڋ�g��<E���Er��m���nSNϷ6�}ǽ���8m��U�Y\�i\�e��n��6u����Jp���U8.+)��,!GJR>���z�9wD�b�$����߈�x2�ӓ�<�i@���P5i��6�n�(ٰ&fC}�
�JC�X7��
��Ȯ�o�@$�7�#������B���6�\Zᭆ
6���Qa�����x�֐���Β�K�%������]�\�U�
4\\�EK.�x��:jylt4��lE@*�Dҡ������K>�•FnQ��O�k&��6�FϪ�f�5�m�����W�i}��.��5����ڗ|e—���K(���)��
H>'Z[Z��������ϗt-��ޝ���$/�\(�~z_����6F~��^����d�
n\!T@(q܆4�
��`^��ĕ���q�ߗ|c�wx+ȊA��T!�2�HJLt/���q�"
�
�
G�;�����:���oS~��!l�{��Ĥ$$$�`�7���Ҳ���Qy��折�K��gu�/H["h5��[q�8��v�T�b���tvvJm��)y����ߢ)�|C0��i_�H��9��x��)��2�00��õ��|���$����X�Ӷ��}S��ۅ��)
T��9�}��C����e0o����T1H�u�4-�/��d'}W��k���~�ݚ]�v���6�
�>M���ld��
��b�h�nh7��;6y��L�G���S�%-Z�)��&��L�s6P~�[�����{{���M8+��_����M��}�"�)I�����q�Z����6�[6i�Ä��:݁�����{{�a0	iM:gŠ;�<x�{�+I��%%�a���T��C#��Յ<�j}�Q��V��DE����	���~�;�vuY1iڊ�
ң��&�q�7�����oٵ	b����ߢ
�����L����� �X�~�t�d���?��ry�
�����2I�ˈ�%M/Ľ�&f�֛��p�&�������]VJߒ���ː���Deb�W��evU\��Y5=�
�6٦�b�#70���^�A?��{*�����c���?��}��y�J��%���̓#$5�ܭ�'Iq�����\�R|M�+��*>�x���[�}7���<��
⅊�)b=�?��c���N������nV�PU\?��x�x
��IEND�B`�images/header/icon-48-article.png000064400000004003151163244110012544
0ustar00�PNG


IHDR00W���IDATxݙE�K�SК7fff��23�|�{,��g�q�����ό��3�n��b�:j�V�֘�ꮪn����U�㐔6�	�=Z��Jix�ҥK�N&�N&����8^ccc����~��hW֐��l�zg�P����~�v�ڟ�eR=oG�	���z��
y�lllLm�3�So>s��7-Zx�u�#��C�����i���9P�-OtG"�VM؊�>�ɲ٬S�f�@��PH�j�E"\^��x�Ν���!��W�\��C!<��4r���ӧ/(hU>���@^=�)�?444lH�tA)X^����V�:{����"ƫ�@�'���r�,cr��U�xN߃��exh7����7��R�_��W�N�:5���s�wnߖ��qY�r��tw��,^�DZ[ZD�Pr�׬�
�Xp��A�7�V��Z�K!�F���%������]�=T"J��v���V�C��Џ��3�k�סru��…�i:���V���7l��Wb�.iQ���/���aɨ�G�,\�HRɤ�X���C�R��@V=������'O�@��9O�޳'hm;~�D�ː�m�����k��I�ԭ[��>|H��2S���Լǚ����$Ui"C]���}��j�yX̉��ǐ7��"@�Lݼy��h4zT,�ژ��f\��A���Z؀P�~�@6��s�8sи���i�e��uEV���?����w�~����R��b3����[��1D��>��0��?���|��_��3��\E��p5�4
���(^VT5)��~����<}��O�3���o��k�n�4�U0�i�ڵkh{��\f���녰�֭�"��8�i��3��`n�_�<�u�E�b�������v�S雸A}����b:Q
�Xq
���fx�
�A�1���%�{�27�����9�~�7���/|�|#r�`y��_Ё}�Ei�2�h68~%�#���7$S)�R@��k�L���u�zU}�\��#A���N��O��@�L��m�3&t��f	4״�l��Ƙ9b�H�f�E}̤�y>���#��|�Ϳ}�K_�*�vޝ;sƬ.��Ŷ+XF�
	������9��k5"̅-;5ϱ8`ԑ���+d�ڵ�2�U8UaN�q�ລ�98ԙ�ր8;4`�-�����\���:::��4-d��5x��E���w��ƾ����i[l�]>3s���&��2`�cf53�g����e��@�ʍ�����Du��'=H���n��qM�U''&f��פ��Y
�{
�^!k֬��o��"��|��S�	���;p@x��@-J
M��ٷov�mj��˖	�s�X�cHM�t�"�0�+xuD@�GlC1�<
�30��� 5��t�,iG
a�6����6��?��\	60?���W_P̈́c��5"+t�

R~q2�I�)R"ѡ���#���P��������N���^��ZM�:t�H���K�.5`,uչ1�V�raƸ�����1����j��>����I�`)���WAeKEKA�Ze�or�kltL��ux�*<m,Ɗ����SSY���۵���|�����+mz]���r����c�5���x�ƍ''@تRٴU�l����f<���i�;��.�#�W\|rR&�k!P��BS�D���Ӥ�@��P������k�����kH!�+
�pk���n|�5a����gS�|O	hok�}c�D�QR�V���	��W�ʶsDp��(~vb�o�t2*`����[����Y����<�c�Q�A��k���Xش�k��
�*H��\�IT���X�����L��p�#���`9'U2ס׼1��\1����6��[՗����2�����c�Y��֯�
����)�q�)@X���r������}��}�T���:�1IEND�B`�images/header/icon-48-assoc.png000064400000006662151163244110012246
0ustar00�PNG


IHDR00W��tEXtSoftwareAdobe
ImageReadyq�e<
TIDATx��Yytչ��h�lٖ�x���8Đ�f!�4��Vh(M]Ci!im��F9P�P
�x,�cy�Z
�@I
i�C�&$q�;N��lɲ�m43��l$[�h��9��|�ѝ;�~��[�AUU�'7��'���1-],D��)�~#WW�E���������d�)�	�C�ө&K���-vGT�⒴OD�c��["g��yO��L�/��m�Ku�U�㑰|]@RM��~�~;*��i�f��e�H�_�쓄�JZ�8?��2�[��
���Io�L6�=�z@U�4���`(��^�1��}�X���M����N}�^�VV��I��b;_/�Up�,*-<���4�Np��>ԉA�$Ip��Pe���"S[w@���=���Z����Y���|#_�~i�W͵�'�<��rw�n	�$��(�Ĩ!\l����8�CCCȴnMmQ�_�������Wos���4[]ay�D_�A�Y'bm�	���x���86.�bi�a�{3������
�rJ��``��@ ��
��!�V��>�'�^;m���YgHZ���H����v/���6�Ť��]!!gw�Oh�Z��f~?d�
gi�Ε�τ��\��A�Y��=�:
�XYi�*_���B->C�����;����3������
�O�3A~�###����>�Q��c�͕K��^���g���q\Xm�/W�`�Y���@�YB������`�q���6��o���Nc��srv/�"wz��o�k��u�\�r�lr�Gc�,��C�bx��(Z:<��2�@��hae�7�k�-K�Ql���'�H������3�N�����܌O�V,\���=���
9pɋ=��&4^tN�w�.dž��0�.�)�����1x�ݍnw/wz(|��HP�$�����b�w��|��d�Ɨ.]
K]30��nFUU�� ��k?�;���N�
<WSI�<�2�͵�:_�k�
�+�k4̼����K2��2���*@ND5��|���]��#����:����d(e�a�7.�:z�|/�?�:��:��14�6��+.���d��ڭ�u���X\֝SfIJJ�x�#F�
��q��q����
G�}��v���]�O�www���?J����[�s��Mٹ�kZZ{�娬�D�,7�{tp�w�
@��E��f����f�M��8(0��E�k�e]
(_L��;��~"�x2T�%&�5�&��~��m�0���S]S3��@������*i�9���M�u�	���<�^T���g-���F<��+�,��e�Ld�ٰ�[w�"�:;;188�����؜䳋���L�-������w���A?�
i�(
���Z�W��`LF��Tn�bV�����9�=�EX�|9�Xii)����$��h��0�ѡ��N�6D��g@/
�c����Gv��Pd�W�?�{�@�H����V���0�1mK��_q�.�C�;X#^��J�Ӄ����3_]]���.<!SV|�+r���7����B�F9��A*��z��*�Xcu��h��Hp{�����?��vbm/��\__]�\��Q?J�	��)^��	��`3�22ϲ�{���ɱ��3Y@��`���l
���w�5���:��!H���Z��S���HMd��*
s�q����]�N���(��n7vt���^*�Ϻ,��毣�/��E��J�}��!v|ᓠUA��T<i����B,��<1��G�)/��hisP�Ŷc#��K��Q���(�,ڀ��|k֬�٘ei�ÇɁO�}rMV���65�HW
���kørA9���y]d������g�K�t>�J�W��H�@��˚[��Z���x��~�Cz���E�d�U)���\C���u���.2a�4ϴ����t>�dɒ�pɷV�e�'����*��A�{Q���-�!QP}2Y!�CQ���n����uXYW�Lc�)����fm��uS[[�������z,��1#!^<2�g�܂2U��g"��qf4|�+wp�o{�.�|>�YDb۳�F����a><���VS����j��+��R~�69��h}�i�ě����B7⢯��������38���.��%y
yCxr�)����/_�s��zN	h�-�'�܁��N���A[˟�rB���}@õ�sg�~L�
F��|.�RM�0�ȇ(��`��'Hȃ
��3�O�t[�JT��	�WIS7/�B�OZ�hǎ�xvSZE�[���1XLE�#��iY	�$��������uYMѴE��
��U�ﲳ�q�e���)a�f��)18��rAg՗;�Ne`��%���ə��:�����R��~I5�Vl�e�L�;�R�����:��薦�������Y=���t���F3�Jx��o.ʘz��o�Ңn^�[��s���}5m�����q(�E�}a���ь�~�#7Ty:]/݊cǎ�0������-Μ�U���?��@[�X.���p�����r`׾CY�RR�o��W�;��Ν;	z"L
�o6u���lѤ�F���0���$��z�nlًS����Ϣ쇠�
ZZZ���ͫv������`Ո����f�+����k��z��W"D{���&tzƼ���ٳyXu�\h�S&+.[|�#�w�%���?o�S��ձc�k�1Pk?��{j��q��Ѣ�����&6����)��/�N��4�0wz�
$$ƿq����5w
}O���ees:ZRe�m�[¡�n����P�s�\#14�^X���|^�9�3����^B��$��	�F���'�^˯���k:����
v�����ft;}xjO��+>1M��<f-Y�7&�������}<dӄ
�H�d�5��#�U�m��6����d��4n`>����x�`�)5�
+��*��vu�-aG����BbB��%OԊ�#���	rZ'NX
�ym�‰5�bӪ*���*��`#i��:
{��������McܚgD~m�CҚ��C�=�GiO��!�"
��F!�Dh�`B�X�8)���>���@G��`�zX�l|Zh\�X�/Y��,+EQ�H��K&���:���j��
�J��)JcgU5q�Ⱦ��tʤ���d�Mh>Y�b�`S�Y�u�5��tϘ��&`ZWx�"��<F]d!��~NP$'��ωy��F3B&;'���VSP?i]�Ar2�S��T$3��a!�™|���"�8�X,��V�̘�j6�jc�I����B����؃߆��3��z����3b�4u�5�>��
0I�����n�IEND�B`�images/header/icon-48-banner-categories.png000064400000003651151163244110014521
0ustar00�PNG


IHDR00W��pIDATx^�kl��wf��Ǯ�6l�!m"p�RD҄Vm��&-mD�Q�DmU�C�R)���"��QQDR�*T@�ڴ�A4D�nl^��1֎�ٙ����W؅Xa����H?����:����S}�9���~��k�jty8��6X�w_��x��i%�������y��V�6�W��@��r�-,#X�x~K2M���I_�;�>ɿu��f�9�^>�L��uV�����]���5.��]_��{���2p��tW[�~�H�r��4�u��Ӏp�a]��6R�Cz�?�.I�1j�������_U۰tQ��C/��z�}b��<���dFMNh�7;��f
����5��6�׮��!&�IB��:8a2bZ\7[�u��"���V7?���~7ng�G>���H����1,e>KYy�n~�-g8~
����[��ޔ�i��=W�͋���7Ĩ�h���Lz��m�]��,�qQ)wFt�Nrql��Q354:��2VmeH�]��:ƅˣ��x~�A
�K"�'>�_��ﷻ���qg^�B��W~�$�oݾ��'߼�6Bs�
钪��
��#�XV$ft$Y�pm�b`d���F�W���S2زi5w�v2ռ��_��,�C,�S�6E���1n;
��VYG2f;�ꗴG*�9ݨ�j���i��h.�Xw=v)�}�I)��������
H�L2fI/�xf}��i����Gh��J�a��N�����w*�
H�XԖ����D���Zp�ȩ�o����P}-'R����k?]��o�h��R�)�R�6�T.~�SF}����X��Dm�R��}y��	
I�Fl���2�jCx�^S2Ղ���1�.�x��ܶ�:0>5��"�2�ڐ�IƦ��u�\ʊC�_G3���D	C�c�Zo�qP�=�06��u�6ԡ���:fif(/�Q�����^R�QjJӍ��S�&����0�(�
o���E��J�"4��Se�8��U�u�9�wG�{$�fw�g�oBzwb��hqe	�H����ԯ�\���S�}��t�,O����w���	.��,�;��-[�����
��#T���݌MHR�u�!4�aEECH��VtC����i9���X�K,�y���L	'��n��܂t>F;��x3����*7h�+fi,�ȤĒR�)l�.�iI���1!!
4X���&�H����~V��k\s<�
8�
*�#�Gz
�8;��21B�~���$�"�R�o�9D��J�\"JHLdm�J
qmh�GG_��le+���$7R�v�SW��V;J��1�K^@I�=Tr�Y�;�{9j�ᝫ1�#�8K���{�Y���z��ݒ���ph_�k!�}}�x�����'x'���������gv�l�Ρ�%�f%e�8�=�T��M5�w�E��/�F�|��~n�y��K�LM�t�(�,io���a�hO�9!�j�����(�s�a�[�S֮[j@
��m(:�0�`�C�L
a�R`��ӌ�\f����9�L�-�dn�ю̑�����h��E&�,�"N�E��7�PǨ!)��]-����@;P��|���T2��bcg�|���J��u��p���|h-X)��S�|�~eX�7?��d�N
d'����ԟ���:q~�p0�N.Y��_��
��O4��Mj��l�50�i
�K(@	������>������p�'XӾ��5�B��B�!g�������o[K}_��*�`v	e�f
�.G1]�OG5͌`���$`+s̡fl�
��߼E��lܒi���IEND�B`�images/header/icon-48-banner-client.png000064400000005550151163244110013652
0ustar00�PNG


IHDR00W��/IDATh��Y	l\�����]{��'v�I�1�:4n(�iEi�����$*("���*Z������H/$jJEU
��AΜ؁��sxcǎov������Y'>r�I�fv��������\��|�^Kj>]�}zRka�X���'���G���y���Ȁ2�z-́K&�N�������=͈<~���V��
�f�i��%��-��=�	��p�o���چ���	F��0�+�����Z�'�F��쨮����T�RlE���t����g�*s`�m���~��l:����{�e!p��w7�i�[������?�O>�‰O�
��,��k+q㽫��}8�'ML��?z���}�	�������w.�jP�|�st�D��X<��p=�y�C}��i�?7m���KM@��5,�v��g^܏+JA@*QxJ���W?F��i��p)�o~�`㼒�ڛWT�u�q$u�(�CJ�����;q��;���4�w\2O�r���ck��w��g}8��������햶�(�w��=�B�����T��k��○����P��mX��$�[���ͣP5}�k\翨
^9��XC�Q+�(�I��$��f��1	��t�m�m�ؼ�`������va�ω}�G���,Lp!�+��=���ўS��&l�K]B�z��":n*�a��W��`�a���X!&u�n@&@RՑ�t��<V}J/���{(��/����ꖕa_[#'6�����	��5+�o�R�u[�6�����0DB�*���Qm�Yk⤠I�Q��$��(f-�"9x*i����8M���N�\Ih��eS���q]U1�U�ݞ:r�qL�T�Ppg�:X�K��K�"�,<������5��,�<��>o�K�R�E���N��	����9�7��p��@8p����=�f�"$�Z��)�)�d<.�Ό���S���!�h9:�"�RxDPJ8�p�1<���B���	�O$a�TI�	
�|g_��g�E!�f��ְ��F�F���N3��(	��<q����E!��/i���ww�Q�2���xrN_�*d2�U"�T�D̓}q<�evޯ�H
�T�65p�/�[|�c*�X(��1.���r��'�<�B�ZU֞���/o��a~��	P4q`��1ԗ�*��Y�9
����x�u�"�e�+�'
ZTҔP��aW�w3#1J@��
��&^�,��g*��9�S�)"*E��e��K�V�T�>HB�P��?��P�F࿾��T�k�	��:E(���L��'�[XjG�H��l��qGo����o�sjg���7x�����%k↑7�[��L$��3��u�"�H�|��Y'Xfֆ�uA���8�,85��kE���5.������`n�>��>�f��"I�Nw\�]�QP
Y�i�c���V�"��p��q���J,	�����7=��&���<�o�Z8����!�G�����~<����bX�2�[
��s��f�ɬ	c�`���
i�X�"V.�@��:�p=}�xh<8倨����iṼQ�e_?X\������J�
�P�D�,���!�Hh:x-,bE��eC����
��	�V��1M�I�RL�{`�dW�uvX%%U��"���e�y̸���I��/��/�B&?�9
R/�
Uǩ`��H7�
?	ڴg�PC�0c��/4���FU�5�x��/)D�Mı���\GǕ8š�R��)�*߭�[)�k��sÇpk�0�
���D�@&��>))i���а��ț�Z�
�[L�$:���x"m(BQ�$�,��ڙ�D�B}XhE�r0;QL�
�H��d�ƹ��<�i��{�Z��d6�i�ꎑ�j��#�
��2ܥ�t!#�ї����ӉE��@j��,��
�t�)�JPJ������*ҰU}w��x����d�VH�*���I12H��I��X��y��-D.��oy�v)�%^	��~���Ӡ�����0�����@��2	���*�,cfy|~Ȯ(&/
�J�����PD��QQj��L@)�ٱ
mp*;���8��·��œ���I�@�]D�M��������͒�h�^I'a�Y0���=��Dw���rs�1�s��lm�Gb
J8G���|�>�p�A�O~�(���s��83��َe��D'XRi�_*tF��s��~x��I�[	��8*+*P�T0`�A
�ׅ��j8�6V���9�>��e�9�����(J<.TT���^d
No�(�G���tz-�g��~`�=MjR
pi����U�Y�R7���"�n��$	��3ft����F4�D�kju�1#���{6�B�M��^b�(����3"��IUm	�b�'l6Z��b
S�=fs���l�6Š��(���g߃K�_��/Ok
x�h,��6��Y��cU�4zYc�
��B���^d*<ɋ�b�<|XX�d��+���G>fP��΢8��$#U�K6٬p2#1�:B0t\�����|
���B�̘�UbG��7��-��r:PS"C��y.��h&�q�4!��L��r&H�����֒��O�m9��ٳ��+�&GO����@R�����X�I4|�ߧB�?3�H�i_�-V:��Q����-G9��8z•S9�B��t��f��'ƵL�#B���H��+��bN�#�d>ИN��2��<�d�e�D���wJ��IEND�B`�images/header/icon-48-banner-tracks.png000064400000005520151163244110013660
0ustar00�PNG


IHDR00W��IDATx^�YlS�=���y9qBH���,&�������&��NP��]5��
��I�ZX5�+�H�^������u���
$�
%$�CyS�!%
$�?��}�W����@Iǎt�B:�;�۾�dY���-�\b\t�1tB%�D������X����$����p�M'�F���,H���sW	F���d�
	0���^��.	R	_�8��0�E9=�	ǘ,d8�	EѴ�M�Շzõ�H���b`ͫ���|uz��^<%��+�%ӆK����+h;p
٣��C7:Nvb�|����_�F�.xfSC��f��=�L�9�khm8�����@4B(.)�����G����*�:~���ϟ�y���3�d��q��AU�f�c�q��F���lͧ�~Z�$aذa�K|��т��y����тk�B�A��™���O����p��s5�l[���}붵T�ζ-y�S��{N��FX.��X��{�����^�Go��Q�&x|Gx��c�9��/���'�p�J�:.4Nʩr����ɲa]��`2���n&��s�}g���K��>;oN]�Ż_\�ֳ���dY	��=���7^���:����Rp����<'�3M��i6��)F_���嚍fޛ�q~���n:ϰ�����xЕ�#�c��[�:Y�!e:e��Y��@��q��e?���aH�G����u$zm��d�
�VL�H������u)EL%�8
��ۇ���x��V+�g>��K���"ޠ�WL�fO�#��Ȝ�f�+K��6`����8��(��*�lG�Â��>�¶��`�d���"�����8�D�Y1�:����q������u�lF��۔���O��7�Й�����Z�e��Ε
E����XQ��C�Cx�7��Ai�'�&�	�8�"�l@n�Nb�ɀnA`TM�i�%�|F�zЕ���/�m��#�a��UOq���_9҃S7�U8*
�J�*
H�8Xy�N"�S-�ʩc���@�d.�L!�����2>>��_F݉�8BqN���D*�	�1	�%�F�f��b��x<���@��W��'82��է�OÈ�Z">la-.fD�Y
�eM<;%2-�d�����dA5�PZj="���:꺯�#�)�f���sj��:ϒ�PS
*T��A�/��72�z����E#`�����p�+���4
a|��E�Ā,�,���-l����09%	���Q����O�6��%�r`
R`�g�F���D�oO��)M@Mc(,[��UZZ�Y�|�����s�$�FY����(���G�Љ	$��P̨�~U�,��Ґ;�t��
J��x@��+Joj��;΄����(��%IVEc��\�Rn!/n�ŋW�&2����[�^�=����]X`�	X��n��$I1��(�ICV��d�ІA�h�"������2��i���8�QR`bo��	蟻TM@O6B�����8�ًPL�s�:̛7�MB7酓���O;�e��Џ��f8�F�-Z��ksȀ5�[�&��S
PjG�{��ٲ�l�	�3g���V�ؙ�L�E���aM4JOܓ�����T��w¹�*1jV+�W
y����fɤ
ЁD�'���(��[H�:%�gg�f��
p��a����I��L3��<�"qt����S�>|H?�j
�{��	���}͚5�`u_}�f'���&�'���&���x��p\����\��?����4�D��ѫx�c��5��p�/���B��z}t��|�!�Q=�MFFXʙTl�j�*)TLKW�|�a�/��
���~����?�6u�ͩ��$�wVB�3�v��՗����wpQ�U�����А��<�ΰ���क़kj�	ox{VcE	�%���>Y��`(�%f�y�@ѯE�@B�.]Zll��j_RdJ!��ol
�����������G�F	��x��$b�zYss�����a�����*�!sx6��^�܉c��qT
	������n%n"�ۅ�(�_�$���o�޽�g@*���ޚ���
�#Ǒ��\g9�����]4��[������;z�����_+��E�c�8�k�s?O*�c�uF�:�n�xv��W644�ߑ�UO�)"��
��#(*,���S��
��(���
onll�֣E��X�"#--����U�.�cǎ�(�������/��PRR�@0�5MMMU�~6���jⱸ_#A1�x"���kAH��Be�J5���U�M�F�R��۪r�~DqK_
�>�ߏ�Q�
+T%y#�a̜9��q�[)��t���^bՈ>��X,5AJ
�H�1�x����T`x�I���֥Y�����?�h�V�b�x]-s$��hF9�\���g�o׺�N�<L�H`��1B��9˞��1���V�r�ΰ@��̈N��v���3�魷}4F���LL���8uf-��
�	��}��g�3��ŷR
/+�\8F�hQ	�e"�@�S���
�0��չ��^韘8�h*1��O?P�(��jŽ'd�_��&���߂S���?��D�B������ML'���H���f.1c��j��i�5�:s�c�/�hm>
��3Ȍ�O��
�}��q�I�{�a�4b1GK������/:����ךF�7gQK�#���[�(���بph�ڈ&M0�#ǘD�B���-�	��1Bt�gL*�ثEi�̔ބ�/�E&FoFKª�{}��,��5�r2�IEND�B`�images/header/icon-48-banner.png000064400000005642151163244110012400
0ustar00�PNG


IHDR00W��iIDATx^�Zl��~�ﻻ^����UJ[z����(��nQ�\Ж�ˢn�%�-s,�2�9Ȧ.�H�D6�Q��

P{B�^j��r��ϻ_�{��Z��{����5����=���9���u�Wݚ������5?��ݿ�Cp]<��;��p55J�k�TA��d���]���֍h0��'!�
`��b�CW�j|%���U��²Mr�Y��3��b8�^3���14��@�A�.���E�Iژc�t�O�I��škù3=�x�-�N"�ȁ9�W�Nl{i�/�Zq��GCF�:x�w{jl6����nƭ3&��ׇ�=������B��2�[z;���	G������
\W?��J����g@�9�n9��3��
J��+ƣjٝ��~�~r���X�k��f�|���ܹc��	�JsP��(��B�
pp����G��?Zк��n�G��_o���n,ʷ���?8���a�qN����;����޿{�;��{1H�
�̻�6�d�<u�>х��Ac\h��&8g�$���φf�l�C�:�Gm�N�l�c]�7&����{��G�,�Z<}x�/�f닋p�:Ķw�.��3�WJ�;rͬ�e�}����"�
-��E�f1�}�A������\Y���;�yh����/!��.��8U�8��bh1�����z�,
�/���Zjze���fIf931͞jV	n+��\0���A�t�W4�U
�	63�1��܉�‰q�湜h��fO/BS�9'�m^��?f�͝���2��]=Ł�N+�{C��¦3}����(��09'�Yf��&��@M裪�[$7�R�>��ނRW6�h��5I�u�ou�0��K��W:q�?��=�q>��QtEt{c*./�L0�V�Y�Έ����~�QUO�e�<�m�:�Ȏ	$`�!���ٻ~6f�<n����
�5]Ž�B��J�Ј&��̘�,T���)Om���*':�a�q�T���;�F퀄��hh��
�p�2ep�"G�@rׁ��c�i�8�E&�̆Fd$��k4>{@�����=��\�0
�p.]Y��E�
r6�����߃��+c�:-��Ι��|S�-(�p&�g��ԫx�kr%�s0y��7��֊����D�	+K���7��pW��I��#�!bՔQJu"�"r��#
��P��9�F
�t�k	����:VL�v_ظ="5�W	�|%�D)�L1��n�������t0\��}�VקE���躖��7�Uz&Xa�$|�����a�hڔ�+eȒ!H^N��6"��s�����/>���u��mzFH�[N��)ɼ��DX���Xj��H�,I�p���A6�`S.����v/Xp�#-�G�^p�=�G&���6���kM�������Ĉ2�Q~?t��*,����wWyT�Y�p|C(α�v$rA4���1�C�\q�����K�$\�B{nn%q��yϘ�ӫ+l޵�"��A�Z3-���F�1�:L���8��S۶��S9
#��
G$���b��Xռ��k�Տz�v�欮7�k�(-�9/�0"a�zNA�Ȓf	yD�YFLՌ,ܘgc��%N�z��DQq	Ra�Z!��F�<OE���U�l��n;�3��FXj�nƼ"+fd`Z�y	2�����'Lwd�s@P4HL\���880�|gf��
((,�]Pu��Ύ���C`Do��7����E�ܝ�m�!DT�L�FI�l�V?돢�?��@AU9@ԑ!.���"�jB!�Ƨ��sh�
��i*h�HD�]�)��@
������:pV`����9+�B��
�jF�`��$�e���$.{�p+��
��!Y'��G!���K��A�8��!0�J���1����:
\�ܞe���Yx�;@�i`�7P���������U�M<}��ȱۑ������Ue9��x�P��/�8�R��/
�n�
O�'hݷ{՛������L&H��$\A[(��b޽��J�k�����;�„~̽��g
Ff4/��I�J�`:�ȴ�<�f|͝6z��_��kC(A�3�
]գk�d�h���b�nl���Z��:V���*�y-5�@0d��7Nt��������
"�/V���*�A#	2�p(N"ȅ��U��&`ْ�>�yc
D$EYi)�FႮ��5PPg|���*�Z.\
a�Y33�i|�h6��A�adgg���ijxY�#@`p`�{���!@�F�%�9��p�֩�i���딸�1��j�R~��+1�|v|
��X4��F6�c���L�+�i}��jچAr!�`�
�
�

8~��.��$Y��'\��\9m�-��	��V]��4R�R~�cI���"���<Ⴂ�El&ɵ�@c��W��A
s4��h"npQ�Ӏ�?����.h�qB`ɰT�ퟘc��ku�4F�B�|G.J��{�[�̽m�[>�
���hZ��BtN4�mt-c,
�~����������:�fo=��%A&*�z(x
u_��s%�z������i@`�Ht������(tTx�hN��3:QT�qP��e�8@�ߡ�[���=�v,���B�0�Z
�}μ�'���ޕ�
��!H%����nb���S���[6gκ}��9�����kk=����C'f	��p�ĉ=�G��h1I'����~��M�O��5f@���%^nX���
Or���C�L4i�������%)u�k�M���UP�X����ELP���3&9���']4	�)�U�/��:�(K3IEND�B`�images/header/icon-48-calendar.png000064400000004027151163244110012700
0ustar00�PNG


IHDR00W���IDATx^ՙolg�g�'N�m���Җ�6M�Vmb[�"�0X74J�h�$$
��4�����A�]�������`뺬i:hI�&��ϱ�b�|w�r:���v��f��t�{~��g�V��|���G���2t��SvׄuH�$�X�t�e��t����,9������E�G��Kx��#O߸����
!�
ו�i�����V=����=̡hl9<�XKm�;냄�
�����k��n�>��=Q����[*�̈�'a�������OS��ʺPݹh��yY����`D�L�8����B"�DQ�L��uA����y����a�
�h��!���3L6Bm#ך�����
ԘnY���p��&!���I�/��@������{/��[�ZcE���z�����?��1��p���j�SUU������T/'�l^���(�eIh~KH�s&d�0r9S�����Ey���r�@��D�_tݴ��/���غ*��[�p`�1Ĺ���u-\
��3.��Z�k����@]E��Ua�4M������Ⱦ�>�P���ǎ�щ	Y����s�1��K����,�D���i�~~�O$)\�?��9B8����Y=�<���X�Ekkk�@�J&Sr�2)j!���"�{��H��h$�/OOq�_�/��sS/]L�)�6��f��A��ꏦ-���I�}y�G^��g'c|��(w�`ݾ��ݟ��S&��F��Z��N���1v�5†����0	��R�ॅ�U�ʫL�M҆Ef&r�E���&�_�[[��QG!�Nd���a{n�(N�3	���/o��R�V�ѷb\HdIfL�g�6�eK��W"l�ʲ�}9��CI�r�9)9���gn^K)��
��
���<��t�I�Q���5&'Օ�y
G!O�c�
��?�&O���eQ���x��`�pS���q�ݴƫ��zc4cN8�K	��<|ϧ�y����#�ѳ�\@������w����Gqq��]�زH�B��G��U��y�u�A�2*T_��:��Q�ަ��F[4���M�җ~d��C��\��9AҢ2�ń�T+F^

�v����%�E2H
�Wl�j#ŃM�G�^��Y�P�l�m7T���]!G�6W�tt�Rv��M�BJ��M���si�~��$���sCC�kU�+�-@�l��O�P
aY,ᔪ<�)��'4'��F�G�'Y�zc�k��&�x<�ob�t_�"��eF$;��\��尼Xb~�����X̬�D�1�灻���fGF�Y_v�
�d�;o�޸E$m!�=u|h��ֆ�h!˲MK����s&B�Q�$85ʷV��uӖYs�2�?
���rX��L�SQ�༆��t��{�@��Px�&f6��kj¼l��������Sl���1�G3���pPk�5j��K��"�=��J]���
%��H�Isf��'�h�����QSS�Z�����O�K�?�<�@12l����iz��yY���a��o'/$�n��1aW�-
0�Sy3���2�����[c���m%LO0Mc���0C���P�|��&#q�,��_�FՀ�f���+�O�sK���w�用�7�4(�#�AړI�����Y�\ܞ�7�a�T	�,˅Ʀ�������V�����ƿdcC=��s��}v�=��V
�ɐ�U��p;�|w�J�R����.UUYLL�bX��OQ��9]�;<2rsSc�ͪ��b
�i���=_��Ł2{���?<W��UTt���DV���Ю��<	�(J���@�S9_q��L�4�
Ĝ���1

�A	T���$������5�r�Ӏ~�&w���@�*(n��x�%��cN�I@���
�SN)e•*��s���	�=_$*3�z7L/����&Y��#�pq�­t�{Ȫ\1�
^�őp���h�,*����I-GdF�6@IEND�B`�images/header/icon-48-category-add.png000064400000002116151163244110013467
0ustar00�PNG


IHDR00W��IDATx��p$y�l���϶m���J)Jg�F��7�m��ֶ��g���Sә����W�4��(3^��֙�ٙ��A�/�1�1�-�(�8m%���R�	J5J�K&I�&�L��J`��ϓhO�@��*����u�ߦ�:��7�3��ר3����3�����"�k+��m�Y��'�K�
K_����@Y	��R IV�u�<Pr��Ux�ׂ2�Y
$�x��Qʉ�,ǟb] ������^����#�txʚj_
�L_d��p�K�2�9���3��?Sd]p���]�qq*r.��Q�R��]����)�~�V�����
�An�\׏3���Ւ�^�#�򮼄`�}V��Jm?����ݐ˺
���nH5}`����p��:�w�A��rW�r(=P�:��B֑tXa;c��[](����c&|�N�ۡd7�����J�Jlj��m��>��)l�׋�(��#wk*xJ�N?<JN;��S�߇�gY篐h��K���q��[o!p�ײ������DN"�'��,���٢�`���
8����J�9nn���OL>�	�6�:z�\��R���	��ӈ�{]��u�RwRbvC��	�<��������o�ȝ&b�����#p'%|;�%�L>�)�x�-�q����v�h�*}�����G]����e[[����|WF��y����J�����˙�B[g"�Zx�K�6˚��h'�XB�:
/ƵG_tǯ��6��|6���E~���A
Zj�;,�R�i�����E�m-�Dd��cv�	w��
<��Ox�����X�v�,��%ɿz̯��a`�|�vA�ezfߕ_jW�&���8r<9��HN2;y�Nғ�Ύ�~(Ǿ/tH���f�,�'_`ZK���&ݎ�#|�I�Ƴ:*
8z
iE�e��4*�}[◱��/�g1�挂����f�V�����}�
�}�h��?]�
/H��ܜM��-�	:�
6CD�>�>�DNs)	p#IEND�B`�images/header/icon-48-category.png000064400000001226151163244110012742
0ustar00�PNG


IHDR00W��]IDATx���\m��ڶm[�U�
1���*Njkmo�+c�v��Q��s��c,��̓����ά��5�.u�K����(�%�J1�@]%�"�)W����F25�E�=e�9@�_@�E�f�����+�0*���I�
L�cA�8JG(�0qVa"࠙���pܭ��?��A8���C�s���L�p��B�`�j�f�l
i@�8psƟ�#��gFG;�_:t�7
��)�?ty`�oC~����JGAo�C����}�����o��LQ4�A��~����!��k#�7|-A����F
%���-�
��P1��
ԩ�U�7�ʈP=m*A(e�rr���5�������ι`�z�_�A�e~�Ιڷ�EihXI��-\��E
�<��ڹ��̅��8w^ww[`D�x���=�g~<���#}В�
�������!�z|+jMm���k��kٍ,k��k���ke4�uc��x�ǜ�n��9aƷ��ԁ:R'��钠�Qt�t���oᐝD@�F$`�z鐀���0�bY[�����P�Z���$�:D�8��`i��F�
�c�0�IEND�B`�images/header/icon-48-checkin.png000064400000002723151163244110012534
0ustar00�PNG


IHDR00W���IDATx��{SW��j�*^��?��V[��a����ʴ����
$@B	L0�jQ�D���E;��KՖ��IH�!��~���nvv�f�
j��yf����'gO�	�?�����x���c�0�߈�ґd�������9�!_�H%T��C;��~����Q"rGv>_D�P�P�8��4'�䣯��q�����U��|�R�ʃޥ�z({��Gk�u��i��F|S~�
mhY�A?���E�/E�p/}���d���{]�
��S���>F��A�
wp'��{}��@,Q쌇ީB�3
�K��C�9��)���M�*h�w�D�c�7�k�U>#_�Ȯ��m��_	m6D�u��ċޡ6����>�0�N���d��"�X�K�=�w�N��J����C�#�D(b�Kx�!�'���h1Eȋ�7��
r{v�ھ,�rPh�F��c^��0r"��Ֆ�E�n$[>��G^��˞w�̵�$�m)��(!�#��^��_��q'd�e�0Rc��?��ԑIw(.�g��3�"�	�|6��x�r�u.���(�E[���8��R��&�15kv	
{���4��q�Z(|Z�&ѝBKt�rTi��X�}�˼"�X���a�DE�Y��}�(�����.CN��\�]
Ńo�H�	x'�$56E@g���Ȁ�=��mwnu�DF�I�
���p��(*s}�"Y�[��n�X*e��P�,��t.'����t�B��ĿW���PjMBeo}T�G���~2	��o��3i��t%	D�ˈ��	D|�rxCضG�E��e����=t��s��{;PcM��G
U�6��h�K)�WsM��5�-˽�ܶ��h5!����Ne���פ֒��{uD���Ho����s���g�ņ�+�Gj������VR3_ѕ�%G�����-d-�
����)��J�նZJ��EEŃ$]_���
8�Y,|����$�M����u+j�ӡ5�q�Z0����J�Z����&�
��GN�V�6�Im~�-}?�������Hѕ5x*of4��h�4��_݈��k���(�o�ܝR���H�����o�C��S����x�W���F�
�Cۢ0���|d\�m��C�$&?�|�����c�)���z�Gqi;�ZKDL۷�x0��m���=?�a
���Mz2ϠS�AY���m��u�8��>���0"�)ޡ��0�"�a�8���3��@����3��g�=gg���g�����g}�����PE�bDfS�a�K1�b>ûh��vs��
�oE��O���GÑ�Ѓ���B:ǣf�Y�D
��8��d��Y��Y\�#�>�(Wv.#<ۋ�t�8
s�)<��d�a���=��)�
r�8
W�^&<�,l����]�ss��2l;vw���0\޴��	���]�IEND�B`�images/header/icon-48-clear.png000064400000003116151163244110012213
0ustar00�PNG


IHDR00W��IDATx���sSu�#;.x3���c[ۛ��,U��;�q,H�*h��h�ԉ��NtXR�r�,[
��k�}�	�N�ݲT83������_�
�a7�2�O7I
<�n�� �/�V�υM5�
���.��N\��/}y�w
�v�7�3pQ&�A��F�{S�$|dQo����,��d�7-ӱ)/��@�Ŝ����=:)re9�ucH
ӗ^��[M����Hh+�:����X�߱�1�90
1=�;�!�}�þǯp,��HWJ&�I������{!���u�i-K|��$�Lg�C��:vE��K>��!�����q�\ή�\�,�u���h7�<&��˘�Z�t,�ӄ��#��?��*c�z$�%�U�H�C�S>��y!����Q�g��s��˚#�7�;
��B�>B�&t�$
�a~����A��\k�-��	���'s8�)�%��z�84�o'>��P$�ᚾ���܎	4�5����D_T���'jDQo��?�3����&�>L��벥��q��mR��	�\S:�����
�T?�s?v���a�	|8���K*�?��N�A��
��A�5��K��4ЁqO��ء�|�h�z�T|��ړP	O�x�}��ʰ|�3q���M���U���|��$�Mc_�T&Y���܀vh*�i��c�ŋ1ˆ�J0L�{Li�9�����.&�D<�d�Q(�&�9��£~�5��!�D<r�!FTJ3}gT�n��V�;FGG1b�*-�[#
�2�'<����U�	�1��K��H���#jP5xsD-��{mX���	ϒ��/;�u�Zt@����&�+�G�2l��*���Mf���*�f��/��	f�HT�(���/@�-C���V�	t^j�E���6��������_dĖk��J��HJȣ�s��[&�r.d�V��nD+�rD�9-�~uo
�2�E���\���C�:���Ս��v�J��:
#8ٶau��?�9�1b~�і!?�2���P<d���E]ƃ����r��M�@s9�8$+�F�k�9�o�6��#��:�_�lMy����Y�_�{��+lς�b����&�X|��,q���
��gB:
+�b�>�/��ˮȇ?7܇���˫���a�\�|&d���?��ؒp��r�]*��>�r�9����8&\�[���sU��1����4��2
�C��Z���(�Y"��T3�W�6�|����u��	�M?�����s��5�1
)?"�P�蜋s�fۂ�%n�֟�b[��l�7�Z6}�F6�h��>����Znss�<���#L|2>sY��xvXnK���rpg�D�$��:D�
�]yPGSb,�/��.2n\$��r�H|7X	V�Ղ�œ���&XR8��
/继
�*n���1n;1�h�l�"�b��yP�����+���E�¼����gN��j��3�EIEND�B`�images/header/icon-48-component.png000064400000003405151163244110013130
0ustar00�PNG


IHDR00W���IDATx���Z��dx��m۶���Zŷ��ֻ��m۶�';]�Ԝ=����������sN�535l����!��Gn(›�#�x���y"Ȕ0�sW~7)X��;�L��D�$�ȜsT�ֽ��~}0��cY���2z�>�1j�{(�Z���sv��Xn'o&v���{���M��4>}*׹�f������/��O��>Ik����q��/!MR~0|G��+�hr��>��߅�he~=I����g�`�������������~�p��oheG`WY����	���|�K�KAo}�k�;��MJ#e�|8�y�˲����Gr|��O�~�Ĥ����ja�X2x�pz5�����\KnǤ�g3�N�$�4v��=�s�"i�~�{9��"��+�g��O���(v�o��A��T~;�0MV��$c��Pn�
!�o��Fc��&��܈��6Y#�a�(��U��sn��\9.�FYc���R�����6P�ֳ�j�z::���5���E�3��]���{%ϗ���%<΃�1J��y��֕�q��Uq����)�8����S�x�m2D��ESv,;����QO6t*<�f��^��x�e/���%7WWBn*#��;��Rv�&��ˀ�}K}���,���yA0e`1��
�q��c�2�w��^p�eN��/�C�m}7#�1j��Ķо�Y��{=�-P[��DH��4���q��w'y�Vx�
Vx�/�s`��(G��{��>���3c�/�N��jz
q�ɭãN�{�+-g4r�R5
�";��ʧ��kz�g[9�=Ͻ�*w�T���$?�א�i�9���W�;��M�Xu�n
��cÜ�X�q�U�v�6���	��{D�⫮f�n�T8��G���d�N{ZE�ZW	���fJ���s3���Džc��!�|�W��8_�9$�ɻ_�ã��L�?��=��l0�J�N�ݬE
IBւ@@�<��W���?%��x�O����4SH��w�x�o�Ν��{P1�DH�q�CgWf@���+�"��An�F*di�B�?U�VB�TG%��ÿT"(/�b�{�D�g`5�Ra#���#B2�\������ʀ:
3�l%E^�F>�%e��0��e	m����gGM��6�

Z"ι0H=��e\�7��R�-��Q^*��PC\B@Z��G�L��2ۘ�D��@M;�@L��/
���~�D�Y	i�
A�$�Z2
9�d�b��"Ul����Ȧ��L|P^���)q�l�
�2��XS�P�O���YM�m{���˄�z2�ĩ�%��7z\�cX�#Dd{��{�Խ�9M����]Z)�4�����)����1�S��$d׮]_����l�}�n�Ź�����+_��߾��o�`'�h�C�}�(�[�ڽ�m;�1��U�S����W\��Uu�E�z�#��l�H��n��Lu��j�w��)�v�+^�\��amm�V�u���%R���'<�9���}n���y�7�1��^�Z�2TW�M�Y�1���W�)�n�[@������s�_���(*�䫽�C�v��O�_�%�p�J��	,+@W9�RH��:]�������J�X��OK!ׁ$�:ܗ��8�琷*a]�{�g��)',��R���d!$sHI�k�\��&lag
���3��IEND�B`�images/header/icon-48-config.png000064400000004417151163244110012377
0ustar00�PNG


IHDR00W���IDATx��pO��P�Rť.)���.��zq�;�m�T���N%?���
��Ix�υ���A�O�5v�3��K����6w�g��~�
�:H�
'�6N[6L4c�,��U3E�V�@6�S[*�fR�.��i��r��LY��g�i�v]���>���1ȴ�b���)���Д,����w�E���`̂�VA�IY�m���
��;��+�o�8��F�d���G�k�.�x�
�
��X���֢p=�CB�@�RiT�\������'�C
���6scˀ4�ï���;9�xd��P�~}������&��ϟ����9�S�����t�_�:�_����1j�	&8���0��`��\1��"
�s��^�`���g��?}������矐���8��x�i���+�{Io�1]�������G�
q��'�Q
l}c�}
�ؗ�!2G�����w?^�z�޿��~��eg_"!+��_`��9�KS���G�C��\���s��+F�g@0���b߽2�����٠nRitN~A!������oǟ7l��H�tj��6l�����C��O�}u�؅S��;��Q��t�y	�gV����3g͉�y�<z�
���ݻw���1�,�J7$BV��M�Xy{p�3�������*#s٬��1s�4B�ƍ�����g�/���슐�
�g��`���nd}���Ce���a�K�S<�H�
�ӄ���C��H�qx��	�gd�5�e^�U��,Pw���n�o�&<��h~�`��*n��ݩE?qҔ����"8z4k1Y�R<��!j��9jY�%�n��̓���="n�Ӻ�W���FL���.>�?q�'Y���jkz�٢��68���w��mu�ރ��n@�Mg�������[�Ǡ��3g��e�[S�
\T�u4��
�͖I�;�{�Ȼ��i�M=�6t�~ڇ���>�0h�f(�l��
<q_DMO7]�#!�Pޠ,N[�V�u�u���2�5I�yn�m<���uZ�����y�o�mBN@��a��Mĸ�]�i4s�EѴ�#�*�=ȼ�Gƨ�F�����>��r;�cd>Ԡco�9��>�dFB�uq��Fu����k2�xZ�����Q���4Y\�$�FD���6��Ty�(�ݤ>�����oZ���2���t	Zo��Гt�ɵ�<@'I
Ɲi;4IYm@y�-(PZPW�y�.H΁8�$8�㧿�b��S��;������N�58j#�����hk��`�ߨ^q�
(����p�6Z���c�p;����
s		Q����=d�<��"=��N'������P�I�*�2�ӷ������8
�6�^A0�O���?Ka�(�
�V���;]�$H�iJ�ܧT۷��)֣�J�m���/�Q�c�L��+~M�
e�(�mA��G�5�$��}4�?d�&s����G@�^�BT���Ս���l@�����)Ԙ��_{mJ�}+ԇzv6u�&k��
h�K�0)/��ů���kJ�"���_K�Na�|:�������І�GD>u;�*�]|��i�2�9�R���P�2fx�XB��b�,��#�l3�~a�"
�L���ԝ�w����{5�Ъ�#K͂�)M@��T�+�)Ը)�߿.��Ѝuo�K?����Ө���&���+�p�[�`ܢ]�c����@Â]j�J�jI
���k2�==�lB=���37��$Dǎөu�"_�]�
e$[�q�h��e�<E4?��k�1{���o_�f�J
�15���&n��!D�)jG��^wN�+z%C��B���1�d�f��7nM���U񦠊7a`�f��`���	�.j�:p{�YL��E�	P�P�A�9���N!��+T�uAk����1ƌc�„������3�E*��Ï�1�>++�A~\����1|u��>?��u�BX���^��1��$Rn�L�u�e�0�
�g
K���Se_��j�1������a�,�3!��s�p�����@��T��n
Ⱅ
�k�D��������c�⫼]oL�D+<sq'��S�m3>��v���u�
ۻPw�W��"1��A�R<�L�P=Ԙ0��[*�K�p
�SwI��L	gF�LN�j,�B��
.a@��Te7”�	қ�y<����=�#�
�L���g��j�Qh�q%iCuIEND�B`�images/header/icon-48-contacts-categories.png000064400000003443151163244110015071
0ustar00�PNG


IHDR00W���IDATx��$[��s3��gֶm۶m3�Vpm۶mۻ�=Ө�{Ͽ�y�;��zr��"N�f���A����󟍱��7]b+��[�Kq��o���9��P4
��ؔ��q�|��pk�!��֋��)	�����:��9�8��һ/FFѤ�q4�)UF|><x�?��@-["�P/|8���t���dG�>_6$X�R2����v�	(�]\�F)
`�8Tԛ����藊�ų��M��"�w�n���1���W���1B�F�5񒘄�цp��Tz�>�@����@C�fw����!ϯ%�&�
���7"��[��(�c�P�`ӳ��g���:�<�]�Bx��+M3Y���a���jM{��7�(mj�YM��g*�fv�2
�;�Dr�ެB0��@��M�m�8�E�E60����Nu<w6q��[�W%��]��BfFa��(jf`��ĞS	/L�Č��h/�sOAJ�x"VDJ��
h��=
�!A��hML��n2��O<i�.>�J�rv!waWx��t��H�`F���ⷞ�ϜH��3�h��<�R����sP��U�	�
���E�}<F�(�_�uw��/�w!����A6�9�p��E����E�(�R	�
�+?�ݫ0�Ѥ瀧Q��[�Kt3����[H�?^Pʖs��;hW!�`0X��,�b��
#�*)�8"JV�$��M��02H�<#B�9
X�=9
��5^O�D�5z��P't`��3��v�T@R���=��`��M�&3*q�Y��4ք����
�kUr�u��4Z9-�A8�{���9�"���Gj�k���F��u�㍌07��͛)�p���:��M�����~s�Z�*%�i
?U�.�F�0����)o�
�}�t�{<�o<��WӜ��V2����-�M.&��
I��P���ϟ�<�L]�~�����~��4�#o�ڼf�L4�8it<وxh^������t���_���ɔ�1i�v��W~�]��L���g��@��bZ9��-gݥn̆+�a�oB8n3��?�̟�-O�9����Pp��p�l��`�E6����W�#�n�l��jcH&n
��W�c���㧙��{H�9��r{f��{�*��p	6\�~l��k03RJaӅ�r�gн�
��!��Al�
HkV
�B��Ԭ̦[�I�->�(/v}:�2~��[rk�B�[ȅ	��j1��b��=r�`d�[B}�M]���?���6R��ق���EA��k�yYx6Q(���y��n!AM�y�
caaw'�XeI��i
:�!&��!)=�V`�0Cg����&�l�Wo!n�$��H��28��105}B�m��)�.�d
�4Q��������Oy~��ib����/ӵb0�1R�xr�	�PU0!��.97^iz�����%>��'ۺnϯY��L0�K�L`��Y���9�C��G~^0s����)
������@(�P�e�!�\Űo�\E��p�HZ^��`0P��%Up
=`���KƓ�%`��P��e�lu�e@e�̴�e����eViԱ��Fc<(j�Su�U�F��nQ����@�^�À�
�2�$)�YF�@˕T�:�H��0��@B3��[�I�m��!�r޻wo�1�m%�o��A�����a�a��5�IEND�B`�images/header/icon-48-contacts.png000064400000004721151163244110012746
0ustar00�PNG


IHDR00W��	�IDATx՘t�����eHj�I�����233o��{����������X4%Cl�TgN�jEN�>��\�ؖ���_�;t���4��,
w�T{�_}%���#RK#%>���K�@}�2�Q�mF�,�y�B>��V
H"
��ls�YcĶK'�o������}Ʌ�o��u�~�{�=u�f�����3���m�-�T
���!kI�Ru�����ۄ����$QS����1�1
��׺�So��Ɒx%����w�1*�:�T�c�k7d@	��<y�Ɩe-�u�Sm�sAS:)��.5��+/�{(>���|����n,�'����L�z`��@��g�}�^{�y����4Mv�꽎)koֺ�b#Ň
d{x~���lU�>H��>���q{�g=�#
m���g��,d�"�db��R��g@��F�B�Yg�u��)S��!Դ���5�	��g�9ˮ>$B��x}�#ȾG�!]WD%�d���V&m�wD��Z����j��@�Gܲ���h!��^y�%��곁xa�K$v�z�6Ò�^�3���~��S��D���%��HBݧ�j��DY>S�E��SGVp��z��_������e����2`
:�������7�x��;��Q�eU�
�3�	Hb3a�#*hkI����tׄQ,�z���.�L��-iN[�)�a6
@T/������؄��FcS�㤾>�o[�ۢK���5��C<G�]��}W������-��D�{e�5	"&<��p^~����7@�x��^ު��@B|�\���3�w��^	��1-iI�>�%&�hH�QG1l@,|�#�r	b�,��`�����oe�m��ګ�bs(��X;`��]�Tx�z�ǧ����‰,
h����i�_������?M��;��}��C+1`(�Ax}�����ԢT�~–�DŽ
V��%�����.�7I�ـd�ͦ��1��6Ơ�����^d���
d�n��������-�c651��&Ӭ�@��I�ذ���oz�m�\mX���I�t#{=�.0#�����$րJ�hE��>ѝs�v�yĴ���?��u��C��o栉�u��/��˼�$:��v�~�t]O����\�8��y�Ynx�\%���,�~�̈́�M��ۮ�|�Y�

((k@[e�UFn��iö��9���1G��*d�<�	��l$(�/��L�p��JF@eFF�{�[�|,�H���������1�c��]��J|�%$o���o\��L��M�3]����́����C�y�7~���@+��<���$
��2,�(q;����jA�O�1#kQ��9z�a,�k��w�iϘ�A=/���:`+����֥b�R;�T�F�TS��!�`�Q͔b���|���GӲ>_�i^ɳJ|IH1�4Z����
[9p�j�15kJ<�S��X�!�ʍ�L����wfpӻ�=�JA1Vin�M�%���������8�Y"�G�j��ۺ-��|7�
~���lg�!��!��?�����R{��8�����j7�G��2�lfn{�jmZ:��;�/�,�B�%�6+Մ�'K�g�V/4�Є,�ތ��tk?G���s��m�͹���5M\�u}xʲ�m�{�}���mhL���0�C�XH$�X�I)V�-�^�\��Ū��׾�X�$noo����D��(�&nO���d�b,]�B�Bo�&�T��?L�
dG`����v���\w�uO�r04��M�$F�ZU�NC�����CbJDO��b��'�
2Q��P
O�ii8�2a\7z������\5W����-�`�B��հ|T��%˥����������|/s�R8��2}�	�xBJ|�k_��o��P����Z��0$��:`�,�#(��B+k
�X@�FeD�b�k�(`.�m �JY4
=M�F�6n�QF�TTFK��p��5_����@z�!�����#���?ސL&�ݪ�e�<�L���y���6�)�
��`���ñ�L�4����oD�H�}�M��ڴ�@��P\R���u�V.�[����+���Ԭ��z}����t��L�9�"��W�xG�_σ�x��~6�Of�m�J�5��M5���P9
�T:U~G�z�~}��c��Jx0/j[�*EPX2�s���_�du�D@�ȋJiL5�8E
�M�6��c
��/},��e�7�[�M�/�~ɧ׾8D#�-�X��cצm���%j���[5H�r՛T���+��KM���&Z�1��%7�*��b�QH���X\Q��
�Tt[����R���PP��訳L	/B9;�)��4�cA:�cN`�q��\�y��(*�e3.�|OIEND�B`�images/header/icon-48-content.png000064400000003310151163244110012573
0ustar00�PNG


IHDR00`�	��PLTE��������̵�������씔��������٪�”���������˜�ϥ��X����Д����R�Nj�ԗ����ծ����������Ț���������ťd�����Z���ίp��K�ˎ��c�Å������ۣ����֛�۟ѳt�����ZԵv�˭���۽~ɪi̬l��羾�����ě��͏���ŕǮ{����������f�˓�ؤ�ͤ�ۦ������]]]j}~׸zþ��״�ܽzzz��u����{���ػ|ƪr����Ͳ�۩���~f7llk��֥���Κ���ħp�Ӥ����؝m���k:<n�¥kbpnttt�Cջ��Ի��a���о��š�Яǿ�����ʨ̶�mX.]v��Ƣ������8f}���u��ɸ�=q����{lSfffOW[iU/�����Hy�̵�δ|��ψz[���<��nz�&SdHegv����s$Wk��l���|������i���_��M��A���q?JjlW�Ğ��ƽ����lbLH��;agtpf_vx��J�x`Joq\su���ø����w_3�ŌPljZoo8iw���Ai}n��ex�dz|{}���K���]uwsrhNl}o\<���p��^aR���ֵ�Sf`���C��t}��ʗ�����˖~Q���6��ywsbhjxm[���x������κXqm?q�crrMMMs\1־���~�����G"[t��p�߾nw~�zlmeT��ѣ��ztf{c5���w1�otRNS@��f�IDATx^��S��H��M�شm�ضmsl۶m۶�O1���+�tf�n��z��}�̉XU^n��+��R~e���FG0�g��������922<::ZSS���dr�l��>���s�5����P~���pM~ns�T���슮��;6��~ߴBpsO�����G������@����[�͗m=2�,h�nhhٲ��i����p���i�ժ�{�y���-X�]/O������Y�)��
�N�3��3p4�O��L���u@aj6^R��7cr�а�g�5OQ��У6�����!Q����Ȣ"EQ*0�j��+|Xb�	�
@@�eE�$N�fP�&m6j��0��(}�����6[L�ր��vRc�v��
Ȅ���
&!�
7���‡9�9;hBK��1�;\.�^;�o��5H$�{nB29W��#x�	��f�R2~<a0�¢V46w���dY�jGe��}����(�)Mq�����	�����0��(�N_�0�:�q��L�#�O~��D&���Y����f�,UUU��2��_����,��!5���p�$4�K
�Lpz)`8�����.�|���Md�7(p~$|�8zM��o(�	�)`�Լ7�$��?��P�,.�W������i�^w�J<��M�P��U�T�ԃ~#N
"�P&s-}K=C`�3�p�W�_�wd'ϵ�
��P�ѩ�%������/<~�"�d�QᾍQc�)_�0�ͻi֯����腗�x��L��4γqB��OO~�}��y�E�֮�����������d��,���o\<q��/=�i��]�ҽ��[\F��	�{�.+Z|I�`1�]�}��������%m���xO��j��bnM�o�a6&(x��Zܟxֶ6�?>x�����IEND�B`�images/header/icon-48-cpanel.png000064400000002627151163244110012375
0ustar00�PNG


IHDR00`�	�nPLTE������k����`v�����������s��Jc|Vp�@[xc{�������k��Rk���놛�������A[u�������Li������卜�j~�t�����������ׯ��[r������ȝ��������p�����������Ca~r��������������9Ur�����॰�Zs�������}�����������c}����������dy�����Ro������έ�����z�������͇����ݧ�μ�ԓ�������ޑ��{�����|��������������]y�Wn����Yv�<Xs�����<Zy����5Rn���w����Þ�����Ut�Gf������፦���ù�ݭ�ֵ��,�J�tRNS@��f�IDATx^��U��6�a�����L�����L�����lz2͙^��q.�2#��u�)h4�������\�r��ȫ@Ñ$��.�,I���*���ˊ�JE����	v��1�r�!VEp;�(�1+ÏI�ō�j���C�x(�]A)Z�rQ�۪[&�j4�KA#��w����0�[m��
ڟ5��>�V�N�oF;(���	�l>����Ϊۤ���{^Ex�v!H(X*�zw�c65_��t�3����#5��
����PbsP�,I�x���L9���r:dZO+ǽS�h�6�a�	����,�&�]1„/���m��]wwj�
�o��V�>bX=$�(�U���6�g��ڼgA����힟'��鄝9��`�nh�q>���v����b��3�!!KQ�]�W��p���C�����‚њ�b�?���P��d�@��k�O�b���;��sv�q��-	{���)��Dy�C+
MW���w��t���x8Z8��Ԑ���@�
�:�gGn�A˦$%�-�b0h�Nf�ùY����p�Y�_�΂4���I�^�;�٪���!���<�DWh�N�A��͖
�#�]��sT\�m]������(;i&]����b4"R�ժ`Y/�9������� 0���K��y�	��_!���={ܗQ�%��R�x's��w����%ţ]��Q+Y�'4��£�:��[ѿ}�j�J��^�1{�lZ��
˥I�O?O��)�V�~~kEz�@��	x�
”�R`icTL�_���-9E�7�N���~�i@�Wմ��?[,�/��V�<�8��F�3�`���ٮ)�h
�7.��'��+ӛEQ[�#�*Zs�0�ϕ�L�~�l6��n��7�Z�=>�ܴ��>1s��m��|�T@M��JQӝ@���h�6,d6���mi�t�طs����9��f1��IEND�B`�images/header/icon-48-default.png000064400000000601151163244110012545
0ustar00�PNG


IHDR��h6tRNS���7X}6IDATxc�O"���>��5��|�������j�s����ډ������z�+j	����w����2�_
����~��r.������޽�
/�}�M���įﳀ���4�p��
^�*s��'�zr��N�o�">�@A�_,�~��1?]���g>p���.@q��jx���~��ް(�ӈ�zuI��sÏw����_�[c�Sß�G=�vPvӪ���^>V��؃��8������?�~�8І��wc����=`h�;s�P0?|��ڀ>�4Y�D�]��IEND�B`�images/header/icon-48-deny.png000064400000003547151163244110012074
0ustar00�PNG


IHDR00W��.IDATx��{PTe�Ӭ�RX���,�‚)�\��eW�*���i�t��m���T�M�����?ml�?�8�D��X"i
mFx���Ji�9���������]j�3����y���3�^�?��'|ĵ�;7l_����J�N�p�3��sy͸X�}����2�x�4h�
,+Js>�8/2G��\#���sw�{U�
��F̴��+l�
�`�+�TZ�5��LH��o]D}&�@�\ZH�K#Ư�qyI���g���Qg��<�	�CsŚeE�+R�ɵ���{2ZZB���C��2|M.�j���[���K����!\�5X+�������%a,��XD�qf���?��Lݧ0��c%v��X3&]s��صEa�eR���{����O��3�x��iwr�p���c�����͐���x���I4.,�"�0�������UM��T�z	ϒ�3�i�6g)�u4�3�=��Ϭ�#�;��E9���A!�\3�wE����:��f�
w���7$��]��35F��Qx�����H�̟��������K��i�����^`ƩNUƏj#N�eK�ӈ<|۝��^����qgp~&N�Ӥ�n_cV��6�����٣n-���A�]�]�)�0Ft���3���O��tNP���%�}'�M�ɣ��%��pI��#�W�K/
�P�{�V�-���tԕ�~�?��2:mja>>׮�x�e�?��)��M1�w�T��e��Q!�W����[��k{
���b�o+�,�e�W��{�[�O�)r�'��Th�Gel/V%
�zX�o�'��.��F[���`���.Sɵ���s��dh���0����$��;��r�/iR�4�h+N���_�-��o�~�J�M���l����z�9T2�K�Ѷz	B��s�oy;���u��4蟛
��`c���JJ�q�����$a[�4�U0o�dž��S��xz�XG�
p�v��)xlqӆ#�z|�J���_A�9\���
��FW�#GiQ�=e�)��{�={S�l��8�5�ǡF�>��8�L{�k�[�.�6w:m)�FW�G���GA�ӈ0/�K{����b�M�x��ʔ��˨�',n
�v�p�oA�C��2uB�v�pȓ.ݳ�Q`��;����nK�β������H�=�郭=�Bn3z)D�C���4qe�nj�5�h'-��'s+�Z̛+r��,|N�i�ӀmeBZtz2�y=6��	���07544o��-��Ɗ
�ϝZI8|�2bu6����>��D�Y3��/ol2?_�ju���Jb�(�{v�.���Q�kv��?[jJ�ׂV���Zq����y�-v#�<��"�O����g�^�uT'|�T7�ݻv���G�d<Hk��۝Fi�N�WL+��zfn)7a�;{���W}U�;�<ij(����e��zp-����.t�X�
�d�R^s��Za�N��U9��砫��ܷ���kYxǕ�W�Ұ�D^�5.�5������$��҅�ޕ��lG׹f�6��1�����*�'��^��E�I�������"�PZ�@����&�D�;9�y�I��4BG�*�Jb�4!��SYH���#f�D1�($���HP(�pQs��!]�!���W#
糰0R'�Ds̢q�5�D�
B+:c�0�ȓ�����<Q�"�Gw�"�b�/�D��E�i�Jl�N/��E��7,�L�#���F�DG�v��I�1E�}�'�0��_"q^'.�|�_��#�Oݟ&̫��$~�O������IEND�B`�images/header/icon-48-download.png000064400000003731151163244110012737
0ustar00�PNG


IHDR00W���IDATx���х���HZ[v���9�u*�afff�����L�0{���x̠%���n�JU�hgdUG,�s�}��㟌p"����]�N@�E�-GtX��8�Ãs̨u�'
,"N��x+�vT�����F`��|��F����.�#��‰���jd�+,a��c	"|�<���
O��Q�5'�70#W�������!�@ �
U47��7O�/��Υ���G�S��$!����f�tb�'99<�0��a�ߜ'�>�W-��ϡ���%�SZ��P
O=�\ɍc�	$��
�y�v&�~`�<���*��m�`�S�����('7N�@3t���f�z&pFY%���Y��]�:�j!y���)��3����
�̘�sPoB�a�V�@��GB>WP]�����1�׋������I��W���:��N��u9/�C
{�
��J�F4����<���u�R�|�Hϛ?bޘI�b��x�P�3�]�kׂ0��
k*X��7k�
Q��D��4�zv$pJ���C�e�g�L�z��s�X�V���sJ�̘U5����Ԭ����0}BF9�F)j̍f;~�H�б1�T�t��)�bd��y*a�|�nJ�Y(`b�
���ў^VC�M���܃�ɫ�Z�w������E�S��޼S�2Oe�8ZȬ���
��m{��BS�&$6UGt�[�$6�T)����:��d5�����^Am�Q�<ۼ�0��Fy�>L�@n�:�j���jT���90eyJ;��Y�0a׀v3�=\~�<�'Mc�Re���
d)O�\���/��"E�s���*U@m�FB��ӳ��vӽ��h�o@X+�@A]��
��U��_�{�x�ov�̿�|�o��l[�/�T��.;�+QA
�t]��w��z��o�*K�Mh]	pL�8���Ve/����!�&����(7���_`9���
BѸ!W��V>���y�8�r�L�@��<����Ļ�n~�M�I��Q�8�,��a+旲4'j$�٨�`�}U�����G�
g^x)��
��]�$���!
b��,1���m����7��b���)E=�]�O�q/vb�/g��M_�׼:Ԛ
�N$���	��/�Z(e��1�kI��ڐJ4w����{����50�LB'X��`o��_�Ϳ�l���ܣ��P�W�x���?r�v��������:
��]l�2l4\��ρ	��h���m������,���p�g���|����j��}�g������2�F��
�Ax���<3��8~�k��^>�f0�Cu�;���`U��b��^6��ԗ�VyΧ���͎�w�_���L�Ac�˰lT��ֳ?Ǝ�ov��\8��Mc?X3N$"Bcaa��z�R�h�LD*�Z|և)E�}���N	�{�9����9�I���E��]�f�3A*��}����m��ף�S�}5�E�Y�h}�V�\�#�7����\H��\�i�n���O7s���C瞘���6�#S%K��t�������B\��QE�%��`�R��*�1\�x�[��]��a؍�-¤
A���m�(Mu�����u0]9�KLOynj�]̞�D�(&���&ǵA
�S��|�'K7�y�D��"ߓ_Ge^�d��O:�������#rDnLf�C+�~�y�"_�@�-����ʑ�±��}�Enr?n��F�ʀ|,����$�
�*�]�
Sj�5 �xD@�Ԧ�铁���� ����>
@��p��mʱ�
^�6�v�w�9t@PAn,��:S��S���I=�y��&̏�@���o�I��<����vIEND�B`�images/header/icon-48-edit.png000064400000003501151163244110012050
0ustar00�PNG


IHDR00W��IDATx��lY�+N�c�͛l��ض_�w���0����c۶m��ڬ�?wu��E'_��:��ܦ���_��m�e�"�S��g�A��C�]s�^�PNe{�c�ɪC��#��c�p�Ԣ����Ț�w��f�6��=����L��&��N2�v�/Xi~uD�BF���P��-PX�\�پD��q��c.,7��R,��@/f`fb6v`�@�Z�{�
��:��6����ي
�Ub^;�;
J���%a]���]�1��;}����������M	Z�X�"�w�����OT��rI	�9����;��H�[�@>��%�]��7Q�c�}e<������^`����ͫ�;�:�S,+qdYerl0Y%Zb�}��<���s����ڪ\`43�_ʪ�Ns���E
��zP�܎!���c�}%����}�����\M�r��4�Yo�g�����8*X��1V��S���wq�[&&x����#3���A=+�$���d�B�ٴȔ{���h�SS���goo/7;�|o����I

-�3�`6#��ZΟu��.��Z�&�{�Vی֫�d�_HAKd�]��9F�<G�a)c�s1w��t�'�+ty��3Ly��&���Ș���2g��(*U�A�'����t��/�
:NpHAK�M�KdJ��
��د�Oe��X�?��c_��o-�i��&���H�B!#F���(n��G2|!�T�HAK$O2�ɑa�(��}��D
Z"i\�&1\�oh��pgC���H3/�F��?�A>���N��%���7E#��|����<�HAK\6o�F�+4��#Dq"-���8ŏ�Ġi���"�D}T�pHAK|4`�k�,1
�%��&ݎ��>�hHAK|�s�>�c����|*o���g}O�?Ǐ\��6z�0��&���x��6z�Cn<���8��z�<ڙ������R��ؐ0hFqHAK�����JӇ�,�/�Jx�+�{�qk�ۼY��	���8�Ni�M�[G�60]�fz�^#�/�׹��m���̥�gy���?ˏ|����q]�Ni�M����飖�h+�;�(Wl��3�w�bg�j۶m��D�T�<���߹�{��G�{{���n�����_���	e��XR�i�Gڬ��iY�d݃���'2�c4J�W�>���x��
��~���t�벳�8Fd.8��"�&*�ݕ��>B_Z�Qko����
�9�ུ뢲1Qm��F�D|?�-	�
o^��l*�l>���E�u�3D��G��8Hd(|\�Ӽ6Des���"�n�mD��2F�tP{�!V�Rlj4��n�y�����l���G��7��j�i�<,��LT�F����nʈ3x�QK�0/�-���K�7�tH�)"�W�Z�!(�rl��LcڔQ�"D5�u�>��;ߊ��[�<��
�У
C�awt�zX/�)�3*��5�<��A�W1�D\;�i��ggN���c�[�Q�mb��%��}��:���o�>���s���Lc����`�5�m������IR���o�:�N�"A�!�k�DH3��s�
��N�,���|��3w\r��,1M�}&�2��S�F�z~5`Ȁ>]�4�S!�{L��O$8$O�#&�i��2Q�)8�E��iҦK�>���Т�S]��+�,�&N�0!��Q�$�f�U���K�x�W���^x�k�8��ß�}v�b��!M��
a"�H�b�if~�)��f�EV�`�M�Ya����S���kUIEND�B`�images/header/icon-48-extension.png000064400000002657151163244110013152
0ustar00�PNG


IHDR00W��vIDATx��$[��s��{m۶m��m۶m{wlۭa�]��lGUdDMEμ��9;�͛/�D�G73�߸�e�+�i������A�$���O�����ѳ�Ebf�t����_�"?�
��sߍnq���?��rٻ���V��~Qq�5"�#���oz����^�p%a|d���6�v�
���F5�J���Wg���۶ܮ=$��>�x6��ї'�&�l=_�����;=�9m��+o���S
�o��[���G��ʑͫ8�y���w��TQ�7l�8�u��on�!ΨRW+`��4�:F&fؾ���kb�M���
@�"�/�ĺCC�R��:*����8>	4�B��09}v��d������*6*�&�{�Lw?�mpqT�@c)t��,I�m�A�x�0b���B
�!<M����
�mT��M�s�^{d	r��F�.��CW�Zv�dd|�Lo{�>4���A'?�{
'�)�J���Y��}?x�T��ݤ���Z�s`�hi1Ĥ��*��,���u{x�}o�M;
��S���
�
L�5X�s1C��O�?�'��FT�j�^�ӓ�&�$���i�eY�/3�rlhKk�(�.���\�9w��|�s1xf������,�8��ٚ�o_��0��1e�����V�'+6r��v�~�VV��*�7��E��
�yO+�L����?������8?{�ˉ1(ZpA��5��*�M��?m���"��l�֦1��F�T
��?�&y���m�.�#~��5/[���oy�>bN��Αv��(``t��3Se�=ϯ�l	3U�w�q�ξ�C.�q�B��>E��܎	C��A7��
fծ�����o~nE�{
���LDP�,`i<bN�A��a8p��6��*X�'pj*�M���'f��}
���[	����f71��S�Z,�Օ�ӞcTH�ܻP�~��x�]nI5�����æ��~�r�����BI|��V������_'R��7#�,�I?�4�:v�?X��g�NL�������	L�E+�*�r
���C�����}�l;4���0���Z�6�u��������,��Z�
���U�l��
D+"S�2�5�6�iu!cx�~��²�YT�Q�J���+0!�q�X|l�y���R	�(S���[U�(*	��|�l���-����
��I!
��������sKK�
w��/�>����{M��~.�\�7���D�:mU�zz���d|*g���l�y�mi�}��CAA���v~��_E`���Y�|*G
�פ�V���,�;�J����E��^P@j́tD���P�j_	��/P�
�IEND�B`�images/header/icon-48-featured.png000064400000004714151163244110012731
0ustar00�PNG


IHDR00W��	�IDATxݙt������M&�!k	�ȷ��[wwwwwwwww�m����$��ǧ��d�O�9l�S���]=}�ߺ
���}�_Hh�?�!�9#G��occcv8��!;;;����ׯ���o�}1A"2x6(�m���	�̙�r�����Idy��˹����m�aɒ%�@���^"���sޤI�^?~|�^��7��������Ȗ�����>_�F�mK-�|�N�D"��jV���e�e����'�I��ɓ'���Hh�=z�H[����U����K���yd�"�	�'{j�I���ՋJJJ�%�o!���ݥ�Jq
���g��g�}<�	�5M!;)��|�G��|0��￳p�B��I'2{�,48׭��g�M
Q��;�3v���u���I�4p
��3j�H�|�u�2��/�Dv��d�}�W��ew���*d��̙3g�3GϚ��e�&$1h�y�������i-�+�/��v�!�m�����v��m�.�7����?]�BA<�ة��p�z(C�GϞ�l�%�JJ��ۈ�Թ3������f���ٵ�M���&{.�u�Ν������W�^��9眭עcl�".//�������lIM!'��&N��`���3L!��J
���HT��Qd3�v��Ȏ���'��w�fڇ���oүJQ"O�Z�����	&���{�
S��z��I,�PȐ�9�ڷ��~Rm2D�WvG�
L1EH
՞��(飡uF����3�8c�'�z*鐗$��N^�ڐ�`�G��bŊշQ;s	h��矧{�5�m��z�����R���ڥ�:"��l�9�w<,�REQ�M���u񥗪��Vl:����j�)�~�ر��`e�DR�5�F�=�֬��	�}�#�}v0�5w7{rM��̞��t�ؑ���[��=v�ЁҲ2�E�U�ȟ&PaE��W_���/_O�$�����=s�KT�UBY2�$J�`s3B��[k�v4��JC=��(R���V�1@L�x��y��)⽍�
�FH��m���L�L����q�EF���wo=/��A�̾F\����~GQd̨Q\p��k�Z�m3�a"��pB'�2��g�Y^�^���4DNX��UU�v�*
z��i
�L��[��8���W�p`;Ûw�!�¯��}*�|0J��f�<�<�'UW#B�D79"l�jV�;�,��DR�е[7OMd(�0�#ʒc�	�f�l���"/"nOwȋ���>����(.�،.]�j�3��5����2|��i��wJ�T���1��)N�mjv>���ha5��y�8ݓ�mKK5�-�3�2�'��̄܁z�<�����J�""��NE�"D�I�J�JZ��S�LQ
h�ۅ�E��Ht�҅m�>'j���.��kWA��uA�#�<�-F
���Î8��^`ǝwF��f��n]m-�o���G���W�S��|�!3z�h7���ZCbgCP�IB�N��؃-DҶ�u�ݙL�de��j�6��Y`HXQ����ڴ����H$҇$ԣ�5v/��v�!�]aJGLaa![��nj��5Vz�^�{Z�7�,���햴�,|>�x�*?�]���@s���a	H{
ST2��}wvk�|А&&F������!Ԅ��9��ǖ�?&��.n
�?�K*b�o��
����q�wJ��M6��=/�a/��W�-���!��6�8����߅P�9�$��M
ֻ�5�ޟ���ʰ�y_�u�Sls�mK��~xsd+
>�s�}���T��8���B�~��Ԧ����!!a�l�^V�5W��t�"�)l��ʉ`�`�-��6`�=�\�7���˚R�%ײ��
C8���]��nf<^J�����۫O����q�jxpp%��-H�mY�#v,�:��eͩĝ��8G�P�cwiO�m��O��XJש��_5�sԝ�X�}D2x9��Dc�VNy�gz_{$"�����@Q	��Ek���єJ޳�p��c|}'=�
�}��7n*};���i���q"����{��aYYq�#����,��C��F$�|�Ʈ�lj
ªO$���)�u�g��������!�H���pPY]Ci���n�5v�+���H�P�X;/��۴!';��gIc��`ǹ��|7�	\D��ĩ\�����^c�R�ޣvc�]v��ɣ͸
��Z��#�����������999d�B<�9D:ES8�����U�7i1���"a�윖~��a%҆6�\�x��E��_���ç[���6�׾p��QQq��������r�'�D��Z��e!��u�|���i�ɬN���諉箽�5��,
׬�
ߑ�lmm���G�U([����h��V?���@\F�-��H��u��IEND�B`�images/header/icon-48-frontpage.png000064400000003043151163244110013111
0ustar00�PNG


IHDR00`�	��PLTE��������������������̦������근̝����������������·�����ǫ�������ƻ������������д����湺���Ž���������㻼���������������ް�Į��������DJT����������S!�����핓����b`^v5�����:/�����ԅ�����Ž���R"���f'MJGĎa�J�{hshS���
���ZZY������
�r/�e���������HE@�����>BM�ZĹ�k^I����xy{������*#������ƾ����
�y+_T@����U
~YE�����й��CA<���̑bxlX����~n������������s_���&
��w���RY0
\Q=���������_HUUSQ��t��kҾ����ckt���������k!(&!�����ռ[�iА]ZIDJGB}q]�yX���E
�����ɩk>�N��o52+���cXCEP]�ua{96
x3
���a�����{�L;W
���0'?89jig}O2�����t�pQylV����p-ncMYB8$$!���XZc����������K�}Q�S+�zt�n&kZB+���uml��|b'�tRNS@��fLIDATx^��S�3;��ɰ�mwӶ�ڶmۇ�m۶�yN&�vO��k_�u~WI�����3��;f�]s��.�Q�d$�;c�+���x<.��aI+�T1)mF`n����5s��
�p�9��E2��&�U�m�Vt�78�Pg<*���``��G�@|v��,w����ܳ�Ӊ&#S6��D��ϧ8D��7�{4cWx�^e8��1�`��w�
��g����v��D"B?�����Ņ�#_������1�G�����{�F30p�F�⦖�>V������10l_�����ǚc��>(
���C��(���mG�jo�߯_��3������"��ݗ�V����{���ӏ.���v�X�
8�Q�X?y�7���E�tK��v�1Ǐ�Kx�=��)wU3��+�_h�뮮ڎ��
�G�h�4�~����*�{����\�v~����%��m;aO��t9y����9�ѶE��m骫;
s_�r�Ef�1s���qض�lU7x�)���O
։��.��7����\d���χA����`��Jkk�;'0(
F��:����##o�$!��쳪'p��_���^�D,�A��3���J�
MAL
�X�`�o?[��u	+��S�q-@�����Q�`��V��U;|�Ѓ7�uӷ
B
h$@;�T�@�rQlK-}v���+�B$�%�$y�W6��4m�
i�9�jC
m�2(��:�|�18��2�D�Q�eJ�lJ�,�4�,JH�RLY𰉇#2n	���$#U����h{�F��i�<ϣ�K��KxSV�U�x�U�������?�E�/-�9�IEND�B`�images/header/icon-48-generic.png000064400000002062151163244110012540
0ustar00�PNG


IHDR00`�	��PLTE�������������������՜������̮s�džŦk�ˍ��M�Ä���ݾ}�͔�ߢ���λ���T�ٜ����Ύ�Ɠ��ո{������έj�ůŤc��Zε�Ѳs��W��|��b�ɑ�Д�����J�ƍ��e��ƫt���ͼ��ܜ�����Q�ȋ���ƶ�����H�ӖȩjЬeԿ���lδ}��� _��������{���¶�������غ{Ž��̽�������ޭǰ{�����yμ�����������ɥ�š����r����·մs�她��������ػ�ʸ���A�ߦ�Ҳ�����ʦ�̮ [Ģ^����ו��Y�ɵ��v���Ƽ�������ʪ�ǵ���������������Ⱥ�����ţ֭c�ʵ��(�ļtRNS@��f]IDATx^��C��@��M۸�mm۶���:�T�w1�y��|ϩZ��o��~��~^�.��7=vP@P��|��$U���gX�g�
 �_}w�1��Ak�J���w^�ү��*�\'JTq>�	���G+�f�HMzJE�)L���z<˄�<���Gs��%��i�I1ȝͲS��I�G�)Le�������	��<�~�[��Q���/��ԖL&�����"u�qZ�M�T�v���H�]1�mֱ�,��	����a�H�uM�,S,�
�O8�.iz�
�#0c��
P�*%$��t7BYQ�y�E��6݁a�\�����s�	�o���WC�v6'l�x9{�Ȫj�N��@���;��`
�64Y�,��Rw�hx#ެ�}K�-��(�F�E$�R��B~ֲhCsƽ;�l
��g��l<�	�ֹ�R>x�/�рSϧ�y�
\N�G�A�#2�b7t7�h$\��פ�i��k'$������n`�)�E�)��B���P.�?�b�N��\�:�K��{!�]��)�*��TE��/�2P���Z�T��tB�w@ET��(��?�}��>��IEND�B`�images/header/icon-48-groups-add.png000064400000006534151163244110013201
0ustar00�PNG


IHDR00W��
#IDATx՚T[�ۇٲu����k}���w���
��Z
����݂{K���{��l��z����ɕ�<w�y��$��+""B���U�{��'04�n��?��x���(`
&&gΜArr2RRR��qqq`�1C�������C!!!/���E����PE���Q^^����~�����Bjj*�(	�O��xPP�rV��I	��:�r��zb��
��7BQ_Y�*[7�L]]rssq���ɥV�����u���}q�|�=���mZB��A�chK|��s�*}�Eͽ3jI�������
����`w=#--
�wSQ��8�G-A���ў�.:r?BG����z�_���L��天-�s��-��f<��P�����]�rEEE(�~�A�YE_EG�g�,�]��U�:˾EG�h��6ZB�9�&������
	)㫿*�9뤊{����S
��ŕh�x�Y@qqdg��,��S�S�Yk|
y�2Ȏ�Ľ��A���`-N"�V�YVy)u���
�
��G�@����/A~�Yȓ�����n��).����*
|&b�v�)�����Ib�`&3�"�UUU(--E^^
�|�֐y�%�;~�&@���q��e舜��C_�Y��7	t2^UW`��۷Q[[Kw�‡(�	N
���3i�B�{����BJ���!�:�ul�^��}�(..�R��-�
�@v����>���t�Q^V���\��AH�5��]GAY9*�k��B��PTWW��j	�Y��"?�:AF��9
Sv�Ck�!L>p�È߬���%�Jа�$��O
���z�P^�)<&@�cI�t&,B�`*���	F�D�3e�>����ׂ|)��1��Xj�
QA�Zt)�����T�Sz�܉s�ģ�F��ŐE/�y�btD̆ǁ�m�O�J��B�Z�9T˰��+�DXi&@vq�Z4��J��:n�
�
�(�fgg��a	gA��>芞��Exz�<��-%R�(j����x.���5X�ׂ��p��C��t����2)��#z
S�D��ޑ�B�H�檤��$����]k����,�+OU`�i�8Y�Ul���Mx�'
߸���J�
?�5Px�ԩS��FYw����Q<�
Yk���1��d�n^=���\��	%X�X���X���b2O
oa��q����
��+e�]ׯ_�S@9��	EqΨ�9	M�\8
b�qر�S����؂�`rEx&<�	�����{�����@ŷr�	
���TV��� EI(��chrч,p*��Sz
c4��b��g"dw��Gf�ɲ�<<x��p%3W-���2�RQ�(W�¦2?��(;�*�uPg��fW}<���$�Ȩ�/��0��x6T�'$��<^�9�?�4y_q��P�`���یD��>ڎM������h;6�>���)��A��#2��6�J�a�S,�uB��R-">>�$��c�򬳖���S�Z�@���N@�`<='��s"���k,$�c���DN�1o�A�J�S,D�𿦒g��`�Y����Qҡ�C���ݕ/E��`T[B*0@��!j�Ǡ�uZ�
=��!9l�/2�>Z=�{���2
a��ر�ް�y	����їnJ��ٳ$����z���|�A��W��4-�z����}W]H=9
�P�h�y��⌅^)���X�u��O��|~�8*�g��$%%��R�5k�eSF�qy��DW-4؏F��dn�l�(�F��Y�m~��`�
	�Oa��i,p���].$�z�}��IX��^CN�8�D��_�_gVy����:�������q�t"n܅I6�X�����]0����i
� �>A�g�$�)
�ݹs��T�6�h��&�a�A�"aH
g%1�#�c=�7�ƨMΘm�9���c�1�1SM��p�	N$_f�[�	=X��
N�-V\�|�(?H��6��:E��&��F@l����nӻ���fL�i;�lw�t�P̲
��Y�O5:�1�0y�%ޱ;��gҐ]T��
1�s�Oy�!�#�x��in�V���ym��5!�{����:�j;f�X��
h��z�c�vWL3�l_�f��c��
��Y�kɮ1>���`��C�ۏg��)���*�
@�f�9�yzz�b+\"��V�߷�F��`>�C�i?rVJm��i@�gF~��6�b�AoVo�2`��aL7�fǎ
��G�3��L㣘��:����JU�	x�&[6�����e#!�0�8mG��w���)�0��"�����rn���S����L�灩{�0y�+�����0����qa�S�y�`�~��+OC~��ɏ�8	�Ҽ���4'��/B���RS�#!:a�]�n?���a�:h�q���0n�&�pawΝ�6(��Pr�kt�܄�󜹲$�k�y�Ÿ-����K6$������6�:�<�rz2$DOh��CB�<�|>/�0��`���
��완3�Im��Cz��Y�s�*�GW�W�>��&�=�<��d��kR������5	�
�L��KXf&���f�u�0�hϰS�;��y����H|��7љ�˕�O���w�;o@�Z1u��s�Dh��Z����Xa�
�M���1�>�0Xk�6V��Bq�3���y��G�+�ct��k��H���ܟ�6������R4?�|�.Vt��O��
��cˡHz�OC�8G�=p%���u-!���^u�F�]��R@y��!,�3��/F��~h�x:�OF���BHO,�$���tO������1:O���y��ݼ�s��Fԩ�[�ۢ�	�Yk8c�6LYg�d�aķ{1�1�}��6����P�tE?/:O���Foh�
��(���,@�@Z9�R�
QV6Ϥb�_�s��kf�x���8a��w�����"(��謸T���<]ǣ���Iw�)�X�7���n
�������\�gf#�f:�O����y�v���]��~l���J��Ÿ�Foh�|fJ�/(|zg'����P듺�}h����
PI�=��5eh�6jA��s��Ai��P)�K�b��s��O��hx���C�lA%�+���Pmԅ$V3����0Sc��_��E�u|5�5��v�fz㾇���͠�f��D��ޟ��'4��4s�VC�&M�do�,�ۢi����)('w�$��~��H�2S��up�Tw���;q��C����x�aψe�bt2�����p'���+���N�n)�Z#IEND�B`�images/header/icon-48-groups.png000064400000006204151163244110012445
0ustar00�PNG


IHDR00W��KIDATxՙ�$K��Yjc�����xm�l۶m�l��6��;��A����eVLE����}�Ŝ��T�f�S'O	.��s�&�H�6�y�R�bW���,�"�H���a�.�z=<�
yP���x�s�u_�u��X9�cB�+Z[[s�hkk_-dzz���1����Y�iA\�v����z��?kM�G��q2�!���m;07^��w�$
X)%�B���-�M��]CCC�����f��ݓ��ڟ��l�L���W,S�������0{���099��ࠞ����7�Ri]<�Too�U�끟"��#���I�e��y�Z�ک�3뱏��};+���Ӝ:uj�x�%0X��.Q�5k�����'��L{���D�
#��Hg�e�(��7�#�<���H�֮]�֭[���oy���4�/l۶�����g�ik{�I
.��~��_�}�U��'��""�$ީ����O�R���ٷo_����n�7�u	�R>�{��D*��V��+w�:�����A�K
��h$"�!q���=��:��%�c�G�d,����ʄ
��DA`����M4\p�EH���8��g���+���N�[���p���ׯ�����1�;���,<4�Ɇ�0��4�t����g�Ν櫯�z7�^J�o�`=��6�(_����/O���&h3m��eƫ5�ǧ1
�>����c�,�J߬[��Ce���i1���Q?f^L���!�8A�W)�|�?�,SU�\.�H�&��M���׽��\zY٩X,~���ĝ�g�7ntt
M�6�c���)@��t)�g�8p䊛X���m��\�j�מ}�����\IO>�R�L���B�ߢs}���4A��o�HȅC
ku>|��Ou~+��|5k�LҎ�c@@�t\~����|���k�ȤX]k���Vw�+�/5�^�fs������7R�V�+�q������q��Qv\���&˼0V�Tд�M6t�ٹ{#�?~��<���,��JJ�70�o�Yg>�M�$�n�:j'���n��3/���a�s�^n���X��%/޸IH��ʉ��)�m�8�O�m�t�%ga�to
эl�JW/<xpފQ�Ҩ���Ŀ�Ct�Mb%l��I4�:��\��l�M.z�eԫe�A�,J#�N���|�%�jɲ���:����
��5�����ed$Z(o�n�/�*���H�o��dr�A��+\�~���C^`:1N]
����y-��d2���C<Y/b�|g�q��WpR1d��lr�G�=	^_Y�l!i�ժ�,A¶X�\�sc`G2���,di�̣���z��`'l���K,ɬCG��W��7<�c1�J�ޤE6cD��M�	ت?�N��OP��X��;	;��MH@�>b�%	�S'��0���;;r���r��t�t�a9�%���}�hӣ��o4\�ÿGr�S�ZSH+��I�u��E�����ͪ��P�0N:�ԃ���Zq���r�b�E�l����MӜu��w�	R�_%Ӛ��[��l#�6%�?)X�F
Y��p��8�0���[��
v~�g*ص"��nX� g��b�8`���$�5\�V
%�D��r7W�5�+y���R���)�Z�Cqb�#�q��cD����|�e���>��G��jT�J��Bx�7�K���8�5�;�Ö5��ޜ�1�j���0�\���c����������_<�F�E�*q�|@
}���[�Z������M6ała�T�e.�Sܸo�9�րaRʷ����ya
u��:PAr�6!g+��Z��m��K�)�\��dZ��S�Jz�$��ڌ(�}m�
S5��Sr߮*=�\D[^�W����wɷ��T�����\Z���`���$�7��2��01$��tq󾭼g��E*c>=����/<�O�m�����z#�x�/ɜ���U	�M���H��ĕ��W8����+�F2���
���C�iH�G�Z����)���n���nػ��d���s���?~Y���׫�q��������ڧYo��m�9u�^��+��pOa�7t~���|�#�-�I�l9�hޜaT+*�2�z[��o���l���^zI��W_�6��{�}\�P�B����a�+�Ͼ�;�6m�
N�6s��p�2ʼXJ��_�[��c>.�&+C@(�C��4*�
���|ݕht���ƀ���u����i���F�!]�i:��ߍ��p�	F�F9U�^���x�Q�Ys=�B��a�1�vn���C%,a��1<<p�XZ��;U�����C�c�v$t��]�zM8���1�<�-�i�Z�
H����d�3\w#_8q��u��*�/���S)���R��ٶ�gD-��+M_�f��<
�ӭ2͙3g��?�PW�Տ~X��}z�	��KK78���$��|�����7�yJ�//�*?��|Zh�E·f�)A�e��1�=�'�:�^���>0�Tg�3�yt���oW=�����7���[�����ۘ�-�Ҽ���c��#������.����gϞ�g��n}skv^���B��yٶu|��c|��S�5�k.��~
�X�	�3ᶲ#�PG��=mܲc-vir�&�_I{�xlÆ
�V�^���'ڽE���/�嵡q&�ϔ�����m��1
�E[:��u����`Kw�~�ıcǦ�5���<uct�Y|B	ح��i�7�}���:{H:?]�szb
_J̍+���c��=O&c)f�J����~60���x�ЏK�����TG�z�^�y;�5�QBhjc�\��S�����1����/)!ttt,|p��855�ʀ���v�;��~�}1�'J�a-D	b�5��Oa�~
���>��Nψ�I�S�=����m�f�w���4&p+�]*.���2m��յT:��F8��T*zC�M��
�(q�,Mx���
��fEF�o�̾?w"���/a�*?�k�@IEND�B`�images/header/icon-48-help-forum.png000064400000005646151163244110013215
0ustar00�PNG


IHDR00W��mIDATx��t9��?�����q&���'�g����eN�1�������g����8d���"�U���i���\�v[p���J-	N|x�B�W�2a���
�5]I€�z}���
D29����>�U��?��^����P����J%���	����@j��qx�I����V<��5�H
�ƀ�5*�Rı"ܿ��?^Zc���X��z��ۈH�:9�ƛ(��V�D�ZV7߄W(G!*��Z����	T�$��Z;AO*��x��|[{�P�+��
�0�;M.�/u��Nγ}�<뀞�i����㚉�R;�B3��l�+�E|x/��Mf,���Jv��qL����6`�!N�ꥶt"+�M!��C7�0
��iC��8��1�3������1`�ے)��X4+�H�K#~��}���;~��gi��\��Wh3�@`3�s<�fśUOb:R��
2l��SA
�#~dk��Ei���&��L,<=ֹ$Y[E��P�05�����7G=F�8f>�c��cy�~}��L:�����
21!���~�MM)eh Ҿ}»��h
iT
-A(@���k;�Vq���OL����W��)CDK�
%����j��j֪UG�n���nbMf�[�!d6�	C��n����-�QJǮ�!v�3�Ib��W}n����ۨZF|՘`���1Tm2\�
9>�-Y�ct8���v2}�Baj0oJ3��L�+Ě�z@��d(a*p��^��7�w�럨����5`ȑ�O��f�.��s�תy��&��ĵ/{w��i';���ZA�mIXmԂ����?��/��*�@
J)��F}A�#V�����JI
���Bi���uj�TD��y��<�
��a�՟$�^������}������{ݸ�К
�$�C#~��S�Á(V����	�Ck���ߌ���R��AGbB����B�h>k�x��`��i���$��b����"������ж�Ÿ�{y��]��te?d�6
?LD��7�(6���I�u��t�s�C�s�pa�_�xr��p�sH�!Q�����X$})�+S)�M�3s��_im�˼��o$��&"j	ӲIW^
Q��0��w�~�q�u��RJ�d�5/»��=�,)q����^�ߍ���I*{i����8?r矈o��n#�y)E�〔��
Z�w����WѾ���3�x�#�^c�6&	=r"h����:�^�޳��w�����?��}��_/�1�֎R�T�Qa6Ä�h,����vǜ�D�#�,��?�c�*��
�מgNiJ�	5�O)�x�1�u'�)
h�N�h�s��r�3�V��d�
�eSC�9�H�����ĸ�L3��3�я��b�f[
��?NnB���.�`b|���Vj��r�vܕ����3]}�ɋʜ�)Ǿ�N�1�c`L0���*+5�)q�уT�����h!`{�a��z���!�G]�����HL����͠�wBl�y3x�Y8'�-�\�(���@�ـR��68��lμ��i��یly��$�n�����/W�|�A[9����K��j��*�R��[�2���uW,�13��B��9���e3��*V�q<�@��N�;~M��
h�����s)x.�
���.���'��Ua�����m�k5Gǂz�lx�Q��U�;xյb���3�xh�&��g{^��m�6��JȑA�[��/P��q��j���{#���z�>4�l�,vr�
�f�#�(<��%�~�s�=�Z����X
6o݆�:<��tcY��Fw�g�cWj)	��P3�S���]��#vr�
�Q�����9;g_������|�^C"6nނ�ۖ�k'�3���M��7�q���8�9�S�f�m���,�s;*�.�v���+�4�}�E�p2�_+>Ԓ�^7��W��éF!
X��^���7��}.��V¸�O/Z��G�G9!�@��hB�Y?�z�.���T�
.�f�ks+�?9��͂0�Yi��)Q�1�_W�ŋ����%ԅ����S7~o+���s_Az��'��k��iJ(��@���$�hMDZp:А��u�_i��|H+�L����o
�4�}���N(1�bǚ��Iu<zp���CZ����?}�j`]�eh�('�V�4��2$
#N�^q��E_�=!1ћ���y�H(=j
6̿�_-y!WCN5��Kg�����k����2N��)�K_K���r�P
?�9�X<�˟U*~x#-pc5���o<�
��oq��H�d���w���p��a�֜
\�Y�R���r�U�A�X������J�g�Y�Y�T�@;���M��{g��G�N��es��ۿ���<���X�V�S�;����t�J����6.������H��Ʉ���tK?�雞��VY�2��F�?�E��sX�wx}�)�|!G�V~��ʞ�ܵ��q���tK�T��-]6�U*��o~�1��QZ�#�mr)�q)/����>����ǣa󑘛��T����C��2Z�M.����3��9�3c��zmC���	�Ճ�����,;s�����xSkD�Ұ��Yr,=
��w������弎�|���t&^�B���Q��&�Z+�Q�B��{�b�^�������u���>�ų}�u+
3�<��V��0��n�x����_zj�S��c�Z:���t]y��pV��ܡ��*S�زw�_~�GEQ(@g48��h�3>��K�R[�O�ܟOTBr|�rB���2wĵ�m)��!B��L��՜�L!^O0�D��-&���ol���>��C4�5dIEND�B`�images/header/icon-48-help-this.png000064400000010007151163244110013017
0ustar00�PNG


IHDR00W���IDATx^�YtUՙ�����M	��,(0*�XJ"8�BY���e���)�����蠨�Bg�]��VdX�uِB+aJP��$�����k���p�
����#g��{�{G�m�$I�Wm'N6�(�1��h�2	
��!f�y�'J]�YC��c��*|���U|�V?�ɵ���I�(
Y�L
!���e[˲�-�*7-'��׳�M��C�B��*q�Y[��
�B��^
H�'�`_8�>��	e�Ŧ�"�2�4���ڊR�!�a@����n��H|z�/��a}f�;B6XC��z��/�	�<T5/4"�
��ª�vC�����#{�缁<����<OϽ!��<[�e�XQ��Z
��1��
{���/¼xJ��h		8��3l$GD����T��
O�WY$B��jة�X̀,z��B�
D��
�)y2��~a9HL\�]��3�i���'��O��
@{��p�o�.yau�4�;\�kv�f�j�������ˢW44��r{O��X+vb�a�p�K�	��YM��]�y�S�\�0y�c�N[ne��&��'�)I�6H�z$d��75˲D��Y}�
�ے؝��e���-aR�N��mg�2�9*hy�ح8iܥ�!K>�j>T���V$	���J����>��/�ô�Z��7$��'X�����"~����*'tă2��A��
r^�͉�}�	b��
��B���BS"���Z�,�=��U^�����m��4W@��K�[�Cȱ��=!����i#��"ښF�	^��H&�R��?#��5��������30,��YA^r�`�*�,a/t�����v/d#�9�J�p-�5-�SY��,YU�ꦵ����V=���J���,�J�Fe��l�?�}TQ�ɢW,ʶY��3���wxӾ�
�[�Uh_+�R�|�ǿ~/�u���D6��.��R��0��G~��e
�hus#��;*"o��_�eK*4n����<�{�Y0�����^�
�қ�rUU��0ԩx��f��6��+@��&�щ���
�5̊Ǫ�9�=��"RA�V+�a�{h8�%�_L�gL|w�����hM���`���`Ȏ;��������Z���'BO�I��V�
Y�%�S�غm�5jFYSx=*���|hc�!�C��pn*Y��N�8�^@Y��HnS�}S�$�#����]H��n��"�n|�ނ%���T;
��E
�eE�ܘ��Ȃ/��
@�ܵ��Rv��ـ��Y�k�����%����{���u
�$�1rc�cv�x�4�GB9R|�BGr 766'sh��b�7
��@�u��)D"h���k�)ܫ�Չܹ�>Q�R6jzH\&(�N��J~��嚯��yyy.�l6���455q$��S�]s92r<��[��:a���m�V��{������hnn�M\�EEE�
�s�PRR���2��NvbA�'�$�KR���ޕ+W�ߺukUaa��A�!??Ǐ�…1q�D�8�Ǐ�UVV���N�.?��u��u��;�Fm��{2�.�X�y����y��
�

�Ű����O~�Y7�"�J����$�HĚ�p�$v�ލ'�|˗/g����D̑ј�;j�\�v/@,e;~
�_���˃�,O�ܹsU�>}&s�saw�}��Gk�B2
��DB�
�l.|�K�䱳��+��l�,^
�ӧO�0cB@6�i3�ب5�mu�>��G�?��/D��=��&G�FR�O��n8����@CC����}�=�"�'/@xl´�LY���G��琎��G����a�ׯ���׮�`�X&/��A�E�G3�|s-�kg�#"~M�WU*�,x�-a	~B�ȑ#�߿��ɷi�&;v�m@�
�y�G
����
D1DZ�0�uR�!﶑(��f�_Emm-V�ZUU9/XL��L�t�xr���nF�ʩ�o�D�U��1����^U
��-�O��X?���O����9r�ׯG~0�h$��]
	�`���g�����x�j���A4�>q�R2�$�!��
6���BH�Rf���
I��
u��T�H���s�<�^}�BH���<0�Č�a�'�7<�Q��iӦ�
�{x�~�W�'/�[(��@��I�Xs��x��7HY�Y�
���C�1��?��xT	��^��o^�J<��كq��Q>*�S�t0��߬2�J����D��![�DPd!��m�F���[wg��9K�/���yA<%��+�Hx�T
�߇�B���y&@�;d�.���c;q!�[�5BC'"ڛ�m�LX�b�H�K�.�f�G�MqWi�Yg�p��p�,#�k�
/���u}?_0��]�xw�6]�T2
��B���O�"m�PP���ϋ�Z?���~�Q��KA����bYb��
��i�M�̙3���;)�+�L��3��ն��A�Mȍ"8�B~�}8�:DQ�,�U�>�b��(:�$��|"���!������Є�U0
v��ذ��eۉ��ڵ�pZ��k�e��-C�#�H&I�
�H2�ۼ�$H0�M��&`@��i�DKkR8r܀���M�C<�
'��9�/X����N���'7�iB���N�,�
#�{�i������w+V��^T"�Ӫ�G�&-�XB��`���H��H��,�_(�5��}��'�P�G/�������w�q�]l�!�[�YfdR��U5$�l�1����C2���3Q�����Ϗ�<$=�5��9b��
�=��O�~�10�,�g[H7�4E���1x�`6�q�+�h�t,Pm�z`��"؃6	#���dC~'Ғ$��q0@i�v���B��E^�a�2�~Z*?ǣ'�E��HG���Fa+&���w<���gP�do��}�i�g�f�P\c��P��4�
V�l*�N�{è�8y�<�>�RK�,��z(�}����0,A#�uw/��w?���"ꕑr>|;���<G��=o#zh+|�\�1c���ŋ'iS��ȅ�!�eBD!"*����
νb�
!��O��U#�>��1b���K�b���O�a
�%��3d�F\��%B���G/ꅄaCK�²e\y�P�F�/^�W_}U�����{�g�@7�x�Ƽ@���l�U��0\O�N���2x��*::�et͚5���Q�T
�ţ���r$/6�$ç-�|$(a���|E��t�zr���M�3F�S��ϼ��ko�;�@��}0�bvI�p>�?yݿԄ��g0���`�\���k�С�ի.\���3g����Ɍ�}��;x�P��-_"}�(B�O���2ڂ�w܁�;��q����'P����Y�&=��~@��'����3����LK�{<c�3y�rСF|������.��$��
En��|~�8��[�\rI����?9�|���
9hKn�+!��!R/��&���M{�G�
2�t������Ω:��|ii)�p}��a�߿����A*��U��E!g͚��S�bҤI�v���lUU�3O<��VI�N���]n�"W�}�^<^Qu�V:z�I\��Si�l	�8�L#�e��M�섇N�>͡!��ۗC������,�����-[�.��c}37$F��\!�|����>P�-r}%[D�oS�$DI�Rr����iY-���6��<R��d^v�7z����+g�,����^�E��v�
��6���[���[E������O9�W�9+�����̙3n
5ʑ��i>&C�Iڤ�<I���^�r�C<��	997�:�c�;�K%���#�CP�y�vș���R�����2�s�C��sz���:B<��+@��f��۝�Wl�y�7�KIEND�B`�images/header/icon-48-help_header.png000064400000005562151163244110013374
0ustar00�PNG


IHDR00W��9IDATx��|I��_H�d��x���2��,33)G�}t�������X�23ô���j�o<ى-�U~��i�߫j��F�����hB��B�Y@�M@kʺ����,b��1��hr5����@���.p]��!��Z�PZ�RJ�*�Z��Nۮ]�6�����!�C"0��g�#Z�wg���7,��B*3�����wF(o3��Aw��fm3W�!�
��54��3}���������QE�Z�Z#�'����	�Y���"C���F���g�K������E�=���������v�t7�o��~�����ę|#�\Cmb�E0�4�/�@~���dh��/��b��D�
X�E���/�DV�ǎ
�`��rl�M3pL��l��n��eM�c���K&���`*��#>61�فx���u�z�
4O�l盇b`��xSu�<αKe֭�j����}��u��c���!�`����b�1�l��
\�i�	@(�|�����Ëm��c��ט/����^�`�9�N!�IJ���A
x{&����2����>����kh
pV
�/W(k�x��ڎ��l���z(�[��X6V�[�8��F�����ݵL��ל;?���ᅡԈ���p��`{[?�U�qv�����
ٯ%��j���*~�h>:���ք�]3�ì{������*z�
N��Lr.�5:\׃���b�5��%d+!�D��
�Fg)@{O�ëO�T*�,�+'�(��S*��է��]�*"�dgm����`�U��Ժ�/k$��^NT��"�[�@*t�tݕ����R�vυ��SG����*aT��4�F��4���44�Lk6fV��пYz6���\o8�/����b���g�{���f_7�{�MD$:4�;ʴ$��H��ڝ���k�����H���Ҧ��h""_C���
#Ѱ�v��[�2n1PW��5���R����<����m�����]�2�f���nS��$�V���4�1���O��p1������k�Cv���'OEn���!������]+���ha�c����k�>~����;�!,u��=/�<U���9�P��U��2����8�h��!3�Θ�".�6]�qQ
�V.�E��؜|3���Z�
I|�kOBξ�y/�׼��]w~%��U�[L��12���%&���&�q��
8f���
�Bg�p�7��?��	�����ʄ=�:a�A7"�����7�>��	a4�"�k���O
��TΨ	3�?wF;������L��AJ�$���ψ��-��N�hhMp�4f?�ymL��_X��d�����^��:}'��	��Oİ�Ţ��ٔh��0/vӹf�!�x�'V�V#�9g��3@�+�m���'�?ry�N[��P���S�+�y"(����h�F[�/^Bs�R�?H��o=��G�9�����
��H9����Ů�Υ�Fpߙ���շ�2�d/�e���E�
����[�E�I۠t���~�9�CC�C�s�R��	�q��1F�qd���/�ͳ5ʏ]n�~&C�x�؇�9RI��+�_�F���v�F輠��+�C�:�䳞���ل}�5�J����>
Ss����Vz�R��	:/�_T^�V��|�y��c|߿_v���g߆�]=^`�X��Eke:Иˠ��<�L����P�Q��+d�bS��"�f\������P����~�?Q�l���%o��a��E>{�3��.¡�:\=e��*�`�g����0qϣf�<���?>|��x��
_���D!�Y�fi��-��Z���[���7�����H�DQEdp{
L[�n��=ʚ7#�z��O�e?Zl��[\��d��Զ�I�O����\
L�&���K���ؔ�F��L1ǒ~Ki1�+�U��U+��Z�A
$f�.��ƍ�57E�Ј��B��Ikn���9���E4�|`K;�!�8����֦��@��H���Y�~��Q���}`�����)|�{0#�!�i��Pz�b���]KÊOJ�Q�
^\\�zO%��󺋂
Q����Nb'��΁F�*����S.�<n"�L忳�ɤ���w�j��w��N
Zi��Z6GX/����Xۊ�V�V9?¼��p],22+m�`�3��H��6i5���vb:g�+e�0ىD�8[�[P/��Z�{��>%��VJf	��Ҏ��]v�av��\J,���	C>W�N��&2��kB.T��I<�Ǜ��1}��?K�����Zi�
��vi#�i�S1�+��y�V�n��+�e�q�ڊ�i��:���!Ҙ���(
Q-�0�JE�d��S���Dv��s��Z)#�d��])��5pw�i4��HŢ�LF���^-��x(k��9���U6�@�����i�Nc��M=qʓ8!�q:t_bE��76�?=��F�?q1�;�3b6(���Ҟ*Ko<���L�C��~7�+�A�ܔ�>�H�gKK�e�̕1r��_�
02;m:�<!~��8����}�W{�d0'˶N�.uBj��q�Ƴ0�����XD"����O�`��߾Uv���xYyd��w���X|$ͺ������o�e̋��_�J���aRFR]JO��c��?r�ȕ3�?��
؄
��J�/�C���}��?O/~�����4��P/�&��V[l�`���3�eP!�}F�	�t�t�Iu���_��.���6{H�GJx���\��uƮ������)�IEND�B`�images/header/icon-48-inbox.png000064400000004724151163244110012252
0ustar00�PNG


IHDR00W��	�IDATx��yPU��/�&��ĸDQkM՘�����AڴV��m5���WM(\��
.,��
����>@|(�"�q�����ܞ�΋��0��xg>s�;��s�����{Ozy=�u�ʕ���`���/dDFEE!##UUUhllDaa!71裝��Hb�薖ASSbbb��A�w�����Vd��
0Y�0u%7����˗/�h߸qEEE\\{{;���8�C�0�;��I���)�K@���׮]C``����LTWWs�>�g�o�0�'�}h�a�	5�5
<����)�ּ�h+EwttH<���
쏭��fZ�;��FPb�ݻ�۷o��46�я��Z���)#N�ByN�"����"U���'


�Rc�g�=
YYY�F�Ν��$J���P�gJ#:&+**PVV���b���sӮGð�X(�<F�'(ׯ_�����L|DDD@dd$��Ҡ�hP[[˹�>E�������JKK�Ђ�^*�
III�����$�LЩ�߯��#�"��3
i6��BQTD�r�%������\G�B)��q�H3�70����/�Azz:RRR@���
m?	MMMENN���ܬ(f��H�.'s�8
=�
�3�d���k��x1�>}z�ŋ���@�)x�JJJ(u(�)�$H�S�@z(��{,s}sQЄ-��X�7���r���S]H1�x�~�V��+����tz(���ڎ>t������I5�w6;;{@�و�@0E������N=F�MS7����J�KK�5*�΁H#�Pa@��
�J�]]]z(���`�O.|R�a��[��Q�Tkd���S��ؔaΰd8���ҹNi���a����z(��������p\)��SM��L����GmHHH:�`B��#܌a���x������J�:���@��B��G��`�z;AsP`�P����]�����S�
���o3VdĐx>g�4-p��6q�䛽^���.E��f{��jd%���=�
����0!БK�1yq�(=�;��
�	(���(9�>|V��g�`�=˄)�Q�&��c��#C�~z,t!�m����e�2�?���e�]÷���=�&�(r1յ������46�Fn)!��~�Xiܝ�r��M����G�g�;����$����AJ^*-a:m�/��
6JgIxo�,<Q��Lt�&�v���2y�n�
FzV�Ccp8�*����s).�>x�ӗ�}�*T�yt��9���gOM�2�}3��6Hg�d��1E�:ɍ\y�xH+�٢O�����<8��~'h�V�y��j�Po��cP|�9G\P|�(�'�y��ε���:0	����nw䛨�*��tW��6�fw�<���~��E�L݅	Н�_��q3��u�;�|�P�\2-�0���Zg�����Y��Fh�G�j)B�A�f�!a�b>��$�٣/q�`C�^j��ŒVԁ0�܊����6���%�"�Ձ0p�o&h=��i���詃
����K)tr
u����O����4~;�;��k$ZϼA��}��Y9N�'�v�MR�cݩQ(�$�>e
��;�qJ����pg��7ء�s'4��Ė���@��}�ۇ��m���Zk��=���ó��;گ_E�J+Ck
}��� y�T@5 !f�9'i�5_o��-�G��Q|L�
Kt�Fm�w�������*7Tz���g���B_����P����\�9Y��q����ق{����	1�T��j��#�E��k$����h�x�Omz��u7�КB_�*�(�?]���{fd�Q��F�.;4��%f�987�XR[�U�u��/7G���x�OmzN�Z|��v�1��k�v�d�
��7j7K�n�E�a[J}�6�6��{���h'�4�v�=�+����[!o�M���8j�o��&��f�
j��J=��p������V�}7W��\t��+vڰ�7�]'�]9O�Q�g�)�E-2��JV�bN�r�vi98�_ۢˇ킗
���|(�ј�{�>S��?kM�/j�1�JU�]�ݥ�;���n��]�t�6��S�X!�.x�y���堧��떹�,���d�0�p��1�y3_�
ZZ�C�N
a�G1�%�O����$O����u�:����ɠ���	:��Ѱ�	K�L��#&��
���2~ei*->�@���!���E��)�"u��J�[�J~L�B��0����[3���1V3\e�2��e<e>�'�q2��y��h�\e
��1f2�0�El$�`�0�0�1&2�0����fP�f̥]c��1����*�>�����g�|�oQtLW���Y���ˍ�xq3LdsfdPvmMF�ڱe�=��xyNK}x������6�r���<�/�
��{y��~�oR(�4K�*lIEND�B`�images/header/icon-48-info.png000064400000004241151163244110012060
0ustar00�PNG


IHDR00W��hIDATx�p#����I�A�c���a�6��
B��fN1���|�=���|�[�5�f��E`W�䑥Q����=����/�(�\�c(/�(�'�i������"#�~p��Jx/�	��PJ����X+M!K��$��
\���X[@����i<�p��nC�H
�Bh@����&D>ߏ��[I�ȗ@�O����Ii�0"DV��L]�5�VA��x8Y����Q*�b#���e��\���0�C����T�%ゲ�h�!h-���Uwq��#`"p\.xl�M��GIy��A)�@5$4�>�3��|3]�u�r��`��U�Jd������W7���/"�Ͱ�L������d�E+�8
���(Y0
F�
���.{�[��)��cٴ�2B�ILj��'y�]�4J;
�߸�8��Q�u5���˒	[�u;�K��2?U_8?�r�ˆRhV�D���'�*:�fz�p}��8)�aBa�f>�[&:�"���I)��4a-l�c��"����S��1W7��򍡱Zc+.|��Dmld^��
=!����������е�4q�Z�v�V!�d}��bm�����V�!#���;�x�Kڛ�y?#��d6���B�֚��|v��(�5,T#�0̺om�㇐?b
�[��wR�n>�V�fQ
X�B!΄�{����z�s&�"#��U��
��!�/
J��1�jJF��I`CL��&<�RhH�5T�<�2��j�ץ]i�,
JPV!V&r�cե}�E
�� 2`%�n�`v7������8
�C.;@q�>>��).�Z��A;�J5<W4�3\�2�|�}��(�9g�"K�Ur�[��kN`♧Љ
�5�sÐ"	���&��8{�)d%/�B]=�����6N�cX�7�t���T�D(�U[�)$�o�����`����5Y&���vriL�lm���4�w'��56�A�ì��!�0!y�h������Ol
���(�z8D7/{�Z�	P�%�G���Kb���2F�i^�7�����1�)����~�C���vz:˾�&Ƅ�y&�s:�\x�}�Q
BrT�,XݼLL����#�q�_��1}����ym��ִ&Q����3����ǷP�z0�_|�0V������X�O�hQH��1��3V��!3H_��("�Z�uo��fe8KiA"�
>��5~p||��An-؈~P�a�޼�@��bn
�o
C��g�~A�v&;�
Hr�RXLJJ��b΀�����+�D�LDW���t@���h��'
�"�>�Z$��1V
�W�Jy"��R��ҕ�<���g��0rt_�q�B|���
1�N�M��ܔMy�0�a��.���i�+����5��\ˀr
�ק
Hg�(U�`ÛV�J�D��-���5,�5$�H�La�d��g�v
�c�a��c�߉5t#30@�F*��|g�������Ki����(�����7#�ݘ~b�>��H�|��5���kV��T�ɫX���yI�P�ߏ�1q��Ǐް��^����?��x53��Kщ��
�03{����[Qf}�4;5��Q.iLeD`�T���x�
������{6�v�ѱ
��b`h73T/~R+Qj=]P|�b�b��Rr}638�f�P�"j3HX��@B������r�O�ׯKk��3�dG�(J3��a���w?�#zB�؍i�ϧG�j�
�F�beI���,�zֵv	�
��]���A'�y�#�#6�����2�9�t�&��0�b�E�����vю��g���R
��T�6b	}���o�1���[�Ӄ��8>K+��7��T֨��T@�M�����_�o$*
�^�Ԅ��N]�qAipR415�Z�	�je ��B�I�����/~@+����e(�b<�(5^י�!r��(���O����Lv�z����.�[�t�I/]��kgy�
��@�(��j��!
x���xu]W��ę�e`�[x@Rm;����b��:�����Ҁ�K&��&YR�}�@��v�k�le���T���߶=G�5u����}��.P	�߾����y�¿��P5!9�IEND�B`�images/header/icon-48-install.png000064400000002676151163244110012605
0ustar00�PNG


IHDR00W���IDATxՙ�-Y��s���ڶ흵m��m۶�Ƴ��Cw�6/NnO��Fŭ��{jb{��52�������H��oR��YtE�w�Pl�����ӷ/�Z7�"`fb̕zm�V���
�4�x���>�vbqن-KI�ӝ���p_���/�Á
�������s_S��a�r���s�N��d�=��D(���O�����Y�۟������Z�����m�(�ӅY>rl[N��m���޷�r��iŚQ1�j�Z�.��5Hm��B�ŘzA�l0�
��cÍ��]ԟw��_�j>VGM���i����!��=Gub����%Ҥ�W`m�%��7�=�(��r������O;�/���$cDS�s}p�
�cӄkW���y�=`!�M������qѾZ[�I�t�W�_��Ey>�>b�LS�L�����c�4L�j=�qb���=b���V�i�S�(��N�a��d�=t<?
!������;o�{z��Գ�@�V)��f�8ۇ�/����[��e��@�wy�?�F�(DZ��`7B7_^
�_g|�F���.��{�����7Dud'_�	��B:�~�I���\,���ܓ'�z3��\�2z��
P~�@�Nb�Z_
I�q�R����S��^@jUD�q^;۟��y���Aw'�����$,8�cob[z/�":Ĉ@
`a�[�*�P�.��*��פ�̙�(z�4~��]��m7o|�ø�-o@DZ3�h��AL&
H�
���������D�
�F7rq�1��à4��yɠ�e�u�J��\�+�'?��N��\�3�(��0�!�רк�;��v��ݹS�C{*��u.Ͻn��Fڏ��0b�R���<�O}b�8~��8�E9����r��Ȭר��G���\7j�ʢE)��W�Hϼ��k0bP�)`u/$(7���6g�;��'�nYuI_�u�1B�{l]���!�+#���A������BH��V��-p��l�j���Wh2_���vlZ^�"�_�T���h_m;��[	2U`��x�Ir�m�8�}��g7���Ni���@�
��8G��.�}��4265�+?�
�.�s%t��d�ȴ���_��߼��4�}�'N�%��W�duCvm'�h;r���f|�?���SZ�9p��ޓ6�$�{�惿�+��o��x�w~�#�+
A�Q���J�1��V@i�N���������Pb�l��zQ+E�h���7H�@.�
�ݸZ�Z���J�J�y�R�l��d�R�(�p<����
Х����g��Q��ڹg�:Y"b�f�h���jm�$?t�
~<���S�H����H��î.>�@#[��KY<�
�O���0�z���ԣIEND�B`�images/header/icon-48-jupdate-updatefound.png000064400000003121151163244110015071
0ustar00�PNG


IHDR00W��IDATx�Օ�OSgƛ,٭�O�b56��6�3F�\l[2=3qN��3����~���lN�dTT7�s�	+XȔ:
�P��KtP��g߾[����%�|r�����9��T6�d/�&&,"z���KL<&ӵЋD�E��M
<D�9a�X�(�!��R�9��#J���H�"�e��1�w����=�c�N�ϰT��\)p�jػb���%�[OKUޑi�q
MB*��qWz!�vZ�ֆsƑ���?>�x��j��@�`ߴV��)��qr�"Ћ�	�f9�"?x��A<m\�8r�ÐJ*΢�����9��Z���.u����1��布��j>I}��8��
":5�Tb�;�T#�
��q;
��Ƴ�G��F&�ҍ��5�m#e������.w����߇i�����C␊:{���!a�׆�Ӿ�l��?6���>�t�
[��(iW;{�(���C��W췔���}Q�pg[��
�uGWD�|�	�D��s��
���(֟}l��9�Q~b��g�ٜ���BS0Ї��z8���5��bl�($��ra�c�'�zȵ~P����������֟:`�'p�F`E
H�5=OΑ�#C��1��	��#HM	W`��[8�hҔp�#�|�]8�S�0����ؤXbr��&�\Ne�=�G���=8�o�0��-
	��E��9��3�Fa�����.��7���ZҬ�s7'�%����q�G�����0Ї��=�ݏ��Ix�bP��*a��?}8���Ё}�|rk;!��J��"��}C�96υ�e�'`�=DI�I']�c��;�s���	|��E:Q�\O��$\�iZ�3��oB}8��
ha9W�R�_�/���xC��)mT�y���	�-���	|yj8�A+��	��;YA����鹟�wz؜޹��n�^���r��{z�J���%�!�u��(�d�@�q=��D�'�Y)x��Jl�vv�������	|Z��g��c��rg��O��f�nG�-ؾ��}�m��=�U��;�8z<R�5D���e����M���H��WA.�`^b1
/غزؼY	ݏ��-�M����C����b9s��K�`�<l�dg�QX��80w����e0�#EP�V�
.���ձ�T��������X���J���e���׮�V`͚4��v	Z�/�\z���\r����t%&�g�W+���\���������X�;df/��d�n$Þ��re�d��b��Bb{}/�b�|��]���F����b���`�
M-]:�Df�k�˖����3���"k�QĩИ�<����0SU%\��W�\�B`!X���@�lVٹ�'�6lP��32��p�L&y�XE��\�z���JuQ�$�T<�~�I�%$Hؗ�ne����t�+#��b�����lt��h��d�Z�|�^�{f�=1dž��͒�$�I�����pS�:*�k;��
<��O
,:j�f���A-T�`2���j6[��Ϝ
�hn�IEND�B`�images/header/icon-48-jupdate-uptodate.png000064400000003160151163244110014403
0ustar00�PNG


IHDR00W��7IDATx�Օ{LSW�{��?����%�e�ɒ,5Y�ײ�FuDݘ�Y�ɖl&�6�P��|N�l��@
0���D�p��@�g�����CZۓ��������s~��OoQ���?�w�*�8s�B�u&���3�PJ�g��RA����g�A‹��}<C|.���3�p��hU�F\�Ħ�n�`.��D���=�a���ۿ'\�\԰���#"��c)wC�����9N
�J���Њ��C��sQ7\c��7�6�	�݅�֊웤�fL\�z��(�r9.�X�><i$�q�
��BϢ��}�׃�Ћ��B?N�l;x�{1ð'S���W�'�/�B?N
���M>B$o
"�خy��qY-PB��L#��id�T�q��P���5R��W�Pysn�Z/N
�ZD9���?���B��WG��J�:�8���q�N!�Rt:q�
�C)Q�ZB���>�E��v�;l���
\�e�'p�z($l�qǫU>��D��s��N�A�X�ick��A����~��fs��N���$���j������7x��w��Q�fe���1Ї8qz�*]
Q�����2@�ثJ�/h���p��aVԀ��RG���oHB���.�@�5�|�FSB��MjW�u4�kJ8]^v��.����0�X�	�Ȅ���CX���bʚ���?�ك'�	��Mn�?E]"�6l�V�X#P����p�*����&B���%l��t���}PKTz5��������>hx	�j�]P	;O)��>��	$W@���l��X�����U/��O��<v��>����PHp�|T"<b���vO�ڹzp��J1���k&!uj�K��vfԉ�P��>�@R)�����R�;l_���Ȟa�ֆ��
W㰕�C�'�y�������!^m�5�&���tN�\˩*�^���(a��@$��뇗�9�L�'��<f{)"�to���$��2�q��cͼ�H"V5�s��۞�9<���p�˘I�-�t�?���4�K8^��^��N��<�5�u</�w4\`g>x�IE��6���Q����k9Q[q
��M��R������Un���y��ق��<(!VކV,�辈��|͎�X{F��5�@�A$����!^j�dbr���1�+���&�VD�)����4�Jؘ��Df�_B��$��Q�%�V3���U��SǒR���^���*[䐴>p�a2%��l����:&����lqF����M���:x?��3��e�0�,ܳ+��2Y@|~4hL��C�"d_H�m��͘L	�y�&o�Z�v˓lH]@�%i�Ȉ=4��	��
ؚ�&a�����x,�/`��i6�-�Hy��5�ӵ0�%1�������,�+����}�"�}.ܼ+a����k�Ov�N�iKz�����
�N\XN�-I0@")��][i�Y#:^0/�&�m�Y����	��V�N���I0/�U�?I�-Ӆ�����5$�kV��;���`��"ȋ��7�`2��q�5t�|wЂ��{9IEND�B`�images/header/icon-48-language.png000064400000005614151163244110012715
0ustar00�PNG


IHDR00W��SIDATx��TTW�W��FQcI�&FטD�1��$�]��&�˚h�]cAMb��h�`oAziCW
C�>0�03������<8�ț�d�'������7o��w�
��
,U��);�j���U��(�["R5&R�-+#���S�O�xn�]1�_g�?1�(�̔�=N}�U
��EȐ����o}L���73�0�t��-Յ��6Qj�&�����R��i_B�7�_5�
Pa�2L�t�����X�ĖX�������,
R��ZYB\U�=���w��h�bn�.+Õu4g����)�.��E0����#��M�H/�G��'V`Ux)vǫp�Q��*�]���z�����W�OY�gBFU7)��̻Q<�&LA-,'k#K�U�ҚFJPaU���Z4CX��,��R�v|\�õ7�(��bV��~�B�C)�#k�K��U�oc�v�OJ��]�C��7t�و��J9Z�m�)-�m��B�%���Mt	�%��ڿt�ᒦƖ�쾣��(9׷8@��	J�(�x�*�MX%*fsu��+�|>��r_���e�S��y������	�"QV1��jj���ROT�P�{cK���g|&CNy:�c>�as���'��/�ܶ�f{�X�W��㕇/A�XT�]��C���A�7%�.�����J-���2�(�}Bs5���gc��W>RTȯ���2�����H�
�r�1��w�"v��P�����>qO��
H�t7ja��`	�
�p�_�,�c��b�5r
��[��~��P$����2�3.�*ܗUs�+���-��lË�پ20�5k��{v��>��/���6����
Mh�@l1f�ea�@�hf�e��q�N1�B�՘���C�;��l]kՃC�e5
�sK�]12�V"�a����Dq�^S�g[yfOcehd��w���Y�=ED�3\���Vl�;F�9�Y���5�љ˾#R5��bX�&b�m7gkd�'E#A���X�fjf�d�S\����rA�i�\�e-��)�t�
1Y6>�zמ㖉�c��!�]S�hQt���Oܟ��XAwH�B��o}���L���Y��g�E�z쎒p�'9�Y���Ȣ���$��NwJ�l�t�)D	�iQ#�2�,n�~Y����ī)`P��ЧU-���w�<,������SV�Ȃ����K`�
���2��h��r-$t�oѡ����s<
�rJ}8�r*����a���:��S|Hk7��`KX.�#�R��ȫ�����c9�K+[�&�gb_t|Ҕ�~�	y�K
|t�q�����y0D
*v�;�s1�Z2[ks�SD'�XV�s��\��4h��#V`�S
�$�^�3�1�jR��������|�F��zI�m�VQ6��h��K��_�i�?�1	?�.@����N%=F��h1�)�6p6��/g�»Ħ�L�+�Й�����]��ȧ��T`c`&>�t�ݸOj	�j�Ǭ_�;���o����
�B[%�4pM*F�Z���O؜.��W�}Y1�56�%I���g���[ᝊ���b�l����O�6�u2�~%�b9������#��6

�t���Ļ�qH/�D[�/��,%IՐWj��#k�Ũ�o�̫�l���7��BgL8�L���ѹ����l΀>����8\�'���S.&�����c��x�>��3�,��W2���%Чzz�V�$���>�r
�q>�O��
���	���o���+w�/,���5��E��j�b�V�0�BWwʅ�lA#�
`ִy�)�8���b�.��d�=�.Bp�2�H���UZ}�TT⃟b�u�/ܹ(h`�����F����~$�TM8eU���׾J�e���E�S�8��������fL;˭sD4U��^=��}���Igc�Q���1�>
���A��F�Π'h����2�=*��
����^�`L�"`([��,�����q!\`���z�X^��2zې�i��n��S��(
�`���O���R�!�I��4�X]�՛g���b�;�W�4МQ�����t�N�#ac"!_�ΔD�ӄ"�yf��jg@][O�osc��c��o��m^���˧�"��|:�]�����1�L�U��1BR��Q���)���
��p�v�:���o��R����(�{ǂaH�i��Q���
#���ލö{-�!�΀ŷn&�a����d��x=1����q�x�X���!J�b�>?�o�n{��M��
�����o������3�h�Kb�m�`�3t�;f��؃��wx�(`��RF�W_��ɳ�&g��5L�%�כ�u2��gݕ��~h��'ыa���0�G�m��,&����{t'��n�g�}�|��2����_�g�	A��g	�	S��h�3�3�ot*��-��p
�"S��.���������2[y��^oL��z�YM��q[#�:lބOԇx��OX�^?����	�
�Z�u`���_��a�{<��}m��Y��do<w㻔��j�5��FLښ4�O4��e�ă��!=����ьU�W��3_���d�Ut7X4�~�f_�:f4m�,�K�k�k��M�F]0������|��İ_�sܔ�{Y�\`��ɓ�k.%����6^s��#��b���4��^�/�9vҘ_|����jB׀a�k@�b�͙	>��t`��h����!�
���cԏ�ݛ0�{x�����s`ƒ�f��I�kC�_B�\}��|M�gm^Ȁ�k���v��[��1�1fuu_������7�g�M�:��)ʣ��r"IEND�B`�images/header/icon-48-levels-add.png000064400000001505151163244110013145
0ustar00�PNG


IHDR00W��IDATx���%]�߶m۶mE��ڶm�ضm���m�٪�߾��~}{�|�tU�M�D��������������\����i��+��@å��#o����i?�"%�[��C/R��::����Љ�͉�N��kj�6�I	p�8�t0]Jv�g����w��U~
�4�#6��6:
���
�.��
����@�<���@`�:��o�(������?��sLC��?
0��|@`0
\��`8�����?S�U4][�-W�@�
�2W�M�@��:	���t�:}�N�d
�X�Wk�֓�z,W~澰;��p��W�@�d��á�нs6z���s�=�Wr�g��oy�,��%�:�ڢ{�lt�LAGȗ������}��n�A
�W�B
���BtD���x[�{��е{#pU{<�=������`�L�Ο�#�{����V��v��j����qj�w��l-ʓhu}-N�_޶���,��=���g���.�5���܎��8��i���3L�[�����д�)t�-a�.J�j���p�)�cb
��O�a�fړWq������#�i�,;�Ϻ�L[�<�*�x_<CQ�1�φ@��)��v���9��-fW�>�Ѿ�5�i��B
�c$�}�c/>%�Ӟ�ޅ��4���4j�ψ��v��b?S_ܭ#�Ż������އ'�苎�.��Ap..IEND�B`�images/header/icon-48-levels.png000064400000000774151163244110012426
0ustar00�PNG


IHDR00W���IDATx��3�_A��ضm۶���Ƕm۶m�l;�W�ib_�^O�{�9'[sV��+��i�����A�W�[Z@��q�&#%��ш�DH	�?f��b��DN@�
O`95V܁Y�TXxf�Pb���DH	(8�X?�	�H	�{`7�@��o��#v���"���5��蚏|4G�~�\�ԏA���?�J�~E��p�EA����7�GPNs��:��i8Q�A9�G˵#(�9�P�v�4�+X����@؝{7A�9�vf�G�	
�6fJlϘ��
HAs��F��t>�C�-j�e���H,�5�.�ߙ�r$6A���8��`3c�t:A���_Z�z��x���׀:k���TYz6�5��K�	6��K@��}�i�%T`����X��-�k�9$%h��(_�ͱ�1�λ������H�J�IEND�B`�images/header/icon-48-links-cat.png000064400000004123151163244110013011
0ustar00�PNG


IHDR00W��IDATxՙpIF_�̘A�x�̜,����L���̷����s�c�$G�t�K3O�֔(vݫ�k��}��G0V<Ѷ��;�6F�f���B��
����n}'P=����Kq�L��R\�!A
@
J���_*���m�2���'o�p���$��
��s��!��>�G����vy	��r�����ICʆ�
N
L��@���O��&�?�O�t;p	�d�x��+�P��R�e��
�Y�d���'Qx��Uz��]5� ���
B>iC4��D;O�����Ǔ��h�Bp�{��'��`���[?"gHk&��`���<�>�x/��/�K�'lnl�2ߤ����Tͭ��PRA_�U��\i���{�N
!��>����۶ˇz�\��[<��8�<r̟�9�&p뛽PP
��?���Os�r)E�'8t;��?������_z��)���JD9�<ʯO����M��Pz�,�8*W�3HP��p{?������i��>�:��$h�qXT�����	z��^���(���BZ'lF0_%1�$bۜ�`�L�����6�����	�v]������S�K�����Jg��z��[�}�	ٚ�`�mMۘ�'��P��.M��4�u��Q(xh=�3q�\��J�5����t�}�Qi7@"B"a���̝>5#����ዧs���������Ҕ?���6���4;��o	��iQ�c]9�a��ID#a�}���L�.��O~�…X����k�䪗�i2w���&(
B�ƭ�=����˧�ej��'/܇�3�b�6�x���
JKK2�l�º����Z4�խ	�kvHNp_�d�'��tW!�@
w	���2�S���t�*&��
����D4%P^��_��C~�1�]R�3a�F1��U����{�!g@/�9�����=����~Wn�'"}��t�+���O0���K�s{�,_�{�V(�pGB���_�4xx�N���uN=�d5���v['�o'�gR�+ɿ����Td���X�l)�T
�+�~|���2!�
�n=h�C߻�|M��~�lHǨ��9t�c�Fc|��x�ۄ�R~������p��J����3�ʦA%i�Y(�
�P�N஭+A(pl�U��om��)ɰ�gW�9��'�
��0�I�J��`��T��2����-��,ld�u���/W7@�⨉&�>�à�'�?64�Ub
�
�[<1���H��ħ�}�4(*�3Zē�7r�~˹��Y0��5-[����
�?��:J�P��sQ�aЩ/�C�����U��﷮�]GB�fJ��;�:���&d��b[g7�?�.
CA	Xy

�/�X����|�,����RwO��T���z��`�e(���=ă5A��R�/�X^H(��
�S
rć���GϺ�@��[�ʦ��!!
Ak����FV��C��[�����X1�m?�u�ِ_�V2�`��?��nÏ�sU
�O�E`!h�QC����8��[n�x7��w��B����YXF���ͨ"�S�-m��K����gx��N��q
��Y6��s\�|�����o�3f�7�US/�~��k�1�����V��C
���b}��AX�b��~(��l��j��~>ع��0�~yd�����1�-����l0�"h݁`7F���#��G�����=�Ks3n��r�hg-��|.��
F
-_��W!q�0��j^�Ɋ������_�x�?~b��ѝT�n����g	�w�:��7���m�*�DggS�i@�7�/Xq���e��"9�o%�W>6W��i{=�4݀���J�o�	^I@xK��h_9��v�]^ż}�+�a���yYe��VV�%M�xHyK�U�w��R�㫴�ԃY%=Q���+8鯬{�9��
81�*䎢�Gd���&{S^)<�!;���fIEND�B`�images/header/icon-48-links.png000064400000005041151163244110012244
0ustar00�PNG


IHDR00W��	�IDATx�p#�օ�����Iӆ��33��������a�r8Y6�,k43}�j�֪)K���V�]���=��X�/ſ]pgW��	l�R[QN"�b1����
��E�����l�K��¯1U:�.�l��q�w6��Q�H��"(E}�צ���1��u
uI�LP�$b����
Z('�!@���4
g{�g���$_2(���A��|M�2&��1E�,�`�^�Pmn\EU��
ԝت��
"�������^�D��H@<�
�rs��
ܰ��B��c[���������[J�������H���z�L�e-/���:AK�/��8.���{����s�8n�,6�x#|���>
���0'>��kzF�O�b�mAdak�,�5�SQ™(�`��
~��_'�8�g_���y�ֈH0Z�E<�����$L["	Pև.l���W�*QO��
4��,��[{9��f�<�y���x����}b3Z��'��֗x.���6
{"�+e�Hle൦N�2?�_��"��K�=}����S@)�{�in��m�OL��SSxn�4%!�~���)��h7h^<�F���3��y%�	�S
B�h��[�%?nGDh��w
.�D�ځ�������1n!��!_����{����i^�l�H��Gs�7���
/��2Le
�&$-m�l�F�S�O�aS��Y�ib��}�c�2�S<Ϙ�
�c�
Z�-�`�D,��F�Ca���1�Z4
�ًX6�ﰺ��&[��>��C�Z8DW���8�����V�/����1ژfW���{ǚ�%b�(���mGsS��"�Ϸvr��!�Kd9��ېI%��9�׼���4P�J�I�m5�Qic���������[q�����\�v�"�n!��y�%�����SʰU]�"[��n@L���(
�"h���av���L�6-�������}�i|�YAG&�~�놦A*
V,|f�@�	(���u�͛�w'�
��s~W~�����ڗC6��?8�Ŋ6>JL�;�K;@%x�������0�cS��F�PJ����[��cg�0	~��w
����q�c��uh*�+�d��f�[
�(�ʌ��/��K�r柾��̔`=�ò�HG��Z?�E2�}3�g�sE���hMaro����-��j��e^\�����9��?e1�͢���7�B�0�SK����IZ��bF���֙�C$>96!�V�2c��l��s��|-x����0�?���e�Y�/xg�dg�ԩД�*PX�9±	+|NVe]`v"	�r*�p���{t!s��=.�ɮ�2����.�;v<00I@%�0[
�xZmZ�'�'�N�ۏЂ����W�?�=���?^v�j���P�L\Ә�6l��7_�K�������fDcQ��r%xk#h��lV��eL���������y���Xԭh�h=�L<B�σD\|����O����{�a�L��$D���yFz��H�N�11e��x

�D!WT��Q�Z��w�[��|�DH;P�u�?��`+PJ;NW�&N����c�@JDQ���,/c��$�w6�?���`����ZPJ`[�c�)�
�g�.:��?ܓdҜ۸��/�g�IH���l�2<ʨ�v�9�ĢP�`)�\���oD�P��������
l�q���.:�k.}����5	
>u)�L`�R��ң��;���vZ3&���_̗w�>�§>���y*�/%����g?A45�6N�z�KVxВ۞�b͊��FG@q4�8�N*J�gbE�I"Ý���Y)~��/���y��w8�\��'0k2
��r�2�����A�PY{���q�V$g�h�}}-]���/�B1�!��k;9�c��
��
Kꉎ1ܔ����_Y�Cn�C%~�׉&ڈ%!���L/�Ì�(􍎱hFb�o���խy�"�t�r�P�-G���_KUio+�;��m$��9����R��D"`GM,U;|�icb�<g9�o�x%5I��'Q�V4�0���!�S(1�FpeA�	�Y^r���`�q{��K�K�p&�O�I�g��t�˛�^P!YS�D��tp|
Y�p�w>uK�v�#QV;�f����Q��8���@t�1�{
K�vD��6��dbaELg�x�\J��;޸9��P���o�3�Yg�kR�C�f�A,���٠�I��A�gx�x�A@��ڤj|�
ā(��ǀ5cP6�*�d����r1�aF�R����2�L
4�*S���J�	���@��ŀ������|�P��[
x�
8	4�bS���hS��ap1�#��4a�ח
Em��h�2�ʘ�|8�>
e�����ח�S�/U��Ёꪴ�X��Ҥ@ؘ���Ч�IEND�B`�images/header/icon-48-massmail.png000064400000005014151163244110012732
0ustar00�PNG


IHDR00W��	�IDATx�YpK���x�����|W��f'f3s"333�$3�S}�w������cܪ�-i���~3c��x��:���R
0(&`r��k���ݻwQRR���v444��ի��K2ڗ/_Fff&a�X`��$����s��%
�\�C����{�PZZ���Ntww��
�����ŋ����.`2�C��vVV���A�===
(�ȪjŞ���~�RDrr2N�>�F�d���A�vYY�"����h��PR~y�o؜��m0�]����H555L�VQ�n�T'��nii�������_6��E8�Ԍ����`3RJ�@]]]�q�N�:�I��㯂�)�ѶZ�$���~���_�(�B3q�������
�Jv\.���b�ٳg�������
�V��v�Ad�U�*�g�Y��*BE�r��ܮ�O#�dm�����6�hWUU1J2-��$�Q�lŻv�m�*-#�Pl�G����"����C��a����ͥ��bT�������nN�ʰ�^3~��
���sw�PPP���|TTT��Ŭ�6�$B'a�著䆆�t�{�5'��}��p�.��pu6���t�+W����(�K'a�srr�%9��N�ݒ<�K~xx-���III
A�y���H�,���:p)�65~�|����@�-L>@
P�����~���s�H���(�������%��65U���P���f	�T���Qa���8xSS
���6��[�@�Q]]-�H��%
��YԌ;�͸W܄���~�g��9rd��IP��y���ie!edd�l6�(���{�(E�����+E��yь���x�o]�=[�x�X>d�ʼn'��҈"ZH�Q�D��zN?E���ԚP[�*��������m��.	;��T�!.R�.]��cǎ}J�����+�U7o���jA��~�p(�jqf�ME�hh٢��	\/��dM�����ʞpT�{����	�|o�U�]À�Uu%�b(�#g6
�J4���H���5�4�]����J��3+�X�`e���J�z��o��Ω
��{�z�W��"b��v�l!�^u>&:2W�r\�D�I�%�3��;w��F�#�[N�=�s�
�Cx\�es?	�g"�T�B<_0��a��x�_;��wl6�#!fi�҉��d-�w�3g��p��#�t�Gy��3ۯ��{x\�<m�!~�l��FFF$����3>�'ߋ���brE
�N��|vv6��2[YN��op�>�<�����I��0�#x��AH�����FGG	]Z��}B���D,b
��l��鸸��Ў���sЮC�ȹ7
��ä�C��w�#l1IS��*B[R�tH6Q�2[)bq��`�i�r���/aHD���w;E�*I��ם9�V��:.W؋�%G������,1i҉T@
��ރ����;��x�$���4R��6�X�j��uT�X0z�O�s�7\}�C[�4SI�Pm�ap�ʨs($11q����H��%vcG�A-�����xp�
P�x�e�3҉�����}HМ&��P�t"U�6}$���h_��cKp���	����vmz��r��I��СC�"Sǟ�jrt�߿s�yg$�辵�P�?�t���o�Tto�%�D��)�]~�P�Z҉Dpsũ�&��]t�!ڕ����x0�-A>����GN���Eu0t|%����KX��Dp,U���.�M��q"�0:L�e�7�N�p��s�b$v>��إ��Ù0����̞�^��+N$�P
 ��]�><\��x��0xx6x�e��Z��[dm�޽�������Dj/�NGw�����`~����p�1*��7=!>�#�)�h�LN111�E_]҉�ը��пU������clO,<8�E����Bl��T2t")�zuz�<���>���2Fv���m_��"v�Ĵ��
`]���'	x:��lH��m�;F�yal��!x__������@g���K�WLqɉ��4귶��`���M�����?���n��s�#iv�޼�HK�*y�:�ܰ���?�q����p
�y�]M��<�a��r�"�^��n(����ɄJ��Ͷ�6F�r��zdJ'$$p�9�͌���WT������:�.�	)ĥ�s���\�5�(�#�'Of��=+\g�8|��'>�7
Zf���H=�SlU��
1r_+�Hy���*�s��/�~1�B;�ys�k���N��ʉ�pvF��|����OGDEJV?~�6��ܹ�W/����t�ζ���t������.yʼnZ�s"�Eqm�"g��W�<�.ޡCtɺ@�O�����
��+u��9�B"Qք�(��D8��߀�,����D�����^z{ll�n���K����dU�����N`&	D����|�:
�N���KTN�?��#���U�#7IEND�B`�images/header/icon-48-media.png000064400000004045151163244110012206
0ustar00�PNG


IHDR00W���IDATx�YEp�=�
kF�d�e�ô��0�&��U���03g���A��e��IP��~��[=]��'�5�ԩ:
�V�9�{�%c7��`+P=�Y}�=��%���D"q@k=��߬��g~��;�B�?��s�Ç+‡z��a'��
�b��8�,x�G*�B&��\.6�q��i��Tt%o����l6;�b�JDN�~��Enfq"*"2<w
"�@�P��p���d1�=�S3��w'7m�4��E�q�W��Hk-��1Pŧ�rSHdV�=��<���|�OqE���A��.��@��ݼy�'V�Z�����E�L��B5.��H�g��P^�q4�?�z�.�~j׮]�"�K��~ރ��~�HD�^��@��[XX�.�D$��=�E����Pd�<��UBj�D|�XD�ٔ�Zk���tܿm�V�[����ِ3�'�i������F(533s�5�yM�ڱ�?#��}G���B���'��<
E�'Z�+M]?���^�,%=408�A�_3Ć�ʆ��L���=^�P`(�n��8~��<�54@z0m�|#�7��nΡR.�R�8��K����z��H#�Q;���밇9�|=����l���c2�M��+�}��]$]�4���~��F�힚��{�����,`I�7�+��R���e�l�q�'vc*04�\١���-���"�^��M߈0Lߑ3{�V���xՈV�Ző
T���[p��!�����R�Q<���~��@
�uخ���F�[��"�{+B�e�Qf"����
�o��*a�h[YE/AD�VC5��2) ���O1�
�6o�77�P+0���q�|��m۶�M�3�:X�A�
��F(P,bb����kxv��n�.����c�+h�
�4�c�0���WΫ�/�h��+�����P=1�>o�L���ȊY8<s����
���Ca؀rU�/������
�L�R)�5bu4B�^�!��L�VF{FHh����	�㠌�v�\��8�k�ls|�\[.���^vv��{�%�0�i!����'m7�V��!��$-х���cR������%�կ���T@����enb�TL�٭"<�U�p!3��mUG�؀[���X����@ւt��Gi�k�w{�X6\�h���po�����}���T
V^iwLؑ>"F)p�JG
~�>p�Q�ibp_!0-`�"d�]F(�9�ڡx��b`Cj�$����w:�h����s��+�UA�
"d
���C�*i`O�muj�\W�բ���
p��0)�⒥ǀ�_�6��'c44G7SN
�D���P9���j�k�bu2
�<==��C�>��#�x��Q�c(�(\��a�P�=
�DhAi^@G�&�@�y��?j��ͥ��"E�3R�Ц"D��bo*
M,щ�P(�hfR���	��ѩ̏��|!Ą�d�YǶ��@W���h�M�F��rM�ވ�s���߿�|c�j�G
4BD�)1�u�0߻�K�k�%\\��%�\�"��	�Oh6%>�74��#��UX�^]��ʱ��s��x;G^�~G�6'����@�u�S���j��`�6OV���%qx$�n�}U:���,�dP�����D����h0Kw�q�/�n�n�kȍ������\�o�:�{�{Z���-�ny���G0��Đ�5#��ـa֙yn�V�^���g���?-H2���������B���%#�/��3@�&�̬=z4���	f�)_�[��)9f�F����F`�f&f��?lX�^��j�5�G,.{PP��ڌD6��b���뮻>Γ&�s����_rCD1�Fı<�'�t:ӷ����ܹO}�S'����կ&���F���v�r
ԙ�3g���>��d�8.�E�ȷY�cAT5S1�>��^�G,h�43)�7�l��"��&�%W�'�V����u�rߋ�tIEND�B`�images/header/icon-48-menu-add.png000064400000003062151163244110012617
0ustar00�PNG


IHDR00W���IDATx�s�$k�o}m�؞�[۶m�ضm۶��m�0]im���s�����E�_�q�2������?����?��Ŀ��'��y�]Fg������F�7�av���N��\�+%�/
D'���<��AE�@��A�L`��E��T&�z����,�d@{�,�(��<���5��.Jx�7�j-{K��?�_�L�WP9_�P���3y��	,�]�,�Dd8�ܪv��g��;�-�<>ofLJ/����pd�zܩ
O˻�kPgva���%(�]%�5"~s�'*���R�O=���6��_ȫ>�b�\/�M�+9��Ⱞ�K��+�Xq��D�
-�'��_ó��'�Wb��+!�$�4�2?���&��|�&1O�׳��+�_
�a)Q��-�y6�4�����+��T�A�مa�獗ѿ˫A!:"wʦ#�zs�o���`c>�!8����x��w���ϡ�3s�F�/ں@rB�cce^�k�~G�9�����i͒�D{�:0��!��Lm�'R0�6�����Bzr��-�\��a�T��v
�i�#�n
����
P8��w�`_�tݙ���%���K\f͞�#F��v���}�a��)�dF��������,�
hO�nԁم�-t��:�'�`Y��q�޹�%K����1D{w�Hg{(���@;r-��yxW�DG6�=Y�
H�y=>~�


�f��}�p���#%5R�[(--
��B�d��?ų�>���Q��E
>J����0p
�t�wu>x���h�C�^��_�9��3(��z}�;�w�G����O��~�#�=�u�mA�Pϛ��|��?��a�P&Mu:�>��o�UH�������֮�o~�[X���
\10	ʥ�P�n��8ʤ�N��g]�Xf���{��>J��šo�~x���A������Ɇ�u���O!�oR&Mu:����
�u`u
���"225S��Ȩ��EKB��	����e��%e�F��G�t��G;�.h�j��Q<5<Ew�/*���́V�����{
XzoPP�jtN}��᛿���A~1J��ǐ�����W���Xf_PP�jtN}�_��:0�PU�FvAʪܨ��.���A���i���l����Qn>y�af&��?�G9y��(;���q0d	����	�3��l���_�e�8��[�A�K�h����.1�g�a�$�fr��.��~�kݽ��OE��	��/t$�����'q�,�B<3�1�a�����M���"o&���(�{�������W>����s&_����%��t$�Z�?�㕻����|U�AV��wf�D�Z�b��%P�oT?3U�`��+9U�E%��</�<=E>��r@7QM��D0�)w4C�h���z�5[K3I5I�:G�>`�6�l��z�[:���˖y|�l����@h�+a
#���L��<Q'�	�H����IEND�B`�images/header/icon-48-menu.png000064400000002400151163244110012064
0ustar00�PNG


IHDR00`�	��PLTE���������������������������ž���������������Ц����������������������ظ����׭�ǰ��?q������㴴��������������ÿ���i�����:q�Bt����S{����#_�4k����2c���Σ�ԥ��;m����)c�������y��?X|���H�Ks�������������������Ro����`~�Q�u��)Y���ޅ�á�����:UyJq���덪͂��Z�{��u��:`������ɦ��Bi���۔�����7Qu���Ou�d�����$S�������1g�Bk�z�����>Vx���Ln�s��!Z���������񅓩�����ʌ�����Py�]}�K��Ǿ���Y�'V����x��L����s��
L�.U�i����R�������9c�.[���՘��:h�Or���Ϧ�Ƙ��Cx��C^(tRNS@��f�IDATx�҃�3I��.��۶=k۶m�z���d����>�$s��i�M�pW�{���{�}��77�@9���8N׃�'n�=�t,65���8|����&2�k�1��/FPY+��z��/������.ņ�4H4�r6�-��e�x<;��փ�w��8n��m�a�����;�>x���Y~�|���x�	U�P4�*ʪ�bje��������@R
!YV(I����l�1��v%�D����]h0�d�0��HQ���A�
a췥��d��	(������>���3�j��p�<�˽����ߟy��?UN&N��>y��G�J��^���������cG���G/<5���uO"�҄��0��)y�)I�0!-d�z��3���!���⮒@lc�#�yi�=�DI�t�����{]���:f��:�$�U�ލ�UL	�	����%UR���[��XQ=*(ev��Q�,(��i�
=�$
4�F�c#ղ��=�M��P�k���ݞ�.$�K�,Y�:߱��2�j8VUh����|�|�+�N��݇Jr�~�e��L�R�74��@�'�[_������U����>���vۋ5#�g���|jp�.�&�Є{�
�	��Z�(]���[�(�aU=	:�BHiA�&
�4�����l�M[�x�����)XC+�8~e���n6L�l�o�Us�Kc
׬�;LΔ
XOIEND�B`�images/header/icon-48-menumgr.png000064400000002234151163244110012577
0ustar00�PNG


IHDR00W��cIDATx��$Y����i��;��m۶m۶m۶m���jV�{7�$���ݚ���~�//��֤�����,�YAb���YS�s�H�Р�@BVp�%��µ^�/(��3k��B����b1�ސ�OZR�$)����v�%�X��@WF;=���U
��d}=��|/>|�4��}��[�z
�9��w��7�J���Aˠ�/%)�"S�4��������]_�s�hN�5ZX�N�-4@�$H�0�&DsR�Qp
���
3�6*�Ĵ|�|���8����x�k8����Y��|-��{H���DK�;����m�ޕ��C��j�q�~��T|v�'mD0�4V,Io�*����[f���Hb���MM�I�2�ǁ��}��O�����O+8�.4/��N|��|���˦2G�6��P
�+t]g
��c������1�L$Y~�5�����JF�4M��/�T��wb-~��(ǍL6KG����h$�I�y�/�^(�ڋ7P�����!l/�)U�~�����!
J|T�ŚB�����x!�(j��=^�m�XW]}
�=�v�!����������x�3�?[[[����8��É�b�E�}O���9/�'_,�l6K"��o��[oc�"�)1�5@oO��813Y�����*�e��~��H��X��B�خq2-�c2$�9���^c�
6`��gF��������*s6�
7�iokC؂c�8��f��_�k�g�*�E6�<�Š+��b�����O?��{��y��Ub����_��g��/�K��B�E;Ȗ_ay�*���T5�,ۿ��U����e�[��
���B�E!��(C���P���U���3&L�pڤ�%�G��-~���ʊrJ���!L�������%�&4��P"�-���Vla?�6��N<>J�+G�kQq��]Vf�B�!��,����VWM�"��t�ܓg�}��a�"����1�hhR�n�e�ow�4?y�y��*��x
���TB��20U���/`�o���(X(`�V��% ԇ$
��9RL�#9	G��
8?��e<���H\׀Z�P�mHg+G)���w�=DCIEND�B`�images/header/icon-48-module.png000064400000002000151163244110012401
0ustar00�PNG


IHDR00W���IDATx�Ev$G��,?�%�д�ܠ���'�v�3GЬ�t��4l��P�Wf�k4���2���̦�2��Q3}@h��������֚^$D�+��(��!{�7ͅ�7;�w��\��M�ݺs*^xaa�
�M�W�5~g�i´,X�I9{".�u]��0!�		4��`(6rN�k��:<߇�y��<�}�H�|>�z�ƭ;P����9;3�-8==����(b`�!�K
�x(��ܱ؎
[™E����8��(
��R��	�T���H������������P�������R���(��B�?�
�;
�4@��Ņ���I�lLNL|P�V�@���ѣ��V�+�:��}%2������N0�}��C��y�.Z�V2[*�6�0iD����mN�36�lb�w�h.�8�y���47;7;
׫��k��L���V�u=�th�w݁���~�
�ௐ>4������ޣC�o����[!�܏���x|gg;{r||���H�˖m�������144�
X�{�y,ۈ���\��nP����^�*�ډ
�w�
�*\0�!���s�4�_LF!
-^UDr�gAzďP�$��DRp��r��^���Z����Ȧ���
�w<y�$�y�
�\ǿB/<�9=;K���;;;���
�9??���r�8>>��AF�FD�r�����e9BDGv�>a��e�r.�rzT�դh�9����.��:�8a��\)�R�rk�s	ƅ�z�{�
|����_C�?��r�ɝ?J�2���
�9�̒��a�
�{�\���,	E�BȁC���+/cpp0^ Ӏ
ҍ0�����F�F�3F!����W�EH�2UEs-�D�z�X���F�{҅ap
ߩKьwuۂ���t�/�-��9�t�7�Pk�t�,��?��/���@�	a58��_GIEND�B`�images/header/icon-48-move.png000064400000001560151163244110012074
0ustar00�PNG


IHDR00W��7IDATx�E�M��pwwww�qw�+��\VN\pw8��:{F���n����E֒1Q[ѻ�]8TF|�5���Uv�2�9�ʑ~ٰ�k���k��2�a����`�qY$f�t!!P�����T\:|X��a�M�=V7x4��	�{m
hp�j��=���h�z�њBx<
�$Ir�S��&�CU��v���D�u��H����=�|�t���{�B9q�#m?W0@,g�q��A�PNn�<�!�2��u�x�e�r�$�	"b�$�`��z���c������+Q���j�����N���w�P��2�ytGk���b�q<�G5�)K�i��&���71=ǔ���?K|
��V�cbס�,��t3��(���m.����q����N�7��.��TNҠ�>�)�@$P�~������ގ�<���M��+;�kN���T��{�L�̗���7)ݥ�y��s`�Xf�K��B7�.4
�8:��3B�U���@od�W�
@�H]�j�qeUa�ICS��S}�K���D!^�'
o˴��r/�!��*>��8��PM�/�7��X��_=La�D��U?̉���A@!�D�ڇz�׈7�8�|�c��z���DX�F�(z#�7�B�j����8
�O��A�z�=�
�ր5���ak̘1�1	r!9�D6"+��Ld���6�E\$B|D>
�;�
�y�v��WF0��
�[��ڣ�L<�|z2%��oj`1�K
�~���i�3HpI�����
OA��}#�y����O�ų9;�IEND�B`�images/header/icon-48-new-privatemessage.png000064400000005522151163244110014736
0ustar00�PNG


IHDR00W��IDATx�Yp�ز=�e�1�9�<�233333333333�c8��8fK���ՖJ��{����J>��ʃ������������1���9�	>��uC���D�!�0hH5D��Ɩ&$1B��"���f�FY�II�6�lSYZZZYPP0����4??�����.77ש(
~�����C?���nQ��#�'�����ܼ�>����˫(++�ZYYY�z���DN�999`�z,_��/��裏��!BHg��>��\�Ց��G����$++,,l,...q�\u>��Œ�h"��,��s6���fC]]]�
�$
[��3g��]�p�m؉,-bO�WٴUr�x\��%�L��ގ��&���!`L�I�m�j���[o]E!��-S�LQ�^G��I��
�
ىf�d2�+V0y8���a�-�إ��m1�	E+����w�q����[�`�{�d���+�D��:u*�f3?�hg�uֹO<��K��z�w�uם{��|��`vo�y3�Z0D
����a4�߉n��᫯��FBH[�K^�^�?G4�uwwcrr�f���0��bNmuN��h�eQ
q��$��ҥK��5��0�u�`��EI���A�����R�˖-CEE��AO\[W<C2}���?�����X�-BWWR��������i2��G�Z����*����OT<��b.
�7o+�/�q������1w�\p�S�C{���d͞F�>���6�L�i���h�E�ܱ��uvv��zKK;J%��
Z*��s]���7h�B֮]������3���z����aɒ%�s��p�]��É�Ο?L�S���#;���w�`zQ��%�a̫��$	�-���,B+
A)�C~W*))��d�ʕL�#�i�Qɘ�,�#�����L��?�opX���0=��$
b���><�:����X5r4Q0����@[�Whˠ�^ƣ�{���{Y�VpK樨���o���I���2YďX4���9�*��E<v9	��Ѵ�Z��eĉ�����ڱ軯�~U��</&�A��!����J]��8��v9��j��|�	�zss3{�I#
a����}$"q\?R�����Q�����(2$$�n�NDpӒ0��:��6�b�	I����d�{��%���r
���;��%��y�3�.�R�N�
E���S["��p?��I�8����S�⃘u�l���ּ�q��W~{���|_�Ě5k��ցs��/555�}�2T�
�4����l�0
i�ͮ8�aGG��B(ǃAO	"V�X�ob��*ņ���
��l����-v�j'��[	Z˹�9Ϟ�H����.�GV��=,�<1�+g2���:��1nw1y��V~��q�n�X�x���h�y2d,=�ʋ,�����3/�Ew".:�ݎ�2&��m�M��T��K�)EXYX[<�Ʊ&�W¶U1�J#�P�I9HJ2`/@�2�oR
�*�.tG�=x���8$�O����Cez�F6#�<A�&�'�1���a���q�=�&9m��L�[h-R�!��"�BF;J�I(&8��:]�7[7�an��8
�VX�Y1n�<�y]'@�^6���R��
1�+���䙰J�!�ӈ�L��B)��x�Қ�⑐�>�\�މD����JK�w	��Hb��OH�
�����Lq�YC6%D���'D6��`��s��>2�;�
H�b1�'�u���m��W��џk�:������>&6�eA:3qH(ғ���D�����/��~��#EH�jӾ�q�c����0�\
N'}�
�|I�4��pD°F&A.�xJ	
9I��IM�������í���:s���%1/5��������S���׵GU�W��F��We�s
P$��D�y�R9t^O"�y�<�j���@����`�F3�v���4!��g��b�<��<O�_Nzh��������kh}���g�A�K����<�n�i�1.�9�Q�<'�B���1ٱ2�FI2Nw��V�;,e��P
1M!�{�o@L #�L���3�p8���� u�
�D��%&Aᆪ��w�>z��9
�|U��L^�d	�t
q��Ԓ��y��@�͉UIbJCf��;��:��s��k�4��	�����7?��@���S,Nk�	�===A���}Q�x#&������������s���C���P�
�`H�a<T'�Ui��n*��:���6Ӵ�9����A���V[m���y�y�W�.�GFFbD���


S��fbz�:$R63
J�w|{EJU��6ZQ�k�9�
���N$$���U����'��U�xY�c���`5��@6�CRC8)��3aߑ_��>[D��|���+�=#�'`�Xb�	đ�����@<��$�%z�A�z�;|j�p��m�<��A�84�	5�9��	�6&l@hקź
!�P��^v���i�s7�L<g��_���kj���[�U|�0��ø���3��^��jZ���������
�
���T*&�*����]G�(��КA|fՈ�Q8k�}�e�8��KwE�My�ܺ(��[�����|���-�e��%����9l��w��7�|M-�	����:�^%�7;����ڦbM=�#�5k��ZvM�HǙ"=�5�:S|�k�I�z!&U�H�|QK%����9t�F����?�6E@P��]�
����8�h���LIEND�B`�images/header/icon-48-newcategory.png000064400000001753151163244110013461
0ustar00�PNG


IHDR00W���IDATx���#Y�>{�m۶m������Fg����k#���w�z��'ۙ�L���W�<��d�JʖJ*����D�"�9���J�������#h��������q-/���J,p�H������_"��b����E�����	8SB�"gJ(�8A$�L	lG��i��v��;H:!ӝ�����~�&�b�6�~�ΡL���d�p���k���fg
4�)���L��}D}�[�0��������8/����@^.���z�r8tB.,`=�>X�Bk���4��}��Ӈ�a?�E���7�L�#�+�9�����/n`?~bk<1��o���{}�"�Y�����!�q�֮q�������p��r��m�=�x���/Fr�LM�«�R���3�<�s��\��\Ƹ���P��?��X���d\Bi
�vΩ���;�8��D�<e�7��h�]�e��wGF�ְ�`�q�P,���hm��1\k��۬3���rl��lL�)i��򱥫a�+���G�B��9��#���9k��|�I��5X��Ix�3��ň/]U
�0f�#��tI���ʅ��Vk�U�����șiv�Y��̂E+��J>1��#hk�;q��K΃t)�Ve���yo�4���'�f�T�'�]���5a^�Na^&����65��+���M_��2sV�
��ę�>�8j��7��Ɣ\�;�G]��W�Z���N�8J�C�
�xs_�Oͮ#��,p�{Z���G�C
���E˙'�?)�9��s��6[<���~��M���%��q��V��s���=�A�57u�](5kk�ynM�Қ���ZyL�4u�'.d;�?.�>��8��`����m��S���f
PI"��e�wLϑ�26���{v}��>"�O�I*�wc}�NE�IEND�B`�images/header/icon-48-newsfeeds-cat.png000064400000002745151163244110013664
0ustar00�PNG


IHDR00W���IDATx��mlu����`�v����LpءD`a;
�(J�DoLcL|!B�M�\:��`�Ǟ�]���TAH$����j�o�F�
����J��u�]gө4�d������ݵ����o	�{`�L
DB����b�0&@M9�D&�I#@��b�LB>B�
Œ��@�	.z�R�@�qF/0��@
�H����z�qf=sqƸ�'p��Ɇ�ĕ��e�a�%��V��������	ԗL�q�Z�����M7���,К
����T(�G�d�w:���T���*$�b�G�5��,��b&B�n@����*r�΃����,��W�ߚ�j��m�"�ʲ�-FI�u`��¹_�b���/����z`������ԛo��P{6��	<?��nJ��!�v�.|��:����:f���r�|���?b��sL�釽�%=�X�	tx�U#�-K�W���Ӄ���f�󝟡��k<;�Ø�:����w��]2���O��Іn�
�.��D��_f��}����x����7]�����f�B���=Ef�$�΅$����!��_����XM{^-����2�C��;�B<�"	��S_ae�7*bGbI���;=�fL�o�D@/��Ű7�
�^�ְ��]_Dz�5,�ѕhA�em7U�k��I(kc%z���lڣ�\WB̡k~���H��yg#�#F�I'�P������Xᾡ�V��>��R��^�}`Y�<&%�������^����W1	U�Kw��T���Bs�1�	,9vm\�記v�v�RYOO1	��*o>|)�O��y���e-��~��rYL�G�+ȶj��1�S�`zc�޹����y�	H��˝�A��'ay��M`*]�g�z����RXr�gI�A5��i3f��ʦ��qc�����[�+���	��rg���-I[c����9�����u��hH��
�N����L�o;�Qa�n���!�5��`��W�a��P���m�#���Ip�~;��;��ݒ�}<C��X&�k��Ƞ5>��=�"�·��M�ܭf�/g��[�ϩr��2��4��a�s���QXwAEzu��9����2ٵC,�1&`�q_��n�кg�k?a��Lڛ���Ps��.qK�*3�Mo`<�ƛ�g�^˫���AK&5(bQd�)�]��mc�)E��^�If̱�膓Mj�$)&��gT��r�[���ȑ�3%���BY����s�"o�J۔��朑2ӂGL2i�H�ҩ�55iAII��N�I�L��#�H���f����L%b%
&mnǴMm�H�����F�K��F�L�ڱb&����F1D���Rj'�̳���x��U��q	���0G�K������[�v�{�+qO�.�'�|k���qIEND�B`�images/header/icon-48-newsfeeds.png000064400000002405151163244110013110
0ustar00�PNG


IHDR00W���IDATx�Xc�\Y}I�m{l۶��}�m<c;y���Vf�O�ٵz�Aϩۧ=��n�:U���_}BO�	=�ˀ���u`/P<	$��/Y���k��^>�7<���]��彼�"��(Rˀ+�	>���z~�gc��W�;I��z�偉����ف�<"�9�������g�~��v|E,;�;�����^��z��	n��J�U�ug
ܙ4���X{ʿ�'���	��:��P`��nt@
i�)�j�q�n�6=��[�b/~m��ZA(rDx(�FLm�|��k֟�G-S��x���
�]x(�cf�sd��ύp�ʣ�%�!ST��h���F�o��%.^q8�$$")j��:J�bj���D‘�Nx�P���ϋ^�Ew�`��T$�}�ׯgWQ1����B�:��n&ipWw���
g莚wE���X�/t��܆6)�Mo��}VŠ�ʀ݈�^����9hѼzK�n����n�)ʇ�����
�|��1��t�wn@����kN���\)��@^��xϹj��0�:��������J�Y�o{>�b�@fÓW�>�1.��M��Kl�Tgv:.�|0�JB爙�F�1س�b=�b�#\�x�DB��B��T����D5�r=��r���%�A�-�[��R�v��	�7�]��Qt/�UV:���Pd�x9zZi�d��%�Թ=*�~[����|^��m	Y��|]�vDLi�@ދ�dN�I��D���:��4�S��pB<-�EM�G�i���җ�kQ�(isQG$�4Ԑ��!���(����!E�;Q���,��bGBi~��ܦ�?��-@���0��M�魢��I
,��Fʗf"���o�?���k��g��Y-bA�
v�#E�h|ue�`㧵R��n��ABO�ʜݥ�KF�����M�١����̇ƀq��pN���	�N&�4*�d�Q&h��V
�A����Q�2)!��g|ƹ~"'7�1�FS�	S�y�+Y����l��jbz$�/Ž@w,��D;����-	�!��G	2x/0�cP��(�1��D
rx/�t�C�<��_�|�f��GL����D����2'���5�Z>���2#@�F�LW7����j4�6��#qY�ح9f�����/�0h��gy�_I������6I'�]Ht�2'�n~��='}�CO�	=��W��♀vIEND�B`�images/header/icon-48-notice.png000064400000003647151163244110012417
0ustar00�PNG


IHDR00W��nIDATx��ŗ#�v��O$H��R����[�fk�Yy;����3ofm��f��j��l���bQf�!7��T��e���	����
)��_Lp}��|��7%��}		�LD��#L]����S8���C�BN�_GR$�AB�3��qt�~�nI�(�2
�e
�jҒ��NDp$z�~���c�5�$�a�@�D��]^F��ٜ�(���Nf�W�AȐ�^g�H
>���3�;�҃��ƾ��|DԑfI\���g�����ow��})��������>��S�K!��dHs�9u�'�����͌�K~Z>�p��zF��Ȼ'|��>��?���屿����G�v*��G�YC��ihL�&6���Ѓ����g0f�qq�⌦��*��|���YG������Mdy����r�<�O��J���6�����#��6���m��6ȫ?�o6GDj%6�NY.h��9��I~[�*eWnPzM
��=+��4�F���%Y̎et�)
V3V��1!�}�k���܁�K�]�
���vw�/B[�Wq��?6����Y�&�.�K���3ݒ�ԉ��z�VÂ�?6q�'��Zu^�&�*�[��H�X^�huU�D���O]m
�MUEw�n��x��@�l�bF�H���RUR�߾���
Gܨ6�F/��%�<ѡXR_����T9��&����;���7�'E��@L���\���r�%M��*��r��.�o�GB\S:]5s�$p�y"�nJ��V�3���/��v��ԡ;�{����c��/�;�w�P��щ>��N��N#�=j�z���@��-�V���UUr��~�xrw	Ys��Dd��yG�D�DWR�ԧ��Q.�y�d\1����
F]
�'��辨�Nt�/�얄���S��:ۘ��0��Ot�}0�Sl8~�j�.�1Э����ۉX��V����Խ��`��N��V���}{�N.?vdT�
��	;f�V?�'B��ƽe%��2�n���a�&���RN9�I��EO�h֮����7*������e�xē�T�w�Yg0���2R
�̓��<</�D���
GO����T��k���=V�H��֚Donn�ɑ劝�Ւn��zS��XԜ̹X�P�m�E��JGd=��r��
m����3bq([�����Ƀ�e��}	���G��g�ԏz�!�&��~��
yݼ>T
ۈt�_�����?��m�}ng��?����?��'\S.�c"�x���@�=G��TPe@�H���r���6�����>%v��%PU���VۭJ��bA�KzZfG
����}�j�o���α�V�	^�~a�#M�+vF���;K���*��A�ِ����$��ߺ�^��O�3ƻ��cP�̕�O)s]H��U��d�i�7��g�.���{s��0�����[?�1y��#P�2l�פ����/-���3;��%Fc�*��̈́��˩�~�9'oO��;�����^O��nPd���j���$�W)��to�xP�վ݊,�,�:��#�3޻d�$��y`�#cFB@�`@U�gԫ��K�Y^�l�k�5Y�ш*'
�X�h��3���2ʂ�`P"
2����Ǐ۞3�����Bљ�#�9�%�#���t]#/ʳCyIQP�A+��ZcuM�Қ�3�uo��?/�o�����?�Q7w�>�}m|��2�?��Y���}�o�췿�׿O�	�h�D��e��s]��xӣ�V�Mf
�ɰ�1F(�#�k�C�L��9.q�%�u
T�ðs��g�~,P������0@Ak��l6��P��̐�#��lq��f�Z���t:�;ۄ5���:���6���=v֣�f�e�OW�մ?0$"IEND�B`�images/header/icon-48-plugin.png000064400000004244151163244110012426
0ustar00�PNG


IHDR00W��kIDATx�혋oS����^;![�uݼN��TU���J�ںJc���[�nhS�N	�B���%�a	����$��(�&!�?��k��s�FWN�qB�H=�G�Ϲ?�s~��;���臘D446ꛛ�M'��L<�g��������҂��a�##�X~�ϝ����8k��6�!���4cr8��!tb�!V���TVT~23�1�N�A�m.���̱�WWW�jjj�fD��)0T��A8��p8����5̬|	Q��u5�G��5$�g�|1��̽uu������oc�o:^�d:�=&o.��������������\�%`]��w���[{��c�o<t�t������;[C�����qS$�h���i�D��
�	;u�T�F,�f�ł˗/#����������s���'��!��ثu�z���u�8����I��\p����i}Z�i��.�]���lUz�}�1OF������b��')p.�{q�U��Z�׬?���.�c�u)՚c�߲y3m�m�h卡3����<�5p&���'��]F8�$��\
���ad�C�Zs,򵵵%Q�>�6���?��b"��|/݅��X��}O�&J�ZFhN��;�\[�"}��@c~�ݵ���'�:�5t��P��~,�j���C��ަ	Cc�ڶd��;��Ez��e�S(��5f�
�G�'�����$��H��`�b�c��$x̚0�I��c���������Z٢���C���1C�9aB�_���T-aߑ
_}2mMq�K��J�'��"t�M�O���ku��T�+�ߔ��k�nL�����N�wo
�[5a|4��I���	Cci�p����|m��=����R^oCb�?��Ws$�=����R�[K�fm��X�
|9�Gc�;���x��=�:�d�V!?%��%=��i�#!i�|M��T�S�
#����[�04�����83^˯Лš#�u�6p�=)%t'�;7�𵑐���ۉDF���nfe�0��=T,N�~��0��a���v��DY�66O]����*���8��;��$<$G��4<�>���v�ų�R��wQ'��`�h��u��	�̾&-�]K�w�+�mCɄ�#	p5$c����J-V�H�Ł}���
�1+�(��$��X�6�/�J�^y_3��u-Л
����&*��۩�H��-��"qWj�S!�?��V�Q
W�`�
BC
�%�-�jcv-#�������;K�?�.\�S��[Y�s(c�Lgy$�-�b��4v�wg�*��	�Wj�o��\�E��N,�…���W�_Y/�ĭ��;�'�oW+��t�~�w���Z8�b"ptX��gQ������_r�hK����M8��,�Y�����Soc�B���.L���t���c�����H\�Z����8*��ч�6��ܩ��[�d��Z�
>Kt�o�Bmb�7r�љ5]+�0T�����Ϲ����ܡ2Pgi�Ydy����n��?�?�&��
��K��ҧ��$
�����|�1�Um�R�|�e���T֨�;��.��H��7�S�_�g.}����0����B��p+�'�}�&[�|}�$/4�-����4��;9:���g�s�<�΢>�1J2��X>x8����K�aݵ)�|]�Ԙ�,5`����2ng��]Y��^����:�`1��{,��OI�5����7e�?��VI�]jx���E�̫p��+t��s�`]���E�R�Y,FL܄���|�%B�Zz�1�Wh$y=)���C��|��=�;����V�#���vJ@o9���ŶeS+9��$��k�j�`�~�V������u{����ù;w3�'¯=���^ö��ҙ�-�`-�N|�Z�U�7�����Œ�0���X��E8�e�Y�HۆV>��Ӄn��z��,�L��7���e���m�P��H�D��p�攫@ۦ5���O"OH�ֻ�1�d2����<U�P��.�v#����
����w���R�6�J�'�8P�̦C��ҵ�AK�1:yeP�1�P���R~&����+����|	m�$?�A����$m�O7�m�q�1�G%IEND�B`�images/header/icon-48-preview.png000064400000002015151163244110012603
0ustar00�PNG


IHDR00W���IDATx���x��N;?\��m��k�f��m;X�x�msx�T���o�H�N��3��5���31�C�,
��h�x�2@ $"l@P
@�r@ۡ�|�Z뮷��SkI�ah3���G~���g?,2���N:��CϿ���#,6�b�y��ùyy�֍f��\X`��ެ�K0bY������O����Z��v��47
,��&�n�l�mȒ��lݐA�N3[��;�<�e�5�za��`V\�*xab�b4'�4$,V]D�<3��lۘE��2�f���=P�p
�2});6g����K*�=�<���7K�!�yk�2ъhXk�c�9�s/��:��G�~����b��X=I=�ǀu��H�RضM�(
�1�U�5�
��wZkr��d������l�X7S�f��	�J%�!J(�6�l�g1�$V��
��+
jH+����e��������W�u�A�R�k��"d
�c�����h$0r�@��x�VȊ����3��H¨P�k�^�	+�:]"�
t���z%�|4�-���e}UH�W��(��6-ޘ�_��{¨Q�y���,�(b1^��_��>�B�@�ڎ��
�k��x~“|1�:�E�(�D4
��/�hI��!ـ��~���N�������A��O�[b7�X%�:��v/�j�@k^��r׷�a�N��4n�������ԉ�[`��a�1~"�W�^c?���>��I��Ba�U�6���p|�a�v�˷���skq¦'w:��0٠�<���]_��O�+2�_�֝K˥�����lj2��!�f@[�g�����u]��R���*�Z���?=���WYe�t=��U���C������n���n��v��Q�Ji�vuذaCƎ;Xa&`i
�#~���@��{�`t�*}(W뵰�f������

���SIEND�B`�images/header/icon-48-print.png000064400000005217151163244110012265
0ustar00�PNG


IHDR00W��
VIDATx^�k�\Wu�k�3�p���8v�mb��Z��@[�F�$5����B���VT跢&H��6���"�|jTH��
�4�N�H'q������s�^�������D�^�B�_Zs��g���k�C#��O���j]�
p
�'��y��V���
�1wA0A�9���
��b�z��;?t�ǟ���<�3��ӏg���f�z\�sx��A�t��=N�x
	#�t����z�����o�n�iy^
x�.^�_A��(x��/p��K�
@�ˍ�З7���]1�~>�Y�X䬛Y��3��p�
9��㎨#�+P?s�f��\�|�����(B#1�[�+	Чѯ��/�F�J&k5$�
�Ap<����R�l���mǢ���z����xEChvv16�:��2��6C�qd�`~n���7��ɋǎ�ڹ��ed�ӑ+
0�Y��j�]\��e�
~"EN�ՠ�뱸�%/�`�K\�X��D�=�h��z���T����͘�[��!ta��NL7�G�P�^�H#I�1q��̴��Z(����.�p�;\Y�����g;�B�;	(݈��
ꎋ$0�5�%u�}:�e�X27������M�E��f+�fp��^3]l�憗FK�"Og"�XrX�HκWYH��D�0�ժ�+���ػw��z�K]s�����F���g~�����տi��ؽ{����	!��ظa��|�;��
�,��+�r��YЪ�y�8�%�*B��`�%���)�:�ώ12=�f�-?{+eQ���A���?}�����~xdl"��'�h�;y�[6m\#f�3xo�i'[�l���O?�KK�8Te��Z9�"*��F�����s�-��w�{>�`�w0��>]:�{�}ǻ��
�����۶n��0s���h��lB|���…�(��T�0-\����u0��"	j�f����]`��;����)�p�Af/�v�������~�!��3����{߾)�e4k@u����|�Fp�6���AR���C�hD$`n(��T�N��M�YӞ��h&���ꑴ��O��%�c�X?���*P��D/
+�����)vﺑ�N����C��D_��$�S�Cq��
�SRh4w#�e����D���g��;�����<�w���N����;¥r��I�ū,���"eD̫��	�
��"D@p@U!��0L��"E�'�T4�u��=�c��eqw�Q'/��1&�Mu,/�cD��y=E"o,��Y$C��<�r��jX,���j�˽��.+�'��F�GTYUY,)cA>�.����2V������&��:�ޣ1UN#n�h�h��be����Q��(#�g[���0p��`%�0w܅��$
�j��%�wǣ#U�ab����kY����8�R��ȋª�(�@F-��u�r�P�(���*��`0
/rV�@��, Y�a�**
��hUQ0�&&�;C���l��AoP��j�����F�A���>���}dY
�՜�}�
�Y������1�ԯ:@*^J��q��D�%Ǐ�
��2
*�,����2�Vi��VQ�DT!d��{��Z���j�0<��#����C����*��
VM]"���`"q����F
!�����?J�3ǎ�w�v�Z�|�5Skҏ.�����$͉&fq��8���v���۔s�*ADP����Hr^0,:�NP'���)�m,F�O��P�}p��1f6n����@���}�)��
݋7�w~1�
_�Uݥ%�8�>���qQ�|��@O`Bi�ԅ��dA���:�bێm��������Agf�s��α~f��8���goؼ�Mgm�c��Ak�~��K#ӌ��Iv�.޻�y��g��PB�
��;�L7�,��q�-%��|k>
'�ܙ3|����o|z�.nQeq~��_H�-w;��N�ڱ}�(?����P~���6sϺO��I^~�8Ѭr�i5�4�����qj����
 5��ʑ������9������۶��'N@�,7.-�W�����/,Й���w
�8��/'�!�]����caa������k?q�S��_���?s׍[72P��gGp52	�,�/^C�;��3wN�uX������`�
3ܺ�V�ڛ��S�Ck�EN�|���ڼ���Jp0�={����>˾}���
)i��y��S��g_��Cc#�p�k��Ձ�����I-�@2D�TA��Te��4C�Y���vš'��۷��3��KTv��AƊx3�K
���'��M�Fi�2/S�^,�,Һ�K}}DTPUB�e!K��n	4jZ��r�
C����@h�H���Q��"0u�	$�@ѬՈ�),��`QiX-����j�q�čjH�eD�eJА������E��;#�*�ƔB*��j#��X�,�Z+
#V	��F��+G,��r
�L�]����WW�\�_0�b�'�IEND�B`�images/header/icon-48-purge.png000064400000002677151163244110012262
0ustar00�PNG


IHDR00W���IDATx�ԅo�F��'�OXa��]�$�1���2C@�r�\����*<�
��b8�~�y+Y֮!�9ѭ���flG��������8pхaJ�s.H�4��b�������C8�Č[
Wd0�kZ�P��#��p
iJڿ�QT9���}�@���G�.H��a�ۗpt�]{�����}�;���XDS��-Q9��EJ��X���`�=mo�ꢎf��ڮs!I
��w��9���6>�K���&�h�=�r�#�Y�y�3���5]�$
9v/F�.�-��1m�5��c{ԞG�!v�>G��o�kr�'�$iȰs�-�o�&�
Gv-h-��ϸ���>��u���'��$

��
�`
v,�D����G����ג�!�_��S�o�M�'��N��:s���͜��ѐ��\g��y����4&O������v�c�.�FCʗs$~+�"�X�BD�5_���0α�QH�����T�S��_0�
Y�Ap��y�^g�5X�ѐ���VD."�l�)ȳ50Bj4C��r٧e,���ξR5W"��=&�ZH���Lo�c=c.���f:�U���b��Ù�
c�'l�p�?�3B��*����z�z�9BHI���
�6ߝf0�肔���`Z�J�%qP��T3�
A.Rδ.�
5�V�e�a�o�Zv!e�r<t%�|��:z�3SPI���g�4���
�`�	Q��I�n�4Y6L���
c?�	aƾ?k3��3``�W�ih���q�AZ���%��iP�;��4�3��!M�==td	!iԺ�Ga�M��d�D�W����;ӣ�4

+kX����wjn;1��́�EmHzy9Ǖ�4
P4a���A^��	8����E�9N@��տ�&ӪG�9�ދ�W>�Cr��ոFO/�s��z4��x�
�-~>�g3����*�Ç�<,GU���O�`m�+S�H������<d�p(��Ì�IQ�x-s���RC����A�P��.�)@���_���wƙ���8�t�/�u�l�di<�փN����)�70>xG���y[<ǚ2N�3@�dN���D0�X�+!y4dx��+�{���자"4�x��ʿ��=��{̤b��RT�����=�/���63��=�{@��P\��Mn��
�/\oZ�j{B&BCy�={����Wn���+�DP�Ã4C����%������������O�^h�svM��H+h���)]�0af]�u�����S���DG
��$F*�җ^���'B��hC�-:1��Zi���ȳ{fc�hLƈ52�x!r��<bƊ
;�AK%�]s����d��-�W	�L�r)�4
d/�?Қ���{�@.��'�_�iØ��ϊLIEND�B`�images/header/icon-48-puzzle.png000064400000001645151163244110012463
0ustar00�PNG


IHDR00W��tEXtSoftwareAdobe
ImageReadyq�e<GIDATx��IhA��'�1$Q�I���DD��/"ē
*�ŋ7�^DQ�"�^%����(ET�K"3�HLD����b���{��|�0�U�wW��͘�\�0M�9�E�
t���{�����0>��`V��ie�*�`A\�v��Y�������~P��h"�_�a�����&��@��L�Cs
$�(@��q
�J�-����V"
�t��;0-�؊;��?
%�h�AC1	�g��0s�p&���{ցL�5�����h�g�+t��?�/LF�|���ش�w�{�����{*�Ƃ)�.�i��ۣ�y�bD@m�N�������q�����Z
*��8!���t�zaDf!v��
(�6�\�:�]��b��DI���l~�޺�1'R����L*��98
V;4�H���7h.`��0K�^�L���sA��
b�P�����`y��g_��972���ZV�L�|�n��!��`���=�ʜ�)�$��ߦ�w���@<	hA�2�i1�kCK��n��-�mv��|��q���3C��U���9(�S�~0^�}?s{R<~��5?y`x��y/�K��U�Ζ{��G�U��.�������]�|=s�/~b����S��s~���8�C�]:����<TM���6�����\�Jh�t�I��?^(聦��=U6{|i'�z�bk�X�T�%O��-j�tӠ�X���Y��)#>��o�?��b��.�|b���VB��,���ʍ�_���o`�N�l�4+���ܐa%�5�2#���U��S��V��x��IEND�B`�images/header/icon-48-read-privatemessage.png000064400000006506151163244110015063
0ustar00�PNG


IHDR00W��

IDATx�Zt#Dz��Y`df\/c��y�����m�0�����̌^,9f˖-��Я����x�S�s-�������v�$A��,��a��q�w��L�������e�(	��L����'_��k^��ǭg�}ֺ��;Cg�qƥ����?��PϏ�a�v��.���{�����7>����hѢr���b�&''�u����y睻Hн2��@�xxY�D���a����~���͛7�\:���06n�8�e˖��뮛�|���r1��+{\���e�|�i��v���u�<J�e�����4B�hDz��8�s��ݝQ�v"Y�x��э�<�?���ʼn�i�f������ʫ��:U4*:��ިH;Qi*W�Z�}衇^�bŊ���F�	�F����b!����4�O�\�s1�3*;+@�����_X��o|�\�|Oee%���Qa�2H�aÆ멢���Ϗ�
B,��W����K��{�r�ۍ=h%C0�Jadd$���O�~��^
!�I����d�����|�e�v�<ݥ�z��Go����w1B�8������G�ӏ��Z�`�+Qfɼ��a,d
&4]�a�%�{�n�喧��(T&�;�>�}���y��fPu�F�HkDX3-�.��_]�	���eK�^���$�u!�tQ�C���d�W\q�A��]&�i�t۳i�a������;C�«��t�"��===��c�8W�k|Ϛ5k��g�}z+**v�|4�"CDcY
�\9�@*��tq�2{-�'�A���o>'�QWW���A�ǚC9�b�|��((�HZ%bf��MZՙ�KR�G��,,��s�o
�hm�I��%�:\����?��R�\��3�Q"��F��É����4�1��\4�κJ�47��<3�$R)��k����ʕ+W~��	l��Ȼ�(6���	Ң@�}~�1Z*��u�|+I����~P۲�G����px�/�������<h�
,If�š/MnF����R�o%�;hooob�.%�M�:'�|>�b)V�:��;SID5��3,�쎼&'�����&o��H��*��<��U�B2-@�mmm5��y��,�011��pS�ٿK��bSX��ώm�0�$.I�������E2���c��'���jP˜�����RQ��"��U�cՆ
��%!��/��@��������xqK��a~uhu>�G���Gy�����6B7�
����9G5Y��|>��L��I�JFF�z�d�L���/Y�<���u��!�����ma�7X����c��p����7�ٙg�y�u�]w;�I�V�
O����Ԏκ�����h�WY�3qhePO���G&��W.w��͡)D8(��=�*D6�`}>�-i�>>g�pڛ�x!�wB!�s�ݶ�C%D��ASx_Q���	E"V�v�qkhh[�$	LGH$�˫`j*
V�|V�=]y�]�ji�6]���`���
�&��L(��H�dq�$^�z�[Y�$�R�?�s�=Gu��
v��"���ʎ�7׮C��C
}f!���~�z�`$��1[-|Ċ��
�1o/��<z�S��3���
F,��U�O�"b��4����
�6��M�0�Ni5F���ܝU-
�r�ö��D��F���092�*�'U�@�,��\�HШ���������
����7Y^�7n4Z���MCD>��r���R��Є�򽽽��#��f���I�nx�3x�h9�&0�؍���&��=,6�PK�>TRn�%C�bJ���QM+-�<�Y~w������6�fvҘwGGG�p�B;�iǜR��d�ڛ�=�Z��Da��
6l��T�"�-W�T�U)������i��[�X��2�L�~����;h�#���:���%K����ȋ3�=A��(�46M�(\R�
�1fac{�&ot0�sh:�@�R�F.Z��-�3��}>�MrU�!�Q؉�n�p.c�!,ii3��g�wJ�x���%a�t�`㶘7�m�5������2�A�bP5�o�ۯ��Wz�x�9&�r�}����ǎ��ac��H�X��>I�w��aDf1и^]��.�@V�"tQTB�2�eM%$4&���m�^�LE�*�DT��L䡡!��TWW{��Fk�y��?�uA��m��I�&n����{�
���DE���G�9/4v�2��g#�QR��YYd=zI��
!&`Q��5[��Ó5x�c5��l��t1Ң�9@�c��u��86�������^�a����+�Wn�݈y�ȳ��y©4���,���bs����jT咈3.���,�
����B-nX�F����vՇ%��}H�X�Bd�9��f1;;��!"�
�D�i]��x�鑧���O�C��I�ͼD�9�m�W@�c$T�>l,h��zn����O�*���<�o�(��m��P�Itvv�lN�8V����0�3�x����M�.��F���
k�P�:�����.���&MF�2R|J�lhx���n0�y���
�4����	�UJ�
���ur�)�eee
��[ƌ��k�e*����dQ$�b�R<66^L�:�6Oi��e�A}�������
B��ᅫ�D�,�&�I38d���gVB��}N�>�r�rd7~��n�<�,�]t~P3gz���瓚Ì���B"L)�&��<msG�LE�J��c킽�	�f�����)*����Z�n�8_
�����B��%ջ��O}�+J>�Oxk�A�0�V�~�*�B\�ݲ[���?��ݟ����9v�!'N�^B-�����y������H����@ᱱ�i������W���M*��/�y���x������h�`9LRr6mU7�k�^��?��y��S��y�y�0C�r�#�RW_}��Ԙ�C�V�0�TB��R�%����ԍA*GA��X||\����5�ِ�?
}�?ow�bGi��T�;�~sr���/��Se��yc�!ɯkB0��A'�����	�
�'���J�,�c��	�V��]�6�Su�jB��0���JX��U�5�ռ��c`�w%�˯�H�v&$���k?�Y��#g�,@�08�"X��������rq�p?��k��w?�T�'\�)HN�L�@L`�
k��dQ��$蜔���Ut?��#����s�s�!�dv���␄�-�9#���c�����?���"�VIEND�B`�images/header/icon-48-readmess.png000064400000004655151163244110012741
0ustar00�PNG


IHDR00W��	tIDATx�t\���U�Ƴm��m;��W;vOԉ�6�m?o�^�5���!]��Z������>ߟ'�>�|�qww����f��D�e�&�
)@RR���PTT___:��耊���'"##������*���(茛��U��-�/����dTVV���VQXV	��<:���r�s�΍��ޠ��
�{�h�b���A"2ʰ�;?9�����[{5H/(��zgg����1@(z�d�F�%��Рǯ�&�z�;�r�Z���%�E�CXZ,�!�s��I�h{y{{#&&�6E666>���ə�6v���/�N)��+1���`C���NNN?�����>��w�2z=�755)������XJH�)��Ţ���98t?�ᅌ�fqqqpuu�&OC�A7�������gMS\�<G�t��������R�J
Dvv6&���Q��������[p����#11�j��4����

BZZk��T���8I���YJ���AVV�߿�,!>>w��Ahh(N\����.�����h4
�"$$~~~�j�5�O	N
�8�hII	��
77�hff&�p:�y�~�(F���G	e�Q(�}܏A`0��8e3�
��Y6�			`��@zz:����Tp�0�Z��h``
5
e�Q8��z:�2bY����DeS����mbf���ȈFDD0��H�
eD���e���:��TX.~t<�vE`�v
��G��B�>S�ܯ&�q��^��oQ

�`�0��{ݨ*��H��F�L���e�L�"�ZTT�z3���O�81[f���R̴S�����ܬ��#�2q"��Mݨl��Ũ"�
��$��z3�����H���x���oii�C��\K�BFU�����t
��3�,����ܼyӓ5����Wb[[[��u�/�c�F�)�
��s�]���=Ƒ�f3����+WqO�x�mmmz�:A�l���O���?���p��p�rp�r����fVƣI�%Vɰm۶�
S���B5�u0$���]��*'�Ž�����D����;�֭[X�p�j�V�Ry$|�d�d�d�Og�o��%�cǎq"�%ŗ��!t�����#\��ܓon�w�o_Bҍ
МZ�s��Y	ؼy�Fj�Vj~,���Ą+/��S����u��t�@�v#T�6�cp����
,�'���m�i_-����٩�N�9��Y��z��Q�}*m�PwjH��5�w�
w�0$��{���Z%f�3a$�<3a�p�>0����5�Y��tM�g�l��o.��}�S��bͪ�"�v1i�s��y�
���H�.�s����<��9�j��D�F�ل����
'j�v��˨_k8?	���S钎�o7F\�;bcc����^p¶S7��<9\��k8t��O�97I8�cⓐ��������rI��@��NT�{�R3�i�_�`�?���F�h�4�یXZ��M���=Y{g!�v�m�@�a"�7����myU�-���^?�Z�쭙��D�z�&Sӭ�ڀ�
�2E��j�@is���u"F�-��ǧ���L���_@wȗ-���:�9�#�%_�}�BQ�(��AK���J��o9`���1�~��H�)�t@���<K��1��-
וVd��]�s�D���
��f"c�XT�����&�I��x�9���^��䍣�]6���^�lu_ouP���X
�~����t��2�v�
H���}�[��ig�C��9���C߳��y�Ge7^�a��g����&��^6Qԝ���[��]b
Ry|�����d�}$�͵�u���G�a���Vڀ�k�~~��\Gt��%E��q�6�
�E�
�Gƀ�D|`���#@;c�p���MyTky�ك����J�j�c����D�����(��h������36%ʎxߜ��<��A�`�p�Z�*�>����U5q�1}B��9H���`#��	h�o�&��V���j�x��#n�h��e
~��z�C5q�6+Eˉ��<;�
�MA*l����c�rs�N_oIz�x��'���k���l�����چ#��1�|v�nk�$:M������<5�
i+�@j�e3`+�Y�v�V�$i�x���|���s�����
x�{�z����������/����a�<��2�Ǭ-�o�:�����"k�H�x������)<2x��g�,�.��P���_��6M�)*�f�7�j!����ٺ��	�gj�^$\��?>o����ĕ��ϡi���v�j�6j��ݿ;]|MJ��	߷��W�����3v0AM��ŝS�����e�oCs%�x�@-�4M��!��un�AM溿��0w�~c+IEND�B`�images/header/icon-48-redirect.png000064400000002206151163244110012725
0ustar00�PNG


IHDR00W��MIDATx�C�&I�Ƕ�6׶��Z�5ƶm�6���6Ns\��|��3���q�U��+��AD��n���
���ǡ/z�x���d��y�*k�c59զ�:��+I��(�or5YH���g��I#��5絺{b��9���g�����Z@<1k/���t@e�+S<6s��9h�0~z�χ�ic�����*˕Mۡ5�=�B�B��Q�	�7�s�j�8<O�%��*���[�	��w#=1c�Q�	���cK��D�U������U�"lV�K®1�YA��{!·鱆��ƻ�N؀�q�����\sU�j�m%�bå�44��m%�sPϵj��~�(ap��J|g�V����!,�7<�qN%ܪU������-���6�S	�k_�����F�����z�a�E��>��z�ZuY��3�>Ѽ�R5��&
Zt^f��NB�.�@�F�꺒B�EUj�q	�Ou���;,Ch�aI�I���G��
D�PK�Ѻ����O����w��~Z(M����A�~5H�+j��|1�y(Փ�i����y�l���ws�ᷳ�޷s�³�>���	
�����mo0Cx��N�t-��"���|��|�&��Z�]�5�G�B=���@g���)��(�n
܆?&Z��q���o+‹NT�/.<Jу��!\�OU�5#��.��0������y(r�V�О/�od�F�KU#���~W̐le�zZԌ�Po'�j�;q�74'`Ո�'CX��V�6�M�&ԍ�ޗ�_t��G�
��X5��b�`K���q�����e$jG������"<VtS3.�^��5`��Lǹ�9D�XlPm���c�
.|��
��a}6X�����Z�L�Z��"����բ�,Չ��!ڠ������A=V[
д�R��������J�;/7��_�qxB�յ�	�9��M�/�>�ѩ���T��G�1�u1�5���ﰿ����F��
F�\t���sb�I�j&�5��׳�b���az
!�D����e0���Aa�+�U�/�Usԭ�IEND�B`�images/header/icon-48-revert.png000064400000002374151163244110012441
0ustar00�PNG


IHDR00W���IDATx�W�,M����m۶m۶m۶m۶m�o5�]�_e�ӓN�n���Ҿ����t��5�y-�L$$��`�_5$W�O�*����"=1��DF(ZM�*���Κ2�+�?�`�I`��L�1�+
s.ּ~9,�so�8>�]7|�n}���$�[�h�����!Y@
�P	�\�N�{��4�,sޠ�
�
̵?C����L�~��(��q.�.;)}���4Lԩ̞��sG$j���@#A��햭d�
������.NS�"�J�,�eJ��U�ͺ���e������1�Q��k5d���Ww^��V�JD4*��Ċ2ó�
n�/םN�%�%7ψ��s��O�=0rǫ�ۯ~��ꉪ�=
xl��^�q4{����8Q`�`�{��y�|���2S�&�R5[HZV�����Q���]`H��R3H8'
�{p^L����;����+%���
>/���Q [�N��}��J
n���q�	��2����Z�7?����o�q��>*����SS����f��K�9U����g%�G%\A)OF�W�*N1�\�.2�s��772T�U��w��6����#��+��Lϋ�^=<b����QoW���r3"���������#wˀ���<8	�p`f�>9��4괾�!����_6Vxq�����
�:&Kb�*�W��ȼ�(�Dޕ�|r��%w�����&~�p)H��7=�|<S��/~�
s#K���c��6}�����p���Y�ԁ��A�L��W�
:�C�^8�<^������I�o?mOQe"!��]2�P��Sy��'�^���JZ�P��/�<]B��짦��Pq!G�OJ�x]�Ǚ�s�?cj8S!�O�4��_�H*�iUj|��.��K3
�3j5���|���:�|�GN�\]δa�Z�"�J��~�@�3�߄
�)b70�î�\���wo�
��R������	
H\�
���Y*J$�	EL�8���1��O�.�	�~�<%ڴiM(�~�f�00��74,X��d��f��O����JP�J��*T�3�CSˡ;s�7����:��Z�Π5$�9ϔ�Z
P�����cn*�>���}�y�(@��\���m~�h��+�&˲�n�[B{�nj��-�"q�A<Դ�G�������g�ek�RfIEND�B`�images/header/icon-48-search.png000064400000004245151163244110012376
0ustar00�PNG


IHDR00W��lIDATxԗ�3]���:g<k۶m�,,~�(���va�����3�I'�4�����|[ߩz�\V�o���<l��H��#�BN��^�툄@�	}!&ֿ)�j��vګk�ڃ���=]םaG�a�Z��7���_����%`]
�À�W|��O~�mo{��o����gvv�J���8DQd�79r�F�N��<���~�����G?���ci��O���ԧ>�"�Vw��ݸ��oM����@�$[d�!�%�8t�k�+��w����wh	��
�X�կ~���ǽ�Z�z���}��߮`ݭ��ݔ�ea�n�O$��Kx��B������/y��_~��I���<�9|�������w?���������ݙ^���M%c�
�Z���M|�������(�*��w=��o~󫀂`M�@J�~�^�)O�{~��?Қ���YJi�RF�\T��s�ɕb��=F��E1�t����<�)O������5�\s�|inu��ݞ�ovW
n�bʢ����Fv,��,h��6���w}q�L���T�{�}!P�Ip�ڝ�|�����!�C�y�lZ�ȉh�A�F�&�q�ɺ���aB���z�_�p
3	9�����r^6�r��.UG����
��2�bk�5ۦ��f(���q�{��@~�[���s��aiΈ4�D
iCJ�)K��:n�5�dF��Ԁޅ���l��@V~Pw���~�k*��H�X�����l�QsjT
�ɐ���w�e/{�}g���^�r�-A��.A3
M��kې1�m>[�
yL����s�m�}ʥ�b�C�:6mkh_�t�"�w��c���i�~۱Q!*�	#ڐDѱ��
��ɈD����hfw�f����!�z{מf����6�����6�$3�D��,�@ojl�h5��ĜT�T��~4z��Q
��@��?����0NLcA���4�=J�>S'H�b�<�U7|�C��ۀ/�䯣W9��D0��-#jBE�`A��N�E����L�`YG��Н�#�ԧ>���p��M��
���~��&�)��1sB4"�'6��_KKK�T����7����?��h�{	S�;m�AH/L������=��%CY/���56���v��@0	�Б���v{	����;��s��.~?�+&|EK"S�(�9����sd���#�L�"�x�5H��@����9�8��KP�&��l��������V���o}�[��p�
��h�?n�P8餓�(��Ԅ��[!ʕp\OO��y1��b�@?��4;��j///��]k��$�k}�m۶}�ٶm�����Vt�m۶9��ImRIf�?���zݯ45�w��իC�9r�d�u	D�1^-��fs>�E����G#�p<�/n�Ϛ�&�?/��֭[���n�~�U8	?
�����zٞGC,�%R���ݻ�BCC�-J���=��"8j~�3��UҢ|��GO�4��ѣGC?~|D�Z:4'#��.�?�9{��;v�
5���ݻ���5��첱bŊ�H@�pU�rg�b��u���ܬY���/��!n�����w��ts�̉+T�P͚`)�6>d�…�E7d��96��Ugd��q��`ȧG@XhO���BC��������l߾�*]l���0,~�5�Hpy����؁�p����z�r��M�:u�H�~��	N@�
80
�a:�>�I$�����lCQ�w~7ӦM$�t�����gϞ�[�l�\���ѣGc�XqOh*��b�l���u`�H4i��Y�z�B�������Ǐ��ر0~P=��f�p9BK��Y2�fذa6���V�J�)�4�TsTɕ+W�i47�	N�
A��i*�(`<),:�_E���&#`
���<{<�m��"
�X(�X�4h�\��{\��9H�B�t����W�^!+iԟ��0n==�b=x��C�֭[�(�xZ���0s����Q�yߟy�G�yރA�!	$d�Yz����Y�flذa�
T�V�6�Ǐ�l߾�B�ә�~��S
��W�^���˗��_<�3�`5��xM�g�T?�Ev\�T)IEND�B`�images/header/icon-48-section.png000064400000003015151163244120012570
0ustar00�PNG


IHDR00`�	�gPLTE�����������I�J���B�C�����:�;�����޹�����Z�[���A�B��ն��R�SE�G��״��Y�Z���P�Q���K�L��������������>�?���������N�O�����ϴ��@�A������5�6)a)��𚛟������1�2�ٿu�v&[&���j�kr�sr�s��䚝�������J�KR�S���������S�Ty�{��𧬼���)�*��������������ְ�����1t1���[�[�Ӱ���`�a5�6I�J$z!���g�hD�E���L�MW�X���G�G���U�W)j*a�bc�c������^�_��߼��3�4A�B7�8�������)})Z�[�����Qd�eu�v���7�8h�i����������ѿK�L�ӭ�֐r�s������-�-f�gOfQ���c�c���f�fi�jO�PDuD���Z\[���nnr:b;y~���|�~�ܶ���B�D���.l.��LP�Q�Ū���fjg^�_f�f�ѯ���������޾Ҁ�٠��e�{�����Z�[c�d{�|:�8d�dk�kQ
B�JL�Mu�vJ�K
X!���F�ƛ������J�R��Ʉ����ؘ����������͉�����R�Zout�ð�B^tRNS@��fTIDATx�σ��:���c��m�׶�l۶m��^����>���`�_����mm7���n�:��K�|��$3$I*E�◌LJ3l!SJ�P�ґi)Aw�zl-e��
08H�/��X�\��C��B!������M]��[���=;�j��,���G߸��N��O65Pa�����~��hS;Z_���+t
�BLN�Ȼ��FPW�jW��v'��FYrN'$p���?`	���].׆���I�NgLA���>5��6v:pf��
��
�A��:��:�A4F:�k����F`~9����C8@�un��
HE�����"�ҙy|Ϝ�&SQЋ��K�1OT�a��
~9�"�V�S�|jv>Yz�Հ)
�ހw��g@4З�o�K�8LC�C�y>�����}j�ĘU`��*@
��I�����2�/>z��ȃu�@��%�r�S�G

������0Kk��)��AE�Lv�ϚոHC��v���Y|Z*�A+�EQ�K�v��n�x����ʹ�Q=�-��Z?w
8ʘ��F��k)�~X?��A`Ϝ�ݤ��5#P�id䡝/�E�~a+9s�Z�h����ϝ�Պ������ʉ���:hE������=@��p�������~�C`8*�����?m�yS�O�17���10h�0�
���?��|˲4��#|ɢ	l��rt�����_���
�:Ll�Ѻ��T,��LE	D%A�y�]I�ewU`HT%��x�{YOB��c�*��ݤb��n�
��tn0����\�o�
T	��O�}HB
t�IEND�B`�images/header/icon-48-send.png000064400000005243151163244120012062
0ustar00�PNG


IHDR00W��
jIDATx^�Z	l��fw�k��>����
��0�)`ZATZ��*��FH�GS(

�!@K)MS!�^�-M��4V���#��&��c���k�k���=���{�x�^/�ڴU>��{3ì��|���A�/ÀO����m�y�sF�
�y��40���H
���E\�>����I#��)$E��(1�C�%����)�a[�n�?r�Ⱥ�Ǐ�~�…3�.]�|�ʕ�����ӧO��D
�l�_�j��4��X�zu�ԩS'6,'...;2225&&f4Amm�;+V�x@���פ�S�Q5�4b#�͛7dɒ%nj3�j��EEE�����"�F�L&��ftuu!�ޝ�Q`��h
P�>O�,v�޽�322>GB�ɫ�l6��A`0!��-�k���b#����Ht{�u`��*af9�#�餱c�N���MONN�F,�R`(��
$�2I0����/�^�A��V�cD(@��X)�/]\\��:���u����rrrrSRR&���'��ޤ9S��7}Ј��Lj6�F��c͘�i�Ĵi�rȀ���5`�q'N�ؑ���2B�E�Gٳj��]	�x~.�DV�W�Ga��x\��@Q�=�vz�XHdff��!�/�6
f���KX|�<%��Y
EhG�z�ڹ��Æ|9w8��n@	p���)#F	"�m
YG�9C�a���RS3h�Bb|>"ތ��a��<����8��j�"SL�"����Ҁ�B!9�=a�gn�">�w�����֌��n8�$$$d���n���~�Z����ۥ�8L����6��.o��S�Ab�ʕ�E
�TWW�@��*�M[<����q�=T5w"�fFVb$}1bD���u
�.^�h�z�=���"�:�4��.���������9�RHۉ��$;Oz����V�*��5b�h�l�	�δ�|OFa�С#5u�0�m�D
i�{n
������0111S׉�hoo�*�ʈ���Q�p�-^�s�F��щr-�u�'555w!�����~�]���I�O�����{dP�Վ���&CWț6mzV�O!:L�@�
z@OU�6C���A��&�ۢ,<��A��#�E�'�
#��0��!�%	:K�k
�'~b/���z��ʚ&ܱ;��E���On�b����E�G���9�q�H����
:��d��ʪ���6��]B�,dU
�^��H����upP
٬fd�%a��8��E�
�!�(.��3�Yhl���돗���8�d�Jn�G�G7�yh���XrT���ىz{{���l~�a)�-~�ǤRn���ަ�*S��aos�5��O�V�Û�b��v��I�k}��>Y�J��K�;Q�4�yq%{��Ri��T�`��rJĺ����t��Z��H,�4럟�U�'�l�Kسr!G�n�NdQ�"
�=��4�yF�Qj���Sw���YE����өp�dm^��U4�@·5�d�/�q5�A��/�7�Nd��8GL%���4�����V��.q��%ڈ��16��^OQ�������ߖ������w5?W��c�]B	�X@6<��"��+�5
Gii鯩��Dt)�q8q틎�;�N\HJJ�L�)k�`|z�Z<u/l��:��X�d:N71E��g��i�<�����G5�F���?���(nZT\XX�����
3F��n��)SH�9��
�SI�R���$�ƽ��4�Q^�(��e�"�|�Ji�pb�2�n��U�<
�=\Į
�
�汋��k�<9�������2�Q�$b֡C�����=BZZZ����<�^��8��+9�������}��B�����w�֪��4�xO���=F$P}/���[���f��':Q3�N���GC��B��=9��Eԁ�~�a#�+RÓFX�I|/���*��[�>�9HYq��pp˱�SQ���k֬Y�v���@ߊ�ZW��1�<dg�^�����_/��?��B��K@��#����
�BE�"ƪ:�{
P13UB�҈���s.^�|,=��[1��Ȉ;}�"�2��OѤ�����	O��LzO�Fj�x���f@#�v�<r�t���*�S�a@�G
UE�`(n�i�4B���0@l��F�D�H&y�E�yH���q���E�y*���>u+mnn�5j�D�j���,R��`��s[�������)�/�ip���
�/=uuu�s��ԕ��ҳ������Ɩ����۷o;._�\�����#��7�"���)��
2�����o��
�5�K|r�̙2�Q����Q�R�v�mv����tvTTT�Z�_���E��Q��8xvh��L�����vy�7��K���!pj�tѦ�a߾}o|�~��q�\n�������B������ϟ�G�`�e��.���X�iS}�\#�	�^��]<@@���b�����j�;V�PI)TC��_R�~Y�Έ�,�kjE����r=����&�F��AP-R�~�XI�NepG�U�$.\�ה7S��
���G��"\��ՠj�a"��t�#1���y�`=�z�$E�/4|�m�B��.�Ut��S��W����ʧ���z��
U�IEND�B`�images/header/icon-48-static.png000064400000003310151163244120012411
0ustar00�PNG


IHDR00`�	��PLTE��������̵�������씔��������٪�”���������˜�ϥ��X����Д����R�Nj�ԗ����ծ����������Ț���������ťd�����Z���ίp��K�ˎ��c�Å������ۣ����֛�۟ѳt�����ZԵv�˭���۽~ɪi̬l��羾�����ě��͏���ŕǮ{����������f�˓�ؤ�ͤ�ۦ������]]]j}~׸zþ��״�ܽzzz��u����{���ػ|ƪr����Ͳ�۩���~f7llk��֥���Κ���ħp�Ӥ����؝m���k:<n�¥kbpnttt�Cջ��Ի��a���о��š�Яǿ�����ʨ̶�mX.]v��Ƣ������8f}���u��ɸ�=q����{lSfffOW[iU/�����Hy�̵�δ|��ψz[���<��nz�&SdHegv����s$Wk��l���|������i���_��M��A���q?JjlW�Ğ��ƽ����lbLH��;agtpf_vx��J�x`Joq\su���ø����w_3�ŌPljZoo8iw���Ai}n��ex�dz|{}���K���]uwsrhNl}o\<���p��^aR���ֵ�Sf`���C��t}��ʗ�����˖~Q���6��ywsbhjxm[���x������κXqm?q�crrMMMs\1־���~�����G"[t��p�߾nw~�zlmeT��ѣ��ztf{c5���w1�otRNS@��f�IDATx^��S��H��M�شm�ضmsl۶m۶�O1���+�tf�n��z��}�̉XU^n��+��R~e���FG0�g��������922<::ZSS���dr�l��>���s�5����P~���pM~ns�T���슮��;6��~ߴBpsO�����G������@����[�͗m=2�,h�nhhٲ��i����p���i�ժ�{�y���-X�]/O������Y�)��
�N�3��3p4�O��L���u@aj6^R��7cr�а�g�5OQ��У6�����!Q����Ȣ"EQ*0�j��+|Xb�	�
@@�eE�$N�fP�&m6j��0��(}�����6[L�ր��vRc�v��
Ȅ���
&!�
7���‡9�9;hBK��1�;\.�^;�o��5H$�{nB29W��#x�	��f�R2~<a0�¢V46w���dY�jGe��}����(�)Mq�����	�����0��(�N_�0�:�q��L�#�O~��D&���Y����f�,UUU��2��_����,��!5���p�$4�K
�Lpz)`8�����.�|���Md�7(p~$|�8zM��o(�	�)`�Լ7�$��?��P�,.�W������i�^w�J<��M�P��U�T�ԃ~#N
"�P&s-}K=C`�3�p�W�_�wd'ϵ�
��P�ѩ�%������/<~�"�d�QᾍQc�)_�0�ͻi֯����腗�x��L��4γqB��OO~�}��y�E�֮�����������d��,���o\<q��/=�i��]�ҽ��[\F��	�{�.+Z|I�`1�]�}��������%m���xO��j��bnM�o�a6&(x��Zܟxֶ6�?>x�����IEND�B`�images/header/icon-48-stats.png000064400000001373151163244120012267
0ustar00�PNG


IHDR00W���IDATx홃�<F���mc{�IԶm�V���\۶m��{�ٳ�=�K�h�^�[�����r$����	BC���p-�B�i�ۚ9�p��7���9ot�.�T^���Ʌ_�iډv�u\#��x����	[ڍv\k�姼#(���[ڍv\k�T��Ўk
h8�
9�2��Y�-��C�G����!=����M5�i1��V�o��?$x�Î�:x�ˉW�]x�ǍG�*�z�o���o
�P�pCx�ɀ���e<Ӥ�{��`	r<�l��ǫ�n�x��n��F�.�CC\�A�!��D�1��	He2��d�9���%���F���������0FFG1>>���I�|>�����Ȁa�bF5�|A�RE�<�����1�:,V~�����눡�C�3�n���
�"	#��a1��dX*�t&�l6�\>�B!�R���@���a1+Q�I����ٌ�岈'b�dzZ͛;�����7����^'P��T�)��3�h�
�BL!�S�)�b
1���`��S�)�$�D4��A��
gJWjw�<^=�5�ζ�V�]H(�hǵ�����7�܀H$ڍv\�拾���;������9�z�b��٬�*�WT(���P(�A*��T*J͔?k�#͚#N$\L���Pg83ڜ4�m������F��t�bIEND�B`�images/header/icon-48-tags.png000064400000003126151163244120012065
0ustar00�PNG


IHDR00W��IDATx՘p#������pÜ�aΆ���2W�2˝����C9e�q��2)e�^8�2;���*��Lv���zu�Y����魎f�G����4�z��+��	�J
�b�3�SX�{��s��1�+X�o�+G�
��x��|��>�Wp�rrl�,�O��>`T"M\s$^�`�>u�s�3������_����X�}�!�KI��=
��/�������1��A{&z�!��z�+>M�W���/.�|}ԩ�S��ogk�Ɨ�:�[�t��#Z��ٱ$�����k��=���$Eq�Ok�[��gE���h[z�im�vd*�`㎐����|�d�%w2S�Db�(f��e#"�~*��jй$��E��x����������/d�?�P�2�N�������:t����d�N:�$�|�=�Myx�O���/��4ގQ�P-4��ɢ
�/���<N<��1|��3��C;�%��N�������7/�H�Gg
E���[�c���7�����m�8B�u7�J��ג$��l夥	&���E�=<O�������ߌ�U�>��,��R.>�ʀ�-̓'+V�m#��Կ~M�?3�b:��s�BU�d��R*q8#0
��q��ΐ��g�WRT�����򚁪f�x����#)'��ߵ�%}`��[�=�|xy��?D
7�J��)�Mg�mP9%�D-��e�4�g���]qx�<�;
L��۾籒Hg*@:�����*E\�����cW����yP�r�A�����z��{Z���r�|A��C����ô���sG���	�3{��ѭ�,x���
�s��G$��J,�Fhٳ�e��2ɉ]L�x;oy+���J��D��=���e�v�cCVy���?�Y&O����r�(����"b?tP�v���i"�5����Ml��!��2�����	�AQ�}%��
<����^�Eߋ�JSv���5*-���
L0��4��t���
�UB�y
�ހ�F���f�Q$��얡���e�
���y��5����N��tqA�V
��x��2Dڷ�
F�
67��hՁ���^��*uʦצ_64����n@j�R����D��0u�)�2EBC��ij��H�Qs���?
�j�������o�)�{�1׸!kn�}x�Z��
׀�����4�H��cr���J���/q"3^7":��o�M)�@W܀8y�kz�zǚ��!�fU�!k�\�=���9�7o����-�r�i��ǵ��:o�Ϳ���5����w�3����O��
����E�Zy�~9�8�v�
_)��u��6�@�By��Co�����}@(G�A�]�ۀ�W}�F����ސ�fN�����a@L@�&6],�<z~�C��.p�Y%p��I1�_@�^�	�S��Ą�A��`��2Mh@LXc��L񨧚ˀ��6���5Mf�2q�ۉ�Y�UEp���,IEND�B`�images/header/icon-48-themes.png000064400000001533151163244120012414
0ustar00�PNG


IHDR00`�	�PLTE�����������������������������������������������������������������������ξ����������������ƶ���������������������������������������
��)��3��s�z�m�<��B��E�����G�����M�����N�����S���T����[��c�֙�j��q��w��>��C��H��U��Y��M��^��Q��b��e�Љ��w�՗�؇���y������{������tRNS06`ox������������V����IDATx^����0F��2sM����������(�|����ƞ/ɉ�G���w�Tq��|��	�g�	��ڃT�x��pF��U�`�Y���!%�N�}��Bxv��Bxz��Bxr��Bx�QC!<\����P��j(��5•�
�����d��V�4�­�Q�@��<x�С�>��!�nA����D�6�h�mR%�Y���V�jeYm����@C?	0t��$"��G��V��;��s
�H���ֱ*q);&!b%�3C��TQ6f�֘2ݞƶ��{
�B@��>D�1`��<��C<����.��q�mU�(�UDYA4��E���{a��]�(�Hh�1�W�1�R���BVs������M]g��)�˧̯�P�e~�Bx�&�?�ۗ���P�_d�zC)�z���:�4�I�?f~���?}�WR�p҄9�4��u¥S����Z��d�IEND�B`�images/header/icon-48-trash.png000064400000003663151163244120012256
0ustar00�PNG


IHDR00W��zIDATx^͙]lUY��s����mK[����L�q�O&�Px1�$���>b3J�0a��|�8�13	<#ꋏLH������@��~�~���{��˕�}9�צi�q����6'{�����[bf<�A2$�@����g4zzzR'O�<p���C���FD9!!�*�Ϗ2�sss;�A��ӧO^�z���/_>w�^�D�ZΞ=��H�U�9�u�ҥ3G�=���}���ç����%�<��/��������W�\�q�Z}	@�y@����{{{���
��)�2A���?~�
tF8!"wQ��d`rrritt�N�\F.�þ}��w�F2�DE��bSSS����}pp�۝����()�'-�=z4322�a�R���J��Rhkk��d����Ӑ����{�ܹ7�;�
���`�gy��ؿ{���%A�}��@XG�b��?���{�N��o^0s�166��������n��o�>���f�~�:@����6-@6��mm=���]�|{�"�#U]F$@kP������e,M�a�=��h7B��Z�lv~~�d@�12Z[[
7���;c��hd����A��
�͟𮀗����i����5�i)F*
,��EF�l̓��ri�m��+/��JD�]/tC���A&�y��e�T��n?Ƈ�,��׏���o����8���}�	�ζ��Q0k@k|�dC�Q
�`����F��̼_��}�
@�m��Dy0���t�TR�m
�Q+W.ؘ���Rvg{~�<��
�p�a����RB�)!R�0b}?@	!HHL"�$l�������†��t�aQ|2�|*8h��
{P�,�P2q#���qy�����
�RZ�����(���i��
n�L;���$A	a�xA��#��b�����ޯ
�tu]h�ك�:��+��\<�1�ck���Gh�	Y�Il�X,�1>?��SE,��_+���W7�K���z���v"�։ls*"�W5*�����#
-"��0�ZD�SW�O�M%Xk�f��d��D�M��`A3��a��\�f�yx
W������'ؤ��7-��~dh�&�m�:j��ҖN���6@\B���g������]g��3�#+�R@��S`���77UB�F���@6�ˇ��f]�a��&6�Y#3�M��.<oJ(6��e�����4;�s	u`���h���nb��7l�ND<r�K܁X���9ȀF\B�sUB�������a�ж����]��L<���8���gWB��%�(
�=`&�ed��s�B�nb�M켍��Țx���KN��Ɗ����A����!hۮM����}�m'�v��s6�ۙ{�O�d���C����n�Q0GjǷ2�G+��QH��	
*D�~�@rv�b�q�f@뒎"[B��p��U&�=���gF~�#�'�Jj$�@��U�H�%
D@|+s�2��:����67&&"_Ȁ��:~��%f��zF�r�kl���BFئ*��z�zl�]])�Z�†����Ĥ�6!/l2��ܬ5�M���&1n��G�m�����D1�OVyZh�$�D�?��0�"��[Qɖe�-\��^�C��*(!�1��5=����B�ҝ��xx��jí̕�kJ�0���6U`Kؒ�/�:%dT���`�Ƶ���W��\z���9�4a1b�6i���2JP*�2���K�L���w�T"u���(�j�8�v}c�;�‹���)H����0&�~�*6R�Z�}�ߛ@<�k�4
�Y{�:�E�y�5;���H�`H�IEND�B`�images/header/icon-48-unarchive.png000064400000005717151163244120013123
0ustar00�PNG


IHDR00W���IDATx�We��6,�4;�ݡ�03����߿�%p�03?f��=R�֌�^��ޯ�e
U�[�.l�-�%��D�%��40`�3������0h�e7�2�An�q
�rw��{�$|n0�Pm���>�b�}����R��.|�{�˗a�S�u
��ŋ1��1���l��Ȳi��8HI�iCk���qew���QU5�ϫ
ڄB)�zY���[o�c-$���*�p�X�F/	)����-�uU��+���o�qH��
!�`�B٬,W���ip����|`P�l^B�s`�4���&�r�)�������=?q�`�b�4p�2
gPpx=b�R�$����V��A��$N�V�W�eKC�WD�,���Q�<y
�J	e�E�ӹ��@<�3�J��1�M�1�nw
?�
��f(�Sc���8u�Zǫ&�t`��'��"��
��
lmnb0������"�qژ�w�A��ʹ��C��V�xx�hOw���z%��]��Uh0����dBF�Ę�o�|_��ͯXHD#n���[��D�gT	hErVQv������
��g���_7��Z�4����
��L,܇f�F�&(˒VZJYdY���?�
��ǟ�c�̙�h
�Cx����)�eb��O{�'(�����R2���kg{�<�v��p��9|����
��B�L\G���,q2J��eiF�b1
�����'���8x�<r�
h�Q3��g��1���SV��Lh�Zy��p����‹/<��>����D���(��	?�v�JA�q��X,T��i(_-�;�G{�}.>j@�O��ѳ	w`c�Yk �d2!��
KS����6�YϺpM��"	ZA1��+��ʌ�M�0hp��%2ςL��?�,�������P��+��8E�7A�c�snkk�V�ӧO�v�G��ݏNѱ;8	:~��m;B����g�A6�
�v�t����=�,����W�ԩ�ȋ'N��p8@��smnm�@L���*�5��b���ZL��&�
�eL+�Gt�UZ3-��-ȫ/��\E��Md.4���n�/_!N���PZ)߮�c�J9�N��B�m�{���ϳ����Ň�������)tT�x��[����0(��ó�g`6��n������MC+it�����:H�~��EDwvʓ���E��ΰh���P7����,I��5׶m۶m۶m�ֶ�ֶ���n���3�?�LOu%�D�C����k�%�
Oo�l��'���=}}�{S�	�s58�ȃ:4YySJ�(
x�qa�u䦶��t�Cje����p��귾�1.�q���O?�}�����L��f�Ɏij�d̶��b��J%��r��/����|o�y����BN\}�Q��u۝w����δSO����u�o�9��?.���+}�M7��_i��Sy�R����f����+��6+2��i8|x�����J��z��滟����q�ƙE�M2��S���3s���x\g^|��&�lת�.��^HSN6��P��<�����;^����U��,0Ϭ�e�il�uԾ9�V��~�}Ɵ�cm��jz��O��������v�aG�Ke�s�����Jg^t��V_qq�t�N��c�!���2~ψ�
�yL0�>�h+f�Da�Z�g((�ȏΉL�[�&�A�?�n��(�z�Y�������@����Y���W�_{��\�m���8zw,ɾ�	|�H1��s���"k�ˆ8Z<�Dq��)G[��E$��7��:�Нm�گyDϾ�<U��M�k4`��}F�w�(
��G��b��KI6C�r"��P�;��`"_�^0���u#��p��5픓�;;����%z���q��c�7�5CaVI�zȐ���<�f0N���C��k�=�����K��zᥗ���|�m���~�Yc�%|�����a߁�&��J���CV&�����ۘ�e���l�$(n�������m���>�3�R�/C.S*�z�cH'Kam�!�5��]��	@1�j��eI�<g��@�Ƀ���|r��|�9f�E�O3�&�h�h�>�eoRs5�D�,�D6.�R(��l�!��sńf	df�g�cl�Ѧ�غ��7�H�M:k�J"��"�h���hnaIP�l*x�
���E*�3J{`�i+���Y��J�샏=�n�ȯ��~���4�M�p�9e4j��[9H�ᡠ�P*�����������ʐJ�¹���g�]���p�y��o6Q�\0���H�|�ڐ��B��'0�HeX�!�0g�?�9
[�
�e�B�����q�����"sq�`Q�R��e�*{&�%�$
���Ы`���f���_f9�Y�Ϛ�(J�l���
��?W��c�����/��B1'`!�S�ˮD��|�/�$���#GY%F��k6ǗCBa?����*�v����n���m�d�����z|ׅm���ps���	:G��;��-e8f�2��m�1�56S�h��o����O=��n�E3�2�K
��8�N3�����P���<>�/��
��f�gêe��Jb<���{��j%St��6��/���Vm��kF�@����4�M�Y�s�������}-�ɣ\��k
�ύ)�|�5
v7ܨWVWߪ��O��#��Z�V
%eXc��$�Y)R��CL&�#���9%����vq}}���#\��css�l��@�����@		�4�F�K�p��C�75�{w_Ka���Z�4��o���h�ޠ7L?��El�C"���=&����g���������
Ǡ*
�IEND�B`�images/header/icon-48-upload.png000064400000004201151163244120012406
0ustar00�PNG


IHDR00W��HIDATx�p�J@_�$ˎ��ݟM>33�13�]1333333,�gf^fNb[�f��UI���:�nr��:в�~�3���_�0��G��Q��.�Sq��.��{K$z�X
��
�ɋs�XVQy��O:L��#�`���s�1�c�X�K�:�_�MeX��p��2�}'hx�I���O|�Cѡ��b�NF<	��E�&Z��{DD��f���\�5g�
S"�����U���a��`I;� 
��hL�E�c���Xo������M����e�K��#�L�%�Q:�N-3!|��M	c<�am���z�����~13�8sH�_?��C�~�,�K�@%�'��5ح1ձ����7�,p���A�[�N_F��z~�
I���u�x����Q�6�'�c�#4D�5�؄��I	ܙ3uB�����(�9�'��YK��(�_|�a7�|��?䄑S�f���������-�2�y�ݐR*��Z��[�3耔�eD�}��f�5[�:����O<�T��_�U��T��/�K@蕩k��6�*����Y�x�/����%��zP��i��:Hj�����)>�UL"��t����w��K�V�G��+�_"b:��,�{4�{��:�"����cusRb��	�<SBDw����K���,�}����_rtP���P4��x̲p��|��?������U_��k>Ju$دDū�pu�t1w�}�]Y����G��6}����	����U��,����|Q-�J��2���٭��N>�$�HʏWO���V�*�n��ͳ��3���<��go;Ց<	��&n{��N������$��<�pS%Ibԑ)��3���x��?�\��I	|���x%-Mmb��0�:�i�w�Q@��.
�C@-g�6��V&�Z��K\�\F�=�_A��Ak'�:|<�)��+�Nie��>/��8G���x��>�|p�q���/�gۿ��	�(*��?�6��$�,�;Q-�#�W1��'O�l����8����Q�;��O��}U�4�dXg�EH��V�ɠv���LfߘP����=6���VAI��Ck̊��w���*�4�/��L�	�����g�UPG.�IӨ���IG�Q�*�C��$
��Pf�K�8x�dړ��S�S
�T�5��ˆ*{��
�	��K@fw@�4@A]�k���i�=Y�����R�ŧBF�R#OBjɮ�2��A+�&�~��6)����4
!�؝�]��L���O?_�i���.b1�^�게@f���ۚ5������'*���eg�Lk�q
kv��y��4�A鈊0�&�
��n@C�^6`S��7U*k2�I�Y���᣽�Г�f�Nk����?�9�_�j�^mڷ��]�a�^�L�x�Q�5&l������yeF�>�R9�������(���nDS�.H'Y�\���jb�
�rr��%�ZR؅���	�h��?�0,㌲�a�#Z��K��������HƉuP�)��z4�{�a[�K�t�`���'��Q��:�����V���qc˯H�Nl�v^r�t�yt�2l*B#��b�\#a���{4#���}C�֯`D�0Phs����?��=�ͤIEs�
��e%��5�l����b����V��ÁU�T��:N�MR�]�~P
C�1$I��Un��r����ˊo�z���c�?j��+�}���&��E8Prc�</���#"8�0����qӾ���'�ӱ݇���4Q/�4Xu�/	��h�Y�؀�Vy��s���w�-���s�8vt������,*W�4&�:�R��(�v�bz�9��F�m�}��m����hq}�n2!��=�^�bq���=g��8r��޳i|�
c��%�I~���hK���!̌L�?��o�%L���-��as"������t�
L�$/
�W�d�@
���@��@�6����wM�X�gf,P(%����L�b�t��,u@����e4�W
L)H���:�]�c$oQ�=�M��#�#E
��MNH��,�F2���IEND�B`�images/header/icon-48-user-add.png000064400000002717151163244130012641
0ustar00�PNG


IHDR00W���IDATx^�]hU����I����"Ֆ��
E����}�.(�@m���@%ƪRZHQ)�TԢEp�/�K�'��&T���6-M?���n�c�'\谌f'ղ#�lΰ��s���M�)���4�0V�i��Ȏ@J@)%��d��9�����
_r�q�>I�aB�#
��L���i'9-�����2�	b�Ri�Ȃ�
�F���ݼZ���P�����)h��,,�و����uD�(D��B�"!�RP��b���9���~�]�Y/4B4���+���-$8�q
t>p�Ѱj�EE"�X�.4Ci�	��E�o��D��n�0?��������"1�q�?*p�u�9K���J+A������Z�D�\��n2�Q�]��Nr�靹�맑�B͍��hr�����M�;�[&l
��`�'v-Z'�@0t����>�m�|�M�$�#�;�o�+姓y�ڡ���"�P-
4h�w~pQ~	����ky��9[@_�Pb_7m�!�R�n�N6�v#~
5���M �h�1�x���|1U@d P0�aӂt�z
*eP
�Jg"D����,I��x�����|9���@�F��
ej��*��W��
�>�OκHߝG(�;�m-���b��Mv�j����P�$"M=�
�#��s0��C#��5_��o�5?SM��bI>>�x�0��G8r)t��1�S�޸�P"���f硶��/��q[GK1�{��a����	�Wa�
,΂,s��E�Z��D
�n��"(��1[�D�8(�}���4�5]��ׄs�����e��P.
��!��g�@��߲����y���a(�V�*\�jq��o��~�?�;'��9l�Z�
�*�G�Ƶ}]�C]W
�-
���t��ހ�9�R��O���k]�w��VZh�B�{�ic�W?�3��|��Zx(���o��]��h���5����Ǩ0�x�P�lbT��_�E����s�s
a�ƭ��x��Vv�ڿ�������^@��"��z5>44��sMN�_&:�6ժ���G�m��V
�r��u�(�6�*#Е��q�1����@e�e��I�f�em���o��L���#��n��͇�oqYl�L'�ٺ�����T`��a�2��d���Y����U!��{�
���AW��[&�s�yW���ݱƽ���
�Y�Y���$4`�����%_�AiY���@P�Fc�39<9Cd�`�Au�,���`�\,�	C�a��4�%�2@X�å�P�`m����Bg��A����ؓ�փ���o�l���6^�t%"ad_��I�@�W�BP��5��Ϡ��$@�n���_�Y��)zN^IEND�B`�images/header/icon-48-user-edit.png000064400000002717151163244130013036
0ustar00�PNG


IHDR00W���IDATx^�]hU����I����"Ֆ��
E����}�.(�@m���@%ƪRZHQ)�TԢEp�/�K�'��&T���6-M?���n�c�'\谌f'ղ#�lΰ��s���M�)���4�0V�i��Ȏ@J@)%��d��9�����
_r�q�>I�aB�#
��L���i'9-�����2�	b�Ri�Ȃ�
�F���ݼZ���P�����)h��,,�و����uD�(D��B�"!�RP��b���9���~�]�Y/4B4���+���-$8�q
t>p�Ѱj�EE"�X�.4Ci�	��E�o��D��n�0?��������"1�q�?*p�u�9K���J+A������Z�D�\��n2�Q�]��Nr�靹�맑�B͍��hr�����M�;�[&l
��`�'v-Z'�@0t����>�m�|�M�$�#�;�o�+姓y�ڡ���"�P-
4h�w~pQ~	����ky��9[@_�Pb_7m�!�R�n�N6�v#~
5���M �h�1�x���|1U@d P0�aӂt�z
*eP
�Jg"D����,I��x�����|9���@�F��
ej��*��W��
�>�OκHߝG(�;�m-���b��Mv�j����P�$"M=�
�#��s0��C#��5_��o�5?SM��bI>>�x�0��G8r)t��1�S�޸�P"���f硶��/��q[GK1�{��a����	�Wa�
,΂,s��E�Z��D
�n��"(��1[�D�8(�}���4�5]��ׄs�����e��P.
��!��g�@��߲����y���a(�V�*\�jq��o��~�?�;'��9l�Z�
�*�G�Ƶ}]�C]W
�-
���t��ހ�9�R��O���k]�w��VZh�B�{�ic�W?�3��|��Zx(���o��]��h���5����Ǩ0�x�P�lbT��_�E����s�s
a�ƭ��x��Vv�ڿ�������^@��"��z5>44��sMN�_&:�6ժ���G�m��V
�r��u�(�6�*#Е��q�1����@e�e��I�f�em���o��L���#��n��͇�oqYl�L'�ٺ�����T`��a�2��d���Y����U!��{�
���AW��[&�s�yW���ݱƽ���
�Y�Y���$4`�����%_�AiY���@P�Fc�39<9Cd�`�Au�,���`�\,�	C�a��4�%�2@X�å�P�`m����Bg��A����ؓ�փ���o�l���6^�t%"ad_��I�@�W�BP��5��Ϡ��$@�n���_�Y��)zN^IEND�B`�images/header/icon-48-user-profile.png000064400000004241151163244130013543
0ustar00�PNG


IHDR00W��hIDATx�p#����I�A�c���a�6��
B��fN1���|�=���|�[�5�f��E`W�䑥Q����=����/�(�\�c(/�(�'�i������"#�~p��Jx/�	��PJ����X+M!K��$��
\���X[@����i<�p��nC�H
�Bh@����&D>ߏ��[I�ȗ@�O����Ii�0"DV��L]�5�VA��x8Y����Q*�b#���e��\���0�C����T�%ゲ�h�!h-���Uwq��#`"p\.xl�M��GIy��A)�@5$4�>�3��|3]�u�r��`��U�Jd������W7���/"�Ͱ�L������d�E+�8
���(Y0
F�
���.{�[��)��cٴ�2B�ILj��'y�]�4J;
�߸�8��Q�u5���˒	[�u;�K��2?U_8?�r�ˆRhV�D���'�*:�fz�p}��8)�aBa�f>�[&:�"���I)��4a-l�c��"����S��1W7��򍡱Zc+.|��Dmld^��
=!����������е�4q�Z�v�V!�d}��bm�����V�!#���;�x�Kڛ�y?#��d6���B�֚��|v��(�5,T#�0̺om�㇐?b
�[��wR�n>�V�fQ
X�B!΄�{����z�s&�"#��U��
��!�/
J��1�jJF��I`CL��&<�RhH�5T�<�2��j�ץ]i�,
JPV!V&r�cե}�E
�� 2`%�n�`v7������8
�C.;@q�>>��).�Z��A;�J5<W4�3\�2�|�}��(�9g�"K�Ur�[��kN`♧Љ
�5�sÐ"	���&��8{�)d%/�B]=�����6N�cX�7�t���T�D(�U[�)$�o�����`����5Y&���vriL�lm���4�w'��56�A�ì��!�0!y�h������Ol
���(�z8D7/{�Z�	P�%�G���Kb���2F�i^�7�����1�)����~�C���vz:˾�&Ƅ�y&�s:�\x�}�Q
BrT�,XݼLL����#�q�_��1}����ym��ִ&Q����3����ǷP�z0�_|�0V������X�O�hQH��1��3V��!3H_��("�Z�uo��fe8KiA"�
>��5~p||��An-؈~P�a�޼�@��bn
�o
C��g�~A�v&;�
Hr�RXLJJ��b΀�����+�D�LDW���t@���h��'
�"�>�Z$��1V
�W�Jy"��R��ҕ�<���g��0rt_�q�B|���
1�N�M��ܔMy�0�a��.���i�+����5��\ˀr
�ק
Hg�(U�`ÛV�J�D��-���5,�5$�H�La�d��g�v
�c�a��c�߉5t#30@�F*��|g�������Ki����(�����7#�ݘ~b�>��H�|��5���kV��T�ɫX���yI�P�ߏ�1q��Ǐް��^����?��x53��Kщ��
�03{����[Qf}�4;5��Q.iLeD`�T���x�
������{6�v�ѱ
��b`h73T/~R+Qj=]P|�b�b��Rr}638�f�P�"j3HX��@B������r�O�ׯKk��3�dG�(J3��a���w?�#zB�؍i�ϧG�j�
�F�beI���,�zֵv	�
��]���A'�y�#�#6�����2�9�t�&��0�b�E�����vю��g���R
��T�6b	}���o�1���[�Ӄ��8>K+��7��T֨��T@�M�����_�o$*
�^�Ԅ��N]�qAipR415�Z�	�je ��B�I�����/~@+����e(�b<�(5^י�!r��(���O����Lv�z����.�[�t�I/]��kgy�
��@�(��j��!
x���xu]W��ę�e`�[x@Rm;����b��:�����Ҁ�K&��&YR�}�@��v�k�le���T���߶=G�5u����}��.P	�߾����y�¿��P5!9�IEND�B`�images/header/icon-48-user.png000064400000004336151163244130012112
0ustar00�PNG


IHDR00W���IDATx^�{l[�ǿ�{���y4�6M�Җ��ia0J����2PaPĪm}(l
A7Z���&1T��ʐ`c��v�ie����B����i���}��G��N�{�9�][7����N��HYI���?���q�	����4�~��,�Kw���z|Eh�
p!�nE�ݬ'����+�U�=�	�	���Zh�
��D��ɳ=�b���#7H{IY�檻�?]yI͆��Y`��\w�Cl����
O`/J�Vd����\V�Yp)
����J0Ç4jp���D��X�1���������?`Z�L�m�>r�}{3:�N��#S�௫�9%���c�'��W�oWnoi��VvE3DU5TdY�����Hv��}G�0�{��J+pꈴ�A\k��R��݀�ȇ����Q�Ʊ����y��یWk�i^l�GP�o���ߕ3ۅ�O���\�A�h��:��Ri��)��r8��N��I����F8'��}7�G�6��x;
��[kڞ#�����	0`�����񫧏�*��[x�"6�؈��*�T*�#V}�i����^��|&��>~t���y�^���^�I@�
�i��B��0��
�_�:P3�����և�)��\�Ƒ������_y�}��V��'&s
	o
�����ı��^fB����|�ݺ�N}IK�ZI�4�!
�֙�®=G���=v�d�^��7�L]S�jsJcAR��+�jy�Lk=�2�+䢱Ƈ�~�^z�x������j^�m�q�M��+�5`,�t�Ѽ��jї��2��h�����J�>��vl}j���.���{`k��5���]����ڒ_Z�5��#p���9���O��T����/{�+C�G�oޣ���J:(�\�Er�S�e�<�nE�u��#�c�!����z�����^Nڎr
��}0�M̲�f��0sj���t�/�L��O�f����Ta��U���.J�Ꮄ��{���t
�p�
hj,ǃ�h3�>!t��4
�8��`
��²n��M�N�(��X�	���#����]f�A��~�qG��U�
��a,(�YH�)C!$.�Hu
��r�l��&�T���:R)���)�\"((�
s_M�>5��+1��l+���
�GlY�{�e�ku�#�Tp�B�G��YT�UǖC�P��c,�?�R��@K[��=���(�!�I�q�``Y�ڻN����
R����g�Ql�.0W��-����fk�[h�G
RM7����&9���k?��
�=��\	�WL
U"�M�����R׀\\��1�h|<H)��̴!�0QN��88\�-]Wafk5d�5�Ї���Qv�q����a���j���VN10Q�6X��Ě���X��7M�u�Ah�AD�=әJ��D���PJ��y�9�{G�'�"|�irh���?6u-����d��p��ApG
FC����)$��_�Y��2!��ұ�c��G��DO�s�ź�f:��e%�C]7�g}-UM�?�&	�$qW�+~l4f�3EEC�8�xr(��s�]�Ǐʚ��!ך[�1��y�aV%�M��ŧ!
8���@pdB�I�c���0j�@���)����x`�`d�y�D1���Ο9�~��ˑ��{{"���V6��j�ͭƬ��д(|��/<�T>��1�$��	0�IE�
e�	���p"�q���r���\%�՗��}X�b��t��e�UA�J@3�`��H'��#��X���Oޘ}�,��tu\-�dV@-+����_�t#(m�!�@P(��m��L��.4����عH��H��lw\5�A��2�����+%}le�ꢠ����ܵd(�$8�h\_-R��r0p�AI�R��8��}'.2��ᡟ�Znp�#t!"�`��H�`9N����7+��̺��-�oa��]ĵ�9c)���jp��Zt(Eru�J>�j2�,9ֳ�p�E�eG�
Pt�y+7�nE��Zf��L�|6gl`�i��ΐ�_�m��wcߛ}�𐮔+@����_��K���h�c'��)X)	@吲�
�,�<���=�X��*:�
a�<X�ul(O(*�IK+,@�W�}����IEND�B`�images/header/icon-48-writemess.png000064400000004045151163244130013153
0ustar00�PNG


IHDR00W���IDATx�p�J�u����
�������a����qC;��3�����1�7=��T�D�QU���R=�O����=�pUT��[[����_W�w��{���[a�k�ee�����{��A���/de�ƚ���
�ON�����!,�"���<�.D�p�h��������immm�ag�6S�bT��tj�U�[��1�rafy�d�x�/bʤ����a�۱Ş�����86��[
����KH��<�~�ٌ��9�{<1!B��I
�vWW��kkk��{��X,hmm�bR�H;a�uL�)hl�U��,H�
�]_�
�9����=�<�p8q��E1pM���@qq񓘔ä����f��DŽ�8�Y`\!�<�333�<�K�.��kƳ��>����������1)�I�C
��0���B��t:y�\�|Y�Z
���e|�ڊ��NjO��&|$e\X\\�2ڸm^����1��Z�z��k��)gԲ���γ|���8�u�5�q0�s%V��:����h¸��B�������>&E���"Do����J$���Y�6��իqE���<^z��K��_�bd7u{���мAfnii�fRd����MUA�fk׮]�K����>�o�;������e|�pF��a3K�B$''�g��S�F
��r4���m.=�����,ؼ�7\��ƻ�&�VF_��9�d�'0��ն�����lu��@��
�����W*�H��'uN��	o����J�63t�J�>�n�����̹5�`—˃����A|�ʎG�ބ�a�'M�L��>l�*�!3�'���Ʃ����Q��i�i7�D"�6Ӊ�
����A���r�
S�!$.��
N���+5�vB��l6�;��ޘ�6774��AD�"�!3�
�=4UT&��E�4F���9�VA���Ń�͂�̪a_C�/�"��
���Al�ń�-�n��	b�.�W>$�Oc�1��!�j~.|�Z
T�gARFr3k'��MU<��5��*5���τu,��R6��8�2RD3�L�2�&^���E5�4F�j�=D��Χb��>����lx�mt-�d]���r3�;1�H��"�����U��l;���ODwŷ����t������q�_�iv����|�H;�vBjnn~/���`3�`���h�Ck�	4~�_C[�9���N��8z�4��]xɏ��F�3`|�M�f�WB77󇎜�����ըY�ڦ��^a1w����+~�?��k��>��3�o9�gM
�&2�6[t�hf��?sC����Nh�����k�%�'P�7���
|�������Z��-^���V8�/��z�4s�e��|��J��VF�v�����X�a���K����0M�yZj镒?<77�ﱾ�X�o�6P���.��wf��z3K��}ʆo�6�g�M���%��3��
�4݋7>�w�ä7c���8�^�62�DeTSS�&E�z�f�WFC�r�&y��(X
�@D%6�P5<�#e�x�/2�;m�o3��`��ˇD��8r���
�9^7�u��gy��jh��%��D�W[��%4+�/����C0�<��c���199	zﮪ��b!>R
���no�4ĮL�@ ^&
�M�ɥ1f�~ӿHw�$�0Z�V�UE���,�'?��YxOdz�
��cAdwN���&��A]�hu�%��s!py��,1���iii��
�̓����3��̱J�D+���s:'�Wb�b�R�H�l?�
�>�C�b�f����6|#��<�vj��qK���rX���J�n�3�!���XRFD	�ó}��c���()�.ζ3!�ܩ�}+q�-B�
"��=�6bfBB[��?�F�,J��l��<::�~��v�{X��f~8�nQ��*ݣ�-9�c��Jii�ɟ��go��e���<��1�l��!|O	��O�8�IEND�B`�images/header/icon-messaging.png000064400000005720151163244130012656
0ustar00�PNG


IHDR00W���IDATx�Yl��e0,8ưb;��9�0瘙�������������:1����w�����gG�w-�z�띩z���^���?q�'@'gB���3�Y�X���@@
��HM\��F����9l��#�?�F��������"�($kP`0�Z�P'��2�o�A8�ƕ0�`����y<r�)W���)@M�D�,�lV%��@H����_���'�a�t&
��/���t

Q�@�@��C
�ϝ�D„���`�٠7�аe9,v?>z�kp�Mpf�䭠3&���@�ˏ���;�L�����*�s0u�N(��ȑ?d�.�%
�Fs/t��8���s�W�c(,��	�8�x�4�g����o)@�X#�ı�i�bX�0[�l�X����)Dc1
:�z].�9��ߏ�Jܸ�<���B�N�O\�����0��L�hb�^�cb�ɤB�"B,�U���@"�ʐ"�bL&
���m����u��|6N��v�����
�8!�r�ku��f�bD����p�њ����G�7&A�`�J�
"h��1Cνkv �A?V�{^�2eQ됚�
��̣p��}������n
��5���h�m@(��Mx�X��,�~08q�s�"k��)-�ĵ���KIR%B��h1i�'�:V��*E��a?���	HD[�';ݜ=�Н�L&�HQe>z�:�ĭ�;�3�r֬�-���+»�1\��<�T�W�q#jW���T���Ν���7�|���@$A\x5�!�������E�+LCPL-�_Ӭ��
e���{O~B�ڇy�4�?���I�d�YPP0��7޸����
��FA��aaU?���0x�`��塳�z�qU�-	�$4p{�0�8�`$����٫ަ�_�S��B��B�s�=w�…'�A0�$N!$��ڊ��R��P����:�9���,��Dc��˃�J�h�K�<]�s����8��/�첃h�&H���\�0a�z=H�u�u��n.k�C݃x�~f!����7:�����Q�~��K`�.���>z���1���3�999(,,d�!m%��y�f�<z�
:�0c$�;�x��	i�rXc�r�����O�>��󁠈��F6��k���vΰ��HKK�*_��e�c@�T%��х���b�5���/޺�S��ܟ#r�M7�t��G=�v`�ikkCWWƌ�P�F#����\8�NڇY��p�����$�B�>�Bc��Ѕxw����`�=a2�PUUU�`������N�h�{�u�]�$�����J�#;;��a�I�k���7�����F�vD]#@�1�|C%�8\fv�L�l6�$����+2<u���hhlĄ��jR�Y�u�٢����6������cǒ3�#F��$M@;��������&Q��-[j0e�d5q�����#������B�xަ�}�}��w�����f�ԩS���P[[�T�
R
��@ɳ�,5y��7�|�O8�,=R�S����?�c��袋�f�2:�l�
�hllĝ�Vq�$���h�֒��e�1cO(����ys���&�H�?~��O?}szz��;n�8�u�e.:��G�0m��K�
�F�S2X+�}�fϚ�'y��:�v�m[���$U�Nއ~��ĉ��(1d�ddd���N�֭üy�Md�����)�NJv���b��[̙3�Y��b,z���>�cy�Q��m��v���7!nX���v#,�P>4����3��SM^=��Eج<�r�ӊ!�w�}_4�1��Q��~	��/���-g�}��|r1�_WW�7
*d�c�:�EE�΂5k��a<��#����\�
6
++n�����S��K�@�ӣ��U��Y��H%b��}��^��@;�2�u
n��<�.�ܨ����^�2����j��y9�{m�Cd���3��F��Y�W���sf�l2�V�{�PW_��q�
4�	d�-"�-���L�{����aC1��@�?����3R��k�"�O�ۭ&,��\�U���p߀U�aW�g>��Ǐ#�>m������gL���O�:#O�ee��c��y��>��S̟?�W�3�$O[�$����C��[v�Cl��O�W��˯���E��?l�P�Z��a�F/ׄ�2�9�~�3�QI��r�|jA��z/v�mW)n�tE����h�\p��T��3��W3����ܡ�^�HK�|MM-�8R�(yy|�C�i!�	X�
9��Ï:��S����fgڴ�����TVVa��ג�F�;2S�8a���&6��O<a��B�2�UB�EE�/��sE���C���j�jq�.���k����|]#Gf�VE[��L���z�����~yEe�7����l�j�,�‹
��Cr��~��]`�Z��3�p�����ǥm�r�$��VCܧu�ަښ��+V�����H���I�P������4Q��t�R��w�c�	'�p���x�Ɗ+y���ɓ�m��!;{P��&Y�%��c7x6n�ٲ|�O˿�To����i�d5�S��&�
i)Ar��'�z��ys&�����M��x"�>�'aiv4��{7y����^�ZnRE8J�[��CGh,eQY�)�9kցx�"q�N�:��Fi-!	�Z�p���������Ϧ�$�Z@ِ���K�gڜ9sO�={vVQQ!	��"�M��8̕UVT~�lُ�R^��‰�=�\��zi*!��-9t��~�߿z�����'4
�(?:|J�Ƌn��ͤY�]�Zˢ�VЩ�8G���͆�
��ZF峄B6��w���O�"r]���)H���9�i�5�2�mIEND�B`�images/j_arrow.png000064400000000263151163244130010163
0ustar00�PNG


IHDR

�2ϽzIDATxc���g�.!����
~�6x�������7
�éPi��-@���q2V�r�[��4��P�i�
����1�B�[��?��d�n����O�����R+�X����H�=y?�IEND�B`�images/j_arrow_down.png000064400000000227151163244130011212
0ustar00�PNG


IHDR

�2Ͻ^IDATxc@���yo��g1����@���c�o�Xn���f@���#�o@l�����@����N��M���8�DŽRـ8���E&O:<@�PIEND�B`�images/j_arrow_left.png000064400000000305151163244130011172
0ustar00�PNG


IHDR

PX�tRNS���7X}zIDATxc��
�|���ӛ@�'�L���a9i����!�/�c����`�0��J����t<\nΙ2�k��6��K�<Z
�FX\�)"=mX��k��ғ��@�1=ݶ:&��x�H|>�IEND�B`�images/j_arrow_right.png000064400000000273151163244130011361
0ustar00�PNG


IHDR

�2Ͻ�IDAT�c`�{Oo����B`�������
�_.��w=�?�t�
A�`��B��bW<�L�d�����
S�̣�(
w����,��i�
�6�v��%`E�k����mu�|�p`��veA
h2IEND�B`�images/j_login_lock.png000064400000006664151163244130011164
0ustar00�PNG


IHDR���H�
{IDATx��Q�@�?���E�[�!��a00�``0���`OF�e�,��H�0�1ē�����_Cf�wӽ���{��\wwC�+�v=�owwI�����n�T30��gpJ�8�G^��Ʒ��H��!_z�'"Y��e��l���2<i$`��b�<6��
�F�'&������v�jꛚP�،�v���R[�X�G׮N�OO��ĄW����v{*ء��
�dyU5�����#riu��Z���9+!|0�(SͶ��u���O��	�yL���H�����y�dg�B�
P�T/w
�K�V�AFJ2����˄c?ʂv@.)ʻ��7�����/���vS8.n��}��-�q��{qߝ�)�-�r��F�9����G���}P�Ԙ����frr
B�`��C1��>������!���G�D
8\
ffT�K{v�߇��|��i�.i�L����lژ��S�5�FF1_ꛚq��#���
��_�_����]���י�:xϝ:ZWa!8��o��>��v�$/w0	�q�iú��z�011��I(�J�F��3gQZY��B����H�2��@/�m�a���Y7��ѩ�F���q8�g��ڴI�W>��r�$�B����s�LMOC�J��%X-8��㞀�����[���6;u�#F򁛳3Mw�v45fczz]=}�>#
�����c�C\TDD�;|��Vu.�119����
*�k^֮�<Ou����O�ϖ���*d��o�l�?����Cf�����0?%,4���;n�
zڻz�T�]=���)d�"�%���
������;�����C��봞�54����N[X��E����j$oۚ�j�:��r��3���#Z�S�J�t;F���&7��̙Ȏ.8�N����M�^�A��Š^��[�z͎��1`���4�<�?��+�)~_��\�M���t����#���ѝ$�.��b�������ڳ��FK[;�{��k�%�
��K
�Z��
�
Ҹ\�:��Iy���<	)˱"u�""�"#"M�q+����5odrj
��J�^f�W�V�{�q���	�-9�|lL�NR�cE��|pޚ�8v{
u/;���C�R�x�/4���]n�]�t䨈plZ�n��`�IHU�)K{��/���c�����<W-�;A��aw�v����\]l�|�8#	�ʱ"e].�)�4
��Ax㱒�@X���W��]����)����#!n%;����T�X����������e�UYS:'�?��gr��V_����W�J�ĸUIcccq$�(NJTE�w��I�ё>w�յu
,����{�<4<��Dpk�Y�6���+��΁�>(������D!���5�
��SV0V�X�~�9`WC�{[dD��v�����%�?���c����
�@B�r�HU
YRh�!�T���YH~J�@ɀ��>::FpP���GBjr�HU0�^_�������������#a�Jq���+�y�V�xL��j�a.h9�DBjr�H���Z�����84l��M����U
x��]Y���Y �nQ�e��0s��̴������
K	3~fӳ-)�ef�3��J�)�ò^�L}��m�]�?~�Èw-��S-��S�`��S�`�LQ�`�Lт)�Lт)�L�����s�i_�%�,�bQ"N����A�DH#b
Θo��2�2�}��"d.����\0�׸ƘK��HD�����������%��p}����#��?��
MӠm[��?_cc�}�Clg�9�U�Xn�t'H�)�,*׳+D�
6_"����M
J����Φ$g�h^��SJ�$!kH���킼��%8dM�$��R֒�!i�}��\�}�5�
�=��a�S�'1�}��8��CW���m�/��s��]i�v+Y���"$}��`�I1v\���+���ϖp���
c?;�R8�^�a�NeC�<[�Kv�X2Д$�X�q�G��ƐD$�H�	D�o@�v�����zD�t���w��}�8���o|�mȶ~�;I�/�����(�8m���z��v�dخ&<�\0����C��KR����^�6��z��m)ɰ]]�#i����/nKI��hU-��S�`��S�`�LQ�`���E�E�/^y˲DY(�Y�
�d���ɼD�{I&f��d#x��=������ڟ3��p�`��i�#/x4s���d.I�$Ik9��M)k�Fܐcؔ�5��Al���f+t5+�m�m6����"�`7Jl	��K����t�t��\�S'��\��˕e)�$�{�»�/�2�
sɹ\��=�x�Æg�&�K%2t6�.��R>��ڎm	M�nc4u���Q�%���a�R���-�v���3���c��{0�!0C`���!0��O�f0C`��@`�{W�G{�Ƿ'	B��C�b��O�7�0	��̰`�lߵף�Ι퉮K*uϘ۵K�Q�@�䋰���#��/Q�u:PL�"
��mA#
���P��<�9P�s�:yQdZ���i7��<*� �
2���	�.��vT\L�	G0��`��l��f�h��E`��	G0�/+v-"�h�F+%k��`&롚l�����
�*�عM����0W���p����k��`�u�F�loo���<X��PG�&F�F�x�!D��..�Tda�o���(�
��X\Sc#�k�+_�8Rɓ��s3o*�ʣ�_Z_ݸu._�VuT+���y%�J�8�9���q�<��AK�6�0ɑ"�~$�9�ុ�	V�5���T)�l��5ʹ�9}���Vժ/��U����_�[[]���A���i����<hQV�����w�=�83=�$X_{�/IT��<��ί\T�"�I��+���bMX��쏁M̜�
fĔ��
�i3&B#l�����$��
 ��}�O�}H}a�Ѩ�����}!؁5���vwW
��yJWF<��	�8�x��S�R�]CP;)�׾y�0�0�����^���6do�P��T0m��<�4ŕo��0xg�,��2�u�=���0*d�y����B�p�`Cuـq��"(�V��@��Fj���sS��^���u8�39�?	�a�#y.��~�����T��u�iAu4���W뿯��r�VAX.\Ï)�\?9f_�Ҵ#d2���L���!Z�������P4��B)
��
���M>ԇ9��H��cE��(TX�}]��#�p�VF@=/a
\���GCՀ�����<�-m9??IEND�B`�images/j_logo.png000064400000004346151163244130007777
0ustar00�PNG


IHDR��=9�IDATx��P�ǟ�Ɵ��11"<@m1ɓ��{w���3"��4Fg����?�1j�?PS�D�XE��(�q�q�)��-����j�I�D�&�G�q{��L�����;s�]�ܳw��s�^�%K�,Y�dɒ%K!%o��ݯ�ޣ��w��i^F:=ȞmI�l�6���ZKz�,=��Un��:d��{�ds��ˍi3���Y�S�,
[Oz�
�gon�^j.��Ktƶ�q��s-/���ң��
���D6ke��u>|YG�3���O�>���P���́m���b�2\7}�Ye�#�5ӿsh����t&�t����@���?t=���?��6��c�Z�p�9h��uH?���iveY��o�W'^�S�p��S����^a�zs�N�sVj�h,Қ����#�>P�/a�?ȿ���K"�1���!BT�y��X�p�ԩQ�B��1��E�Ƈ
�P5�Q�y{F�:'{/�=^���h>VL��ܷ��t���X	e�H��v%u��1R�H�����!�$���!��l�Y�DQT�0&:�1�jr+�C��e$J�s���ed2[��ѫ�D���_�p��a�e������<�%��0����Z,��r������yL�������(�S~��.��nQ��,��`��"�d����
��(�H�.���I�EY�I�e}���p�S�m.��_D
Ѱ���$%��e�˳d<�@�߇�`>��PВJ���Z���x�Ӌ�vj'��&4�k��DMoR����;��������M��1�{xx{��8Q|)�GB��
���l��5���@H�,Q�
�(c؝"�{�Z��c��B��O8�%DV��E`��X�2�����`�B�]�x@1��9�]���`��	d���|$�ˑ�ר��%0�!�zDQ9�i�Al���{�p�,K��:�����=�����=����g�&�f�2]�����L;�1�C]�LBH��m�z�#����ȥM9��#a�IK0����P���2�K�����ÿ�w���y��r:e;O�0�3�X��s?�Dw�Ȓ1yGF�f�I�!��p��3�0L~��~��p���p:�j2��tO^Y��1��ⴽ��ΫR2��Wg��ϩ}������\}b�Uf�7�T�Ϋ4�O�j<RV��Uƴ�}6O�m}
@^��^	�]�e���C��$(�E�T��<�e,S�r����
d2�gE�)K�ɘ�͒F%)N�ڟF鿙�h|�,��9�����^]p��5Z�����+իwM>���T}�ϛ�����b̛~�Ɍdw�]jgY�=�bY�J���"�t
&��#��$���Nuh[�h�ZH�s��M��s��!2|����W��l��+P�tG���u0F����0�	�	98�>:�o_'-���Z��o��5}����6�j�''�MY�C�a?�8��(�3�Ӯ�?գ�O�ШQQv�j쾣�w$����1&s���u������[�Rm:o2e����<��3^��[΀�}�{I$c���C���
��a�[A��(�=�ێ�t
�o�ϛV��C�{x�@.y���Z�������-��cȀ1*�DFZn���ܚ��U�YJ���k�N��_���1o�‹_%�^fZX]��	P|���n6�Qk�>݃�T/�d,*yH
X�v_�,S8S�n��H�׼���K0�z5�f���r0EЇ���!�H����v�
�#�r�a2�V�����1 ���~���O��
~��hOg]w�E�*�_
0��֏�d����=��H��
2\�N3������:6*����V���5��/���#�j_���H��f#�v�������XB����D���ZBHO��G�\��k���{�!���yO�-M��
�\���;��N���'���'�^�};�n�����k��M��Λ�{OH��ų
�Ǒ`��~�=1)�n�����f%���~;5�ԭ���ũ�)9���Wָ�W�Uf�zG����-9���WgD��A�od#=n��h*�[�XjN���'O���L�8�\��w����^�`Fl��DD�,Y�dɒ%K�,Y��\��`��qIEND�B`�images/logo.png000064400000006066151163244130007467
0ustar00�PNG


IHDR���?��IDATx��xS����S\��d��ܛv8����S��[u�5ڹ�T�:2wõq9��	I�d�v��<b?��{E����wM*�.L���2��zDgys����
��Rw�����-�CR�uZj���Ys㤒Rn�%}���Tv�
����Y�{���+_ҥ�c]�ͱ^���M$���\�oH���I�zHr�.o�<U�,��h/_��&��M�(=y@p�&}V���zD�����D�c�RfS�˒?�.M.�]�\��5�3˾FR���[`=ƛg����]�ɵ�NX�
�
_�I7	��֏�h_&����'������x�oL)�{��2�n�\�H��)ۓO�d��-�H7v����
��_7�u�,��f�t[թ��xY��tB�N�Kk���v'DGI)�c0�Bl�z"&��_�?�7DXo��Pĭ�YvH*־��
^&��90jKS�b�me7��+�{[+�k����qT�"��ЖEG��=G������
�@l�vE�1�/���0	��~܊�Z8�Dߟ`�Ggq%G�cʦ��S<Κ�7��V|���#��3
�@�5�ͷ|���s�Z����;�s�b���R�7�*b�<X��!��B�9HA�}��q��Oч�,����ǧM�q—'�xU{@hk��	�>O�e6�"�NE`*Y�8��	y��7D�I�T%Al��h���0<oB�Y�
W�-����ŷ�3�n�(�}�o��z��ϵL��8Q�q9�9�e���v�%�P���Մ��Ex���
����s6�£��B�5.����b}ijy\(<�(pK��Ax�,g��18����3�yJ��2~��M?�=y��
��ڃ��0�<	�y����VLá�łмƱ|ӶE�n*�+j^�N
�i��
�"�������t��6�l�M�g�Nk��+��)��ڶ���:�����<>F9�D&.¾m�3f�A��R|�܉q����K�4>B)
pcx�0���E�3<���o;�36�
�o!
��l8U݅0���D�
����B!�*fn[��P{S�k�����\��Q4SN
�,�����_��[xIwC�Y�*��Bt����a"����p@������,��*/�E5j�3"�R�N<
?o5T�E=��Ty�����F���;���\����C5��a�5��	�U{v8<W24N���9@΄���B��PoP��"���ϡ�>�35�C��ʾs�}LA�5�ZC��:�P�
Ukp��
�Ao��oX���T��L����q
���J��qQ�:��A�GT-?V�f����0K���h&<��cCX���l����׍�ۆ�̃�أ���?h�Of�շ�,���N�0�B�Zo�����ȭ�~v�x��,��U�	�\�?�>mp\`��*��}
Z1��癏�1�	ь��N�%F�2�?�.M�'����V�-�ԆN�g�CKΝ�U�-��)M��6_,d��T��'�
"�d�N��W}�����k��rYM?x���E��!��8�r�@6T�	���=TM�n�hŃP��C�<;�3���h�g�$<�G����׬�g}!��>����c���VmJq�^�ΰg�:�!	Ђo&��Oۭ��7�Ri����
Aէ�t|X�=P	U�!���ʂ
��A��n�z���rITx���������ۖ=���)�-��Ӫ�=s�L�,y'���lý�[��?N�,>ߞ^�g�nZ��TN|�����x��Px�h��<�D��:�z��Wi�؀CQU�!�i&T�"����hE>T]����ކh��
���'*�LN����U
CB�"9��EI74uHr������Բ���`΃�����LN���Q{�7���b?��
P0>� D0��k1�����
��0�C����2T��o�`L��o���aE��M���OT!<?BQ�?4o��>3D��Zqʲ���r'�-Y��qXkϬ��Ҫ�P��R�!<���
:+|7��.�H�DA��
�@�3��0���F�p#���32�w����n�u"�"���L-�59��>!�.�m�y���"���3�3��7gR�"?A�"b��X
~sx�{��hI���f�ăƒC
p!T�q=�6����bw��#��‰-��&*���l�3�׵�{��-���bw�i1<c�_��r&���Φ`��A�f����^7)��aspj�쥞��^�[w~�i�ma9ء�R���
�'\6�
����ZKl,D�pG)��(C�p+2�F�Ź�����T}�1��S�?�d8@�B�����5�aN	K�]XU�6|���qں��hEATxX	�!@�B�w��S���
�P�
�!<G�7�վ�Ę�y�	LŔǿ��pp�p��v�N`k"0������Kp
}ڮKe�
Hh@v{ٮB�1p�u��ż޾�9f�0��\��r􂈲�P�
���xӚ�B�,x������������@O[��"�
XfO��HB
���x����ڶtx�j.@D�r���Be����u��y�m��mS@a
-
@jM*DS����'bl����3t���c�]��C1��,��~�i�����5��������1���G����0�j�qt����ð��a,v�h�
?�q�
�:}1�NS��-%<u�8U]*�>�[O�mf_�P�qB�r��p����a�}���O�%-
�u�a	�K��s��G���M'��=�bۚ�Q7/a�-ިǮj*@�!�f*���G��3(�5[�g�_��',�~�;�����H������c�/l�G��ǟ���J�i*D��_�ɏV�,�Sۓ
Q"[CqY�#�;B�׺q�
����£dk��8S��X�g����/�T��Q�>�O]Bz���rDG���,��t�C7W�ts��j����:=#�~jIEND�B`�images/menu/icon-16-alert.png000064400000001070151163244130011742
0ustar00�PNG


IHDR�a�IDATx���\A��8)�wk+��P۶'ul�q6�m۶m���{�I͛|9{���M>��Ъ�K��ci_�����o�4m+�E�?�M��hU�8���Ei�5(�ٺiU�7+�dh&�,~ݴx�xѤ�#}ݬ���|���-���ͨ�٤8����t���Qz��FiDQv'_�x�)��q�T+3���k��|fG�p��U�&���f��u}n}����Ī�h���2����f�+�]�dl�}�(�v���"7<7��as��uCkM���e�\��<5�L�7'���
�2�z	��l�|�}���s�p(qv�m�Ŏ��l��s��uHtU�e�����Q&��FN��͑˦�av�����:�c�l��(�V�݉�X��@Yy�&>kB���.�d�����ۊ�9+B�u�LJ6���Oyi�WpI�^��WI��>�e�9�y������8��(����$L�
�9y��EaplY�\�7E�ݳ�R�%+������z�E�IEND�B`�images/menu/icon-16-apply.png000064400000000640151163244130011762
0ustar00�PNG


IHDR�agIDATx���,Q��^Bm�v��.a�m�|o/γmk��B��Μ��U�-��n�E��8��)�+av�Aq��(�0�[)\OZ	��;m7k��I_
��̄[����0�����#D�Aa��om��Tl�i�x�D��>�F
`�M`'���v����5�Θ��N��9�����aJ#z��������ԫ�C���4���2�aa��+OzDLw/R�{s�J��.����S���02��/�1?��N�po���y^���N=2�d��jQa�>+r�F^5*�C��^
2Zѥi$pT�yP-��f%~v�A�J:;�=�/��F�-���.5��}v�v�BA��*IEND�B`�images/menu/icon-16-archive.png000064400000001015151163244130012253
0ustar00�PNG


IHDR�a�IDATx���A��g3�b�a۾�Nژu��E�ֶm�g��鷓��f��%��p��!��T�Jd�̐�&7F"�aیs�Cv�	G�������z��/_�|Ӧ,�%��ݺu�]�v��\�r�3���xmٲe�a�)&����+VB�4M
���ә��(�4
2?�GGk���pC@�~���Y����
�X4�H$,�������F��6;SHm04<]���P����~���܅�	b�wY�N�B���j�X�ԤK]t]�w��~�#*�?}��9�4�
#�;�\˲`�&)��deqq����tÈ�b��C[[O��b��d��i*��6���a�3��/]t�Y�Bު���h���jAV=���H��M�����B2��璘a�1aT��E�3
���^,�����?���b����U�>}�I/V�	����R�0�Bj���������/�����$IEND�B`�images/menu/icon-16-article.png000064400000001005151163244130012254
0ustar00�PNG


IHDR�a�IDATx��E�QD��&1K[��x�Y��s4��k�#h�13���MΪ}�1#*>U�_���Ʊ�4}��6GlK²��p��L:!��l$�����$I^,�K�q�B�����\�`�p]�o߾��h�Ç:Rr�{
�_,��W�����8�Mҽ{�F����f�Õ�s��A,I�LAGGG�<�+W�l��L���o}.�,,ZV;���q�ڵ
�t����8��L���M;2F�J��pQ��	
�҅�&s��EY@>�_�~�6y?We2A��N���8�5@FQ?I��3g���A�ԩSR�7xc�VC��`�h��Q�Z�jQ���1�^"##C���#Lw;#R#I�.�Q#e�(�˰X��I�
S��
�DS@����x��-���6@|�WS(��}>2�x���?Ӥ�-�cۃ�2VƼ��{��c��EYہMZL;Y�	n>��RL�IEND�B`�images/menu/icon-16-assoc.png000064400000001656151163244130011755
0ustar00�PNG


IHDR�atEXtSoftwareAdobe
ImageReadyq�e<PIDATxڌ�[lTEƿ9���KKw�4-]{a-�h����k��^�!$�@$�&ĐXH
F�O�-�@j�x���%bcJ��-(�t�b�=eO����~�0�ۚ蓓�df���7�7B)�i.�e#�O��X��)}�C�C�����E����{����[���ɩ
���9a�`ӟ(n�6��J�/�7]xD`Ut
R�?��y���K��>�q��U
��s�n�g(U�ε��fZ��5X��u�Wm���,�	���c�>�|5SR\�Q�w%����f,��ļ���"��R�_��$r/��w��%��nl�kW�=[[k�t.Ƕ�Z<U�zp'���W��
K�/|5!��ڹ�
�ަ_�KƎ�O��SZ�"N�ڄx��I֑�)P�E#�h���5�-���7��U=p���Y�*�䂆c?>f�K���5��W9#��7'�_�
b���f5�Z����ß&�
���O0��P��k*A��-�B��`�ϐS0�,RN��@3�4�
�&�qn$��o[l9xfR�Pen+s�A)��K��������r�x�h�^$�e�x\�݉ӽ���
��.}���U�j�"K1|�����I�0@m���Ȫ&�<���PT�i#��afp�ʙ\Ğ�'K1�t4���V�r�I#)o�pi�xV	+��ٿq����C!3�%�1��#W����r��*���u�J6�~��8
8�
��\2y�p�ῘD��
�bz���O$��@I$�,�н+��ѓ5h�;���F�丁�m�������9�H�G��@<'���<��k.΅�Xm๕~1���tx��q/�
UWO
�f?`~ڑO;�IEND�B`�images/menu/icon-16-back-user.png000064400000001222151163244130012506
0ustar00�PNG


IHDR�aYIDATx���I��==~~om3���b۶m'��F!�׶���栧{m�~�������׊�#�o�.�j��ޝ�sw�8
�T�U��N��u$e��բs�w���_`��p}&<��L��
x��KK��3�o/}��������&
*�Ʋa����6n
C>����o\�λ/��J������d-`�2�7��E	G�8��=���>{��T��o�?}��9�����p�R�n	q��QY�5d�!��wTC!��	�L��UW��w,�x�3���m�]n��
�j$�i�J�)E-����"մ�~W�����W9F
��By9x��ڢ.��bA���n�����
;�AL%������Y��7����a�n)���P�h�%x6�X4L+&6@�6��a�sxi�����K�A��ņz_׍�u�<����M/ɇ^N�
�K�/(���������h5\A���S����h,�|x��6�!_��X�~��b�@RJ@�XB�u�6:j���[�_~%��>�@{!ŝR�Wo�+
MSv�����%��B�R�
	�%���Bɧ��2�__���h�IEND�B`�images/menu/icon-16-banner-categories.png000064400000001073151163244130014226
0ustar00�PNG


IHDR�aIDATx��l��g[�̶Όg۶m��4�_m۶���Kξ��Q�ot��C\��tn��{9V9{e�#�:�l�dH��
2����9���V��
q2�d�>�r�{�T|�ԙ��cUL��ٲ�	e�w�b����,l2ոg)���",�K�������<�?���h����υ���4���8��f�[2OC2y��
���a��m=��뮟��\h)�L��c�@i4����3�T���p�,yD�_9
i�H[܊�d�Co���)bc�^�T^g�9�gvѸ���^y��*p���^�k��$�f�<�k<�J�.�cG��9-�a(�K�Ù`5��
y�B'E�Ef��bD!	H7�tI.n^��+�m����t*.���O��7�'(D�+��Q26;q�O�Q~��)��h��Ө�|}ݑ�荢S�;��Mx��:��o`6m���(V����t!F�����O�(�h���eu���"�Y�l{IEND�B`�images/menu/icon-16-banner-client.png000064400000000526151163244130013361
0ustar00�PNG


IHDR�aIDATx͍3t-Q@_�Y}b�M�Q��.ml۶�v��u���:�'xf�f�}����.�?�x�lPF�ulE��Q��pYiw���oǰ�j�v[c)ܷ;�9*���&�y�1b-=��4���Fc�o3њ�*C��9r��m��9�g$��<�P`?���|:,���e�+�O�`�p�{�/�e���Qۉt�.m��A{S6`����|�G,��<˩�0��
��6�l.�$1��"�D�%��`1�7�����῾���z����~�U�sܣy�H/�'co�<���IEND�B`�images/menu/icon-16-banner-tracks.png000064400000001001151163244130013357
0ustar00�PNG


IHDR�a�IDATx��p�A��Mmk�Am۶m�vl۶m۶ms���8�=3�[/�ϦM�����P�fF�	��+���=���{��{f�n��(����M$Rⴣ�
���ƺ�?]�̃Ρ�����Ў,������-
�?���S/h���4}�
�*���>9��ц}����Q�@��i��'᳾S�~�����mr+ƛb�u6ix�Q�L��q%x�:��,
N7����|L��Ě/bݟ�y�!�w���s[�
���S/ƙa�U.��e`��n�*⋶%3���X�b�A�������&|L�����?
�1I��
��f�E����L�I�h��齷�7m�Q���1����k��%�b]���'r*j�9�G��'�ur�����c#|��t<�cᄱ��}o�<{�q?'�Q13�ܽ�5��H'��##��)D}m`IEND�B`�images/menu/icon-16-banner.png000064400000001142151163244130012100
0ustar00�PNG


IHDR�a)IDATx���]k�_m+(��Wk۶m۶m۶mWk��Q��:��o<�1���~�"�����'i^R����°[�p��x��!m�\˦�o/����
.��}9�4A7��d�7��oq�s�v���-}��y����n�%t�CZ/�5��N�_���x�04��{bJ�!ad,��@?���8�]�Dl����Ι��%���Arh���!��,Րf�\I\��:��id��5ws'[3���E��	��i9�)f&��'*A�o�Y7/�p+{�N�@3\�z�ALF�X�@JJ����7��-Ǐ�Q��6.���xOm@�.to���&�qqI����9�K���6
���e��U!�q��=g#!�~`ў���	��3+���7O�w�g%�q�E�
���[���q��P��vdb�ʫޖW�A@X��o
X�������%���d����O�L
m��@EI�w���|���f�44�?���=D��Q_P�SAi�fZv΅���z2*���jIEND�B`�images/menu/icon-16-calendar.png000064400000001044151163244130012405
0ustar00�PNG


IHDR�a�IDATx���\Q�
�6c5��FPیj۶ֶm��[������I��3g�=������G�pDp����[q��<�@^ٟ���S^��C�f{�	�ӌؘ�{�2L؛c��t�`j�b%8V�Ɂ��zV����F�(xA�����]�=��`��9�"�,�
L�����z�4����i��
�ᙅ�2���AKKD"���h��l�N���ӌ-���{'�#�؞�CKDX�,��H�t�������f��E��/?�횄f]+�{�~Fs�#��e���x��j3b�=R!VRx���hԘp6,���sқ�>����y��lƗ΄�Q��'Qߝ
>���/:3	3���^��Spԑ���kBLYN�
��^%Нwj!e�Z-/��
`�j)�L:7}p%<����{�ϑw��MȢ�T&�2a�̿��W>YzՃη����"�\sECC#�������
TW����b^���䚑�����?���1���K�!�iPc�IEND�B`�images/menu/icon-16-category.png000064400000000321151163244130012446
0ustar00�PNG


IHDR�a�IDATxc<��
����I5`?\3a\�i���@��H�U�L����_
�R҃0`���RI�
=p�&���@�?)�a�b���H�'��
X�T���R0H€�:���'���`�t�w��?���Aj�9{Ŕ<�5IEND�B`�images/menu/icon-16-checkin.png000064400000000714151163244130012243
0ustar00�PNG


IHDR�a�IDATx���@�k[qj۶ֶm�:��m�m�?�~�t�Rۛ|��L������d�o��S�A�T�$�~92=z9s;�NŖBYD���>��S���n����)�i�=����
[\��w��8�DI����
�Q���z_J)���2��G�E���Ƥ��58nZ/}����G��ݯ��Q8��;5��aQ��#���]Ь���c�v9�r��|E�w_���y�C�ӡ�S��u�9���˪�r����˳�#�3Ah���͢��K��M‰�9��.�=����n<Uy02���r��j��C�#���<�<�9���-5��	�tE���������;B��
�J��9�r��Ez�u���ȣ�H�E#ʝ����va�J
�52��qIEND�B`�images/menu/icon-16-clear.png000064400000000770151163244130011727
0ustar00�PNG


IHDR�a�IDATx��s��PF�2�"�혵m۶����F���g�
!C��;��޺{��c}a��lj"?�UO�Ђ��z�jP^�/�$�ʈG\�s�(Y)����A=}1l�ɀ�'��(�l���W�yħO��x�g�d�\��[w��Lt\�heވ5�I��!����l��3��|�����^�ha���ˑ��w�c,ˑЪ98|�d`��t9;N���,��,�2���6r�2e�Ku����vtZ�v�:-l�DY��Ns�n��NSf[;,i3m
\��6�n�묦��U�ֶ��V���i�kHd�R}��8�B�u�]�N�+y-�;�-��C:���C�fW6�=dyP��K�
��hq~�{�����۵��GV��=�9
�5z��j�UK>{)�J.��~��і�����w��ZY㿷OQ����RX��-IEND�B`�images/menu/icon-16-component.png000064400000000746151163244130012646
0ustar00�PNG


IHDR�a�IDATx��%�\A��~t���b��Q'�6��w�.��a�Qa�,���̣��w��W5w���a�f`$���@3�@[K�S��7v*K��Ũ�1E�u�b9T[<��8aes��ޓ�8?�p��Z�;�k�(�+]g9�V���RY��Cs�q��)6��0�0L^��i���O��B�`BN��@���ԫ�����.������-QD�0��'�T(D��"�U%!Sr�5���m�%�|���(���Z�-Y�ګ	���!CREMFAX�@����h�]L�i����
S��D�Bf|2�O�͞�6�jۈv���\���sO�4
�!5bœA��L-0�����L�ۡ�U�0'1�}��[�"Ųz
 �x���'��Ǔi<ϫ���
Y���8���q���o�C�76=���8>�mT�2IEND�B`�images/menu/icon-16-config.png000064400000001202151163244130012075
0ustar00�PNG


IHDR�aIIDATx��pkk��?��Nj�=�m[�c�fm۶m۶m��m<3k�.�-Z�e�]N�A��&�wVص�T��|�'n]�^��B/����9p������͇�ɪ��"��X��׊�a��X��}���o�kV�6���x]�?�	�?9�l���9��G�A⭵6����虤��Ik[�H��(b�6[�N�m����ǥv9W�J��V齧<�[�=z��	n��#�����,�k]�ر�2�)��{P$<ҳ�@�1��/Z.��sς��<�.q��1�'z���@�}$��빸B-��:�
��r�}_��t�'�v�
x	,��.�+�!�־]\-$T"@\1��m�ߍm���C�4�{IIA��H��0$���{�!�/���ƥ����羶~�廒�ضwp;��yWA_!(���!��w0��O8�<��fM�#��/�o)_A_#^I��\��k�"\�N�zL���
�<����5΢�Q�1�����B�:%N���F��C�|�#�r&�荷��;	�{,��6�<B�!ƍ���_�_�����@�]�IEND�B`�images/menu/icon-16-contacts-categories.png000064400000000643151163244130014601
0ustar00�PNG


IHDR�ajIDATx���A�m�qr�U����8m?۶m�,�ڶϳs��oU|/�����>(�#h��Dk9�ԅޅ�����@J�2�ąIB|5wP��Ex?\��x�/�d�.�(��Z!��k���Ю
����#kpM�_��un��-���&�F7/�ؖ
�:�J%b�ۋϟ?�K���
�F*T,�����C�f�R�<G�8��p�İ_��A���V�bJT�g����X�R,���<X���W�*Ĕ��c�"����zw-�&�FX�6����ʁ���e��#;�q�
!2�������X�g���z�Ҹ������3<}���]i��T.�%�]t�xuU�O/��*�"�=+�&�WB~IEND�B`�images/menu/icon-16-contacts.png000064400000001405151163244130012453
0ustar00�PNG


IHDR�a�IDATxm��.G�=��m�b�F)�m���6�m���6>���C��-��>W��ZF#&m�P��@4�#�šy9DVv
?�,�O<xw���s���Y"���߀	~��h�XY�ѫ�Vu~s��-�C��uŒ���e��"0��%�o��k0*��h��t"�
�bU�m�3�h﷋�B	
#�>1�`96��@���X�~��ǎ�#�����h�z�tT)������t�㴷j��S
�Y�b�ꦦ�ҒRZ�����=��W�I�g�t���<"s���&��k�ֻ�[�/#Vh|�>��AN�&@���V��x\��ۮ�F}��3�V4�a��iD([�r2�X6�����q�p�'U�����Ur2rQb#���<T���~��y�}�����F{;��Q�_����x��F�m�Q��2B|?��;
�l�޻lX7��7��񛯼ޑ��c*�~%�����"��Z��Ж�rȆy\�a���y�����������Gf�_f<����}X�J
v�M�x�8����
H��{#�Q�
@�*+���(�@����}�8�F�٠oR쮟�}�#d��;�U���Z�m�EP��faQ�������3��n���p�@�'�\ј���R'�s�#��y8�]0����߆�"��y�&#W�X��p�IEND�B`�images/menu/icon-16-content.png000064400000000610151163244130012304
0ustar00�PNG


IHDR(-S�PLTE���������������������������������ޅ��r�����������{�̚���������ַ�ԭ���������ڀ�������޽��������������c����箻ǽ�Ɲ����Ӕ�ذ����ԁ����т�Њ����ٳ���?�tRNS@��f�IDATx^M���0@���2Ø�����6Ѵ�xlKfLYJR�R�1a�0D�O.���E�����ƻ8@H���	�1k3���M�q�;�R�n�u�@fͧ��L��H��l��	�L��)y(�A�UeXK�@X!�11$��W��1�O�b�b
qAӡ�IEND�B`�images/menu/icon-16-cpanel.png000064400000000634151163244130012102
0ustar00�PNG


IHDR�acIDATx���AE�f	�f	��YBv��o۶��߶m3�K͇Iq�9���_U�S���r�5{Dݾ��]�b�D2��k)�H�mR���Uq�(��|��,�\�YJQ�v�`��z�=�2��h5{�(\�{�,��h�I%k�z�:[��(��Z���Z�e2�I�L	���o�k]��7,�
C`;ND�9|е�jޜ%��~���C��H۳�ƌ��>�Ȗ�c���M�u�McȎ�9�a�D�ݐ�E�p��������L�W��WF7S�|K�O�<�
���~����V�*��q�jx�w�9:\��pWc��q=A�O����\���7��"$S�
��RG��#IEND�B`�images/menu/icon-16-default.png000064400000000534151163244130012263
0ustar00�PNG


IHDR�a#IDATx��3@Fa�Ӓ�5-�vSn˞�����)ۘr��K��:}���:�\��L���v�`��o6~�3�l'K#X�Z˅ϝR�K$����G��f��X�d	`!�y�����XxZH��2�_cр3F�ɜ��ׁPx���H�`�dQt�)��Ͻ�p��)�`;,����,�3�2K�)���*C���zpT�"��N�	���s�h���e�k���ɢ�:/�a��	�(��3��z3<V%JP�aF1����c6%J��aQ�f��0��8w�IEND�B`�images/menu/icon-16-delete.png000064400000000726151163244130012104
0ustar00�PNG


IHDR�a�IDATx�͒�KBa�_"#IP
�A�
C��2��
��h1%��jrh�?¥�����	�44B��P���wﭾ~
m�����'�SLM�FkD"�A0x��h�����=���r���۰���P*�[���~���"��A2	06f����|�[��0=]�P��X^��EGņ�U��BUA��v��v��N�:LNB�`WP�w�R&�t�A4�aa���������R���~��j�H�J��J�c�������a�zzm�������f��Ï0O"5m��fas�^h�u�#m23c�"܈T�����C���ٙ��š���/`�W"\�|�TjsƺA�CC�l��|���
��T�'1<\��m�&ݤ�O���"����E�f�E2��^��{o?�@\IEND�B`�images/menu/icon-16-deny.png000064400000000706151163244130011577
0ustar00�PNG


IHDR�a�IDATx��3teQ���rl��jl+h�T�_߅eإ��ضm��x���Z����g�����'y�����9p�h��D?^�����?�㣗�D7^�
<9�
����w���j���p����Q�}t䇼yh����'�N6��Ca��a��zp���l������	&�w�fu�!+�S�$�
0{KĜ�_���f��,`�'��/��l��1����x75�t#׸M6@�q�}�qy��mWפD���F�
Z
�$�
P�qn���r�G�ʙ�)��J��
~��_��BM��4D�rTс`��E��F��{ʙ��;C�Št�]�&"W��A&�\��"
ui>M}���x���(Rl�*uei�l�*Φir}�"Q߉_���n2���%IEND�B`�images/menu/icon-16-download.png000064400000001054151163244130012444
0ustar00�PNG


IHDR�a�IDATx�����A�_���!LB��!lc۶m۶m�fw��9c�w�_U�E�~��3U�Š��V7�j�,�n�i��]$p�H_R~d��;�l8��|ʜePƼ|P�ڼ�V�)�O����&E�6���]��`��qv�#�y���h��]XTCQz�@oQ��Ay�|�
LY}��h�)8cV��ݿ�.o����%�Ô܊��&�d��[���zF��JY��;b��:|D4�$#YMw��$���
�rJs��ē�d�w�Q�s9j�׃��+|�x���Z|F3
����T���|D4�$#YM,��>f쑂�@���w3��\8�3�M<�h#���n|}BPk�>j���_ȣF�4L.#�e��i��U@3�1�m6�[�AuC摝|Jȫ���C:ȭ@4���a��oU
}�#Ϩ�/k��h�.�j�ެ*�bh�a��_#�^���*��?z��&�bX��2�z��G�WN!�$��o�ɔ���qBIEND�B`�images/menu/icon-16-edit.png000064400000001023151163244130011556
0ustar00�PNG


IHDR�a�IDATx}�5�a�;�aS�#�5�&/�!�<Ýswwww����-áy�б�ow���fgaJ����yh�B�(�G��!�8��o3j�P7DUDE���5���@�l���n�}DY/Q���	S(�ZM�[
��"��+��{����O��h�ܠ�@����o(߮D޸�;]]�|�gK*�$�.凉�׾@Ƌ.��
Ҝ�k�¯���*f]�I���ګ����,E�G�7�g���`O�B��<2���x)��ȫ�W̝�5�����y@D�3�W��,ǖjoE]D�%Bo�%�v�?9G�"���7�]{��KD�����X3S�\���#�W��+y�_�/B��kQ�r�(}/ׄ$�#��D���_��_��'*��`�~�r��;Kq��7NJ<𫖿�,�R�h�3'ˈ����uL9���:�ɯ6��D(Qp�B;�.'�d���5�cL�Ñt��lN����?v,�	�t��IEND�B`�images/menu/icon-16-featured.png000064400000001051151163244130012431
0ustar00�PNG


IHDR�a�IDATx��S��A�c	��^B-�_B-��f^ڶm��Km۶m���;�c#ωԍ��'H�Ph�ԉ4(9���F͙A�h�"���d.{��;7�����(���(Y#�����RO?ʏt�`?0I��(�-�`f��̓�	���x���d[�e�2ś^"��y��h�!RF��5�l��5�?
��Q ��9�b:�e����Əm~�Zb��D�
��B���Y��.������-Mґ�X�)@���H�u�4�����+���D�TFS��y"a��'��i�>��B}����4���(f��	%�����t�-&"G�/Q2�S�3T��A"B�^��X��?��4�G����'�G??D�4k��!B�`eX݀@��ES�&�a���_١���ꈸ>J��X���v��F��.لg!�m"\s�ڧ��Oh��ǟ�_I*���PCXDf�@���^x�̭�_�L�i�
�PB��+��~���ڏ~���;����9��IEND�B`�images/menu/icon-16-frontpage.png000064400000001111151163244130012614
0ustar00�PNG


IHDR�aIDATxu��A���}�{�m�n���j[Q�2jP�1/F�g��;�j�3����O�ݙ��J�/>�<��vOE�dY6-�/_�1�l7Õ����B��$I`�&t]7v��C��\vF�1N�4'K��f��U���B8>���6�z�^�D�<݂�<\�&6�P쏱S�1��~033�}��T\\�����i��O���X�b�Ν�0\)
&N��P`�G"ꁊ�nG{{;"���v
===hll?�\.�i&4d@j�D�kb^�7��+�F�*Rؙ@(�:��m�,�Ǔހ�}O_!�U�C��
��Jn�ڃ0k����6����[�Z'~�!$�#a��<L��=MRD�Q��E
�P�(C�14f�=z�d��nj�%�W�n~SW�t�sz�\L����*����8
��~H�
�I�NeԺL.�HF
�����ݫ�$�;�z���Lw9����=��
ܙbX2�=l�����gw��X���cvF�L|d��U�E�myIEND�B`�images/menu/icon-16-generic.png000064400000000601151163244130012246
0ustar00�PNG


IHDR(-S�PLTE̮s�������ˍ�Ύո{Ťc��Z��Q�Ӗȩj _غ{�dž��T�����������έj�՜���Ѳs�ɑ�Д����ȋ��H�������Äݾ}մs��Jλ�ε��ߢ��W�������͔�ޭĢ^��A�ߦ����Ɠ��������檙StRNS@��f�IDATx^��E�0Dј9̜2�/�خ��_>i&��'L�����4�[o�q]!����X�9_���P��b��/���2)-��hNd.��$Un�T�ք��3�q�̟n0BmkM{x���f4C�$}�4�P�U�)\����IEND�B`�images/menu/icon-16-groups.png000064400000001434151163244130012156
0ustar00�PNG


IHDR�a�IDATx}���V���Gwߚ?k۶msP��rT�|�m۶m���Mr����c*�ʯ��O�D"G>��������
�O>x{��o��v����.Y;�F9w�rҤ�rĈ�B~&d�ɪ����%�u☳#�/:�4UEU,��;���F>����j
�PXQ�o�@=��s;��\��V��hj��jX�~3��S�
���|����ӧ�=���&�:G�
M��0��
fG�E?��]V�&VXBII�Sa+w�
�~�H$@��䟎�h��v��ȉ]�_�E��)�d�Z��$��jϞ=O�����HdKr��!�0�]I��P���짵����N�H����i�eoSp�7�b%�o���F�8�]�h��5MN=g$J���G�f��<��XCr�x�7���匕��d�qVԤ�
)%���ڵkg�
-)ZC'�@
�O��\M`��԰���&-����mحz��4��)������GUk_��8�$��\��(2@�#�HI�kY�髅:�	!����8�bJ�,����=&�T!}��(*Rl�������߿�]��ߚN����c�hl`G�M��H�����
�ی���nݺ�E��0��ӥe�y�l<TǮ�f��mY�ƴ�Y�6|��}��ݻ_7`��UÇ�cƌ9�Æ
�a�K:v�x����?��Ñ]�v��g��/2�:jw�	~6f\�F��IEND�B`�images/menu/icon-16-help-community.png000064400000001254151163244130013611
0ustar00�PNG


IHDR�asIDATx%�3�-��o�̹�۶�6f��V�	�ض���Ŷ����bv���وʦIZ��኱]�&�ʆ���.�+r�2Ъ����f�G�x�4Yz��&"B�Q�!I��qL�'L��`3�?#1ֿ��d&�"IH�P���YE{
30aZH�4���X��V�"�t�S�)siJ�
d��'��3���}�|�~N�M���|�QD-ʒ�d��a��t���&�d�Ƣ|<����+�I�(UI��|Ǣ홿-�r��xO�W�����b�.bE��#���ya�^�5Z�=|x-�ߊ��^e�;��D1B�o����9���G�4��3��w.d�K@��-bTcbUJ�RT�Y�!]d��&0i>5�UDTh���}Ϻo�����Nd���F��f�+��lz��;K�$C5
����Yʌ�$v=����٭���?0k#�=.����0�ϯPTMI=��y�qb���
�v�%���E�O�P6Q�tE����fݗlr4�6�HY�	k��E;Y�bU��0w3~|2$����o�;��)����.6;��ȴ���ۏ��/���5?�FA�Qx�Bp��וgDy�h��쉺>�U{j�΀�
g�+!�F$�6��O{�����=¦p��IEND�B`�images/menu/icon-16-help-dev.png000064400000000750151163244130012343
0ustar00�PNG


IHDR�a�IDATxe��Q����nm�
k3fc�F\#Vc�1ڠ�j�am�k����E_z���I��G�	-5K�Kf<x���YTI[���q��w�vv�
��(��#����}v����!kx�h.E��wn�A�Yr�0�vB�B�D�&��H�̆�%M=C�
���K`�x����ҧ�:��i7fL\���5v�3W�6�^A{)rM�w�Y�T	��T���u���	�MȬB7x���!턟��%�|F̀����D<��R^ˢ��~�ĥ�����`�>��
Ư���_�ni���{�M=����[��	K��a$���R|	������ϛ�x�f��Y	ufz�{���Rp����#�N�}�f(�T���	��&|�h�DR戮����W��5�s��hD�
}�d���}0ޕ�IEND�B`�images/menu/icon-16-help-docs.png000064400000000746151163244130012522
0ustar00�PNG


IHDR�a�IDATx}�C�%W����u������O�U��X�Y�gb�N��{��>O��U�y?eq淫��x����Yo��	��Y���[q0�iAH6�鹞����Q�����U�J՜�q
�s5E��jM�L/�U�θ�Z:'!r�u���R5�\�Ȝs�
}���|��N4�Jiy��~+��Ko#�P�~cr�KN�c����fEY�ew�����[c[�ST��"��������қ({�w��c[��W�;id���4�#M
Tm�W>@�bC�	?5Ŀ8�]�)���b�s�-~B����:���
���G�\|#1&���͏�jܬ+.��
�<�G{��I	S��P
�Ě��}E��&33�ʌ�FȺ	C@L'
��'OjNj���
��0���`�N/�lE�+0^�$�V��i�IEND�B`�images/menu/icon-16-help-forum.png000064400000000704151163244130012714
0ustar00�PNG


IHDR�a�IDATx}��P����ٶm��\Z�eײ�-���)k�m���s~�t_�:]~�A�G�'�QԺާ��T�X:��FXH��5ܼ��G��38)������z�n���?��Z��E(��TV�~0|�\�h6~��W�V��#��?�������`I�s�����^�#��Sc�
�p
!V@f�?&m�{��YU��{ɪ����Ƶ��~�$H�h#�%��)A�(��y	�}�,o/��5��-ZsɃCm�.������.��3����Z
�5D���}��Lޡi7�J��.�Z��C����^�H�>ܾ
b[֖��'� �
�n%�"�eP�:H`��Xq�$�C����@�S�qgp�Y�a`wy0c!��WIEND�B`�images/menu/icon-16-help-jed.png000064400000000701151163244130012323
0ustar00�PNG


IHDR�a�IDATx}�E��@D�&��̸��f���|�^��ff�ш��.QEL���eVV
���k
��R���m�[N2���X�`�s�zo���y)��ūa�J��B�)4��(��
���B1���CL'50`=������`RN�'��{����K}k��g�b0o1l8�<��[�g4oT9d���E�y�O
mH��~�x�k��^�� ���z�o��]#�7���?le
����![B��oa�*���p�
}�FNA���cݨW(�@���9�}v�l�㫁�s�	X�[w�B�
t�
�=m;�bxs�3�~�@�n�>=I��~��������%�&qUo���o���������/73\��f���Z�IEND�B`�images/menu/icon-16-help-jrd.png000064400000000771151163244130012347
0ustar00�PNG


IHDR�a�IDATx}���A���o}����A�3@�kH��	�$���$8$���u���B��Kp�S�:�����Ӡ�P�����.~�w'���
�B��
�
j���~��ĵYH�4a)$�rªA}ߍJ��Y�TT!l�A�w�oY��	��A�74�*�187FN�d���)�1����A��񀂈���B�<;i�%s0a%IڽzK@�&��m�|�Aڠ!��N�?AX3��A�'|b�Š�T`�tX
6^�q��E��)��h	:_�ڃ�O4~	(�Z[�
I�A.�5���C=�`{L����@�p���-���&������8X�*����+�Z��7��6�<�O�7��>2i�����@���Êm=�v�@�f����hd&��K�&
��KHc��
�Wލ�J8���#���g%�к�IEND�B`�images/menu/icon-16-help-security.png000064400000001162151163244130013432
0ustar00�PNG


IHDR�a9IDATx}��%g���ܝ����n��1ڰVԠ��n��u���m������r'Y�����ɉ�����@�RҊ,�_'�$�+bi�A��,��"{����Y�
����b/p����k����~*�����Js�F���UU8�������uǝ~���NJT��'���,W�f����ʇ�|��_qǭ��庫
ox��{o2����D�ߣ��ʕ��U8�*�$�|�AQXL��0�����c�cO�.�{���Ċ�Ysr9Q�X�,V,	!-�G�)��2I��/}O,+,�	�+
��4ϒ˷W�w0��4���	�<���VV;^
,���
3�H][[��8C�@l��4�ʚ�[�=�~��8���!E]��m�.����߶Zv�q��ːA�3�w���&�~�	9I�$��_[4u4���
B
������]|��ύLO��,H�$��y��'k�+�׬E����o�U����.��ۂP�$a�4��N}��h��Ԅ�vk�?��
l�(<�~R�P�Id��V�0�>�?�SQx̹R�j���E;��q��#�gp��bIEND�B`�images/menu/icon-16-help-shop.png000064400000000772151163244130012542
0ustar00�PNG


IHDR�a�IDATx}��.G�߇ڶ�VP3�zc'�yㆵ�g�/|�Q۽��)v��6�3<e+���UXO:_��I�_�ɗ�h���}!MΗ��s^��4�Q���@y��Ս:>��w;���I�I���P��#�3���9�?����GSy��/���]x���7��)ͯe�������t�T���W����S~L�0λ��6p�M�X4
:�����7��L�
�j����t9����f�3�q!;
��^^�+���n?ȰÃ/CfN�������D]뛜���r#w=�ꇘ4�CR��J����e����q�p�Ť�z�s�l+�ԅA�_�ifg�}��Q��J��O�z�a�[�y�m������᷸��?��A�f���>����'���mO���?����q�b�D~P��:��ר
�)a���F��f<�3
���(�IEND�B`�images/menu/icon-16-help-this.png000064400000001326151163244130012534
0ustar00�PNG


IHDR�a�IDATx��pQ�_m۶m۶m��n���ض�Mv���n����{7v�̷<��?���q\o�B$c��nYM�E���B����CbV2E	�`�?�rL
ֻ�ì�\źVH����0�/N"ak'(�vMP!���Vmh������̷����!~o_$���(l�a�졢|g��
����
s}

�6��̑��'m�
��-��(�l�[N�������>?2ńJ�#�fB����B84)7#��#��5��T��ri�iޖJ��-�Yl�������@�V�N��VnF�cY6�*B}h2�^���<�T�L�5���Rz�u"�_E�X�S�@��hu��*�H��@r�o,���4��ݣ$����~>^��~k�?��r�.݀��@#��������$��B"�CTT��������s�a��
]�;�o�L���s�jc;$��Q�������'1d�Y�hܗanj��;{5*n��Y�r���]�M�h4���ɳg�~�0[�"wo̝sc�)�.�����B6"Td�>h�y�NNNN�G��3�f�a�y	͆L�ٯ��hLhAh����a���
毙����V�~����Õ7������VVk@�@BGON�JhD����-S��IEND�B`�images/menu/icon-16-help-trans.png000064400000001144151163244130012712
0ustar00�PNG


IHDR�a+IDATx]�5�$E�o�vw����!�H�#��<"�"$����w�s>�3-,���~m��,\zo��D?���T���h��d�$M�jB�$R�K�j����~z��v���ƍ��֭�\�#%�s�&�
����\���k��mޱ��(QU�T�m���JOIFieA�v6��G(Ď*����Ma�6�Ao��Źۛ����u�{+�&t��̖5�w0���%����"��r��*t�'b'�e�Niw��E��oظ�n���n��@M�����a����b3ۏ��,iD�Ҭgx�Y��hbW=(�����UC"޺(ݺ$m9$�,�deC���U���;���rԮ^��VL�H�����]�YS
e�s2����/��$?�ӔW)�<F_˔�(��0?Iڀ��r�����\zLj��T���$�M"4�B.��`4����)3�~d�v&s4����R=K"drfz����W)+��������z�;���.r�;#yuA^۩��mw���1u�V��	�`>L/{BvN�SF��1&
�0�����T��ik��IEND�B`�images/menu/icon-16-help.png000064400000001222151163244130011562
0ustar00�PNG


IHDR�aYIDATx���ca�׶m��:X۶m[�*^۶���x(F};�˴�2<{��p�|�=���2�(�
q�0
B�ߗ��-S�������	gVCQx�^�y<H���s>�l��'���W�3�鵑4�	2�_#r���8�1�y�
�$�La�g�C�p-o���;�PVu�kY;$/lۂ�l,F���GZԖ��Z����`>0�,�,?��v�5�x���
^=f�%A�e�^�e}/.4�>�hb�w��Ӭ�euW��Ǜԁ�Kp�f��v����/������>��5~���D���p�-�o��V̮>VA�$G�����2X�,��f�������a��ٴE���y�~���W�?��,�N�L98��m�����A.�u��O/3b�w�XW(�z!��v�V�'���
m�mRr]0��I�`��ƅ�?r�wJ�Vԅ�.">g�g�Gʢ����w�@��y]?���D�����Y�miG�ĦE/��f~�Ҿq`7C�FE.�^刊���#���Kq��VU��*��>gY�"~ݹs�%�e�'�B�$jEEE�1��/h�F+���O�x�b0�5�ʅ��"6�p��~�IEND�B`�images/menu/icon-16-inbox.png000064400000001272151163244130011756
0ustar00�PNG


IHDR�a�IDATx���-W@�]=\Զm��jŬm�F�m۶m�������<�qױ�����F�1c^?nܷƍ�I&��IG��	�C��m„	3�E�ϛ�+�o��&��!�ꌙ3t�ԩ'ӆE'2n�خq�<�8N��r�$����$`�b�w�?p/�A}����qro�j�r}�����߃�Ԫ�y�Y�1�S�TQ�;2�D��~�#���9������f.���=�,6~c�%>�1�
��
`Zm7�N�zb�N����-��A1�]�~�-�b~���p��|�_fr����O._�W�M���O�Dž�������xr�5�����;?|�O_���ǎ�_|>��}�O��o��"�"�q�`��E�v�䃗��OŧϾ��>��bJ���QHAHI�������a!$�E'��ߒ��K�&_�@i��-�s&�|�q�
5,Ǥd��b��PK(>���
qL�	��#a�
a�#)f�J���ڠȧ����O�3N�9�(A~�M��~F�H��Ȱ,�?1�+�\)�c�a�5

�aP%�/�f1�>�#'7�B��9:׹?;JQLx���9�0��G�����?��O}��$�\��}>IEND�B`�images/menu/icon-16-info.png000064400000001034151163244130011566
0ustar00�PNG


IHDR�a�IDATx��ՑQD��6�
aBP
A)��eff.3333�Hff���h4f��T���_pE�j(�/EˣHt<�D�S���>]�
ZD��=ɗN~HC@C�7h{D4�����1�
~�����|�"Rx��<Rv�Qk>�9#���LƔ�&��y��Z)�H���_�ͻJ{�Q�%����[w�@��c��Ȱl��g��O�Q���'
7UfY)V�S�O�l��wL�N�����d�j�`���2��
�f�?sBA
��Vn�6ar6��n��J�OP��
�xN\�r�\لɔQ�a��e*���A"e��M�ֈ0�o�8N$�1�̟ܧ�9@[���Tf�:E��t"L|oR��E�k�s�&�_o��u��c�WĶL"�_�^�F
mE]�2�������}D��O�#���wj#��Db'�*��$�\2�qb��N�u&��(��^m'�ꈸF"V�Q�7�S�L��3�·{��IEND�B`�images/menu/icon-16-install.png000064400000000676151163244130012314
0ustar00�PNG


IHDR(-S�PLTEb��b��b��b��[��^��a��K��L��Y��@��U��V��f�m�u�}�#��(��-��2��7��8��;��<��>��?��?��@��B��C��D��E��H��J��L��M��N��O��P��P��Q��S��T��Z��\��]��m�����Ε�����޺����������������������������B�o=tRNSPp�������%=a�IDAT��JA�3�ɒT����
��/���X����w�i�H��ey�v�k��
n�>N�<��PUuX�ZU�ԇ�!�
��
{����U��ҟG�2$Ю}!��;�MC����U?e���C�iH`��
vm6�]^a�Z�+����@�G|U��شIEND�B`�images/menu/icon-16-language.png000064400000001234151163244130012420
0ustar00�PNG


IHDR�acIDATx��ldE׎�ͨ�ڶm۶mԶm�6Ƕg��A2훜���n���
g2To�ˏ�*[v&(�7IA�LWii��e���T�-F��l�<�`��ӣV�J
�͠(�aU�����I�����?\J�D��p���x�/�H�	c�ȱ1�ob���T�<���D"��Bik*K�:䈱=���k�����`�f�E��Y�Ds9M8���cWe��0�V��	�˥XD�R_
V�Sq4�������u
<�:���>u�
0��
�>���޵��Vm�e�eb�5p1�epjH�B�rb�W%��V�umx��4����i��V�㨨��,�%
��
�,?�`_`%n%4���*`N�X��t�K��H�z�BŤW�02�*'B*�^�L�,Sm�}.�Yચa�UW�kJH���
�я�`�IR=�a�t��UH�&Ԛ�ף�`�M;O
�Y,�Jir7F��KDs{'4��o�s�A|5�JY�])Гy_���y4aq=Co#�)�*�T�IF�é���l�x�o�cj��͎�j˧8앍A�I�����V9W>����{��9OVX%�/���钖�4���/�����$���A�IEND�B`�images/menu/icon-16-levels.png000064400000000367151163244130012135
0ustar00�PNG


IHDR�a�IDATxڥ�!1��Ѳb���E��v���G0,�%�Y�kr�`Qa��'���+�>3�����7���ˈ�/�3;=`?P��i�Ȁ"D40��$P���s!k7��R�
�I#�%`�F�q��p�)я��o��p`��k,��zPC2��wԒf��U��YoUy��:��A6$��1��K��nIEND�B`�images/menu/icon-16-links-cat.png000064400000000771151163244130012527
0ustar00�PNG


IHDR�a�IDATx���@F�Զm�A�6Vm#jp�m۶m۶�9ߏ�K�zfv�x�V����)�|2:G;�Z��b_���kUYȝ�Z7ڏ���>/��ꅥJ�ȶ"��*A���u,�fl>~�T`t�B��"dZ,F�%
ӢI�Y�"��f�U�*��#�<���A~)��b��J�]���9p���7�<���F&H#c��|r���
��D$d�b�!;���JH1eT��B�gU�;$v��H��!�T�TK�f�0�	!
�_N�(�m�|:��B 
A��F%Z����|u.�O'�t,��š(���!f���p+���}]k�}D��I��
�7h:�{^2�r�/�5�Cߡ7�=�C�0_����2�>0a�V�x2��x1���S	�֦�|�ٚ���U��|e�[i:�?��1_�yי	�N���Y�[�?��a�s�C��0G\/M��?�Y����i�IEND�B`�images/menu/icon-16-links.png000064400000001044151163244130011754
0ustar00�PNG


IHDR�a�IDATx���Q�O\��S������I�m>۶m�wgv϶;�wP'�F����0ESk{
�ᷓ7~Rn�L�3:�Z<@�ą��9��b�b�k"[C���ډ�Fd��VNL�6�
r��S����n���/儞�H�'{�ag��3���RX$wS��1����v"����yp���..��s{V�����
Ǎ��h#¾���].��{�c�����;�	��"�Kz�KYy9M&3M��<���;��-o��+�#��>vvt���A���g�5L6�y*��i���rOm�-=g|e�&�ɨ��}�k�<w��O��9�����<�a���:��0��K<���Ǎ�K�s�t/���tT�{��XM��������/x�@�����IHL�5�䒙orqٝ4�V�Ν,�Yq??�͍���q�Lm�����+�r2q;�x�G<�ש��i.�ō�B�J
�e��N"n�j��{yt�+��i@IEND�B`�images/menu/icon-16-logout.png000064400000000740151163244160012152
0ustar00�PNG


IHDR�a�IDATx��EvA@�@��r6���G7�.ޅ/�Z9����0s"���Sﵰ�I���-�S\~
*�����ex2@�>���g��d���ѣWij�'�u!`t����5kl��
�<�*�0|�
�_����p��Ok�jm͚��(�8r=�7o
�LFF��G���5��ۭN��4@�wO��Ϟ�ښ���y�w���H(
7�9�S����0lm!�z(�9�#��������	(�wwk�����ؿ��+�:hp+�e�������6�<`rB��
�M�E(����#�R��b�P����,Co���ׯ��-���jT�<\�X.;ڲ
�p��F�ú���ż#cX�ʹ<3;kf�|��(�ʋ�2�lC\+�Fԁ1�~`Y��c��(����"IEND�B`�images/menu/icon-16-maintenance.png000064400000000415151163244160013122
0ustar00�PNG


IHDR�a�IDAT8�c�����
P�
VĦ�1t�k����x"�hj�����/�
��y?
٨�f�� v��T�i�JGF�wA�
^O��@���q�u���cq6.�!�+��s.�ǡH�P�|h8a�h2����B��<�hԛp�2Ի�Q�Ŗ��t�&ʢQ�r
e	��d9eI�;e��={E�7�LpŸXWIEND�B`�images/menu/icon-16-massmail.png000064400000001264151163244160012451
0ustar00�PNG


IHDR�a{IDATx���[�g�rm�^�c�Qݵ7�۸��6�<۶]�u�ٻ��;�dj������Jp���a�������W�;�����l*))�������poo/�q��rss����TTTp��|��5e���I��d����"���������B�,��aYM!����j�}hh�8
 $\�(J,
9
�L&C:�F�uL�İ!�dg1�4����"����199I,���{(M�&QSS���~x�A��`�^�
�Ȋ��񦪪���Q�L�e%k�w��O��*��@,��z}���
���`Y��333Ε��T�"�gɪ�
��S�$�uq�+�(����9�Y���
٢y۶QB����Ќ̀m���5��T��{�h�F<�֮dѾ3�$��o���&������_�:�.�
��:�=��;��k
^N��$��w�[�klsp�Կ(XX�8m���i�[o�5�\ɐ�O�VZꏚb~�5���-��=�K;p�$�(155u������ܪU�����N�MF�-=��rW�
��jo�}vtt��ŋ�e���Q/��R�������̙3���ψ<�0\�v��@Rp�|@���a]9�b^[�(kCa�4IEND�B`�images/menu/icon-16-media.png000064400000001112151163244160011712
0ustar00�PNG


IHDR�aIDATx��5�1�{�xfff>�L��V᤯�]y��}���N�0�13����'�VU��O�}c�]��̿"D:s�%�!P����x������%%%�������=J�!�%=z�Y(@��������Db/>�y��$��(��q���-
,�$bD�޽{��߿?���}�zb�t�1xKς��}��H$�����G��}D�(��X�zA�D��JW��$���hO:��,�H.~[%��b��b1�{��
�0�Lf��~�v
��#����bRJPʕ���vJee%�JK��Ո��*��Y��5,BtKK�
7��XE��B�+3���+p�466���h�gL���DΏ@���A(�����d3[<���>��!�%����n�B.�&�E5�S��X�t��XhDa����'�o׬]{@�.3�h���
O�cڹ�\�	���ư`���[J��w�\*�z��ܼPQQq����,���y������/��p?��>IEND�B`�images/menu/icon-16-menu.png000064400000000614151163244160011605
0ustar00�PNG


IHDR�aSIDATx͑l%Q@�W��m��Qm�v�7��X�b5VԶ����w�Zoָ��ə73F��1f7��<z���
L�*0���n�FPUe�^7@	��L��%@��+���G���[�S�p9�A��E&�'gall�(�H8�4"!1y��@�n��/f�`���s<ǝ���r�"�q��Qzx��.8�˗F^����'�TDEǞ7����#��L&��ƍ���a00���FJ��GD�v���%	DA�7[,�U����_
�-p.\��|�I�*�VW^(��7�=N}]M�F���v�,��s3���J�;v#i�����f|j�_���_�/���w!IEND�B`�images/menu/icon-16-menumgr.png000064400000000755151163244160012321
0ustar00�PNG


IHDR�a�IDATx���A����{�m۶c�ۨvP��kUT;�m۶�>�����_2qF;�D���z��W�`������X�<�rrz��T�5Cv
�:�v�/�SqS�$%����9{����_�tD�pS��6MMǺ��c�)k�$���#9�����O��#m(E�d
�t��
D"Q�djM�UI��8�K*����n���*31a�%����ʮcg;jW��l���Z�\��w\���<��l֏
��{�X�a#?""8��u�
�s�ӡ
�T�K*�b�,Z��G	���	u�S�c
�ֶ(G�Ž}��G�t��m~T�@ǎ�+Q�|y&M�Ľ{w���	�m�6�?��a���K�_���鋝Ԝ��{%��%��^Z�])����Nm�M�K۶��
���≜6��SF��$PJ�@0���,q�7X�A���IEND�B`�images/menu/icon-16-messages.png000064400000001104151163244160012443
0ustar00�PNG


IHDR�aIDATx�R��q~�l�6�\SCvs������m7�)۶y�l��^��\s���Z�����~�Z�N�j��
��@��j]���y�w�����{+���\�H�U*��>�cǭTDk1"��!���1��5
d2�ہ�L���B�$DZ���|������B�L�[>2wb�����d_�"޽{w���/�g��+�$�K�ł���
J�"�!�\x��̍\us��ñ[/݁�-6p��B1D����NXXX���{/>FVl��pW1e�I�0�#*�c{�B@���.rΦ�&#�~0Q~�������J�6pK��Q��d2X�웛�s���_��Kc�
�蛗��P1����t,x]݄��i1�bB���N�tD���~�p8�egg��
�D�f��h81�Q�<46��B2����K�Ӵp��'ډ-��ҽ{�6�
�����T�i���X�����EZn��'�;C'��2Pz�U,��dv��?�d�kƊ�+IEND�B`�images/menu/icon-16-messaging.png000064400000001363151163244160012620
0ustar00�PNG


IHDR�a�IDATxe��,I���g5�-��f϶m۶m#8۶m�ѳ�\L�z�u�tA��p��p������r�X���}b04C�G�>��~'�D$�
(

�JSd�`��(�2S�ݛ/�����d�g���<Q����
�JEk���:�/�>���[
�
��"_������	!l�Pd����R�Cn��\�,��|�n�{&]������W��t�`EC������x�xd���n@��ڳ���c��Q,��l�b1�]��j�zBv8L���%��"�H�;�s���	�׋�nG��O�pn�BQ(�<
1 ���~��+���voii!
�4�OW6xf�Ơ_t(�8#��
n���������<��s��|d29�nn��O�*�*v3�L)
��h��6mZ
��0tJ�S�լE~�_�Ys�b���M丅D"�+�N�jT�U��0�l���^E�022²e�-W�{RL��
MU�����~��_������y\.�sS5]�$�	��$�����)�z�ɧz�i��g<--���	��1�>Ɋm��\�Dv�A���=����`����F���~y�r,Y�t�…��1s��/���w@�
�!��sν���kU&S�9c濓&M���/���U@���
$	p��𯮵Ջ�@	��~�*`���}�&Y�cJ�IEND�B`�images/menu/icon-16-module.png000064400000000472151163244160012130
0ustar00�PNG


IHDR�aIDATx�RCb�A�����r��m��5�m�8��vq^��l��(�X���%�btl��X\Z��66�����,�@��@���>;0�JU�����I��/bye
�G89=�����������P4�:�t���۔�P$�d*�r��
H
xA�SD�bQo��/�p��pyǺ����nK�_���=���-��}=�K�#Z��'V���ԛi�B1��{ǻ��$�+�D*K���#��
�7~	Lc�IEND�B`�images/menu/icon-16-move.png000064400000000451151163244160011606
0ustar00�PNG


IHDR�a�IDATxc@���y�X�e��I�*&UÈ���%��9"�-~�h��I^$���ʱ�$y�Xkm%��O+E�^/��p��Y��-�@�-H$RR�֛��ts��_@I~�P��թ�nL��
6HY
HH/ûeb�~��O酸`�ȝ_k��$`��^D�,��\�ǯ����������@r
5@��0@��(;�ȧ��=�#v=@b
9�x,P����a��z�IEND�B`�images/menu/icon-16-new-privatemessage.png000064400000001127151163244160014447
0ustar00�PNG


IHDR�aIDATxŒ3�o�����]Ŷ�l��]�
�Tq�q��lb�c���^�1s���<��h�.�k��	�ۨ|E�&��~P�(�~�C��Ǐ߭aÆ͛�j׮ݹ~���+**j���͛7�^�n�~�6Vҽ�u�֭WZZڸQ�FJ���(���87n<�����F��R,�b��8V�=�
�W�^��ʉ�P(�m���>�f�l]^^�����.m'͟�!�p�O�~Nu�"G,�a�k�r���PRR�"��
[���7px����,4MS۴i�Ȳ̲�S�Lӌ�e��{�����k�
=-'x\�!AUՏA�u]�cYY��<Ϝ�.��"�봂�s����RKkt޼ys�R�g
I���Ȝ6T8�*�T�p�X�<W�߿���<�]ב����?RfU�L�E*�����͆�j#4�2������k��'O^0`�2��ݻw�55�ŷo�|�#�&?�Sz�\&j��Z�����ɽG8!�}#��/^LT
�y�D��(5p��LuIEND�B`�images/menu/icon-16-new.png000064400000000556151163244160011437
0ustar00�PNG


IHDR�a5IDATx�œDq��
D����*���@�Ю0��L()A�DJ���|K��׽s���=><�<6���+�n
�w4���q˿��྄��Y�Y\k?�TG��ل/;�+�oVH�yc�N�{wP9��oKpO���
���I�ݓI0c�]m�k{�rϧaW}D"zb��v��f�_�a47�~H���î6��Ph��kYr�؉�>�^���,1�{���Z��
M,�V���m�
M,�V�?Q���,uJ��Чv��m1�]�I2v2_"�4o��9ê
y(
�1Ӟ�����/���IEND�B`�images/menu/icon-16-newarticle.png000064400000001063151163244160012775
0ustar00�PNG


IHDR�a�IDATx}�3�\q����ڶ�\TI�&�Y��OЗic���nm۶w߼�_��=����6el߿��u=�%r8�333�D�'�Zii�k�Mv���fCl�&��077�(,,���V���gggU�	�ӹ���������z�
��i5�%
��`��Z\:yonn���r�N<^�?UUU���/&>>^B������EZZ�a��	����Z(�����w�n����>��;���:::$��i�gTUehhH
2
<==��\�m�V	��:��
�=���d
?�:1=�!��K��+V8���P>(�(�ń{����\
�y{�~��(a��'����V�C�>@����Fkk+�=U�B6�+@�n��+�����@ZCCC	G�@��2���٦B<�b��
��>��[0===633�x�bv��p
c���[fJ^�na2���eҀ
�g-蛣�]�sN;�Ɉa�<�q	p���ː�s��*S�8#�zIEND�B`�images/menu/icon-16-newcategory.png000064400000000527151163244160013173
0ustar00�PNG


IHDR�aIDATx��3x4A��?۶m���4q�h�ض���S��M��l�6�y~�y1��:Op	�B��PtH���?A�C���(ퟋ�Q}�u�`	�[��M׹���*B�z��}�T��'�=�A�I󾙍jn6�����)�S�	��G�e"n���_KN{��[���w�v���^����ʯ�%�~(�9�p�g����Z��oǻ��XX^����3�Vn�^�_o�-��]�꽚,�]х��s��
C�̲�z<�;H@�<qޢ	v���'�~��ۃ��L�_��IEND�B`�images/menu/icon-16-newgroup.png000064400000001404151163244160012505
0ustar00�PNG


IHDR�a�IDATxu���F@���ڶm۶mj��g�fm۶���v����ņ�:u*����*�MM�p���2��ʳ#z
���\��W��bH)���`z5���3��SO=�-�3V\q����$�@rֳ6
�oy��o~�Gh�0����˻m��e�s��_���J��}���M;�;�mn��O?}l>e���VY�e\y1]�
�[���.O��S�2[��ѣ��`�V^�����&��/��V��8O��'_�]�{Q���dm�XO=�������y��М�joə�u�-\�BAg��I�Ri��C�^_�o��eY�Y�E|5���
Q.Ss]������R�0��Y)������q�0\וk��(k�"t%a"�����d�&n-G������g�}���	���C�V!ްY��5�&(۬��ƣt��h|�
:����փz��W巊�e�sx�؎H�7�����䪹o��`�{��>���j�^��r�C+F���O�,5�$[w0�?���ƳU�W~����n�Y���$sРA�_a��O]��恔��P:j�<�����`(�"G�u�'�x�n9�����5%��A��%X�G�ӞP���(��z�.~2߯�`��ߤ	�
��b���/&/9��S�Q?��~��O�)I%u�W�w�=�����t�w�
ow��>��%�IEND�B`�images/menu/icon-16-newlevel.png000064400000000641151163244160012462
0ustar00�PNG


IHDR�ahIDATx���a��SD��6��ڶ�j�f\{m۶�k������o��ϙhH��7�c_~#�	�ǎR�ڗ�d?�['fl'q
v[�
�?B�z
!���/hp=�����OaP䦁�z���3Y�ƨ��Qk���Q�;'-���A�_�_��9B�d�ِ�W@�
D��JT��?w� ����OV���?k��!?���{l�E�rU's��!q����>�*��u{
i�J˞�BRp�0��17yd����)L����+}Ro��Km�nY*��H^0�5)���x75�����P��lɫ�/��R�ڠ�<�AKi�G�ZzHR#o�2ha'I�9�u[����5��^T2}IEND�B`�images/menu/icon-16-newsfeeds-cat.png000064400000000667151163244160013401
0ustar00�PNG


IHDR�a~IDATx��3tlA��l۶m�V�XŶm۶^�I'��2�ї���S����	�Cŭ�T9Exl��2���@�E
3�$r���%9�0�.}#
����f��1��<(ȭ�Ng�ͼw�Ez�3�9�וK��r��Υ���Ё}�-���	}�!ᎇ�ۿ�!�˼�����/_klr�ġ��6��޹��/��F�Y�ۤ`�c	-�,@R_����V�w���X~=7
x���~�z�r��m�y�p���,�٭�p�K��y~��4QK��ѿ�:uh�g5�z�
X�6��7�5z!�b���l��:t~�1]�
��*�����|�@�"�,�ұ|�7:Oa>Y��?m=?_O�Wυ���K���l<)IEND�B`�images/menu/icon-16-newsfeeds.png000064400000000602151163244160012621
0ustar00�PNG


IHDR�aIIDATx͐�EQ@׶�Ҿ�Ɵ]?{m۶m�Hk;�f��kv����_�^s�3��G_X��%Ҋ�S�:u^@���4�a�4�V��DH'HL2g!��ܫ�A;i�D�:������B@��gϿ!��:Ic��/�AKK�r��f螊�$��9��_��M0����Q�ݐ�%��U[��z�h�:y_�j�c�s6�h�<z���bA�3M��x�$1LK$f�@~s`�Rz�tc@?n�û���}��M����c�>$�o��@D
��`A���T.�Z$�yȆu!��i�@<^(��
���]n��:��IEND�B`�images/menu/icon-16-newuser.png000064400000001352151163244170012332
0ustar00�PNG


IHDR�a�IDATx����F�of���[۶�Զ�>���۶m۶k�7��ܦ�������.������4�[w�=�'�+��^�A�3��{�;��"���p|��[�Xv�kֶ�����O&�D�u\��2�{~i�¹ۆ����w�5
϶���w�'�MDв�#�ݵs�,�N���v�
�����z^/�5Ր�~��@8����n�
��J\9��27���"ת;PZ��I�������^����_���/�ɶ)T��~e�Q�ړ�?����t�Pg�����t�����7�/�m�`l�e�L.�n���z$
/��(��?�}�A&�^\���g�}?��f4̮-v�v(�>�<�g�&����m'r�}0>iH�6�PB�2���)�e�|�gFU�_�
�(��#��페B_|�пx����<�҂oYP]�)a7�v�߀e9�Ɨ���g����%v8������\���#��G��C�_|���nɇ����N���gǽьzzcV��枍#�?9�
��i��AF{=9��n?��h��z�?�(=	��{�&����T�ꔴ�@`���H�����>�]���/��rד��1�
�����$	���}蓧�x?�zf��2�/�,‚�7(H�/!����ע�M!��IEND�B`�images/menu/icon-16-nopreview.png000064400000000436151163244170012662
0ustar00�PNG


IHDR��h6tRNS���7X}�IDATx�R�b�A�׋���m4q�
v۶m���ǰO&�~}�>,
ŇDg6\�	�;�O���7�-���={�h�Q��p���1NBl�C�v
N�o�2��Ҽ2��̦][�Od6Xa�����|�_�
������脹H���o�1������Ÿ'2�T?����a��;2!�09�j����h>��ggg��̖�jPo1z��IEND�B`�images/menu/icon-16-notdefault.png000064400000001135151163244170013006
0ustar00�PNG


IHDR�a$IDATx�S��Lm_�qͱQ�n���7��Q:g�Fζm���ח�8����޾M��@��Z�(Ǜx������*�8d(yp�d��9�,�H
�Clal0�R8G8�j�o5���#�s��>�_6�!�a{dNd�D*��"��r#�<#���/�������XV�@D�Fz����t�vi�:
�t:0��7�+M+KK�ͳ{����؇ۯ#�(����!�
X�qA���J��M��z�������'��@8�9�ˏ)�dM�T.�Mr%�hT?�f#c���Q�T�K�˞_S'��2�
z�zA���XE�2Z0"�>�l��_
�{_PjP���(��1�(��%9n�1���BH	�B�1�������$X|�R�/�ŐP�>:;��I$��t7��B3B}$�sȩəG2�4
��┒���V
��^��ܚ��!���%�Ŧ��&E|Al�[��Y��k��#���'�&���������ƽz�����y��K�Rdy���<���ⳋG�x���
W�]9��������XQQ�IEND�B`�images/menu/icon-16-notice.png000064400000000752151163244170012126
0ustar00�PNG


IHDR�a�IDATx��%�UQ���q2��Cd���F�%����������c�F�}�ޝ�fm]�
�����1k�딍�uΞs������l�-�mp�:rԮh�����[+\����8�ָ�`��`�]��x��xxy
���qU�ug��D;!l��l1���)�x(��*6���`]x̚�#.O�y~�U��Ul��EnO�<��Uy�G�E�%�"Ot�g6��A<����*>G��*,����pnaO��*�0��Oq����j.L���)'F7g�'��gz=�ȹQ�����hbʭ#s�}t.�'e�X�L�K��,�sg����_�˃���Y4�^�!
�gY�!�լ���zqe�`�,���9�使3��?�UY*F�:��]C
�ԗs3�K��a�X��`u޷�_(��N��g��lȟ��9!��׺��X�gh��_�ɬIEND�B`�images/menu/icon-16-plugin.png000064400000001066151163244170012142
0ustar00�PNG


IHDR�a�IDATx��t#Q�s�E�I��m۶m�<Z׶m۶m��qk�h��<�~��*oo�M�EE��
j�L����Rff&232����h,�"ݢIҏ��x�<�M��S��<�������J��]]\d�"�TXXxix8�
�HӋ
A�V�x�@�ŵI�餧�#7'�����A��Pd��d��C��8V��D/�u}j���n���hp:�ȹ�b9��P�WU�lT�5S�8x!�!75�vrt�d��pH��f�Y\k��k��Y�gH@�7��둠ӑN��>�$�i�
�ʂa�
�yl���Yu�	\)�Z����쮰H����	v�ZT�PQ��
��>��zǺ��n�kPw��vI�i��Y�D��(z7-?�=����`Is��C��k���|Th�G�ɨ�@A�'
��Q��=,ͺ�	��o��A�m1�Dh�'�L�W�'�O�!�p�f�Lm�+��җĢ�w�K�m��HcQ[�d*?��0���l��AIEND�B`�images/menu/icon-16-preview.png000064400000000461151163244170012323
0ustar00�PNG


IHDR(-S�PLTE���z��|�������������W��t������}�������������ȓ���������������丒�|�忱ݫm�`e�Z������ؤq�i��z������O�J����������������կ��ytRNS@��f[IDATx]N�@����w��S�=H��d��xUZ
b]ȅqe�����?�'�i�{؞������w����Ǯ��G�n�7F����
IEND�B`�images/menu/icon-16-print.png000064400000000715151163244170012000
0ustar00�PNG


IHDR�a�IDATx���a+�q/�+�V*O)�***�R0ب@�H)�9��m�(
�d4l�v�ܱ;[�\�٦�[91K�J�y��[���O�a`mIGҗNp׌��۰�_����5�nX6���9V&>89<���ȯbn�
��p@U��9`$WS��I�h\�4�Y�	VWV�nT�$oL&}�(>//b�
�P)k4�Ucp�?�y~~��r���{�����w��.9�0X��մ&5��w��9
>|P��$5��
�����x���x�9^_C�,+AK�⋎"�rr��֎�=XO�c���eW\��agg���&��\�My�K�QU�	Ezf��`"��up[!��(�́@^�������EQ�i:vu��$�D"@�x�7�j�vo�^nIEND�B`�images/menu/icon-16-purge.png000064400000000714151163244170011765
0ustar00�PNG


IHDR�a�IDATx���%Q�7�Nv���J��k�7�gLx�m�m^dNvM�Z�۷�=;X{�~�1����Aւ�D��z�n��2L9�������0���E��I�:��ϋ�I��O���wS��FnQp�<L��
�R}�#��M1FX�#����J�r-�}n"7��Yp1�`	�hr)�&_�28��|1���ҹ0'�
��|6�2��
�vC������6�:���Z����7�qջO\��
.�*#���\\pAa�‚;�-�t�yL��	ҍ�\�u�0����bɴ=�iX���f�/�'�>'1��5ŏ[�2aG�G[��2��m��'`z�k_]"?\�"@i�#8j]C^�N�*x?PK�U��z��Ts����h�y�A�Y�~�y�r�{�~�y�y���l�w��pSIEND�B`�images/menu/icon-16-puzzle.png000064400000000621151163244170012171
0ustar00�PNG


IHDR�atEXtSoftwareAdobe
ImageReadyq�e<3IDATxڔ��+a��Y�
�p��p
�Z��&���){�C9H�q�"�v��ns��lj�x?�n}M�z<�jf��;�g����y�c1�P�&Z��k�r/vэi�][l����M�+rr��������5�m~�u,����<vp�A4
0�u�ذi�޲��Џ)�����Qbg�G�N����V�e3f%`R�T����2p�Oy>�*NTM	R�?��cٹGr��0'5id�Ι_Q��U��au��&0�5���q|/dwp#�︕���C�}'�F�RZPQs�蒀�[���=E�vu�IEND�B`�images/menu/icon-16-read-privatemessage.png000064400000001334151163244170014572
0ustar00�PNG


IHDR�a�IDATx����f��f��9�ֶm�����o�v;�m��Ӡ�m�g��L�o��{3o�M��Y
�%	(�뮻.Z�z��@�1��1���G}�}__�����|���?<��#7�[I��G���_��v����f���_]}}���?���@
���o͚5'>��C�3�LӬ��C�^�~�[��s�e#CE�����lٲ�.�!�-�tٟ̒�����fO+8��c/^2
�?��-�g�e�U��`�^|.
�>����7��ʢ�wt������7�D�6�>���#��U!{mU��E��Ѕ^̆���H$�$Id���$T7=�q�q�R~���?:��=�O���[�|��$����~zDz�}��,�&	��[_e8k���F�Ө��pȧ�I��ύ@��N*--ݙ��i4M#��*�t�Q�0�e&W�HLұ2�jV�Z2P���mc��b��X�\.�`�m���ia�!�Y,K�h��|{{�gB$�E��(���!�!=��Ռ��O0ւd���؊h��_7�q�B(����6J�R����b�(*���E;����۸���O>�������_~���o�W\q&��m���ī���l~���.��b
0���#�
�O9�ʈ@���!i"GO�IEND�B`�images/menu/icon-16-readmess.png000064400000001214151163244170012442
0ustar00�PNG


IHDR�aSIDATx���$G�����m���l����*�ٶY|e�bkd�;�ٍ�o��Ξ=;�~�;�?��W@�ݻw?u����QU��j��]�Ԁ�	&\�}������8-��8Θ��K�,���r�C�]��͛7o7Ms\__�|M�h���,|�L�J%�40����v��I�m���A�]900��w�N|��\s۽�d>��Z�gE��W�v�m�
aY���(J������e�V�4o4��T@��,�=V�u���G|t�z�J�X��+
|���\��:�b5���[9y����㶇o�>�FTa7Z|�m*�ƨ���#PeL�F0�>�R���Jb�\�T/��w���1�*�ۮv�3Jڐn�H
���PeJ�E&H�C��s�u
�7�|��J�te��������*
H�uz����.�@��c�B���	@6�Q�
DV����ΛX������q�f�uM!�	Z�!�Z��	���*�a�R�q�����LH$����s�e;��"nC��^�=U�x�����@×5�<��Y
t1N��~�~�(�?�͵�y(+��@0��
B���`��IEND�B`�images/menu/icon-16-redirect.png000064400000000606151163244170012444
0ustar00�PNG


IHDR�aMIDATxՒL`dzm�S
��l5�!۶���l�6���l��=S�{�?�S���
y#�4��
�A
��j!��L�i#�
բq��k�V�n�x���[�
?�0Aa��yp����-�.�"o�_���U΁963J\8�ȏI�,�N���TR�DSD�a�U/!C��oO%��&c��k��,��/+�OOސ�8C�I��8�F��J^��c��ͩk��pD%<�c�X5�k�t�/^(�ҹ6�dx��r(##�5�ͬv�<?�{�Q<�4C_��o�m�hb�u�U�A�`��v-�?�$��Ϭ���J�Hv�8���~IEND�B`�images/menu/icon-16-revert.png000064400000000560151163244170012151
0ustar00�PNG


IHDR�a7IDATx��huqƟ��۲�m�N'/��e7�1϶me�-�����{8�_�xN��'��W�٫�ro��׫z��s�T�߿��c\�@��{��
�%��Z(˃?b�1�Ggt�Ń^���C�v"����n��{�`r���Ő
@�D����Pp���>2$x�c`��{�:��˳_HA1�
E)���#����1�)A��*U��
���0�Y
�ʅYA����Q�"WS�+�l�熌��z]�
[�x&�*#���W$�j��c�����C�
2�~�;?A}�d��IEND�B`�images/menu/icon-16-search.png000064400000000671151163244170012112
0ustar00�PNG


IHDR�a�IDATx����#a�����RBJH	)%���m+�mc����5��{��n��xoxxx<99�j�-~}}�gk-$�K�s�Z,�>���ذ�R���d)�X����q2���/�ӝa��
���x<�����2�����B�T�E�UFD~
x	��H�H
� =�ᑤ�S��ǿ�g
�_|M�׀H$Ry�Q`�`)�)��ӽ&H���r�0��i�UȎ����Iԇ8=���ޞ�[շ3�L0SD��D
���r{{˜��a�q{{[�+��Nc4]����X��p~~�A����w��#u'...pxx�AL�|:���P����
GGGy��#H04x�^����8==��q(�P�@�D(/����	�xV���LIEND�B`�images/menu/icon-16-send.png000064400000001052151163244200011562
0ustar00�PNG


IHDR�a�IDATxݒl`��`�m+��[�Eg۶m۵{�m�g۾����
g/�����?����	����w�D���XTT���
���A(�gz��.���b;
P]]����d2h�Z�F���#���*�(�Jh4�z�'������Ӥ:\��ƕ�"�����k+(�H$-��ϕB9=l6,}ƿ��t���$����
*��<�&��F`��
l����G�j�"��F�Β���,�/���%Z��]H��555\p�k,|��a�L�eW��Ù����rp[���Ԣ.�Oyy9o�mT&�|�Ç�l<Im��xl���>Fs\f��MD��&��6%�OJ!J�Y�6��i	l7�#̈́��*T���9�r9T*_%�n�n�n�co$Z�L��X(��A��Q��mț�A���Ħ�:�t��7,���NX!�>&������ۆb�M�̅we�d�egLb�쬠�7ccc�?a��K<!LIEND�B`�images/menu/icon-16-stats.png000064400000000416151163244200011772
0ustar00�PNG


IHDR�a�IDATx�n���ho�#�z��u�ڍӰv׶m�g��p�[|��<O�S#�|n���3��D��=%�q~G�RN0��G��R���ڬ`���}���'bP����e��{����1\.����]�[S�N�	J%vi\;)��eH��Pk�
I6�
5ܶG�b��R
�N�����	n��0��dw�@���;}$�ϫ/&��9LdZ0nR�IEND�B`�images/menu/icon-16-tags.png000064400000000775151163244200011602
0ustar00�PNG


IHDR�a�IDATx���VQF��ȶm�v��F��a�{e�
Ïl/紛97{]�]
�I��ճE�?�p
�WeW^+ℾ��[�!;51�%�&�ѻR�R�pu"O��C~"eF81�EC�������N�#���+��������r�t�����i;9�W���zV��(��j���X��6ں~�v��=��=q%ׂ���X�$���ۯ��+>B.�}Dv��)�G�NB���O���S}�$�3��2�_�Y��c-X��[1���Ԩ�IF[\���&o���EX$>�Z'��/��%c�����
�m���e:�{=��cN����I�Zc�X��F�zUiZu���H���+�	�Y�F
��ڝE����J|����O�X�O2��1rW�Y�rW���B�
Qf�s��׀~�e�`>��IEND�B`�images/menu/icon-16-themes.png000064400000000534151163244200012122
0ustar00�PNG


IHDR�a#IDATx��5BCAE�hYk�e������p�������
��;q��<�9��l�L���g-hIκ�-TJ�!�ۙdH
�[i�ƹ�r˸@�6���B<4���DW2]ʜ]�{ig&w_�X�V*��T(z�E6C��󌟟\�,�%��r�L&YF��f�}�ٜ.�P*���.B�}73�.�0�"�d��V�Q�R��P�}�ju��a��.\쑸����e����C���YJ�`��b�8�q����jj1Q`�)�2�^%%�^�ڐ{�
6Ѭ�g�J�����+%m�IEND�B`�images/menu/icon-16-trash.png000064400000000775151163244200011765
0ustar00�PNG


IHDR�a�IDATx���\A@�̲�m�����q��eP3Nj۶��ms��t�~���$<�ˡ~��h4��ͯ_�����6m�tv�ҥ3*d@Q
�2�9r�ȁH$"�?��7oʎ;6���^93i8~���ˤ�e��2m�����={]��*���CnIѪs�)Z�
�L-;��lܐ�����D0
�-�~�����aS�ƭ��s��!/��������~h��ƈ8�ī�>��/��ĕA�qӣM[��0��p��OA�z���8��h*��L�"'J����\��ee"�D��(�a�
D��a[�3��8��c�n��f4��'od�e3x1o�����&=�̴��=�
�A\�*��FQy2P�,�y�ɍΈE(//ϙ��_��FP*w
$���Yq3}ԹƏ�O�k�bhBp���q�,����7�̜Y�b!�hqIEND�B`�images/menu/icon-16-unarticle.png000064400000001220151163244200012614
0ustar00�PNG


IHDR�aWIDATxeS��P=�{��ٶg�p��9��d�g۶k�l��g�}���iNy﹬���
`J�Z�0����p]�m#�!��ϵZ
�BCJ���	�@�B�0��~s��`�a�рa�h٢$	�t����8�s�d����ڴi=��}H�q��ix����,2toYR?3��-$�q��%Y~YW*��d�m�}��m��C�l6W�(-�Ȑ���}B����D�Z=���gOorm�Ay>=�r��.�:
Ţ���'56��[�n��R$�w���Y�3=;PtE�|�JO"��@�۷������;����_-,(�T*�T25T~���c�Th�lЩ]j��KK$�:�O�>#��7o#����W��n�n�o<��wy�^��RM�ԅ�ؾw�M��ڀ�R�	Ժun����1jh_\!�{wc��Yضs#v����`�H@Y���na$2���އb�����h�!X�r�����P)�i\qx���02�-�~�L
ǥ�����x:��%�FHk|�A��D�>�%-���/�����B��O�]���?�L��@�XP�D!��v�j"��4�<�EIEND�B`�images/menu/icon-16-upload.png000064400000001171151163244220012121
0ustar00�PNG


IHDR�a@IDATx��Cp�QǓ�ym��v��am��mm۪m�6�k�ַ�LR͞��y~��G�S�#��ڏ1���_Ǭ�8�o	����R���V��fc�F���QD��PτG!^�T���3l��QKH��arߪ�S5w�\8`�:r���&�(�P�Z>}���|���f#z��>�C�l���������<���\L�����T����6�{�Ak����[�jaCQ�@�pf�FHT��J~m�[����p�g�5�����x��!f���p�c���,?���PT��Z‚�e
.���t�v��(��bBwׯ��A����y��5Q
W��`:�g)�sC�p�m�Qb�O�φ�9�b�r�LV�(�sC��8�6�P$},�fC�o3q��~��ytw��p���@Xf
ɓmQ�XB�ƂS�KtX����&Xh��in2!LeA�΁2��'ӖG��:G��ia�ۄ�%�a-I��;W
^�������bu���+K��9�I��7ِ&q!K5�{��i��6���d��V�L���l��,�7�L�cE�2���
�5	���fdϟIEND�B`�images/menu/icon-16-user-dd.png000064400000001013151163244220012173
0ustar00�PNG


IHDR�a�IDATx����@F_1۶�x��p��řs��gf03�����w��o�%u��z�jP�
9�T��2!����*��
�e�C��H�B�!�1lFLʢY��~X��B(<ϿVS���(�%A��M��o�t��@�0��-���K��U��R/jV��GP�
X�;�K�x�6RN),�
������tkr�R�h�����x7"0��OF�!Z�Jz	�|Uu��"(G;�z���z,��~�:�y�n��AN68���Y�LT_�Ra���}��2*'�15߁a����dA��	�p�L�~�5�9pF�����b��qҳ��.[�0��y���mGc
ߚ?V��X#��C��,���
���$�i��v�Х��~ߟ&�|D�Cc�4�E�|�*������x
��#53�o�4��O��H������5
�b�}HyTK�ZiMzH�p�^��`L��?,�%�%IEND�B`�images/menu/icon-16-user-note.png000064400000000455151163244220012562
0ustar00�PNG


IHDR(-S`PLTE������E�Ҕ��V��������3���g��V����������z�����2����x�����e����N��e���ܼ��~��LGI��IDATx^]�7�0DQ�I9:��!��v��,����VJ
Þ���Aᶽ>1jc�4�!��U�1�|���6��k�!�;ή�a���1�2tW���
��_�i����;+��`q�����C��<�2Mn�p
Slr�XIEND�B`�images/menu/icon-16-user.png000064400000001222151163244220011610
0ustar00�PNG


IHDR�aYIDATx���e9ƿ���1yX��ض��	�
��03�۶g�>�w��vm�����/�����{���l�ࣥ��9=���H��Y�iq�W�G�jD2�bz����o/��/`?)�:�{F9.D�
ӫ�R)�I���S�DŽ����|���	�
�'p]�s0���U�;O���i�^nV����q�3��C���B�׼�ޗŲr�j���:鉧^z6{�����n�j&�%��a����sO����$F=a{�r�����ip�׈����x�6�E��Ѭل�,*j6�{��A�	�"L�)�rܵs�K`%#k�ei
B �D�H�&^,�u�RA�s�>�;��Z*t ���
&�ŗ>�=�[p��pdn�I(�4h��l)��Hh0�8^~u�n��w��4H(��f��ٜ�Ң�z�qY^?��w1�NJ�ί?%/_��j�5�}h��i
R$�A�cQò5
�Q(���#~K��
h��2���;��5���}��f~����{�-l�=���>H~����}�=?J�:hz�H��R�5���\�J�)��T[�������IEND�B`�images/menu/icon-16-viewsite.png000064400000000440151163244220012472
0ustar00�PNG


IHDR�a�IDATx�ӵA,Q��wGq���ifc2�*
�
"��e���>ܝ�ecw��1|D��,����*)Z��k'���P�����Y�w��*�y�ta�����o"_��k%Qx���Ơ����*ę!K��2�u�A�nn���\S�8��䑃j�G�[Pp��܁�r؏
H!�@Jл�E�ͣJ��&r;ų�ë�ޤ�����Vi
�a���`k	�?X�S��l��amTIEND�B`�images/menu/icon-16-writemess.png000064400000001162151163244220012657
0ustar00�PNG


IHDR�a9IDATx�R�A�mƵ�X�]�n�ڶ~�>�m۶ξ��3����x�fG��*rs�QQٚ���}�X��|Wȷ�G�bcQ�Ԅ꾾h�4�uq'�dr�YYYHJJ����Ȉ�����t�2VA���J$u&''���
ҢV<W�����o���eD��vƍ���0��N��^�ǻ�V���41*�|��=��j���+�>�8k�h4�S؉׉�Ȩ�Dee%�B��UA.oT*����C?���П��qԞ��d�@�����Lbbb�����������ۋl�mXbǡ*�
�م�b�h4���A
<cH`�i�t3���|E�(��ܸ{	{/���$���;]�ۘ!�J�
F�Χ�8�.n�d�}
q
�)��j����z
�M���\ETii)��X��<�MDVY-c����OKB쉌�|B��e���			D{w��������U����v��O��,�g*�����k���Ѱz����/^����K���L�q��5�m�D��p8���&�4�Mt��b������ݾ}{=��m<
����7�l�>dM���5�ZIEND�B`�images/mini_icon.png000064400000001030151163244220010455
0ustar00�PNG


IHDR�Ѹ�IDATxcx��}{{���n���dR�,~9V5+��91�Z�
�X��c	T	��T�0�\���'�ț��pq�h�[�]�r�q�=eP�]�e#�)-��_�V|�6h����Ȋ�B��������Q�ޯ���4Q4i��w���3�O�ԣ����L.�d}Ѣ
�P�,�P
tq�Q��X}.��7y=���d`9^���1�o�)��->�T��I~Wj�c�y���(��V�97B���ucwZ�]�O���y˵��:(�0U�AQ�$(��N8!7p*o�v)�@Y��9�Gb���y������GR.�	�c0+��Q��t_�]�2&�}<���R%�y�*9��B��M:�9U7�9l�q����n�D��J�ݑ�����%!��9+̺�k���.�"Z�E(m1��}.7�SE����4�y8��w��<��7{��ܵ�	@ρ�$uK�5�'�R�f�Hs�3QIEND�B`�images/notice-alert.png000064400000001536151163244220011112
0ustar00�PNG


IHDRV�g%IDATxՖ5�WE�7р������w��W�R�L�>̜�����Ff�ɝ���~k��-�{���\:��Y"_E�p�W�������Ϋ�{>��@%�y��^^sŀ#O��M&ۦɁ�z�7_���g􀀷_)�y�E`�E��l��q7��c$*O0�M͙h)=(�f��Qh[z��`�U|8Ņ��x8V����!=�*�%�;޼�^ց{ct�C�{N��3J�m*�5F��5َ[��=CY�5I�o����k#�K�h����8��1H�|]iq8�qq���\��\���4�Smr�8O5W�v(g0�h]�;��p�˜Nip��Ntڊ�������~箑�O��4�!�&4�I����	���H�$�(�@LյT�����R����L�Q��h�R��"/�S_Gz4�D9�Ê��T�$+���$+�k���@9��J���S7���&E��'�c�,���I|��t_�ٺ?��2{��!ۂ϶�vb7��2ٟ`����Έ��+%���UaW����v15��!�{s���(�M!e_ؒ�)���S���
���K�&�����'��8�Kh��*�P�<�r/�X�2A��]�<�K�s�Ԗm����0�%+F,j:bQ\��i�XP��EA5���aV@�찀yi+�,��bV�mL�Ü��2t>i��.�h�ݑ������1#f�m���cf�*�3#n��hρ�)�Gt���Ӄ�����o���[J෰�G��#a-�"���B:C����|_��8��~���J�
���ҙ�	�i���;<�pH�X�IEND�B`�images/notice-info.png000064400000002126151163244220010732
0ustar00�PNG


IHDRV�gIDATx��l�v���۾�:ff^I0���IE�8f�XO8f��h̛hq;�2Cl�ߛ�Z�u��U0��_����!�77�	T�I�Y?�����є�jȕ��'0S2R�Uj<��@�K_��(�g��PzB'�j�
�g�&�T3>��uA��1�Z��-7����^pfK��rD�Ƹ7���d��a����F�~g��B[�E���pU��kj�G��Wq��7ԘbJu���GSֽ�W>p
�P�=t�4	�x�,��ƞC�4��{j�d�P�tF�a�+���ک����3��=pw��P�d	��݋+g�S�neѧ[!���@[
��֏�Q@�T�&�p�"�j��5G}y�@ܮX�8jUA
2���;)��z�t��E��&,<��#�:!�>����
D���]�f����g�'Q�^Ӕ#[�7���:)����ă��z<ގ�	�E�SD�ix����<%�4����B��v��`R?��5���'X�gy��!K�=��7/;
��~��j{��-B�Ӝ=���U;G�7�A�
�h�������
�/=q(,�n�@
����"�JS��=�������+�h��
��3�,D�b�8r23U��,�縃)oȧ����B�
�>�N|8�G��3��=倩+�\�0O+��.͊K���24#S�>�)���V(�x�H
4q
B��Б�
�b��t�(�8I'>�\UM��d>��=+�]q����<�S+7�8�"'��zqRb)�4�j,���(`4�Sa��Sve��s	ݏ�
��/%tB�N2@P"�:e�ĕ��(d,�^�,���S9����������~�?5pZÀ(�'2Yn�O�p�KL�cO��<lfLx%�<�S@���g)��yo�h�aЏ�n
��p�S��/��Q	"�W#S����:!�1>�1����C�����a��_R𪤪x5�~��;iB��!��&3��U����@�@��h���j�����4��l\�IEND�B`�images/notice-note.png000064400000001403151163244220010741
0ustar00�PNG


IHDRV�g�IDATx����@���9G���#p��`�m�%������,�}]��i:7�~x��`ŭ��]qpGҼ�p�nGnJ�ܥ�ޖ.�/Ѹ!�]T����u\���<\g�ћ\|K|�S+^N!|�E��C�
��rI�+�./J�����@�E�
t�*?ϡ|J�P�y:+���")
���Ŗ�1A�)<�"t��i3��(�HO��e�pB������ѳ���I�N1z�����CQ�<Q@N|�8D�E����h�l=**z4�1Q���q��AD̅�[
���{F4+��/����w���⓹蠩4N�}#�;Յ*z
r0�!q��	�B?�w9&���蘃�dš�0Y;ʅ�	[}T�;��F%@8�z�X;5��yvt��3k�0�����g�s���q�a�l�C��>����sUt�Έ�IQ�Y
*=���nT�./fP���%>�{�qWuF�݂���F41�9�q��v�[��[����
7<���ʼ�ٟ6w��ѽ��}�����ޙ�H����/Ya?��w��#hC��c~�>�C�����yL���;�%`�fn����>�|}�a����U�/3Z�Ό�{4�z;JF��Nr�w����ũA*n�

|Nm���o�u���,��p�k�
�ݎF�{�ijA�t����y�7h��3|��uf8`�g8ð���ᯤ�_�[x�̋IEND�B`�images/required.png000064400000000172151163244220010337
0ustar00�PNG


IHDR	
{DAIDATxc@����0��)��0EPv6����L@R�M���
e`SX���z��(�x9?���IEND�B`�images/selector-arrow-hc.png000064400000000200151163244220012047
0ustar00�PNG


IHDR
o���GIDATxc��A�����D�F
�^5�0
�5��B�F[5h�ԄcjDv��m!Z#LI*��b�AIEND�B`�images/selector-arrow-rtl.png000064400000000205151163244220012263
0ustar00�PNG


IHDR
X0$�	PLTE������Ȳnh�	tRNS@��f*IDATx�Mɱ
0���C���@:�~-3�����:�t�q�A4\IEND�B`�images/selector-arrow-std.png000064400000000202151163244220012251
0ustar00�PNG


IHDR
X0$�	PLTE����ȲMLD(tRNS@��f'IDATx�EDZ
�0�e0�[G0q�,�݊���j��q�Q�IEND�B`�images/selector-arrow.png000064400000000305151163244220011465
0ustar00�PNG


IHDR
X0$�0PLTE������������������ޱ����������׬�������)��tRNS@��fCIDAT�M�1�0�@".6&���
궑��͖<ۢ���ʈ�/���t
��z�����,T�MK��o���7IEND�B`�images/system/calendar.png000064400000001120151163244220011606
0ustar00�PNG


IHDR�aIDATx����I���}�c۶K��b�rl뿈�۶}w��ۙ�,�U���L�&+���O'Cm�����?jnP���he�"Gf�-];
@�޹vr�!��]�<Zp9q�0����<���w��ף�{���`�@�l~FB|�����Wi>�|L�?�H�H���<y�|
P!�%E�ӳa�ݧ[�<�8�rXu�>���aݡ������/�}1�(Vy��f�������ݟ�!��d�H
�;7��Ξ�(:��!�����ʔ(�m;���',���=0Bpq㱇~4�C�
���(�ō��p<�/��6�OJ������́�P�HQ�ߺ�5��e�m�r�9)�$�F}AIHsl���p��-,,��~�+
b���sҒb�J��X�0�!4��E�3����u�M�q���\������S��c��W�!T,�ĿO�R"O<7�{E��.�y����圴��S��!�I#�}S�\�ђ��������[���
��A�3f�vIIEND�B`�images/system/selector-arrow.png000064400000000305151163244220013011
0ustar00�PNG


IHDR
X0$�0PLTE������������������ޱ����������׬�������)��tRNS@��fCIDAT�M�1�0�@".6&���
궑��͖<ۢ���ʈ�/���t
��z�����,T�MK��o���7IEND�B`�images/toolbar/icon-32-adduser.png000064400000003001151163244220012752
0ustar00�PNG


IHDR
@LP���PLTE��������ֵ����ŭ����楥��J����������������ރ���{R�X�b1�k<��j�ͽ�Skkk�ra�#�xM�쇵ߓ��>��Ki�Sf�,��Czzz���k�3QQQ


h�)�Z&�T��]������h�N�^+��j,h�%�`�͍�0�h���W���L��l�S�=��kÅ:�I�����{��:��T��c�M�y�淓��!!!ƋB����\��l��B��~�a"��q��J��ε�s��,��l϶��ų�뭓�d��&{V0�6ĩ��t#_S"��%k�7�h9Կ���G��G��@��4}�F�.ɱ���{�W!ѯ4���f��X`WKߟI��h��H��j��{�zkt�9��=��@�bIII����q��л�@��_�°�Ϡ�wU�,��c��޸�B��пz!��dzQr�#z�LߤV�b(P�ʴ؇�y>���ϐ4�X�b��ɕ{a=��L�wL��l��&�ܦ��tfffхV�$��lm�X~�DŁ(mXEd�+Ր-�ܭ<?"ttt�C��}��ȫ�E�pB�J�r'i�4��l�����8��r�5)��-`�Z����nA�ʕҿ���R�{.��SѕI��ϗQ��ɡce�+��I����~
r�&}�O�W��Rè���@��G��tRNS@��fIDATx���r�Q��L�&��c�VlL<�U�Vj۶�vj۶n��|1.���🲔JW@�d��&�5!��'^i~�X,X{X*u#6BwDʼ�,v�ݷ��f�Z(�D贈�j�$D]�D2bWa�:��%��O:	tQ+�F)�1�@��..�
e��ҟ%[9�����r�tѸ�]��m��C��6o\C��AW�����3B^Z���
�x0wKy���GƏ��2�]��r%s���������+�{1^�RT4Q�Z�	��+AF��ƥi4��5�4G��C�,W*W](�B�sߑ�а`Mff�����e����mm|h�qL�#�\������W�f�).��l�V�sg���r�V�u�%�d��~28���Y�+*L�
��gg��Q('B����k��i�����0~$%\��ݱ��C��5y7c����f��@��a:6���g")�hGh�1%�XI	z�Q��v�#�a
��"|(�uo}
/}�9��휶���D���h䝧't��3_{�cImz��l��H%�Q�$r/�E�(��S��6o�Nu��=|�~yf	�w!�݉B�ez�T�J�����dq2�vnS��@��J,�v�i�!L�H����
����$#�𠋅!�͒��H8
[Q�ҭ��F��<�1�3�@U�X=�Nq�#��]c*�S�u�l�T��@	�N�7�E;-T����Y!�8���(���֎�m��{l
��Z���D�8�;�,`;��ɳ�:?�o�Ŭuz�W�a.����2���9
vIEND�B`�images/toolbar/icon-32-alert.png000064400000004021151163244240012437
0ustar00�PNG


IHDR
@{�u��IDATx���$M���ofU����m۶m�l���m۶��a5�rqX�6v<���繭��x+*����OD�3�7�ϔ��6��7�3�^\�5�a��1()�:"+P]�eT�	=��`fE�V���D����
a��L<q$qLܚB�������\�ݨ�9&���\��j�Nxg]k��f����k`0
إQ-�0A.iИ^�s/��9���ЉS�y'}�7`�>�MHZ�&¦sn��g�����͋0���q��)ETj���ߋw/>C�؛N��;�Z�SP���@UI�kx�o�"{�z6Y#/&��
��!eJl`��x0��<�䄉�(�T�wy�D��"��ȋEq"x������G�Ow����*y��d��9�̑tڍ��dr�<�y��j�"�	c�y���E�
ȣD)p�	KG%͆QQ@�
��U��W��,$���΄-W����T���
�B-��J\�s	QfV=@�膵���*8�\�U=LT/!�P�q8��Hقn�@���u��E1r��Hr�N�¢��^�X��W?@��E�M�ґ�5D�##,j
�����1l|�~�:�XR���4Q:�ܚ��J�5��M�2�q-�$��
811�15d�^
�N�pY��V<�\C��t>��D)b���S�)��E�DWa�."�A	�X�������g(U�)��5�L'^$#����0�	K�i.�t�H�穅x�B<�j*ְ{)
6�*a!ޏ9�<2B�!����<�[񪠀*��x�m�P���8�,f6���,~t#��dGF��b0A�b�~%؟��X��՝�z�R{Lkf&p�GC�^�.���_�h��N~|���Y�g0@�Z%v���`����qq�_/�F��1qc0,�a`�}ɚ��~LyH�(�}��h:�����t.2�������Z��٤!�W��-�g,M,�J�@�ZA�e���W>֑N�����M���_��t-n�J%�5�<�wL�N{�K�G�|���E!�j'R��7>����@�Sv���pi�Zy�@�|F���g�3MQ0Y�V"*����7[+�[�W����|��ݘ��2W��Z�|]-
,vNؚU�{q^d*vn�T3�M,�)����ݽd�,����Sw�3�x�Jt~_hN)[��
��`�uч�cY�p{c�7�̌}@8@(`�.��a���f(���74�Q`PrB��L�>��L�ߧ
J����0�]�
�%>�r!-��v�$�ß�,�f������1��T�1�u���0Y0��x�uOFU���o��s����}�v��&�Z�e�]�V�chy,���_�kVկjƎ����F��m�i�&]�b��Z-�S��?���iΚ5ktÆ
��|�r������4����Ǔ�.����$I�N��O��D�1���֦����a�'�d�"�)�[�
�"�m�F��>��S����/� ��1�p�;
����1��2�tp��\�-@���T�yn��Y8��9w>]Xkɷ۲e���i[z8�l��AA�az(�J��g�=�$�1A�&�0@��V{:��6�g��r��,���m�Z-���i��g�t}{I+~ff�u�֥�gΜ9�m��W��Ӆ1aɒ%T*��c�t�~�W�@�g����nݚ�AD�^Oߓ��룇��&�ǁ��AZ|���{nvGĢE��g�}z
>�30�p>��d�50==ݫ�е2�X`0�igTT]�
�٬kD�G�vB隧�ޮ~.\��@���r
�i�.>����}�ܹs�7o^Z�������(�p0N�x�bz�v���-?�/��
���O>���򖷜~�)�<�\.�e�ݗ.�8�ΎS���z�?|��\�D�������}�so��'?��/|���O��;��7��;�줓N:8888
89��B`�����fy��-`��ߤ0�̛�y��Ox�Ԝ�&IEND�B`�images/toolbar/icon-32-apply.png000064400000002376151163244240012470
0ustar00�PNG


IHDR
@{�u��IDATx���O\eƹ�k'є�;�
��b��k�+���[ע�-V�2@)k�e_�}��Kk�D����h�j)0X�3�����|����Dͼɓs8a�;�s1a�
U��Q�T��9��s��t_{�ᾖ^4�ژlr�Sv�Ob�7;}��g!(��$�ڜ�x�^��3��x:r4	�c�WLj�E�t����lGw�;=�
�a�6ޤ6�*�yl��P�,P��6�h���Ӂ�8�Z��x�����	Pj}ԫ�z��ÇW5m�%)���rAp<&���'�Rh���ܭ6P۵�P����ߟ�(~P��zd�`���\)���	�lNĶ=�5f��D%�D`���)�Sf��7�՚�՚T�J9%���wc[�Mh"x�+��J������X罚,�.M��s���8\-9X�ĪNb�ސ	w��'�/����gc��.���G����W��+V�7��X���$6ߪ6+j��s���%t�#he
�%~(�����XH4�ಧ�\�ب�sl�Z��-���#�03.������O"�t!+�zC6��ب�f]&6��Q`�p���_B�(w>�įc�R{���=O��Q�M!
�;��7�?���o���|��fp����Qh:��J�}��K��{i4}C��W
	�	7DB�íb��(�A�eJ���$$�P	��p��>�r!
?��QF�
�H	��r�r\�Ÿ��%<X�>,�/�|7�YEEE�0/0�L.s�y�y�9ͼ��i�יW�<�Ƥ1�D�Y&��~�[�杧��`򙗘��B�P���RSSS�������Y'��
��eaa���Z������Iq���t����C�.�s���p
'Lw�H8#%c:0>>�׀�8�%
���93��z�B��H��������xhh�566������u?p�������pNb[ŗ���.p���9��^bom���v�����p���O�0_$�J�C��:�̾�R@t���<G��
B��8�N���K�.�����Ip|�쐕�}�p)`f\>���NMb``@J(�C�SF�@p���_������b/�8(�A���CB��RHhw�1��$��%�>	�'��B/!�Hp��M�O�OB������p�%8
��,	�w�8��������S���kIEND�B`�images/toolbar/icon-32-archive.png000064400000002270151163244240012755
0ustar00�PNG


IHDR
@{�u�IDATx�XE�#GL�2�H�w�13����{��e���gf�ef�����A��H���G��Uh1#2z��]U��
^}�U�,�O>��˺�;��`�CSN�:=�n�a���o�6�-i�����M���"/�����L�
ݥ��O�=�,n���������/��
"��FY�ƅ�����h��XT΍F�S���;w��y
�yN?~���b��T[�QP������pa(��
���!$	f�r�����f���*�5>��c���o�8e*T�L&�"lg�_�~��)���i�:e2��
�����{LR�@Y��#���l�?ر}[&�T�����������Z�QQY���Z:��Ȁ�0n܄����FL@�G��*X���Y6����a���?�
�P�޿D��MDY�U�%�3o>����>�
�Ԅm����ȪT��p���d�%�	�{����CG�g�����0�!a���J-o��6hn�If���Ť�	�Z~��W�=ss�-H�^����7z!��|�����P꽖H+�ȂN��2�5{.]2�e$�h�����f�/�����U+W
����Ϙ\��pZe��9��f���QP�j��K^ˀ��z����=�7��4K1W�\�N'��_��J��w��܌3g�X���4���->/y{�`0�?#
����ʌ2p��k嗳��h


���g3Q^^��xM���G�����\�V2����<��)�}\�ݘ9��	�	[�|���d",G���
���ԍ_N@TXc\
{��l
a#7k�CH�Ў�B7bD�2`�d�
�G nքE��?�)�xS�\���ˠ�ߠX�jF�A!X�t�C7�pCn
���ZL�>�]���<\��9��M�6a߾}4hP�
�
O���l,G��d0�E]]��g~��������rq
��cP8p��cǎ��bذa())�֭[;Ǡ��TTTt�A�㗧t�A1|�pFl��1(v���2�:Ǡ�0bx"�aPШ̂A���s����	9M\$&{�<�F�ݽ
�>��Ϡ�3(��>��?�ϴ}�.��IEND�B`�images/toolbar/icon-32-article-add.png000064400000004063151163244240013507
0ustar00�PNG


IHDR @{�u��IDATx��Kl�W�I�[�hAtU����E,(B
�
�ET��
R�ƋV
*��*!$DiDҢʍ���*'Np_��؎�:{ƞ��8��/�����9��o�q�����s�?���w.s�91��Q<311�P(t2�z\��
������_R����i���K����6�xA�TZ@AA�!��zSSSiyyy<���h��O�崀H$R���,��\�~]����*�!ųieee��{����dU���H@���jZ��#G�p��}��'���W���fc��TUUe�|}}]t5d�Su^�H$$??�1�Z�(�G'N��+Μ93n�|��D��ꤣ�]�*+��練)�Dž�T�r|||���mg��!-�χ�:��H�ܱ�,�Cccc�
��c�޹s�vh�;bmm-�����eN�:�^aaa������eKs������v`hH�==�����deeҭ����0���VTT�cIgtL���V�m�FGehp��{6ޱ�����4.��0�|���
�A��	�7nH�ի��;uș#�3�/^�4�?:wNz��M�_}780
�3�M�>�f���to���J�y�}�6�-�	u41D�ss�>7;+�]]��`P�ݻg044�QO���lJ�#P�rNX+�M�����-���M�����W*��FM��jm�ښ�z��c1&1��*�(|Sq�N!F����ё�)��%�).�:;��������3�n�����T����+~n�
2\�:�phI!�]0%�Ύ���8�Y1l��ˢ��`+V���WN-�|>�!�����^//�4dWJK���A>.*��2S�^�$�Z"~1�(~�wvƲ5�r|lL�)��'q��,�*����S3<~%�A0�X,�$&r��3�|q���6�^�fڞ�g���˒���eue�qY\Xh�&�IY�6��\���kX�>(���O�*��
�f-�@�qKKK���(�
�I��q����%%�*��8����DQ�H��|��_t�F
d,!�pA	!��?�k>�%�����{�+��R��WE�9(R:�]<�K6K�I�ef6���߉|��X+}E�3Q�m�
nvs9��3JhI�x��xBV=EN���ٗDZ�"��yB�-eG�s%������x<�7?N�HT�]u�OE��ez�k�s�x�r&��xLI�p"5'i=��X8l���;ω�M#�F�A#�OE`.d��=��;�]�S;�df?��Cl��i��b�oE��Q8kũ9���	�<���n.GGF�>fHo�H>��7�H����x�;"�%"�G����g�>��g?T���S��(��/�_�?9↕7�>O�2	x�a@�`8��:��r���ٌ�?:�|y?��L�#�H0�y���+��+�e�O�D|1x:E~`��'	�'	�'	�'	
�E��g.���a~hHNliS�/+	���jCZQ^u`�!��3�g���N9���g/A��q�o>	�Y`s�1k����~o	
:�c:D�%��l�S'%�S%G��%(�T2�Zo�L���C^�K���p��94�g����=Z���r��(	9wN��8��C�!ZL&�s��nȹ�
n�2%(�w=�V��q�C.�\6�.�s;�*������4���	
�dJP@1"�NǐS��1Nq���5��	̬g���{��V�'(p�pK�+8
it2\�\d�45!�{��ͧNP@ܮd��
����ݐ�%dLP"U���aa����#��'(��r2��.Hi/
8�)�
"Ő08%D
2ikkK�[�uttL?t���h���%ː���d�pI�d٩�a������Ǐ1	
�%.�d}�Ͳ0�ѡ��"Ng#AA�EZ���n�DV]:a鼧��,ͅh�ʹۥjd'Aa;�l۳=�IP����!{OP���e�=AaZ�k���---�YIP��{������a
//�[YKP�cǎ����n'�z��>�m9;	
w�,��D�`s��@�X�^_1IEND�B`�images/toolbar/icon-32-article.png000064400000003263151163244240012762
0ustar00�PNG


IHDR
@{�u�zIDATx�Ew��
�e����e�.ò��(�ߠ��L�n.l�̔�aft�v��y=s�)Z���$=�!�Œ�.,,|8�˹�K�DN�s��v����w�5�(�P�a冖�������o5��r�*�կ~�����;;;�R:��kU�U�

<��s���Ϭ����.�WG:�
P����?������}�J*�JNd*;����g~�(�(�����/�nooo9��*��������s�=�OMM-j���B�"��w��P��ᕗ^�x"!�pX666dc}]�[Zl9�m�w�)^���+)���G?��w����,J����fe/��{�_P`iqQ
�`Ꚛ��Y���f<�͙���j3
o�;M���(e-���y��D�2
###?��b/��?��VV��̈��(QW'�KK��DP�����ʝ�@�i��7������-��X��gF�ږi����)��'L�!N��<���K/���g����i�B$��M���%�h�����)��9���w�#
���'�ʧ���R�z����������YW��M��g�%pF�`qGG��B!,��oȟ�ԂsR��������ىŒ/���Jh���JYR���?IH�����4$ccc���`td�T��T�P�j+�G��{��N{J$5����WV��-(P�p)��Re�7�2C@	|�U�ə.MMM(!�
=��ac�]�
�0�1�T����(�R�:�V566���,���+++/;()��'�S�����2����v
?��hf�(�q2�%�ʭ��|'���[	��R,�T,�_����v�AX�`,\^^�B�e�������G���)#��)/^d
^���;�Z�[A�����+;��-�s�\�d�)�G�������1]E���e�s*p+
�L��z�[�ԫ/�z���)p+*`�s�!��ݝ]Y�{������p��4(T���d�o	�R
�ʫ�;V�lmn	������
�N���k	��l6�J�e|l\�=����ڮ��W٭�9U<$[,O��X���KV���L&S��K$�
C)w���ڧș��J
�w���ެi��z��
f�|�*)�U^Q��}R=��2���'"PV�ɪ�+�X�����9�M��S	F�IN�(j�Z����/~�3	G"z�pN��֖yC�]]:�P��t�
�������cX2�4L��~�⩧�6ك�����U���(f����\]Y�€$L�i-��
�$��~�Gb�b���d �2e���
��7|k|��
^�\��̷L
XzhI$�w!�qZ��ջ���}E��kP!�-�k���纙=C��R����Q�/��v�}�a1p�	�y
b�J|B᪸G|~+�v.�(s���b>yt2
�.�*�o|�u�R��7��<,|x���&i�K膤лb
W%�2�/�R���<cխ%���ev����������5��1�M�
P�Q+2*���y�H�ZL,(�Lh�i�ֶ6��.�0�8AX*8�H4�m��UWW�����]�����(j�Z�����9���IEND�B`�images/toolbar/icon-32-back.png000064400000002401151163244240012230
0ustar00�PNG


IHDR
@LP���PLTE����������������̥�����������������R�
������͔�ꗁ�'��sN�
�Ƅ��M�艪�D��΢�ؕ�ݷJ�	��S�Ϟ���N���;��ue�
��b�9��l[�n���5x�!��z��/y�Tg�@��LY�"n�<��Yf���8h�1���G�	s�$���YX�Y���{^����a�����>�̃Z���c��l��k��P�؍S���ߌ�q�ݜ����ͯ�l��,�륯�`��W��@_���a��ƌt���,�ռ[���RS�
P�
�ב�鰒�Q�ᖲ炗�r�ʋ��Y�.N�
��w��R[�,��I]���9R���H��j��^�1��?K�k�:��~���|��T��8a�P��븓�q��,��I��i��Ž�/��z��?��n}�"��a��K_�'��v��V��ap�@h�
��yF�
��e��8��N��[���[
.5.tRNS@��f�IDATx����@�L�ٚk�׾��m�~�m���M�f7~�x�ZJ��즗�
E*�7��r��"I)P���N��V�o���,$�����3-#�q�呖�It^h:��0�_�����x棏��������D���+�!�@N��{�#vr��M<=BH������/J��WBώL���
X&�G#~�y����	��opK
��js,��S�T�	�p�6X�4��w&���0X"��d�A>��<�K�����QB����jV�++/�M���IS�L~\
��ĉ�B��,�48���t1���V)�Ryvh�p]6,Ӽ
>��Dl6�o�k<~���i�/�L���ڭ��5�gVV�S��ՕL{C�騈�e���y��6v��8[��L�$9�@�J4����oVe�����ǷU2��^�}�
"��$"@朽?sc�E��HTbuT�>��_��GdF����ʪoZ�+�{���	9㬧��FT�^�g&eV¹��$U�H>A��>@�\{ּw�'AkXn]�ꀲ�6QD�u��T��l?|L�f��`��Q�
�ю�g��#�C��W)6��^gw�D?�{/9�)���dPĵ�R�lM�He���@�%t\<��,�nl�A���y!C�d3�׉����ӛ[ˮ\�y������nO;3��^���Yu��
�Q��k��7C<�l��+XIEND�B`�images/toolbar/icon-32-banner-categories.png000064400000004160151163244240014724
0ustar00�PNG


IHDR
@{�u�7IDATx^�Xml��~��N�8ɛ��%�>�&6D�ب��k�ю6ubF�N�S�I[�Mj�M�&��Q�&4-t�
�[�
�0	]�))M�G��#�?_�w��Q��#�V�H������s�=�r�6�<������xK,���Ŋ��1���F��\�p̭�Z��]?��U���w*%��vG���܊�`�`C�ز}#J*��Fۯ/�7p8.D8�����d>;x���+i�;�ٷ���=��㥿p��d��p�}�ċo�G�?���9~��>��+���?}���ے6�ӣǪ��ٯ�-J]���"s�c,��jk!��x(�fDg�͎*록uU����а��!i?�%���}W����;o<Պ̀9&�����������}^���ԕ��Ey�^v4��G�@3�f6W���>Ěl�x�����罁݂ܕqN�{��B��st�\0�6��jD�Մu&��LO�KzC�W�E$�����>��X�$�3�8���
��T
���I@��V9$��[�_����Wܯ��Y	X��q�WNQg@4'B\#@e,I*�h�X����&�U�e-�3�۟�]�\O���DR��!�qȲ,
��3�r|8p�>���e�[B�}�0$��DP8
�y!���g&��\hOW�'B��f�uק	��n.Ār�-&�r����PYh���BL��w�P�%�6�p}h
�Qj[�]�7ۥM_m�D☊���2�+�I��!��sMI�B$��
k���:�C�_�K�;�N�0�]�
��مo/A�H�D�<a�+|���d�Y�&Q(�%J�g��NH����e-�	W���׺&P�}�(�����J1:��8in�窫�(����㛞?�FMI~�����^<�/�Ș���״v�c1�F���R>����Xz�u��r�e�C�-���GX����멿�v��d��i����΋��(P�ȫ���
�{Q��N�`�
{f������!�ߜ���L+#��d"@x�Iȿ�+!?��0%���2�m�/�:
��`�%����2/D2�A�;���R�+���Fc�^��۾�|Y\�nd#�T���'ܹ�̰l1#�o]�2b-?�~�x��!�	Ś�!��p���g������Ϋg�<��:�Db(�!)V��>	���JD����Q%$�Z�e�j��xA�A�ߑi�E��Q������jP\�tII$-�TU�4@4���w�u���mP8p
�
���.�h4�WVV:L&b��`UUUb055�����a'��B�sQ/^��
�b�Y,׎;,�׮]s���?�]��188�����Z�
�v����������j�;Q�V+$I"���n���V1?'�I$�����Cb�J?�>�
���all�w���皛�ӿ	/\�@q��e�RLq�nEEE�����f�
'7�Lw�����(l۶
w���	�޷o_�
�mhhP�j$�?;�+	$�����DfIu����Ј۷o�޳gOV
��~X�&�\SH���$�������A��<[���(..N���u���}^^^���q��ؠ\�P"�S<@�4m��u�(���Ν;�9��=�c^�
O�
��{��E��Qv�!N	C<�����?s���󓐎(!��-K
@a
PVS
X�z5DѡL���DHǓ>K��������"��F��T�@
@.GII	����u�V:�DJ�O¨�`�-��y{N��8ȕT׉�
�
:����CE���ߨfPAғ�N������n���$%������)sV�������+$�v���OZ'������/���^���B�y4=t��d��+֠�iKr׊4(2JB�X�
	pez
�BV�2oP�yӜ�\NB�x!�2
�uЂ��[�
7d=Z��p!��]�b��͗�-�<����V�7�r�p���ϾAq��ᗏ9򐸖�5Mc�s[
\|�\�$��ū*p�ĉO~���YD�F�ǷIEND�B`�images/toolbar/icon-32-banner-client.png000064400000005037151163244240014061
0ustar00�PNG


IHDR
@{�u�	�IDATx��pI��n�$�e^��(̉w��>�e*8.8��;'ǜeff{��l8��,�k���#g.�W��W�MY���c��̦���A�5�N�r
�z��1�ԭ�mҲZ#����8�+tU
���V�w��\H�#V~|���ydQE�ba9�az��~u
c#h{��C؏_��9�/�m���΂�hk�ƾ�N!=��ǯk�P�(��k�nBȶO�B�qU��Ee-�U���6�Ƴ��ǮOE!k���ʴ�Z,�����������ă��f�p8X��
�E>���;�n�b:�؜�[����R�7v�G�~�D����O|t9Z���^)���LJbc����qY��iy؉'E��U7ګ܎�tȊ���Wݸ�N��`f0l\\���8�i嗘��?}���F���~���p���tg�H��!7Vq���`�+)ch\Al(M�ĚO�_�l^~�;��@Z��?Ӫ"���o(
�3�ŵ��
���8��ub�WB��	3���Ԭ�ε��R?N���b�P~3.9HbB3��B�$\�q�aX5
�2�B���kε�b��b6RkG��i���:.ؒ@gDO����Jb�Y��zc���0��v`��Z�,+v�+9�1�ZL�&���Eh�L�J�.�$���h&e>�Ź������	Q���'"~��%2F0�1�(����NK�~��+uutk
\�KIlr��d��'����=�S���99�19���>�{�=.��XQ:P�^��30U,3�]���+���3�X۞��~`Då�>�2�Mv"����`u���]غ��zư����paAϪ��]8%cg�ǾS��G�����Z�0|�^r	��b���c`��4��L)���d|�MA�5�
Ẁ���c��T��ʰ)b�I/�M	\ܣ�����?��t�Y@�M["y�c��_l.��3<p"�_��1(�XeA�$�&|���2l'ؐ~	{����1
'(��m+����ҥ~��$x��~(�?���2��x�@0L�p�|�o��C{��
r���J30������AR�n�'Vǂ�������
��X�(	:0<�#�0H��.`Mɑ4�r�^E3�q��Cf�0)�I�
Wz���&�oN6�0b�Q�P���A���v#A��y�0䅊�|�o[��j�d*��]�=b���hZ��ٻ_�Z:�E�؞���jk��aN�bgV�m�t���3]7%�S�
�tsΥ3]ܼ����(7���cɲ5x3YMÜ*�͌�������/���uP'�0�PU5awޯ{	W⺸���q6zY�E;1�uCV�9S�hs���
r����+	����h]Խd!��k,��B0R�>@0�����VX��p
��^8���<�~Y�k�S��3�F<��%.d��t��,x���Vf�`��z��.�t��Kl�0m�����h?��Pn�5��!\j�k��i
0+�Y��d���9s����ᄏ�00�򿠸��0�7�Fn���\�x�⽠��������p$
��r!�H���J����/�"x�;�D���˿SXX���!BQ,]��t����}�݇�����ϲ%��ѣPUU�\1;vl�N���y�@`oEE:::`�&(�m�x<��w�}7q1��_����/��|�������#����vs1���ؑe�r�ȟ�&��hw��	멎�sak��kD�耘�Xw��{A���C
>T������ђ�$�Id�Y�Q�(F(�E��l�w����A!�"Z.\�:!9D������O
-���+G��Q^�i�&�+��i���OI/���{�o������~��d�n�I��{�fΜ)��,����e7�E<�{a�9�c�)f/��z=�
��}�Cj7=<y�,\��ސ<f�,3��)`��m��l�h�n��Ǐ����0
D!U��o�"솈�a�k�n�~t�(8�G��Dj7��6��Tdmtd��������>�p�j"�N"��_�3N�@1V��s��-���.���@�g2!�Q��ٳg��D��
20�T��y�#�@�ŋ�$�2��U˶oS��p(��tB�%�YE��z��y�\���4@�=�W���FUnݺ�;�&��MkP�3%�J�8��dJ3۰�`��b>P��*z��E�
�"	hJ�A/?��
�rﺐKG��Jcy͹q#�˼7q
ځQ��>�cu1xW�\Yp�.S��1�F����^s<��>��y�|h�<0�#��
J�����0K�Ok��y�!�E�?�o�"���Έ��Ÿ�~��ǎ������͛��n����N�<ٸ@�d�!
Ɖ��zu���a�u��Ν;���CWD��F?
=U����zD�|���/P�۷�.P|���[-#IEND�B`�images/toolbar/icon-32-banner-tracks.png000064400000005273151163244240014074
0ustar00�PNG


IHDR @{�u�
�IDATx�ݘP�e�K/%���Sd[M�U�%pLw)u7�ձl�=k�Nf�1���͎��l7�0W��-�(�臢
rU@���	������y=sX
8�3{f~#�������{��)?�}͉�ekcM>����+C�|#����}-޾�0��3����#��K���0��S�]E�k�Ch}/[�*�j�����$��D�!��26E�E��x��t�Q��5�����3Ǭk��Z2���/���d`�;�XIb���p�•!�1끍1Ŧ��&�����ϲ�R�w!���‹lϮ��9&M��h�aӡJKtA3�z��_x����1���@e7��K6;=&�o2L����H�jZ�ʻ�Qm/>�Ym���ڿ�;��v[~�
��?�և���+;�#���X����ۍ��tX���ު�aE~^)�u��빌󗾅e����򆷷7�[e��ȓ`)�zp>6�;���o�۝�+�{:��w9=`09�Sj�\��3j�4�o��U�����鉧�~�6n�[�g�!���U
���?ՌN�������
��Ô�j�"�s���B^3��œ9s���g��g�n����;2�Ϧd)N����֗�ߞ��W͘ۈ�q��ZܜT���`Q��[�'�xs��ł�p�B����Y(��Y5H(l�~p�������b[�w�B+&~դJQ���R�&��z����x�b�����:$�b]�i�K�$���ǃi]���'���KqWj5f/{���"��⩧���h�߶�Į�V$��c}x��s�ľ�c�L��w[e������,4KT)j0����T�K̛7O�;�5]Bp~3�QE�`���8J�}���aƅ�����@6�!���bPCN߰���R���8���x'�Bs|&w�u`D�m%��b�7����ؐ��!]#���7E`@)��';ϴ������l�E@PYhA��85�G���:�ཪ~�^�:����*��B�gH��`'��6���s�Ξ=�A�L"��OJN
/`�豮/�7"/���2�Z��B�Ɔ�X
��WfϝweɟW�p|���)+���,D�,�k��|	2-Qee/����Y�f�O�(l���nb/�H�R��(pc��@	ۗ�刎���K/���3x6�P�X�����jJ�5���"����L�����y��r�O�ߍ�C)>��@�na1q(=W�O��#p'�S�:%p��Q��2.���E'i9�p8�(^X��8��7	b��d�x�t9�i�V����"��MJ�ٲ2lڲ-d��U�)�m�Gv1p*��5�G��
04�_��a	H?�"_�7���Kz���|�~}�y�Wȃ�$�~샨�"cY�rX>����n%��mC0mƌ�\`o�0�oD�����O�ح���G�>/&>d	Y����^ă�����8g��Yd��q���-�,Z�h-��;�2��䬀�����!�jd�ě�V��w%?�<N��;T&\��\F��	d�z�͎�s��D�O᢮�/�]�N���	���HƓ����A���a8t�)555$99��c>|���HHH@dd����Ǐ7;v�r��	[II	��֦��ݍs�Ή����f�"//����/^Dqq1�=

����%���c�Aq��i˅PWWMӐ�����ޮOJJ�
���"�����'O�K������fKKK�
���
�j���(,,Dnn.rrr$�>���L�7(��G�1i����W]]
��*XYO�ͥ1����l���Aoo/Ξ=����8u�:::��ߠ`p#Sh�����T�---Eyy9���`����ק	

EXX�L-�>�3g�r���
6��N�`�
eO������
]"<<����'"r���E��贀4���%�O)N5=#���طo����,DEEI�u���Jɖd��W,�5�

�V��p�޽�DHH��������3���k�T�Ɇ`�dd����
Y�K!���K�v�J�J���L�Ȃ�Bz���V$Sx�-$��y���S�@F2��H���ސrM�bNUiH{0KSI�>��܈4��|Ȇ�,p����H%YlPPp�\%��)++��R@^�����R
Y�}
�=�<���(�hI��tڧ�t~}}=:;;e͗EJV��(�T����ח��%
"'er�y�B�Q���~	��~pT8d�J||����	G	
D�F�$S��Ȭ�K-.����3@	T'8�vT�G#`
6=�|����3@6�  �Up����mPp���y-�
�7#�C{!@	L%��%1�
6�g�4��l�a�$uA�)�{��R��
N�$y���¦3#�M�`-��%]�4�_��d6�B3�
�B�&~dI%׾AA	+�@��
F!����(r}|�Zd!�̓�G!p�@q�<x]���Jd]hںu�d�m��ٳ瓫��k�*��n"��G84y�rf��x1�!K�R��G]�"ĝ<���9+0��"K���Q���x��,#��I�
�#��n�z���'�&F��y�]��$�����	W58��s@��5��)IEND�B`�images/toolbar/icon-32-banner.png000064400000005173151163244240012606
0ustar00�PNG


IHDR @{�u�
BIDATx^�XkLT�~��p�p�QT����f+ê.��k/ٵ�(vi��O�Y$�i�!]w���#�dMf5KQ���WEʠ�H��H�;g`n�圾�qN:Df1�K�|g��}��|�A�M���6�T��n�����
�n0���`��������_�m��ű��)]k>�6l�h�A��4�+[�E�]k,��|{S�:ii�yz�a������p�s���2M��rU�~��
��`�l�������:n��~�$�����Ug�Ǘ��*jj�����P�}�ejn���%	�\{�����u~�e�#QvE�T���H�/++����O"���̆m፧Z�b��(NMP��dhn<�	�ѹ<X���`��}��/�]��{��C����4Z�Vń����q`x���.T�՛2c!.,���:��E缛���F�F,~���>�/3Y�ۉ���l��,p{��,S�ژP6,H��&]p�C�(P�+��y�}��x���
�fa�C���R�G�cC�P�:�m��pA��	�v'Oz��f���9uR��כ5*���xt�O��d�́n�G�VV=�A�D�orz^?8@�/#��(C�G,�@�7�3��r92�!�H�f��0���c��	'%��#��{x
�a
)A��7>s��j���4b�1^R�=��\��8X;�A_s�0A�����ZU��%%lAt>�
�g��
��`hp��=��oNi6n��M��+�du
Ƈ�.(@��W	����b��Q���B$ ���a�Z,
sٔqq�]�4~���R!_R���Ӄ�@�	���r��z{��vCHH���dشqs�_<���u�=9SG�
^`/�
���pX�TѰHJ���0��	���l6��0lLl���?(�5)=��Az�Y_����Y�
;]�2C!@�]$�����+Dp��D@Y�RY�����~,F����,��2���u�T�ف�y�2�c��,��M+=\���P�b
���
1�!2:ZT���r�:��'+�B����sš�{����J�7
��6�@X��za��<A�A+l�3�>�6o���~�&So�������,�c(�a�X���s��n���1�;����d��%�ӵ�-U��	���m���%ېDpppQn�F�~@	Ϊ��1HMI����0�Y-�������{�I����f�3PFE�D
1!N?>a�x^������rM��G���1�wp`I��x劬iUx���5�թ)�!Xn�u�%N?O�C�*�
�;
��+�G��Z����a�l>r����ߛR��|:�a�a�!-%�����"�����a(�F,CJȢ�6���w�;U�f��Wd���KR��{{�`60�]RRr70Pkw��n�?*�~��<����x���؅s��8J;8��'��w$��1�p!�^xd�z�RjF��\�"V��v@+�?�{>h��{���}DbA��$x'��F��I���o��������֪�!�@�s��=�r�Jq}}}b,&&�+55Ր��aX�d�x>p����9�~�zQPPP�J�RG�^�r��8X�`��2>~�X<@�|�֭[e			�����shoo���IHOO���hkk۽c�ݼ�@SS��e����dx��8�N�y/^d>�瘀�dbq��Ù�4k���a$D��+�m�����k״7o��677O���l�#""Z0�4���$99����h�����466c2�GY5�(qf���kG5&���&&&ȱ�@XX��=�v{�����܀�,KIII4����qz�H"
w�,][�VJ0q��5$F�C���j��/������xR"IF�	r��$A�K�������1??���2�Z>k9����(%�t
��7�Ĝ���Ra��[9�@�븵�U	�A����Bq$�T��}	�J��Şz&�"PU�������@������(tvvjΞ=�M`˖-&�ڈeE$�SAr.�ŜH�'uB%&kWuu�&����)*��W�
U�D��@�(�X�Ri8w�_���k��.����t���J�F�uD"'�1�����fՈ$<y�<kccc�-Z���H����S��-��ݗ�#b��.�������b��j(_�p!�[q���@3��&�8�w�sP?K�	U��
�T1Z���^�Z��TD�0$G6o�|f0L8Ar�
���@"����nW�*�.]
�0����	}�!�ȑ��C��шYlB9���ҥKjx�qX��)�	̏�'Nv>��U��b�!���ș	Q�޽{�H��j�T�|��N�R��T�����ٓ[ZZj�k�X%Fi
�=v�X@��Ȝƺ/�Rkii)�ϳ:���_��pШ\1�GP���S
>�B1��\Yǰڥ�@�|����m[�nm�x���u��Y�`N|���c-�"��Ç˱|��~�9A���998x��ގi�gQ�.T����kCC�ߩ�O��gt{3��a�5�%`E8�\Rq��_��aC����^IEND�B`�images/toolbar/icon-32-batch.png000064400000003631151163244240012417
0ustar00�PNG


IHDR
@{�u�`IDATx^řMlg��|�z?mo�Nb�8���B�D�nH��X$āW��҈	��^*���H�H�JH�E��r�I�zwf����J�9t��zV�{�?��w~3��Ļ�E�=P��A����Xn�|�=��z����艭�,�/���s�ZwV;1�$��Ɲ/��n��Ӌ�Ѓ���=�P�|�_��t�a$�vR����־����헷�n/]�z��K[�7����7^߼H5��l�����Rm+��`��fZ��<D&�'��?����[(�2��2C
$�Nj�ψ̃
E0�,�e!�́�\�@{�#S�Lؚ����-t
�n�5l�`���Mn�;6,psG#���P$���M*�Y1����3!H���Qfp�Ay��6������l4��3���8Q��l����v�����Z,P���	�M,��l(�Hhһ�&ݺW$��g�u�A�<�(���"�ʊ�&rzs�X�}�Ե��v�j�ޖ,�Ft�Mg���|�T�Oo�I-�
��1�#�9�/�l���
��wƍ�3B��|����]���/�����^�(c�W�v����
��?�
œ����{���ݯ�$^������:>i�W߾���a�o�v�N�衪�c:
D��
��t<S�����<���������T�R[U�e[�zMW*�P0e��<+ꘜ�Ј��h�V,���`%�ʖu|�?Q����5C���C_��XahB����M8�ʗ#�G�50UT�9�\�
m5vq��c�O-L`*)U[��U��Vc;%OXKǭ���|0D�"@�Z��\�1P]dž�V��_ҽ{�XG���Ͽ�ډo�t��U�g���A�x��g���ܱ�/�^64$�6c���>	|h�}qsWy�+C<�ڼ�40����?�H<�E�T��z��_o�bU�/��\�/�!$q�կ����|{��CF�3�U��v�u��ݝ�6�!�g�,�`i�g>������c���]����hJk\����4?��ړa/gg+Af��[,h��^�y�����p4D�
-H��N(�O�u@��Z�H�����@����q�"�`H�㜭y�PF�N�
M�F#�G�?'��H�Խ��ޓ<�O&�CK�:�$	�0�X��X���0��-
1%�����F܎`��`Q)<�(#췌���tZ�IF9k��ž�Nq+�Qk;�I`c[�$��2l�Xe�
����9��R>9(����4gC
���bY�I�BՊ��cE��qms֖�H5NS	�n-笖��+[P�-C�^Ƙ���[-|�h5[o�����_�8$N�z��?����Rw��
	m
���`iq�=u��a^c$�qݮ��~���s�ܹ�^2l�v�mά�q���~{�����:���Cg��X�q}����
~p��j0u��u���Leܼ���ե�/�t�[9����<��%�<�'S���V'O,��U��J���Z�&WjD^FZ��h&�"�cו�%���(�	�$Vd'9��$I�LJ�I�5�(���\���:)�{òXv
bA�YT�qnC��Ը]��ht8�`b��p8m�Cײa�����p:�";c�%��kK�)ՀdԶm7�^�ՕJK@��:NsVԱ���c�>D�ZBg4ҭۃWItx���|9V�٣t2�>
eT^�nhk��1�1ag�}�u�����g#	#?a������fssae�O����cXm4;�Λ.����_�|�_�H��@�V�\<7��ϭ^�ZE��#�F��
���7ז�$IEND�B`�images/toolbar/icon-32-calendar.png000064400000004003151163244240013101
0ustar00�PNG


IHDR
@{�u��IDATx^�XklW�ffߎ�Y;������T&��@�!V#T	H�T�����R�$�
?ʏ6�$"�/B����"�����()y�J��Nl'~��^{ߞ�0��Wx<;���
|�͝�ss�w�9��,������k�C���HC��`����c3�$�:�l�̔'�y�X�G;����
y��uowG��<R�Z�p<��>=���lE�a��-A���(j�.9i3;�H���/��CNW$`����
&�:�5���T!B�_��|�PQ�ÈEl	��!(�&�22���������
�qy���=��R�NBݴ�)�
�Mm��>������׃�mu�����_!��!(ٿ%	�T��P�$�8@���B�hq���ZsssV�����-E��
�J��ڦ�v����q�j��{��ʕ+X�d@0M�;Ĉ���n=d�:k����0M|�5�JH.�-�t�����n�=
:��S8��p�oi��Q/~8��ߟ��wG�V�CKx����h��=�~8�.>��遟|���e�n���e���i�n7�Q?3���9�����K�z[��aU<`<�8[�?f
�.k�9���u�r�Ar��w�O�u|�ASş�)�{�qy�!�����
�B�Z�g:��Sm��.axh�L�20�n��oFV1�H8��kp4�W��Q"��c1x����IR�iY8�)�H���>H�Rbd3&���;�v�����}��#݀a���ߎ��Y��"�4�|µ��g��[P���xg8�W�8k���U����`->J�Ӥ�hȇ`>��}qڷmE^�1^��Z�"~5ЉW2E�tIf^��H
��5b5��t���r��;3M��MeĚ�H�4�d��M!ڭ<N�k�!��aX�(�.}��y�g#��mM��[��Y�vC
i���>U~�מ��χ�y0��
�u��I�z��1r�D����s@SU��BZ���l�!�r*g�_[�j��_υP2�KK	��n�5��EU�(
�)�;���R��n�z,��Y�l�ɚ�>|�G@4��q@UU�\��	;����N���*��T*��B?�&aY�)�=C���t�\.�#��~QP3���������	�8��N��
@Z"��+C�}���*�������gq�9�"���Mi��X�jf�VF�?W��U���X�Vk+C�	)���9��6�_E��Ȝ�f��A0���oP\�z��$IG�~?8�&ZS��]�&d�8p��Aq�ڵ��h�m�B�����tz����ܠ�w�f
@>���ģ<�nho.���g��\��T*ayy


X\\����6Da��|���\.B0dD�#5��O!`�B�Pտ
��[������y7(�-w93,�b�!�M�^���̳AAF-�L&c
�V����yK�u&(�^
'FFF`wHP+H����G�{��E�p�q�B7�dd�Y,--�>��u��0�	CCC�u�n޼Ie�ϟ��‚�;6�@ׯ_g�s�0==
�
�h�ܹë"���3k^����J6ŗ�D�*��y��^�Nf����+c$&&&���ݻw#��#�JUk�T��}\���߱Xmmm�e���ޑ�ͽ��D��qGx���P:::h8dv]
#�̼�g

�}^t�o�Nk�=�ݢq�bMII������ZW��iPxxH�K�Ř�œ\Jƻ������yH��E9�Bs��mz�
َ;j���D"A;#}^)�Y>�����q2F�(��s/Yҷq�r��;���NMM�w===tѠ���vSN�B�
�4x#�*rd/�/_O�F�g.�����wبJ�)�n/p#�$�!*Xt���H����5��R�Ztc�D�WO�ڵ�ՠ��=m�|���{7(��n�>n'�M��gm�Μ9���ɓ'y���mPp4(<�埕X��Q��0IEND�B`�images/toolbar/icon-32-cancel.png000064400000004264151163244240012566
0ustar00�PNG


IHDR
@{�u�{IDATx��}P��qu�����*T���9`DЊ��:�ε��n��k�b�V]۵�ۮkon�sg{>��s8|�4��`�Gi��/
Đ@�|�OF����?v���~�yz��������[�E�
4��"Di�Y��@k,�r&~�{�x=���'�����<�
[c1��‚-a��?x�4�DpXO�gY�#`���������$`�<�9�{��X��I�<��BiVD;�?X5{��~2w�*��"X>˕���3d�����\��V��v���#,��f�31���z�)-��Pn�w��`(?��6�TǛR�L������N��;�S�1��ݲ�Db�7�^
��YX�5'
֕s`]�����&���ۻ��í�����Er�/O@���}�f�ɛ�܉�[ֱ5�y��װ��弄�%����ύ��
i����0;K���F%wb�F�g[Fb�^n;}#���O�8Ϣ�Q^�p��������RbO�ܒ8v�~�\�p�����xvJ�]��%,����ٴÿH�F��%u/G75�������!�h�m�@E	�5x�w_b�zȄy��$0p��
�;S�[��pS�
���;�;���nz~���
���ƭ�P�����P0L#`��'�2v�4xÀ�͋Y�(�U��9]�!0��������w��y�������1f�a�YlQ��RƮ1����+�S�/ѹ4�劢3�˔:��A	�)A��z��\���M�ǡϛ�jX�]Fh�Ѐ�����i��&%�$IG�oR���wY�M��ꂻ���nm"��ˌ�.'�"0`X�_֞��R�d��u��=��]=�����x\ېK�E����Ϳ��j]I�5���Ӵ���װ�&�A���`�/rbھ��G�v��hȌ���NDsh���b1��o�7l��ϓ�r���PT'��bF��9��I�M��P���B�j[w�a]
n�|�{u������R��kR�p�L7dI�~bj_�_P�
2P�����O7Ia��h.Q_�Z��?4�\�KEՂ�g(p6-�ĐG�,I���Y������ϛ�n���Xd�Ж]H
��X�ɜ�Sd8��;��p:-��t9�Ӄ쬷�/j��8�da[W�L��cpB���q8��#�a�M��$=e���J�'�C-릍��u�4Ey���LT���2%pT5�������p�L��S/�����M��i�-�
��^~cԤԬ
�u(9�qb�U�2T��it8���ȌC�j*�D�R�e4.�Qf��j*�K�F��u�w����)��/TSg�/��?���Gq�G�ӎ$
s����}`�,�</��հZփ��틁�|��%‰�o�<[�l����%GJ�J�?���;o�s,gT��!x#���s�]b��"bx"��TJHx�l�-?�ϗ����o�	�y�A�9~kG��6�-?�_�:�k���9x�g��w)�{>�����`�%
�݄ڍ�|,v��;�JBM�G4Ħq��u�j�����Hï��G`�p��vC�m�'0��f����\�#�Pz5��ڦ!������\AW�uܾ}::\�s�(�4���|��	�*j�rCSwL�o`��4ht���g�T��#�#����\�'���^��`0:c��
���q��.��!<��u��<�ޮ��nܼ�l���z�ՊQ$0PSS�&
�N��w��6:�|�(��@UU5��ѡs޹��V+��K/�������<��v444��>B����K�4�)�7n��U��^Bj�Y��4����~*+��:Q�JO�Q�DuM���l7����nTV]`�bhN�<���'��s��hDY�YT�
��,��j��V��%%���D[[F�������;u1a������bb�yґ����9y�z}'�ţ;��4�=�,�0��g����O��c:��T\|XI�1��炢C�>!�P�y����L!��E�G�����EƉ��<�{��l��/9c�۷o��	y?�ꫯE������{��a��]���6�y,�����?��y۷�uˎ;?~[S�T	߾���c��@
IEND�B`�images/toolbar/icon-32-checkin.png000064400000003166151163244240012745
0ustar00�PNG


IHDR
@{�u�=IDATx��OSg��E'���-!ۜ3��(]ܚ���e3�d�WmE`��E���T���fm`�M�(ז�܄q��О����[L4�&�����Ĕ�"9�e�ɇ����9��}�鬙13�1��s�#�$�ݾ¯�DpI�h<-A�h!
�I�M���o�b�$��R�4��\e#�/��q&�/8�@�D�:�!d9�	QP���+>�De9�@5�
񎍰�C��GHq��r0Uƛ�j U�e?*�iH��
;�s��ċ�?���[(�N�ԶvYVxpƶ��E��zU�n�p�l'�%v�>�
��'�BBou��'
�?�
�a�a�8b��]�䤋��_皤2���2h��O$\���?�H�j�œ�AB��C�-d�88ֻ�Uf��R��b�/��sD�����U�wC.-�F�1�[�C���%�A�16Q�}u��(����k�̃\�Է��a��$5�
�o��|�6�3eH�	��N����;AiJ���M8ǃ?uG�>R�>M&�����!�q5Ct�wp�t2��Нx���:���^J:NunE[�;�ӯZɂ�����/ƑغrL	���9�jM_�
�c/(�GAֵm<Hi�NO�ݲ�k�|	\��7�e"��}�wD���x��#o�	
]S>l���wCiQ�W�Eھ�#�싃�đ��`���M.mo�൏є��1��k�ٶ��B4�T��x�{����O�)��]$U��:X�|!V�=\k;;�Gly�Z����Ek'�r�15/L����p�
xB.��kg�9�2eQ7�
�f��v{cr���DE�qu��p'K{p���9�<���ۄ�,s�0��a�q.�a'#n�︣�LQ�-��\Y���&GH�����,f�-d��5�0zn�s��pYJ䰌�]�{,�Y�gY��Y�@\�͉��`.Bcf+����"��D=ޞ�
�6w�H�ҥnpû��3��;q���f��_�gϞ	�߿��*������~�f�QV���M\��K������1��p0W��L�%D0l``�����J�b�0<}���(����������FUTT0�ӓ"Q��[x'�1�(���A���{�x���NGa���(�V�Aoo���'O�9�\�����ʱ8������vFÏ��h4�`!��I_�DHB���}i7���!�`���UUU����'�;i��&�[�L&&d�?~��4M��ǖ�s�UVV����Ч0b��9D'RTg&�
CGI�Q���Tii�N�ӷ��w������n���|�DOO���.��(����Mw����rliia�XRR�`���F&��V��œ���N�j%�[��Ջ⸃a]�=z�(�����9^ц:%�R����,**������I�N�F"Gq��7ۚ������o㶊N�E�a��`����>F����R0�X�^�gxrzN��UWW�o߾M�G|�����Fc_�z��oݺ5X��|�����n@L��}��޾�7oR�n���n�߾tvv�"��!]r���n������1�W�kr,M>IEND�B`�images/toolbar/icon-32-cog.png000064400000005050151163244240012103
0ustar00�PNG


IHDR 
szz�sRGB���	pHYs��YiTXtXML:com.adobe.xmp<x:xmpmeta
xmlns:x="adobe:ns:meta/" x:xmptk="XMP Core 5.4.0">
   <rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/">
         <tiff:Orientation>1</tiff:Orientation>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
L�'YhIDATX	�V{PT���}��,�,�"�]�QR�����N�'jG��!55�&�`b���&#IK�6��ɘ�LZ%N�btL
��1�_��VAXQV`��e���;�R0v��3{��w��=����J	�A}�ݯ�/i�Q�x)����Q���`$H2n���0bۑ�G��n�5���@(�yh��ŏlH�;�q|���ʩ��k�݊����Cǂ�,l��>�;�p���"X$�s��GkC�C=t����O�]�m��
�6a@�ga��O7C˫���<��P��o�_�����3����T��g���-\cy���D�Z#>�O`V��<5}Ϟ��
1���޹�,�IL���܃���S�j��e���wѼ_T�C����t��-[$��7lذ�̙��p����=�n���
^����_����wp�l��F"�
H1�T]U�Gш��`�:���D|C�UVVKKK���*�~l��]ό�p����3LeӦM�5<Ff3��K����,ϒ��ؑ1m�;���������OU����y4E��rh��&�7���׭[�zf���ʂ�N?4�my~�_`�ߞ����]M>�A��i</�5c~1��.%؜�i9�U��)nD��AO���;����؀k�u�^�+{Rkkkg(�
��ihɨJE�ZT�u7ֆ�h8,���"d�}{1k�J,
C��
����$��W�}
��OOc�֖�U,\x��`��n�m��ܹ�I�%c�)�>l�´"!r�Y��s�-�S
yQ�uM����Q��H��1�,�5y��`.:��gW.--)y�;&�i���_���]�.�
�q���J�d5+6���a��.Ll9�d�)ǣ�Q�G�Ы2Q�}����$-Z���$�G��U۶����Ϝ9s�ۇ
���T�4S(�n8�";'P]5�"!y��Zw�KF����|6����X�H�(^
��6zߛ�j�l�%됴�ڃiZ?����(0!�B��r�I֌@��
��jc�lR���m��=��v��3)2�>~�`!	��چ���yܹ���_
����N�qI�M����UcekdH]��uz�}�������\�-w���-��O3�lօzgB�x��)�D�a@��&��h��Wc-���$1>F�{WT��p���l�����'����,��
E'�.�$��Q&�L��P�`
��"p�J��!�/��%qG^/p���\����xɓ)�L�Y�T"T��S%�+S�T�7I�
4�j$���`��R�7�)Ψ��3�_����{k�z�*s��)�:�=@S�"�$Y=Ȋ�S�ѕ
�kT�$9��D�tM�VA�J��`�cR�`�pF��Cms���6�T��O�����e(ǃӚ]�98��`��76�]�e��嶁��ց�I��H+P0'�
����z�������-Gpۉ��/�g
e�6!��]y�ن�HT}qIeF�r�_>�I}��.H'&[6��tU����(�f�3X�%=S��8-7�I�B��7i[8_M]_��%x�0�#e�u�ü�Nj/�WwT\��������>�i��3):H�#A���LeN$⡼)S�J�����,#	w"�v#��Wl�Nʀ����j�	��xTk��Q7���k3s"�#�W�+0m��]<����ܔ�.*%NB&�T=��Es��A����"�<||>�fh�Z��H�/O\���#��.�U�-W!Ы�O|�qp<�X}�p��0L�sM��8������	�aAUe�>�@��t�08�iWx�Tw8�z>UP�t�爈}��x���ε�aˇ���@珅!��Dk�?h“�d�Z�R��j]�}
����z`p�w���d�@j�='�YN}��LtE�1��p��^�Z<N�B�_W���]�
1۲(/����[�H����\��.N����Ϳ�	�ݓF�5�i����S�����\���x䲘�t��y���Go���CC�å_��%��w�o�K�*���7�+������́k���-�1���dH���J�u�Q�)k�f�|0���c`�`��x�w��8��x�΃�����	~���(�g4IEND�B`�images/toolbar/icon-32-component.png000064400000003210151163244240013331
0ustar00�PNG


IHDR
@{�u�OIDATx�XEt3�����N�C�q~fff^�a�^_7en��~Uf�uS؟2���f�c��{��(��)77G��ݫ��R2X�=4��B|�:�s�8��`�,`�
�>�{XF��@Z@����t�@![����h|v���p_���7�Je�]x&�r�5�=Xy��mY�/��T�:�נ�0�P(���d�

��:����@}#�\
Ϭ��6�����#�l�6lHaCAA�u!���B����Etįa�e�ֽo��d�6d�U|����i'�
�?~��	7���L$Ǟ����J���C��
b����{l��؃��_3�%-�t`���ܫ
��/�)����r2Б(fA�����Y��Y;�ı���K_�X��l��;�ȇ�|��W!���&(���z�|�G����Š_���g�.�{7��{9���}~�v=L�0

[�
��=.η'Q�C�*
����?�!�ȰRH��gV;8�q�?#�Gh�������^(��=Y��
k�'��<w�3���=�.V4y���&1�E������OƊ�ʅ:�tҡDX���(	�@�1	�
N���q8҂c[`��O�e2�_;�J=`s2�ꪦ�����0aK0��	�U��JiIB'Ԉ�6h���a�H藌Ѓ+1����ca����@e�*B��JW,!���8���f�f.�a�Z[�H.m��j��F���0�!�!^F\W�`fW*>��A�3�ã��ޏ6�.�BuC�Ԧ�˄��0��O��Qt�,��>��W,����O��>|�{YЁe�ǣ+!q���ػ���<9E
��X�_2
��\�
��ś���y@�c�m��:8nY<�����:�ˁ��t*��|>`+�N�3@�NXRjS�,[�-�k�#��z�,>�I�7m��[5��D(�c=���=Ky1:��E,�!]����7$S�P�}�y�x�3�IJ9�
���
��b��ߏl6N^�v-=z
jmmo�����{�n�'(�e���(�t�������6

�q�������(
ضm�f����oH<��͸u�6o��-�ʕ+166�L&������gX(����K���b*�'��6sti1]Wv�U�Y�<����]�������cbbB`NT����9U����+mњZlٲ�{�\��@��"���kt�m
�v��?��;w�����B#99�`v�O�L�5k�����cf���Y�g��U��z�j������i�r���^#�$�\Q�c�Ŝ���khh�O�S�a�
�yg�T�{�b�T��$7P�TܹsG}_�ǃ�Z�C'�u�0�~�I����a���6	L�����>�$�0���9e�R��f�Z�0vM�Vy`f"4C�G�L.-s������K&�<�j[�R��9�3������J���fr.�g�X�7��]�z�
q�������?�k׮��رc�
�y�
��B��<O��k�3B�tE%j���*�IF7�T>�����={����?�
�����f�Y��IEND�B`�images/toolbar/icon-32-config.png000064400000003352151163244240012603
0ustar00�PNG


IHDR
@{�u��IDATx�Xl#W}k���u����rŬ2��'.3s+�
K�23sef3sbZ���2��8���*�Ic��̾�����M��~��������9w��c���F#�}��.\�?
�|�^}�c<+{�h4
ʚ5k���޾>���c``���A�ؾ���3�D���R	��-���_�a�:��ףF({�?��p8��u��c1�]���Q+��XL
a�E�1ߛ6m�����˯���6�9�h�\��R��_15��`�I�eKl{�o��F���%[��+��+.�J�/�6ओN�����GC.�G"�}d��'m��b3�����ގ˯��v8�|Ǽ��)�6�7y%�~�}�=��LAP��Lſ��;ρ
̀+n�)�sκ'�d�b��"�N0�����$V,[f�.��g�M]�Ut�P�m��&��-�1�ѧd�9�Je�]�6�u��X$tvt�K{�U�19�`bb�_����XP��C��!��u]�p
�,f`
���.̟?�B�h��7�
��\S_P(�Q�EGaIW6�ܟf���J�tץ�LMM�	94D�iJ���A�ރ�o`�UO��l�&�l6
�v0<�@��¦6�e1��>��T
���6+P,���>����=#"�̙�7w.b�8�a���7p�t�53E��֞�����e˗��L0:2�S?�	S��e�!�A�tG�J�X�b��fR��O�{�@e<�1���l֪��`|$��T�Y��&����Z9m����}F�^�b�}�%�y�],7��W_}sR��Zy������V�I��2&8�p�=�@�/G�.���13�\��ov���e�VPf@�"d1��'+���X�zZZ[el�e��$��X,f�~�����=Ԋ�!�/V�Ԝj]@jr��x��B
�=�Xh
��k��I�=S;nE
�zT�p�L�{����A�����\Cb
Dz�rpph���Ș}Gd�H�X�'�����-�#�O�s������^�
�.QcmRd��%>�K�b�;Jϟ�
Ā:^���T��Z���������đ�c��V�~�8��9���D"��`fFGG�~���G�9o886�S+l{�d�'����d!"*�.�wǵ�Ҟ�q�!8��8�d�]+�=�m�HN`
Q���C.��
>)�3�\�F}ҎmO�5
�B�����644��D��o��(222B���)
���-X��L��2�Y��à���ɜ

	S��S��I�(�y���n;L��N�+�B����,	�v:(�	�(��uJ�S��q�#y����OB�k-���]�`5eV�m�Ak�$c\�6	���g������l����[N
L���Yk4�:g4<k
�&�ڬq�e�j�2�l�H�ِ��
��f@�e��ؾ���g��M1"�St
�R
�H�s�0�bL�4�x�~m5�9N(6/^[��<0^G�.�Ǚ��g�e�^�{oT#x
P��$�bV{��o��+��`�
��թӣ�Yf9+�k��F�j����~��1��vӰaV�T@V��X�F���=��+��'z�s�b������`�y���!8�C�Q�~?�����������#��IEND�B`�images/toolbar/icon-32-contacts-categories.png000064400000002623151163244240015277
0ustar00�PNG


IHDR
@{�u�ZIDATx^��k\EƟ��g7�i6��)%�*նiـ��[�Di�R@���_Q��
z�R�^	�ܕ
hhi���6�6擘��1�:�@��9��4Q�<�f�l8g~�y�}�
"����o���4?9-+z΢PL��~kl[d��R(��(�z����[7'@���$J>�3�8�f�B���^���ApR�����%�JU������;'
�W�`��q��Z}������D���N��4vB��8|��W@Me�@(�����4}P��/���C��7��Yhm\0���
+=�V������b�U@���7,�Uq��w
�5w��H2J4����<�	tRt�E�w{��<���.��?��O��>@��*�O��e����~�%�k�g�B'��0��i��$l*��\�C^�G1�<��HD!��E�,)D���"
^�=q�(
�8G,�u���uD��[[O;�D����S�R"-���v�t	�J۞@����"����S�v;�
(�^�@kh20���bW����x+.}�׫pe:�&׊���0�eu?����W�]��۸����m�D�P
�!�3�0!JUGO�t�$��d���>w��%�~����0��=`@��N~�/LC*��'Q��=�2V�|�]��فXk(�DI)��<�
�*�U
}��/\R@����^.�c�A�_�G,�P�\�P�8O�{���O�GƐ�@�g@w�@*��%����ic��Q�*�|x3�#���X6D����a�<����h�nG���9��D��I��
(����d@�r���ftHG�D���������.�.@�N�^�zZJ9�.DD�����tB"�Y"�kY
!�Qg�Ʊc�&�E	"��e��g�(��V����Չ�"ŎM2D�		?{��Ş={`嚎NRJ��ݻh�Z�+W�4�?>��������S�T*���E���N���Y^^��Ғ�x�e�`��3��s�{`eeŤc��Ϯq$OH6�
[dr�*OJh{��J�R~�q��e�j
��2�poF3���;�+ƌ�V�TOoo�k��N�bќ yBb
��ֺo�J�Ԣ�	�l���Zo�������R��Y�?��l�iV����v����e��Esss��������0]�Ȭ���!DQdf7Lp?��!,�y8[n��Yڷo��\����G��i��0D�\�xB����~���X�\�����	���3A��@b�='$�َNm�o6��MKlR����nL:q�ƍF�Z5��jN���ҕ��!�t������ȱQ�K'$�H�m�K��{IEND�B`�images/toolbar/icon-32-contacts.png000064400000004732151163244240013157
0ustar00�PNG


IHDR
@{�u�	�IDATx�X��Z=�hm<[߶m۶m۶m��g�k3�$��mf*�L6��U]��$��۷�o�e��"�/��$�!�Y��@{�y�!��zl�!�I
��p�Y�~c�a�����g����T$-Ai冿�+3z2����5�ڮ
���\�d��!�nD#5V�R]��j���666n�T��j]K�]��^Z�u�P�3��Y�bDuw����H��N4m{��8��O�b��O�M�~6N��Y�!���	�\�Tm��f���	|���@������x�ְ�:hp)4��@Y>���X��ֵ���8l��c
��_�%�
�<�.*��`0��j�����Y�-=c1�4d�i�[�6uƕɈi�G�RhN"�@��E��{`[DZC��m=������Q�PS)���K7
a��av���po����أ������_�
d�մ�]n�P.�@׉��(0i<h�q�e8�v�e�-0��3g~�Rէ~W�vVT�'�Y�}���V�"
��i$g�l�	4���k�	9�`��D��v�jv�M7��9��8�u���*�a/���a�`,64&@r�,��ĥ(�4z�]r=
UI�ÝZ��2�ME `����
L��4$��KGU+)�>�����5�
L����U\��$�L��d���0�;��%�~V���@��n;i�u�e������N��w�����~^��6H�2�9�����
P�Zg`�k�:@��]��$����P��0����n�z)�誵����q"&�l
�Y���v�Yg=E�s��Xk�񽕭ܵ�!	�
.���ԡG�1���}p�N����.�"�qm��ۂ��I�]D�*��I��uj���
d�ݿ#�[A�ݨrC1�H�9��Ҝ˹�V����L~�H�a袘WӇ�*xs��`I���T��ڬ�r_û�:��Ӯv��ͼo#
2�
�ȯʕW\qȈ#Nj3J��,I��ץ)����>\rUMCEVl3"�#0����O�؅c�
��NU��6|8丄t0BU3QO@b��F�|�ʊ
Չx<��H
)7��DD����X;�S�!����C���X}���!����<�7��(�i%e�0O�ĀD�v��PɤH��VE�
(W�,��`J���^G�hi_��	o<$-�i��b�,�G��pqMij�q|��o����_ߜ�3��0R�[�Ə�w�����`�&0��Xc���^g�U���e����0(��&�#�<��ɾ����\m��j@
Xx�V��E�w��V&K��6@���h�5�x�_��쾳e�+�HuK!�)�6竏�ѣ����6I�SH5�z���r�%nmz�3�.k��3��G����D��w�	��:Y�0y�ܘ�Lo����40-L��H����
X�J�����u���4Ų�l)i�4A�*D�ŰT���#c
�L�-�ꪫ�����&���ߴ�j������y�1���8q��K�,��Ȳ�a,��>�˲���q]RR�w#��JB/n+B)�t���L&��sr?�=/(��o���W��M�|�?��k�>d�G`ѢEX�p���,�4hЁ�#I���_��r{q*��%
Uq�����u�h�sI�>|��U��wZ�0�����`���DQQ�[mmm���"����%����?�$�
��cǂ�Z�@�=z4~��g$��$�<����
0�"؄�K�.u�����	�e�aÆa�ԩnp7w����kr�S�drg*U�2^M��.--�v�����k�/�F����ne�V�MT�G�qW�	���W����e�G��}R�K�v���~�v�d�W
��_d��+Ÿ>��viii���]\�����$
��a���fW~3��y�0f�X¤������ݴ���Ƒ��0]s~{�ٳg��
�,,`b~c�
�裏V��Lz���l�Wec�WUU�S�y�<NG8o+���s�{���]dA����e���:��gx;���~׻?����p��o������\MW�X:�:�/_�-e���o��!t�D�8M�eWWXح�J�'�=55594g��.VM�#�?���3�U;��W�
��-��g8q��"���?���pR%���!{���'�s�GxL��sTPce}���f����;����L�=�"��Ћ�W�ؿE@Yo�����z�7B������;X�nP>oL�x��Z�l�_v
�{��z뭕�*6/Я�8~�
���hU��ȻQ����f���ܹ����
��Y0���c�W�wտ����Ky�3����OOJ�԰��|O6A[�
�)������Y��=zv�'IEND�B`�images/toolbar/icon-32-copy.png000064400000000642151163244240012307
0ustar00�PNG


IHDR
@LP��!PLTE�����������������������������,�z�tRNS@��f/IDATx����n�
�a<;��$���]쿛�״�Z-}Q.W��?fP�j|gw�w�߀�-z�[����7@l���2"��
���
I�jx&]�فM��f�(�|
�y���Am�h{{Bt����8�����4��ƌ
a�[��"Ыa�<���\�;g�������E�
N�iM@C+"����0i�CZ�G�g:����-�{�=j�>��-���hI�q'�9��{b��2ܹt
��Aąu)F��� �_`�W�=`�k\ҔZ+��Ͻ#��،
IEND�B`�images/toolbar/icon-32-css.png000064400000003054151163244240012125
0ustar00�PNG


IHDR
@{�u��IDATx�X�.9=���g۶�k{õw�`����m<۶m���$i2i���W�In:�̴gn����<w�e���֭[�KKKk�k�q
K�����ݻ��(;v옟���\
ࠪ�d�i�eAAv��y�.]�L@|y�`0h��J�m555A$�
�U/����֭[$���|3	w���N$�m���?8�i�g�k�u%��}�!`H-�u2��͛7AI�	��'A�Sp��m;v�N����q��U�<p�@/�<��j*�ג����AR�P,��0��d
l��D"e�����o�Yb�@��?E�V��
����F9z{f�1
yK�d0�{`�"��XDX���
>Òu��>�T��@2$��C�_���SKA|��
z!��y��Y����~��F���ᵾ��L��B����/@��b�[!\�N�(��5��8
��Y��~�g67|5t�@�6���@2
 A��D�1�Y��<�k�Ƶ/F#}�Ⱥwn|5���U���@B���é����y�z��'�Q��%��BZ���"�Oo�S�K��C�=�/��Ƣ�(|b2�<��?<���(�:��_��-@aǙ(y�C��a�XU7
#R�	�,��(|��Qhz�n��[l����,hc3ES?@ff����M����s��7�|��k5���N�#�˒�~`���	8,���#��$̛R�hܰ8:rpZ��V���PM��	覀=��3��Y�k���b���DH<��x<��Fv�w���~�@��'>l۶�Pn�?������W��;�LE��.��2e��>�h�1c�����>��/��+}&�/�mj*��>�m
�����*?	�[k�㖶��h[��G´1e��&��X*�k׮=PYYY��g�	�2�e����~~��Y����^�n���}I�����ˋp�1��&J�_�$��lH�)ʹ�Q͔
��B�HD%Dp[�L��	0#R�R�R��Њ�@�.]��:�����_K���gp��Y[�H������K�0���6�Q�<�_�nlTTT=
�O~Q[[�V�Z!''DUU�())�3,Yg�\�U��F�j��.���������Βu�����)H�0;�u��.6<�v`�a���^�ހ��
V�r
R�Kr���Sz���ؽ{7��Ν;c����=��O�ќ�6m���ѣ��ѯ_?�rĮ]�Э[7z�}4��'O�k׮�<:�˗/����u���s�1p�@&��}4Lo޼y���fQ�Æ
3�c�ӛF�[�f^�f>�.0h.N���/���>�ۋS����,�'�0�L7��fy�$�p
����Z2��乔cz=�U��[�sP:k���s!�>�v8�Q��^�J�z���ڣVA8`������3gΤ:v,2ׄc����1��g��8@���|(�����X'�i������]��44Fy�?@��FCaokIEND�B`�images/toolbar/icon-32-default.png000064400000002060151163244240012755
0ustar00�PNG


IHDR @{�u��IDATx��4G��Fl�6϶
�m{bۜ�v~䏓Bl[k{��U�^�a�n�g�r誧v�=ow�&O�ͷ�F6_����C�j�a���2�'��kY���G�P���(�Ɖ@�t�ɗ�����U�
��*���wϢ�G���x��X!�K>5D��
�%�����+�P��S'{~o�W��[�:��kcO
��ѓx���*(�xg���.?J<�A�G�(��
��&��t�=�����<���s(�c���$�=�A������1
��x��R�p��t/�ȃm�|�+'x�D�f�Z5|_#9�7�=
A�)ݶ9D�=�v���mg
���\/ĝ��?�l&��ƭ)t�n��b��m;�_����k6���;e'Cnٖ��`�o�^N.����Y��K�d�3�u��w��N�47���as�������]�Eϕ�ѯ'&|��+(���&�~j�.XI7�	�p�H,��i�z�s�^j��L�x5��ȗJ�W/�
����"^r�E������]	�U�Ν鷓Jx��?��b�+���
�r�ǺQo!(��,�6ވ"���O/�yC>6	�T2ݴGk����S4{\���/�jglZ���r`��Ʋ���j
�^z\����+hc�_	K��P���4��Q�y�8f�ͷ�Ԃ��`I
��r����r�|
��w-�g�3B����j��Y�zGA
7~��$�����8��\qd�\�x<K�z����	
c�*��V�Růi�^7P�x�]n��x���������c�>��}��}�,`)��Okn.�K�+x�����\>����?-�N�
H�G��|����p��3�H��d(��d,���4�H���l�Na�
��!�*�Z�Kq��b\�,V���o-�
�7�+�f�m�E��X�wŰP�c����_7r����7�xcJ�����V�~�<?���������"�{�|�vHIEND�B`�images/toolbar/icon-32-delete-style.png000064400000004376151163244240013745
0ustar00�PNG


IHDR
@{�u��IDATx��kL���'Ki�jcU�iR��!R�i�4u�B;�#��6BQ[EQ���6m�TƸ�M���5)����\��v;Y�]��5��k���ca��c����s�]���DV$_�'��s�9���{�w��Hғ&B��t�8	*a�",ˆe;i��Ś�Pl��c[��L�~��~�۷1s<N�9|o��OIДU$N��M�2�LK�v�kh(9���o`*o�s����Q3&?�9&?x�|+������~�8a�sN��c"�QLZ�����]_DkŇ����l�E&�^L��֯��u��{��w�-��(B�_�7S�s���{<K`���h��É�Il3�c��P�E�$����|P	���4��V�ޒ�F�j4ʋfn���
t��+�q�Å�7�͐�ޕf�ؗ���v4�k�/���q1a�(
j��&�_����~|T�B�@q�3l3ķ����D�侷�ŗ.�sE���
�(!�������
6o@�s�è�+���a30�C8�;t�5�?�AQ�c��?��f�f��-6�g$��-hN��FD^�ѷD,�p�m]�p�$г��l��;�a�fƧp�E�O[n��@��7!�]ܩˑ�[���;�'99�Fm��l��7i�{��ެUp�.z��`�!�o~Iݗ�;����7�sЏc;���N�
����4�I�|C��;C�p'�o\5-���!m��S��{�3�ۜ�7���9�ǩ:79Nk3�IȜC,V�"�:�z�R�&��h���?;���*�Kj�Ma�͎�M&�h�@�H"0�W�����
��)��Y��ƕs���_U�w����=�q}k��a�����U1�?���D��?Y8	���饡�~���<�_X�?���c��6��=�}h���w
����L+���$��u�X�u	���?J�Ԯ�4���5�"%.b�J��I/�6�IŭƧEw=��	K���j<��ʛ��{�(��#r䍧��Y�6���S-������$���n6^ͭ���{�ٷʏvg���y�xfO������T�^ȵ�J�<e9����9���f#�N�o�X�o]���WOw�
��$n��'SY�H*M��d�X'�����E�U�
��#��v�%�833������>�]=�rgW����%���~���IqT���8���z��Q�������~{__���wu��GOF��e�ؖ1�W���0�LOOK�@��z<p����م���9���چ��V��-LKT�}��6����p����ax�>�0(,�499)�B�ϊ��<cc)O����}>�Lv���e�}>�gtT�~T����X��fq��-w�����iӝ�$@���N��#�퍍��,T�KAAAl����B8:�;4�����o�{@ijj��]�z5�ڵk6
�%?{�,\.�J����ͰML+]B$�J�oo����sb'lnn�Q0TTT���tီ[�E�E��R��/���:�QG-imm-����7ӂ�����5ی�gH��K/��(�\!PSS�+W����x���"TVV��qb�	���f��6�%��@Bx�i	O�>��'Oj\�t	�/_f?������2óö��6�(h�:gΜ���������-���0���ض6C�������ϟgs�;w��A�/��%�8�	�%�%�5//'�:�#�y�NMM��g��TUUI>�$��b��Q�N"�C�̛F߽l[���R�f�Jg�
|Fp���"�DM���r��<"��a;���~�����82�Y����db��(z����Y�*��N�ml��z�,"��P�6^�pX�>�����ƢUڈV����Gu��@��O�~x�k�I�����o~Jط���oK�׋.D��@�"��#C�a��T�-����M��ӣ�u��h!0=�-��������VD��:I�J@�6�g�m�[��ŋ$���A9j��D�4r��ΜP?�x�i6��$�y�m�F����#]�Rh�MDa#TK�$db�����7�ݢГ���oD��/9M�
��_lyttT�x<���t�+|�D�}��Z��V�?�>���(�e||\�W=��D��`�i�m�:�W�'�cp<�K���0�@��L�P����I�����D���A��:\�2�^��Z�Gq�~�������B0E�IEND�B`�images/toolbar/icon-32-delete.png000064400000004053151163244240012577
0ustar00�PNG


IHDR
@{�u��IDATx^�X]l����c/6�Y�֖����-����*5�-�K��@�P�S��Jꭊ*EP�T�Qy�<��*-�n��*�2A!&VC���?q����ߙ{{tŕ�e��1�҇����޳�;߹�̝ˤ�x�1�P�LB����p���DZr3	kϝ;��Ç�������	1E���@����/l۶��۷�|Ϟ=o�<y���ԩS/���?�H�	��x2�666�%�U���_���zu���=���B�7F�����/g�Y��	"��7�����P2�|��ѣ���ʿr+O>���S
{O�|n�&<מ�)-�RBX�F��?�@����u�P*��D@*(�b�XC�y���_<qy�?�{	F`7�tU�-;[�O�*�0|w!QB�i!lY�
�����Bњ1Dpnn�uq,-.���q��at���ؒ�:3��{VW%�ds�a��`�"�6[e�r!�T��3L�1H�������-@J��apff0�@8��:$�;ӊ{*�`�X}]kmC#daF�#_$���Hj۶����I���
!�`8�P�av��9�Y_q2�eI	�@���e�r�@��:U
�$?�^��"/��B����0���oz��G��D3&,����-��ԙ���
�h6�w�܆y��y^�����`�'�Nn0��Ϧ��H�R�3�����B���L@�61�������Z��-����|w�O'L��b���2�EA>(%�36J
(�*�N�i	���c�R�c%s@QV�ɖt��G�4/
�����.��%����Ps�����6S��R@*���{zj�AA$,rf>h��7v��&6����Y~���
Ky"���L��b�O�g>�3^�?(����#�`��z�X��{�e�(!3�qo
4e'��#(.-���0
��C�AU0��%d���X�C^%U���`@Жp��D��G֏���%P��`��i����מG�Q�
��l��`�0<��U��P$�y���#V��m��㮀�H�]�3�haAI�W?��]V��˽�-!���
!P����d+	�;��w��*���G5&�
�G4'&�J
@XCh�~p�[_ڠ7��`੝h<W��9���D
DHJ��Yna�		Ϊρ����o���S<�l�����
v%�>�8�az�+;��#5(���n�u�����_#2��V��_�r�?����䨴
x�_v���2���d������zxB��ߔ5�O&�<��|���ʫ`߾}���H�b����f����Ʃ7d˲@Y�s���)��etvv���|@}�y�K�H�Ӹs����.���{���0#�J=��FF��u��A2�
�ϫ�BA]�7���)���iܸq��yd	�[��
������T�׫��F���A9ڶ���1��R�c�1�J���ի�դ�B4�p�$֬Y������#�49�F�Q��SG0�`PЪ�w4d��j.h���Γ2^QI�EY�Le�ՠ��ԭѨ����e�v>044�ڲeK����&�=����*k���LNN��8`Le�-�����Ti?.j��'_���l>��T�������
����7��d��`T;s�W��N��U��K@�צ���1����
>�k8'afe
<��I\�K`P���s�@T��իW�����k׮�<�r�Jf�@w@=�I*��H�G�{Y��n~�
��T���j�Q���-\=�s��2�3E��W��饉x4��'Suߴi�"�MoZn߾�L%^e��i^��C>:x%�:�g�>���T�;f2	�?~��fsj�ڵ������U���C�s�<�����mmm^'�&���
��y>�]����f��=�ކ�jc�Ο?���z>���;M�]o�l;HV�n��봝s��[��gΜ���	���w��D��
�tt��
��B�}�v�>�Q�z�i�IEND�B`�images/toolbar/icon-32-deny.png000064400000003215151163244240012273
0ustar00�PNG


IHDR
@{�u�TIDATx��YLTW�ǵi�:��pa�]
.l��#XP���$m5��I��M�4�ڤi��jlc��8���*�P�aؗ�_��z�����L��_�]����Y�+��%�D���C��^ӌ=Qv��ٽ����AN��4O�]�K��<;t/5(Ǿ�v��B���
x�8?���h^8��U7~�-PAF��
��a�b�ݫ��p`W�+蜿�#p0t�!u��-���V���a��Q�[����z<���~�ت=
)���iGN�cW(��p���08r"@'35n5���|0�68M��c�Ln��\��׸�|x��rt��j<+�a��h����`lK�m$Csd��P4M:4�=tԞ����g�~�����q�:���Z�m[:�F4�`:���-����|ѝ�F��P�}���\���,��x���y���s�_
0�Ƶ��4�.A���HQOU)�T�|h72�6:�]4@o��N�Q��'�zއǬ���h�')*��zƭX�P=�Ó�7E��'+����`܈Y	Ot3F�<&�S�)�w�#ɧ�@{�1+0n�=��ؕ��#��L���7_4@[���-Q9�j��2~%���G��(��u����I�ѭ�iK����O�h2*�iM��hJ�ՠ@�^��x9,nP�S��j�ɣ��@�&�I�V��
pϨ�5�XU�5*_b�a�{PM
���FS���/uF�B4/�J�~�O��ҠD�A�2���q%ʩ�j��^2�QaP��\U�^q��P�I�
p[�B!a�3�9�
t/�*��5���_P��2w��W�,K�2��苛z5��Ը�g��3�:��s��+SQ��
��3䥕I������X���d
Ԁ�\���'�t�`I��]s((��-w�N)�Dĩ3�&^.6���q�i
�4���s#A����I	B	�/��(Hֶ���Z�
��\��^J
*�7�v�ÇJ3#��2#�J	:+L�)������8�썾�E�[�r�ۋ}>�T$����X.�|<WK����V�����WQ���~�V��2b)�Pj�%��'��h"���?�{���("��󋑠ńR0Y�b��$f�½�a�j�W��E�n,����V!S9�����(̗;�B�Y"�3!���N.e�X�/j^��%��++q��~]�mp]"�����F���+Wj�<xO&��;�\^������jf�F��w����d.�Y���1::����a�'&&X�3�.�#�B__�>}����������v;�qF�7��l֘/����a��8�;��A����OD�����A?fimm�'�z��E4�Y������8sV4@ww7finn�BRľ=---���G���a%�x��>|���Nv�2]]],<��{O�g�����=C~


���w���������_CjM�5�'sU�/�����	/qJ����r	x+!�IQmmm.�"��C��N	�Or���8y�$WZZ�euu�c���.^����^R;vl߹s羥&?Y,���ׯ_fǤ�qqq���o�K�ߎ|G*+PKIEND�B`�images/toolbar/icon-32-download.png000064400000003167151163244240013151
0ustar00�PNG


IHDR
@{�u�>IDATx��iOTgǏZm�Z{��}K�&M��i��/��M���IkcA�Ez-�P-c]p�����V��d_.�lC��e��vzΝg��;�„���0�9��3wxqaQ/��M�pn�	%3(��g��3
��(���	�
{���f�K����i��I�r�`��
o�I��B���y��)R���	寇��5,@���E��٣���!��~���^�3.�,�7&�b'���FD�H��Q#H{/����hͨB��r?*�r�2¡zj��W󩡿�V��2��g���>���TކF�)nDHSr��n�
�2\J@Hw�Z�R�4��"��C��	�҉>NӨO��r�
J�5h
>�мS����!,��8�x/±�PR�QrV����cts�&ն���\���n�%�_�
e�Α��*�ܣWwǀ�u!���#�
a_-��[rP�t7�_�W�����Z�RW	Lu���I2�ԣTD�ϩ@��IVzPʻ��&�]��ulj]L�ڎ�G���
T��q��m΀:Z];�j���Ǯj�檣Wv�jė�9�֕�T{�׈���Kr�$#��@{e�����M��8�Hi�US�^e��z�5��K�D&5�d��������djf]$�FSI-�O)�A�$�~8EM4`��#1��B�RjxuB�J,�a�L79O���ac�J�|�G�|S:5��O�HTp-+����(�����H{2���,2<��ݟ��bO#���%RC{.Ѿ�sV|��d���
d��cnHlN�۳؞-@D��!�̓/�m
��q��OM'���x�qv�_�Ya�I7$�z���&�v2H���A
��_�e���i6�`A���ml=�x2�f�B�!���	G؜�x+,��ˈW��ě�[��+|�#6��?&��F)W��3D�Ŭ&V�+����k�����O	�9m�Y�؏�w	A�Lz�X��Я�u��gAX��O-��mm�˴i,��kxM�j���~���7���j���:�#z&"`�6�|	F�/�E-jQ�E�Ix0T
a#,/�؃�K&��XPo�<���+��O��G���Ç<~�X=ӑ�H��O�<�;w��7pff����x��u�{���#+�ETD$0�����c�(ܼyS���u�+���`nݺ���H׮]�۷os�����7���8�
�
��޽{N��NOO����c8�����!P���)���@#MNNrkD���p�F\�������������
�s�#���{􇋲�����nu�F���Ȉ:���a�F3��?|#�}�U}}}����7�ghh;;;��)�7���H`&2T���ra[[�z3q��(�ù��`������bss3���?w쭭��9z`����ztuuaCC�:�`�7��ݍ�NWTL&P�������q�766�B�joo�"<��O���kjj؜?�3#l0WQA��@!�D---"��@!L�͛���ml�
/)RSSߡ�zOSSӈ�)?����|a/)bcc�v8��,�-eee��'I����ŗ/�K���P��ǖIEND�B`�images/toolbar/icon-32-edit.png000064400000003220151163244310012253
0ustar00�PNG


IHDR
@{�u�WIDATx��_L[u�O�nsn��1�8�8U63���'5��ތ�ɮ�Fg6���5R�`d��
��BK/�,����,p`c�1�I�^�b�p<�
)����O~���s����B
�ʪ���������wq�&��D{�1��p���L"g�hbh�4��xo#x��QNܲ
���fD*H�o!4�X?�PE2���)S��%ǔ��%.�wN#�u��nkܭ��у�.,�@MP��i$#Hs�lk�ā�8�v�ݎ�����@�5A)X5�4�M�7��n��q�z��V��} �@�U�ʯ�&�}M����kl[쯪£�b�`��I�(�l�dT7�j��o��k��>t���ޮPL��cA}
��P4�PxEF���>��-���UĿ=�;/�kRm��۰�!ԃ��3'���vޯހ?�g��#�
�6`D���XZ�@�/;`q�g�s��h�6p�w��RT�E���ş.�gQ�
��G��]c���wE�S�ڵ
��Cȼ��Y��ޏN�RW�#ȼ$���~
�c��g�7/����ɺ̣�m��
 ����j�Q*><��#���܁p�!�o�6`j5�1Jʸ�`jQx��fl=gÎ�fl�����`q����,?���?���>��!��!�q��c��W���z?�
��3�|]�V��k%�7�扃��2��#�q�_+l;��p�^?�"±6��-��;Nq���<p"��Ć��)7�!A�Ӱ�_DI����,ݍ!�!�,:i����v	��e�&��
�pI�]!#���H���C�!�u��7�H�B8T`�\��(��ZLp(/)$�fL�G��N#IEO����_�{��	����XOlؼ���g3��'fd��o�?���X�h�ܘ��w�w�_R��r��D�������V�Mb�6��x';�x�
�55�9bM��UE�%�_�f6�j�Ib��EbG��{���k��V5�U��^
��骁1�zB$dQ1���+ߞ{<�E���*�6���ࣜ��n��@�D*.����j��2�/�=���7R�0�u��֦�൰T�Z
&$I©�)����P�����֞�\.AMD��f�����Y�5�===l����!2����<@Y�qff��|s������s��)P0Ҩ����9�{�����$����#x<N_{�p8DN�Q���|�|�aq^�K8/N��ݞ�>}Z&Paq����a�5�b9����M�������Kǟl�<�ް��5XL��x�\�.�������I���yj]���
�v{$���~TԺڏ��$+**��#�����5���2�8Gkk+^����}M�������yii��8��
811����aq��xO,Σ�������&hĢ�"looWL����ω�t�����$G	2'����f���F�y�E��y{{^PP
��:&˕���t���s䂴�D�gx-�k�����鱄���Q�/))a��<�2��j5��暨`�Y���y�&�(R�H�]{n6�wfgg'�8q"3''�O8x����755u�=_m�W��o�����4IEND�B`�images/toolbar/icon-32-error.png000064400000002405151163244310012463
0ustar00�PNG


IHDR
@{�u��IDATx�X�5G>�Fm�6��7VՊj�mT3nP�v�[϶��E�Kzn�}�t����/;�3;��3:gc�\N�J��/FR<X�~����ŷ��q��b�ՇD"1���x�^{�J��ASSS���Ɣ�+$�GUU����_�u�˙x�>����������`1�mP^XX�E
��p��KKK��d0��y�o�/(�N�E�W�
L�d2)���2==-n5xD�!�v��t@��ؘ

��UTTHuuu���W��2��q��������<�f��+h�	Q���&$���j�=�.`꥛e��ID;�	0�)��`����̷�i�QU��.`��J��V�:_��e��W�>�a�q���v������RQ+;_���v:�{Q@����vp_wrJ�~�T��}5ׯ��].�E��y1o@ۡ������"Ƶt��e��`�n���dE
@J�ߍ�#z�I��?*��.;C��go�M�^-8��w�cWs=�c��w�9&��D�
:nK}��ն��옻_���@���L�gff��e@�>>Zfl\�U԰�P�mG�����52x��c��_�{P�����J���~������9�%�3����<?�8Ƈ�Y���###����]䂌j!x=@^
 >\�b·U��1*�Ŏ%��U�ؐ\�0�
��g>h�4��ٸU��UOB~Y�
_o�FV�{����Ia�
b���q��n��3��Kj�����t��*!���8�9��,B�	������VEΎ-�R�c'��eC�����ܒ�0MN
"L�{��
�V�HNA��"���:�?LMM	Rs�b~��ˡ!�e(����6EEE���e5��#3�1B'�!$�
l_���6hmm�+��d�v�p�'���hhh���z�Ȅ�e��v���9q?&�>Zz����r���2\~��(�{�`4�����zw���Lܾ��0��g����z;���������Wc�3�m�w���HZ���ay�70�0�e��������eݺu�jժe��~����9��^��<����8V��,=?��cE#"CT��	_A|�]w�O��$B�MB2F�!��ZPzn�I�����}�lmz���(�y�(nOKۛ��}�KL�w�f2��1��3�e"�X�bMϗ���W	�N�>DIEND�B`�images/toolbar/icon-32-export.png000064400000002120151163244310012645
0ustar00�PNG


IHDR
@LP��PPLTE������������������������������߭����������Ž�����U�	���M�R�J����O�_�
Y�
���W�	���B����G����\�
F��������������ξޤ��뮰����b����pwuX�#�����Ӿ���������l���������S�!y�+��ea�
�ɇghp�˪q�6u�"R���L����c�-��Œ�����UW\�����UV\e�B���&&(\�\�0���b�&~~~w�'�̉!sx{�����j����Ʌ{�Nn�W�ĕ��~gy_=�����҉��L{}��慔���4@��܌��}tRNS@��f�IDATx^͕E��0@'*��˺�������Z:�m�n�^����l��������oL	�,w��0,�u�`���7��v�-!�Ҵ�.����/�uSA�R���l�z�|�9�
��
x
�����T��b_030��	��b�Pȟ�2�M��8�l�
���kk���cOB~-���W��#�8OJJ��ף�����
n��
:�n��k^��\��*���B|�w�sn!48��Ӎ}���%���F���U*ŏ�����!�A���z��?�Jy��������;�
Iຌ	����+;���X����R��l������	:�Vo�j�|�iuš&����u�m��'�k����������e3�������>�%��d�%F�1�P�}�|�S�B��L�(��0��LI����R7L$�EX{a���
a�i;Ü�q��@'w�dĄ��-r�
g}:0��j��%�@?�c�ڱ�pK�������0���'����
�L0C�ܘ��`ñ�R��W�H
c<,aC�BB0�G��u�بZC�B��
�Ghb	a����L��f:�m�b�z�a��	`�,�)Ɣ�A"шPYX��#�,O�i,�>����1:�Q�u4��̓f��4`	��#IEND�B`�images/toolbar/icon-32-extension.png000064400000004116151163244310013347
0ustar00�PNG


IHDR
@{�u�IDATx��$�����aw��o۶m��m۶m�m#��kgZU�Λ��zۓ�}"zz����soV�|�x�{�t&p!)7
�<����'�C�%��y��ǜP��B�&����=]�t�?i9t/���
��ٜz����,)��*]p�z8P�
-��~���Do�������9���f���>��k=�M�c|�K��I9������n
�
u�0z����bU�C�
P,@ɰ�R^��3.U)�+���@f��Iyͱ	%7(p�b��3,�?�����6��CL�}J1���%(�-|�q+I�z_����	��y��1�!��JE(�T0l���$�`�!(:�y"n6o�o�[�@Q
�1�J�,�������t gI�!�o"h�V
2�*p���}��`D���G�B�dV;��a<�NRȡm(�����~�z+�a|��`�p�u߀�=l6�Y`R@ϥ@>%���Cf�=��>��_~��#��B�h5X�	M�M�B�@
��KS��P�}�~Ǖ4�V��v��=��
��T��i�@����
�tB��Ҝ�!�\M���NpR�l�o���a~x"XYM��"�E�l����x���8ҟcKO����r���-���Ұ)Hm�R��%����b�&8��q��l9���Pg#�X�Ѝ
QN��7a(q��?�u���Q\0c:ž�N�셺`p�(Y<P,J��	]��#�C:����Ԉ��P���8��J舀؛	�lMz�L�)u|�a��z���,4ت@�'r&e��l��js�f6U���	"'gj9�i�3~$�o_}/���"��|Tx�L[(�	D����g0��a��k�|�L56���E+�-��ϳ���{Y�s�~��W�1i�aQ�w��H��[��?,_��?�
��Sc3'zEǍ	�ф���x�(���@[��9b˂]�(7ᮍ�`�ę4���b�'���@e����u������13��wA��}s
g]�^�M��M>���c/��|�#	8�r	k禀
�T@��8���O���۱h)�EU�\�xѩ�?����|��|EC��3�@��6�w�y��;���ݎ��}������??�ގ�?��/L�2�>�L`�@)r{<�7A�}}}�\�����;>�s4��'�p�.���l*�2W�t:M2������D�ZZZ�������v���I�&e�v``�����F.��r2���y۶mc֬YZ�>F��,#G��r�����8DD
~�n_&q�B�@MM
MMMh\hmm�s+���:�y��q�h�R��p9I�.�֯_O>�G_�F���qb�Ԩ
V�G;w�d߾}�3&g#Q��;z�D�$!IlݺU*H�k+m
����B����J-Rm�F)dS@����1�`�����={PZj�ĉ9p��hS
Z���PUUE�%K������'��-�܂��}�Z�4�>e&�R�F@�&ؾ};��w7�|3ښ����(U+�+�}�F�(���>��?��c���G�Tr�����oAB#Ԫ4�
5Tْ>|8N5l
h����Ymm-DUqݺu(
o��6�.S���"bF3G��#����y}}�3w�\*̟?���>�{�{����&�O�u*c�{���ڵkQ�aڴi:�d�q�Ɖ��(�y@L�Ľ���媈�;j�(��cn5a$�<`�@��ZQ���=7VQk�`K�$�@�\�BЁ��h�?�a?�	��(��_�ԩS��7���3gʈV��'Z�V)�"h������S�y�
����o;z#z��'��Ks�p��.�;$��…����M�R���`'�M@�mUpI�D!���
|զ���g;yԾ+�۱^DTD�aJ�����
M�Dm�ވ,�R$�'0ȣ�rr�|�2}��o�����g�v,uuJ�
}S~;V��d)�"d�g��pPxfn��%~�۱���ey;~��_�J���t2IEND�B`�images/toolbar/icon-32-featured.png000064400000004235151163244310013134
0ustar00�PNG


IHDR
@{�u�dIDATx��$M�sg�׶m��=X۶m��Fۣ�m�]h�v�}�ي�������97#����P�{֎b+8<<��������@��r����w������q?���[�p�s����t�r<Fq//{XX�K���RQQ����5*'X���ڔ�ي�[��---K__�dgg�I�.�|��A�)�����
�9��v�J�
Ń-S��~mccCt�INN��.�����ə��Q���;1���m�հ��ש�ⱱ1	0���^�_��o

OINL���bi�����\��sO
�?~,�)�w�DFF���DGFB*a����3R3w��<�a(++kT������恦�'����p:��
x�p�M7��2�m�������J����g�{Gw�����BVVV
��p�*�>�������8�X�0�@m�
s���#�]]�����z����?l�0�����9��<�J��$#-�['�ӆ�9�g
)!��!-��Ԓ��uuv
��'�������Ato���yj�\���dbb�����!�E!����-�33���$��v�d}}]@ww��(A�'�)��b�s�5W�iӽ8������B��"m'^�"9�>)*(�ښ),(���Ta�;��G+�f&�#���K��-�S�S�q�˦�F�(+P��ho>������)��:::�
�<B�f�� �%ni�
��2>sy@���
�mm{7+�myyY�@��3c!Υ;��(/�!��n�{���I
YjJ����J\L�deduJR��j��ŅEimm�_���l͸��Q��W0�8ĩ����$eb��iUB��N����0���+
������#��%59Y��Cp���\�FGN$�wF��;)A�xl��o���{
`��Y&`��Ғ,-.ʢ…�a���		J��K�7��/��A�Fľ��
p^���%��+!����gt�M��/)a�ۋ?6��b���"�O�0ד��pɆcH9�
ˌ
��J␠;��Ny{ڀ̬m	���%���8��,.����N+�!e�G����/+�Mm@��?V����۷u(,�0�siY%����p^N��b�%�L#�s��א7�/��on[���6�����.�wu9:��J8��N�z��~]�,�7�5I�?j��]���m��b��4(,�0
���%[0�A_o�a��'dJ����V	�s![A�Y�P!+B�cq/��QX��a�����ݣ�~HeBE�}gG���5�C��*����S�v&��|1�^^v���}����*�������������'~|�W�L���a@=�p�����?<;b��F��
������y�_SN!��`8`<T��==��k
��=��C~ڏ�����Eey9���j��hHN��S��D���JNVD�
��Ԝ��qʑ�<���%(�z{�q�;��,�sOD�YpO���>V����`�jC`�{NM����9�/AAPɤ�����Ĉ�!��%[SU���qN�����h	
N��P�����nq�j�-.,��HOlȹ�
�H	
z�Xgt+��q�C�R�M�K�DDŽ�͍M��DҤs8�:A!Ĉ���!���c��%f2k�Y�p�k�OP�
2��6!8ݐ
C�+^��AʤD8�p8|��z%�&1�8�[�
ɎPC���
tr2,L�r�w�:AAt���1bAjo�C���������Ҩ�_WW�$�����~�@	
�����,C�g�_ܒ�%�%�NE9�%�Ԟ��gѝ�|��
pIP0Q�j��"!��8�RSSc�<YaY\@
LN^��vEs�QQQ�O(ɚ�IЌjzz:=���
8~��Y.H�,��R__�@~W�+�	
f� ������!'Ƚt�ߙa�
H���*�
$$������d���HPtuugrY�{��a�

��8F����ΥF-��[��G
q�J�
���`'lmi��L6��hKii)m�!B�����Ї>�]=������9>鉖}J`��F�;����LP�8�G;g�IEND�B`�images/toolbar/icon-32-forward.png000064400000002375151163244310013004
0ustar00�PNG


IHDR
@LP���PLTE����������������̥����ޙ������������R�
���ꗳ艪�D�΢N�
�͔��s���l�ݷ�ؕ��Mb�9��S��6�Ϟn���ϭ�YS�
��'e�
J�	��,��<Y�"�Ƅy�T��[��[�ݜ�ă[���?��u��`Z���,N�f�Y�h�1�Y��ŵ�z�ʋ��RP�
��^�x�!G�	X���@��N�
a��ƌ��V��ͦ�l��{��Q�ב_�Y�.�؍��������N���򼔷w��T��P�̃��aS�t���߁�8��q�ռ��k��s�$��>g�@�����rn�<[�,��]�븮�|��j��[��I��:h�
��0��z��H��9���쓾q}�"��P���J��/^�1]���R��8F�
��k�:��ip�@��N��K���œ�?��@��y��8R���E��2��n_�'��v��Ma���~�M�tRNS@��f�IDATx���#A�W��JǶm�m{7��Y�m�֏���`����
�����x�I-��w����E��l[a84ˉ?E[��d3�I�s�ޔ��ly�̱T�����R�kI$����S*#�E+�͹�m�xIJ��K�9��ů��}�V�lY|�w�˸p�S���E*;����n�~�`�G��<ʸ8T��ˣ�y�wa��X���U�8w��Q�T��a�6�*�bޘP��@�h4����(�ݦ�ZEw~����Z���m�	Տ�X,�Q�AǙCv]�º͌��d�����2�3ʇ��v�TB��;���!�-Zsx��#W8�OY��Zq+����a������M��'�P(4b�
L�E��63嬤L�)UqNͬ��ȱ+�F$]�#�a�Q�z�ت7�6Sۍ�@U���O��@�@�Wc{f���%��1g�����̯03�j��^˜�w��
�MKj=K��tw�~�61��vS:L�,�g�d�	ᚫ���W����Q�7�-�@`>7�c|c�+��R�T�*��(�K)z�$m]�Y���p�C@�U(Տ�b
8���̫�,�3�(�W��;p����B
ر�K
�m��G<.X��K�3��_�C�]��6||ز#\�!p��uC��s�$�-������fג	�Q����6�u��}���-�����R.!8�$���<�j�fIEND�B`�images/toolbar/icon-32-help.png000064400000005223151163244310012263
0ustar00�PNG


IHDR @{�u�
ZIDATx��XilT�6	qR��a���@℥-��J��l�!P�����ž�m��[R#*S
��.�%%� �cp�=�سx�fO�w�7�=�
?*e�#=�}�9��sϹo"~���5F��j�&}��l0�-��c<7�'q|{tD"[Y͒Q䨫'��C
�M����3����IQ^��Ž��p�F�c_!�7��袇ңG����,�ZΕ#�́�_�P6o��d��&٧�P]z/���#��cMkޓ��.kT�E���WɒEui���ϽəٗV��t������_��XS�4�
{�8�M�����P}F)�ޟ\Y��C�U��\1�p��"�X:��.R��ї���k�{���d���������0���٘Fb]�a.4���!�B̹���;ɽ�g�����g�`r�B�U㩡��\.�4��L����Xp�
�Śo)���5�v$�o?�s]\�sv,QE��~R�<�[U��v���a`�A@ZЄ6��ӊ��Z�d���rļ���~
��@����At�Oq�O{zKG���G�D�Mrl`���؎R�[��!�.�j���+��M��=t��j�8��Y�g�
r�B?��c�=%#�=5��wzbLw`�Wj���#�哜/��F��b�fCcSʟ�����ɴ��nB,���`I\8,Z�y�8�/����A>L�:y��r��xɨ�.��dQHǨ�������҃��V�"�
�������'��A7o�
��޸Qi`�*=������4�w���v�f�TT�00\�|X�ZX��ڪ�TWW�(}nx��J>,6�A+�--�-��@��s�_)�a�A[��tߦ�����ˢ�c@��|�(�puC[mgb��԰4�_.���Q1�`	X<��X�4�Ǔ��B>
MR>���*D-E;�~��߱h(��{|U�vf<��,����f��'Qq���wu,8�BZ�t�E����Z�.h�:�Ҟ��\	�qs�GA�u�*�}2�����N��YZV^~];�}I%�0��
hAڸ�<��t�hD�+��A�Y�<c
U��|jL&�+�D�1��\h@��%1��Q;�5r|�Mķ2�[��-����EF��sC�$�,8�BCjAo�T���=�Aȕ���vK�*��~{s��w
ha{ù��p�c����+[�g�G*羾���P�U��
�69�l�wťB�Qk�8Դ�)�˜n�>�s�:�n%ECN�m��٦t�v�����9�Ă���s�"�)z�:~��#[$�����X�^����w��u��g�5:,���q������
�֫�%8	ӝ�[,��ys�Uު*�Br�fw���=�jw��XyEE���;X��d{�-
�@;�J
���~��sއ�]��ƘO�+���c���<���w
%Lb�^g{�y�GQNY�{�7�9�g�a.`:���:���Z��_MMM$[|mmm��hL6�L�9	c<��8�?~,[��ݻ����5$��H455��19�l�2c�:�Ǒp�&.\(�.]*���_,_�M�]�~�e,�E�ǰ�,X��k֬yyy���\p�Ӵ��2`��pY#/�\��&+V��֭�ׯ7n�t�-Ylڴ	`%g�ʕX���)�W�Z%�6l�
ŷl�"�n݊}W�7a�,8�B�D�$c���֛7o��۶m;v�W�^���_>0�|��q�,8�j@Kَ�`������˱�x�7۾}�عs�t��~%��s��?hA�X�g��h�"���9�2�9����m.]�����J����bs�
hIMh�>�����֮]��9����x�ٳg�f̘���Ȉ�>}z¬Y��V	�U������4�J�{��)�ܹ#���Ç�XV�<
�
��?5�u:]�̙3���q��	�+%�>ؗ�b��666"����l?��صk��;w�`��8333ؽ{��d�x���
f�Y��<�kiiQ/%�ӧO�t����"/\��*=��X,I*"���V��\�?��'��u��pUz�a�Z�5�ow���������҃�͖���+�����@R+��PW$s�S�2���b޼y�,h�MOO�GG<v�N��>�z5�R���x�V%�`0�}���k�HVVVr��6m�X��M�4Hm���U��N�:%���*yEw��ₓ<u����c�y*0�*eJ5,../^DЮ%�K�,��҄�
�*���?�$.X	0��)�0
\�@ڸ�<�$(5]�]o���K)���������!�����.^�8�!���Ǟ"�a��*灍�x�P/���a9!x�8��*��\��9`�CCja{ùų�^�v@tϞ=*羾�8Vq
�y��VX�իW��Jѳg�¡�:t`����+�󹹹���q�d�2fs"e�9���i|UFb�a�xn�Q/������B�|����8�s
��v���櫙|�Xuu�����\��"��?������s"oC�k��q
��	������q#F����?�_K�t�_�yIEND�B`�images/toolbar/icon-32-html.png000064400000002707151163244310012303
0ustar00�PNG


IHDR
@LP��.PLTE�����������������������������������������������������������������������������������������������������5��>��H��R��V��[��\��_��b��f��i��n��p��q��u��x��{��}�ր�́�ׄ�Յ�׆�و�ω�Ҋ�ҋ�ӌ�Ԍ�Ռ�،�ٍ�Ս�֎�֐�є�ە�ۚ�Л�ѝ�ޞ�����������������޶�߷�߷�ุ�����������������ٻ�ڻ�������꼼��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������$.5tRNS	

::??```aa�������������������������%L"IDATx��5|lU��>w&��ݡC�
�
��
���u�6xO��ww�x2�䞽���%��~�N����DV�?yl;af``��Kp̀�`�8vq9hK��з�mJ"f�0#�:C��@�'�ʥ�Jd
�k!�D���V̏5���Y���|��b����җa�R���$d6咛,o/�4�I��]�H��ퟛ^������|��%SX.���3:n�w^9��{��3�����r���.zdk��V�#��@�����N��~�H'3�Q�<ui,���'<�e���eDi�j�+�a߾�����e�{�����2oS��
�`�E3Z�($�>׀c����$E_{�r
��@)Q.�9L&@�S|�iiA��$7U�,�G`J�0T_(��a�	��к�i�=�!��C`�z�q������`4O
W)�,
��/=[7�����Fc�/+A
�c�h��e�I��:�w$���@7��E^=�ɠ��D���p���@�n����P�x�7��Bu�~�Y�U��L����e`��px�Lw�X�Bgpmy���Œ��q�O��h����]�^܋�{��J��2*���/����Sd�=���4�;-�9��n�»GyIofw��J���vE���ufW�s����|�m��^�/~L_X��zR^&3��x��q�رh�GH1&s�q@B��
P����ޫ�u��#S�mN������
�O��o��e(�^�e�WV����6�P�"�IEND�B`�images/toolbar/icon-32-inbox.png000064400000004635151163244310012460
0ustar00�PNG


IHDR
@{�u�	dIDATx��yPU��/�6D�PE����1qj;�v��?�Il��?�6�dڒ6ͤII4A��h,ƊZ�}Yd�d�}e�e�#3���g��wy�9��3��g�}��������Gu%%%�b�����C(�c�1�iiiTSSC�nݢ7nϝ5�����TPP@���4::Je-}�Z�It������7���oߦ;w����0m��'��z�t�ttS~~>��j��811q�ŋc._�L999���$<���twwSGG�=�����H�_Kq�TYYI�.]�cF��^����			�,�������^����E���@���TVV&�p&!�"U��=��������(<�V�F�<CpUU�𦤤�E���	����t��u�����)F���`eP/�!
7�?55E�����:��:򎬠��>ԁ(ƈ��5�(@���N���q����"�tzzZ�"j�z�ԕTX�+ғ���4���s�8"�
�P633Cw��U��/s�Wxa��t���J��rM�W�FP��1����^QQQ���H���0BK��{�hvv�^̝��C/����a�Y\#�rbbb�����m)��q�1N�H�_��R�����k������
�RcD����`���Lj�x��C����vS�ޠ�G��Y��B�6��I燂�h��F�Qy�T������RC�~��-����.bSs(46�I��ȋ�,���Y}��i*ƍ�^�&dM�ەF���P��I��JE���ѓ�T�I�%�(X��I�FTwd3�8S�A����mT��Jm�����:>�J�A�4����b�3��C
�J��CR�B�Z.��^�R�k1����O��^Ky�i�τ8͎
�ޖ(�Mk*<`OKٿ4ݧ݄��?�P�;�N���I���-�m7#�q:*�1��?J��:�D��$�4�;QO�us�(���Q�Ϫ��|K�z��}�*|�i��O1�S��QR�.=�:P��5s*|ۆ/<�E�[j�w����1*�r����c;�n�+_SF��?:2oL�I{�
Q�Q�‘�6��sƊ}�C[�^�E���
�y8�I���1�%c"l����=It������pG-J�fI͇l�/�J{����[�yߚ�}�w�,�V췢�c�2f�셎��:S�M��L��O����=��i(Ȇ&O�~{��cI퇬��W���y�c��2:?�"��|UB<t�H
�f4lA�'-
��q9jNJ�k��i�Q��Ҿa?#�;fJ��
�h�1�Ѭ�A�s�5�/�j�S�F�H4���(�-)�u�`l5�&�:f�7���+ҙ0/)��o�ؓ/K�/I	�|QR�xQR�|�)QFs��d�zY��������<�<���{'@x\7Ɲy�yre�v=<�¶��[��s�qf�ފL3�L`�XI��׃��
z��0��B�����i	o�8����sg
�-ކq:�k9�x-G�g�{�{+Lp��k9#0����n޼���|��İb��%<�σ8�	����k�@�pV����Y{�7�p�{��B����"�	Gp�r���#�=��0#���Z���H�`xp䒻!���ȱ���
b
�Ct�#`P�Z
0��2(�:!��������A������R�A`/��dG���N�sss�"�tqqQ̡�=�"��#
���rƜ-a�c�B��piiI�r�p�F�`�\M,��՛w(f�g�hx�7$�`�.����@�������B�K9���t�ڵX�%��e���<��B�5������#Ұ�1��(��0+w���Rvvv1��X�2���q�є��ͅrG�.4�����P��Y⧈=�Ő���'aj{D|u�0<F���
��[sx�� ��ի�{bx�{�
�w5p]�p�4��^l�z@�P���b]�ze�i	�9���b��BSD:.\�@\c;W��!��!@�:P�{*�9F8����1�P�����ŋ9]��m�gQ�
4<B�!T6B�QĈ˭]���
0:�N���{peb3�^h���[x'�c��,�0B�5�+��Хe�FX!��U@�����a��g�E�`�B�S�+߰`���`(���=��vzY9�1b�Ր��0^N����
�C������@ga����'��9

�Ѭ�A�sƕC����bP��#�u�`l�l�	����y����2�LBxx��Qk�(�j^��اAd�����y�y���N��0n�;������zxz�m+�b/�=�4�7#�̦���2f0���������Z\s8IEND�B`�images/toolbar/icon-32-info.png000064400000003463151163244310012272
0ustar00�PNG


IHDR
@{�u��IDATx��OTWǏZm�Z;V�J�&M�mZ���?��&M��Iccq�8�
R�Q�D�"��("qeTYƕF6\F-���ܾ�cx3o@��x�O���|�yw1�+嵀�o�sE�==����>~�>��׏5|�/\���8�$L��j^�ɴ��)��iOC����Ş��@y�6���A@�´c>�!���ez9��B��8�?"~���ߔ��K6����I"p����	O���
�9N�9T��"�۵�	p<B�dճc�15��T�y�O���ǰ��VM��Ƙes=��e���-�0�5}E���n�E/`Ks�ٜ͍(w9k��8�{���L�
�5
��sF%�64h*��s6�3�>Ô������4?�)��i�E�=�16����C�d]�P�^`J/瘔Bv:��-���E�L�^Y?s���V_�j2cE-�WI��
��ˋ�zؽkP�U�d�gZyΜ�*�~;��8������,���{3����,.�ߜ���kkv��hv�����Rq��2p���	Oj5.�^��:�,y�1�<�(�>=n����Z��*<�}���F��r�"o�}�*n�
��O�p���2'�������o�
�L�ÓZ%�f-��.J=���'N9c;�[:�bg��,9ɴ�"Km����|�G������c�n\��y��{d=<��2z��(N*�R
N��07�����YL?�B����,9I,G�bh��
-9Ș3-�`V;wd3��E���o�$J>��.���s4JB�`S<���b{�:\�~�M͝��~Y�4��S8%9�&�)a�md���o�(ɗ
A�.$�f�=�mӗ�c�:�ǯ`��d��q뱾��)`A�{l����sм�J�_Ȣ�j;���J��
��N�'`}�ua���(���F�\N��*@�Y��8��D7Ġ
�2<�w<��b�(0�	ƃw�{��4��0����F���Wg��O�?�b��>��6F��Y
&�����K`߀XsԚ]��|l`�H�&�A>5��JO�uv}�A����Wq�^�Q�
}o饝��l`��
��˨��L�㌵`b�F�h�����>^�w�Z�k#��P����Y�Ǐ�57�ļ6ub{��!߸q��_�.�\��`A`�!�N�g{��	�A�w���7o��O���k#��0���#�v��*�ę��:$�J-�܇�W��8�=}�A���!nݺŽ��*�����o߾��E�!����C�u�*wgg'���rGG���w���{��ܹs��cb�X�
H�嵬�_$�;$l�����˪졦WA�"a�!������n6ڥK�d]�"�
+===����MMM
����˺�EºC"'��hhhP��M*"�d�
��<�H>�<����ٻ��G�������:nnn�PSS�---�n�u��t6CNZ]]�>�uSo�3g��z4XwHpB;`3��l��g�
�nE�$��V��hEEE\VV&�!���;$(i6�ӫ�`f�"P��~����Vl����+**ԗ�n2W�JKK�
����C��`%����O�<�����D��O��P��:$�c`$2�(�ĂXvH�jRddd|�'#a��*t
??���&����3g���v�#���[]\\\(s�366��Ia&�5)��/�I���7)�ϭ��ҏIEND�B`�images/toolbar/icon-32-links.png000064400000004744151163244310012462
0ustar00�PNG


IHDR
@{�u�	�IDATx��yL\��o[5v�%�m�%u�,�U�H��ժ��ʩ�4�)�U*YU��imSRl�m�1�`v�Y�a��0�m؊]o��6���<n�_��<g`�0ح�HE��ys�{�y3�Q>V>T�b�jYLU-w���T�?�:���k��.8��/�W���1��v*B�jºX(��������m@����o�T���G	
�3���<ע����ٹn�f~��]P��Z��6�f�j��"T�T�(T�9(�U����QP�����L�
��Kؔ�F�篸rm7o��o>�nj�*��9�Ŀ3:�^f���ud��S`������<���!q��mܺu����;�P�/�5�
(�ˁg���Xf�f�si�����ݲF��߈6�(fggᛠx���u����~e��kS>����_�����u�b�cx6��SS�v���e�VR9�rX��ꛪ��+�2x\��MXZ�ײ�Q+ԑ.��q�‹x&щK�/�ʕ+Pi=�F��ho�dʦʮ�ctd�A�k���G[�NԶ#���h6&�`m�����'x�W[��/�
�7`��Sœ�Y���ލ[������|�wJ)ޣ�ONNbOy#T�ȣu%�o��S�w�ր|�6�<w~ny<6��Y0<<���Z��������R�Y�8�10��T卯Fg��J���m�Q^��A=6챠��Eoii���x���:�:��q�Jw�6��T�3|�^Zƒp��tww���Q����(̮n��Uu���?�Bb҄��lwz�L��!<�`���
��	>�^�~(�NrT<�9��:9z�R�蝕8��52�y�����Ⳛ��?���kq����|��>YY
�����s���ǂ�~l;l��c�nX�oh��<���Z֬ͱ3�����CqRl����3���$
�(ԉo'T�'�����
�}3-�C֬I0�/��#}�*m�N��^��v)8�K��沨x�۱�T�v��J�]�˚5裁Q��3�.Hq���Ap��f`aao$���Rl�C,͝����Zf��۹�32�1O@�xb�
n�U)�u����u�~-S�R�4���ۯ��X�xzO1���E���R#�x�J]�����8���]��������Lȇ��<3�"j����IcR�X|=r�'Y�æR�i�v�`��Lė��wU��	����V��8“T
���{x��Dg�~��3�ԡ�d@�q&�E!���O��~��)�p-3y���-���<�4N�+�Tf#��"rA3�hc`�>⠓���y�s�C�%.�P�D���]i�U|�]%S�"b�h�
ڗ���38B�)c�R���b��Lx�|�l&/��ԋ[�R�z�H�>e\��\R)�N|���y�Im�[��J~@�G^
1�3�1�,�1�A�~B~4��O�M��o
��)y��F^'�X��{�l��A����7��`�$#�S�?8i�y�|�|�|�<�����k�K�su�,�����%.��)R��d��dA^o�d��
������	FGGW!�γ�'���1"L$�*1��Ą�%���]���10���ɵ��uD�^/zzz��ڊ��z��ա���`<C��c�8�5��
�͆���?p��y�mU���~�D��d]�f3������uhoo�l�D�0�;%0ǵX)���nsT�l����N�<�`����������
W��u�J�UĴ�7���ѵa�"�&A�tvv�Re�E&Tѐ�d���H��0�?�B�D�T�G��x�����Ae�nO��ཏ�
�����D�h!+���'(���ڝ5b.dmX������yWW��^����_P���x�N��V�C�/�	��."��ѡ����*4fV~nn.�����f�':�w�r�PRR�4��Č�ˣ�:�](7[d�R�#$������Ȯ�L&y�
�<s]�����j��e�g%�VNlkkCqq�����,����s�r�&*�����+8
��z�&S1k�pU�͔��G֬�d��
���U.H��9c1$�rb"99E���d�b@֬I0~��+=68Q�򨨨��Pw���'ťW��l���&"�/�ڸ?�����r�?P����b���f�N]\
�b�H-Ț�0��U����Œ�L����z�A��.^�tJ����E�^�?�T�ф��;�aѭ�0��J�d@��5�0��]���pW6y�����ň\;X�999(++��O�ǹ�P\v.&�d}�V�-�^٩<r,򕫽�PL�ŀ�������8������T�dԑ�2OD�’%y���3wm��@�H(�91�<&�?��۶m{+))���<�%�Á
"����޴cǎ��P��������ٛ��PIEND�B`�images/toolbar/icon-32-lock.png000064400000001162151163244310012261
0ustar00�PNG


IHDR
@LP��HPLTE������������������������������������Ż��������kkk���������uts{{{fff�~ȴ��tRNS@��f�IDATx^���n�0CK�M��$]�����B�4����<���/��Z�Qm�?2��O
9�-�U�3�*:�!RqE_�,N~;�y��7}��@��L�Ы#e�qi�ƅ�P��-S�9��V)(���#4ħ:/�K�!-f(:����h��KJ.�p��\u���D�K�:88��d0J��\�IZ/�b�${I�AҬ���F������d��d/�kN��y�d]Kü�����t:���ad|��RqْR�'���;A��e;e�%���Р�xX3�by�G�x^`<$�BW��	���:��af��ӓ/
��ڏ�i��0!��Z�����.�qDp�^\x�ko}����゙�4��,|�/q�`�|X$X��/$�^�D�x������Ii�QSu(�ˈ�6�[��R��Z���&h��G�����&��&{�<����ZIEND�B`�images/toolbar/icon-32-menu.png000064400000002102151163244310012270
0ustar00�PNG


IHDR
@LP��)PLTE������������������������������ž������������������ĺ��������������������������ű�����������������������ؙ�������ơ������ÿ��Ƹ����ދ��k�����y�����d����尲�Ro���܅��u����ɓ����Ղ�����Bi���퍪ͨ�������՞�Ǐ��]}����s������������9c���ͦ��`~����Or�Ln�g������Ǿ���u�Ϙ�Θ�ϓ�ԉ�ʝ�����z�����i�Dp>�tRNS@��f�IDATx^ՓŮ�6@=cv�>f��?�����Q;Q�owU�)��h�:qȿş/-77/?���7;�����E[�����v0���wA�M�<���t���O�>(Cl�E��b�^��#)g��0��
�u�3�WH���f<�X3��1q�|������
�0����:�鐬V����{�,KSE4I�ɨ-��W��}[���:=����~����7�����﵅/���x���w��w������>��>�L��})%�&�~�C�
�c�4��YG8��!D��Km��+�5r�+���Ahq�h�
n��r��^j8
��>ʪc�CO��*6�~0O��t�	�
�+Q�q�l�	,��](a*�q,�ɺC�y���$��@�R�ſQ�9GI9��N��zA��y`�w��w���
��[E�R�<��ţe��>n�ʲ��t�,P	�!�����i��1J!�cI��
jC�I���#P�iA%AO`LXRfvB�P��$.��Y�qB-(D[P$i��r���	F�l��l{�2[�g��,�|��M�!���׫&�3c����s�t��!#Q���_?��
�a�^j��RK.�J��M�'4]"���n(���}AYA��k3����J���P���p��)�	X�)o:��ʿ!�%e�H���JKQ�Jɒ�iW
XD(���EB�%H�G��F*i��IEND�B`�images/toolbar/icon-32-messaging.png000064400000004177151163244310013317
0ustar00�PNG


IHDR
@{�u�FIDATx�t$��km��m۶m[�ڌ3�m{&��m�Y?�;S=�3'���%ٚ�ݺU�S]�?��S�i*��k&\�tf&3���b3����&:�)2�)Z�,a�3+��{��l�����Վf�0�?=�|���b61�3I.`63됐��`��ގ�O�$��wG��t)_"2׈_�L���Q񖩫x��U��U#���}��[ϊ�\�r�P&�ď��%	E>[�|�x����g���ă�U�]1$��8�F∎Ğ[#I����a$vh��8�ިL�ь�,f�x��.9�<��,��l�cY4�-���@:������ci�'���m�E���Rّ��|���{�y��
R�*�1j	��[�X�e2��c�P&�Mbg�}�$��9��
9���KX&�\��0	����e�X½���-Ћ�3�H�W�p�F5����~�ؚ��=aA6�ْ�}�{��^J7���:�))��a	D�I*�y�)�s���
W�������~&+1`�g��Z��!��k׾U[[����n������R��Ƞ��_�D�F�*��"�
=v���*z�\K·�f��I��{��
��3�272O���A^SSC������N���t��Y���܆�8��ѰB�:��$��^M$�i�g]V�@Kn	�k�y�����*���#�VK���������eR���@�r{�B�f=>-\�V$�Ì�%Ǭe.g�}衇L����Pjj*%''�
TPP�D(''	�C�-,2��1�mzQ �U
�[;�Qm�$4˧�rB̓��[��+**
F���!����o~�:}�4�8q�>���'�<��nK��{h{I/��RAu=�#�����C��S����0�G�I�8���Puu5zkb�{{{�A�@ȉ[F'O��ע��o=�����������<���R����HE��Ț��덄Cë�JJJr�A���E���d��bf&���_��{��7!�N���ͽ(%���!��b�qo?ygg'm
��K~(�.&&&����o,�J�1����
!CP�gT\\�˳��<""�����ɱz
g�2�1�17�–�Bഴt���5$(�q"�N�"
�̬,��C*?��0g����R�ܑ^��yGG���<�\�O@V�'ݱc�$�:Z���D�I�D���6$��\se�5s2H����xXQ,{��*88ث�]��~`��fr�=�*��ᷱ��Z��(;��AV��J��J�X\�����Ϙ���Ós!44������@A0C"m����ܨz�I�Մ�%�b���a.cn[�dɫ{���DX������0��9h+D#��b.%%%���W���{<��װ�\*��T>
{�ɧ�FEE��~�3��cB��m@!*�1����˻h�]��>���{:�B>�+�3U�ϵr8n`\�p����oE��\�RB�����FEE�����������]nf�ɡ��Lj��X$��\�*�n�c=�s�.BX�ʊ��
Y[�}��7�r�G�R8�G�
�%˳L5$71_y�U�xn�����/�}�}�y�o���D�I�t�ϻ��^FΕ�f)|����B.a\7[�zO仠R
L���+t��MH5�ӆ����)d�$�e����\
�K
�Ѯ�L���N��p����}��58p�_s8����В��5>|xr'^z�Ͼ�ꫣ?���+011Ѽ��[�s���$&�p��{k���Z����/'rqq�ݒF�!GGG|��
�<$c?�x�Wn���A@E��H@��ٙ
sss�g������-_���'������X-QWAI���݀��'y{{��N���Ow��<��4b	�����p��mR��쎎����H
���"//�A~~~Htd���x��=���*^ב��
ľ�����dffvw�J��p[2�@6�B@@��w8!�q8�J(R@��
�>��9���Xb,S���'Ċ���w8!�s8����O�/���z��=�p�����O-�bLwN��	�9�;'t��Н�sBwN��	�9�}N$'
���"(�IEND�B`�images/toolbar/icon-32-messanging.png000064400000004177151163244310013475
0ustar00�PNG


IHDR
@{�u�FIDATx�t$��km��m۶m[�ڌ3�m{&��m�Y?�;S=�3'���%ٚ�ݺU�S]�?��S�i*��k&\�tf&3���b3����&:�)2�)Z�,a�3+��{��l�����Վf�0�?=�|���b61�3I.`63됐��`��ގ�O�$��wG��t)_"2׈_�L���Q񖩫x��U��U#���}��[ϊ�\�r�P&�ď��%	E>[�|�x����g���ă�U�]1$��8�F∎Ğ[#I����a$vh��8�ިL�ь�,f�x��.9�<��,��l�cY4�-���@:������ci�'���m�E���Rّ��|���{�y��
R�*�1j	��[�X�e2��c�P&�Mbg�}�$��9��
9���KX&�\��0	����e�X½���-Ћ�3�H�W�p�F5����~�ؚ��=aA6�ْ�}�{��^J7���:�))��a	D�I*�y�)�s���
W�������~&+1`�g��Z��!��k׾U[[����n������R��Ƞ��_�D�F�*��"�
=v���*z�\K·�f��I��{��
��3�272O���A^SSC������N���t��Y���܆�8��ѰB�:��$��^M$�i�g]V�@Kn	�k�y�����*���#�VK���������eR���@�r{�B�f=>-\�V$�Ì�%Ǭe.g�}衇L����Pjj*%''�
TPP�D(''	�C�-,2��1�mzQ �U
�[;�Qm�$4˧�rB̓��[��+**
F���!����o~�:}�4�8q�>���'�<��nK��{h{I/��RAu=�#�����C��S����0�G�I�8���Puu5zkb�{{{�A�@ȉ[F'O��ע��o=�����������<���R����HE��Ț��덄Cë�JJJr�A���E���d��bf&���_��{��7!�N���ͽ(%���!��b�qo?ygg'm
��K~(�.&&&����o,�J�1����
!CP�gT\\�˳��<""�����ɱz
g�2�1�17�–�Bഴt���5$(�q"�N�"
�̬,��C*?��0g����R�ܑ^��yGG���<�\�O@V�'ݱc�$�:Z���D�I�D���6$��\se�5s2H����xXQ,{��*88ث�]��~`��fr�=�*��ᷱ��Z��(;��AV��J��J�X\�����Ϙ���Ós!44������@A0C"m����ܨz�I�Մ�%�b���a.cn[�dɫ{���DX������0��9h+D#��b.%%%���W���{<��װ�\*��T>
{�ɧ�FEE��~�3��cB��m@!*�1����˻h�]��>���{:�B>�+�3U�ϵr8n`\�p����oE��\�RB�����FEE�����������]nf�ɡ��Lj��X$��\�*�n�c=�s�.BX�ʊ��
Y[�}��7�r�G�R8�G�
�%˳L5$71_y�U�xn�����/�}�}�y�o���D�I�t�ϻ��^FΕ�f)|����B.a\7[�zO仠R
L���+t��MH5�ӆ����)d�$�e����\
�K
�Ѯ�L���N��p����}��58p�_s8����В��5>|xr'^z�Ͼ�ꫣ?���+011Ѽ��[�s���$&�p��{k���Z����/'rqq�ݒF�!GGG|��
�<$c?�x�Wn���A@E��H@��ٙ
sss�g������-_���'������X-QWAI���݀��'y{{��N���Ow��<��4b	�����p��mR��쎎����H
���"//�A~~~Htd���x��=���*^ב��
ľ�����dffvw�J��p[2�@6�B@@��w8!�q8�J(R@��
�>��9���Xb,S���'Ċ���w8!�s8����O�/���z��=�p�����O-�bLwN��	�9�;'t��Н�sBwN��	�9�}N$'
���"(�IEND�B`�images/toolbar/icon-32-module.png000064400000005445151163244310012626
0ustar00�PNG


IHDR @{�u�
�IDATx���R[��~?Ba�N��3m��Ni�܈'�c;66�l��Y��I�@B$@W��I��߆ܦ�$ά��f��sp��L�!���b�����^{��CD�W~Y�-V�h�8$M�v��좡؄�d�&���cuw,���"-fah6��Mm�hl�LM�Ir�xG���
�m4�({V���6���1��v�Z�@W��Q��;T�d'���lN��z����nLt�j
����N]���:�+���6]��$�\i��+״c�+j��C��j��
f2;�
]���wx���'9��i2�=t������}�������{�*շ����\�G��`8A�.������&����|~}�~�����;�mh�HkܷE��,
��t{<��lj��G��vrS�#J�‘q��
��D�V��E��Ҷ�-�����Ԗ\���2��+dάPe"O����/��R2=C�c�"�Q����Z�
�m����2UT#��&9��o*�	.l��&��dK��=�'{&O��U˭�k�E�ϯ�����I}�{Oe(��������@hH�`Vr,X���E2��d�OR�@��S�t�9M��,�V����"�g��b2�s�f��El:A���+182F���y3�yZ\Z�"�����Q<�>��$�4�L��/�Ƣ�4�LQ���Rtj��a����AS�D��B������̌e�:}j�"�6'mmo�VW@a}C�24�%o������)9~��3��18k��5t�v����V���Mz��I��UQm��sh��Џ@>/bSI�����|Қ�.i�^���7��dsuRU(�Ĩ*���y2��4�%��Y�����>{!�5SUO�N_����jP�1j����)fz^R_����߀y��F^��M�ٹy��"K�+�($�.�[
9���Ȗaf���<]�����U�/llP"��<�����)���p�Ug`���Jl��Ml�Z�@�h�̱%�L/3+T�����ӓ��7�B��	�}�.����T�gS?����MS�h�����ǩ���X�Z�
��r}��SS�E_@��z��b�O�t����"n9%���%�n����>2��+����M624��m�LtK��P-S}����Z*�v�U��cC|EE�-�P~�N��B�O��}��#�X�h4�SY��8W����.g.VawEeTRzR���F��|�����7N����������i\T�[�چ&*�)����P���:�I����]�N�������o(26Y�/0���}[�>:C=�K��si*G�!�JS���#1ҟ�Q�/�/%�DS����j����H�1�����Ր�”X��$�Z�\M��@f�ފ�!�DV���:uZ_�;g�
�]7�7A�y�[����c��AK?�ta�6��ь�֨=S���]�\#ei��
�����K�*+��WU�w7>��k'�E��;��jw������7�Px����,�3t�#N��7�K?�����2��onή��<*��<�r1]F������v�C_��n;��r�Xi626FÑQN�


S0��@�z�~����^�x�g�m���70����QUR&&�*�(
�zz<�u���?.�y��䫯��x��i���C���G�ν�
���͋�&�?V�r�������Sx��`w���/������|S��w����׿��������t���)
���"�i�F�&&&4�����
�G����ܻ�R���b(����0)�B,���$e2���!��)�u��=ސ~C�	<4::
��Ǝ��h�*�P��rd
\��	������'w���J���#-�b�X�w�A��<��*��f������2w�ERX���[��#���%,�G���ҟ��չ����ڢ��`���,�j�w�A8XYY����7���.}��'�/�U�O?��=zdb}��g8?9�$��8g{{��<yB���X�G���~̅���M}�{�B)�.4�#��
�H���n���"�]<:l~�;;;�X�`�嫀���CA}�'dY%B�R�SD����=v	�	��
��C'"�3��������S���x���@�pՀ����nu[�z$.
*%
�ᵑ����r��E�#�+�4��h��T�c�!�t
C�lUAՃ���Ռ�
\��c�\�
����+ĽUA9�j����kP�."?/^	9��������Q@a�9x��Wu�'�C8n
�Q_��`����"�J�8\;��g�Ee����PP�_�d��[���r�w��B4�W��
��W@���;�!����r�a����C�^�<���!w���􏠳�S��{���k���1,X�-S�1�b�CP3�
�d�X���P
\��֏D<0_�t
?Gd��8��
���aq��P�~�D?���� ~F9��=
zB
�]����k���H-@���Nj�V����c������S�-�c�1�^�����ԣ��炆9�j�Q�}<Y�(*�Bq�`���m9g��`c�Y,���n;����P[m��G0ϩ��������-������oK�={V��_�?���+|�
`·"�Y+{{{
�}��<���E�q�MX���ńIEND�B`�images/toolbar/icon-32-move.png000064400000001625151163244310012303
0ustar00�PNG


IHDR
@{�u�\IDATx�5p�F�ߓ��`��LU�K��}N�C�2��(e�06����p���of�Y�wt:�BF}�o�~�}+���1@D�?/.5
���ip7uQ����F��}[Naʼ��p>��g�Y���1�J$>3�]is�.E�e\��䗅<���U�d'��j�k=��a�	��@
��p=x��
��wF�����j����f>�b��d��
�K��_ξDz��s�zm��\-���˵v-B1���Gy?��h@�X����
�R(�H^���Xԓ������}�U<OY}�{"~�66R�YK��m�ob���r�N���N��r��}�CR�@�2�݊pn��>�NHF�����U5E��N�
tC�ߗ�^��8k?@]�b����w/��R?�~?���	i���3�T�X�>����d����o�Mj�����J=�>1�Kp��b�
�b�H===��iZ�a$Q����-��󁃃
�m�"���������(�"@�P�󁽽=
���:kB%	��]p��=�U�������M~����g-�̑~=|��
�([Y��L&C��@nC���.���3SD9��@:�&W���m2\�ZZ���h�T*��n83��Ac=@t�/����$ab��	V.Jƺ����q���}�.<�5GG�P.�0�@�
���u>033C��룋�;��> ����󁉉	
�V�nef�N(��Ps>0::JQ�
��|�r�?����>���|��Sz�2F�I��IEND�B`�images/toolbar/icon-32-new-privatemessage.png000064400000004456151163244310015150
0ustar00�PNG


IHDR
@{�u��IDATx��YiP���Ġ;Z`��G�F5�!��+U��R�h7.BEe���]qD�7ȡ����<�sTfwm�y�.��j)	��UO�t�<�{|_��
�{�cq�cL`���)�`��>b|˜�0e��1������e�ʕJGG��|n�0.�/�{�Q0�3,�6˖-sݲeK���_-��庶�6z��5�zz��yyy@�i�U9�1�aƘ����r�%K����T�������֛7o�"�����۷o�͛7
I_�|I/^����V�~����`��.�
����.;;;�������*&z���LO�<������jll$�:u�
p���dӦMG����5�����.�$"���!


���B��W�vECJmmm��:)�Hށc����=z$������f�|��A�>&�@�t:��SF�����s�6�!��B҅lA4$yii)�8���p�B�i�X��Ԅ��
��7n�;���W�^E)%������n�+�9�*B�$�n݂|I�1<%������޽K̹��$�<99�AJ{!�AL���jD����e�����!ɟ={FO�>��˗���$&�������I�_������˗EB��ҥKb��ܹC�o�E"�
K�v��)�	��ҍ�	�7����q�{��y-�g�Х�jJ�׊�4�m���v1�G��̈́	x`���t"��#��
��,[�]vUi+��:���[@�B
I��
Q�t*�2]�Vӽ{�(==}�L�r�
�'��:1���#3+�CQ���PCF�7H�m)�_%E����d�F���_\F꬜7x&�fB~~�?�H$@}}=�I����&��?�kiN���т��-�y��4?\C���dr,�,�������b&�`�R�?~L�
b4U1�eM�,<���+�8�����7'��cu;}���Ɵo'E�M���&�i4��ir
N!~G���SOO�l&E���H��s���q���e�̸
�YF�b��
�)	Y$�>!!����fR�U��oM�8M[���MmV�����7n�fb4	�e$��D
`}@�v�h�H�DB�h�$d�H��#N����DB�-2���~���J��v����+Q��t��5�T2"�@�:ġ���r~W
����ζ���\2J�G™v�c!���ՓXK>�4�'��=O�����������r�
ݿD�v�浸k�Z����NLLluww��رC�t�R7ccc'G�Ê�����Z�I��MB�u��H8ZDR���y2b3���2d�i@@@>DpC�"##��ߟ�aÆhd�w��˘���P0��Y'�̔��cy
�#��k$Ց�,#�;�<R�����i��i��_����c��������(�����i��gYDj{&EUv��
Y�吉����3i���fy��^�&�w:M�WrǼ��n�o��1��FV�DT~oQE/��E���}yE<�O���ͷp汿b��θ/\�͵إ�:M�S6S��jQGF!�4ɷX?�;���HN�gs�m���6�[3iπ}�{gO�Ͽt�k7U�o�K-�����gR����8���s�c�L��������z��H���;�
��X�b�oە۶m]`���������`�ï��~�o���ŋ7�]�֝MUtt��_�G�X�j�.'''����L޴T1ш��g���ٳ�h^^^=?�G�ؾ}��X�f�X����g,�����?�z��?PXX�~�������@AA���Μ93����͛������8x��`�pD��i����jkk�����{
�		��x`��?r��N�SVV\1�{II	��Bp}�4
65�͗ ��
K��bWb��
�X����@��_�x���ddd��;wn���J��F��d����
�����-E.#���J��iiit��I=?���ݻ��
z�L��b����=����'���p�����5�ԄҌ��Z��'$$��?��S�N����j8�Z�n���������a&�A��45�R��qqq�������g��XaT�hd��'N����TJ�\�����s}LLLBXX����Y]vAj�ԣ��L�������0����g1
��2��ٍ
44t�R����+c�V�2P=�w�g�#̆��������g�P<�)eQ_'%%Ű��������_J���L#IEND�B`�images/toolbar/icon-32-new-style.png000064400000004667151163244310013275
0ustar00�PNG


IHDR
@{�u�	~IDATx��kpT���OL��]GE�qm��~hSն2ОN�m�2�S�ں3��Zu���
�A-(�[IXC �+w����l.K
�\6لM��\N�Mvs#�>�'��=�P����&��y��{{�s��O�*`�0�O�~f4²�2�K
����
��N;��v��*��|�=V����Sq~��������|�Y�.�T�+"`��2'���܃�3~i�gq*g�Y���q8��0���lI@��ߠ����v�K��]���wTb�kR�o��m�����_�P��+��߆ƦO�->�E_�<�.�>�����֓v��'�.���
��
�ro�Bۻ�#XSM�[�h��>z�'�i�>���Je�.��/��6���h��%��(u܇2���4/��j6?�<o!���?s&m�DWތ��	�1����Dd��7�����p`��A���;Q��b������A4�K�N�%]�&�{�J���rt-Q09�]�CSǐ#����9����z
��6�W�"�F�%�m)���*^�`⛦����?W8�ۆ�w�Ә����"�Wqʗ�A���:^Wv��
uQ�I���i��
�Z,�S�H�6}t�o^g��B����\.���!%��=V�n�~�r�����^Q��s/˨�}
�?B0퇨_p=햔��U=m�]O��p��	�5a����̵/³l�����T��Z�)[�\�<G!���hqވP�B�q�ߜ���l�4Us��^��qƟ�t:���Ȯ�a��]�?����Q�a�K�'�S��5�à���r���mm&��G>��7؁=�:�K]l&�ǰ)E%	h{U!�l8��F��`pr��C��W���n�����@�\��:޳:�FMD��*
��Mf/ra�Ӗ�r;ry0e�?�R�����7R���9��u'��Q5V���_�ӡv�ҽ�X��_wV��,��TBh�B<�����u%x�<�8�/���J��2	f߅�W�c�d�`K'�8������C��^F��Q'Gr�B<�O�0~�ڋ��Y	��C���<<�U��6����M����u������CF�_���IR�����o��X�r��v(�&�_�;�����
��D�L�%�+ۉ畳�y��K��K���u�
�[�ac���T�4g��Ĺndy��VT�+;���{c/�{,X��-7Y%OV�d��Gf�e�Z|mf����{��pì����6<���;*�
�G�Q���Mko�p6}���78k�ꜵ�uΦ�&O(��	V����[��ۊ�X?RPXv����{�|{����Ol<�s�oGg8����%	8���D<z{;B���֡��U�jTVV����B���d~�5ؑS��*?��ը�	@���V��]�%�
[���ӫqV�]]Z{g�&�#����;����v�}ֻ�����u9�;:�NyN�Z���#��o���oë�
�?���:*6A#,�v�d�.8�P�A�`����T���sp��A{��Ç��K~�1�����_Ż�WVV�������'O&�>}�-�!"��{��E0��!�p��)�	b*��!.y�vYJJJ8@����F
q���|444@.�;w��xP�P�.�>��'N�ā[4�#77�eqf8�ummm5mV�3��_��|>����ѣ8v��G����8c`�E0m��?��)@F��"����{�n�ܹ�
;;�b;1Fw��Y��g���`�DK2b��={�0�0���fsIZ[[���B�X�-b;�߿�"�طo��l�����ncI��h<�0�]@\k.���Y�=.t�M;00��O��h��	�"8+V�\q��4&���4��mT�?��,��#�xD�A9+1�[\�M������bhg�Hخ��_<�i�@�ؔ�b�5uIӏ�z%����9J�Y��X�H`
�floog��1�	1�J�c(#I�k8
bar"999���uI׭�~�܈�
===,�FQ����Ly@����\c53#���S�6
`��D!�FY6l������Y
�	��H�
���aV� 
0��|?2h\B����"F`�������[�0(���p8��}���L�&�L��F�i��F�{�K��H���z	b��	N�.@�8��8j��F�1�1V�i��Ȕn!�Yk��$�]@L�B���$��f~|7H�+����{5Q�Ol�$��gºG��#g��]����2�>b�p�rB6J��v����wD��n	b��0��W�%��WWWgP__O�G�̎��%�
�(��b�0��E9�&J�)�l0��	�8.�פl��?��nx��P��\G����IEND�B`�images/toolbar/icon-32-new.png000064400000003402151163244310012121
0ustar00�PNG


IHDR
@{�u��IDATx��kle�hE�����K�n�Q��`䟷?��&�S$ԤF�Ul�ʭ\�X�Z�-Ћ���Wh)]Z)�-�V��YZ���{&؝�v�S�8ɓ9s�s��7_g���_y(�o��>�EjI;iӸD�5�yyP�&�(ہ��wP���B@��@լn�{�w�l'��/�PARQ2���y	P�E�C�%.�Bq�m�Ր��(P,$3<�|8��\b'�i�\-.�'����yϜ�|e=ʦ�AI<��c�_V��k+��+�s�pr���'e��?I^훀�]8&�Q4��U{˖!�\v��J�c�������U��7�
�}�D&T�F�]p���P@�P7��d���?���?΃�H��'
8���`\�CP0Q�E$�P������M2II'6��*t�k��Z~�V�>�G��/6��:��U���Vj��ڄ���m&��qv���j����z
Аω��ׄdEٱm�3
���@e�����`������~���񰱀�v�4�0e
`���5���
c6��@�9”�۵}��+��pV`�r�@%����%��l�r��5"�<n�s\�4��[���+c�������>�-�U6i"֑��jޒU�s5����7J�FZ�sT�dc�$؞��=�]������D���X�z�9�p?D�~0I!$�x��w�NFHQ"�a���=2�/�#X�X�����C\��c�2	�&�a�h�$�|Cr���@I����\�O��W$"|�
���MH��@V����d��ll�;kꍈ�,¶���=��#��l���6����dr��	y��nlv��
�\�8NB1k-���9.p�Ğf�
2�~�D�O�:�[g5#��d,�s���H�^ú�N3�F^�[1mD�aSG)Q>P�^�TY~s�b�R�&U��/�C�˔��?V}>Oy������#d
��D�G���Jf�9!�1��;�L
2����5��'b�6�,Vml���>CF���j1�
�߆��ҎЄ��a!��09j�?�D�&H"��0X�A���<`J@�7��IR��AH
n�o2�~�;̙����κ���v���Ԅ��F��X/�`R@�{�^\�|N��ϟGss3jjj$���b�$���x<�8qzcL�$'.b	[��M����
G����1��İtvv&����Q^^�1&c����ܺu�N
ܼy���hii�իW�r��p8�7�dLr$Wj�Vz�
hoowܸqgΜAee%JKKQRR���"@o�1ɑ\��Z�^�,1
E���
�5�J��O��YFA���*�k�����a(��ŋ����%���UUU����y�	�N�Bqq1�k������9	Ξ=��G����P�d���طo��޴��H��H�ڃ��I0�eO!���Q[[�>�?�n���l�1�ɕ��z,����=�}r8&9�a�Q|��I�.kH�p������G����={�@o999"@rB���c��&�s��1y��f������'�Nn���XL��i�?|�ʳ_&ė�����X��N�󉋠���&%��#Errr,dV�>7M�?�ܬ����)L
�H�t��w222�r�-\�jކ����̙3���&<������@_��)�+[�
���IEND�B`�images/toolbar/icon-32-notice.png000064400000003535151163244310012620
0ustar00�PNG


IHDR
@{�u�$IDATx��]L[��06�P�4ه�I��u��nc���]LH�v���ٴu��U��7[[�ҚhmU�5iZ�$&!��!K�BLB��0�jc�@8u��������c�T��#�t�����}��_(��WaL�"(ĸ�AHF�"rW%$��H�0���	F�pF�l���&J���1�[؁H�…q
�Q�
y�e7��&���ڵ��.�����nE�C��=L6
>P���]�M�>�1$��]�O�pcd�'�Q
����ZX��f�Nxl�#�#�0˱<��\��?�&�+G��)|Š�[e�I0�"5���y��a��
�-?ߞ@���E����dB�L����;mN.K�m`;�@#��k�	��\��x����$B~�N������H:�<W$�\�
���OЖ������|vY_�P�mr��s��R�+���դ#���>��~��{JހVp9o��ϛ\�Q\�_��X9'�;Q���"�R�F�Ͷ(�Ϛ�GbF�S`�
Ar�׉ٓjޘ�	���$F���q.L��&���3������
r���D8�B�-����d���:�E�g��{G࿰�q��P��|`���l.P#m8���j�˜�c'�1��73��-g��<��:��Ra*�
��ֶ���[ϪK0Y)�v
�
��	6ʪm��H^��c.pB~��;঵Kt�U	���3�_w!p�	�>�;*i˳=��5v~���\R���P[���q��w9�v�1nD�J>�*r��Ο�ϲ~��'p�؏jԆ�ip��+W���?
_R�G��)v�g篐���5N��Z�\��{M0ҤyQ��s���X�*�znoDo�sp�P�ಪ
��-�ڇ�|Z�Bwj�UP�s�8��ߒo?�;a���
����*ņ��޲"���/[0���a+Nj�<;/]ǻ�Q�Wɗ�Ki�<N���w���$B��p�?E�=�c���~����
q�uy�ߊy�B
I�S_��[�$?�{Y��|H<��ҟ���*��.mK���/�s{F���d'��|13+�K�E�&�'e�Gd�J�L+��&���\
����&I�@��)�i��)he�$_�FѢ�F^����X�ݚ��$�h��c�D;�{�Z;Vs}��@�6�6R�a#����#�G9	8��D��$e���c�ӵ�5,,,
bhh~���������؀^��a؉I����@
���l���*�H$�Q��؉)�\��̌��lx�Xi‘��i"
ajj
���ߏh4
�(ߖ����� �Dj�ayy�"Ğ�'Z�
����	twwcuuU)c�3+6�
0bnnH���%�|>%��HV\N#�
tʜ�q㆒7��T�39J`�:Ѯ]������͛7��1P���~߾}���ޮN�,�:M���a����l���U��,�zM�+3�[�:�q��EܺuY�u�
(
�166�NDN>u_���3��AA&8��}ohh���%���S����Jԫokk�իW����K��P�f�MFGG���p+��6�K�.)�Lx�ފ�������ß���J>�Yp��#Q�T(��	�|`ވ�m?���q������FuصP�ZZZ�|:|Ğ�7A2|�[qSSjjjPWW���)�T|�n�Bb*QN"ۤR׹���G�����p����2븳��C��/S?R�(��Hq�߹�����>���S�����g�Ha
��|��v|�)l�����/�E��4��IEND�B`�images/toolbar/icon-32-preview.png000064400000002070151163244310013011
0ustar00�PNG


IHDR
@{�u��IDATx���x����}k�l۶m۶dz78۶m�|�z�޺I�^ߙt��%�a��6΋���ߣ8?��U�`:�4`�O��Z�0�c8:ۤhbt�3/�u��νO%x@ӤB��Pe��%��9�9�#/��vʌW��0��Vn��~IE+!m�[�U#X�,�1����x�{�Wl���ym�W@ѝOE�F}��+–�0�JSc�|��V�$~�1��ZS@R��q7�׶�.�����\���>
t�8�\��g����'��laJ	|:"��܌�d2���)ν�3V���t�P(���S�U�߁l6��i466��4�Ϊ���Ӄ�ʣ�'TU�g\6�?g@~�J<g!�lx�s��+�b�΀TK���%:#���M���Իh�7�"�2C�1�"�b���
��S���IV��m���c�;\��
�L����u�pĚǺ2�k��Iܽ�#,���Q�����ժVGؾu'�f�_B?-~���~Wl~kT��Pt�E�(7��i�]�'̨����m
��1�ʍ�f4eʔ)���;R�du@\�}���o����.��#�
:::�)
[�uA�WF�	&�`B!Q��kN=��=O9��JJJ�G?�0���ȹ���z�)����w��B��z��'�Y��444�/L�xkk+�A�UVY����ƭ�D"Cn�|
�d�`0Hoo/UUUʈ�VHn�営�w޹ 
�w�q�c�=�W�D��+��~266Fii)�O�`}�����wϚ5��~���7�x��R����Q_��E�1c��x
���ٖ������
�4��*$2��Ë��L�>]��8�������ku�H$��b��믿fdd��5
j���OQ�������W�����X��+�m��p�H1Ξ=��5�hVZi%)Hц^~	k��6�m����WH�0.�$d�W^�O��
��UHt]7�
wvv�7�a��o����
7ܰ

I{{�?G!�PH~�����IEND�B`�images/toolbar/icon-32-print.png000064400000005132151163244310012466
0ustar00�PNG


IHDR @{�u�
!IDATx�W�,Y�=�y���z�g�olOh���
�m�ֶ78�m��vw�Jɻ߉�S�3]k��Efg��|Ⱥ8�4��������t��؇��7@�.
mٰ�J�?������<�0���8����op���O�Z�����6l݊M;vC��Z4��<��1>:�'�Q�@g[�MdAm�y����%�R��TA/,m'x�	�ٰa�;nCD6B݄P�B������ʆm�H��Pʁa��6��q��M[w`vz�u'J~�t`fn�02��u�hll0,
�5Y�nh�g1�D�jlr
�008Zh�S��Pl;�x��S�‬�cSY�������ց�k��d��^�J&j���8|?a��U9�6�g*U�����'�(���n��֞�R���*���������ߘH&��47տ�l���f��Π��
	l�
k�W:�ԥ��N	c.V����m�{��d����ǽ$��>H�@����n�u����va*�@$Z�3�����Q�ASC�0,��Eô\6m�Ғ�����(^|�e�ݻ�ٻ�tfYk:��(O����p*#��O��۲eÅ�dB�(U*G��w푪�N#;1^��P_�^@���J$�e�&$��ٱ��7d
���g�
]�2���"�N�kk�����5��ڈ��چLCh��i;�$�"+��M��H�A�X)ZG�,�Dҽt@n$R넺tb��t�aک������5��m�R��8��m�1���Xnm��y
yA�m*�^����p)Q�F
t#�`-@&�/W1gJ�L,�`��h�d�b�8��"L��
Pr訛�T��Ł����c�a��)�^'�e?H���&}����"�X�zY0Ј�K[�0%���M‍?�7D�b�8¥�@�Rv�h�m;�׆���"�\w��H�P,��
��`����5�W��[�z�2(�9���n"�(�>,	�S�/z`*�P��D
�
�x��'��������Zq@<�9�%Jf�ժ\��@)W�05�M��v����?�Q�.l��k���,v\(W�Pr#��[�d�W`#�N�z��3�yIAI��<N@2E3�e�LU,{{ݱ�Å\���<�l%Q��%	6)*
B��B�.Ia|繯��6|���,t"՘���^����.�Ea�{0>oa��)cYƆ��,�+_��-�A�d�������$�M&��7�?p��۷o�x��*Q%1��/�!�B�u���/��[!��k�?�<#9��2)�����>�ͫ5���@?���ށt2����D%d�q�Y��E>�CXw�}n��N[�ṫWt���#�<[�
:�sa��-�;�Wn@��q�K6~���
mlY��u�0�-���ᩡz��'�t�̱G=������-cW[���j<6>�7Y_���1�7�	�[�N$�*tuuf�?o�8�c�a!\+D
��1UB3)u�B���Ô��C4��o}�ס"%�I%�!ȋ��z�WĦtw/G���OB���EB1���)ǫ�\�zIWq���)��M(��Df���>�z|+�dE܊�*q*����{MY`(���"A��U�#�@AP��N���A:���8㌶T*u��a�t��k��<�*�y��P���C�D��2Tnhooe)�r9

�w���
�w/�@EK9`��/�b௦L&����d����k���R�T��z�����>������s.����yM�t
Y9�,�e��E2�ZP�|�077W�t�b*_
d�i�n)���s�B455Y�d�N�э���L�/���0%����{���}����yWW��N���F��x)����)M�LU6�5)X�	>#c�Bd�����{D_I�<&�.ihhx�x�r�JC�+�uyy�,��`�J��Ge
��^4�Y����bŊt]]]Z8�"iy�x.s�����v!�l"�"
YbA�Rc�8Q�%E�L)����CϞ��-υf*_'~���"�lmm5�]�
�>�b:�'�b�|<�T�	�p��f!�#ܰH�K=7Ӑb
�0[>�W���B��P�1,�B�	0�p?�1Lљefsa7
y]��P7u���P�@`F����gƫ��?���̻1�wUY�@�%��?fzR7�qzz�fA��@d��1�|nR�g;`�������e��\d�T��C�W�Y�<x�ad��G����b:��\�I�
�[����*6W�W3!Q]Kt\�1H�dӤ�.��੧��K�ݻ�:2��F�1j���3�a||2���x�������Ų���[n�R:�1�q�FLNN�111�hh�k�+����89���sb�ϼ�q����yOODlYp�T�:�8��Tgg�N�*�9~`022Bj!�4G9�R
��{Æ
��U��F�0�%
-*��eM�x~�����/^�x�~������M��F5���e��<3y���g?[�x.�k�I�x�G�F�����}��0���φK��[��&ja�IEND�B`�images/toolbar/icon-32-publish.png000064400000003502151163244310012777
0ustar00�PNG


IHDR
@{�u�	IDATx��kP�U�x��$��ewYHEPA�E�BM\��2���&k��6�G���T�ePy�R��HV��/�rK@�;�(^P�p�鿇�f{��wY�3�g~s���y��yλ˰�Q=Vb�9�ռ��4i�^S�4ݠ�c�t��	V�قuϱ*��-^�
��ߊny�޲�5���ג��mkhޅ��M�{`�
$�����/\��"�6u��3�����n^LʚH�UG������Uw~5����rV�^�}��~H�:�aYς�x�UE����"�cJbG@��u��?�U��s<�1/%V،�k�3P��>�Zw/��E��ช��td��"��m2R��qB+ciN��j�q/�x���馅���(�|��਒��,�ŅZW�	���1A�QZk5n��@ϊ�P�&N+	?��O�N�?���{SP\`"&�<���BK_���S-���#j��
;��s2�0�Y��Zwj=y���˄�<�-~���c�5S�Q��A���y��@���Q|J�O#fP�A���s<��
��(�&�<��TҪ��7b��<
����0�/n�P@7
NHW�.w�r�>�}��m"�!�t�
vP�s�Q����X,n p�b�
	��ȝtY��0��8�<�#3���H��or����\�p+�2=�ή
�~�@:��$�rf�`�7�_q���7
�.b
~��x������0O7����}���d;D�a`��r�3#�']݀���
�"��f�c�o*b)rG�cK>9S���������C�����T���7�ЂA��'���.�?��Rb_;�|��?�u���OMXfMHn�|��S�]���S�G
L�!�;����#($c~/�-��I�#$y3��ma1C�َn�3����G��֮%#W�����h��b/�b�tkb�v'�$���qҔ��~�"�����{�钇��Jp����o܌5,���R�L'鞐!v��bo��Ő�yl��AU�L3�}���"�g_I?���͟w@wq��[K��gga�k�Q���gS"��i
�R�lDꂱ�	�D9֟�?i���&��4E�`��J0?�>��d��#�=9�}�D���4�A(�
"�����ϴ���@���̖$��\[�(Z۳96"�`��X[7���0��Z�͘��
?0	<m}����<^��ļ`���>�	�|S�ը�%�,`B�@�>���\F0e$
��{'X���M$Ѓ���������d�X����Ʌ�5��8/v��U��>�u��5�}��;K�U�9�޹s�:::h``���r�
uww�g�X��<6�$@v�-�t��v�˗/�͛7�z��٣�}}}	�����XϚ�\\�?��w��xZ<2��,@�z��|/^�H�э7xr���9Zk;�n�7�B>5`uo����'jkk���f���%wjjj�s��Q{{;?2�"�Xw����q#555�N


�����#��0���@Ԁ�l�pE��k�]QYYI�TWWG�ϟ'79ď	L��q��Yr#ޡ��F���_�H������NUUUT__�׺@��m�rFYY����a�w�E|��SUWW	����3g�PAA�����b2�L|�<���BS���$�����&�'�F8�@�	�7��xQ<������xѾ())i+\TTtX���?�)6n�Vjj�V��h4�����X������%�?R<V?R��N�@ON�IEND�B`�images/toolbar/icon-32-purge.png000064400000002462151163244310012457
0ustar00�PNG


IHDR
@{�u��IDATx����oUp���4���/\造
*U��-�B@+����V���J�&�3���`i�&!�8�B�.�3���O��}�5���f�	�O���[~�=����[�yi��f	����X�f����]P�����
��K������t�z&�L^Ic����~����0��)��	%�=�/�>����KA:3آ���N_�s{:�	E��7��{������H鉀�5��i>@��D������μ���<�a.���B�Q�=�(�Pw~/K�1��؇"`���ƃ�S�����gH���tj<@lܑ;��}���6=(����r!z,X��>L�i�M
����Ԏ�>�㴰�wt5�:�wuՉ��U�S�2@���Ya�FC��!zkT�3[GU�)k~(b���CX�ё��{�I�k�1�q�j��F��K�B��q!rGP�+�a幡�/{��X���
�5�j����ёp�O�C��ɋQV��o1"J�c?;���!�#�Qz=�]}�L�j�N�'��[|��٬�+@B�
�Y/<��Q���n�2M�*��`T�b�ENzh��IQ?�
v�<��l��]��@V	x!v%���)��8�
���#a���;�祅�cY
�(�=��q���<�����Ԧ�x���M�?&{*@���/ċ@vx��7ږ߆��1S��NҾZڣ}q�@_�x�/A��k����#�$L
��~Md|;њ�I�c��Qr�T~���t�}�ǿ��ia��7a�œ��6�a}G7�
p���]|�d�s��>�Ǎ��
<H�;�N�����o�ne�����]���������e�]g�
��{���m;mmmM�$�A�4>V�Y���U	�@��봱�q6�u{�
�8	
H֚<���8�ZbLP�XYY!����*0�>��q�k�0�w���4S,}M�{^�ĥq�Mr	��$$A�4��u��������P�+�e��---�l�T!��@�����EBN����]�R�A�%�zeaa�З�.�Ӏ�ao������7��H����/�]�`iN�����
�	d�ɺ��-��Rn�
�k~0�^'�����@Vfw0��XŲ_�$K���=@@�w2+�%�RKl��u�N�T���E
;$d���e(�%a�Nj{>�@�\D�|`ffF�a�EH���������jP>P>�k�#�*��T�XIEND�B`�images/toolbar/icon-32-read-privatemessage.png000064400000005756151163244310015276
0ustar00�PNG


IHDR
@{�u��IDATx�Y�dɶ�ɲ����6��m۶m[�g�m�3mWg]V�xg��Q��]Yx����ދ�����OʼnHL���9����	Ji�$�IP|�G\�677lj�?�|�{�yk�=�<)!X������'9,9��ξ�+�:uj
4-����?���F�{����_�#pB��?"�UPq�e��x��_ZQQ�x<��.�uuu�+V|��/�r�֭v�e�[�L���GO9唣���1����ׇ��}��o>���袌��xNe[�lٯ=��]����6�χ��Ǜo��K��	ABzBm?s�ܹ�����x�5�e<�1�����t�W^z]4z��d�S�LY���O�i�w.S�%r"D��b��5B�8L�0li�6m�6	bZH��I''��Y�r�"�#p�Cp	!I�ј�Fa1aX̦�>̬,DfF:B�ę/s<y�
�q�cD틫��R�;&������/$��`b�a^�j1��g6"�q`F��c��I�&H�Pp�G�<OKm�w��،�"��b1�?���{�X��/Cjj*ɇ!yd&�'��y���b#6������h��(��H�j��S��NL�.猇�c�x
ON&��/����n������B̒���*V��>�8z0�V
�Q���H���fNNNQ2"CCC���:233���,,��;{�:�ߠT�#6k�
�C�t�^/z@8���!
����D�����u�IeGv��;����G�;J]������C�Ȁq�V	�1������5���e������GC]=^������x�E4z���l\ͤ�°Lb�Wg�q�Q�AU��3�x%��i���_؇i��p8X�i�ḿ��CwZ�PDB�Y�|��^|���߸@�
���o������˵�c��
1����t:��s{'^we�Ӕ��Xe�A���-AWČ`؏�3��S���1y$>�$m�4K�ڶm�2�W�f1�Պ�^'>ms��T�\!�Am%�h/����bx�(�a�F�1c���n���ڕ����y��\�F�=��3%9�C	�gӦM��6���rl�쀽b\��@��8�:�%1MsmC�ϋlwo��kh�$�H�Rt�.^��L�l��\۴����m�l��f�;��D�@hA��F�H���cD��������-UBdv��չ�T����/--e�f��|&a�y��p�+��3��eTAP!����d�k4�q
�9(!@�…͜9s4mpplyyyjƼ���/�۰>���%
)B4dL��>(�@�(�qPS���lyq�q�
��`GGG;U�'9---��T�Nz
�d"=�À�۹;�O�'b�Q�B��CȌyQ�jEW����(,�.�
4jL��%�����s��p�}L0���EU�#ޞ�x��Ӊ\�C�
R�}ȍ�`���[�`����=���;���{����S�R����SPB�?'2�޺�B['�i-4b�o!c�đ���.��_3��vmf��YЧ�j��z�Y��z"^r~����Y��G�%!�����YjPG�U��7t���<c_���p��
v���k?���_���|���R8��v�ڸ��/�R�6-^��Gـ�q�'޲�n��`G��$A�
K`M�r�U�>~O�nG^_��g��˖�)�t��{?��-<����@9��/�J����0�F&���?����~�>�%�������P����/�&����h�tA~‘�B��#
��2�D�rd�t��E��(,,d
���nii�����O�Vp���?S�Hr:�]w�W��ʎ�n�R-��V�xKrȳz�D���P���Ͽc���dee
��ڦ�m�#n���?#�'L�D�V,��}��g�9s��p�M'�J�������W6n�v"�)�DHTv�aϋ��q�<�X°V��]�r��_&	�%@zQQѼ=���Ś��
��#�	زe�[_����dr2O6�o����M����V�\5Y���?�.]�t6�Z�5bo(Ȗr�D	�gD
	�R+�`�$$e�L��P{A
�
���Ev���yC+@���	���y��ͤ"�C���*�$
��xU��{6$Wc�6.Lz�g̘q��Y�.䇌m5c-!S���&!wNL[?J�M�)�~�"&�`c��>5Er%�Ɨ�����Q�	�P��j��q�i���bE��Q�%OL��0
�R�y��{����S��l��cp�J���<��o
P����D�R���^QvK��ЂV��s��ݍ
6@�wѨ��g��G&%���jB��9�g��0��N{U��	�Y	K����Z&9I��WPc1�^�3�t"f�@TԪ݌*�磻�p�����$�o�Zm�f�=���s�c�8�����Q
�4&[l�(�R��
���ژ��w�_h�H�RX�1M�|��f�]���!Q�̸��+7�g�f�
��+���H�Ӛ�B�7��&`PֆCl$yL��z�6SW��"��L�A��zr���W��~��ٳ��U�v�c��1��4�M:3�1��^���2�>h6~q�5z?�]�1���
���4���t@�����Ot	�M��s�j�Θ�׫�l���"����=8!wH4�W	��6)"�ӻ�뉵��N���U$�ə�W��K���@j�Od�˗���{j�����-�P��8c%�:;���?Я�@��Yx$�g&;�`SՎ����$:$�}�<����/u���,$�{?�����Q��Y��	�@��ׄ���䋒�P���D��Hd��g����"��Q�'B\�79�X��ND;ӥJ�]ˑ|����z��\Bs�
������)��>2ks"/D���o'��h����3���IwJ���$a�V#���]�xIEND�B`�images/toolbar/icon-32-refresh.png000064400000003752151163244310012776
0ustar00�PNG


IHDR
@{�u��IDATx���\���ޝ��[O֎m۶�l�۶���6�m=Ķ��~�N�nݙ�;�|VW��O��}���S��4'���sV��8�($!�ӂ�	�f�b�;�lݓ]jb����xb���.�I�+Z�MW_M�\d��y�佂���Bj�s�q	��eqm�@Ѳ�8�\
���V��ͳO��������S}��0g����qޚ�ͳ���k.���e�Y5܊4���~���iE����7�pX�u�2�W�f�G�_���,�6�tP����m�_��<������Vg�%��doQ�"�ur�k35cb��}����6�XuQ��9-d�{y����e��q���Pr�M�;w���_G�㝿��}ZT]~��Y�0����f.?�zJ��'9�(e���sF>��I�^;J�&��
f�����OT�<i�V�!Aa�ZMJ�/�
�<
q�Ĺzx)ѺW#f�R�zR%�&�R���d�ԡ��w�iE�R��)G�TL~��U�s��s�R�a�B\h��X��+'�16UM:
�q�y��ˆ@��I
oe�Y���<�|0!?�^�V�v3r>WcuU\��,�u��F�l��p�(�hW���v�a�_��}�Ցr�+<�f>Ts�/ܢ��+�>�.���`ݟ)?o�(>wK���6	�v����I��N�ZW��*+�"��
��G�[��(����։"3��9g��0w�$5)�b�
�BϿ4e鮡��L�ݬ��̙76<��
%�lF@4�)5u�(8yE���W	3��,&.��hS��ήnqF?sa���b�OxLQ��Bq����mz�+΢�P1́��'g��qy�LȔ�v&(о#|aF0B�*�vF��v3sv��.�nc����i�h>6~Q�)�"jd��Z�rd����/���c��ǧ[�15G��4Po�3���~H��m��%"|TG������_MWx�FC�t&�y��x�x���o�P�,V�l�RL���F%����,�P�3�UT�̀�V�S���i���(=*Q01Wo������L��������(��k���LQ�犪�R>�	&&��e�f�!�G��:&�~x�m���l
�l�0���*c�D�_'����������%�a����lU�a��W�h�ΚFl@\񲬈F,���U�L0�w��G�&�N˝H
qquZ�d9�<j���X��Q��W&9�����O��Y�`F�âK�4�����ߌ޿�K�/ڏw���Y�����&��*ܑf�#+��[{ַ�lO��/��6I��q\y^����*ʪ�gRs�w���_D>�#���,$�D�?��|�9��=�w#�eW�����1�J�p��ܱ"�`�7�D!Z#
A
�a�����<`�7�aF
3��
#<�O�/6�p�0¤�
�;\ᬗ�ˎ���+�#/)~��v���p��H$"
	�f�b�;�lݓG�bܽ{�.A�q��&��&֌L��c��SpA��M±.�3��a��ax9Z�'�!�������ܹ#�L����E%G
�e�ч�NPrɍ�2xa�S�C
�	����+��:�b������d<���${T�s����E�/����0B�((:|��7��V'�.���g�ܾ}�(�
YP��	M��[�X�����bG	�b�?|��G�^���I�;@�2�8�N$r{����
F(Z'�n��
�%`&(0

�l�?�hY���a�o���+�6��?G+(v4�3��7(���X�����*�}�B�J8�/��7
W���H�5;ޢ&G
�&C|�fA��L���ç��7oc+ė�f(z���7n��S�O��7@�׮]+��W�^}a���GU(���й'�]�re$6���~]�8Jn�U?��]44��5~IEND�B`�images/toolbar/icon-32-remove.png000064400000002376151163244310012636
0ustar00�PNG


IHDR
@{�u��IDATx��[O\UǗxE�9����y��|����|Z�V��1^Rm,��`��R�;�jm��X0���v`�0��x(H�r��spfs.s��˾����=�d�P5)ZP���b0��6Iڋ:�5h���+�#E���p�D�x����JW���4E��BT̄�Z�G��iap�f��h=\�n�:7B�+˂��[��Z��摊!|�
�M���\��a�?�V�¥t�\��M�܀�Է�Bʴ
\L"�5�@ں9��UK,�	.,"���F�����`��2VL7���CP]�3�ZI�=�=B�r����E-��������ҷX�@�-
P_���	����U$U�JZ1_GY��Le���l�����cX	g�TN!K6!�=@YF顕#c�
���������L�0H�\9w�-��󨃯>���O"73��6*]s��v��o#|ꏘ��n�o�}���N͢��)��j89�^D�%��9�:>�5F��zfe�w02��FYZ���F|��Omʴ�H�k����5�&B}�9&cB�ޛPA��2j�$5�Y<jݷ*�v�F~��?򾌀��Ψ
PF==���_��-�|t��<w��q�҉�
�4	lC:Ԥ�4x��å(ԥ�"o�7	���(��@�j�֠�ˀ��X;�:4M��ñ�$�`:�t^���Sa8��m�$�Q\��(�8�$��M+�=h��<���e�ժ�;I!^
^$^�9b�?g�,cϟ�οB���{G�sO@ja�6�1e��G$Z󜳇:�Z�LF!"�
b�$�Nh�l��i���&��l��P�·��<DX�ˡ�
��sFJ#�#��4)Ǩ�D*�
;�hl���*ar2����yG-�[�\]]�\.�ڌc�iz���L&U'��{��yt������������8?uyܩ'�1�A�?K6�4�Ć9�d�(O�n@6��|{{�s����%W��"����۵u�T����~���7�lll����ւr�Xo���"z
5�7�S'�@�%��X���B�`������@�����F�L�T��s��(���#\�@
2��$��i�#�HU�y����v3
�%	A��p��]�|��j��$���P����5�D�%�	����*�k�A`��,q1"Ye�(��SSS����|`Ƥ��������E��!�x���jѿ݄�0	JDIEND�B`�images/toolbar/icon-32-revert.png000064400000002554151163244310012646
0ustar00�PNG


IHDR
@{�u�3IDATx��#K��t2��mۻ϶m۶m۶m+k�f��~�����t�z���ܮF���d�Emhz
��H���"
�f�1�eo�4���F�.�y��q`�����ƥ�ތ��I���������{�e�t�Iy����dlٚ�J�d@�F6�z�kR�G��L��R���\$�Z����F���fW�4%�fǢl�gV�����܅�@��)	�E=�e���pW�&�p�i9�D�45<�ɭ�Q��%�JX�R���3�X"��V�|�K~�qcf#f��ou���Z\��X
X��
��k�[��1�k��t�Go�h�n�|��{��
�hϗwߪ�M~+����V�N]f��4��|��ȳ@�J�ݙ	��no�V�LuHb��Jd\���vo�cd�=�dU��Y���8Zg1���X���_��볎\�>9�.@�����o�W?
3`�w����C[]կS�™<6Fӫ��t��a�FE����p�y<���P�_�fƸ<r\8���cN���O�!۵��,��g�Z�g����?VO$�r1�<���48N��n)΀�?8�ݶ�|�Ud��y�G��D�A]M�7�l),@���ӿ=��O��eV2ѩ�1�|�?���3
gc�IwN|���&�0m���DC�T�<��(�1A��H8�������x\�
� ��?��k @�Pָ{]��6�<9ڝS�{,���B%`
�Q�Lxx,���ܫ1�gq^	�)<�u�=Qp8���”�0@?�	�P��d2s#�ӓ�՛�j}Ӎ�v�M���%�|��|�L#G&9Jg���WU������s٤t:-�Oq���@
����,��*Gq�?���/��N;��SO�����n_<������ph�z���3a��l���oD������9�˗��8�fn5��H]P~�嗿�D��`�@�{��xqM�u
�}��!�*k�L&s�p8�'9/��JG�293ս/}�'�o������H�Ln���w%�W��ܠ���vyD�ѭ��,��G��܎j�@ĝxG�8E��ϝ����B�+���40Ŝ���/D�X�J�0���kge��KQ�Df�Ʊ��93��x<�i��
�s?&j�$	�[Q�Q�6#*X������[�^w�v����}~Qh�{����=P�A���{$N����,�A���q!z���k���t�ڵ���(���_}4����Y��>
�>}�4p��
E6a����_C����	dAv�����IEND�B`�images/toolbar/icon-32-save-copy.png000064400000003101151163244320013233
0ustar00�PNG


IHDR
@{�u�IDATx^�Y]lU����nw��-�$B�BA������k1��&�/��;%<�M6�
�$U-�>�'�j��@lK
�XLi��n�����\�anvv;��<��ܜ�0����9��s�g		��M@�c8x�H�����%�l�\[ǘ4�L�x���'N��������p�$Iqk@�u�UU�i�i�R)�b1(��h4
�0(�M�#�(@L7g�ٸ5E�}&�B7��{_~�x	M�F�|i%���@
��ܲ����o��8�C�KrιN�MW���A7t�A
ѷdUMs֑%%c'�xH��d�N�ᆦi���
gd�<!{HNs������f�	D"�Z��,4-^,b,$9/�Rȍ�
���
��5��';;�pKf�\B��R�Yƒ�K穀��2��N�X�Ulm�܃���[�@W	E�#
Ÿ�{�Z��/�I�Y[+���?|(
:�cM@H%$Ϲ4_\L�Z�-��D�ۿh�o��-0�JL������������yy�oo����}��{�
 �r$���a��8JJ"�I���s��Wzz�8��h\��KH�������@SU޾
?����߷���O�{��$�dA$7G��LM��7n8�<���d��nr���A`��}��7o╆��H�uw��T��!4mo����S)T,���?�-yss3:��Tz�^.�@^6̈́K������o�Ir��/��0��]o��(�Ǔ�?�;�.P�k׮�]�~�VSW[+1i�L&�4b%%���$�Kr2�%�J�z��0�D���_�X�l����ۏA�!۹s�
w�9E����HƴKi�"
�V�_�
ljp`�Q�"�|X�|a�g=�/�sx�E�رcزu[^`ǎf`����`w��N���^'�okk��W�l����1��
kP�y��US5��!��`��`�@6Y$��s�i�M��yt�(�d����{è��B��R"�dWR@j��z岫<����0�ݵ�.rż܏�%��ud�0���c�����$�Ƭ�M���C����9�"�L4����X)Y;��E7(rYÞ�@g���
J�h&''im�אÃ������po�3*�I	�BOO��cbAݲ�G�Y�E��㗓#
�hq�z{{s�W�G,���C@�ś�[\�3S@D�����Y(��n���9�M@��W�[2�z����ܧk��c�ƍ8}���ԉ8
S_����q��]�����d�3���qy��^ۆ#(�21��n��	ԯ���Pf�UՃ�#'⡡!k��W��`��_=.)y�tH]�*��U�I�+W����/��pH������;�ѣG��n�:86:'gOS�KUUU���_?���Z�[��VT,����Z��rB�y,
�
�`~��̨��Cez((�Z�"������]]]�_y.�E0��^�(��T$��oHIEND�B`�images/toolbar/icon-32-save-new.png000064400000003301151163244320013054
0ustar00�PNG


IHDR
@{�u��IDATx^�X]lU���l�-�2v�"�O!Bk#$�bDM�$!$�+��ɄФ��AL��C)ix2Q�
���K�(-��Rڔ�lw�33;w�97�MY��L(��/�=�MO�w�9�n��,�“��'�3d�c���U�c�~PUSS�t]Ø���"�
��}[����*�@�E�$�^05M7M$c$6�h4�`0�H$���lp����
Kl��(@L���q�^	E���j08G2�����fT��
󞝇X,�����;v^��~_�k�i�6�8�����A
QEM�yI	����J�������G*Bk�?�隭�����0�|u=>e�'R�j��1�EEb�ܾ��
�Vj���ӫ�p$��e�rr�@42��
��
j�ݻ�L���܂�1�Na��g�u�;FP��;
c,��3��&�cVw�K���(U��/��e1�]'Z�co��x�D�cQ����/x�o��8�m0���_��st�I�i�s"�	0�N����0��8,5
�e�
߆4|Ɵ?���W����*5�����}��=
Ӹ�
X�K`��f��يu��
e*]�^\�F`헐K�b��J����P��,y���0Ib0\0�9�Q@;�
xO�`!�/n����f�10Z=݄�])�eAV�M�����\T!��P�|�IHO@S�E�/,|a�+ђ��3�x~�F��7�`i*D
I�cȘ$�}++J��X�9Oc��
p���?xm�~s�����W�z�2J��u���mG��\�v]�5
7o܀����a�t	E#
:���B_P�g�����V�`�O����-^��KL*WU�&fff���A�!�V"U�|>�������
MӚCyy�����Ǔ	$��Y��:�N'���
���s�d��	"�|)�ҁM"@0�SN��T�I�	"ӌT���3f�H��{�b��W��W�����'O�J���'<auu�;//_��>��1��K���L�e�􌺦##�M��a����
Kl��9,,�&WLn>pO�z{{�u�.
�
���Kd�^�IU���^�x���|�9E'\��>�r(��8ya���i%�OI�r��y��"�	�b�d�e��\97���@*P
P1&#8{�X���a�<����%������
dddd<:���߃Wа��D�4(���;%g=>>.ڱ��Tt��
�l٢�7lĹ=Հ���FFFĠ2ۖ?`/z����y��͛�:t��c
�S��$uM�h:BϡP�>�999%�a4mڴI�s�c��<"A�rssi�+H؛#(��{>�
���MLE�����Y��^u)S陀e�'@�����bh=EQ�������&`�[N�w雑�
���˙;�(BL�	�h4O*8��'�
{zz��sn�E���S���
P�#�N����y��A�1�ڞӿa(,(,�ߢ�w�]ͥeep��$�����X�\FS��m������w_!Y�=}��H��%�����P[�Ξ���5�Bs�يR�ʩ�m��>Y.�sB+ɞ3���#����f��`dhȽ=ohh���3��ÿ�?*SaNIEND�B`�images/toolbar/icon-32-save.png000064400000002311151163244320012265
0ustar00�PNG


IHDR
@{�u��IDATx���F��q&��-33�̌�r+���ݫ�*f:������l<��k���9���>��'����7��Ob/���O?�I0�o�xD�Va-xo9�kp�R���c�t:=Ͳ,���y8:�m��Q,��ۋ|>�\.�5�������"��u]��!@D�TxZ���i��_���+.�1G�R����I��RjFX&�1:(��96�8
���3�}9:J��q�L��

B�7?J)�^���4�?G�&�.���P��r����,�=�XpT�E�z|�9����Y�bE��
2b�ȑ��HC;�@!�GT�����@1_��q�~�x㭝��ֈF<Ot�S
 b	0Ԏ���{W�����`�d�PDz��Ԏ�<	-!�g�L��Щ�Y4N;�����z~�!�������bi9d2Y���ӏ?"�Ə�
B~��|�@���3a�D@lڴ��/��2?{�[9/X�8�c���x��WpÍ7��0���.��@Μ9�3�:K�p҉'Z�:o�R�1�7�ɝc��P�<��
�HH�����t]�G�s�!�l�0~��$����_�K�k}7D�.@�aQ��!8*��A;@��ljW��"���
"�j�0�Ni��|��M��W_�%B,���?�/ϫUǶL�iB��`�G�E(Q`ͨ�T:��
�L�AX�����9i�m��vg���w����j��jyvz�{XK[	�9�uxyNDA/ΑA-xZ#���r�>�qYX�EyB�@����@�5��	�!����R����c���<�[���~z����)
��#�A̘>�u�JQ�,�Tj�������G)��˯�
0D�
FD_�_f�`�	��'
�8�3����h��P�-@;A
L���uҞf����?�PP��~ک8�������b~���k�!e��a��e���5�*���O�Y�n�
^|��'.\�ߴq��"[�lF2�6oقK.���zʰ��o.ϫ�6��7n���CS}�}��8��<QoB�s@��s!��g��2=���Z���f��Y����|ܸq��S��1��*Q�8�T�IEND�B`�images/toolbar/icon-32-search.png000064400000004301151163244320012575
0ustar00�PNG


IHDR
@{�u��IDATx��XkL��Vw�uۮ���v�]ɶ�d7���&M�]ښ�"%H��x��?F�x���5ML�Dk��Vͮ��W`�	30�
008��N���Mݏ���ox�2�7|�9�<眗o�˼���>����^G�0?p)�ý{��9���ڵkޛ7oRvv6�~��e�ٳg3���b�����7�^�tɐ��Kd��&��B��V2�[���L%%Z���Wt�̙��ߎ��o�ڵkSzz��ٳgd��|S�uzH��Sq����?n��Z#iK����L�p�B���oͅ������x�^��ة�g�*�~�w���i(HM����)��I�r
���ӹs�r�pՆ����4C[���ں��u0�2�g�����t{Cԁ�f\�P��E_~�.���a��~����*++�hn��./�¸e$(����4�����XXi�j��~j.^�h`G�T�[�o�Ψo0P����^x(����`��C�7��
aDZ���H������-����o����'�A��y��&��a8H��ם���

�����!5ix����QS������Nx?��C������(��V2Kk�����yo�"�WP��
	��5�N@��{D}A
�w�<yb(Fs)�ps�������L
D��(DV�Jgs"ZA�ȑ#)x�w��3��z=i-�DNې�^�xD���D����D���~*��/�2n�jD����Û��SCi�T��x�����؅6�|�7�y(��L�"�r劕��2\��$t�vҴ;���(GAĉ��0��~㠏��#��������s��n�;w���2��f+�"��}^jvO��p�1�5�Ʃ�>L9�R��>��3;��Ū����%���f�Y���w��c���Sà��:<�5٨�-((�������,JMM�X�vm�"�%jR���ѣI%%%V&!Qmlx��D555TQQA����y3RG<�>|H��ݣ[�nY�oߞ�Z^Q{���ի)�?��$������333�n�k|�c��6�.�w���g9%j�43��2bW�_�~��'�G�d��z߾}Ɉ��P^^=z�h�6y�Qn�\�o�B�ΒW������o2���"�\!DN���`���Y��.IDz1���V��FB���w�o۶�W���ũ�hd�L#�f͚OE�"��W�N�:�WVHqq1ͬ[�'nN�|�/�������$�i�<v��!!�yZ���DUU�,ͬ�;w�XEyb-	�NG3�ɢ��������$
N�G��-���?���q�4��"ؽ{�_�-��e˖`TW��ќ�и.o޼9�E�X���D��������$�ٳ��KLL�߰a�o�ϓ��V�ZԢ���~�`���566v�H�'�uuuQ8th����r���9�N��顾�>���x_P[�dNGԸ�`��l�a��٠
000�;_/.��۩���8J1����Ȉ𴿿2|����gq�oNL&���č9hii�C�1FGGG�����ؘؽ^���v�EZ�2��u��#��+{��=�0�)Lb||���}A�j�J�`<!�dو0)
I�g&�9%B2
�+���S�/�{�a�J��pXB��2
�I
Ax�Ai	�
K�ǒ��(0QA���U8����lf��JkV(�
2)@~0`Clp&d
8�7SS�C�/`
p��
�Q`L�?��}+�m�"��h���l@�$�F%�q�/�
m�[/����F��Z
�	!���Za���n�$�J 
p��8�!��
JȖ�ƅ�������ŒN�>n	�G�=�6X�h߄�!I�ϩ��H��$��0�a4��i��֦�$�F�H"�NJ�D4vYɈ(��7@B($��hL�d$�,���
C:��̸'L%�1��4HpJ$����,_zD�G�5a��ܒ�,��F�:Y!��Y�)Ώ�Mb�@J$�i�D4��t�H�B�.��X0��'�_(	
�VHHq��ދ�{���9�
�6~ğ<yr^P|��9�xo��?~�?~|�b�π5���LA��l������E/�7_��(~9PIEND�B`�images/toolbar/icon-32-send.png000064400000003771151163244320012273
0ustar00�PNG


IHDR
@{�u��IDATx��ML�Uǻxf߽�1����D]��v������ą&~Dk���ul$�UK�REl*j(�-8|����]�)C�(�ia
-���ŝ<<3�Pcf�M��a�>��?�s�î��3r5


��������	Q~~�=,~�ȑ����PUUU���O���D�a3,ѹs�6�$CCC��䤦��5;;�x<.��ٻ"*,,|���(�A��ؘ�]�xQ������ҕ+W������%-..꽪A��S���2�����5ϰ^V����%/����
��dnnN׮]�����@��ŝz���N���ů��LjppP�+���b���_��p�իW��E��D"�+v�h�RS������'}�K���.�,���ׯ���x��K��6uc}S/��o��t��(A�Q�ń��!�q�F
+++�}J���{u��z��v�)l��A]�|�MG҈	�K@FrH���*��DDT�?���\*0Y����M1&�b1�Z�&O&�V��<��A���}
�+���֗�ڮ��s�y�旖56=gEXȦ�@��n��:�3��5������]��<��N�X͹����L��aM��+k&��n��#ox�?�{dJ�j�X�������>�9�P~��O���@�b�[@lfN�	�n����?��lASd\`o�	=��z*��W�-��d�j5fff���o~8T�(,�h�����!�x�x&���
Gg�)�>�Yw��m���}q�5-
�o��g����+ճ˕��Z$OwB�K�6�T���&0�2���O#^h����6���W?Kygx*.�Tמԝ��jC\i�8�HՎ⧟Hn�	�b<u��u__+���
�m�:�.���?k�%�2�'��<���ŋ%�;�S�H?�r>�̈́.lP�9���X�a4=��F��1黀�����Qw����'u�fB���h�q�1s�gB���ގ��1���R��!?��!u��dB=����g�d��5H�+�v8���[��?*���Lc~�YAG2��mLXhbb�BDC���/l^C8Ϫ(��2X_5�>��Q>!"}��l����
�(h���=��7o��񁉁|9R9�o`�>D�ob����f�v{�Qb�#>�:��pR��0PF�;3g��\�s�ӻN��qda��j�!�;cg�z455=���JOO�����B�{X�����Mhdd$�6���

�Ç-�^NM�m�h�7{W�;��+����g����
2���=!m9m:�n��ϟW{{;��H���Jj��%/���A������`�E����o���=�`����(
��
2���!�
+�\���I_��R\iad"�u�V�w��������x���k�CL�!�%�}�v������cR}}=��kF�|ӑ4b��%����VnA��d]և�7Ř�R�Y�&��^�ư>��-(L`�<�Z�=�@��y��Wp
��gQJ����t…\Z�i��uuu�&e`�W�A�Q��f��@K^]]-���,�g�zss�-������	�>�TLp	�e�V4$x������mke�j��wtwwD",�P�<���^�~&�������j���J��C�d�J�6�s��3��	XE0"������;�=s
�JG��n�ϒ�e�����1��B��p���V#�q�d.by�o���f��P�I!�y���g�Đq"���
r���ܨ��	�g��"1@���@�^�2���(�v8�	^�͆�L]��L�g��0�����D�f"�[��γ���
y��R0����(��>�p���y�@X	���A\���I�l�m5@C�G,��-F9�Pooo�@>�
tW.�!��x��@.D
�w;���_���/\�*IEND�B`�images/toolbar/icon-32-stats.png000064400000002147151163244320012474
0ustar00�PNG


IHDR
@{�u�.IDATx�p�V�ˌWf�P��ۡ�1333333_4�c�㘙�~aƲs�]i�j��p��v�|�߮-�ޫ�H�k�ې����{�[�k�_�܊<߭���M=��Ф�Tg�y��j�h��rcG7��;�=�\U��t5����c��ً_��o��H�5V�������n�����z�뿜4��灍��z���qs�<'`���^�֝����
�և
��lsv�@���*��=�p@jY��PE�����6����8����)@k�[ٖ|3d4_��
�(���T!�!��R�B�PVV
��7�@mm
���AcS8vhkk��qɡ��O|n�������9v�4�SV�NI԰/��Q��C]}=k���Vp����/�@*��s��A$��HD�Rr�ҘΟ?�mmx���n�(	����_�@���b�<�i��B!;0a˜ٌ�<�ڵ��
����9|DGg|�+�����`HI$EO$!�$PZVΨ���5�8�|����.���۷o5J�$IIM��""W�HF�i�R+�F�&�:-���!�b4��l"4M���CB�$6�1)}�X,�dvv���_{�3�\�j�����ȳ]���&��b�!�?rA1dȐ�K�,�_�p!��`޼�ݻ_yA��/��w�ު3g�@W�v�ڿ.(fΜy���
�|�	A�
:Bѷo_��b�ԩԾ}�@(z���wD[�n�����~�!
�?��b�$	H&��t:��AEE��W��烚�x�9��v�ٳ�6�ĉ�8@��q@�A���j4�l�z�46Bz&A+��6�m���YQ�xD�Q.�>�g�癜8r���R����y��\���JKK����5#.\`o��́���������nV���7�����;
v@��R
��lނ
�Q��@UUL�4���x뭷>�)t.�j�
�������<y���^�O"�`0��D�r91��$6����j��"h����":��x<��w*����4M��}��΂B��0bxu;�5NIEND�B`�images/toolbar/icon-32-trash.png000064400000003342151163244320012455
0ustar00�PNG


IHDR
@{�u��IDATx^�XhG�fv�WR�&�x��J�H��J�҂��
��P�[�
R
���6H+��0��&F���X���R�i~�]�K���L�
�����C��N��y�|����C�f+�(�*D��{���]]]�O�<�u{{{�M
�!��V]�p������3�oߞ;{�lϱc�~:w��w����7��˗/we�Y9;;+�<y"����7���`����G��D�d
<��͛7����`�6��$�mۦ���ñ���oN�:u@�BM��(_4�g�;�$7}�gK�t
�y�[�[�N>��H;�݊H$�D"�R����!
455���8~��;w��+r��t$�
�
��֏?���D�����\���.��	|�u,�
����5�-,�,��cɊ��H�~���3��Z�V.?�omjy�Z
+pm6�WT�/�-
$�,`�)����H����8,;;A$^���:$��
�ΚI+�",U[_׼�a=d~V>k��b�N��u��4e�U�h,�G4�@,��av|��㬯0���H	KAE+��KEpRE��-U˵��Z�(
.��wKR@��SȞ��#y�ףu�؞l�S��Q^����,�����s�5�������[p�ŴB챜|<'�c��7�L���`hRB
A�TL@�.\�BR��1޵��p�+0���N�"'W+��M`�^
hAf[1c���h2�$����R���P
\��5�Q�خ4Ș��^P�3��)�p��h���!�%�HƼH�`�cB�E�!gO�
"@
�¬�w�g�N������m�H���
9�=����kH�����48{&4H��j!������O�	���Q
$,00�H/���w(��9�\H�~�-�kJ�|���ԄNdŻ!�3�(���(lPxk��-�x�k�JIx_���
��w}������B�P�~��
�3�ᗐlqq	�C9�+��P���d�´B!}����mW�h�WP���
�9-����,�=�;�w�7�ϛ[�t���o>�s���a��KҖ�'���˷s��AǞ�^���(��^�^�N�>�Q[[{����͐R���8��9��Ą�������R)���
��]W~:�B��2��|�q�F}�@`iiI����Կ��i�MMM�޽{�d��S��}nq�X̟�
��yOO�������@��*>66FI�7c����Z�[�n�S�DF��B�?�xJI�[�333k*J��3g�P��$G
LA�^_�@�ʙ�j������}����
�)�w�Dd�:_
z�J˘���y?m�����ŋ�����QO�-\^Z5�_�ޔ��q��/<x���9c$�3�5"N�555��z=�M��o�'�6���w��b��'P��<ǪH�!���`�w朇U�_=���MS@Ϫ�'�oT����>�E�	�@�5�/�)��D�{�#����T�,K���(oaX�	�+�O4`�@�T*��
$�[�ϱ{��P�<�7#�3NV�j�4��d2�
�T?��+�?��z��/���P�
��C�	�i�����=�k׮+��6۶��V:I�aVݘ099y��������'Z�]o�"R�@Β�*��?^��s����b���HP���I:IEND�B`�images/toolbar/icon-32-unarchive.png000064400000004536151163244320013326
0ustar00�PNG


IHDR
@{�u�	%IDATx��#�������-�13��9���Q&qaf��?33�R�m�ǩO��-�,J�.��zU]]��9Ihd�7�Mu����f��VM�M�`]*E�h�Z�A����*�%l��G�T
���;ƺ�����"Eu�,W�c-.-��Jj5E��rQd����y�+�G����U�媖�˚���;^Z*�k�y�;���&@�X}���b�
��ڪ��E��̨��M����c8���"5#�A׎�v�'N�V�X�;[ƶ�/$�\��qNfYhH���Sk׬Voo�N�����R!����ަRi�Pw6
	��S,�9�h
�D��5�W�\��%��e�1BgϞ�(�U�����;�C��
v�z���!����âR����6!33���eww7�eT`�"�+Cr�F.��9�z�����f���jc��.�l�N�:���e#�a7��9go�a
U���--��\ZZ
���0CdIxR�N�ɥ#@#0�z�&�)5�n�Z�r�Z�V�K����k���z�s���t�&����t��0o��!%�_��x��B�
�<tX��<�~��=ǀy&���=J�\C*6�36,9fʽ��(�A�\�E
_��F�5Ԓ\���r���5��XN.Lj��Ĥ�E圜�[)�2	�xW�o�s4	��B_�>�J�аM�KPO�'��a{���:6��:�R,���͂B���Bj�����/,����8��n�&�e�I+5c�f縬��n"AR�$�EeQ�9@۾m�(D�]��N�xƅXQ.V����]�d�
x��Cڸn}#nؐM�ů}�H�P�p��]B��ַ�����U@�bkQ3�������?�Q��CI��l��G��^��2H<rB�ٟuѥ����87;7'�'N�ҋ_�ju��W�P��n
�����#@�����t~{vl��`	���٬�=�z���W����w�+�}��ަ����>���*����o����Y�x�d$N��Nb��_Ѕ_�+��J��h���45yF?��g,E�'D�Ԉ��	�#�!��ł�w�����λ��/~�+���l�"���HH#ƙ%�X�q�al.�d�+���TOW�N�8�Cit������O�E��M�T*�^e(�jU�id��q�zu�lx�S���E�a�q,Wʠ�S&�SD�¸�׎�͛k���E��[.I��{�����Xs��	��/�\��z5C�	$�{z����ޥ|*a�ro
�&9@G�ۍ¯+�������{oH2���rR�w�cEgV|G%VA
q���aH��$�8Y����$r$�B�Pg�
]|�%!�
oD�6@���Չ��4�����G�%��:z����'CTG{��NMh�d&*���ԑCG���v����'�*��_�um}��
��y��朗bNҮ<
_��
���[�zu���-�##��zxB�'�3�I��R������>�я�رc^rI0B9���`���Y����h˖-ʙ�
��oPXD�,DO�O����ct��	wz�`aa�c*"C������oP�n�u�E&���B>�h��=��|���٠ȅI���G+V��S\sss,T�̫]����ކ
�8ܠ0��.���^vH��ߤ�g8����d�EnP���L"l�b�,�9�2;;9�7!��y��x6�&�~�6C�y�}zz:�m�6(<���L��Lc��sȠF�s����������3#ْ~�73�5����s��?D�7(����.n�Չ�`ܷ�MLL`�����%�̈�m�pQ/�-�͌�CٝgKS$#�]]]�A�>�~צ��!^���Q$s��k}��{��(6Y��q?�	�F��C�CCC
o<o����{��O9^R'�����?��O~�5*��ȈFGG��'>�����@�A�M7ݤ믿�Y�q�wA6����e�9��kJ���O��O�x�;8����?�1�j����(6
����׬Y��+W6
��ܹS�{������5$�_��WL5��կցlwl��Bd2g,ϻ��#D�������NrC�x�+���"��d�1�X3tD��o������Zmڴ���t�t���~	�}G�LgyMv��>�JN!�����#"טZ��7n��^7`�=�M
`��Q`��GD��fE�#�37(\}�B��	H���F���
밖嵣wLRt
�[�`���7(`��pYa%	<苐�E�y&{�²:aNS���г�Na!�Γ�p�\������V)&T/�HIEND�B`�images/toolbar/icon-32-unblock.png000064400000004154151163244320012773
0ustar00�PNG


IHDR
@{�u�3IDATx�͘
LTW��
1Mcc���!ctk��B)@���:�V+�h����]�e-PC7vc��¨�����X�Z���Ɗ�(t`��_u�]vΞss�d���v�%_�̻��s�0sy���	h]��ye�8�av�����A{R����n�2�yL���ь�����r�?�6�Z	�O�����6�I̋��\�?*�����^�B�o�2��A�9�μ��q6�+^[ή���f�r8|��N���>�I�/X�N�<s��bE�ĉj����Ⱥ/�!g�BÈ�yg�-Z�$��(�H��Gk��WdE�}>�r?xYw4BLL2oF��K��S=4�d�S�H1�X䘠Ɉ��EX�&-Щ
���UDV`��+�Ê��q��Ѥv�{��
l6a0
�p�m_�ñ�Cp���7����BH��MSB쑜P��>_'	�{�
���.A�U9000���044V����j_Bٓ�a�RӼ�����ĆP	��=���'>|(	�EՠXUH
y�o�$�5�U�2��C$�#��_����^���W������,�
�UYAVI@o�,��9�>��U��@I}1���I�8�����ҿ�%�%h}�߿��-���
�c=Z`��w��g�B�'��VX���U���o%�*�;-Pj:�$�
$"l��E	�������\xho/�p?�@�G�}�@r�K�d�x�D}@w	��1���"N��#?�غ}�Qص�MO�@�'�$�9-����"�d/A�;��!	q�{X�>t�B!���GB?LUd�?�?�]���ÐR�.�����X��T�A��k�@��-u
��|�	��7i������ۛ^�F��5	��gԐ�R���-�h����]�V���?-��	�?�v�To������^��N�$K����'.�\
!���	H�R��Y�f�!�����b�^�'٣�b�ӭ�8��f�K1^_��޼4c���%	�(�ʯsI��$��+�����J"<��
-�1���ؠ��v�[�QpQƐ��	d
�42���~a�T���_�n�7��	�ɯ@�^�̩��=��l��0vٜ�}����s*�1�$l��q�����"�H�Wp���
~ޮ���Y勣��R�g��q
Q�×s�F��d	��MckO�yY����1�$	c"�Y��X��9�Gt�S4�al�$K̤`����3/�37n�Ǎ������q��48O��^@�p!3��BS��g�%����.�m���;2���v/�����ljll�g=�6�w���]�^Ss+8CcSK���yߘ0�W����a4�4��G%�'�7��x���9#0M�3�����F+�aH���Y�{�VLVD�*p�ƭ"&�RU��Ճ�U7@�[�u�qk���n��ꆶ�v��X��X�$PQQ���#�_���	zzz��;p���{���D(�b�0HW�0"��etvuAwwt�$��V�բ]��ǫT��UB{{tttb�I�+q[�FM�-U(/�Q[[G%f���J��0�qh����28������,юU�
HKA��6�|�@Yٷ��hiiA�6�hU�@z�m�d�o��dE@ZW*-J�
	��H�0��F,P�Ej�_���YT���%:ŦƵ���O�^I��8�P�B����ʍt�0��p�B	h�2Jg�~�G��Ν���j{	ڐH����g()��b�Ȑ�:}�؂��pUVU�w}��f�Qs.�_�vMU�N�<���cp�u\t��5&������:��qf�rk��*((�!��VD?���޽{g���1�K�(�3���5�O�Oggr�ɳ����@}ȹ���8ߓ��]���.�������1an�p�df~����>ʡ��:M�xζ��S���;��s����iZZz9T�@Ϩ���rʩy<g��l�,B��0&��|�݃�g�B�|���U�xN�9H��,�
��u�6͎g���x~=�ۦr�I���_w
CC�IEND�B`�images/toolbar/icon-32-unpublish.png000064400000003033151163244320013342
0ustar00�PNG


IHDR
@{�u��IDATx��[LU���XX��ŠKO��P/��PZh�u�]���@k��KC�1i"�Om��E��mP�TIj�"�*�e�Y�>��Є7�J�}��}���;gf�!�ē�2�g����9�3Kc�*O�-m�O�@0$#m-y����>��e`�k��H��I>���S�
R���r3���v+�.6��R����m�>����᷅E���m[���
������͖�؜���}��D<�7=�9`žPJ"P<���x��N�r�!7��20�;lb�W�؜����䀎���eMf|�`.���P��s]�j�l�ʁ�~U�^�5me30�|D7�@Ӽ$40养��bs�v�]�	X�ԔǠFP�O^X����ʽA���P��+l�ީ�m�1�h�Ǘ�d�u��"��������V��j�0w��3������\���
X�����2�]�|��Y<�$6��fw
H�_�hcj�GCB
^�@�fv�Q�!U+�I��t��
&!@Ē6+F�wpQ�σ�`����d`�C$���#:)���k���3��o=$0�C�?/���QCR\��x�`Z���
���p�M�1���w���d	`��-~����?�6�!M�������}�錤yC��^�QN��r�tb勽�
�-��e��"l�,�V�ҖL�}RJ.\JX*@�ا�q�io�q5���k��
�i��]$�A	�\�\����/��4�
�6N&��6��[;����$�#;ɝ��	C�-&��J����������n�
�s3�ـ��@g3@5�yU�Ө���\�܄�;�񠧰���N�x,��F�	�c�0����Cg�d�ph@�c_�X2��=�4�¬\S6����6��k2�^�(����o����wUU�������@����絵��A���]TVVf�p^cc#moo�������	���������c0rܐ��.���Ζ�z��A,�S��������h�)��r�ȡC�P�'���Ç�FP+)0Ď��
`�A��7�����Y�9B���p(��p$�ܢj&��ĉ�+\�%4�8�رc���g���Q�s��@ΩS�TŎ?NC�����s��U|֪y�O�ƣC�@ooo�ZVdpp�.//���Μ9#�
�8r���0�����r�޽�1J�X<nBɀ��ѣ�����`!!/^j�<y���tvvZ����P5p��u��aMh�"��ǵcy�,=@E\�tI���0U�Q\8ID�:^\\T,�Ũ�p��	�={=V<��~�Qéh^�6�j��ttt4ιs�O+V�#��
­�2�W�
��U�~6.����0�:�M��^�F
��ąZ)}��a�
/����{A]>�s<O>�{���{^Σkeee[\.W���6�-�6h/B۾죔����y���<�2i{�Y�qIEND�B`�images/toolbar/icon-32-upload.png000064400000003724151163244320012624
0ustar00�PNG


IHDR @{�u��IDATx��yP����z���
��j-��$HA]�ꉠueѥ��Δ���t�vڮ��]u	B��XV�.���x_#(��U
6�_O|��&yCd���3�y	��>G�̼�I}�D��R�m9!7�;�L<k��7H�2��FC�g���89e�;}B��~�y��{yK�ؚk�
m7ˇ��c`�����o3�mJ#�y!j����g�
���CK���\S�pnG���E��h��C1z�MJ��{��~�Z�e���h�����`�i�U�!�t��d��d��;�7�"`�>>�G�B�M�o���[������J
SÇLl����Or�òd�f�F��.ҏ�a��0��}��h�����Rg�����[6i��΋`}������q!�������P�+�9���?�C�7i$
>�L}�wK:(`Q��kY�RX�,�5�x�>�TqᗥЇ�����
�����$�A�Y	�[�:3�#�1h
��O��o��V�;~rF�XV΅�aqo���cH*�@�W��`��R�h�SA|F�S�SkΈ�����AJ5vV�xT�+e9H
��&1,k��R
A�b4��A�
�é
BH����?_�8�R���!2O-~A���f4����.�a�	(Jx��"r�3
{�Z�]e��f�/*� �<��%���\˻�h
�NfU��I5BH<&��J>�?Y���@ĩx$ޑ7�NJ��Z�l
�&ʚx\���z6��W��.s�׈����y��}�UBpE�
lE��|���5Klo���h@~,Ɯpt�]Q!g���yr�̀���//�����#o�3_�岽ˏɆ��pP�?�>a^4�J��X)�w�.�JW3߄��Ӫ��ʄ{D�
1{8���
�t���.A�W�Jx;F��ԑ�X۟���i��q'�j�p�
����K� ��
�]
�!�����lx��H��SY&�����P����䦖'u%�D@l:4N�|��d�"�X�740�5�3R�qe���A�����
z,I%���h�,��R��c���{�9+K��*$��,�%���鉐���x���
�t�MVSK��c���}��L�ԭ=gM>,e��C��K
���ʃ"
�)��#�=�}�P���fM������|.�M�*�JFYJ���VG�WG
R�d��e)ɪćK)�?�'NH_d*�=䇬9SgQ��\B�xkGЧ�z�^�Y�_n��.j�>����h�&V����3�
3�)���"d!"B$H$"s�б�H(�P����EcL��&R'$�X��
Cfӫ8�^
��mx�^Z�X�h��7ɖ�'�7��t��>�	�B��2	��IMjR��E��T#�Yz��|[�-ཚ���h�G��Y�U��\N�/^@oo/<~�,��n7��@���٣G�`hhF���
Ϟ=�dB1��X(����ϟ?���fg=|������w�6��,bA�ft��߿O7w���.x��)�'q����j�F`����׎�3�6A�������W0��W����݃��ɓ'$��p����}�
@ �If��4��̯
�#���8
uvv�͛7��ŋ�I7n܀�ׯ�ݻwɖ��0�2㱐�M1b6����^�
w��!�$��;��h�$����+WF���������O�t�ܺu<�`�,�G�����Id��]�Fb�|-c�\��j���F#\�|�ĺ��6�e�
�
�N�8ͮD���
Y7��,oe2��p�`0�F����hnn~�s�΁^�'q��	�
&��xu�…l&=���E����z��9�	rۇ��������ϟ��Ommmw�����UTT�}k/)���6�T���dSS�������o�N�L��|I�zI�_��x`�PTIEND�B`�images/toolbar/icon-32-user-add.png000064400000002733151163244320013043
0ustar00�PNG


IHDR
@{�u��IDATx^�]hU���Mڔ�R�nAD�>����}kJ�)��Ⳛ�
(������/��nUDhJ?�P�I��PH^�P�f4��c������u�pY73�����,����{���QF�Gqt`�q�zGM�8�n��`;��8�
cEB�^�B�T�v0\�:��b��Sૅ��G'����^m	A�Z%d[���J
���JD(�`�P.�
�p4�PȅP�B��,�V%'���t�8*�@�
B�DD��&
��{�8�B��@J#Xg^��x����:/.���K3]+v�)��x�T�E1@���|t�L�s�w���oCG�>�Q�|4��&�_���o9��i�x�y�O.���/���[Jկ�nNcĠ=岮Z5m�$J��ó&Nu��,�5��a���ZԢK�#�.Mg7���^����Z�U�Pv��ר�"�}��'��?�y��u��"���	m�u��g��q�ܖ��l>
0
,f���5�\��&h��
+��Z[۽�k1��)<���XE�~
�^Q\_RX7�*�Ę�D�OX4��:P���t�*܇�pkë<����,��B~luNS�	�U�S��Ǩޅ�o��5E��yn���񗢴T�N�
�k��D�T-�먑�.s���˰���<���d��Y�A(�C�J˥d����������
�兗�bS
\,�l0��;�c=(5�B���EX/ՋA�bP�~��b�)�\�lO�
��GrZ�Z���+�O�ﰾx�{��t.�N���l�X��ed3i�qz���aތKfS�l�p����'�Q���<Z���M��@1���|j���_Ǐ�y�8s�L�PJ
뾁�<pphh�����b1<����`#��*�<y2��m���v'���T�}�,"H�"�hr�_N�8q"��T��*�J����k!Q8`j�P�Q80L��޽{[?ؽ{�0�0"��T���
ﭯ�14����|����,A���8��܆�N�J�[�6
p���'�����@1�_�N�>�����(�qݎ���|�!n��<::j���9`ܻ�<b����'�����	�C����JA�
��g;;;���Xm��ٝ;w��`B��*n&�]]]B.b�V����H�s�Ν��#
�^����===r|��핂���|@����b<x�y�{�
����(�7�"�z�A�T*o߾�����رC�����kU�!�4엾�>���񢻻[�_3Y�`�f��M�t��%
��/_����,�D"���ٳ����ɷc�ȕJ˲$S*�hoo����w��ڥ�%i��'��{�ǁ��wQ6*p���`��&%�{x<��;4�Y�E�IEND�B`�images/toolbar/icon-32-xml.png000064400000001403151163244320012130
0ustar00�PNG


IHDR
@LP���PLTE���������������������������̾�����n����������|�˶��f�������^��d������������������ō�ǹ�؄��b����ؾ�隺�u�Ʊ�����q����Ɇ��q�����c��}������֕��b��m������������⤿�Q��VtRNS@��fIDATx^}��+1Fc
Ly.33����	�IF��#ەO��QT�`j�:��
��9q�A�/��+���@/��~s{q�;���u�_�)�k����K��ϣ߻��F�]D�w�o�����;�qb�o�.�O�'�>>�~����e|��4�}��y��I
R+P0*DO�}
�\>��
HYr�҇����2T�B@�������V�U
��>kK��}���{��P�$�T�"���4��	V'(Q�Sra@$�ȝ��Gy;�ڔ���Z�:��$������C�"H�hӅ�d
@J�y���+\���
�HAY��p	�g�q�AT\d�^M��PnB�:���@���W�4�t�)�N�A�%&+6Qׄ�O�
���'"���#Je̐��
�lD�c��e��O�Ȣ���A���(,x0�r�l	yѥ�����������(�V�qfc�X�a.����Тu+�
�y.P!�
��*�ך+��׆IEND�B`�index.php000064400000013114151163244320006365
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

/** @var JDocumentHtml $this */

$app  = JFactory::getApplication();
$lang = JFactory::getLanguage();

// Output as HTML5
$this->setHtml5(true);

// jQuery needed by template.js
JHtml::_('jquery.framework');

// Add template js
JHtml::_('script', 'template.js',
array('version' => 'auto', 'relative'
=> true));

// Add html5 shiv
JHtml::_('script', 'jui/html5.js',
array('version' => 'auto', 'relative'
=> true, 'conditional' => 'lt IE 9'));

// Load optional RTL Bootstrap CSS
JHtml::_('bootstrap.loadCss', false, $this->direction);

// Load system style CSS
JHtml::_('stylesheet',
'templates/system/css/system.css', array('version'
=> 'auto'));

// Load template CSS
JHtml::_('stylesheet', 'template.css',
array('version' => 'auto', 'relative'
=> true));

// Load additional CSS styles for colors
if (!$this->params->get('colourChoice'))
{
	$colour = 'standard';
}
else
{
	$colour =
htmlspecialchars($this->params->get('colourChoice'));
}

JHtml::_('stylesheet', 'colour_' . $colour .
'.css', array('version' => 'auto',
'relative' => true));

// Load additional CSS styles for rtl sites
if ($this->direction === 'rtl')
{
	JHtml::_('stylesheet', 'template_rtl.css',
array('version' => 'auto', 'relative'
=> true));
	JHtml::_('stylesheet', 'colour_' . $colour .
'_rtl.css', array('version' => 'auto',
'relative' => true));
}

// Load additional CSS styles for bold Text
if ($this->params->get('boldText'))
{
	JHtml::_('stylesheet', 'boldtext.css',
array('version' => 'auto', 'relative'
=> true));
}

// Load specific language related CSS
JHtml::_('stylesheet', 'administrator/language/' .
$lang->getTag() . '/' . $lang->getTag() . '.css',
array('version' => 'auto'));

// Load custom.css
JHtml::_('stylesheet', 'custom.css',
array('version' => 'auto', 'relative'
=> true));

// IE specific
JHtml::_('stylesheet', 'ie8.css',
array('version' => 'auto', 'relative'
=> true, 'conditional' => 'IE 8'));
JHtml::_('stylesheet', 'ie7.css',
array('version' => 'auto', 'relative'
=> true, 'conditional' => 'IE 7'));

// Logo file
if ($this->params->get('logoFile'))
{
	$logo = JUri::root() . $this->params->get('logoFile');
}
else
{
	$logo = $this->baseurl . '/templates/' . $this->template .
'/images/logo.png';
}

$this->addScriptDeclaration("
	(function($){
		$(document).ready(function () {
			// Patches to fix some wrong render of chosen fields
			$('.chzn-container, .chzn-drop, .chzn-choices .search-field
input').each(function (index) {
				$(this).css({
					'width': 'auto'
				});
			});
		});
	})(jQuery);
");
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>"
dir="<?php echo $this->direction; ?>">
<head>
	<meta name="viewport" content="width=device-width,
initial-scale=1.0" />
	<jdoc:include type="head" />
</head>
<body id="minwidth-body">
<div id="containerwrap" data-basepath="<?php echo
JURI::root(true); ?>">
	<!-- Header Logo -->
	<div id="header">
		<!-- Site Title and Skip to Content -->
		<div class="title-ua">
			<h1 class="title"><?php echo
$this->params->get('showSiteName') ?
$app->get('sitename') . ' ' .
JText::_('JADMINISTRATION') :
JText::_('JADMINISTRATION'); ?></h1>
			<div id="skiplinkholder"><p><a
id="skiplink" href="#skiptarget"><?php echo
JText::_('TPL_HATHOR_SKIP_TO_MAIN_CONTENT');
?></a></p></div>
		</div>
	</div><!-- end header -->
	<!-- Main Menu Navigation -->
	<div id="nav">
		<div id="module-menu">
			<h2 class="element-invisible"><?php echo
JText::_('TPL_HATHOR_MAIN_MENU'); ?></h2>
			<jdoc:include type="modules" name="menu" />
		</div>
		<div class="clr"></div>
	</div><!-- end nav -->
	<!-- Status Module -->
	<div id="module-status">
		<jdoc:include type="modules" name="status"/>
	</div>
	<!-- Content Area -->
	<div id="content">
		<!-- Component Title -->
		<jdoc:include type="modules" name="title" />
		<!-- System Messages -->
		<jdoc:include type="message" />
		<!-- Sub Menu Navigation -->
		<div class="subheader">
			<?php if (!$app->input->getInt('hidemainmenu')) :
?>
				<h3 class="element-invisible"><?php echo
JText::_('TPL_HATHOR_SUB_MENU'); ?></h3>
				<jdoc:include type="modules" name="submenu"
style="xhtmlid" id="submenu-box" />
				<?php echo ' ' ?>
			<?php else : ?>
				<div id="no-submenu"></div>
			<?php endif; ?>
		</div>
		<!-- Toolbar Icon Buttons -->
		<div class="toolbar-box">
			<jdoc:include type="modules" name="toolbar"
style="xhtml" />
			<div class="clr"></div>
		</div>
		<!-- Beginning of Actual Content -->
		<div id="element-box">
			<div id="container-collapse"
class="container-collapse"></div>
			<p id="skiptargetholder"><a id="skiptarget"
class="skip" tabindex="-1"></a></p>
			<!-- The main component -->
			<jdoc:include type="component" />
			<div class="clr"></div>
		</div><!-- end of element-box -->
		<noscript>
			<?php echo JText::_('JGLOBAL_WARNJAVASCRIPT'); ?>
		</noscript>
		<div class="clr"></div>
	</div><!-- end of content -->
	<div class="clr"></div>
</div><!-- end of containerwrap -->
<!-- Footer -->
<div id="footer">
	<jdoc:include type="modules" name="footer"
style="none" />
	<p class="copyright">
		<?php
		// Fix wrong display of Joomla!® in RTL language
		if ($lang->isRtl())
		{
			$joomla = '<a href="https://www.joomla.org"
target="_blank">Joomla!</a><sup>&#174;&#x200E;</sup>';
		}
		else
		{
			$joomla = '<a href="https://www.joomla.org"
target="_blank">Joomla!</a><sup>&#174;</sup>';
		}
		echo JText::sprintf('JGLOBAL_ISFREESOFTWARE', $joomla);
		?>
	</p>
</div>
</body>
</html>
js/template.js000064400000005556151163244320007345 0ustar00/**
 * @package		Hathor
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 */

/**
 * Functions
 */

/**
 * Change the skip nav target to work with webkit browsers (Safari/Chrome)
and
 * Opera
 */
function setSkip() {
	var $ = jQuery.noConflict();
	var browser = $.browser;
	if (browser.chrome || browser.safari || browser.opera) {
		var $target = $('#skiptarget');
		$target.attr('href',"#skiptarget");
		$target.text("Start of main content");
		$target.attr("tabindex", "0");
		$('#skiplink').on("click", function(){
			$('#skiptarget').focus();
		});
	}
}

/**
 * Set the Aria Role based on the id
 *
 * @param id
 * @param rolevalue
 * @return
 */
function setRoleAttribute(id, rolevalue) {
	if (jQuery('#' + id).length) {
		jQuery('#'+ id).attr("role", rolevalue);
	}
}

/**
 * Set the WAI-ARIA Roles Specify the html id then aria role
 *
 * @return
 */
function setAriaRoleElementsById() {
	setRoleAttribute("header", "banner");
	setRoleAttribute("element-box", "main");
	setRoleAttribute("footer", "contentinfo");
	setRoleAttribute("nav", "navigation");
	setRoleAttribute("submenu", "navigation");
	setRoleAttribute("system-message", "alert");
}

/**
 * This sets the given Aria Property state to true for the given element
 *
 * @param el
 *            The element (tag.class)
 * @param prop
 *            The property to set to true
 * @return
 */
function setPropertyAttribute(el, prop) {
	if (jQuery(el).length) {
		jQuery(el).attr(prop, "true");
	}
}

/**
 * Set the WAI-ARIA Properties Specify the tag.class then the aria property
to
 * set to true If classes are changed on the fly (i.e. aria-invalid) they
need
 * to be changed there instead of here.
 *
 * @return
 */
function setAriaProperties() {
	setPropertyAttribute("input.required",
"aria-required");
	setPropertyAttribute("textarea.required",
"aria-required");
	setPropertyAttribute("input.readonly",
"aria-readonly");
	setPropertyAttribute("input.invalid", "aria-invalid");
	setPropertyAttribute("textarea.invalid",
"aria-invalid");
}


/**
 * Process file
 */

/** from accessible suckerfish menu by Matt Carroll,
 * mootooled by Bill Tomczak
 */

jQuery(function($){
	var $menu = $('#menu');
	if ($menu.length && !$menu.hasClass('disabled')) {
		$menu.find('li').each(function(){
			$(this).on('mouseenter', function(){
				$(this).addClass('sfhover');
			});
			$(this).on('mouseleave', function() {
				$(this).removeClass('sfhover');
			});
		});

		$menu.find('a').each(function() {
			$(this).on('focus', function() {
				$(this).addClass('sffocus');
				$(this).closest('li').addClass('sfhover');
			});
			$(this).on('blur', function() {
				$(this).removeClass('sffocus');
				$(this).closest('li').removeClass('sfhover');
			});
		});
	}
});

jQuery(function() {
	setSkip();
	setAriaRoleElementsById();
	setAriaProperties();
});language/en-GB/en-GB.tpl_hathor.ini000064400000003304151163244320012754
0ustar00; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

HATHOR="Hathor Administrator template"
TPL_HATHOR_ALTERNATE_MENU_DESC="Use the alternative menu which
integrates mouse and keyboard. JavaScript Required. The regular menu for
Hathor is accessible with or without Javascript, but leaves the mouse and
keyboard independent."
TPL_HATHOR_ALTERNATE_MENU_LABEL="Alternative Menu"
TPL_HATHOR_BOLD_TEXT_DESC="Use bold text."
TPL_HATHOR_BOLD_TEXT_LABEL="Bold Text"
TPL_HATHOR_CHECKMARK_ALL="Checkmark All"
TPL_HATHOR_COLOUR_CHOICE_BLUE="Blue"
TPL_HATHOR_COLOUR_CHOICE_DESC="Select the colour palette to use with
the template. You can use this option to select a high contrast version or
use it to create custom branding."
TPL_HATHOR_COLOUR_CHOICE_LABEL="Select Colour"
TPL_HATHOR_COLOUR_CHOICE_STANDARD="Standard"
TPL_HATHOR_COLOUR_CHOICE_HIGH_CONTRAST="High Contrast"
TPL_HATHOR_COLOUR_CHOICE_BROWN="Brown"
TPL_HATHOR_COM_MENUS_MENU="Menu"
TPL_HATHOR_COM_MODULES_CUSTOM_POSITION_LABEL="Select"
TPL_HATHOR_CPANEL_LINK_TEXT="Return to Control Panel"
TPL_HATHOR_GO="Go"
TPL_HATHOR_LOGO_DESC="Select or upload a custom logo for the
administrator template."
TPL_HATHOR_LOGO_LABEL="Logo"
TPL_HATHOR_MAIN_MENU="Main Menu"
TPL_HATHOR_SHOW_SITE_NAME_DESC="Show the site name in the template
header."
TPL_HATHOR_SHOW_SITE_NAME_LABEL="Show Site Name"
TPL_HATHOR_SKIP_TO_MAIN_CONTENT="Skip to Main Content"
TPL_HATHOR_SUB_MENU="Sub Menu"
TPL_HATHOR_XML_DESCRIPTION="Hathor is an accessible Administrator
template for Joomla! The Colour CSS files can also be used for custom
colour branding."
language/en-GB/en-GB.tpl_hathor.sys.ini000064400000001524151163244320013573
0ustar00; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

HATHOR="Hathor Administrator template"
TPL_HATHOR_POSITION_CP_SHELL="Unused"
TPL_HATHOR_POSITION_CPANEL="Control Panel"
TPL_HATHOR_POSITION_DEBUG="Debug"
TPL_HATHOR_POSITION_FOOTER="Footer"
TPL_HATHOR_POSITION_ICON="Quick Icons"
TPL_HATHOR_POSITION_LOGIN="Login"
TPL_HATHOR_POSITION_MENU="Menu"
TPL_HATHOR_POSITION_POSTINSTALL="Postinstall"
TPL_HATHOR_POSITION_STATUS="Status"
TPL_HATHOR_POSITION_SUBMENU="Submenu"
TPL_HATHOR_POSITION_TITLE="Title"
TPL_HATHOR_POSITION_TOOLBAR="Toolbar"
TPL_HATHOR_XML_DESCRIPTION="Hathor is an accessible Administrator
template for Joomla! The Colour CSS files can also be used for custom
colour branding."
less/buttons.less000064400000004215151163244320010103 0ustar00//
// Buttons
// This is a custom version of Bootstrap's buttons.less file suited
for Hathor's needs
// --------------------------------------------------


// Base styles
// --------------------------------------------------

// Core
#form-login .btn {
  display: inline-block;
  .ie7-inline-block();
  padding: 4px 14px;
  margin-bottom: 0; // For input.btn
  font-size: @baseFontSize;
  line-height: @baseLineHeight;
  *line-height: @baseLineHeight;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  .buttonBackground(@btnBackground, @btnBackgroundHighlight, @grayDark, 0
1px 1px rgba(255,255,255,.75));
  border: 1px solid @btnBorder;
  *border: 0; // Remove the border to prevent IE7's black border on
input:focus
  border-bottom-color: darken(@btnBorder, 10%);
  .border-radius(4px);
  .ie7-restore-left-whitespace(); // Give IE7 some love
  .box-shadow(~"inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px
rgba(0,0,0,.05)");

  // Hover state
  &:hover {
    color: @grayDark;
    text-decoration: none;
    background-color: darken(@white, 10%);
    *background-color: darken(@white, 15%); /* Buttons in IE7 don't
get borders, so darken on hover */
    background-position: 0 -15px;

    // transition is only when going to hover, otherwise the background
    // behind the gradient (there for IE<=9 fallback) gets mismatched
    .transition(background-position .1s linear);
  }

  // Focus state for keyboard and accessibility
  &:focus {
    .tab-focus();
  }

  // Active state
  &.active,
  &:active {
    background-color: darken(@white, 10%);
    background-color: darken(@white, 15%) e("\9");
    background-image: none;
    outline: 0;
    .box-shadow(~"inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px
rgba(0,0,0,.05)");
  }

  // Disabled state
  &.disabled,
  &[disabled] {
    cursor: default;
    background-color: darken(@white, 10%);
    background-image: none;
    .opacity(65);
    .box-shadow(none);
  }

}

// Button Sizes
// --------------------------------------------------

// Large
.btn-large {
  padding: 9px 14px;
  font-size: @baseFontSize + 2px;
  line-height: normal;
  .border-radius(5px);
}
.btn-large [class^="icon-"] {
  margin-top: 2px;
}
less/colour_baseline.less000064400000103471151163244320011556 0ustar00//
colour_baseline.less
//
// Baseline CSS for the Hathor colours.
// Compilers should include this in their colour's imports, but not
directly
// compile using this file.
// -----------------------------------------------------

// Core variables and mixins
@import "../../../../media/jui/less/mixins.less";

// Bootstrap Buttons
// Using override for Hathor to target specific instances only
@import "buttons.less";

// Bootstrap Forms
// Using override for Hathor since we're not pulling in all Bootstrap
form styles
@import "forms.less";

// Bootstrap Labels and Badges
@import "../../../../media/jui/less/labels-badges.less";

/*
 * General styles
 */
body {
	background-color: @bodyBackground;
	color: @textColor;
}

h1 {
	color: @textColor;
}

a:link {
	color: @linkColor;
}

a:visited {
	color: @linkColor;
}

/*
 * Overall Styles
 */
#header {
	background: @bodyBackground url(../images/j_logo.png) no-repeat;
}

#header h1.title {
	color: @textColor;
}

#nav {
	#gradient > .vertical(@gradientTop, @gradientBottom);
	border: 1px solid @mainBorder;
}

#content {
	background: @bodyBackground;
}

#no-submenu {
	border-bottom: 1px solid @mainBorder;
}

#element-box {
	background: @bodyBackground;
	border-right: 1px solid @mainBorder;
	border-bottom: 1px solid @mainBorder;
	border-left: 1px solid @mainBorder;
}

#element-box.login {
	border-top: 1px solid @mainBorder;
}

/*
 * Various Styles
 */
.enabled,
.success,
.allow,
span.writable {
	color: @successText;
}

.disabled,
p.error,
.warning,
.deny,
span.unwritable {
	color: @errorText;
}

.nowarning {
	color: @textColor;
}

.none,
.protected {
	color: @mainBorder;
}

span.note {
	background: @bodyBackground;
	color: @textColor;
}

div.checkin-tick {
	background: url(../images/admin/tick.png) 20px 50% no-repeat;
}

/*
 * Overlib
 */
.ol-foreground {
	background-color: @altBackground;
}

.ol-background {
	background-color: @successText;
}

.ol-textfont {
	color: @textColor;
}

.ol-captionfont {
	color: @bodyBackground;
}

.ol-captionfont a {
	color: @linkColor;
}

/*
 * Subheader, toolbar, page title
 */
div.subheader .padding {
	background: @bodyBackground;
}

.pagetitle h2 {
	color: @textColor;
}

div.configuration {
	color: @textColor;
	background-image: url(../images/menu/icon-16-config.png);
	background-repeat: no-repeat;
}

div.toolbar-box {
	border-right: 1px solid @mainBorder;
	border-bottom: 1px solid @mainBorder;
	border-left: 1px solid @mainBorder;
	background: @bodyBackground;
}

div.toolbar-list li {
	color: @textColor;
}

div.toolbar-list li.divider {
	border-right: 1px dotted @hoverBackground;
}

div.toolbar-list a {
	border-left: 1px solid @hoverBackground;
	border-top: 1px solid @hoverBackground;
	border-right: 1px solid @mainBorder;
	border-bottom: 1px solid @mainBorder;
	background: @altBackground;
}

div.toolbar-list a:hover {
	border-left: 1px solid @nwBorder;
	border-top: 1px solid @nwBorder;
	border-right: 1px solid @seBorder;
	border-bottom: 1px solid @seBorder;
	background: @hoverBackground;
	color: @toolbarColor;
}

div.btn-toolbar {
	margin-left: 5px;
	padding-top: 3px;
}

div.btn-toolbar li.divider {
	border-right: 1px dotted @hoverBackground;
}

div.btn-toolbar div.btn-group button {
	border-left: 1px solid @hoverBackground;
	border-top: 1px solid @hoverBackground;
	border-right: 1px solid @mainBorder;
	border-bottom: 1px solid @mainBorder;
	#gradient > .vertical(@gradientTop, @gradientBottom);
	padding: 5px 4px 5px 4px;
}

div.btn-toolbar div.btn-group button:hover {
	border-left: 1px solid @nwBorder;
	border-top: 1px solid @nwBorder;
	border-right: 1px solid @seBorder;
	border-bottom: 1px solid @seBorder;
	background: @hoverBackground;
	color: @toolbarColor;
	cursor: pointer;
}

div.btn-toolbar a {
	border-left: 1px solid @hoverBackground;
	border-top: 1px solid @hoverBackground;
	border-right: 1px solid @mainBorder;
	border-bottom: 1px solid @mainBorder;
	#gradient > .vertical(@gradientTop, @gradientBottom);
	padding: 6px 5px;
	text-align: center;
	white-space: nowrap;
	font-size: 1.2em;
	text-decoration: none;
}

div.btn-toolbar a:hover {
	border-left: 1px solid @nwBorder;
	border-top: 1px solid @nwBorder;
	border-right: 1px solid @seBorder;
	border-bottom: 1px solid @seBorder;
	background: @hoverBackground;
	color: @toolbarColor;
	cursor: pointer;
}

div.btn-toolbar div.btn-group button.inactive {
	background: @altBackground;
}

/*
 * Pane Slider pane Toggler styles
 */
.pane-sliders .title {
	color: @textColor;
}

.pane-sliders .panel {
	border: 1px solid @mainBorder;
}

.pane-sliders .panel h3 {
	#gradient > .vertical(@gradientTop, @gradientBottom);
	color: @linkColor;
}

.pane-sliders .panel h3:hover {
	background: @hoverBackground;
}

.pane-sliders .panel h3:hover a {
	text-decoration: none;
}

.pane-sliders .adminlist {
	border: 0 none;
}

.pane-sliders .adminlist td {
	border: 0 none;
}

.pane-toggler span {
	background: transparent url(../images/j_arrow.png) 5px 50% no-repeat;
}

.pane-toggler-down span {
	background: transparent url(../images/j_arrow_down.png) 5px 50% no-repeat;
}

.pane-toggler-down {
	border-bottom: 1px solid @mainBorder;
}

/*
 * Tabs
 */
dl.tabs dt {
	border: 1px solid @mainBorder;
	#gradient > .vertical(@gradientTop, @gradientBottom);
	color: @linkColor;
}

dl.tabs dt:hover {
	background: @hoverBackground;
}

dl.tabs dt.open {
	background: @bodyBackground;
	border-bottom: 1px solid @bodyBackground;
	color: @textColor;
}

dl.tabs dt.open a:visited {
	color: @textColor;
}

dl.tabs dt a:hover {
	text-decoration: none;
}

dl.tabs dt a:focus {
	text-decoration: underline;
}

div.current {
	border: 1px solid @mainBorder;
	background: @bodyBackground;
}

/*
 * New parameter styles
 */
div.current fieldset {
	border: none 0;
}

div.current fieldset.adminform {
	border: 1px solid @mainBorder;
}

/*
 * Login Settings
 */
#login-page .pagetitle h2 {
	background: transparent;
}

#login-page #header {
	border-bottom: 1px solid @mainBorder;
}

#login-page #lock {
	background: url(../images/j_login_lock.png) 50% 0 no-repeat;
}

#login-page #element-box.login {
	#gradient > .vertical(@gradientTop, @gradientBottom);
}

#form-login {
	background: @bodyBackground;
	border: 1px solid @mainBorder;
}

#form-login label {
	color: @textColor;
}

#form-login div.button1 a {
	color: @linkColor;
}

/*
 * Cpanel Settings
 */
#cpanel div.icon a, .cpanel div.icon a {
	color: @linkColor;
	border-left: 1px solid @hoverBackground;
	border-top: 1px solid @hoverBackground;
	border-right: 1px solid @mainBorder;
	border-bottom: 1px solid @mainBorder;
	#gradient > .vertical(@gradientTop, @gradientBottom);
}

#cpanel div.icon a:hover,
#cpanel div.icon a:focus,
.cpanel div.icon a:hover,
.cpanel div.icon a:focus {
	border-left: 1px solid @nwBorder;
	border-top: 1px solid @nwBorder;
	border-right: 1px solid @seBorder;
	border-bottom: 1px solid @seBorder;
	color: @linkColor;
	background: @hoverBackground;
}

/*
 * Form Styles
 */
fieldset {
	border: 1px @mainBorder solid;
}

legend {
	color: @textColor;
}

fieldset ul.checklist input:focus {
	outline: thin dotted @textColor;
}

fieldset#filter-bar {
	border-top: 0 solid @mainBorder;
	border-right: 0 solid @mainBorder;
	border-bottom: 1px solid @mainBorder;
	border-left: 0 solid @mainBorder;
}

fieldset#filter-bar ol, fieldset#filter-bar ul {
	border: 0;
}

fieldset#filter-bar ol li fieldset, fieldset#filter-bar ul li fieldset {
	border: 0;
}

/* Note: these visual cues should be augmented by aria */
.invalid {
	color: @errorText;
}

/* must be augmented by aria at the same time if changed dynamically by js
aria-invalid=true or aria-invalid=false */
input.invalid {
	border: 1px solid @errorText;
}

/* augmented by aria in template javascript */
input.readonly, span.faux-input {
	border: 0;
}

input.required {
	background-color: @inputBackground;
}

input.disabled {
	background-color: @disabledBackground;
}

input, select, span.faux-input {
	background-color: @bodyBackground;
	border: 1px solid @mainBorder;
}

/* Inputs used as buttons */
input[type="button"], input[type="submit"],
input[type="reset"] {
	color: @linkColor;
	#gradient > .vertical(@gradientTop, @gradientBottom);
}

input[type="button"]:hover, input[type="button"]:focus,
input[type="submit"]:hover, input[type="submit"]:focus,
input[type="reset"]:hover, input[type="reset"]:focus {
	background: @hoverBackground;
}

textarea {
	background-color: @bodyBackground;
	border: 1px solid @mainBorder;
}

input:focus, select:focus, textarea:focus, option:focus,
input:hover, select:hover, textarea:hover, option:hover {
	background-color: @hoverBackground;
	color: @linkColor;
}

/*
 * Option or Parameter styles
 */
.paramrules {
	background: @altBackground;
}

span.gi {
	color: @mainBorder;
}

/*
 * Admintable Styles
 */
table.admintable td.key, table.admintable td.paramlist_key {
	background-color: @altBackground;
	color: @textColor;
	border-bottom: 1px solid @mainBorder;
	border-right: 1px solid @mainBorder;
}

table.paramlist td.paramlist_description {
	background-color: @altBackground;
	color: @textColor;
	border-bottom: 1px solid @mainBorder;
	border-right: 1px solid @mainBorder;
}

/*
 * Admin Form Styles
 */
fieldset.adminform {
	border: 1px solid @mainBorder;
}

/*
 * Table styles are for use with tabular data
 */
table.adminform {
	background-color: @bodyBackground;
}

table.adminform tr.row0 {
	background-color: @bodyBackground;
}

table.adminform tr.row1 {
	background-color: @hoverBackground;
}

table.adminform th {
	color: @textColor;
	background: @bodyBackground;
}

table.adminform tr {
	border-bottom: 1px solid @mainBorder;
	border-right: 1px solid @mainBorder;
}

/*
 * Adminlist Table layout
 */
table.adminlist {
	border-spacing: 1px;
	background-color: @bodyBackground;
	color: @textColor;
}

table.adminlist.modal {
	border-top: 1px solid @mainBorder;
	border-right: 1px solid @mainBorder;
	border-left: 1px solid @mainBorder;
}

table.adminlist a {
	color: @linkColor;
}

table.adminlist thead th {
	background: @bodyBackground;
	color: @textColor;
	border-bottom: 1px solid @mainBorder;
}

/*
 * Table row styles
 */
table.adminlist tbody tr {
	background: @bodyBackground;
}

table.adminlist tbody tr.row1 {
	background: @bodyBackground;
}

table.adminlist tbody tr.row1:last-child td,
table.adminlist tbody tr.row1:last-child th {
	border-bottom: 1px solid @mainBorder;
}

table.adminlist tbody tr.row0:hover td,
table.adminlist tbody tr.row1:hover td,
table.adminlist tbody tr.row0:hover th,
table.adminlist tbody tr.row1:hover th,
table.adminlist tbody tr.row0:focus td,
table.adminlist tbody tr.row1:focus td,
table.adminlist tbody tr.row0:focus th,
table.adminlist tbody tr.row1:focus th {
	background-color: @hoverBackground;
}

table.adminlist tbody tr td,
table.adminlist tbody tr th {
	border-right: 1px solid @mainBorder;
}

table.adminlist tbody tr td:last-child {
	border-right: none;
}

table.adminlist tbody tr.row0:last-child td,
table.adminlist tbody tr.row0:last-child th {
	border-bottom: 1px solid @mainBorder;
}

table.adminlist tbody tr.row0 td,
table.adminlist tbody tr.row0 th {
	#gradient > .vertical(@gradientTop, @gradientBottom);
}

table.adminlist {
	border-bottom: 0 solid @mainBorder;
}

table.adminlist tfoot tr {
	color: @textColor;
}

/*
 * Table td/th styles
 */
table.adminlist tfoot td,
table.adminlist tfoot th {
	background-color: @bodyBackground;
	border-top: 1px solid @mainBorder;
}

/*
 * Adminlist buttons
 */
table.adminlist tr td.btns a {
	border: 1px solid @mainBorder;
	#gradient > .vertical(@gradientTop, @gradientBottom);
	color: @linkColor;
}

table.adminlist tr td.btns a:hover,
table.adminlist tr td.btns a:active,
table.adminlist tr td.btns a:focus {
	background-color: @bodyBackground;
}

/*
 * Saving order icon styling in admin tables
 */
a.saveorder {
	background: url(../images/admin/filesave.png) no-repeat;
}

a.saveorder.inactive {
	background-position: 0 -16px;
}

/*
 * Saving order icon styling in admin tables
 */
fieldset.batch {
	background: @bodyBackground;
}

/**
 * Button styling
 */
button {
	color: @toolbarColor;
	border: 1px solid @mainBorder;
	#gradient > .vertical(@gradientTop, @gradientBottom);
}

button:hover,
button:focus {
	background: @hoverBackground;
}

.invalid {
	color: #ff0000;
}

/* Button 1 Type */
.button1 {
	border: 1px solid @mainBorder;
	color: @linkColor;
	#gradient > .vertical(@gradientTop, @gradientBottom);
}

/* Use this if you add images to the buttons such as directional arrows */
.button1 a {
	color: @linkColor;
/* add padding if you are using the directional images */
/* padding: 0 30px 0 6px; */
}

.button1 a:hover,
.button1 a:focus {
	background: @hoverBackground;
}

/* Button 2 Type */
.button2-left,
.button2-right {
	border: 1px solid @mainBorder;
	#gradient > .vertical(@gradientTop, @gradientBottom);
}

.button2-left a,
.button2-right a,
.button2-left span,
.button2-right span {
	color: @linkColor;
}

/* these are inactive buttons */
.button2-left span,
.button2-right span {
	color: #999999;
}

.page span,
.blank span {
	color: @linkColor;
}

.button2-left a:hover,
.button2-right a:hover,
.button2-left a:focus,
.button2-right a:focus {
	background: @hoverBackground;
}

/**
 * Pagination styles
 */

/* Grey out the current page number */
.pagination .page span {
	color: #999999;
}

/**
 * Tooltips
 */
.tip {
	background: #000000;
	border: 1px solid #FFFFFF;
}

.tip-title {
	background: url(../images/selector-arrow-std.png) no-repeat;
}

/**
 * Calendar
 */
a img.calendar {
	background: url(../images/calendar.png) no-repeat;
}

/**
 * JGrid styles
 */
.jgrid span.publish {
	background-image: url(../images/admin/tick.png);
}

.jgrid span.unpublish {
	background-image: url(../images/admin/publish_x.png);
}

.jgrid span.archive {
	background-image: url(../images/menu/icon-16-archive.png);
}

.jgrid span.trash {
	background-image: url(../images/menu/icon-16-trash.png);
}

.jgrid span.default {
	background-image: url(../images/menu/icon-16-default.png);
}

.jgrid span.notdefault {
	background-image: url(../images/menu/icon-16-notdefault.png);
}

.jgrid span.checkedout {
	background-image: url(../images/admin/checked_out.png);
}

.jgrid span.downarrow {
	background-image: url(../images/admin/downarrow.png);
}

.jgrid span.downarrow_disabled {
	background-image: url(../images/admin/downarrow0.png);
}

.jgrid span.uparrow {
	background-image: url(../images/admin/uparrow.png);
}

.jgrid span.uparrow_disabled {
	background-image: url(../images/admin/uparrow0.png);
}

.jgrid span.published {
	background-image: url(../images/admin/publish_g.png);
}

.jgrid span.expired {
	background-image: url(../images/admin/publish_r.png);
}

.jgrid span.pending {
	background-image: url(../images/admin/publish_y.png);
}

.jgrid span.warning {
	background-image: url(../images/admin/publish_y.png);
}

/**
 * Toolbar icons
 * These icons are used for the toolbar buttons
 * The classes are constructed dynamically when the toolbar is created
 */
.icon-32-send {
	background-image: url(../images/toolbar/icon-32-send.png);
}

.icon-32-delete {
	background-image: url(../images/toolbar/icon-32-delete.png);
}

.icon-32-help {
	background-image: url(../images/toolbar/icon-32-help.png);
}

.icon-32-cancel {
	background-image: url(../images/toolbar/icon-32-cancel.png);
}

.icon-32-checkin {
	background-image: url(../images/toolbar/icon-32-checkin.png);
}

.icon-32-options {
	background-image: url(../images/toolbar/icon-32-config.png);
}

.icon-32-apply {
	background-image: url(../images/toolbar/icon-32-apply.png);
}

.icon-32-back {
	background-image: url(../images/toolbar/icon-32-back.png);
}

.icon-32-forward {
	background-image: url(../images/toolbar/icon-32-forward.png);
}

.icon-32-save {
	background-image: url(../images/toolbar/icon-32-save.png);
}

.icon-32-edit {
	background-image: url(../images/toolbar/icon-32-edit.png);
}

.icon-32-copy {
	background-image: url(../images/toolbar/icon-32-copy.png);
}

.icon-32-move {
	background-image: url(../images/toolbar/icon-32-move.png);
}

.icon-32-new {
	background-image: url(../images/toolbar/icon-32-new.png);
}

.icon-32-upload {
	background-image: url(../images/toolbar/icon-32-upload.png);
}

.icon-32-assign {
	background-image: url(../images/toolbar/icon-32-publish.png);
}

.icon-32-html {
	background-image: url(../images/toolbar/icon-32-html.png);
}

.icon-32-css {
	background-image: url(../images/toolbar/icon-32-css.png);
}

.icon-32-menus {
	background-image: url(../images/toolbar/icon-32-menu.png);
}

.icon-32-publish {
	background-image: url(../images/toolbar/icon-32-publish.png);
}

.icon-32-unblock {
	background-image: url(../images/toolbar/icon-32-unblock.png);
}

.icon-32-unpublish {
	background-image: url(../images/toolbar/icon-32-unpublish.png);
}

.icon-32-restore {
	background-image: url(../images/toolbar/icon-32-revert.png);
}

.icon-32-trash {
	background-image: url(../images/toolbar/icon-32-trash.png);
}

.icon-32-archive {
	background-image: url(../images/toolbar/icon-32-archive.png);
}

.icon-32-unarchive {
	background-image: url(../images/toolbar/icon-32-unarchive.png);
}

.icon-32-preview {
	background-image: url(../images/toolbar/icon-32-preview.png);
}

.icon-32-default {
	background-image: url(../images/toolbar/icon-32-default.png);
}

.icon-32-refresh {
	background-image: url(../images/toolbar/icon-32-refresh.png);
}

.icon-32-save-new {
	background-image: url(../images/toolbar/icon-32-save-new.png);
}

.icon-32-save-copy {
	background-image: url(../images/toolbar/icon-32-save-copy.png);
}

.icon-32-error {
	background-image: url(../images/toolbar/icon-32-error.png);
}

.icon-32-new-style {
	background-image: url(../images/toolbar/icon-32-new-style.png);
}

.icon-32-delete-style {
	background-image: url(../images/toolbar/icon-32-delete-style.png);
}

.icon-32-purge {
	background-image: url(../images/toolbar/icon-32-purge.png);
}

.icon-32-remove {
	background-image: url(../images/toolbar/icon-32-remove.png);
}

.icon-32-featured {
	background-image: url(../images/toolbar/icon-32-featured.png);
}

.icon-32-unfeatured {
	background-image: url(../images/toolbar/icon-32-featured.png);
	background-position: 0% 100%;
}

.icon-32-export {
	background-image: url(../images/toolbar/icon-32-export.png);
}

.icon-32-stats {
	background-image: url(../images/toolbar/icon-32-stats.png);
}

.icon-32-print {
	background-image: url(../images/toolbar/icon-32-print.png);
}

.icon-32-batch {
	background-image: url(../images/toolbar/icon-32-batch.png);
}

.icon-32-envelope {
	background-image: url(../images/toolbar/icon-32-messaging.png);
}

.icon-32-download {
	background-image: url(../images/toolbar/icon-32-export.png);
}

.icon-32-bars {
	background-image: url(../images/toolbar/icon-32-stats.png);
}

/**
 * Quick Icons
 * Also knows as Header Icons
 * These are used for the Quick Icons on the Control Panel
 * The same classes are also assigned the Component Title
 */
.icon-48-categories {
	background-image: url(../images/header/icon-48-category.png);
}

.icon-48-category-edit {
	background-image: url(../images/header/icon-48-category.png);
}

.icon-48-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}

.icon-48-generic {
	background-image: url(../images/header/icon-48-generic.png);
}

.icon-48-banners {
	background-image: url(../images/header/icon-48-banner.png);
}

.icon-48-banners-categories {
	background-image: url(../images/header/icon-48-banner-categories.png);
}

.icon-48-banners-category-edit {
	background-image: url(../images/header/icon-48-banner-categories.png);
}

.icon-48-banners-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}

.icon-48-banners-clients {
	background-image: url(../images/header/icon-48-banner-client.png);
}

.icon-48-banners-tracks {
	background-image: url(../images/header/icon-48-banner-tracks.png);
}

.icon-48-checkin {
	background-image: url(../images/header/icon-48-checkin.png);
}

.icon-48-clear {
	background-image: url(../images/header/icon-48-clear.png);
}

.icon-48-contact {
	background-image: url(../images/header/icon-48-contacts.png);
}

.icon-48-contact-categories {
	background-image: url(../images/header/icon-48-contacts-categories.png);
}

.icon-48-contact-category-edit {
	background-image: url(../images/header/icon-48-contacts-categories.png);
}

.icon-48-contact-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}

.icon-48-purge {
	background-image: url(../images/header/icon-48-purge.png);
}

.icon-48-cpanel {
	background-image: url(../images/header/icon-48-cpanel.png);
}

.icon-48-config {
	background-image: url(../images/header/icon-48-config.png);
}

.icon-48-groups {
	background-image: url(../images/header/icon-48-groups.png);
}

.icon-48-groups-add {
	background-image: url(../images/header/icon-48-groups-add.png);
}

.icon-48-levels {
	background-image: url(../images/header/icon-48-levels.png);
}

.icon-48-levels-add {
	background-image: url(../images/header/icon-48-levels-add.png);
}

.icon-48-module {
	background-image: url(../images/header/icon-48-module.png);
}

.icon-48-menu {
	background-image: url(../images/header/icon-48-menu.png);
}

.icon-48-menu-add {
	background-image: url(../images/header/icon-48-menu-add.png);
}

.icon-48-menumgr {
	background-image: url(../images/header/icon-48-menumgr.png);
}

.icon-48-trash {
	background-image: url(../images/header/icon-48-trash.png);
}

.icon-48-user {
	background-image: url(../images/header/icon-48-user.png);
}

.icon-48-user-add {
	background-image: url(../images/header/icon-48-user-add.png);
}

.icon-48-user-edit {
	background-image: url(../images/header/icon-48-user-edit.png);
}

.icon-48-user-profile {
	background-image: url(../images/header/icon-48-user-profile.png);
}

.icon-48-inbox {
	background-image: url(../images/header/icon-48-inbox.png);
}

.icon-48-new-privatemessage {
	background-image: url(../images/header/icon-48-new-privatemessage.png);
}

.icon-48-msgconfig {
	background-image: url(../images/header/icon-48-message_config.png);
}

.icon-48-langmanager {
	background-image: url(../images/header/icon-48-language.png);
}

.icon-48-mediamanager {
	background-image: url(../images/header/icon-48-media.png);
}

.icon-48-plugin {
	background-image: url(../images/header/icon-48-plugin.png);
}

.icon-48-help_header {
	background-image: url(../images/header/icon-48-help_header.png);
}

.icon-48-impressions {
	background-image: url(../images/header/icon-48-stats.png);
}

.icon-48-browser {
	background-image: url(../images/header/icon-48-stats.png);
}

.icon-48-searchtext {
	background-image: url(../images/header/icon-48-stats.png);
}

.icon-48-thememanager {
	background-image: url(../images/header/icon-48-themes.png);
}

.icon-48-writemess {
	background-image: url(../images/header/icon-48-writemess.png);
}

.icon-48-featured {
	background-image: url(../images/header/icon-48-featured.png);
}

.icon-48-sections {
	background-image: url(../images/header/icon-48-section.png);
}

.icon-48-article-add {
	background-image: url(../images/header/icon-48-article-add.png);
}

.icon-48-article-edit {
	background-image: url(../images/header/icon-48-article-edit.png);
}

.icon-48-article {
	background-image: url(../images/header/icon-48-article.png);
}

.icon-48-content-categories {
	background-image: url(../images/header/icon-48-category.png);
}

.icon-48-content-category-edit {
	background-image: url(../images/header/icon-48-category.png);
}

.icon-48-content-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}

.icon-48-install {
	background-image: url(../images/header/icon-48-extension.png);
}

.icon-48-dbbackup {
	background-image: url(../images/header/icon-48-backup.png);
}

.icon-48-dbrestore {
	background-image: url(../images/header/icon-48-dbrestore.png);
}

.icon-48-dbquery {
	background-image: url(../images/header/icon-48-query.png);
}

.icon-48-systeminfo {
	background-image: url(../images/header/icon-48-info.png);
}

.icon-48-massmail {
	background-image: url(../images/header/icon-48-massmail.png);
}

.icon-48-redirect {
	background-image: url(../images/header/icon-48-redirect.png);
}

.icon-48-search {
	background-image: url(../images/header/icon-48-search.png);
}

.icon-48-finder {
	background-image: url(../images/header/icon-48-search.png);
}

.icon-48-newsfeeds {
	background-image: url(../images/header/icon-48-newsfeeds.png);
}

.icon-48-newsfeeds-categories {
	background-image: url(../images/header/icon-48-newsfeeds-cat.png);
}

.icon-48-newsfeeds-category-edit {
	background-image: url(../images/header/icon-48-newsfeeds-cat.png);
}

.icon-48-newsfeeds-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}

.icon-48-weblinks {
	background-image: url(../images/header/icon-48-links.png);
}

.icon-48-weblinks-categories {
	background-image: url(../images/header/icon-48-links-cat.png);
}

.icon-48-weblinks-category-edit {
	background-image: url(../images/header/icon-48-links-cat.png);
}

.icon-48-weblinks-category-add {
	background-image: url(../images/header/icon-48-category-add.png);
}

.icon-48-tags {
	background-image: url(../images/header/icon-48-tags.png);
}

.icon-48-assoc {
	background-image: url(../images/header/icon-48-assoc.png);
}

.icon-48-puzzle {
 	background-image: url(../images/header/icon-48-puzzle.png);
}

/**
 * General styles
 */
div.message {
	border: 1px solid @mainBorder;
	color: @textColor;
}

.helpFrame {
	border-left: 0 solid @mainBorder;
	border-right: none;
	border-top: none;
	border-bottom: none;
}

.outline {
	border: 1px solid @mainBorder;
	background: @bodyBackground;
}

/**
 * Modal Styles
 */
dl.menu_type dt {
	border-bottom: 1px solid @mainBorder;
}

ul#new-modules-list {
	border-top: 1px solid @mainBorder;
}

/**
 * User Accessibility
 */

/* Skip to Content Visual Styling */
#skiplinkholder a, #skiplinkholder a:link, #skiplinkholder a:visited {
	color: @bodyBackground;
	background: @linkColor;
	border-bottom: solid #336 2px;
}

/**
 * Admin Form Styles
 */
fieldset.panelform {
	border: none 0;
}

/**
 * ACL STYLES relocated from com_users/media/grid.css
 */
a.move_up {
	background-image: url('../images/admin/uparrow.png');
}

span.move_up {
	background-image: url('../images/admin/uparrow0.png');
}

a.move_down {
	background-image: url('../images/admin/downarrow.png');
}

span.move_down {
	background-image: url('../images/admin/downarrow0.png');
}

a.grid_false {
	background-image: url('../images/admin/publish_x.png');
}

a.grid_true {
	background-image: url('../images/admin/tick.png');
}

a.grid_trash {
	background-image: url('../images/admin/icon-16-trash.png');
}

/**
 * ACL PANEL STYLES
 */

/* All Tabs */

tr.row1 {
	background-color: @altBackground;
}

/* Summary Tab */
table.aclsummary-table td.col2,
table.aclsummary-table th.col2,
table.aclsummary-table td.col3,
table.aclsummary-table th.col3,
table.aclsummary-table td.col4,
table.aclsummary-table th.col4,
table.aclsummary-table td.col5,
table.aclsummary-table th.col5,
table.aclsummary-table td.col6,
table.aclsummary-table th.col6,
table.aclmodify-table td.col2,
table.aclmodify-table th.col2 {
	border-left: 1px solid @mainBorder;
}

/* Icons */

span.icon-16-unset {
	background: url(../images/admin/icon-16-denyinactive.png) no-repeat;
}

span.icon-16-allowed {
	background: url(../images/admin/icon-16-allow.png) no-repeat;
}

span.icon-16-denied {
	background: url(../images/admin/icon-16-deny.png) no-repeat;
}

span.icon-16-locked {
	background: url(../images/admin/checked_out.png) 0 0 no-repeat;
}

label.icon-16-allow {
	background: url(../images/admin/icon-16-allow.png) no-repeat;
}

label.icon-16-deny {
	background: url(../images/admin/icon-16-deny.png) no-repeat;
}

a.icon-16-allow {
	background: url(../images/admin/icon-16-allow.png) no-repeat;
}

a.icon-16-deny {
	background: url(../images/admin/icon-16-deny.png) no-repeat;
}

a.icon-16-allowinactive {
	background: url(../images/admin/icon-16-allowinactive.png) no-repeat;
}

a.icon-16-denyinactive {
	background: url(../images/admin/icon-16-denyinactive.png) no-repeat;
}

/* ACL footer/legend */

ul.acllegend li.acl-allowed {
	background: url(../images/admin/icon-16-allow.png) no-repeat left;
}

ul.acllegend li.acl-denied {
	background: url(../images/admin/icon-16-deny.png) no-repeat left;
}

li.acl-editgroups,
li.acl-resetbtn {
	background-color: @altBackground;
	border: 1px solid @mainBorder;
}

li.acl-editgroups a,
li.acl-resetbtn a {
	color: @linkColor;
}

li.acl-editgroups:hover,
li.acl-resetbtn:hover,
li.acl-editgroups:focus,
li.acl-resetbtn:focus {
	background-color: @hoverBackground;
}

/* ACL Config --------- */
table#acl-config {
	border: 1px solid @mainBorder;
}

table#acl-config th,
table#acl-config td {
	background: @altBackground;
	border-bottom: 1px solid @mainBorder;
}

table#acl-config th.acl-groups {
	border-right: 1px solid @mainBorder;
}

/**
* Mod_rewrite Warning
*/
#jform_sef_rewrite-lbl {
	background: url(../images/admin/icon-16-notice-note.png) right top
no-repeat;
}

/**
* Permission Rules
*/

#permissions-sliders .tip {
	background: @bodyBackground;
	border: 1px solid @mainBorder;
}

#permissions-sliders ul#rules,
#permissions-sliders ul#rules ul {
	border: solid 0 @mainBorder;
	background: @bodyBackground;
}

ul#rules li .pane-sliders .panel h3.title {
	border: solid 0 @mainBorder;
}

#permissions-sliders ul#rules .pane-slider {
	border: solid 1px @mainBorder;
}

#permissions-sliders ul#rules li h3 {
	border: solid 1px @mainBorder;
}

#permissions-sliders ul#rules li h3.pane-toggler-down a {
	border: solid 0;
}

#permissions-sliders ul#rules .group-kind {
	color: @textColor;
}

#permissions-sliders ul#rules table.group-rules {
	border: solid 1px @mainBorder;
}

#permissions-sliders ul#rules table.group-rules td {
	border-right: solid 1px @mainBorder;
	border-bottom: solid 1px @mainBorder;
}

#permissions-sliders ul#rules table.group-rules th {
	background: @hoverBackground;
	border-right: solid 1px @mainBorder;
	border-bottom: solid 1px @mainBorder;
	color: @textColor;
}

ul#rules table.aclmodify-table {
	border: solid 1px @mainBorder;
}

ul#rules table.group-rules td label {
	border: solid 0 @mainBorder;
}

#permissions-sliders ul#rules .mypanel {
	border: solid 0 @mainBorder;
}

#permissions-sliders  ul#rules  table.group-rules td {
	background: @bodyBackground;
}

#permissions-sliders span.level {
	color: @mainBorder;
	background-image: none;
}

/*
 * Debug styles
 */
.check-0,
table.adminlist tbody td.check-0 {
	background-color: @permissionDefault;
}

.check-a,
table.adminlist tbody td.check-a {
	background-color: @permissionAllowed;
}

.check-d,
table.adminlist tbody td.check-d {
	background-color: @permissionDenied;
}

/**
 * System Messages
 */

#system-message dd ul {
	color: @textColor;
}

#system-message dd.error ul {
	color: @textColor;
}

#system-message dd.message ul {
	color: @textColor;
}

#system-message dd.notice ul {
	color: @textColor;
}

/** CSS file for Accessible Admin Menu
 * based on Matt Carrolls' son of suckerfish
 * with javascript by Bill Tomczak
 */

/* Note: set up the font-size on the id and used 100% on the elements.
	If ul/li/a are different ems, then the shifting back via non-js keyboard
	doesn't work properly */

/**
 * Menu Styling
 */
#menu {
/* this is on the main ul */
	color: @textColor;
}

#menu ul.dropdown-menu {
/* all lists */
	#gradient > .vertical(@gradientTop, @gradientBottom);
	color: @textColor;
}

#menu ul.dropdown-menu li.dropdown-submenu {
	background: url(../images/j_arrow.png) no-repeat right 50%;
}

#menu ul.dropdown-menu li.divider {
	margin-bottom: 0;
	border-bottom: 1px dotted @mainBorder;
}

#menu a {
	color: @toolbarColor;
	background-repeat: no-repeat;
	background-position: left 50%;
}

#menu li {
/* all list items */
	border-right: 1px solid @mainBorder;
	background-color: transparent;
}

#menu li a:hover, #menu li a:focus {
	background-color: @hoverBackground;
}

#menu li.disabled a:hover,
#menu li.disabled a:focus,
#menu li.disabled a {
	color: @mainBorder;
	#gradient > .vertical(@gradientTop, @gradientBottom);
}

#menu li ul {
/* second-level lists */
	border: 1px solid @mainBorder;
}

#menu li li {
/* second-level row */
	background-color: transparent;
}

/**
 * Styling parents
 */

/* 1 level - sfhover */
#menu li.sfhover a {
	background-color: @hoverBackground;
}

/* 2 level - normal */
#menu li.sfhover li a {
	background-color: transparent;
}

/* 2 level - hover */
#menu li.sfhover li.sfhover a, #menu li li a:focus {
	background-color: @hoverBackground;
}

/* 3 level - normal */
#menu li.sfhover li.sfhover li a {
	background-color: transparent;
}

/* 3 level - hover */
#menu li.sfhover li.sfhover li.sfhover a, #menu li li li a:focus {
	background-color: @hoverBackground;
}

/* bring back the focus elements into view */
#menu li li a:focus, #menu li li li a:focus {
	background-color: @hoverBackground;
}

#menu li li li a:focus {
	background-color: @hoverBackground;
}

/**
 * Submenu styling
 */
#submenu {
	border-bottom: 1px solid @mainBorder;
/* border-bottom plus padding-bottom is the technique */
/* This is the background befind the tabs */
/*background: @bodyBackground;*/
}

#submenu li, #submenu span.nolink {
	#gradient > .vertical(@gradientTop, @gradientBottom);
	border: 1px solid @mainBorder;
	color: @linkColor;
}

#submenu li:hover, #submenu li:focus {
	background: @hoverBackground;
}

#submenu li.active, #submenu span.nolink.active {
	background: @bodyBackground;
	border-bottom: 1px solid @bodyBackground;
}

#submenu li.active a,
#submenu span.nolink.active {
	color: #000;
}

.element-invisible {
	margin: 0;
	padding: 0;
}

/* -- Codemirror Editor  ----------- */
div.CodeMirror-wrapping {
	border: 1px solid @mainBorder;
}

/* User Notes */
table.adminform tr.row0 {
	background-color: @bodyBackground;
}

ul.alternating > li:nth-child(odd) {
	background-color: @bodyBackground;
}

ul.alternating > li:nth-child(even) {
	background-color: @altBackground;
}

ol.alternating > li:nth-child(odd) {
	background-color: @bodyBackground;
}

ol.alternating > li:nth-child(even) {
	background-color: @altBackground;
}

/* Installer Database */
#installer-database, #installer-discover, #installer-update,
#installer-warnings {
	border-top: 1px solid @mainBorder;
}

#installer-database p.warning {
	background: transparent url(../images/admin/icon-16-deny.png) center left
no-repeat;
}

#installer-database p.nowarning {
	background: transparent url(../images/admin/icon-16-allow.png) center left
no-repeat;
}

/* Override default bootstrap font-size */
.input-append,
.input-prepend {
	font-size: 1.2em;
}
less/colour_blue.less000064400000002233151163244320010715 0ustar00//
colour_blue.less
//
// Less to compile Hathor in the blue colour scheme
// -----------------------------------------------------

/**
 * #2c2c2c	Text
 * #054993	Links
 * #ffffff	Background, border, text
 * #c3d2e5	Background alternate, button/icon/menu background
 * #a5bbd4-c3d2e5 Gradient Background
 * #e5f0fa	Background (input required)
 * #e5d9c3	Background Hover, Top/Left icon borders
 * #738498	Main borders
 * #868778	Top/Left hover borders
 * #f6f7db	Right/Bottom hover borders
 *
 * Special Use Colors:
 * #a20000	Text Error, border invalid
 * #cccccc	Text (faded)
 * #005800	Text (success)
 * #eeeeee	Background (input disabled)
 * #ffffcf	Background permissions debug
 * #cfffda	Background permissions debug
 * #ffcfcf	Background permissions debug
 */

// Import the variables file first to get common variables loaded
@import "hathor_variables.less";

// Define variables unique to this colour scheme, as well as override
variables already defined in the common file
@altBackground:      #c3d2e5;
@gradientTop:        #a5bbd4;
@gradientBottom:     #c3d2e5;
@mainBorder:         #738498;

// Import the baseline to compile the CSS
@import "colour_baseline.less";
less/colour_brown.less000064400000002425151163244320011120 0ustar00//
colour_brown.less
//
// Less to compile Hathor in the brown colour scheme
// -----------------------------------------------------

/**
 * #2c2c2c	Text
 * #054993	Links
 * #ffffff	Background, border, text
 * #d5c1b2	Background alternate, button/icon/menu background
 * #d5c1b2-d5c1b2 Gradient Background
 * #e5f0fa	Background (input required)
 * #e1d3c8	Background Hover, Top/Left icon borders
 * #000000	Main borders
 * #000000	Top/Left hover borders
 * #000000	Right/Bottom hover borders
 *
 * Special Use Colors:
 * #a20000	Text Error, border invalid
 * #cccccc	Text (faded)
 * #005800	Text (success)
 * #eeeeee	Background (input disabled)
 * #ffffcf	Background permissions debug
 * #cfffda	Background permissions debug
 * #ffcfcf	Background permissions debug
 */

// Import the variables file first to get common variables loaded
@import "hathor_variables.less";

// Define variables unique to this colour scheme, as well as override
variables already defined in the common file
@altBackground:      #d5c1b2;
@gradientTop:        #d5c1b2;
@gradientBottom:     #d5c1b2;
@mainBorder:         #000000;
@toolbarColor:       #054993;
@hoverBackground:    #e5d9c3;
@nwBorder:           #868778;
@seBorder:           #f6f7db;

// Import the baseline to compile the CSS
@import "colour_baseline.less";
less/colour_standard.less000064400000002243151163244320011567 0ustar00//
colour_standard.less
//
// Less to compile Hathor in the default colour scheme
// -----------------------------------------------------

/**
 * Main colors:
 * #2c2c2c	Text
 * #054993	Links
 * #ffffff	Background, border, text
 * #f9fade	Background alternate, button/icon/menu background
 * #e5f0fa	Background (input required)
 * #e3e4ca	Background Hover, Right/Bottom icon borders
 * #c7c8b2	Main borders
 * #868778	Top/Left icon hover borders
 * #f6f7db	Right/Bottom icon hover borders
 *
 * Special Use Colors:
 * #a20000	Text Error, border invalid
 * #cccccc	Text (faded)
 * #005800	Text (success)
 * #eeeeee	Background (input disabled)
 * #ffffcf	Background‚ permissions debug
 * #cfffda	Background‚ permissions debug
 * #ffcfcf	Background‚ permissions debug
 */

// Import the variables file first to get common variables loaded
@import "hathor_variables.less";

// Define variables unique to this colour scheme, as well as override
variables already defined in the common file
@altBackground:      #f9fade;
@gradientTop:        #f9fade;
@gradientBottom:     #f9fade;
@mainBorder:         #c7c8b2;

// Import the baseline to compile the CSS
@import "colour_baseline.less";
less/forms.less000064400000010766151163244320007543 0ustar00//
// Forms
// This is a custom version of Bootstrap's forms.less file suited for
Hathor's needs
// --------------------------------------------------

// Ensure input-prepend/append never wraps
.input-append input[class*="span"],
.input-append .uneditable-input[class*="span"],
.input-prepend input[class*="span"],
.input-prepend .uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"],
.row-fluid .input-prepend [class*="span"],
.row-fluid .input-append [class*="span"] {
  display: inline-block;
}
// Allow us to put symbols and text within the input field for a cleaner
look
.input-append,
.input-prepend {
  margin-bottom: 5px;
  font-size: 0;
  white-space: nowrap; // Prevent span and input from separating

  input,
  select,
  .uneditable-input {
    position: relative; // placed here by default so that on :focus we can
place the input above the .add-on for full border and box-shadow goodness
    margin-bottom: 0; // prevent bottom margin from screwing up alignment
in stacked forms
    *margin-left: 0;
    font-size: @baseFontSize;
    vertical-align: top;
    .border-radius(0 @inputBorderRadius @inputBorderRadius 0);
    // Make input on top when focused so blue border and shadow always show
    &:focus {
      z-index: 2;
    }
  }
  .add-on {
    display: inline-block;
    width: auto;
    height: @baseLineHeight;
    min-width: 16px;
    padding: 4px 5px;
    font-size: @baseFontSize;
    font-weight: normal;
    line-height: @baseLineHeight;
    text-align: center;
    text-shadow: 0 1px 0 @white;
    background-color: @grayLighter;
    border: 1px solid #ccc;
  }
  .add-on,
  .btn {
    margin-left: -1px;
    vertical-align: top;
    .border-radius(0);
  }
  .active {
    background-color: lighten(@green, 30);
    border-color: @green;
  }
}
.input-prepend {
  .add-on,
  .btn {
    margin-right: -1px;
  }
  .add-on:first-child,
  .btn:first-child {
    .border-radius(@inputBorderRadius 0 0 @inputBorderRadius);
  }
}
.input-append {
  input,
  select,
  .uneditable-input {
    .border-radius(@inputBorderRadius 0 0 @inputBorderRadius);
  }
  .add-on:last-child,
  .btn:last-child {
    .border-radius(0 @inputBorderRadius @inputBorderRadius 0);
  }
}
// Remove all border-radius for inputs with both prepend and append
.input-prepend.input-append {
  input,
  select,
  .uneditable-input {
    .border-radius(0);
  }
  .add-on:first-child,
  .btn:first-child {
    margin-right: -1px;
    .border-radius(@inputBorderRadius 0 0 @inputBorderRadius);
  }
  .add-on:last-child,
  .btn:last-child {
    margin-left: -1px;
    .border-radius(0 @inputBorderRadius @inputBorderRadius 0);
  }
}
/* Allow for input prepend/append in search forms */
.form-search .input-append .search-query,
.form-search .input-prepend .search-query {
  .border-radius(0); // Override due to specificity
}
.form-search .input-append .search-query {
  .border-radius(14px 0 0 14px)
}
.form-search .input-append .btn {
  .border-radius(0 14px 14px 0)
}
.form-search .input-prepend .search-query {
  .border-radius(0 14px 14px 0)
}
.form-search .input-prepend .btn {
  .border-radius(14px 0 0 14px)
}
.form-search,
.form-inline,
.form-horizontal {
  input,
  textarea,
  select,
  .help-inline,
  .uneditable-input,
  .input-prepend,
  .input-append {
    display: inline-block;
    .ie7-inline-block();
    margin-bottom: 0;
    vertical-align: middle;
  }
  // Re-hide hidden elements due to specifity
  .hide {
    display: none;
  }
}
// Remove margin for input-prepend/-append
.form-search .input-append,
.form-inline .input-append,
.form-search .input-prepend,
.form-inline .input-prepend {
  margin-bottom: 0;
}
/* Accessible Hidden Elements (good for hidden labels and such) */
.element-invisible{
	position: absolute;
	padding: 0 !important;
	margin: 0 !important;
	border: 0;
	height: 1px;
	width: 1px !important;
	overflow: hidden;
}

// Login form only
// Shared size and type resets
#form-login select,
#form-login input[type="text"],
#form-login input[type="password"] {
  display: inline-block;
  padding: 4px 6px;
  margin-bottom: 9px;
  font-size: @baseFontSize;
  line-height: @baseLineHeight;
  color: @gray;
  .border-radius(@inputBorderRadius);
  width: 175px;
}

/* Field subform repeatable */
.subform-repeatable-wrapper{

	div.btn-toolbar{
		float: none;
	}

	.text-right{
		text-align: right;
	}

	.ui-sortable-helper{
		background: @white;
	}

	tr.ui-sortable-helper{
		display: table;
	}

	.subform-repeatable-group{
		clear: both;
	}
}
less/hathor_variables.less000064400000010426151163244320011723 0ustar00//
hathor_variables.less
//
// Less file containing Bootstrap variables needed to compile its CSS
// -----------------------------------------------------

// Grays
// -------------------------
@black:                 #000000;
@grayDarker:            #222222;
@grayDark:              #333333;
@gray:                  #555555;
@grayLight:             #999999;
@grayLighter:           #eeeeee;
@white:                 #ffffff;

// Accent colors
// -------------------------
@blue:                  #049cdb;
@blueDark:              #0064cd;
@green:                 #46a546;
@red:                   #9d261d;
@yellow:                #ffc40d;
@orange:                #f89406;
@pink:                  #c3325f;
@purple:                #7a43b6;

// Scaffolding
// -------------------------
@bodyBackground:        @white;
@textColor:             #2c2c2c;

// Links
// -------------------------
@linkColor:             #054993;
@linkColorHover:        darken(@linkColor, 15%);

// Typography
// -------------------------
@baseFontSize:          13px;
@baseLineHeight:        15px;

@headingsFontFamily:    inherit; // empty to use BS default,
@baseFontFamily
@headingsFontWeight:    bold;    // instead of browser default, bold
@headingsColor:         inherit; // empty to use BS default, @textColor

// Component sizing
// -------------------------
@baseBorderRadius:      4px;
@borderRadiusLarge:     6px;
@borderRadiusSmall:     3px;

// Buttons
// -------------------------
@btnBackground:                     @white;
@btnBackgroundHighlight:            darken(@white, 10%);
@btnBorder:                         #bbb;

@btnPrimaryBackground:              @linkColor;
@btnPrimaryBackgroundHighlight:     spin(@btnPrimaryBackground, 20%);

@btnInfoBackground:                 #5bc0de;
@btnInfoBackgroundHighlight:        #2f96b4;

@btnSuccessBackground:              #62c462;
@btnSuccessBackgroundHighlight:     #51a351;

@btnWarningBackground:              lighten(@orange, 15%);
@btnWarningBackgroundHighlight:     @orange;

@btnDangerBackground:               #ee5f5b;
@btnDangerBackgroundHighlight:      #bd362f;

@btnInverseBackground:              #444;
@btnInverseBackgroundHighlight:     @grayDarker;

// Forms
// -------------------------
@inputBackground:               #e5f0fa;
@inputBorder:                   #ccc;
@inputBorderRadius:             3px;
@inputDisabledBackground:       @grayLighter;
@formActionsBackground:         #f5f5f5;
@inputHeight:                   @baseLineHeight + 10px; // base line-height
+ 8px vertical padding + 2px top/bottom border

// Z-index master list
// -------------------------
// Used for a bird's eye view of components dependent on the z-axis
// Try to avoid customizing these :)
@zindexDropdown:          1000;
@zindexTooltip:           1030;
@zindexFixedNavbar:       1030;
@zindexModalBackdrop:     1040;
@zindexModal:             1050;
@zindexPopover:           1060;

// Form states and alerts
// -------------------------
@warningText:             #c09853;
@warningBackground:       #fcf8e3;
@warningBorder:           darken(spin(@warningBackground, -10), 3%);

@errorText:               #a20000;
@errorBackground:         #f2dede;
@errorBorder:             darken(spin(@errorBackground, -10), 3%);

@successText:             #005800;
@successBackground:       #dff0d8;
@successBorder:           darken(spin(@successBackground, -10), 5%);

@infoText:                #3a87ad;
@infoBackground:          #d9edf7;
@infoBorder:              darken(spin(@infoBackground, -10), 7%);

// Tooltips and popovers
// -------------------------
@tooltipColor:            @white;
@tooltipBackground:       @black;
@tooltipArrowWidth:       5px;
@tooltipArrowColor:       @tooltipBackground;

@popoverBackground:       @white;
@popoverArrowWidth:       10px;
@popoverArrowColor:       @white;
@popoverTitleBackground:  darken(@popoverBackground, 3%);

// Special enhancement for popovers
@popoverArrowOuterWidth:  @popoverArrowWidth + 1;
@popoverArrowOuterColor:  rgba(0,0,0,.25);

// Variables unique to Hathor
// -------------------------
@toolbarColor:          @linkColor;
@hoverBackground:       #e5d9c3;
@nwBorder:              #868778;
@seBorder:              #f6f7db;
@fadedText:             #cccccc;
@disabledBackground:    #eeeeee;
@permissionDefault:     #ffffcf;
@permissionAllowed:     #cfffda;
@permissionDenied:      #ffcfcf;
less/icomoon.less000064400000000741151163244320010050 0ustar00@font-face {
	font-family: 'IcoMoon';
	src: url('../../../../media/jui/fonts/IcoMoon.eot');
	src: url('../../../../media/jui/fonts/IcoMoon.eot?#iefix')
format('embedded-opentype'),
	url('../../../../media/jui/fonts/IcoMoon.woff')
format('woff'),
	url('../../../../media/jui/fonts/IcoMoon.ttf')
format('truetype'),
	url('../../../../media/jui/fonts/IcoMoon.svg#IcoMoon')
format('svg');
	font-weight: normal;
	font-style: normal;
}
@import "../../../../media/jui/less/icomoon.less";
less/modals.less000064400000004401151163244320007661 0ustar00// MODALS
// ------

// Recalculate z-index where appropriate
.modal-open {
  .dropdown-menu {  z-index: @zindexDropdown + @zindexModal; }
  .dropdown.open { *z-index: @zindexDropdown + @zindexModal; }
  .popover       {  z-index: @zindexPopover  + @zindexModal; }
  .tooltip       {  z-index: @zindexTooltip  + @zindexModal; }
}

// Background
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: @zindexModalBackdrop;
  background-color: @black;
  // Fade for backdrop
  &.fade { opacity: 0; }
}

.modal-backdrop,
.modal-backdrop.fade.in {
  .opacity(80);
}

// Base modal
div.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: @zindexModal;
  overflow: auto;
  width: 80%;
  margin: -250px 0 0 -40%;
  background-color: @white;
  border: 1px solid #999;
  border: 1px solid rgba(0,0,0,.3);
  *border: 1px solid #999; /* IE6-7 */
  .border-radius(6px);
  .box-shadow(0 3px 7px rgba(0,0,0,0.3));
  .background-clip(padding-box);
  &.fade {
    .transition(e('opacity .3s linear, top .3s ease-out'));
    top: -25%;
  }
  &.fade.in { top: 50%; }
}
.modal-header {
  padding: 9px 15px;
  border-bottom: 1px solid #eee;
  // Close icon
  .close {
	float: right;
	margin-top: 2px;
  }
}

// Body (where all modal content resides)
.modal-body {
  overflow-y: auto;
  max-height: 400px;
  padding: 15px;
}
// Remove bottom margin if need be
.modal-form {
  margin-bottom: 0;
}

// Footer (for actions)
.modal-footer {
  padding: 14px 15px 15px;
  margin-bottom: 0;
  text-align: right; // right align buttons
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  .border-radius(0 0 6px 6px);
  .box-shadow(inset 0 1px 0 @white);
  .clearfix(); // clear it in case folks use .pull-* classes on buttons

  // Properly space out buttons
  .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0; // account for input[type="submit"] which
gets the bottom margin like all other inputs
  }
  // but override that for button groups
  .btn-group .btn + .btn {
    margin-left: -1px;
  }
}

/* Prevent scrolling on the parent window of a modal */
body.modal-open {
  overflow: hidden;
  -ms-overflow-style: none;
}

/* Buttons bar in modal iframe */
.modal-buttons {
  padding: 15px 0px;
}
.modal-buttons button {
  font-size: 1.2em;
  line-height: 1.6em;
}
less/template.less000064400000153111151163244320010220 0ustar00// Import
the variables file first to get common variables loaded
@import "hathor_variables.less";

// Core variables and mixins
@import "../../../../media/jui/less/mixins.less";

// Bootstrap Component Animations
@import "../../../../media/jui/less/component-animations.less";

// Bootstrap Modals
@import "modals.less";
//@import "../../../../media/jui/less/modals.joomla.less";

// Bootstrap Popovers
@import "../../../../media/jui/less/popovers.less";

// Icon Font
@import "icomoon.less";

/**
 * CSS Reset
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	background: transparent;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

del {
	text-decoration: line-through;
}

/**
 * General styles
 */
html {
	overflow-y: scroll;
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	font-size: 62.5%;
	line-height: 1.5em;
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body, td, th, span, a {
	font-family: Arial, Helvetica, sans-serif;
}

html, body {
	height: 100%;
}

a, img {
	padding: 0;
	margin: 0;
}

img {
	border: 0 none;
}

form {
	margin: 0;
	padding: 0;
}

ul {
	padding: 0;
	margin: 0;
}

h1 {
	margin: 0;
	padding-bottom: 8px;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 2em;
}

h2 {
	padding-top: .83em;
	padding-bottom: .83em;
}

h3 {
	font-size: 1.4em;
}

a:link {
	color: #054993;
	text-decoration: none;
}

a:visited {
	color: #054993;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:focus {
	text-decoration: underline;
}

iframe {
	border: 0;
}

/* new styles */

.enabled {
	color: #005800;
	font-weight: bold;
}

.disabled {
	color: #a20000;
	font-weight: bold;
}

p.error {
	color: #a20000;
	font-weight: bold;
}

.warning {
	color: #a20000;
	font-weight: bold;
}

.nowarning {
	color: #2c2c2c;
	font-weight: bold;
}

.success {
	color: #005800;
	font-weight: bold;
}

.allow {
	color: #005800;
}

span.writable {
	color: #005800;
}

.deny {
	color: #a20000;
}

span.unwritable {
	color: #a20000;
}

.none {
	color: #aaaaaa;
}

.pointer {
	cursor: pointer;
}

.nowrap {
	white-space: nowrap;
}

p.nowarning, p.warning {
	margin: 10px;
}

/* end new styles */

/**
 * Overall Styles
 */
#minwidth, #minwidth-body {
	min-width: 980px;
}

#containerwrap {
	position: relative;
}

#header {
	position: relative;
}

#header h1.title {
	font-size: 1.5em;
	font-weight: normal;
	line-height: 25px;
	margin: 0;
	padding: 0 0 0 120px;
}

#footer {
	padding: 10px 20px;
}

#footer .copyright {
	margin: 0 0 0 0;
	text-align: center;
}

#footer p {
	font-size: 1.2em;
}

#nav .no-nav {
	line-height: 2em;
}

#content {
	margin: 5px 20px 20px 20px;
}

.cpanel-page div#element-box {
	padding: 15px;
}

/**
 * Status layout
 */
#module-status {
	float: right;
	position: relative;
	top: -48px;
}

#module-status div.btn-group {
	display: block;
	float: left;
	padding: 4px 10px 0 10px;
	font-size: 1.2em;
}

#module-status div.divider {
	display: none;
}

#module-status .unread-messages a {
	font-weight: bold;
}

.title-ua {
	position: relative;
	width: 60%;
}

/**
 * Various Styles
 */
.enabled,
.disabled,
p.error,
.warning,
.nowarning,
.success {
	font-weight: bold;
}

.pointer {
	cursor: pointer;
}

.nowrap {
	white-space: nowrap;
}

span.note {
	display: block;
	padding: 5px;
}

div.checkin-tick {
	text-indent: -9999px;
}

/**
 * Overlib
 */
.ol-textfont {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
}

.ol-captionfont {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	font-weight: bold;
}

.ol-captionfont a {
	text-decoration: none;
}

/**
 * Subheader, toolbar, page title
 */
div.subheader .padding {
	padding: 0;
}

div.pagetitle {
	padding: 0 0 5px 5px;
	margin: 0;
	background-repeat: no-repeat;
	background-position: left 50%;
	line-height: 54px;
	width: 100%;
	margin-top: -20px;
	height: 60px;
}

.tabs-left > .nav-tabs {
	float: left;
	margin-right: 19px;
	border-right: 1px solid #DDD;
}

tabs-below > .nav-tabs, .tabs-right > .nav-tabs, .tabs-left >
.nav-tabs {
	border-bottom: 0;
}

/* Tabbed Content */
.tab-content {
	overflow: visible;
}

.tabs-left .tab-content {
	overflow: auto;
}

/* Non-linkable nav-tabs */
.nav-tabs > li > span {
	display: block;
	margin-right: 2px;
	padding-right: 12px;
	padding-left: 12px;
	padding-top: 8px;
	padding-bottom: 8px;
	line-height: 18px;
	border: 1px solid transparent;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
}

/* Extended Joomla Button Classes */
.btn-micro {
	padding: 1px 4px;
	font-size: 10px;
	line-height: 8px;
}

/* Joomla => Bootstrap Tooltip */
.tip-wrap {
	max-width: 200px;
	padding: 3px 8px;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	z-index: 100;
}

.pagetitle h2 {
	padding: 0 0 0 50px;
	font-size: 1.3em;
	font-weight: bold;
	line-height: 48px;
	font-style: italic;
}

div.configuration {
	font-size: 1.2em;
	font-weight: bold;
	line-height: 2em;
	padding-left: 30px;
	margin-left: 10px;
}

div.toolbar-box h3 {
	height: 0;
	overflow: hidden;
	position: absolute;
	padding: 0;
	margin: 0;
}

.btn-toolbar {
	margin-bottom: 3px;
	margin-top: 14px;
}

div.btn-toolbar, div.toolbar-list {
	float: left;
	text-align: left;
	padding: 0;
}

div.toolbar-list li {
	padding: 5px 1px 5px 4px;
	text-align: center;
	height: 52px;
	list-style: none;
	float: left;
}

div.toolbar-list li.spacer {
	width: 10px;
}

div.toolbar-list li.divider {
	width: 10px;
	margin-right: 10px;
}

div.toolbar-list span {
	float: none;
	width: 32px;
	height: 32px;
	margin: 0 auto;
	display: block;
}

div.toolbar-list a {
	display: block;
	float: left;
	white-space: nowrap;
	padding: 1px 5px;
	cursor: pointer;
	font-weight: bold;
}

div.btn-toolbar div.btn-group button {
	display: block;
	float: left;
	white-space: nowrap;
	padding: 1px 5px;
	cursor: pointer;
	text-align: center;
}

div.btn-toolbar button:hover, div.btn-toolbar button:focus,
div.toolbar-list a:hover, div.toolbar-list a:focus {
	text-decoration: none;
}

/**
 * Massmail component
 */
td#mm_pane {
	width: 90%;
}

input#mm_subject {
	width: 200px;
}

textarea#mm_message {
	width: 100%;
}
textarea {
	resize:both;
}
textarea.vert {
	resize:vertical;
}
textarea.noResize {
	resize:none;
}

/**
 * Pane Slider pane Toggler styles
 */
.pane-sliders {
	margin: 0;
	position: relative;
}

.pane-sliders .title {
	margin: 0;
	padding: 2px;
	cursor: pointer;
}

.pane-sliders .panel {
	margin-bottom: 3px;
}

.pane-sliders .adminlist td {
	border: 0 none;
}

h3.pane-toggler-down a:focus,
h3.pane-toggler a:focus {
	outline: none;
}

.pane-toggler span {
	padding-left: 20px;
}

.pane-toggler-down span {
	padding-left: 20px;
}

/* The following line hides the unseen panel (prevents the mouse from
activating in IE, so overridden in the ie css files) */
/*.pane-toggler + div.pane-slider {display: none;}*/
.pane-slider.pane-hide {
	display: none;
}

div#position-icon.pane-sliders div.pane-down div.quickicon-wrapper {
	margin: 5px 0 5px 0;
}

div#position-icon.pane-sliders div.pane-down .quickicon-wrapper .icon {
	padding: 5px 0 5px 10px;
	margin: 0;
}

/**
 * Tabs
 */
dl.tabs {
	float: left;
	margin: 10px 0 -1px 0;
	z-index: 50;
}

dl.tabs dt {
	float: left;
	padding: 4px 10px;
	margin-left: 3px;
}

dl.tabs dt.open {
	z-index: 100;
}

div.current {
	clear: both;
	padding: 10px 10px;
}

div.current dd {
	padding: 0;
	margin: 0;
}

/* New parameter styles */

dl#content-pane.tabs {
	margin: 1px 0 0 0;
}

div.current label, div.current span.faux-label {
	display: block;
	min-width: 150px;
	float: left;
	clear: left;
	margin-top: 8px;
}

div.current fieldset.radio {
	float: left;
}

div.current fieldset.radio input {
	clear: none;
	min-width: 15px;
	float: left;
	margin: 3px 0 0 2px;
}

div.current fieldset.radio label {
	clear: none;
	min-width: 45px;
	float: left;
	margin: 3px 0 0 2px;
}

div.current fieldset.checkboxes {
	float: left;
	clear: right;
}

div.current fieldset.checkboxes input {
	clear: left;
	min-width: 15px;
	float: left;
	margin: 3px 0 0 2px;
}

div.current fieldset.checkboxes label {
	clear: right;
	min-width: 45px;
	margin: 3px 0 0 2px;
}

div.current input,
div.current span.faux-input,
div.current textarea,
div.current select {
	clear: none;
	float: left;
	margin: 3px 0 0 2px;
}

div.current select {
	margin-bottom: 15px;
}

div.current table#acl-config th.acl-groups {
	text-align: left;
}

div.current table#filter-config th.acl-groups {
	text-align: left;
}

div.current table#filter-config select {
	margin-bottom: 0;
}

/* -------- Menu Assigments ---------- */
div#menu-assignment {
	clear: left;
}

div#menu-assignment ul.menu-links {
	float: left;
	width: 49%;
}

div#menu-assignment ul.menu-links label {
	clear: none;
	float: left;
	margin: 3px 0 0 2px;
}

div#menu-assignment ul.menu-links input {
	clear: left;
	float: left;
}

button.jform-rightbtn {
	float: right;
	margin-right: 0;
}

p.tab-description {
	font-size: 1.091em;
	margin-left: 0;
	margin-top: 5px;
}

/* end new parameter styles */

/**
 * Login Settings
 */
#login-page input, #login-page select {
	float: right;
	clear: none;
}

#login-page .login {
	margin: 0 auto;
	width: 575px;
	margin-bottom: 100px;
}

#login-page .pagetitle h2 {
	margin: -70px 0 30px 0;
	font-size: 2em;
	padding: 0;
}

#login-page p {
	margin: 0;
	padding: 0;
	margin-bottom: 1em;
	font-size: 1.2em;
}

#login-page #header {
	margin-bottom: 100px;
}

#login-page .login-inst {
	float: left;
	width: 35%;
}

#login-page .login-box {
	float: right;
	width: 63%;
}

#login-page #lock {
	width: 150px;
	height: 137px;
}

#login-page #element-box.login {
	padding: 20px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

#login-page .button {
	text-align: right;
}

#login-page .login-text {
	text-align: left;
	width: 40%;
	float: left;
}

#form-login {
	float: left;
	padding: 1.1em;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

#form-login fieldset {
	border: none;
}

#form-login label {
	display: block;
	float: left;
	clear: left;
	width: 100px;
	text-align: right;
	padding: 4px;
	color: #2c2c2c;
	font-weight: bold;
	font-size: 1.4em;
	margin-bottom: 15px;
}

#form-login div.button1 div.next {
	float: left;
}

#form-login div.button1 a {
	height: 2.2em;
	line-height: 2.2em;
	font-size: 1.5em;
	cursor: default;
	padding: 0 15px 0 15px;
}

.login-submit {
	border: 0;
	padding: 0;
	margin: 0;
	width: 0;
	height: 0;
}

/**
 * Cpanel Settings
 */
#cpanel div.icon, .cpanel div.icon {
	text-align: center;
	margin-right: 5px;
	float: left;
	margin-bottom: 5px;
}

#cpanel div.icon a, .cpanel div.icon a {
	display: block;
	float: left;
	height: auto;
	min-height: 97px;
	width: 108px;
	color: #2c2c2c;
	vertical-align: middle;
	text-decoration: none;
	font-weight: bold;
}

#cpanel img, .cpanel img {
	padding: 10px;
	margin: 0 auto;
}

#cpanel span, .cpanel span {
	display: block;
	text-align: center;
	padding: 0 0 5px;
}

div.cpanel-icons {
	width: 54%;
	float: left;
}

div.cpanel-component {
	width: 45%;
	float: right;
}

/**
 * Standard Layout Styles
 */

div.col {
	float: left;
}

div.options-section.col {
	float: right;
}

div.col1 {
	float: left;
	width: 45%;
}

div.col2 {
	float: right;
	width: 45%;
}

/* Avoid using the width divs. They are here for 3PD Extensions if needed
	 * Use the specific layout divs listed after. See also the th.width
entries */
div.width-1 {
	width: 1%;
}

div.width-3 {
	width: 3%;
}

div.width-5 {
	width: 5%;
}

div.width-10 {
	width: 10%;
}

div.width-20 {
	width: 20%;
}

div.width-30 {
	width: 30%;
}

div.width-35 {
	width: 35%;
}

div.width-40 {
	width: 40%;
}

div.width-45 {
	width: 45%;
}

div.width-50 {
	width: 50%;
}

div.width-55 {
	width: 55%;
}

div.width-60 {
	width: 60%;
}

div.width-65 {
	width: 65%;
}

div.width-70 {
	width: 70%;
}

div.width-80 {
	width: 80%;
}

div.width-100 {
	width: 100%;
}

.clrlft {
	clear: left;
}

.clrrt {
	clear: right;
}

.fltlft {
	float: left;
}

.fltrt {
	float: right;
}

.fltnone {
	float: none;
}

/* Layout Divs */
div.main-section {
	width: 60%;
}

div.options-section {
	width: 38%;
	margin: 10px 10px 10px 0;
}

/* for bluestork style html */
div.width-40.fltrt {
	width: 38%;
	margin: 10px 10px 10px 0;
}

div.rules-section {
	width: 98%;
	margin: 10px;
}

/**
 * Form Styles
 */

fieldset {
	margin: 2px 10px 2px 10px;
	padding: 5px;
	text-align: left;
}

legend {
	font-size: 1.3em;
	font-weight: bold;
	padding-bottom: 5px;
}

fieldset p {
	margin: 10px 0;
	font-size: 1.2em;
}

fieldset ol, ol#property-values, fieldset ul, ul#property-values {
	margin: 0;
	padding: 0;
}

fieldset li, ol#property-values li, ul#property-values li {
	list-style: none;
	margin: 0;
	padding: 5px;
}

fieldset.adminform fieldset.radio,
fieldset.panelform fieldset.radio,
fieldset.adminform-legacy fieldset.radio {
	border: 0;
	float: left;
	padding: 0;
	margin: 0 0 5px 0;
	clear: right;
}

fieldset.adminform fieldset.radio label,
fieldset.panelform fieldset.radio label,
fieldset.adminform fieldset.radio span.faux-label,
fieldset.panelform fieldset.radio span.faux-label {
	min-width: 40px;
	float: left;
	clear: none;
}

/* checkboxes */
fieldset.adminform fieldset.checkboxes,
fieldset.panelform fieldset.checkboxes,
fieldset.adminform-legacy fieldset.checkboxes {
	border: 0;
	float: left;
	padding: 0;
	margin: 0 0 5px 0;
	clear: right;
}

fieldset.adminform fieldset.checkboxes input[type="checkbox"],
fieldset.panelform fieldset.checkboxes input[type="checkbox"] {
	float: left;
	clear: left;
}

fieldset.adminform fieldset.checkboxes label,
fieldset.panelform fieldset.checkboxes label,
fieldset.adminform fieldset.checkboxes span.faux-label,
fieldset.panelform fieldset.checkboxes span.faux-label {
	clear: right;
}

/* end checkboxes */

/* spacer */
div.current span.spacer > span.before,
fieldset.adminform span.spacer > span.before,
fieldset.panelform span.spacer > span.before {
	clear: both;
	overflow: hidden;
	height: 0;
	display: block;
}

/* end spacer */

fieldset.panelform-legacy label,
fieldset.adminform-legacy label,
fieldset.panelform-legacy span.faux-label,
fieldset.adminform-legacy span.faux-label {
	min-width: 150px;
	float: left;

}


fieldset.adminform,
fieldset.panelform {
	.input-prepend,
	.input-append {
		float: left;
	}
	.adminformlist .btn.modal,
	.input-prepend > *,
	.input-append > * {
		float: none;
		vertical-align: middle;
	}
}

/* JParameter classes on radio button labels */
fieldset.panelform-legacy label.radiobtn-jno,
fieldset.panelform-legacy label.radiobtn-jyes,
fieldset.panelform-legacy label.radiobtn-show,
fieldset.panelform-legacy label.radiobtn-hide,
fieldset.panelform-legacy label.radiobtn-off,
fieldset.panelform-legacy label.radiobtn-on {
	min-width: 40px !important;
	clear: none !important;
}

#jform_plugdesc-lbl,
#jform_description-lbl {
	font-weight: bold;
	clear: both;
	margin-top: 15px;
}

p.jform_desc {
	clear: left;
}

div#jform_ordering {
	font-size: 1.091em;
	margin-top: 3px;
}

fieldset ul.checklist {
	margin-left: 27px;
}

fieldset ul.checklist input,
fieldset ul.checklist label {
	float: none;
}

fieldset ul.checklist input:focus {
	outline: thin dotted #333333;
}

fieldset#filter-bar {
	margin: 0;
	padding: 5px 10px 5px 10px;
	float: left;
	width: 98%
}

fieldset#filter-bar ol, fieldset#filter-bar ul {
	list-style: none;
	margin: 0;
	padding: 5px 0 0;
}

fieldset#filter-bar ol li, fieldset#filter-bar ul li {
	float: left;
	padding: 0 5px 0 0;
}

fieldset#filter-bar ol li fieldset, fieldset#filter-bar ul li fieldset {
	margin: 0;
	padding: 0;
}

fieldset#filter-bar .filter-search {
	float: left;
	padding-bottom: 3px;
}

fieldset#filter-bar .filter-select {
	float: right;
}

fieldset#filter-bar input#search {
	width: 10em;
}

/* Note: these visual cues should be augmented by aria */
.invalid {
	font-weight: bold;
}

/* augmented by aria in template javascript */
input.readonly, span.faux-input {
	border: 0;
}

.star {
	color: #cc0000;
	font-size: 1.2em;
}

input, select, span.faux-input {
	font-size: 1.2em;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

span.readonly {
	float: left;
	font-size: 1.2em;
	line-height: 2em;
}

div.readonly {
	font-size: 1.2em;
	line-height: 2em;
}

div.extdescript {
	margin-left: 10px;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
	font-family: Arial, Helvetica, sans-serif;
	padding: 1px 6px;
	font-size: 1.2em;
	line-height: 1.5em;
}

textarea {
	font-size: 1.4em;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

input.button {
	cursor: pointer;
}

label {
	font-weight: bold;
	font-size: 1.1em;
}

span.faux-label {
	font-weight: bold;
	font-size: 1.1em;
}

label.selectlabel {
	position: absolute;
	left: -1000em;
}

/**
 * Option or Parameter styles
 */

.paramrules {
	padding: 10px;
}

span.gi {
	font-weight: bold;
	margin-right: 5px;
}

span.gtr {
	visibility: hidden;
	margin-right: 5px;
}

/**
 * Admintable Styles
 */
table.admintable td {
	padding: 3px;
	font-size: 1em;
}

table.admintable td.key, table.admintable td.paramlist_key {
	text-align: right;
	width: 140px;
	font-weight: bold;
	font-size: 1em;
}

table.admintable td.key label, table.admintable td.paramlist_key label {
	font-size: 1em;
}

table.admintable td.paramlist_value label {
	font-size: 1em;
}

table.admintable input, table.admintable span.faux-input, table.admintable
select {
	font-size: 1em;
}

table.paramlist td.paramlist_description {
	text-align: left;
	width: 170px;
	font-weight: normal;
}

table.admintable td.key.vtop {
	vertical-align: top;
}

/**
 * Admin Form Styles
 */
fieldset.adminform {
	margin: 0 10px 10px 10px;
	overflow: hidden;
}

.adminformlist .btn.modal{
	float: left;
	margin-top: 7px;
}

ul.adminformlist,
ul.adminformlist li,
dl.adminformlist,
dl.adminformlist li {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.adminformlist pre {
	font-size: 1.3em;
}

ul.adminformlist .button2-left, ul.adminformlist .button2-left {
	margin-top: 5px;
}

/* Table styles are for use with tabular data */
table.adminform {
	width: 100%;
	border-collapse: collapse;
	margin: 8px 0 10px 0;
	margin-bottom: 15px;
}

table.adminform.nospace {
	margin-bottom: 0;
}

table.adminform th {
	font-size: 1.4em;
	padding: 6px 2px 4px 4px;
	text-align: left;
	height: 25px;
}

table.adminform td {
	padding: 3px;
	text-align: left;
}

table.adminform td#filter-bar {
	text-align: left;
}

table.adminform td.helpMenu {
	text-align: right;
}

table.adminform tr {
	padding-left: 10px;
	padding-right: 10px;
}

/**
 * Table formating styles
 */
td.center, th.center {
	text-align: center;
}

/* Avoid using the width classes. They are here for 3PD Extensions if
needed
	 * Use the specific layout table headers listed after. See also the
div.width entries */
th.width-1 {
	width: 1%;
}

th.width-3 {
	width: 3%;
}

th.width-5 {
	width: 5%;
}

th.width-10 {
	width: 10%;
}

th.width-12 {
	width: 12%;
}

th.width-15 {
	width: 15%;
}

th.width-20 {
	width: 20%;
}

th.width-25 {
	width: 25%;
}

th.width-30 {
	width: 30%;
}

th.width-40 {
	width: 40%;
}

/* Table header layout classes */
th.row-number-col {
	width: 3%;
}

th.checkmark-col {
	width: 1%;
}

th.state-col {
	width: 5%;
}

th.ordering-col {
	width: 10%;
}

th.ordering-col a {
	display: block;
	float: left;
	margin-left: 3px;
}

th.ordering-col a img {
	margin-left: 4px;
	margin-right: 4px;
}

.categories th.ordering-col input, .categories td.order input {
	font-size: 1em;
}

th.category-col {
	width: 5%;
}

th.access-col {
	width: 10%;
}

.categories th.access-col {
	width: 5%;
}

th.hits-col {
	width: 5%;
}

th.id-col {
	width: 3%;
}

th.featured-col {
	width: 5%;
}

th.created-by-col {
	width: 15%;
}

th.date-col {
	width: 5%;
}

th.language-col {
	width: 5%;
}

th.home-col {
	width: 5%;
}

/**
 * Adminlist Table layout
 */
table.adminlist {
	width: 100%;
	float: left;
}

table.adminlist td, table.adminlist th {
	padding: 4px;
	font-size: 1.2em;
}

table.adminlist thead th {
	text-align: center;
}

table.adminlist thead a:hover {
	text-decoration: none;
}

table.adminlist thead th img {
	vertical-align: middle;
}

table.adminlist tbody th {
	font-weight: bold;
}

/* Table row styles */
table.adminlist tr {
	padding-left: 30px;
	padding-right: 30px;
}

table.adminlist tbody tr {
	text-align: left;
}

table.adminlist tbody tr td,
table.adminlist tbody tr th {
	height: 25px;
}

table.adminlist tfoot tr {
	text-align: center;
}

/* Table td/th styles */
table.adminlist tfoot td, table.adminlist tfoot th {
	text-align: center;
}

table.adminlist td.order {
	text-align: center;
	white-space: nowrap;
}

table.adminlist td.order span {
	float: left;
	width: 20px;
	text-align: center;
}

table.adminlist td.order input {
	text-align: center;
	width: 3em;
	font-size: 100%;
}

/**
 * Tree indentation & nesting - Up to 10 levels deep so don't go
crazy :
 */
#media-tree_tree ul {
	list-style: none outside none;
    margin: 0 10px;
}

table.adminlist td.indent-4 {
	padding-left: 4px;
}

table.adminlist td.indent-19 {
	padding-left: 19px;
}

table.adminlist td.indent-34 {
	padding-left: 34px;
}

table.adminlist td.indent-49 {
	padding-left: 49px;
}

table.adminlist td.indent-64 {
	padding-left: 64px;
}

table.adminlist td.indent-79 {
	padding-left: 79px;
}

table.adminlist td.indent-94 {
	padding-left: 94px;
}

table.adminlist td.indent-109 {
	padding-left: 109px;
}

table.adminlist td.indent-124 {
	padding-left: 124px;
}

table.adminlist td.indent-139 {
	padding-left: 139px;
}

/**
 * Adminlist buttons
 */
table.adminlist tr td.btns a {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding: 3px 20px;
}

table.adminlist tr td.btns a:hover, table.adminlist tr td.btns a:active,
table.adminlist tr td.btns a:focus {
	text-decoration: none;
}

/**
 * Adminlist lists
 */
table.adminlist td li {
	list-style: inside;
}

/**
 * Modal Modules styles
 */
ul#new-modules-list {
	margin-left: 50px;
	font-size: 1.4em;
	line-height: 1.5em;
}

/**
 * Utility styles
 */
/* General Clearing Class */
.clr {
	clear: both;
	overflow: hidden;
	height: 0;
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.menu-module-list {
	list-style-position: inside;
	padding-left: 10px;
	margin-left: 5px;
}

/* stu nicholls solution for centering divs */
.container {
	clear: both;
	text-decoration: none;
}

* html .container {
	display: inline-block;
}

/* table solution for global config */
table.noshow {
	width: 100%;
	border-collapse: collapse;
	padding: 0;
	margin: 0;
}

table.noshow tr {
	vertical-align: top;
}

table.noshow fieldset {
	margin: 15px 7px 7px 7px;
}

/**
 * Saving order icon styling in admin tables
 */
a.saveorder {
	width: 16px;
	height: 16px;
	display: block;
	overflow: hidden;
	float: right;
	margin-right: 8px;
}

/**
 * Button styling
 */
#editor-xtd-buttons {
	padding: 5px;
}

button {
	font-family: Arial, Helvetica, sans-serif;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	margin-right: 3px;
	margin-left: 3px;
}

.invalid {
	font-weight: bold;
}

/* Button 1 Type */
.button1, .button1 div {
	height: 1%;
	float: right;
}

.button1 {
	white-space: nowrap;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.button1 a {
	display: block;
	height: 2.2em;
	float: left;
	line-height: 2.2em;
	font-size: 1.2em;
	font-weight: bold;
	cursor: default;
	padding: 0 6px 0 6px;
	/* add padding if you are using the directional images */
	/* padding: 0 30px 0 6px; */
}

.button1 a:hover, .button1 a:focus {
	text-decoration: none;
}

/* Button 2 Type */
.button2-left, .button2-right {
	float: left;
	line-height: 1.5em;
	font-size: 1.2em;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.button2-left.smallsub, .button2-right.smallsub {
	line-height: 1.2em;
	font-size: .9em;
}

.button2-left a, .button2-right a, .button2-left span, .button2-right span
{
	display: block;
	float: left;
	cursor: default;
}

/* these are inactive buttons */
.button2-left span, .button2-right span {
	cursor: default;
}

.button2-left .page a, .button2-right .page a,
.button2-left .page span, .button2-right .page span,
.button2-left .blank a, .button2-right .blank a,
.button2-left .blank span, .button2-right .blank span {
	padding: 0 6px;
}

.page span, .blank span {
	font-weight: bold;
}

.button2-left a:hover,
.button2-right a:hover,
.button2-left a:focus,
.button2-right a:focus {
	text-decoration: none;
}

.button2-left a, .button2-left span {
	padding: 0 24px 0 6px;
}

.button2-right a, .button2-right span {
	padding: 0 6px 0 24px;
}

.button2-left {
	float: left;
	margin-left: 5px;
}

.button2-right {
	float: left;
	margin-left: 5px;
}

/**
 * Pagination styles
 */

/* Normal pagination styles */
div.containerpg {
	position: relative;
	left: 50%;
	float: left;
	clear: left;
}

div.pagination {
	position: relative;
	left: -50%;
	margin: 0 auto;
	padding: .5em;
}

.pagination div.limit {
	float: left;
	margin: 0 10px;
	font-size: 1.2em;
	height: 1.8em;
	line-height: 1.8em;
}

.pagination div.limit label {
	font-size: 100%;
	height: 1.8em;
	line-height: 1.8em;
}

.pagination div.limit select {
	font-size: 100%;
}

/* The Go submittal button */
.pagination button {
	font-size: 100%;
	height: 2.0em;
	line-height: 1.8em;
	margin-right: 20px;
}

div.pagination .button2-right, div.pagination .button2-left {
	font-size: 1.2em;
	height: 1.6em;
	line-height: 1.6em;
}

/* Style if pagination is part of the table (old style) */
table.adminlist .pagination {
	display: table;
	padding: 0;
	margin: 0 auto;
	font-size: .8em;
}

table.adminlist .pagination button {
	font-size: 1.2em;
	height: 1.6em;
	line-height: 1.5em;
	margin-right: 20px;
}

/**
 * MCE Editor
 */
div.toggle-editor {
	margin-top: 9px;
}

/**
 * Tooltips
 */
.tip {
	float: left;
	padding: 5px;
	max-width: 400px;
	z-index: 50;
}

.tip-title {
	padding: 0;
	margin: 0;
	font-size: 120%;
	margin-top: -15px;
	padding-top: 15px;
	padding-bottom: 5px;
}

.tip-text {
	font-size: 100%;
	text-align: left;
	margin: 0;
}

/**
 * Calendar
 */
a img.calendar {
	width: 16px;
	height: 16px;
	margin-left: 3px;
	cursor: pointer;
	vertical-align: middle;
}

/**
 * JGrid styles
 */
a.jgrid:hover {
	text-decoration: none;
}

.jgrid span.state {
	display: inline-block;
	height: 16px;
	width: 16px;
}

.jgrid span.text {
	display: none;
}

/**
 * Icons
 * The Background Icons for Menus, Toolbars, Quick Icons
 * are now in the color css files
 */

/**
 * General styles
 */
div.message {
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	padding: 3px;
	margin-bottom: 10px;
	font-weight: bold;
}

.helpIndex {
	border: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	overflow: auto;
}

.helpFrame {
	width: 100%;
	height: 800px;
	padding: 0 5px 0 10px;
}

#treecellhelp {
	width: 25%;
	display: block;
	position: relative;
	float: left;
	margin: 0;
	padding: 2px;
	overflow: hidden;
}

#datacellhelp {
	width: 73%;
	display: block;
	float: left;
	margin: 0;
	padding: 2px 0 0 0;
}

.outline {
	padding: 2px;
}

/**
 * Modal Styles
 */

h2.modal-title {
	margin-left: 15px;
	margin-bottom: 0;
	margin-top: 5px;
	font-size: 1.8em;
	padding-bottom: .5em;
}

ul.menu_types {
	padding: 0 0 0 15px;
	width: 95%;
	margin: 0;
}

ul.menu_types li,
dl.menu_type dd ul li {
	width: 240px;
	list-style: none;
	display: block;
	float: left;
	margin-right: 10px;
}

ul.menu_types li {
	width: 47%;
}

dl.menu_type {
	width: 240px;
	margin: 0;
	padding: 0;
}

dl.menu_type dt {
	font-weight: bold;
	font-size: 1.5em;
	float: left;
	margin: 13px 0 5px 0;
	width: 240px;
}

dl.menu_type dd {
	clear: left;
	margin: 0;
}

dl.menu_type dd a {
	font-size: 1.2em;
}

dl.menu_type dd ul li {
	margin: 0;
}

ul#new-modules-list {
	padding: 5px 0 0 15px;
	width: 95%;
	margin: 0;
	list-style: none;
}

ul#new-modules-list li {
	list-style: none;
	display: block;
	float: left;
	margin: 0 20px 0 0;
	width: 47%;
}

ul#new-modules-list li a {
	font-size: 1em;
	line-height: 1.5em;
}

body.contentpane #filter-bar {
	font-size: 80%;
}

body.contentpane input, body.contentpane select {
	font-size: 120%;
}

#filter-bar input, #filter-bar select, #filter-bar button {
	font-size: 110%;
}

/**
 * User Accessibility
 */

/* Skip to Content Structural Styling */
#skiplinkholder a, #skiplinkholder a:link, #skiplinkholder a:visited {
	display: block;
	width: 99%;
	position: absolute;
	top: 0;
	left: -200%;
	z-index: 2;
}

#skiplinkholder a:focus, #skiplinkholder a:active {
	left: 0;
	top: 0;
	z-index: 100;
}

#skiplinkholder p {
	margin: 0;
}

#skiptargetholder {
	position: absolute;
	left: -200%;
}

/* Skip to Content Visual Styling */
#skiplinkholder a, #skiplinkholder a:link, #skiplinkholder a:visited {
	text-decoration: underline;
	padding: 5px;
	font-size: 1.3em;
	font-weight: bold;
	padding-left: 20px;
	padding-right: 20px;
}

/* Hide overlayed controls so that keyboarders can get to the modal */
.body-overlayed a,
.body-overlayed input,
.body-overlayed button {
	visibility: hidden;
}

.body-overlayed #sbox-window a,
.body-overlayed #sbox-window input,
.body-overlayed #sbox-window button {
	visibility: visible;
}

/**
 * Admin Form Styles
 */

/* For elements that aren't to be seen by users unless the user does
something
	 * like clicking on a header to see the collapsed section. */
.element-hidden, .hide {
	display: none;
}

.hidebtn {
	border: 0 !important;
	padding: 0 !important;
	margin: 0;
	width: 0;
	height: 0;
}

/* For elements that aren't to be seen by visual users but do need to
be read by screenreaders.
	 * Cannot be used for elements that can get focus such as links and form
elements */
.element-invisible, .hidelabeltxt {
	height: 0;
	overflow: hidden;
	position: absolute;
	padding: 0;
	margin: 0;
}

/* Firefox has issues styling legend so this is a universal fix
	for making the legend invisible (i.e. visually it's not there, but
screen readers see it */

legend.element-invisible {
	position: absolute !important;
	margin: 0;
	padding: 0;
	border: 0;
	margin-left: -10000px;
	font-size: 1px;
	height: 0;
}

fieldset.panelform {
	overflow: hidden;
	clear: both;
}

fieldset.adminform label,
fieldset.panelform label,
fieldset.adminform span.faux-label,
fieldset.panelform span.faux-label {
	line-height: 2em;
	clear: left;
	min-width: 12em;
	float: left;
	margin-left: 10px;
	margin-right: 5px;
}

fieldset.adminform.long label,
fieldset.panelform.long label,
fieldset.adminform.long span.faux-label,
fieldset.panelform.long span.faux-label {
	min-width: 18em;
}

fieldset.adminform fieldset.radio label,
fieldset.panelform fieldset.radio label,
fieldset.adminform fieldset.radio span.faux-label,
fieldset.panelform fieldset.radio span.faux-label {
	margin-left: 0;
}

fieldset.adminform input, fieldset.adminform span.faux-input,
fieldset.adminform textarea, fieldset.adminform select, fieldset.adminform
img, fieldset.adminform button,
fieldset.panelform input, fieldset.panelform span.faux-input,
fieldset.panelform textarea, fieldset.panelform select, fieldset.panelform
img, fieldset.panelform button {
	float: left;
	margin: 5px 5px 5px 0;
	width: auto;
}

/* -------- Batch Section ---------- */
fieldset.batch {
	margin: 20px 10px 10px 10px;
	padding: 10px;
}

fieldset.batch label {
	margin: 5px;
	min-width: 40px;
}

fieldset.batch button {
	margin: 3px;
}

fieldset#batch-choose-action {
	clear: left;
	border: 0 none;
}

fieldset.batch label {
	float: left;
	clear: none;
}

fieldset label#batch-choose-action-lbl {
	clear: left;
	margin-top: 15px;
}

label#batch-language-lbl,
label#batch-user-lbl {
	clear: left;
	margin-right: 10px;
	margin-top: 15px;
}

select#batch-language-id,
select#batch-user-id {
	margin-top: 15px;
}

select#batch-category-id,
select#batch-position-id,
select#batch-menu-id {
	margin-right: 30px;
}

fieldset.batch select, fieldset.batch input, fieldset.batch img,
fieldset.batch button {
	float: left;
}

label#batch-access-lbl,
label#batch-client-lbl {
	margin-right: 10px;
}

div#jform_ordering {
	font-size: 1.091em;
	margin-top: 3px;
}

/* Banner edit */
#jform_impmade, #jform_clicks {
	width: 30px;
}

fieldset.panelform label#jform-imp {
	min-width: 3em;
	font-size: 1.091em;
}

fieldset.adminform input#jform_clickurl {
	width: 20em;
}

/**
 * ACL STYLES relocated from com_users/media/grid.css
 */

a.move_up {
	display: inline-block;
	height: 16px;
	text-indent: -1000em;
	width: 16px;
}

span.move_up {
	display: inline-block;
	height: 16px;
	width: 16px;
}

a.move_down {
	display: inline-block;
	height: 16px;
	text-indent: -1000em;
	width: 16px;
}

span.move_down {
	display: inline-block;
	height: 16px;
	width: 16px;
}

a.grid_false {
	display: inline-block;
	height: 16px;
	text-indent: -1000em;
	width: 16px;
}

a.grid_true {
	display: inline-block;
	height: 16px;
	text-indent: -1000em;
	width: 16px;
}

a.grid_trash {
	display: inline-block;
	height: 16px;
	text-indent: -1000em;
	width: 16px;
}

/**
 * ACL PANEL STYLES
 */
div.acl-options {
	width: 100%;
}

/* All Tabs */
table.aclsummary-table,
table.aclmodify-table {
	border-collapse: collapse;
	width: 100%;
	font-size: 1.091em;
}

td.col1 {
	font-size: 1.091em;
	text-align: left;
	padding: 4px;
}

table.aclsummary-table caption,
table.aclmodify-table caption {
	display: none;
}

/* Summary Tab */
table.aclsummary-table th.col1 {
	width: 25%;
}

table.aclsummary-table th.col2,
table.aclsummary-table th.col3,
table.aclsummary-table th.col4,
table.aclsummary-table th.col5,
table.aclsummary-table th.col6 {
	width: 15%;
	vertical-align: bottom;
	text-align: center;
}

/* Icons (background images moved to color css files */
span.icon-16-unset,
span.icon-16-allowed,
span.icon-16-denied,
span.icon-16-locked {
	padding-left: 18px;
}

label.icon-16-allow,
label.icon-16-deny,
a.icon-16-allow,
a.icon-16-deny,
a.icon-16-allowinactive,
a.icon-16-denyinactive {
	display: block;
	height: 16px;
	width: 16px;
	margin: 0 auto;
}

label.icon-16-allow {
	text-indent: -9999em;
	position: relative;
	left: 40%;
}

label.icon-16-deny {
	text-indent: -9999em;
	position: relative;
	left: 40%;
}

/* Create, Edit, Edit State & Delete Tabs */
table.aclmodify-table th.col2,
table.aclmodify-table th.col3,
table.aclmodify-table th.col4 {
	width: 20%;
	vertical-align: bottom;
	text-align: center;
}

table.aclmodify-table select {
	margin: 1px;
}

table.aclsummary-table td label,
table.aclmodify-table td label {
	min-width: 20px;
}

/* ACL footer/legend */
ul.acllegend {
	list-style: none;
	font-size: 1.091em;
	padding-bottom: 10px;
}

ul.acllegend li {
	display: block;
	float: left;
	padding-right: 20px;
	margin: 15px 0 15px 10px;
}

ul.acllegend li.acl-allowed {
	padding-left: 20px;
	padding-right: 10px;
}

ul.acllegend li.acl-denied {
	padding-left: 20px;
	padding-right: 20px;
}

ul.acllegend li.acl-editgroups {
	padding-right: 10px;
}

ul.acllegend li.acl-resetbtn {
	padding-right: 0;
}

li.acl-editgroups,
li.acl-resetbtn {
	display: block;
	float: left;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

li.acl-editgroups a,
li.acl-resetbtn a {
	padding: 6px;
	cursor: default;
}

li.acl-editgroups a:hover,
li.acl-resetbtn a:hover,
li.acl-editgroups a:focus,
li.acl-resetbtn a:focus {
	text-decoration: none;
	cursor: default;
}

li.acl-editgroups:hover,
li.acl-resetbtn:hover,
li.acl-editgroups:focus,
li.acl-resetbtn:focus {
	text-decoration: none;
	cursor: default;
}

table#acl-config {
	width: 100%;
	margin-top: 15px;
}

table#acl-config th,
table#acl-config td {
	height: 2em;
	background: #f9fade;
	text-align: center;
	vertical-align: middle;
}

table#acl-config th.acl-groups {
	padding-left: 8px;
	font-weight: bold;
	text-align: left;
}

table#acl-config th.acl-groups span.gi {
	margin-right: 2px;
}

table#acl-config td {
	width: 9em;
}

table#acl-config td select {
	float: none;
}

.acl-action {
	font-size: 1.091em;
	margin: auto 0;
}

.acl-groups {
	font-size: 1.091em;
	font-weight: normal;
}

label#jform_rules-lbl {
	float: none;
	white-space: nowrap;
	display: none;
	visibility: hidden;
}

label#jform_filters-lbl {
	float: none;
	white-space: nowrap;
	display: none;
	visibility: hidden;
}

/**
* Options modal- config
*/
ul.config-option-list,
ul.config-option-list li {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.config-option-list fieldset {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}

/* *
* Permission Rules
*/
#permissions-sliders {
    margin-top: 15px;
}

#permissions-sliders ul#rules,
#permissions-sliders ul#rules ul {
	margin: 0 !important;
	padding: 0 !important;
	list-style-type: none;
}

#permissions-sliders ul#rules li {
	margin: 0;
	padding: 0;
}

#permissions-sliders ul#rules table.group-rules {
	border-collapse: collapse;
	margin: 5px;
	width: 100%;
}

#permissions-sliders ul#rules table.group-rules td {
	padding: 4px;
	vertical-align: middle;
	text-align: left;
	overflow: hidden;
}

#permissions-sliders ul#rules table.group-rules th {
	font-size: 1.2em;
	overflow: hidden;
	font-weight: bold;
}

#permissions-sliders .panel {
	margin-bottom: 3px;
	margin-left: 0;
	border: 0;
}

#permissions-sliders p.rule-desc {
	font-size: 1.1em;
}

#permissions-sliders div.rule-notes {
	font-size: 1.1em;
}

ul#rules table.group-rules td label {
	margin: 0 !important;
	line-height: 1.1em;
}

ul#rules table.group-rules td span {
	font-size: 1.1em;
	padding-bottom: 4px;
}

ul#rules table.group-rules td span span {
	font-size: 100%;
}

table.group-rules td select {
	margin: 0 !important;
}

#permissions-sliders ul#rules .mypanel {
	padding: 0;
	line-height: 1.3em;
}

#permissions-sliders .mypanel table.group-rules caption {
	font-size: 1.3em;
}

#permissions-sliders ul#rules {
	padding: 5px;
}

#permissions-sliders ul#rules table.group-rules th {
	text-align: left;
	padding: 4px;
}

#permissions-sliders ul#rules table.group-rules td label {
	min-width: 1em;
}

#permissions-sliders .pane-toggler span {
	padding-left: 20px;
}

#permissions-sliders .pane-toggler-down span {
	padding-left: 20px;
}

#permissions-sliders .pane-toggler-down span.level,
#permissions-sliders .pane-toggler span.level {
	padding: 0;
}

/*
 * Debug styles
 */

.swatch {
	text-align: center;
	padding: 0 15px 0 15px;
}

/* Tab changes for accessibility */
dl.tabs dt h3 {
	padding: 0;
	font-size: 100%;
}

/**
 * Helpmenus
 */
ul.helpmenu li {
	float: right;
	margin: 10px;
	padding: 0;
	list-style-type: none;
	font-weight: bold;
}

/* CSS file for Accessible Admin Menu
 * based on Matt Carrolls' son of suckerfish
 * with javascript by Bill Tomczak
 */

/* Note: set up the font-size on the id and used 100% on the elements.
	If ul/li/a are different ems, then the shifting back via non-js keyboard
	doesn't work properly */

/**
 * Menu Styling
 */
#menu {
	/* this is on the main ul */
	position: relative;
	z-index: 100;
	padding: 0;
	margin: 0;
	width: 100%;
	list-style: none;
	font-size: 1.2em;
	font-weight: bold;
}

#menu ul {
	/* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 100%;
}

#menu ul li.separator {
	margin-bottom: 1em;
}

#menu a {
	padding: 0.35em 2.5em 0.35em 2em;
	vertical-align: middle;
	display: block;
	/* width: 10em; */
	text-decoration: none;
	font-size: 100%;
}

#menu li {
	/* all list items */
	float: left;
	/* width: 12em; width needed or else Opera goes nuts */
	font-size: 100%;
}

#menu li a {
	white-space: nowrap;
}

#menu li li a {
	margin-bottom: 1px;
	margin-top: 1px;
	width: 10em;
}

#menu li.disabled a:hover,
#menu li.disabled a:focus,
#menu li.disabled a {
	cursor: default;
}

#menu li ul {
	/* second-level lists */
	position: absolute;
	width: 16em;
	margin-left: -1000em;
	/* using left instead of display to hide menus because display: none
isn't read by screen readers */
}

#menu li li {
	/* second-level row */
	border: none;
	width: 16em;
}

#menu li ul ul {
	/* third-and-above-level lists */
	margin: -2.3em 0 0 -1000em;
	/* top margin is equal to parent line height+bottom padding */
}

#menu li:hover ul ul, #menu li.sfhover ul ul {
	margin-left: -1000em;
}

#menu li:hover ul, #menu li.sfhover ul {
	/* lists nested under hovered list items */
	margin-left: 0;
}

#menu li li:hover ul, #menu li li.sfhover ul {
	margin-left: 16em;
}

/**
 * Menu Icons
 * These icons are used on the Administrator menu
 * The classes are constructed dynamically when the menu is generated
 */
[class^="menu-"],
[class*=" menu-"] {
	background-position: 3px 50% !important;
}
.menu-archive {
	background-image: url(../images/menu/icon-16-archive.png);
}

.menu-article {
	background-image: url(../images/menu/icon-16-article.png);
}

.menu-associations {
	background-image: url(../images/menu/icon-16-assoc.png);
}

.menu-banners {
	background-image: url(../images/menu/icon-16-banner.png);
}

.menu-banners-clients {
	background-image: url(../images/menu/icon-16-banner-client.png);
}

.menu-banners-tracks {
	background-image: url(../images/menu/icon-16-banner-tracks.png);
}

.menu-banners-cat {
	background-image: url(../images/menu/icon-16-banner-categories.png);
}

.menu-category {
	background-image: url(../images/menu/icon-16-category.png);
}

.menu-checkin {
	background-image: url(../images/menu/icon-16-checkin.png);
}

.menu-clear {
	background-image: url(../images/menu/icon-16-clear.png);
}

.menu-component {
	background-image: url(../images/menu/icon-16-component.png);
}

.menu-config {
	background-image: url(../images/menu/icon-16-config.png);
}

.menu-contact {
	background-image: url(../images/menu/icon-16-contacts.png);
}

.menu-contact-cat {
	background-image: url(../images/menu/icon-16-contacts-categories.png);
}

.menu-content {
	background-image: url(../images/menu/icon-16-content.png);
}

.menu-cpanel {
	background-image: url(../images/menu/icon-16-cpanel.png);
}

.menu-default {
	background-image: url(../images/menu/icon-16-default.png);
}

.menu-featured {
	background-image: url(../images/menu/icon-16-featured.png);
}

.menu-fields {
	background-image: url(../images/menu/icon-16-puzzle.png);
}

.menu-groups {
	background-image: url(../images/menu/icon-16-groups.png);
}

.menu-help {
	background-image: url(../images/menu/icon-16-help.png);
}

.menu-help-this {
	background-image: url(../images/menu/icon-16-help-this.png);
}

.menu-help-forum {
	background-image: url(../images/menu/icon-16-help-forum.png);
}

.menu-help-docs {
	background-image: url(../images/menu/icon-16-help-docs.png);
}

.menu-help-jed {
	background-image: url(../images/menu/icon-16-help-jed.png);
}

.menu-help-jrd {
	background-image: url(../images/menu/icon-16-help-jrd.png);
}

.menu-help-community {
	background-image: url(../images/menu/icon-16-help-community.png);
}

.menu-help-security {
	background-image: url(../images/menu/icon-16-help-security.png);
}

.menu-help-dev {
	background-image: url(../images/menu/icon-16-help-dev.png);
}

.menu-help-shop {
	background-image: url(../images/menu/icon-16-help-shop.png);
}

.menu-info {
	background-image: url(../images/menu/icon-16-info.png);
}

.menu-install {
	background-image: url(../images/menu/icon-16-install.png);
}

.menu-joomlaupdate {
	background-image: url(../images/menu/icon-16-install.png);
}

.menu-language {
	background-image: url(../images/menu/icon-16-language.png);
}

.menu-levels {
	background-image: url(../images/menu/icon-16-levels.png);
}

.menu-logout {
	background-image: url(../images/menu/icon-16-logout.png);
}

.menu-maintenance {
	background-image: url(../images/menu/icon-16-maintenance.png);
}

.menu-massmail {
	background-image: url(../images/menu/icon-16-massmail.png);
}

.menu-media {
	background-image: url(../images/menu/icon-16-media.png);
}

.menu-menu {
	background-image: url(../images/menu/icon-16-menu.png);
}

.menu-menumgr {
	background-image: url(../images/menu/icon-16-menumgr.png);
}

.menu-messages {
	background-image: url(../images/menu/icon-16-messaging.png);
}

.menu-messages-add {
	background-image: url(../images/menu/icon-16-new-privatemessage.png);
}

.menu-messages-read {
	background-image: url(../images/menu/icon-16-messages.png);
}

.menu-module {
	background-image: url(../images/menu/icon-16-module.png);
}

.menu-newarticle {
	background-image: url(../images/menu/icon-16-newarticle.png);
}

.menu-newcategory {
	background-image: url(../images/menu/icon-16-newcategory.png);
}

.menu-newgroup {
	background-image: url(../images/menu/icon-16-newgroup.png);
}

.menu-newlevel {
	background-image: url(../images/menu/icon-16-newlevel.png);
}

.menu-newuser {
	background-image: url(../images/menu/icon-16-newuser.png);
}

.menu-plugin {
	background-image: url(../images/menu/icon-16-plugin.png);
}

.menu-profile {
	background-image: url(../images/menu/icon-16-user.png);
}

.menu-purge {
	background-image: url(../images/menu/icon-16-purge.png);
}

.menu-readmess {
	background-image: url(../images/menu/icon-16-readmess.png);
}

.menu-section {
	background-image: url(../images/menu/icon-16-section.png);
}

.menu-static {
	background-image: url(../images/menu/icon-16-static.png);
}

.menu-stats {
	background-image: url(../images/menu/icon-16-stats.png);
}

.menu-themes {
	background-image: url(../images/menu/icon-16-themes.png);
}

.menu-trash {
	background-image: url(../images/menu/icon-16-trash.png);
}

.menu-user {
	background-image: url(../images/menu/icon-16-user.png);
}

.menu-user-note {
	background-image: url(../images/menu/icon-16-user-note.png);
}

.menu-delete {
	background-image: url(../images/menu/icon-16-delete.png);
}

.menu-help-trans {
	background-image: url(../images/menu/icon-16-help-trans.png);
}

.menu-newsfeeds {
	background-image: url(../images/menu/icon-16-newsfeeds.png);
}

.menu-newsfeeds-cat {
	background-image: url(../images/menu/icon-16-newsfeeds-cat.png);
}

.menu-redirect {
	background-image: url(../images/menu/icon-16-redirect.png);
}

.menu-search {
	background-image: url(../images/menu/icon-16-search.png);
}

.menu-finder {
	background-image: url(../images/menu/icon-16-search.png);
}

.menu-weblinks {
	background-image: url(../images/menu/icon-16-links.png);
}

.menu-weblinks-cat {
	background-image: url(../images/menu/icon-16-links-cat.png);
}

.menu-tags {
	background-image: url(../images/menu/icon-16-tags.png);
}

.menu-postinstall {
	background-image: url(../images/menu/icon-16-generic.png);
}
.icon-32-cog {
	background-image: url(../images/toolbar/icon-32-cog.png);
}

/**
 * Extra positioning rules for limited noscript keyboard accessibility
 * need the backgrounds here to keep the background as the nav background
 * since it is overlaying other content.
 * Using margin-left instead of left so that can move back without
javascript
 * display downlevel ul
 */
#menu li a:focus+ul {
	margin-left: 0;
}

#menu li li a:focus+ul {
	margin-left: 1016em;
}

/* bring back the focus elements into view */
#menu li li a:focus {
	margin-left: 1000em;
	width: 10em;
}

#menu li li li a:focus {
	margin-left: 2016em;
	width: 10em;
}

#menu li:hover a:focus, #menu li.sfhover a.sffocus {
	margin-left: 0;
}

#menu li li:hover a:focus+ul, #menu li li.sfhover a.sffocus+ul {
	margin-left: 16em;
}

/**
 * Sidebar styling
 */
#sidebar {
	float:left;
	margin: 15px 5px;
}

/**
 * Submenu styling
 */
#submenu {
	list-style: none;
	padding: 0;
	margin: 0;
	/* border-bottom plus padding-bottom is the technique */
	padding-bottom: 2.5em;
	line-height: 2em;
}

#submenu ul, #submenu li {
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#submenu li, #submenu span.nolink {
	float: left;
	font-weight: bold;
	margin-right: 8px;
	padding: 2px 10px 2px 10px;
	text-decoration: none;
	cursor: pointer;
	-moz-border-radius-topright: 3px;
	-moz-border-radius-topleft: 3px;
	-webkit-border-top-right-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	border-top-left-radius: 3px;
}

#submenu span.nolink {
	color: #999;
}

#submenu li.active, #submenu span.nolink.active {
	cursor: default;
}

#submenu li.active a, #submenu span.nolink.active, #submenu li a:hover,
#submenu li a:focus {
	text-decoration: none;
}

/* -- CUSTOM LANG STRINGS STYLES ----------- */

.red {
	font-weight: bold;
	color: #c00;
}

/* -- OTHER STYLES ----------- */

.pre_message {
	font-size: 1.3em;
}

/* -- Update check badges -- */
span.update-badge {
	background-image: -moz-linear-gradient(center bottom, #FF0000 41%, #FC7E7E
79%);
	background-image: -webkit-gradient(linear, left bottom, left top,
color-stop(0.41, rgb(255, 0, 0)), color-stop(0.79, rgb(252, 126, 126)));
	border: 2px solid white;
	border-radius: 1.5em 1.5em 1.5em 1.5em;
	color: white;
	display: block;
	float: left;
	font-size: 1.2em;
	font-weight: bold;
	height: 1.2em;
	left: 60px;
	min-width: 1em;
	padding: 0 0.1em 0;
	position: relative;
	top: -88px;
}

/* User Notes */
.unotes ul, .unotes ol {
	list-style: none;
	list-style-position: inside;
	padding-left: 0;
	padding-right: 0;

}

.unotes div.utitle {
	padding: 10px;
	float: left;
	font-size: 1.2em;
	line-height: 1.2em;
}

.unotes h4 {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 1.3em;
}

.unotes .ubody {
	padding-left: 10px;
	padding-right: 10px;
	font-size: 1.2em;
	line-height: 1.5em;
}

.unotes p {
	padding-bottom: 10px;
}

/* com-install styling */
div#database-sliders {
	margin: 10px;
}

fieldset.uploadform {
	margin-top: 10px;
	margin-bottom: 10px;
	min-height: 200px;
}

/* Installer Database */
#installer-database, #installer-discover, #installer-update,
#installer-warnings {
	margin-top: 10px;
}

#installer-database #sidebar {
	float: none
}

#installer-database p.warning {
	padding-left: 20px;
}

#installer-database p.nowarning {
	padding-left: 20px;
}

/* Spinner */
.joomlaupdate_spinner {
	float: left;
	margin-right: 15px;
}

.btn-group {
	position: relative;
	display: inline-block;
}

.btn-group + .btn-group {
	margin-left: 5px;
}

.btn-group > .btn {
	position: relative;
	float: left;
	margin-left: -1px;
}

.icon-48-cpanel {
	height: 50px;
	width: 50%;
}

.well {
	min-height: 20px;
	padding: 19px;
	margin-bottom: 20px;
	background-color: #f5f5f5;
	border: 1px solid #eee;
	border: 1px solid rgba(0, 0, 0, 0.05);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.well blockquote {
	border-color: #ddd;
	border-color: rgba(0, 0, 0, 0.15);
}

.well-large {
	padding: 24px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.well-small {
	padding: 9px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

/* Striped */
.list-striped,
.row-striped {
	list-style: none;
	line-height: 18px;
	text-align: left;
	vertical-align: middle;
	border-top: 1px solid #dddddd;
	margin-left: 0;
	font-size: 1.2em;
	padding: 9px;
}

.list-striped li,
.list-striped dd,
.row-striped .row,
.row-striped .row-fluid {
	border-bottom: 1px solid #dddddd;
	padding: 8px;
}

.list-striped li:nth-child(odd),
.list-striped dd:nth-child(odd),
.row-striped .row:nth-child(odd),
.row-striped .row-fluid:nth-child(odd) {
	background-color: #f9f9f9;
}

.list-striped li:hover,
.list-striped dd:hover,
.row-striped .row:hover,
.row-striped .row-fluid:hover {
	background-color: #f5f5f5;
}

.row-striped .row-fluid {
	width: 100%;
	box-sizing: border-box;
}

.row-striped .row-fluid [class*="span"] {
	min-height: 10px;
}

.alert {
	padding: 8px 35px 8px 14px;
	margin-bottom: 18px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	background-color: #fcf8e3;
	border: 1px solid #fbeed5;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	color: #c09853;
	font-size: 120%;
}

.alert-heading {
	color: inherit;
}

.alert .close {
	position: relative;
	right: -30px;
	top: -5px;
	line-height: 18px;
	float: right;
	font-size: 20px;
	font-weight: bold;
}

.alert-success {
	background-color: #dff0d8;
	border-color: #d6e9c6;
	color: #468847;
}

.alert-danger,
.alert-error {
	background-color: #f2dede;
	border-color: #eed3d7;
	color: #b94a48;
}

.alert-info {
	background-color: #d9edf7;
	border-color: #bce8f1;
	color: #3a87ad;
}

.alert-block {
	padding-top: 14px;
	padding-bottom: 14px;
}

.alert-block > p,
.alert-block > ul {
	margin-bottom: 0;
}

.alert-block p + p {
	margin-top: 5px;
}

.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group >
.btn:active, .btn-group > .btn.active {
	z-index: 2;
}

.btn-group > .btn {
	position: relative;
	float: left;
	margin-left: -1px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

table {
	max-width: 100%;
	background-color: transparent;
	border-collapse: collapse;
	border-spacing: 0;
}

.table {
	width: 100%;
	margin-bottom: 18px;
}

.tab-content > .tab-pane,
.pill-content > .pill-pane {
	display: none;
}

.tab-content > .active,
.pill-content > .active {
	display: block;
}

.tabs-below > .nav-tabs {
	border-top: 1px solid #ddd;
}

#status .btn-toolbar, #status p {
	margin: 0px;
}

.navbar .btn-group {
	margin: 0;
	padding: 5px 5px 6px;
}

/**
 * Media
 */
.media .btn {
	margin: 10px 20px;
}

.thumbnails > li {
	list-style: none outside none;
	float: left;
	margin-bottom: 18px;
	margin-left: 20px;
}

#mediamanager-form {
	margin: 10px;
}
.is-tagbox {
	float: left;
}

/* Item associations */
.item-associations {
	margin: 0;
}
.item-associations li {
	list-style: none;
	display: inline-block;
	margin: 0 0 3px 0;
}
.item-associations li a,
table.adminlist .item-associations li a  {
	color: #ffffff;
}

.hidden {
	display: none;
	visibility: hidden;
}

// Bootstrap Tooltips (need to load last, something is overriding these
styles in the CSS, debug later ;-) )
@import "../../../../media/jui/less/tooltip.less";

.tooltip {
	max-width: 400px;
}
.tooltip-inner {
	max-width: none;
	text-align: left;
	text-shadow: none;
}
th .tooltip-inner {
	font-weight: normal;
}
.tooltip.hasimage {
	opacity: 1;
}
fieldset.panelform .tooltip img {
	float: none;
	margin: 0;
}
//Toggle editor button
div.toggle-editor {
	float: right;
}

.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}
.module-edit {
	display: inline-block;
}
.break-word {
	word-break: break-all;
	word-wrap: break-word;
}
.muted {
	color: #999;
}
/* Popover minimum height - overwrite bootstrap default */
.popover-content {
    min-height: 33px;
}less/variables.less000064400000014200151163244320010350 0ustar00//
Variables.less
// Variables to customize the look and feel of Bootstrap
// -----------------------------------------------------



// GLOBAL VALUES
// --------------------------------------------------


// Grays
// -------------------------
@black:                 #000;
@grayDarker:            #222;
@grayDark:              #333;
@gray:                  #555;
@grayLight:             #999;
@grayLighter:           #eee;
@white:                 #fff;


// Accent colors
// -------------------------
@blue:                  #049cdb;
@blueDark:              #0064cd;
@green:                 #46a546;
@red:                   #9d261d;
@yellow:                #ffc40d;
@orange:                #f89406;
@pink:                  #c3325f;
@purple:                #7a43b6;


// Scaffolding
// -------------------------
@bodyBackground:        @white;
@textColor:             @grayDark;


// Links
// -------------------------
@linkColor:             #08c;
@linkColorHover:        darken(@linkColor, 15%);


// Typography
// -------------------------
@sansFontFamily:        "Helvetica Neue", Helvetica, Arial,
sans-serif;
@serifFontFamily:       Georgia, "Times New Roman", Times, serif;
@monoFontFamily:        Menlo, Monaco, Consolas, "Courier New",
monospace;

@baseFontSize:          13px;
@baseFontFamily:        @sansFontFamily;
@baseLineHeight:        18px;
@altFontFamily:         @serifFontFamily;

@headingsFontFamily:    inherit; // empty to use BS default,
@baseFontFamily
@headingsFontWeight:    bold;    // instead of browser default, bold
@headingsColor:         inherit; // empty to use BS default, @textColor


// Tables
// -------------------------
@tableBackground:                   transparent; // overall
background-color
@tableBackgroundAccent:             #f9f9f9; // for striping
@tableBackgroundHover:              #f5f5f5; // for hover
@tableBorder:                       #ddd; // table and cell border


// Buttons
// -------------------------
@btnBackground:                     @white;
@btnBackgroundHighlight:            darken(@white, 10%);
@btnBorder:                         #ccc;

@btnPrimaryBackground:              #2384d3;
@btnPrimaryBackgroundHighlight:     #15497c;

@btnInfoBackground:                 #5bc0de;
@btnInfoBackgroundHighlight:        #2f96b4;

@btnSuccessBackground:              #62c462;
@btnSuccessBackgroundHighlight:     #51a351;

@btnWarningBackground:              lighten(@orange, 15%);
@btnWarningBackgroundHighlight:     @orange;

@btnDangerBackground:               #ee5f5b;
@btnDangerBackgroundHighlight:      #bd362f;

@btnInverseBackground:              @gray;
@btnInverseBackgroundHighlight:     @grayDarker;


// Forms
// -------------------------
@inputBackground:               @white;
@inputBorder:                   #ccc;
@inputBorderRadius:             3px;
@inputDisabledBackground:       @grayLighter;
@formActionsBackground:         #f5f5f5;

// Dropdowns
// -------------------------
@dropdownBackground:            @white;
@dropdownBorder:                rgba(0,0,0,.2);
@dropdownLinkColor:             @grayDark;
@dropdownLinkColorHover:        @white;
@dropdownLinkBackgroundHover:   @linkColor;
@dropdownDividerTop:            #e5e5e5;
@dropdownDividerBottom:         @white;



// COMPONENT VARIABLES
// --------------------------------------------------

// Z-index master list
// -------------------------
// Used for a bird's eye view of components dependent on the z-axis
// Try to avoid customizing these :)
@zindexDropdown:          1000;
@zindexTooltip:           1020;
@zindexFixedNavbar:       1030;
@zindexModalBackdrop:     1040;
@zindexModal:             1050;
@zindexPopover:           1060;

// Sprite icons path
// -------------------------
@iconSpritePath:          "../img/glyphicons-halflings.png";
@iconWhiteSpritePath:    
"../img/glyphicons-halflings-white.png";


// Input placeholder text color
// -------------------------
@placeholderText:         @grayLight;


// Hr border color
// -------------------------
@hrBorder:                @grayLighter;


// Navbar
// -------------------------
@navbarHeight:                    40px;
@navbarBackground:                @grayDarker;
@navbarBackgroundHighlight:       @grayDark;

@navbarText:                      @grayLight;
@navbarLinkColor:                 @grayLight;
@navbarLinkColorHover:            @white;
@navbarLinkColorActive:           @navbarLinkColorHover;
@navbarLinkBackgroundHover:       transparent;
@navbarLinkBackgroundActive:      @navbarBackground;

@navbarSearchBackground:          lighten(@navbarBackground, 25%);
@navbarSearchBackgroundFocus:     @white;
@navbarSearchBorder:              darken(@navbarSearchBackground, 30%);
@navbarSearchPlaceholderColor:    #ccc;
@navbarBrandColor:                @navbarLinkColor;


// Hero unit
// -------------------------
@heroUnitBackground:              @grayLighter;
@heroUnitHeadingColor:            inherit;
@heroUnitLeadColor:               inherit;


// Form states and alerts
// -------------------------
@warningText:             #c09853;
@warningBackground:       #fcf8e3;
@warningBorder:           darken(spin(@warningBackground, -10), 3%);

@errorText:               #b94a48;
@errorBackground:         #f2dede;
@errorBorder:             darken(spin(@errorBackground, -10), 3%);

@successText:             #468847;
@successBackground:       #dff0d8;
@successBorder:           darken(spin(@successBackground, -10), 5%);

@infoText:                #3a87ad;
@infoBackground:          #d9edf7;
@infoBorder:              darken(spin(@infoBackground, -10), 7%);



// GRID
// --------------------------------------------------

// Default 940px grid
// -------------------------
@gridColumns:             12;
@gridColumnWidth:         60px;
@gridGutterWidth:         20px;
@gridRowWidth:            (@gridColumns * @gridColumnWidth) +
(@gridGutterWidth * (@gridColumns - 1));

// Fluid grid
// -------------------------
@fluidGridColumnWidth:    6.382978723%;
@fluidGridGutterWidth:    2.127659574%;


// Login
// -------------------------
@loginBackground:                 #142849;
@loginBackgroundHighlight:        #165387;

// Header
// -------------------------
@headerBackground:                 #1a3867;
@headerBackgroundHighlight:       
#17568c;LICENSE.txt000064400000042630151163244320006375 0ustar00GNU GENERAL
PUBLIC LICENSE
				Version 2, June 1991

 Copyright (C) 1989, 1991 Free Software Foundation, Inc.
 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

				Preamble

  The licenses for most software are designed to take away your
freedom to share and change it.  By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users.  This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it.  (Some other Free Software Foundation software is covered by
the GNU Library General Public License instead.)  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.

  To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have.  You must make sure that they, too, receive or can get the
source code.  And you must show them these terms so they know their
rights.

  We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.

  Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software.  If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.

  Finally, any free program is threatened constantly by software
patents.  We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary.  To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at
all.

  The precise terms and conditions for copying, distribution and
modification follow.

			GNU GENERAL PUBLIC LICENSE
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License.  The "Program",
below,
refers to any such program or work, and a "work based on the
Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language.  (Hereinafter, translation is included without limitation in
the term "modification".)  Each licensee is addressed as
"you".

Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope.  The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.

  1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.

You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.

  2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:

	a) You must cause the modified files to carry prominent notices
	stating that you changed the files and the date of any change.

	b) You must cause any work that you distribute or publish, that in
	whole or in part contains or is derived from the Program or any
	part thereof, to be licensed as a whole at no charge to all third
	parties under the terms of this License.

	c) If the modified program normally reads commands interactively
	when run, you must cause it, when started running for such
	interactive use in the most ordinary way, to print or display an
	announcement including an appropriate copyright notice and a
	notice that there is no warranty (or else, saying that you provide
	a warranty) and that users may redistribute the program under
	these conditions, and telling the user how to view a copy of this
	License.  (Exception: if the Program itself is interactive but
	does not normally print such an announcement, your work based on
	the Program is not required to print an announcement.)

These requirements apply to the modified work as a whole.  If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works.  But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.

Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.

In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.

  3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:

	a) Accompany it with the complete corresponding machine-readable
	source code, which must be distributed under the terms of Sections
	1 and 2 above on a medium customarily used for software interchange; or,

	b) Accompany it with a written offer, valid for at least three
	years, to give any third party, for a charge no more than your
	cost of physically performing source distribution, a complete
	machine-readable copy of the corresponding source code, to be
	distributed under the terms of Sections 1 and 2 above on a medium
	customarily used for software interchange; or,

	c) Accompany it with the information you received as to the offer
	to distribute corresponding source code.  (This alternative is
	allowed only for noncommercial distribution and only if you
	received the program in object code or executable form with such
	an offer, in accord with Subsection b above.)

The source code for a work means the preferred form of the work for
making modifications to it.  For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable.  However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.

If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.

  4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License.  Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.

  5. You are not required to accept this License, since you have not
signed it.  However, nothing else grants you permission to modify or
distribute the Program or its derivative works.  These actions are
prohibited by law if you do not accept this License.  Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.

  6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions.  You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.

  7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all.  For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.

If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.

It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices.  Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.

This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.

  8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded.  In such case, this License incorporates
the limitation as if written in the body of this License.

  9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

Each version is given a distinguishing version number.  If the Program
specifies a version number of this License which applies to it and
"any
later version", you have the option of following the terms and
conditions
either of that version or of any later version published by the Free
Software Foundation.  If the Program does not specify a version number of
this License, you may choose any version ever published by the Free
Software
Foundation.

  10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission.  For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this.  Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.

				NO WARRANTY

  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.

  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.

			 END OF TERMS AND CONDITIONS

		How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is
found.

	<one line to give the program's name and a brief idea of what it
does.>
	Copyright (C) <year>  <name of author>

	This program is free software; you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation; either version 2 of the License, or
	(at your option) any later version.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with this program; if not, write to the Free Software
	Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA


Also add information on how to contact you by electronic and paper mail.

If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:

	Gnomovision version 69, Copyright (C) year name of author
	Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show
w'.
	This is free software, and you are welcome to redistribute it
	under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the
appropriate
parts of the General Public License.  Of course, the commands you use may
be called something other than `show w' and `show c'; they could
even be
mouse-clicks or menu items--whatever suits your program.

You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program,
if
necessary.  Here is a sample; alter the names:

  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
  `Gnomovision' (which makes passes at compilers) written by James
Hacker.

  <signature of Ty Coon>, 1 April 1989
  Ty Coon, President of Vice

This General Public License does not permit incorporating your program into
proprietary programs.  If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library.  If this is what you want to do, use the GNU Library General
Public License instead of this License.
login.php000064400000010750151163244330006372 0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

/** @var JDocumentHtml $this */

$app  = JFactory::getApplication();
$lang = JFactory::getLanguage();

// Gets the FrontEnd Main page Uri
$frontEndUri = JUri::getInstance(JUri::root());
$frontEndUri->setScheme(((int) $app->get('force_ssl', 0)
=== 2) ? 'https' : 'http');

// Output as HTML5
$this->setHtml5(true);

// jQuery needed by template.js
JHtml::_('jquery.framework');

// Add template js
JHtml::_('script', 'template.js',
array('version' => 'auto', 'relative'
=> true));

// Add html5 shiv
JHtml::_('script', 'jui/html5.js',
array('version' => 'auto', 'relative'
=> true, 'conditional' => 'lt IE 9'));

// Load optional RTL Bootstrap CSS
JHtml::_('bootstrap.loadCss', false, $this->direction);

// Load system style CSS
JHtml::_('stylesheet',
'templates/system/css/system.css', array('version'
=> 'auto'));

// Loadtemplate CSS
JHtml::_('stylesheet', 'template.css',
array('version' => 'auto', 'relative'
=> true));

// Load additional CSS styles for colors
if (!$this->params->get('colourChoice'))
{
	$colour = 'standard';
}
else
{
	$colour =
htmlspecialchars($this->params->get('colourChoice'),
ENT_COMPAT, 'UTF-8');
}

JHtml::_('stylesheet', 'colour_' . $colour .
'.css', array('version' => 'auto',
'relative' => true));

// Load additional CSS styles for rtl sites
if ($this->direction === 'rtl')
{
	JHtml::_('stylesheet', 'template_rtl.css',
array('version' => 'auto', 'relative'
=> true));
	JHtml::_('stylesheet', 'colour_' . $colour .
'_rtl.css', array('version' => 'auto',
'relative' => true));
}

// Load additional CSS styles for bold Text
if ($this->params->get('boldText'))
{
	JHtml::_('stylesheet', 'boldtext.css',
array('version' => 'auto', 'relative'
=> true));
}

// Load specific language related CSS
JHtml::_('stylesheet', 'administrator/language/' .
$lang->getTag() . '/' . $lang->getTag() . '.css',
array('version' => 'auto'));

// Load custom.css
JHtml::_('stylesheet', 'custom.css',
array('version' => 'auto', 'relative'
=> true));

// IE specific
JHtml::_('stylesheet', 'ie8.css',
array('version' => 'auto', 'relative'
=> true, 'conditional' => 'IE 8'));
JHtml::_('stylesheet', 'ie7.css',
array('version' => 'auto', 'relative'
=> true, 'conditional' => 'IE 7'));

// Logo file
if ($this->params->get('logoFile'))
{
	$logo = JUri::root() . $this->params->get('logoFile');
}
else
{
	$logo = $this->baseurl . '/templates/' . $this->template .
'/images/logo.png';
}
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>"
dir="<?php echo $this->direction; ?>">
<head>
	<jdoc:include type="head" />
</head>
<body id="login-page">
	<div id="containerwrap">
		<!-- Header Logo -->
		<div id="header">
			<h1 class="title"><?php echo
$this->params->get('showSiteName') ?
$app->get('sitename') . ' ' .
JText::_('JADMINISTRATION') :
JText::_('JADMINISTRATION'); ?></h1>
		</div><!-- end header -->
		<!-- Content Area -->
		<div id="content">
			<!-- Beginning of Actual Content -->
			<div id="element-box" class="login">
				<div class="pagetitle"><h2><?php echo
JText::_('COM_LOGIN_JOOMLA_ADMINISTRATION_LOGIN');
?></h2></div>
					<!-- System Messages -->
					<jdoc:include type="message" />
					<div class="login-inst">
					<p><?php echo JText::_('COM_LOGIN_VALID')
?></p>
					<div id="lock"></div>
					<a href="<?php echo
htmlspecialchars($frontEndUri->toString(), ENT_COMPAT,
'UTF-8'); ?>" target="_blank">
						<?php echo
JText::_('COM_LOGIN_RETURN_TO_SITE_HOME_PAGE'); ?>
					</a>
					</div>
					<!-- Login Component -->
					<div class="login-box">
						<jdoc:include type="component" />
					</div>
				<div class="clr"></div>
			</div><!-- end element-box -->
		<noscript>
			<?php echo JText::_('JGLOBAL_WARNJAVASCRIPT'); ?>
		</noscript>
		</div><!-- end content -->
		<div class="clr"></div>
	</div><!-- end of containerwrap -->
	<!-- Footer -->
	<div id="footer">
		<p class="copyright">
			<?php
			// Fix wrong display of Joomla!® in RTL language
			if ($lang->isRtl())
			{
				$joomla = '<a href="https://www.joomla.org"
target="_blank" rel="noopener
noreferrer">Joomla!</a><sup>&#174;&#x200E;</sup>';
			}
			else
			{
				$joomla = '<a href="https://www.joomla.org"
target="_blank" rel="noopener
noreferrer">Joomla!</a><sup>&#174;</sup>';
			}
			echo JText::sprintf('JGLOBAL_ISFREESOFTWARE', $joomla);
			?>
		</p>
	</div>
</body>
</html>
postinstall/hathormessage.php000064400000007766151163244330012505
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.hathor
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 *
 */

/**
 * Checks if hathor is the default backend template or currently used as
default style.
 * If yes we want to show a message and action button.
 *
 * @return  boolean
 *
 * @since   3.7
 */
function hathormessage_postinstall_condition()
{
	$db             = JFactory::getDbo();
	$user           = JFactory::getUser();
	$globalTemplate = 'n/a';
	$template       = 'n/a';

	// We can only do that if you have edit permissions in com_templates
	if ($user->authorise('core.edit.state',
'com_templates'))
	{
		$query = $db->getQuery(true)
			->select('template')
			->from($db->quoteName('#__template_styles'))
			->where($db->quoteName('home') . ' = ' .
$db->quote('1'))
			->where($db->quoteName('client_id') . ' = 1');

		// Get the global setting about the default template
		$globalTemplate = $db->setQuery($query)->loadResult();
	}

	// Get the current user admin style
	$adminstyle = $user->getParam('admin_style');

	if ($adminstyle)
	{
		$query = $db->getQuery(true)
			->select('template')
			->from($db->quoteName('#__template_styles'))
			->where($db->quoteName('id') . ' = ' . (int)
$adminstyle)
			->where($db->quoteName('client_id') . ' = 1');

		// Get the template name associated to the admin style
		$template = $db->setquery($query)->loadResult();
	}

	if (($globalTemplate != 'hathor') && ($template !=
'hathor'))
	{
		// Hathor is not default not global and not in the user so no message
needed
		return false;
	}

	// Hathor is default please add the message
	return true;
}

/**
 * Set the default backend template back to isis if you are allowed to do
this
 * This also sets the current user setting to isis if not done yet
 *
 * @return  void
 *
 * @since   3.7
 */
function hathormessage_postinstall_action()
{
	$db   = JFactory::getDbo();
	$user = JFactory::getUser();

	$query = $db->getQuery(true)
		->select(array('id', 'title'))
		->from($db->quoteName('#__template_styles'))
		->where($db->quoteName('template') . ' =
"isis"')
		->where($db->quoteName('client_id') . ' = 1');

	$isisStyleId   = $db->setQuery($query)->loadColumn();
	$isisStyleName = $db->setQuery($query)->loadColumn(1);
	$adminstyle    = $user->getParam('admin_style');

	// The user uses the system setting so no need to change that.
	if ($adminstyle)
	{
		$query = $db->getQuery(true)
			->select('template')
			->from($db->quoteName('#__template_styles'))
			->where($db->quoteName('id') . ' = ' . (int)
$adminstyle)
			->where($db->quoteName('client_id') . ' = 1');

		$template = $db->setQuery($query)->loadResult();

		// The current user uses hathor
		if ($template == 'hathor')
		{
			$user->setParam('admin_style',
$isisStyleId['0']);
			$user->save();
		}
	}

	// We can only do that if you have edit permissions in com_templates
	if ($user->authorise('core.edit.state',
'com_templates'))
	{
		$query = $db->getQuery(true)
			->update($db->quoteName('#__template_styles'))
			->set($db->quoteName('home') . ' = ' .
$db->quote('0'))
			->where($db->quoteName('template') . ' =
"hathor"')
			->where($db->quoteName('client_id') . ' = 1');

		// Execute
		$db->setQuery($query)->execute();

		$query = $db->getQuery(true)
			->update($db->quoteName('#__template_styles'))
			->set($db->quoteName('home') . ' = ' .
$db->quote('1'))
			->where($db->quoteName('template') . ' =
"isis"')
			->where($db->quoteName('client_id') . ' = 1')
			->where($db->quoteName('id') . ' = ' .
$isisStyleId[0]);

		// Execute
		$db->setQuery($query)->execute();
	}

	// The postinstall component load the language to late... so we need to
make sure it is loaded here.
	JFactory::getLanguage()->load('tpl_hathor',
JPATH_ADMINISTRATOR, null, false, true);

	// Template was successfully changed to isis
	JFactory::getApplication()->enqueueMessage(JText::sprintf('TPL_HATHOR_CHANGED_DEFAULT_TEMPLATE_TO_ISIS',
$isisStyleName[0]), 'message');
}
templateDetails.xml000064400000005701151163244330010414 0ustar00<?xml
version="1.0" encoding="utf-8"?>
<!DOCTYPE install PUBLIC "-//Joomla! 1.6//DTD template
1.0//EN"
"https://www.joomla.org/xml/dtd/1.6/template-install.dtd">
<extension type="template" version="3.1"
client="administrator">
	<name>hathor</name>
	<creationDate>May 2010</creationDate>
	<author>Andrea Tarr</author>
	<authorEmail>admin@joomla.org</authorEmail>
	<copyright>Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.</copyright>
	<license>GNU General Public License version 2 or later; see
LICENSE.txt</license>
	<version>3.0.0</version>
	<description>TPL_HATHOR_XML_DESCRIPTION</description>
	<files>
		<filename>component.php</filename>
		<filename>cpanel.php</filename>
		<filename>error.php</filename>
		<filename>favicon.ico</filename>
		<filename>index.php</filename>
		<filename>login.php</filename>
		<filename>LICENSE.txt</filename>
		<filename>templateDetails.xml</filename>
		<filename>template_preview.png</filename>
		<filename>template_thumbnail.png</filename>
		<folder>css</folder>
		<folder>html</folder>
		<folder>images</folder>
		<folder>js</folder>
		<folder>language</folder>
	</files>

	<positions>
		<position>menu</position>
		<position>submenu</position>
		<position>toolbar</position>
		<position>title</position>
		<position>status</position>
		<position>icon</position>
		<position>cp_shell</position>
		<position>cpanel</position>
		<position>login</position>
		<position>debug</position>
		<position>footer</position>
	</positions>
	 <languages>
		<language
tag="en-GB">language/en-GB/en-GB.tpl_hathor.ini</language>
		<language
tag="en-GB">language/en-GB/en-GB.tpl_hathor.sys.ini</language>
	</languages>
	<config>
		<fields name="params">
			<fieldset name="basic">
				<field
					name="showSiteName"
					type="radio"
					label="TPL_HATHOR_SHOW_SITE_NAME_LABEL"
					description="TPL_HATHOR_SHOW_SITE_NAME_DESC"
					class="btn-group btn-group-yesno"
					default="0"
					>
					<option value="1">JYES</option>
					<option value="0">JNO</option>
				</field>

				<field
					name="logoFile"
					type="media"
					label="TPL_HATHOR_LOGO_LABEL"
					description="TPL_HATHOR_LOGO_DESC" 
					class=""
					default=""
				/>

				<field
					name="colourChoice"
					type="list"
					label="TPL_HATHOR_COLOUR_CHOICE_LABEL"
					description="TPL_HATHOR_COLOUR_CHOICE_DESC"
					default="0"
					filter="word"
					>
					<option
value="">TPL_HATHOR_COLOUR_CHOICE_STANDARD</option>
					<option
value="highcontrast">TPL_HATHOR_COLOUR_CHOICE_HIGH_CONTRAST</option>
					<option
value="brown">TPL_HATHOR_COLOUR_CHOICE_BROWN</option>
					<option
value="blue">TPL_HATHOR_COLOUR_CHOICE_BLUE</option>
				</field>

				<field
					name="boldText"
					type="radio"
					label="TPL_HATHOR_BOLD_TEXT_LABEL"
					description="TPL_HATHOR_BOLD_TEXT_DESC"
					class="btn-group btn-group-yesno"
					default="0"
					>
					<option value="1">JYES</option>
					<option value="0">JNO</option>
				</field>
			</fieldset>
		</fields>
	</config>
</extension>
template_preview.png000064400000055262151163244330010642 0ustar00�PNG


IHDR
3ϛ���PLTE����}K���4kU*Z���~����;s��s�I���76t~����������dmiզ�>?Z��k�>�ת�;DJ����v��$lo���@3eA�Dc��˸y�:���L}������R���|m6k��1?|��������僞���;����K\dHR�9�?�ɖ�w�tRNS@��fY�IDATx왋w�:Ƌ�+(G<R�%Q�d�\@�Z��v�뤾}����4b�I%�u
y���AW]��t��+!���檫^���Ұ׮��j��\u����*{<&����ȱ�ɽH�t��\�eǥ���_��{�~'e�r��ȹ�9�8���Z���D�4�j@��{S'˦����Y_;�ٙ�w�9��9O�̥����T�,��������뽰̌�2_�x�޿�����`s����J6P?����v������]Y�#�/V��%3.\�F귓�yo�gפ?������xs�����T�z�h�ؿ��(�2�K�dRV�"
QГ[�N��K�9�)�w���]Qt���8����ù��ɱ��a�)(KԚ~'�b��ZQ�D���<�䋀D��q�軻�=��f�9V�y�N��úr�����`��-D�Nc���H����{��
�Y�
�uz�����@f�p��qF���7v�HEI�x`nuLaz�A���>�5�e=��b���v�������77��(<���Y��zL��t
�DM38P����Z��q�(W�)�eZ):�J�,�J����%@Hb"h�1"�5��M�
ѷ�����o�>������)�Q��Y�7���tv���
�i�v�c��c�L���t
�c/�xs)�S�m-68�	�D����_)��O��QvJ��
������X|t��l��#V&�+b�H�
Ug��P��d&�#o��g"�����(�P깂�b�mm��=gmS�B�ib�:�A�Ȑ���,���`��5��D�@82�ODD�$�
d�C�c�Ƥpl��*Qm�c=�DH�pjf@
1P8u��r�
��U,�J�vq\B��"MO���\�i��F�9ix�r�JHй�/���i�I�j�Y���-O��}��3@�t$�xp=�Q��~N��ֆ��	�����QVt�'@;�:�z��{1=bMFpDj���eG�&�N�?��W�S�x�
�4K����u��pE��9
*��c�H�`��o��X�x�c�ٴXi�%@@
������n���G.Vx�\�H�XM�3��b�`����@�q���(/;Ru7-���3T�U���.���X��e@�ǡ�=*��%aN�aC@l���
�����/�p���M� �C��
X�&@2p.��CE�����ӎZ�dG��պ�>����Ro��X�i�BD/ҫ��|d��t,�@�hYD���Db�D������.V���B�Q�
im0=Q�-yD\z���h����r�<
�z���b�,�^UVsvWV��SSvs�Pq��yUoÿi��v��'Ӈ~�:�ɪ�^2��πl_<�L����F��3
6	��ɤj�s@pG[�:�a�n��a$��B�)/i���m$��

!�7C����xf@��h4O�(\��h��h��XVP2Fqq	�E(X`I�Y�F��t�%����nɅ�eo3xO�όM���qE��U!��iP��X���[��2&'���39\��
�L	[�v&�7��\-��GyK��Ie
n�����*	�Q.��TH�8O���9@����8���ܶ�6�ˎ�WȣB:@@��$����[v({����K���D�~�;N�%��/W
�2"�V��EZ)�jdC|񷷼+�I�F�5]P�k��f~I��z]P�XJA��
J�Eh��u!���h]�!
C	�!'�T�1e�Y_�1t�*H����d�|�:��R~����9��
ڒZ���fD,~(���B����p�'@p�_&�<�mr���@�a��3@��
�@��j%7�k��
%�:���\�؟,��^��}�}�d4��[ƕc?C���sY�j�
]?�7��1a��8�ȡ#���F����]��:�P��-�	�F�sʢ�;�{�|�D�C=�:��'
��l���BFT�}T��8)R#a�fs�3�ÔD�FѴV��x�dR6�V�d���$�{-�?��oR2���s4�Y�D���c���Ν�Ȯ*q��t�P([�eh�
�J��_�YfΜw���k����&��^���@Z٭����*�
!콦`?�����8
]��1끚V�5k�5k�ˬ�����������Z��+�~��1�Y0k���&�n�?c���}��/��P+��5���Sp
�<�n>��@�_$�2�L
�2�L �2�L HH�L6�a
A�B}Ȗ��)=d���c���:d�Ϳ�fH�V���R};
������r�@zeD��qH�����!
�Yl~�G�l+���X�y��8d;��։2d�[)%�yc�7٠<3ş�C�@<W�]cZi�u�j��\=S"���qccOeV0:f3�Ij�g�v'�@&S]5s��-ĞB�����،qlt7Ѭ�	9�z�Kz,��-�f�r�:$����i��wl{���l�\�����*ַ�!
ԁ�@�P8N �%%�x��J:d����8���!
(�βa�{��&3Q��]b��'����㖎Ŏ9��Ǿ���Pt�-o��ړ�-��8�RJ��'��S.�-�U��PH�2^���=��"5a��Q��hy����,�Q��;rH���j�DfY��"�P��L;�S͸�9���R�P���\4�5=t��b��bˣ	4�aK�Hqp���F���;�ʢ�O4)��ɦ�+�Q
�vD�w�EF�8m�Y��[�����c�G^�x&�#O�s4��N$�j3���a8d�mI��M((@�G}_~�`��4�t����dx�e3�B�;
��3�6
�b5al����5q�d�T�^�Xd��T�w]ud�n��6d�҆�Q���s{�#@2K���b�"�.�2��,q?����:�gm:؃�lE�!B*}���$`s��D?�X:��Xb�h�7<I�ã�e.���0�L�sf3�:�ݜ�דt	T�:�$=�B�F�
�2�
/_�I�i)(����ƞ��
�wd\�j�O�5�Jn���s':���ETf8��G��-�a5���߬�����ن����XQ�_�Z.�r���K�w]����B�ŝ�e0�p��E�᷋tc^?p�����n���X��'�Q���{�0.|\B
��N�^ �vB
"$>j������So(�Q��ϛX��@���6�Iu����׼�S����b@
��S@ �@ ��@
�����N�s���VUu2_R�8��l'�[�G�U/�)��(�E'��y�n���{���:�1����`�~s��>�Y~�'��O��B�al'��Gm*�9�6�J���N���Rֲ����a}�x�q0Q���vy��Ŷ�l/�d���q
��^�T}�g�ݙ�J���#��-��*���E'-[���R�oi��Q�Y�ue�R~]�小�+g�Vvn{��P�����X�L�:�i��Xߧb���,����qy�O��~H�������]�0�����k�c�^fue��h�S݉c���s���.ޯ�嚉�*���A�j�6ku�	��h��~wt��r�چ�?��[��:��[��3�w�
�� �@
�@r�@�@���>@�0��N�>�i��@
���@ �@q!�:〗8�E�{c��0�v
��s�6�{�{���!�=�C��L
�@�@$��V`B
�]l�]����3�mS���F��6d�bJ���������g��eI�&��^�+���\�|:@��[�pbI��(�(���@�a�ljΉ�5�p;���$��b��
�.�v�&�'�oO|VFAFA�)��(���A��z���������Y�Xo�����	"�J���l	��|�YY
�T�=$7�lM�z�_�	�٤��
�R�(�&�
�9���.�<�i�d1��r^k�`^�5�:?��Q�
�
��(HsR��·%�waĨK�C1�/.�&��a���ߚ�u]�$Z���C[A�dy���Pd�u
pDs8���(��ט�܈����K
��- �$�Z@���6�k�:�1ڸw
'4�J<_�fM��,
'r�3�(��FI3@�������7���|��a0��X>\����$�1�ir
�X�^è}�O}-�����@�_0
��4F�������!�/
9!��k>p����W$W�H3P%-� ʁGr�
�Y4}7P���b�O������A$EC	b�
��A�a���C��gϙCQ�6��f�ȇD�AА�	��y}Rr�
l�s��C�pf(`
��`7�H׌�h��kAА��`0~]a.�����U{����̀�h�D+f�@I|��1Ku��\gHoA�wh���2\�kZ5�3�vu�In�׹$�
� &�0Aԩ �>kAO���3�ù� G����%1�
_[b
���T�O��>������Jl�G�/(j�
"���(�	Rp�N�#�=Y
D�v���b��y[�D����ZD!�`YI����
�Kh��Y�^�դ��b_�/�Sw}����ʛ�����벸����A�[G�q�!�U�G,X�i!Brq��������~oA|/{�W'�ʍ�	gR:3J��G=�]����˗��>4ff���$��9e�ጯh��h�o��v}ԗF{9�O4�bt�1�ªvNf��vݤ�؅k�`�z�R�m���GF�+P�A�h���6����
/�1塃��YPiz	����Y�
�l�����)���v�Ҥi���<f�<&��I�4g͡�7���<r9hp&�R7ߢ>k���v}�4��~8��MS�a�)=Mg�ګ�o�4G�"�&�����^�w��O?�O�9
�
��`�/��;5H���f��z
����ŤcQ�
���DoK/=˿=�
"�v^zk�C/M	=�e�m�&œm��	R:sN�+;A�y��}g�2��
��O
����&YC��Ir�!�T��$���*�̮�[��@���t��ʁ�G���:8Q�;��;Ȭݭn�0�X��!��W���
�Ӧ:�?��n� 
7�I���x�^¼�%fꦶ�@���pC�x:'Į�a�������!bbY���N�x����0�%Ko�\�s"�C��
�e銈 ��=�"م @e@�0��b�d�ٻ�ͳ�ք

7�i.�9b~��Vkśgh��
��z:X�����i0�x�e/V����
2��� �[Po,]iR� �g�{9�
y� ��OC��]Az��\ 
��QGA���� 3/Jrs��iÞ��7⭭
�y�o�I\<-CL,=ͶY�ͷO
�~����P]6��Ma؟��	�צ�
��\��������hf����}�V�Y1���i�k��O���+�׀1?��؂t�C��q��N;A���
&������I��)I{VV����$��QR	BnFE��������)+�����T�l%e0.���-�#�EP�p�������p�N�^AX�133���AD�?����G�ٱWA?�
�c`�>ct��s�A{	��	�����-A�R���ۏſ*Tb7�g�E���!+���^ao�S���]^A\E���Z�BJ����|�
��z�8��8dAh{����A$��w���*�(����w�����K��m�����	"�!R��g>
2V�S0L������a �-*�t�
\r�?�������7��6L+ř�2L��݄ў�`���Ȣ=�E}eAFA�u�G\��C��M?V��E�(��
t�]�X�v��dk!�y�.��)H;�}1��
A�Wd�
���@�`���Nl�a�&{�W��ׂX$���
-Ӛ���c�F�A�����`A�o�P���������P#�q�>:�Wvr���׌����o
"{2k���!�%�(e"�,���S�2w�����(6C��g4�B:3�)�{��i�!��%�q�o�/��=\��4����w^�w�E2����!��4C*��e�C��]^AF��'��3AT��%��<��IZORrPy49��蠙�6n"��M4q�g�&�i�?�D��i�ͼ�I�E�oG+���65��6q����/�,8�}��Hx[B�&���
2������8�;�
�۷�P�ỌK/�HZt�F�ʡ�S���Ѿ�ˆ���K����lnr�Y��R�62�	u�H�Pd�F�����2+J��m�Գ`��^ͲP�Ds�����/"����Q�9X�d���
�(�{���B��I�T�i��PGb�Ig{B�Z(
�Uz��
�mf>|���"2��^F�h'���X)��'[[A�T1�Ķ��+��$�`͟(��1��^"�AA�q��!�����H�(A���dhY�f�T�%ȶ��%�l�
P
�rQ{h��?b�eh��N�%B�Jr�L���\�
T�(:Hj�u{�yD����.H��hAR�YD�
�$.����\nQ���V�����(�eN�ȱ|V�^$ygA�`.����n��z��t�y�-Ozb�ʍ���oħ��;��h�:�@�2ZFtL`Ax�}������l&~��m~A��djY\�BB?�.�\N��P��%�󜇹OV$>�g�-�a@�D��"���1O�p:��6�?5�{MB�j������e�^T�{��i�|��J��bM�&Hdx�m
5AO��	�ii��_�
-M�&HK�0M��&H��	�i�4A�
M�&H�	��c���2A/X���?���埭w�w���}���?>�:�����ѷs�/����3]��IQA&}�
���ח,�rM�R��#'S�%A�[�Q�����:Z䄡(�M(�5��]��
&�قбV���I�":�b�C��W���$�X�u����4���e���M�\7���J�p���O�gf��
7Q7aƭ�"@�\�s�7�bF2�2so�	�R��\y"2UmG�޽��x���
�����)�B��#��x
��2�٠Y�xC��8y���H}�N�6�R�6�z��ŕ��U'��t�];��̯�cA(n������!�Q�
{�&�!�D�leֆ]�d�c';
	� N��Ԩ#/��'����[dZ˓��
2���I$ .��:��
��)s��������<XZR�ֻ�����]��ߠ,�>��p�,�ot\���'u��)�yoEӈ�6��a�n�
��T&�Zd����������O#������
�
�б�"�|(�1y���[���L�o����`A:�pD�+��
�s���N��L�Ĺ~h����
"|�t��
za����fo�YF���eg"K;�k�|���
�o+h������:+$g�3k�A&��&l�}����Ib�k1���s(��i^'��7�u��	�|��a��NjO#7M5}ak�
[}f���"H��7z��y��%�mІ�68�U�<�a½቙u���fF'ɺ�<�i���M��{��y��"�X}���aMMx�촵<�S{$��~qܺ���>L���{an�8>9w$����
�#�P�F����#jC���t�,�?[�Y��#0���:��"
[�Pؙ��6����k"
[���Q�V���B1C@���щr1^�zE@6��S����"B@�YH
<jB��d�i5��%g��ڇ���.l%B@�B2�J�4Z���
�2B��d���	o
l#B@�R���$��2J�F Ad��@|�J��ȼ9�
�b���F ���}�5� 6! BJ&�
Xɡ.8��.��4W���[��?1��f����]A@�S��ԸR@(�
w��y��Z�#@uC�A�9���)�Jz�V��B���/��S���d���u��P�	�
T'um��w�������;
�:E@Ȃ:A]��¨�# tG!E��" !
�0:�U�k�M7�v:BT�Gu��X�Q�E��1qr�ܺQB@���r�ӝR��Xl�UA���
�4(u�ܖ�p���~��[U�A�0J)
G��l��5�#
Dz3�4o�с֒�v�D�5�ZWZKQ�M���S���dz��ڟv��t�wa2����p��9��q^��#
tG�3�WQ4�jWrh5�Q�Zs��J�,2ʸ($KK���F��;�O/8d�<*�ګ
����l�/��i@@n
Hw��ux@�e�S
��_�X���郎q��]����,����y���P$
����S����g#�4��w%��cˁ�O{L�
��X����!V�ӂ��sV7A@���NJY�J�=�Iz��v�Qȥab�˔c	������+"
�~��a��v!�����ﻛ\��a	�,��Qh�["U���_��O~
�qT6�2D
%�nx�qWh���dT(8�H�s�i���G
>\�����e@�=��ǵ���ef��}5ŗ�$�/��F
�䐎��[?��C]@z�^K��?�!f�O�0+ԅn&;<�ǧ��#�ܧìPJ�����
�s6�>�������.2. i	YH6�2���
1S
��'9�1�^(d��S�����Nv���X�۞}�X�)ۘY
�_�5٪a��E@0S��*n_�,�=N���Q`�qI@�����ߐk	�N�O�A����H	��z�E@��k�(�F��?4+1����6���Z�;8�e�5��c-�\��x��p��n��[n]��Qv9<I?���}!ׯ��!@�
[��(4s�R�V"�2a�c%�G��16Q�+H��CC@�:`j�0Ia��t�O��5�/S��2�RYֶ��,��!���S|�@ȡ�u^�0�/3f��A��o��ac�%"Y��n
������n�@H�J���.[
���݃<�a�!��dL)���O��z<�"
��rX�wq����UOһ�Nҹ�Ci�K!P�m! �3
�U�tG�qj<i��6/?w�G���ZE@~G/Ჿ} 8G�߹�!
�H��>&�U' �V/V�T��I���@(b[�
<9�|p��Ň���@>�*���o���B@0�1Uǯ�n
}��r����+������R��]�Q����,�O{���?]C�Z��`θ�:�M����ǫ�<�A>�]
�wM�'
������X�Yz%=�3E*֬���4<����nu
QG��<��_(��a�[	Hux�H���'
�zxo�Ry�'��r��5\E@0�r�L������]�Q�/�n��y�
$6����zcT��T�KUp�@���;?�젖�Q�e����m�@U��q
�`�D�u�k۹;
aM ���!
X�Vvl�M��XX�_�ח|��y�1�}+����ޝ���CqǺ]{�4]�L!B9��?ٕ�t�׹]�ݽ�6I����st攘3]滔k�z�9�?f2=9�(��������/����E��sf�s���&��#���)��1�B!�|��c~z
{9�3�������5��^(B��^�W����!|	6@
�@.�A �A �@
��K��}s����'�ː<���֊����&^��Wn�1n7뛳�/	��@��}��Ւ��,�/�n��2���)Ϟuy
�WC�����\n󧥷e���WZ�6寎T"Z�N�g�K$�a�^���D�&O쇦�ڧl�^+��"w:�
��K
�K���~���g�f����F�<J�0u��@�{��{�m��rk};�C��\�&뵨KSק����)�H���+!�0��#�H��ӗӕ�)��8�7^[^�}k���,/'�kžg/��>I�A�^�,7���m��.��U�%�z���c�}�&�}`)�:�HH�VnD烑ɮ�K20�/��K��#���s��lV�Ͷ�L/x�#�*Y_�$S>N�>�Ə��$�=N�^DHa6wއ��)���$�mR���r#{}�Jn_y�Y�فȑ�z�ŝ�T�s�<����7��u�r7����RǢ�[N�{�������b�tSiyM�?.}�_������ڛ��\�޾�N�l9�ʑ����>[��K�@W�����U/����o�$�m�\�b_Y�
}�u2H~
�i_��l�Rdzv��]\���/?�&g�Z?t���!��t�������C�u��C���&ɪ�C�{SnW5����{�%)���$B�~�H�rIY�1R̊�#�n2�6㢣Xn��e�-�p�2��E��2�|<��Scn�)Ӷ��`����2�F�hY,w�Za�Se<������CF��[�4��"��Q�Lήn\�.��ƕ3�\�1T�|�$�6���?H���+�Dy��_��
�\�#�"M���A �@ ���@ �A
�@ ���X�F ����'?[� �B�
�@x�@ � b�x���@��*��@�@
�%����x��Ł�ǫpy
���vr����<!G�����,�?|��Еj�R��d�&:ș��=�E�zb�k:A��Wn���}�����c�W�c�l��ı0|�b0!,/Rt��xb#�5�e�^I�2ߓv:������
��c��L��b�R릖�"c������׻rܷы~���V랳�^Nw9�	/�sf�bZ&r�[��^��BY~ss�K�֞�J���{���
�V��ȩ}�6ʰ��*�_�
��Ec���WZ�>��êB:���I��K��r��b���E���><<\���kE�-?vt�7�X"�ۦ�&뺉��	�@7[��'oW�>d�Zは�We�W���,��l~
�1�������=���
a^�O�S��Xo�^1���+�T�z4tq���,8�V��)�ۘE��	͢��z�5�{K��G]��qJR��J��΢۾��=r��z�RP��q���
���tuV��|DD��.w�r��R�Ʊ�/N�~�
8�%6�;�ڔ�dN�iw3�h
�Xu��=�Ύ*��Ј�&lz�X�hܸ���^Թ�SϚ��7[b���
$^�u����Vym�YLLF�5� �X@��5
c�����J�x�W���������o��mD�!+n�Q1��[䖇U�3j�c����?���ة��AO!B��M�#�J?P��8���o�"��ɍN%�mB�����N!�G�H�	!�L���e�iʭ���R�g㍛oY�L�I��=r��.��m�J����0�kԯ�_��5�:�9�]�U�#N9Y��:��@�Tj��	7��u7�z��޴%��
���!�yxL�1��$B(��1�f̯���8!��@����u@r?�B����h�y�W��88@��О������Z	�Z�E���R2*~��Uu���DPX׏�ǢA/�	dy���<6hѣ��#�[㝡�
���z;��;M%��Ď,Ґ���,���g<c<��
�$�	2`�=4U�,���u�� b��d|$� >�}��

<Ј��2��\�D>4�ld�����7o��J���GuZgkw�`�c��ES�T��
2"`�dT�q�s�ĭzL`fz�7�d�ey�
�
M:�U�HK�"��.����v��8@��Aܿ�<<ppD_�:��iD3��@��`�H�u�uI3(M)�A��5�<���
p���M���첺G@@YM8��~��q��4o$����B�-�f'K�X���$@���C��.uɑB�A���v�o��R���b*B����
� A�������7
��a����O��(.�fzD��zd[��L>��
9�	���
6hˁN�}��j1B�ӈ���7�
ruu]���ַ�,w�~�#qR�
�����R�?��dsh�=��x�t��"HHd�cf�66fs�d����2+E��҈�d�
Q���%��y��K�ĮG�5;@x��z�"3;!fRLm)�
�� �Ia@Z�"zTV}IL��&�
4�iZHŇ���%"Ŵ�bږVF
f<8@Hh��p֢�j�q7�52��
�OD�d/��e�7H'�˭��j��H��,���+r�E�	q������a�$mE3�h]��n�A
6d�'�rpZ+��f6��I$��7HDen|;���DA�崛�����*S��;O�ma����p°�D
>~�m�2��X)�l˂h�?������@����ꕏ�����Nt��8q6�&3
�e��Ċ~�C�	�
B���H�o��F�0��mw�	�
d��q�m��aD�/�b15���s
Z�o�R�$D�H�6�G�.���&ّD�����a���n��6���=�1Z���]6�"�v��Q�1�	{mp>1�6�y)3��P	mk�*A��=��B�r
1�;�=�.d%��9�(6f�ʴˢ�*Ⱖ�>�M[v�z��*䎓��#tMPEBqXF貱aM�|�D��9����P����nD=�i"7�o�ڏ[���9�NBO!��1�L|�7Ő�u�^�د�_M��	��
�ײ��������q��|��^+���ba�����<�.�A�wl?���M�Ϯ��Ʈ#a�F
f��JÍ���4���/f�ɦJN�싒�Y<��c+K�-������H�
�A� q9:�B��|�����^��qg c
Ʒ���|i���?ϼKp��v����=i���R_�a�Q���
m��|�
A �� �@���]���`�� �;
��.��roA HM"���cc�gM�5��V���
�Dv��[�̃��"o�L�����rd�ڴ}�io
n�W�v�J��7v�V~۹o���-���k��>�_lV�,!�O�9	K\%4�@?���d+�!4�,#���ۤ_��/�5-	�JlI�KO�5�تF�x�S�-K����uZO1o��m����W�޷������y[�,�k����t���I8��*��W�	c������*�7��]Hy���q\�@��N*iΎ��!A��I�H���2�y�$���Ne[aDݜ��k	I��\F�d�eYyNH(��I:H�&�$Y�O-eʃ�0�Ө�=gk�:gz�A�5�.F���8*�Z��M��	C��ڿz㊓L��S����҃vhX��K[���x�<e^�!A�ɩ
��Z�d�4sD'Q��N�����hvDzN?
�vZM'�[z�@���S��z������R�aLE�E��B���kв�O�[�k�
�t��Ĥ	c�̢L�q��Q�"�-�J_VID�U,G��D'����ݙ�HvfY���A�E}M��.��8��З��#H��*��O�e�O��dy�'Sْ�iL��,���mA[Vwł�T�)�دG�*Z^l�=ҍ	��fn�s�m��+��5Al)��<0O9ĖN�J�ҩ��k�AN��
Z�{xD{*#��?S�|{!idU���e���Iy�4�2����n�5ؒ~���f��ؖ�-h����M�kD�T��Gg	c�AX����9a<�XS)�r�ӯB2";"�HB�$t��k2��G'���!RL	:�,4v�钐�핌m��؂>�iH-�R*�D��d�e��B��l��?%��
B�'��A{n��/��G���d����<�>�=a�E�_[���)�Bl>�e�azۜ����2�[J�d@��*-�Z���
���>hY?o�_tK�zjC���f�zܯR���o'��pu#�b)�:�[ϛ��(�ۨݲ�{`����ܭ�����U��!��+���B�ǧ�|�Oҹ�x�0��I���#	_�s�����]��	�
�@���E2�.Ax��6Ѓ�
A�!��@�`�x���	��;r��N�U[�]�<�
/�b۫��ʾS�����;����
A|��n�����F>:@ �@ �A� ��A� @
���ľ_���>2��i�"��Ɯ��α�$�e>2��s��C|�Go����E����srh
H��
G"�N2IL�\t$eɭka{����S&)�D2������͓4Osv�h���G���lrݦ�H�̑f���\����
s�֙�h��W9�_E��")�)KV)T�u����<�4^�":��[��?�)�9��诵h�K��*�I��0�zTK���J�!Q�W�}��?K�Y�$Y$���DT���}*m*�r�)0�D�WS@����8������`rt�
@
�A����!��"�?.�	򷿿���}A��
ȁ� ��A�� @�q� @ 9��?[���ԗ��
�|���
;���V�N3��L��~�|��7�s�;]�v�`�&ȥ�0�Kg�)Z�A?h���i{	r�i{	�C/>'H�<h�I
����Ƈ�@���k'���\ǿZ��/���m��1c|���(HV���B��e��
�?���uugԫ�>��xL�N�	��tXE.<�n��x�B;�}q�8�bL8J�|L��Xe�*|�1�a9��
+�;,��(� .e��g��v ;�����"p^
8s^�0��ч~U(8~e�X���y�\�q���sn�U:����w��0BC)��Pn��U�'�(�rQ�UX�<��c
�;Z@��*C?%�3�a�v
��'���R�V��J)��T�J᱌��G�c�1IQd�e�x��$4�X^���h�ȟլ!�Z�0ƔR��6���/0Q�s��=�+�B$�2�l���=
	�i�@�+�i��4u^e9.P$^?O�A;
��o���h��5�Gԭ?�s/e)��˺U�MFm���Q�<�[.�@���t.:�8J�Jq�8U�
(���-ځH�i�Z1f�{�R�8���G�W�U�,�2RZ�ďd�M@�1YXe���7�A)
#������d03Z��dd@!���H���8oL�z)�Ttm��n�
pӿ|0V�[u��#6�M�`|���m��l
~�c�}�\��E
G���p���N�e�y[�
�I9������b����'@<��4ˀ�1?�K�|x�+�Xc	�&�I�
�����u�a��k޹-��,��;�%�{~��a�X�4��qlۼ̹��2-������7��
�o�Ŀb�|�H3?I���fߟ��l
��(#���ׇث��o�eJ�@�~��?Ȼd�{�V���n
$���B6�}��IH�?�2��ÁsT"I���Ɓ��C�����)$`�rw/u:��o9��A����&�O6?t[�$V�@n��̠��o	A��Hk��_/����@~��G�y�O읏s�:��m8�r
U.���mTp��^E�?�]D�I�{w~I�%��j=�O׊�ӝk曲,6�u��d��p?��}	8�c������~j��ݗH��LQ�@�g@�;�g茇H��K���r�}�J�ŧ/���1�Y/`Zd��lR`�D����D7V�V��v�����)sf37X�d|��|�~^4
��[ɔ�dU��<d���קּO@"ܽ.^y��"
z���"@�:ԧ/���h%1�\Y�!���f1[k4K4u	���-#!GJ3dL��n�������é�
�փČ�&�L8T��RPa9I�ή�9��
H�����<@P5"�>��/<��ҁ�܃,���6�|����o?ԡ�t}�w�i�C@$2cc0����&SƜ%��1FP?����[N��A6؀��$
��5(`4�h�n�?I�AiS+J�$`47A����&�&D���KT�K�d@ړ�~��å����{GDAF�꾀�@NhD^�
�:��~���
ſr�M:0#LC@G@8O�H�]�A.p���9��,A��
�q��䜮h�)b%�jۑ�xG��?�#�d=V��`�|��BF�)9���
�Ne�_>�&���+w���D@:K�@O������)�"���������u�b�"K(��:k�J#c8�)),vPQ�,�g��r6
�_äI�.����"��k�-��i@�GD�j@���^����.�'N�~������$��?�R���s@�
����3�(�|tK-Pr����Zcy��szD����2^V<E���	��	+�9$#���3�:�<&��L�
%$H&,�xr����� *�5�uJf
=+ހ��2@���s�g8$w���}�,V�p��Lj���f�"�5:!���;
��]��5�Z���q�1<�f��V����<>�1M`�4�$��Np�
��Q$��l͹PR��=���p��
ȹ��ٴ(�B��n<�S|���E@��wd�'�\p1�8�5�8��]mMd#��!�
��6�Ո	�P��8Qg�¢m����A��MW��9t��Ӷ��5�V���i,������ыޤ�K�f�>gv,׺��[�-�
�.�7�"ݿH��d||ן�(���
�+�:�����`d[��&:/�^���)S�o�t)3�40���Ař��
�4���E0ȣ/
K�u�C��<y�7��I�Ǎ^n۾�H�G�.�7!�2�$
�w�W�}�
(X�/R���y^?~�7"A��?����=~5b���	*�8(l|�=
��@�o�"�o�- �~��t{$mfr�w�ԁ�j
�)@ހD�!><��;���G)NO	7G�r6
E����)\�F�	H��HT-�z��9)\�[@>�(�vs��m<�e�ޭ�3>�(�%
�/ hUeE~���z�~�� �:�:�?(
��
�MH������A������t�"
w���z�9��;�_V��$�܂x��ֻ",��yy�
�0,���8m�9�;$$@�t��w���?��Y
ū�<z2�		���T��T�hA�B'�ٹo�B-�K|��/�s�Q։50m�*�h�w
�H�;<i���C�9��
�^d���҆s!�S�u��=�ms��^BE�Dk�#�9d�T�ā����]TL�,�`��'��”0��@n�H�-brǽA��t��t���z�g����b
��T�2��xH���=���4��tY/�0�����cR�W�cMb��l���"5���W�����10
��8�m����3�`NI��=�V�
c[�$x�
HG��t�R]�ހ�"������!
Q-�?�a�9-6���tq���+@X��,	���V�ִ�,�\p0`yd]�H�ڔ�5CC�5X#��
Ⱥ6ԗ�\ӌ�;��9h�)�s�w�����Y�,i�5��^,*���R��2�
���) �V���
��2B��x�40M�0#� Z  \X
!%`
�7��RAP��>$��?pHOp@���7j}S�kW��n�����4��:!��՟�*�)�*$@��o��
�+��L��
�{�%
��Qκ6��ZP��<�V�����7
�k�XsHx����շ}q��%@��4�Ks��<b�f�z���f��HCa�]hO1�$�B�P��Ԑ���Vv%f�{<S���H�e����pw���7@А}�DEWR�
ࠡ�
H�����m���ү�@��|�����˧hN'<�)^�w3g��
�~6�b�g��B���_O�pOu�1���7�������5\GM)���O�ض�:��;�d����?q�^��y�-���/����t��&h�{�M��\
��=�Y��#׺����~
@F
@
� ;j2j25�@ ��d2��!��������y'
�S6����9��
��-��	�,��K.�xJ�k���Xmy��!Gl��XX*��7����d-�4_���2f���@8��2ͨ9�f^I��ӜK�-���:�eΓ�<
�xuy�y]�����cxLaT���e�H"L�C�R�3W�*^-qu�����튉.
r�|�sN���[�f�|[�-�2N@��q1�*vQR�,��Hv�
�8!y�U�H�8��'r%#m�)iL�n&�H�H�<�����t6
Eq�w!�3��Z����tu?��,�����j5��o�?�X�e�����
�d!'M�)Gǫ&?�MTp;@�����O����<wi��,�+�$��U^	
�T��r���XL<�ͥX4����r����_�ƍ�rw׼h��{�Ys����(��	��-?iNB*�"��~�@�'$TL����)WDt#�R89��`
��&gD� �.i{Gj�(�̫'��

�v
�$&���+'BAQJj�AA�������
��AE�C<QĤ�d���,	Q�
���&�mգ2d���A\\+���� X�cN
X����H��Xu�*)��P�������}�3��TS��d�<Cy(�V������y���.��0i��H(
jËe8D`W�\�����
�A>
|��5CT��e��pk;�|��R�[�J��ݷy[Ӻ���l�Dv�y��ܷq�/6�V�ryͳȴ�p����%����)r߽��}@��Q;�y�\v�w)������F=>
�&Q��s7L���K�
A��o`3�04��1s��7;	h�鶧�8k����A�o�ۀʢ�T�b����.�Y.t^�;�A*vf��;
D�Ot��S���AHt �'��K��~�p���
�u�D��c)�'#)QR��B��~�1U�널��I�,���SVf�-0ެ�5�OjEY�!|N�z�K�!�.
$2B��q�L���R���# m�H����
�w ��a�"��k�u��
>�S��0u}���Z=����c~����D֫:
�޲r����:�]�x�	����B�
��U���K���"6��\��S���S�?�@�M��U
�KU���K���a�7Tp��s�����5��=
�r"����PF����� �cs����
?�F��o@��:�>�]��0�_�.ֲ�^�[q����J�\�oz��1_ww04����s��
�a
��
  ��.	��=����YNtf���=�ܓ�QD
�`�$�=̓�}�í�k�W��՛
n�b��
S�P�#���R�L�M�n�J��ٻ%�^��ؽ��Wo6Rmg�m�E��Sٽ'��cJ�g��~՗4��숀�=��\��_���ݝ%��?������΅8|ً���
�B'm'/oo/�-�
@��Y�'���`|N���3���­qCY׊N��p��	+��[G��U���*�Ǎ��˫C=�C�n�uF�x�	.=ԏ�%�PvN;����?�u��~
��t��{ҙ�N)�l��θ���-����|��MF�8�\��8�a����8ۭ��q)5&L��b�Z�)�DmÞ�|=z���3���k�zZȯ�@�'�vM��a�E�C��!��=�
�Կ�eH�ǭ#�2|f�Ck��2��R>�?+���1+}x�_��쥀̽�b���x7�܍�(
�Y>H��E�����������Z���Rϼv�J/����ѱQ@X1$�>*��M\ꇌc�$W&��!z
<W�3�y�3�Th$��9��
�^j�DR�"��F�T;�3 ���g=���T��	�$(
�#��X��M��>�\#YY"1�rq\4���+���&�&��L��<
e�:

e���4O6u\o�t!3�J�*T��j��J2�{��z��a2��ĥ�v���Ӳ
��y�N�ga�q�29R������i���U���	�?���{d�qCDҽ���Ax���O9h������^�e�\u��#j)C���R#Q��<(�pzL��~�t��&wF$���Y,����?���֥�,B薁DG@�j����D�)SN�^�ݒ����Do%j/}m�뷫]SN�t�bj����b�G�R�U�Q=
�-��@�pI��]�iRE�/�u-^���8f�~�m:�L�?`�2O{��C��,�	����ꢰd�b��܅~_(B_Hٝaq�9/�:aw��!

�8Y��
�yb&�T��Bl]��:��tj��.l�V�o;����ǎ
�y��B�o�H $��;��r
��Z[@Zd=ZBgW���Q�I׺l~�9��틙@�E〈t���<�[��T�Rc�sw]�〨�����r��Ŀ���Z�)�Ee-tf��M�I�Z�pGb�uG|��薀��Rmg�c��E��

w�c���FW�j;�u�~
nt��b�����5b5���~\:�O��*���Cı����D�����rp���"!�E1�^������9ú�kw_�i���W}1��ǁ��R
f1�ܮ	+�b�F�n�ճBE-�i����q����* �F�e
�������+��B���0��md
:�A^���k�̢�3��yŻz"�����k���D��dE�����X���Q]�Sk@d��A���
�vr�t(�Qv�Ųs�.�a��)��H����cŗ�y�9�$��[|�wP[c,[��k���
V��~ϟ���3�������X'���Q����jYEw�@�;?�;����AV���7L]���ӟ0��;���v,aH����w���jf��gu�@�~Ӵ=Y�RqS@P��S�<T�'jdL.��aU�;"h{��
@>$��E3�A�}ΰ�OmOم@Pt2$�A��JmD�����k�C�7�r)���O�{�"�Cq�I1�*M�b�xȈ"����r�'u�ӳ���NY����;/�?>�C�?�����~���$��-��G�](D����Z��$
	H��$ 	H��$ 	H��$ 	H��$
��$[��dK@�l	H��$
	H���0wEk�Z;�V��-j�8�|����F����kh�W������C]m����1�O��U&>�����PߧJ�$
���q-duZ|��.Q'
#��Xzo\������J��G.,�S!�m"�JVW�K�L�[`���T�\�lw���t��.>L?�.��<q�؋��q��
uc^ȸ���PO@^!.��݅�X��s�$�[҈d���
�Q�\

���}�Q�E@+K��P0�B 埘^�V���݂
B�����:ͤ賣$�
4����$	�+6�9$�Z��m}70KH|��(!�O��uF���iM!�w�����
�6(�&յ''�k��)���7K��!�
����0���ʲ�ՋFHp7'耴����'�?+�w���0
QejA�[�
� a�"�`�m`�
��j$FQ'%��g��'h�ˍ�ļ�/rۂuf�JF
3�{,��4
�駀0��0sA�.�43����3H�������p�€�<�����@�'��'la_�@$$�}�^�`k�(`g��	��
+�I�ӈ���W�]p�Zv8`��nZ�	����ޕ�9w��|!`Y�U_Ou�:q=K2iWO@^�i��y�}4����wA�X��x�jč\�#��/��͏��дA�}��S��#��͏���$_���׼�,��
�p��?�$?�g�h�A�z��U���H%�g�g���[m"

�@�@�@�@�@2�@�@�@H8�g:�Q
{	�n���H�VZr�5�T�H��؛Cgq��@
��@@
 �@�G  �@��2tpyD�N��@@ 
�+��@@  �v@ 
��@�@3h��4=�#_IEND�B`�template_thumbnail.png000064400000007364151163244330011144
0ustar00�PNG


IHDR���w��PLTE���2d;t6R(Da9|6j>|��������ٜ�ó����觧�����ż��涾���������ڂ���������߃����I{�nt�g��;���-��it��@]������g��ߪ��T]uds�N�pp���Ddh�|w�TBBB�ꁛ͘drOA�8M`�Q՚tRNS@��f
�IDATx웇r�8�F�r7�FF3Z�9nN�d�i����h��%���T�)4���/�7?l��A�/L���s��x{5�wh:7=s�����ֳ�@���쨴PZ��ZiP���۟/4�p0�9�иF�ˑ{J�y�r�\ӸP�����r�w�.
�/��:��Ә��n9�%�O�]���]^�K�\.�;���(��|�Ο?���j�І��!됔M��&/“N�%����@�L�٩�1C�	b�L���
B��D!����@�)�#r����vX$���a�g�A
lB.u;tb������(����9�ȴ�q���SAѪ��*�v��=�XDދ�83Yc��|!��5BN��WAx��kc���bF3�����i��^�5M'����M������
@�Y��R.�9����i���c�|tJ��B�jrTU�����Vm�Y��qI�A)��~�/6w�`s�۞
�q�=Q[:G�?6�O�'"�t,Xo�Rҥ�ke�9r�4�SKZ�1%}�[�8c��S�W�S��(��S�K�0���O���n��au�^8!z~Az!`���CT�q�X��
��w�j�Z�:�m�����[u_M�+�Į<������>�^���(z��敯v�!	$�1g�T���g���V.ԟ�!��c��e|���8����h?�A�GGؑߜ��^^^��ϧ�7��i�]#�j
��K��.��H�A,��@(|���=Q#�=:��Yg���3rr~O<�F���R��R����*�n�ֆgHiIi�Ә�S�SJ����#2��8�ʹM��V�������	ѐ�'=�D֔�M�(������T@�D�ߤc�m��J���qtn*�Eg�wpU
D���>�S��DU��˷�ؼ��Z����(�8�0?�[GgOkkw��p6aw��i+c�$��<x����R{
v�	��,H���ּS'��'���kB���L��\��ւ@P`�S�@,�C�
~^Q��t�p4]Ӽ�䈘{1?	7�{)"B��R-J����!u��S�lm^U�*�*9��u���ӣ�m�6%��C6i�@%Hi�����KO��;��0�l�1<w�ܿy��ϝ�q�۷n+�N�v�#ס^��tr�c�!��;��0��S�J3-'��9�z)E�B��{�C^�N=��6}ك-R?�5���b܄�q*Xt�U�Xt/V~ծ���ym��y���:�?�o��wx�p3>_�ϛ�z�N�(���K!�Xڂ���_X�vV��:���
�0���q�^�:��e��Sg��<���>:�\�ھ�:��kS��=X
[:f�9�u'�I��O�ܥ�5��k����9�N�[:�=���h��2z[�[|:�;%s��yqr�hj��t���Mn�3}����.,*�����zu�=��ރ�
�-..V�{�l�0����>o����|�D�	,8p�Z�9vb6�JZ/J�R��
�* 8:�X���/��Z&=��Z)�
����x��+��MI���%�w�s�S�(��98�:H/�#�v�Xl��Z�0Z��{��/���F�Q�[��{Q/���u(7�7�ߪq�a��rjL`j]�	�F2:��C����T�	��):6fC	f�&D㦭�i���`����uDnįW�:'��Z�az�|��f�p�d�u݊a)e׶��^�R-[/e�:~��_H��V�fJ�#OJ���F�jJ��9)/�D�yY����
�KR��1�U�@���(�i�l��cN6��r���+@~����0�s�M	F�P��{L]L�rR�z���ͅ�U\kÊ�be������4�^uÖ|��
+���}k���=�7�s�C��V�4����z#��tf�>�un�2@��ѓ"�����tʡ����U���X��xم�{��^]��K��~�A?�RW���"Z�PX����#uR��hm-�#&��U�E�􊥗�%dw7����l���j���X��O#�!y�N�Ѧ���Swc�tP�%��g���&��\ҁ����g��:��D���$V�.t}bt�"\�.��'��1:������T@�>�xR,����NLg�����KП����uj��1Fmk>��X�5��,零��Q�pֳc��Z�u��\h�S���v�G��b|�������,Δ�7��N<�O��8�Y�?��Q�G�Z
�Ɗ^{���<DR��7O�!�t�#P�:{�u��iZdiRf���"I3~�й�s�uT�d�P�t�l�����A�(��c�gȋBֺ&ߦe��\)��:��@'��U�$�(�v2nI!7��f(��EzqUh6
t*�ܷ(�Rq��U$������@'���B�:����T�*�T�����6�m�q�Ż�#�ɾɏ6i��9����N��
����c���{zZ���B�tbS-�b"��=��QX�i����5֕64�i����謎u�K?f0;����c�����~��/
���Uc�ӱLU��e:M%&�&nu���0U'ݬ��B����P���u��Y�����Dls�H�[�d����:��t��Zz�p'��M'u>���'��c8;*��9��A��:+�@Gf""Y\^�́��(�"����u�%�:�(�ŝ��c8n:8h#(�ʍ���AiV$cm�X��UӴ:͡��HZ�7��9���RG�vL�T��Z�����i����
9�
�C#�t���6˹CH�?��萛ntt�v�~�c�w�s�P]˕���)ިՁ�H���X{ԜJUIy't:P[FBI5̨c���!c�P���ƹZ^G:{�kα�y#��7;��rR�E���l�7ĥ}W�*vO�ǃ�8�8��/H�:�DmAz'tp�1q���|WdY�%���u>7;�.�,K�")�>U�U�oZ�P��TKy'�Ν����Oij]�h^
$�|)P���#����ɯ�(R��&�d��i�PUE��&fDg���?�xx)H]IR�'y�%Y��"-v�i2t@���(!�i�t�l�~���{��}|��^
tr7�]R�N$�$�%�f��C^���:��zsyy�\����?u.����Y��u.y��p%��N%���"I	'3I�Av-w�
u���A��C��R�sgg�:�@�8����o�B�_^�Gg�zs�Z����n��
:�rw��5�rOG:��ȹ�̗��������n��C6
��f����j;��o�0��d�H�p�]�8Сb�����4���Z���p�/q��:�V0��::D�G^t����q�&
��s�(�	��t@�J��`k���1횈l��pgI����ɢ��/C8����k��̞�1���H�#�$��}�S��v��͌:=z玫�"I�����f�9Ft�c5=�G'����U�:gȗ�|�3e\���t�t�t�=y%��'�IEND�B`�