- Puesta en marcha de plantilla 'intranet'

- Aplicar plantilla a la gestión de usuarios.

git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_IntranetNueva/trunk@10 77cfc57b-8ef4-1849-9df6-4a38aa5da120
This commit is contained in:
David Arranz 2012-02-02 16:02:36 +00:00
parent d2c5a8b6b4
commit 11bf30f06d
267 changed files with 19715 additions and 34 deletions

View File

@ -6,10 +6,9 @@
class Controller extends CController
{
/**
* @var string the default layout for the controller view. Defaults to '//layouts/column1',
* meaning using a single column layout. See 'protected/views/layouts/column1.php'.
* @var string the default layout for the controller view.
*/
public $layout='//layouts/column1';
public $layout='//layouts/default';
/**
* @var array context menu items. This property will be assigned to {@link CMenu::items}.
*/
@ -20,4 +19,9 @@ class Controller extends CController
* for more details on how to specify this property.
*/
public $breadcrumbs=array();
/**
* @var string título H1 de la página
*/
public $pageTitle='';
}

View File

@ -8,6 +8,7 @@
class UserIdentity extends CUserIdentity
{
private $_id;
private $_email;
/**
* Authenticates a user.
@ -26,6 +27,7 @@ class UserIdentity extends CUserIdentity
}
else {
$this->_id = $user->id;
$this->_email = $user->email;
if ($user->last_login_time === null) {
$lastLogin = time();
} else {
@ -41,4 +43,8 @@ class UserIdentity extends CUserIdentity
public function getId() {
return $this->_id;
}
public function getEmail() {
return $this->_email;
}
}

View File

@ -87,4 +87,5 @@ return array(
// this is used in contact page
'adminEmail'=>'webmaster@example.com',
),
'theme'=>'intranet',
);

View File

@ -2,6 +2,48 @@
class SiteController extends Controller
{
public $layout='//layouts/login';
//public $defaultAction='login';
/**
* @return array action filters
*/
public function filters()
{
return array(
'accessControl', // perform access control for CRUD operations
);
}
/**
* Specifies the access control rules.
* This method is used by the 'accessControl' filter.
* @return array access control rules
*/
public function accessRules()
{
return array(
array('allow', // allow all users to perform 'index' and 'view' actions
'actions'=>array('login', 'logout'),
'users'=>array('*'),
),
array('allow', // allow authenticated user to perform 'create' and 'update' actions
'actions'=>array('index','view', 'create','update'),
'users'=>array('@'),
),
array('allow', // allow admin user to perform 'admin' and 'delete' actions
'actions'=>array('admin','delete'),
'users'=>array('admin'),
),
array('deny', // deny all users
'users'=>array('*'),
),
);
}
/**
* Declares class-based actions.
*/
@ -29,7 +71,7 @@ class SiteController extends Controller
{
// renders the view file 'protected/views/site/index.php'
// using the default layout 'protected/views/layouts/main.php'
$this->render('index');
$this->render('tablero');
}
/**
@ -49,7 +91,7 @@ class SiteController extends Controller
/**
* Displays the contact page
*/
public function actionContact()
/*public function actionContact()
{
$model=new ContactForm;
if(isset($_POST['ContactForm']))
@ -64,7 +106,7 @@ class SiteController extends Controller
}
}
$this->render('contact',array('model'=>$model));
}
}*/
/**
* Displays the login page

View File

@ -2,11 +2,6 @@
class UsuarioController extends Controller
{
/**
* @var string the default layout for the views. Defaults to '//layouts/column2', meaning
* using two-column layout. See 'protected/views/layouts/column2.php'.
*/
public $layout='//layouts/column2';
/**
* @return array action filters
@ -26,16 +21,8 @@ class UsuarioController extends Controller
public function accessRules()
{
return array(
array('allow', // allow all users to perform 'index' and 'view' actions
'actions'=>array('index','view'),
'users'=>array('*'),
),
array('allow', // allow authenticated user to perform 'create' and 'update' actions
'actions'=>array('create','update'),
'users'=>array('@'),
),
array('allow', // allow admin user to perform 'admin' and 'delete' actions
'actions'=>array('admin','delete'),
'actions'=>array('index', 'view', 'create', 'update', 'delete'),
'users'=>array('admin'),
),
array('deny', // deny all users
@ -126,24 +113,13 @@ class UsuarioController extends Controller
* Lists all models.
*/
public function actionIndex()
{
$dataProvider=new CActiveDataProvider('Usuario');
$this->render('index',array(
'dataProvider'=>$dataProvider,
));
}
/**
* Manages all models.
*/
public function actionAdmin()
{
$model=new Usuario('search');
$model->unsetAttributes(); // clear any default values
if(isset($_GET['Usuario']))
$model->attributes=$_GET['Usuario'];
$this->render('admin',array(
$this->render('index',array(
'model'=>$model,
));
}

View File

@ -36,7 +36,7 @@ class LoginForm extends CFormModel
public function attributeLabels()
{
return array(
'rememberMe'=>'Remember me next time',
'rememberMe'=>'Recordar contraseña en este equipo',
);
}
@ -50,7 +50,7 @@ class LoginForm extends CFormModel
{
$this->_identity=new UserIdentity($this->username,$this->password);
if(!$this->_identity->authenticate())
$this->addError('password','Incorrect username or password.');
$this->addError('password','Usuario no válido.');
}
}

View File

@ -47,3 +47,629 @@ REQUEST_URI=/intranet/index.php?r=site/login
in C:\Intranet\www\protected\components\UserIdentity.php (18)
in C:\Intranet\www\protected\models\LoginForm.php (52)
in C:\Intranet\www\protected\controllers\SiteController.php (88)
2012/02/01 18:01:58 [error] [exception.CException] exception 'CException' with message 'SiteController contains improperly nested widget tags in its view "C:\Intranet\www\themes\intranet\views/site\login.php". A CActiveForm widget does not have an endWidget() call.' in C:\Intranet\yii\framework\web\CBaseController.php:102
Stack trace:
#0 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true)
#1 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('login', Array, true)
#2 C:\Intranet\www\protected\controllers\SiteController.php(92): CController->render('login', Array)
#3 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): SiteController->actionLogin()
#4 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array)
#5 C:\Intranet\yii\framework\web\CController.php(287): CController->runAction(Object(CInlineAction))
#6 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array)
#7 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('login')
#8 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/login')
#9 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#10 C:\Intranet\www\index.php(13): CApplication->run()
#11 {main}
REQUEST_URI=/intranet/index.php?r=site/login
---
2012/02/01 18:23:22 [error] [php] Undefined variable: form (C:\Intranet\www\themes\intranet\views\site\login.php:15)
Stack trace:
#0 C:\Intranet\yii\framework\web\CController.php(870): SiteController->renderFile()
#1 C:\Intranet\yii\framework\web\CController.php(783): SiteController->renderPartial()
#2 C:\Intranet\www\protected\controllers\SiteController.php(92): SiteController->render()
#3 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): SiteController->actionLogin()
#4 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams()
#5 C:\Intranet\yii\framework\web\CController.php(287): SiteController->runAction()
#6 C:\Intranet\yii\framework\web\CController.php(266): SiteController->runActionWithFilters()
#7 C:\Intranet\yii\framework\web\CWebApplication.php(276): SiteController->run()
#8 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController()
#9 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#10 C:\Intranet\www\index.php(13): CWebApplication->run()
REQUEST_URI=/intranet/index.php?r=site/login
in C:\Intranet\www\themes\intranet\views\site\login.php (15)
in C:\Intranet\www\protected\controllers\SiteController.php (92)
in C:\Intranet\www\index.php (13)
2012/02/01 18:36:55 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "contact".' in C:\Intranet\yii\framework\web\CController.php:484
Stack trace:
#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('contact')
#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('contact')
#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/contact')
#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#4 C:\Intranet\www\index.php(13): CApplication->run()
#5 {main}
REQUEST_URI=/intranet/index.php?r=site/contact
---
2012/02/01 18:44:40 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "actLogin".' in C:\Intranet\yii\framework\web\CController.php:484
Stack trace:
#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('')
#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('')
#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('')
#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#4 C:\Intranet\www\index.php(13): CApplication->run()
#5 {main}
REQUEST_URI=/intranet/
---
2012/02/01 18:44:44 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "actLogin".' in C:\Intranet\yii\framework\web\CController.php:484
Stack trace:
#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('')
#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('')
#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('')
#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#4 C:\Intranet\www\index.php(13): CApplication->run()
#5 {main}
REQUEST_URI=/intranet/index.php
---
2012/02/02 09:16:45 [error] [exception.CHttpException.403] exception 'CHttpException' with message 'You are not authorized to perform this action.' in C:\Intranet\yii\framework\web\auth\CAccessControlFilter.php:157
Stack trace:
#0 C:\Intranet\yii\framework\web\auth\CAccessControlFilter.php(120): CAccessControlFilter->accessDenied(Object(CWebUser), 'You are not aut...')
#1 C:\Intranet\yii\framework\web\filters\CFilter.php(39): CAccessControlFilter->preFilter(Object(CFilterChain))
#2 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain))
#3 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain))
#4 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain))
#5 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run()
#6 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array)
#7 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('login')
#8 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/login')
#9 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#10 C:\Intranet\www\index.php(13): CApplication->run()
#11 {main}
REQUEST_URI=/intranet/index.php?r=site/login
---
2012/02/02 10:03:10 [error] [exception.CHttpException.403] exception 'CHttpException' with message 'You are not authorized to perform this action.' in C:\Intranet\yii\framework\web\auth\CAccessControlFilter.php:157
Stack trace:
#0 C:\Intranet\yii\framework\web\auth\CAccessControlFilter.php(120): CAccessControlFilter->accessDenied(Object(CWebUser), 'You are not aut...')
#1 C:\Intranet\yii\framework\web\filters\CFilter.php(39): CAccessControlFilter->preFilter(Object(CFilterChain))
#2 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain))
#3 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain))
#4 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain))
#5 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run()
#6 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CViewAction), Array)
#7 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('page')
#8 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/page')
#9 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#10 C:\Intranet\www\index.php(13): CApplication->run()
#11 {main}
REQUEST_URI=/intranet/index.php?r=site/page&view=about
---
2012/02/02 10:07:09 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidatos".' in C:\Intranet\yii\framework\web\CWebApplication.php:280
Stack trace:
#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidatos')
#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#2 C:\Intranet\www\index.php(13): CApplication->run()
#3 {main}
REQUEST_URI=/intranet/index.php?r=candidatos&view=index
HTTP_REFERER=http://localhost/intranet/index.php?r=usuario
---
2012/02/02 10:07:12 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidatos".' in C:\Intranet\yii\framework\web\CWebApplication.php:280
Stack trace:
#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidatos')
#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#2 C:\Intranet\www\index.php(13): CApplication->run()
#3 {main}
REQUEST_URI=/intranet/index.php?r=candidatos
---
2012/02/02 10:07:16 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280
Stack trace:
#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato')
#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#2 C:\Intranet\www\index.php(13): CApplication->run()
#3 {main}
REQUEST_URI=/intranet/index.php?r=candidato
---
2012/02/02 10:07:36 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidatos".' in C:\Intranet\yii\framework\web\CWebApplication.php:280
Stack trace:
#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidatos')
#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#2 C:\Intranet\www\index.php(13): CApplication->run()
#3 {main}
REQUEST_URI=/intranet/index.php?r=candidatos&view=index
HTTP_REFERER=http://localhost/intranet/index.php?r=usuario
---
2012/02/02 10:08:33 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280
Stack trace:
#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato')
#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#2 C:\Intranet\www\index.php(13): CApplication->run()
#3 {main}
REQUEST_URI=/intranet/index.php?r=candidato
---
2012/02/02 10:09:38 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280
Stack trace:
#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato')
#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#2 C:\Intranet\www\index.php(13): CApplication->run()
#3 {main}
REQUEST_URI=/intranet/index.php?r=candidato
---
2012/02/02 10:09:52 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280
Stack trace:
#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato')
#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#2 C:\Intranet\www\index.php(13): CApplication->run()
#3 {main}
REQUEST_URI=/intranet/index.php?r=candidato
---
2012/02/02 10:10:00 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280
Stack trace:
#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato')
#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#2 C:\Intranet\www\index.php(13): CApplication->run()
#3 {main}
REQUEST_URI=/intranet/index.php?r=candidato
---
2012/02/02 10:11:59 [error] [exception.CException] exception 'CException' with message 'Property "CWebUser.email" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131
Stack trace:
#0 C:\Intranet\yii\framework\web\auth\CWebUser.php(141): CComponent->__get('email')
#1 C:\Intranet\www\themes\intranet\views\layouts\main.php(96): CWebUser->__get('email')
#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...')
#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true)
#4 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('C:\Intranet\www...', Array, true)
#5 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('<div class="spa...')
#6 C:\Intranet\yii\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput('<div class="spa...')
#7 C:\Intranet\yii\framework\web\CBaseController.php(207): COutputProcessor->run()
#8 C:\Intranet\yii\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...')
#9 C:\Intranet\www\protected\views\layouts\column2.php(21): CBaseController->endContent()
#10 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...')
#11 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true)
#12 C:\Intranet\yii\framework\web\CController.php(785): CBaseController->renderFile('C:\Intranet\www...', Array, true)
#13 C:\Intranet\www\protected\controllers\UsuarioController.php(133): CController->render('index', Array)
#14 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex()
#15 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array)
#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction))
#17 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run()
#18 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain))
#19 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain))
#20 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain))
#21 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run()
#22 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array)
#23 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('')
#24 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario')
#25 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#26 C:\Intranet\www\index.php(13): CApplication->run()
#27 {main}
REQUEST_URI=/intranet/index.php?r=usuario
---
2012/02/02 10:13:08 [error] [exception.CException] exception 'CException' with message 'Property "CWebUser.email" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131
Stack trace:
#0 C:\Intranet\yii\framework\web\auth\CWebUser.php(141): CComponent->__get('email')
#1 C:\Intranet\www\themes\intranet\views\layouts\main.php(96): CWebUser->__get('email')
#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...')
#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true)
#4 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('C:\Intranet\www...', Array, true)
#5 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('<div class="spa...')
#6 C:\Intranet\yii\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput('<div class="spa...')
#7 C:\Intranet\yii\framework\web\CBaseController.php(207): COutputProcessor->run()
#8 C:\Intranet\yii\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...')
#9 C:\Intranet\www\protected\views\layouts\column2.php(21): CBaseController->endContent()
#10 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...')
#11 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true)
#12 C:\Intranet\yii\framework\web\CController.php(785): CBaseController->renderFile('C:\Intranet\www...', Array, true)
#13 C:\Intranet\www\protected\controllers\UsuarioController.php(133): CController->render('index', Array)
#14 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex()
#15 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array)
#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction))
#17 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run()
#18 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain))
#19 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain))
#20 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain))
#21 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run()
#22 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array)
#23 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('')
#24 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario')
#25 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#26 C:\Intranet\www\index.php(13): CApplication->run()
#27 {main}
REQUEST_URI=/intranet/index.php?r=usuario
---
2012/02/02 10:23:19 [error] [exception.CHttpException.403] exception 'CHttpException' with message 'You are not authorized to perform this action.' in C:\Intranet\yii\framework\web\auth\CAccessControlFilter.php:157
Stack trace:
#0 C:\Intranet\yii\framework\web\auth\CAccessControlFilter.php(120): CAccessControlFilter->accessDenied(Object(CWebUser), 'You are not aut...')
#1 C:\Intranet\yii\framework\web\filters\CFilter.php(39): CAccessControlFilter->preFilter(Object(CFilterChain))
#2 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain))
#3 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain))
#4 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain))
#5 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run()
#6 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array)
#7 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('logout')
#8 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/logout')
#9 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#10 C:\Intranet\www\index.php(13): CApplication->run()
#11 {main}
REQUEST_URI=/intranet/index.php?r=site/logout
HTTP_REFERER=http://localhost/intranet/index.php?r=usuario
---
2012/02/02 10:26:24 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\layouts\main.php:96)
Stack trace:
#0 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(77): UsuarioController->renderFile()
#1 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate()
#2 C:\Intranet\yii\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput()
#3 C:\Intranet\yii\framework\web\CBaseController.php(207): CContentDecorator->run()
#4 C:\Intranet\yii\framework\web\CBaseController.php(301): UsuarioController->endWidget()
#5 C:\Intranet\www\protected\views\layouts\column2.php(21): UsuarioController->endContent()
#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require()
#7 C:\Intranet\yii\framework\web\CBaseController.php(96): UsuarioController->renderInternal()
#8 C:\Intranet\yii\framework\web\CController.php(785): UsuarioController->renderFile()
#9 C:\Intranet\www\protected\controllers\UsuarioController.php(129): UsuarioController->render()
#10 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex()
#11 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams()
#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): UsuarioController->runAction()
#13 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run()
#14 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter()
#15 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): UsuarioController->filterAccessControl()
#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter()
#17 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run()
#18 C:\Intranet\yii\framework\web\CController.php(266): UsuarioController->runActionWithFilters()
#19 C:\Intranet\yii\framework\web\CWebApplication.php(276): UsuarioController->run()
#20 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController()
#21 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#22 C:\Intranet\www\index.php(13): CWebApplication->run()
REQUEST_URI=/intranet/index.php?r=usuario
in C:\Intranet\www\themes\intranet\views\layouts\main.php (96)
in C:\Intranet\www\protected\views\layouts\column2.php (21)
in C:\Intranet\www\protected\controllers\UsuarioController.php (129)
2012/02/02 10:26:36 [error] [exception.CException] exception 'CException' with message 'Property "UsuarioController.model" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131
Stack trace:
#0 C:\Intranet\www\themes\intranet\views\layouts\main.php(96): CComponent->__get('model')
#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...')
#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true)
#3 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('C:\Intranet\www...', Array, true)
#4 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('<div class="spa...')
#5 C:\Intranet\yii\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput('<div class="spa...')
#6 C:\Intranet\yii\framework\web\CBaseController.php(207): COutputProcessor->run()
#7 C:\Intranet\yii\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...')
#8 C:\Intranet\www\protected\views\layouts\column2.php(21): CBaseController->endContent()
#9 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...')
#10 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true)
#11 C:\Intranet\yii\framework\web\CController.php(785): CBaseController->renderFile('C:\Intranet\www...', Array, true)
#12 C:\Intranet\www\protected\controllers\UsuarioController.php(129): CController->render('index', Array)
#13 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex()
#14 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array)
#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction))
#16 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run()
#17 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain))
#18 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain))
#19 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain))
#20 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run()
#21 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array)
#22 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('')
#23 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario')
#24 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#25 C:\Intranet\www\index.php(13): CApplication->run()
#26 {main}
REQUEST_URI=/intranet/index.php?r=usuario
HTTP_REFERER=http://localhost/intranet/index.php?r=site/login
---
2012/02/02 10:29:02 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\layouts\main.php:96)
Stack trace:
#0 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(77): UsuarioController->renderFile()
#1 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate()
#2 C:\Intranet\yii\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput()
#3 C:\Intranet\yii\framework\web\CBaseController.php(207): CContentDecorator->run()
#4 C:\Intranet\yii\framework\web\CBaseController.php(301): UsuarioController->endWidget()
#5 C:\Intranet\www\protected\views\layouts\column2.php(21): UsuarioController->endContent()
#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require()
#7 C:\Intranet\yii\framework\web\CBaseController.php(96): UsuarioController->renderInternal()
#8 C:\Intranet\yii\framework\web\CController.php(785): UsuarioController->renderFile()
#9 C:\Intranet\www\protected\controllers\UsuarioController.php(129): UsuarioController->render()
#10 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex()
#11 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams()
#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): UsuarioController->runAction()
#13 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run()
#14 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter()
#15 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): UsuarioController->filterAccessControl()
#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter()
#17 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run()
#18 C:\Intranet\yii\framework\web\CController.php(266): UsuarioController->runActionWithFilters()
#19 C:\Intranet\yii\framework\web\CWebApplication.php(276): UsuarioController->run()
#20 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController()
#21 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#22 C:\Intranet\www\index.php(13): CWebApplication->run()
REQUEST_URI=/intranet/index.php?r=usuario
in C:\Intranet\www\themes\intranet\views\layouts\main.php (96)
in C:\Intranet\www\protected\views\layouts\column2.php (21)
in C:\Intranet\www\protected\controllers\UsuarioController.php (129)
2012/02/02 10:31:20 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\layouts\main.php:93)
Stack trace:
#0 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(77): UsuarioController->renderFile()
#1 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate()
#2 C:\Intranet\yii\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput()
#3 C:\Intranet\yii\framework\web\CBaseController.php(207): CContentDecorator->run()
#4 C:\Intranet\yii\framework\web\CBaseController.php(301): UsuarioController->endWidget()
#5 C:\Intranet\www\protected\views\layouts\column2.php(21): UsuarioController->endContent()
#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require()
#7 C:\Intranet\yii\framework\web\CBaseController.php(96): UsuarioController->renderInternal()
#8 C:\Intranet\yii\framework\web\CController.php(785): UsuarioController->renderFile()
#9 C:\Intranet\www\protected\controllers\UsuarioController.php(129): UsuarioController->render()
#10 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex()
#11 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams()
#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): UsuarioController->runAction()
#13 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run()
#14 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter()
#15 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): UsuarioController->filterAccessControl()
#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter()
#17 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run()
#18 C:\Intranet\yii\framework\web\CController.php(266): UsuarioController->runActionWithFilters()
#19 C:\Intranet\yii\framework\web\CWebApplication.php(276): UsuarioController->run()
#20 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController()
#21 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#22 C:\Intranet\www\index.php(13): CWebApplication->run()
REQUEST_URI=/intranet/index.php?r=usuario
in C:\Intranet\www\themes\intranet\views\layouts\main.php (93)
in C:\Intranet\www\protected\views\layouts\column2.php (21)
in C:\Intranet\www\protected\controllers\UsuarioController.php (129)
2012/02/02 10:31:31 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\layouts\main.php:93)
Stack trace:
#0 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(77): UsuarioController->renderFile()
#1 C:\Intranet\yii\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate()
#2 C:\Intranet\yii\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput()
#3 C:\Intranet\yii\framework\web\CBaseController.php(207): CContentDecorator->run()
#4 C:\Intranet\yii\framework\web\CBaseController.php(301): UsuarioController->endWidget()
#5 C:\Intranet\www\protected\views\layouts\column2.php(21): UsuarioController->endContent()
#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require()
#7 C:\Intranet\yii\framework\web\CBaseController.php(96): UsuarioController->renderInternal()
#8 C:\Intranet\yii\framework\web\CController.php(785): UsuarioController->renderFile()
#9 C:\Intranet\www\protected\controllers\UsuarioController.php(129): UsuarioController->render()
#10 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex()
#11 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams()
#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): UsuarioController->runAction()
#13 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run()
#14 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter()
#15 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): UsuarioController->filterAccessControl()
#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter()
#17 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run()
#18 C:\Intranet\yii\framework\web\CController.php(266): UsuarioController->runActionWithFilters()
#19 C:\Intranet\yii\framework\web\CWebApplication.php(276): UsuarioController->run()
#20 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController()
#21 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#22 C:\Intranet\www\index.php(13): CWebApplication->run()
REQUEST_URI=/intranet/index.php?r=usuario
in C:\Intranet\www\themes\intranet\views\layouts\main.php (93)
in C:\Intranet\www\protected\views\layouts\column2.php (21)
in C:\Intranet\www\protected\controllers\UsuarioController.php (129)
2012/02/02 10:34:21 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "http://localhost/intranet/index.php?r=usuario/usuario".' in C:\Intranet\yii\framework\web\CWebApplication.php:280
Stack trace:
#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('http://localhos...')
#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#2 C:\Intranet\www\index.php(13): CApplication->run()
#3 {main}
REQUEST_URI=/intranet/index.php?r=http://localhost/intranet/index.php?r=usuario/usuario
HTTP_REFERER=http://localhost/intranet/index.php?r=usuario
---
2012/02/02 10:34:45 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "usuario".' in C:\Intranet\yii\framework\web\CController.php:484
Stack trace:
#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('usuario')
#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('usuario')
#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario/usuario')
#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#4 C:\Intranet\www\index.php(13): CApplication->run()
#5 {main}
REQUEST_URI=/intranet/index.php?r=usuario/usuario
HTTP_REFERER=http://localhost/intranet/index.php?r=usuario
---
2012/02/02 10:35:03 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "usuario".' in C:\Intranet\yii\framework\web\CController.php:484
Stack trace:
#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('usuario')
#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('usuario')
#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario/usuario')
#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#4 C:\Intranet\www\index.php(13): CApplication->run()
#5 {main}
REQUEST_URI=/intranet/index.php?r=usuario/usuario
HTTP_REFERER=http://localhost/intranet/index.php?r=usuario
---
2012/02/02 10:35:11 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "usuario".' in C:\Intranet\yii\framework\web\CController.php:484
Stack trace:
#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('usuario')
#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('usuario')
#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario/usuario')
#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#4 C:\Intranet\www\index.php(13): CApplication->run()
#5 {main}
REQUEST_URI=/intranet/index.php?r=usuario/usuario&view=index
HTTP_REFERER=http://localhost/intranet/index.php?r=usuario
---
2012/02/02 10:35:29 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "usuario".' in C:\Intranet\yii\framework\web\CController.php:484
Stack trace:
#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('usuario')
#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('usuario')
#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/usuario')
#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#4 C:\Intranet\www\index.php(13): CApplication->run()
#5 {main}
REQUEST_URI=/intranet/index.php?r=site/usuario&view=index
HTTP_REFERER=http://localhost/intranet/index.php?r=usuario
---
2012/02/02 10:35:54 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280
Stack trace:
#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato')
#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#2 C:\Intranet\www\index.php(13): CApplication->run()
#3 {main}
REQUEST_URI=/intranet/index.php?r=candidato&view=index
HTTP_REFERER=http://localhost/intranet/index.php?r=usuario&view=index
---
2012/02/02 10:47:15 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280
Stack trace:
#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato')
#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#2 C:\Intranet\www\index.php(13): CApplication->run()
#3 {main}
REQUEST_URI=/intranet/index.php?r=candidato&view=index
HTTP_REFERER=http://localhost/intranet/index.php?r=usuario&view=index
---
2012/02/02 10:47:28 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280
Stack trace:
#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato')
#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#2 C:\Intranet\www\index.php(13): CApplication->run()
#3 {main}
REQUEST_URI=/intranet/index.php?r=candidato&view=index
HTTP_REFERER=http://localhost/intranet/index.php?r=usuario/index
---
2012/02/02 11:22:18 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280
Stack trace:
#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato')
#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#2 C:\Intranet\www\index.php(13): CApplication->run()
#3 {main}
REQUEST_URI=/intranet/index.php?r=candidato&view=index
HTTP_REFERER=http://localhost/intranet/index.php?r=usuario/index
---
2012/02/02 11:22:21 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280
Stack trace:
#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato')
#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#2 C:\Intranet\www\index.php(13): CApplication->run()
#3 {main}
REQUEST_URI=/intranet/index.php?r=candidato
---
2012/02/02 11:22:52 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "candidato".' in C:\Intranet\yii\framework\web\CWebApplication.php:280
Stack trace:
#0 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato')
#1 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#2 C:\Intranet\www\index.php(13): CApplication->run()
#3 {main}
REQUEST_URI=/intranet/index.php?r=candidato&view=index
HTTP_REFERER=http://localhost/intranet/index.php?r=usuario/index
---
2012/02/02 11:40:01 [error] [php] Undefined variable: dataProvider (C:\Intranet\www\themes\intranet\views\usuario\index.php:22)
Stack trace:
#0 C:\Intranet\yii\framework\web\CController.php(870): UsuarioController->renderFile()
#1 C:\Intranet\yii\framework\web\CController.php(783): UsuarioController->renderPartial()
#2 C:\Intranet\www\protected\controllers\UsuarioController.php(129): UsuarioController->render()
#3 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex()
#4 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams()
#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): UsuarioController->runAction()
#6 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run()
#7 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter()
#8 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): UsuarioController->filterAccessControl()
#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter()
#10 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run()
#11 C:\Intranet\yii\framework\web\CController.php(266): UsuarioController->runActionWithFilters()
#12 C:\Intranet\yii\framework\web\CWebApplication.php(276): UsuarioController->run()
#13 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController()
#14 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#15 C:\Intranet\www\index.php(13): CWebApplication->run()
REQUEST_URI=/intranet/index.php?r=usuario&view=index
in C:\Intranet\www\themes\intranet\views\usuario\index.php (22)
in C:\Intranet\www\protected\controllers\UsuarioController.php (129)
in C:\Intranet\www\index.php (13)
2012/02/02 11:44:36 [error] [php] Undefined variable: dataProvider (C:\Intranet\www\themes\intranet\views\usuario\index.php:22)
Stack trace:
#0 C:\Intranet\yii\framework\web\CController.php(870): UsuarioController->renderFile()
#1 C:\Intranet\yii\framework\web\CController.php(783): UsuarioController->renderPartial()
#2 C:\Intranet\www\protected\controllers\UsuarioController.php(129): UsuarioController->render()
#3 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex()
#4 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams()
#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): UsuarioController->runAction()
#6 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run()
#7 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter()
#8 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): UsuarioController->filterAccessControl()
#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter()
#10 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run()
#11 C:\Intranet\yii\framework\web\CController.php(266): UsuarioController->runActionWithFilters()
#12 C:\Intranet\yii\framework\web\CWebApplication.php(276): UsuarioController->run()
#13 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController()
#14 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#15 C:\Intranet\www\index.php(13): CWebApplication->run()
REQUEST_URI=/intranet/index.php?r=usuario&view=index
in C:\Intranet\www\themes\intranet\views\usuario\index.php (22)
in C:\Intranet\www\protected\controllers\UsuarioController.php (129)
in C:\Intranet\www\index.php (13)
2012/02/02 11:59:53 [error] [exception.CException] exception 'CException' with message 'Property "UsuarioController.javascript" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:174
Stack trace:
#0 C:\Intranet\www\themes\intranet\views\usuario\index.php(11): CComponent->__set('javascript', Array)
#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...')
#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true)
#3 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true)
#4 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('index', Array, true)
#5 C:\Intranet\www\protected\controllers\UsuarioController.php(129): CController->render('index', Array)
#6 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex()
#7 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array)
#8 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction))
#9 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run()
#10 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain))
#11 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain))
#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain))
#13 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run()
#14 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array)
#15 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('')
#16 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario')
#17 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#18 C:\Intranet\www\index.php(13): CApplication->run()
#19 {main}
REQUEST_URI=/intranet/index.php?r=usuario&view=index
HTTP_REFERER=http://localhost/intranet/index.php?r=usuario&view=index
---
2012/02/02 12:03:42 [error] [php] include(RdxBaseController.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory (C:\Intranet\yii\framework\YiiBase.php:418)
Stack trace:
#0 C:\Intranet\www\protected\controllers\UsuarioController.php(4): spl_autoload_call()
#1 C:\Intranet\yii\framework\web\CWebApplication.php(344): require()
#2 C:\Intranet\yii\framework\web\CWebApplication.php(270): CWebApplication->createController()
#3 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController()
#4 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#5 C:\Intranet\www\index.php(13): CWebApplication->run()
REQUEST_URI=/intranet/index.php?r=usuario/index
in C:\Intranet\www\protected\controllers\UsuarioController.php (4)
in C:\Intranet\www\index.php (13)
2012/02/02 12:05:08 [error] [exception.CException] exception 'CException' with message 'Property "UsuarioController.javascript" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:174
Stack trace:
#0 C:\Intranet\www\themes\intranet\views\usuario\index.php(11): CComponent->__set('javascript', Array)
#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...')
#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true)
#3 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true)
#4 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('index', Array, true)
#5 C:\Intranet\www\protected\controllers\UsuarioController.php(124): CController->render('index', Array)
#6 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex()
#7 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array)
#8 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction))
#9 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run()
#10 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain))
#11 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain))
#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain))
#13 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run()
#14 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array)
#15 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('index')
#16 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario/index')
#17 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#18 C:\Intranet\www\index.php(13): CApplication->run()
#19 {main}
REQUEST_URI=/intranet/index.php?r=usuario/index
HTTP_REFERER=http://localhost/intranet/index.php?r=usuario/admin
---
2012/02/02 12:06:06 [error] [exception.CException] exception 'CException' with message 'Property "UsuarioController.javascripts" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:174
Stack trace:
#0 C:\Intranet\www\themes\intranet\views\usuario\index.php(11): CComponent->__set('javascripts', Array)
#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...')
#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true)
#3 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true)
#4 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('index', Array, true)
#5 C:\Intranet\www\protected\controllers\UsuarioController.php(124): CController->render('index', Array)
#6 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): UsuarioController->actionIndex()
#7 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array)
#8 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction))
#9 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run()
#10 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain))
#11 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain))
#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain))
#13 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run()
#14 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array)
#15 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('index')
#16 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario/index')
#17 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest()
#18 C:\Intranet\www\index.php(13): CApplication->run()
#19 {main}
REQUEST_URI=/intranet/index.php?r=usuario/index
HTTP_REFERER=http://localhost/intranet/index.php?r=usuario/admin
---

View File

@ -0,0 +1 @@
a:1:{s:34:"Yii.CSecurityManager.validationkey";s:32:"49f5893c6cc41b775953b73e5f667165";}

View File

@ -0,0 +1,63 @@
@charset "utf-8";
/* CSS Document */
span.timestamp {
float: right;
font-size: 93%;
color: #808080;
}
.imgleft2 { float: left; margin: 0 10px 0 0; padding: 5px;}
.imgleft2 { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
.column-filter-widgets {
padding: 10px 10px;
}
.column-filter-widget {
display: inline-block;
padding-right: 5px;
}
.borrador {
background: none repeat scroll 0 0 #FF9C00;
border-radius: 5px 5px 5px 5px;
color: #FFFFFF;
padding: 2px 5px;
cursor: pointer;
}
.rechazado {
background: none repeat scroll 0 0 #5B5B5B;
border-radius: 5px 5px 5px 5px;
color: #FFFFFF;
padding: 2px 5px;
cursor: pointer;
}
.proceso {
background: none repeat scroll 0 0 #7AC212;
border-radius: 5px 5px 5px 5px;
color: #FFFFFF;
padding: 2px 5px;
cursor: pointer;
}
.asignado {
background: none repeat scroll 0 0 #C21179;
border-radius: 5px 5px 5px 5px;
color: #FFFFFF;
padding: 2px 5px;
cursor: pointer;
}
.gris {
color: #999;
}
.form_default label {
color: #006699;
}

View File

@ -0,0 +1,7 @@
.header { z-index: 10; }
.tabmenu { top: 52px; z-index: -1; }
.topheader ul li { position: relative; }
.loginbox button { padding: 5px 8px; }
#search input { padding-top: 6px; }
.dropbox ul { position: relative; z-index: 100; }
.notification { position: relative; z-index: 100; }

View File

@ -0,0 +1,2 @@
.loginbox button { padding: 7px 14px; }
#search input { padding-top: 6px; }

View File

@ -0,0 +1 @@
.loginbox button { padding: 7px 14px; }

View File

@ -0,0 +1,37 @@
/*
ColorBox Core Style:
The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block;}
.cboxIframe{width:100%; height:100%; display:block; border:0;}
/*
User Style:
Change the following styles to modify the appearance of ColorBox. They are
ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#000;}
#colorbox{}
#cboxContent{margin-top:20px;}
.cboxIframe{background:#fff;}
#cboxError{padding:50px; border:1px solid #ccc;}
#cboxLoadedContent{border:5px solid #000; background:#fff;}
#cboxTitle{position:absolute; top:-20px; left:0; color:#ccc;}
#cboxCurrent{position:absolute; top:-20px; right:0px; color:#ccc;}
#cboxSlideshow{position:absolute; top:-20px; right:90px; color:#fff;}
#cboxPrevious{position:absolute; top:50%; left:5px; margin-top:-32px; background:url(../../images/colorbox/controls.png) no-repeat top left; width:28px; height:65px; text-indent:-9999px;}
#cboxPrevious:hover{background-position:bottom left;}
#cboxNext{position:absolute; top:50%; right:5px; margin-top:-32px; background:url(../../images/colorbox/controls.png) no-repeat top right; width:28px; height:65px; text-indent:-9999px;}
#cboxNext:hover{background-position:bottom right;}
#cboxLoadingOverlay{background:#000;}
#cboxLoadingGraphic{background:url(../../images/colorbox/loading.gif) no-repeat center center;}
#cboxClose{position:absolute; top:5px; right:5px; display:block; background:url(../../images/colorbox/controls.png) no-repeat top center; width:38px; height:19px; text-indent:-9999px;}
#cboxClose:hover{background-position:bottom center;}

View File

@ -0,0 +1,161 @@
.colorpicker {
width: 356px;
height: 176px;
overflow: hidden;
position: absolute;
background: url(../../images/colorpicker/colorpicker_background.png);
font-family: Arial, Helvetica, sans-serif;
display: none;
}
.colorpicker_color {
width: 150px;
height: 150px;
left: 14px;
top: 13px;
position: absolute;
background: #f00;
overflow: hidden;
cursor: crosshair;
}
.colorpicker_color div {
position: absolute;
top: 0;
left: 0;
width: 150px;
height: 150px;
background: url(../../images/colorpicker/colorpicker_overlay.png);
}
.colorpicker_color div div {
position: absolute;
top: 0;
left: 0;
width: 11px;
height: 11px;
overflow: hidden;
background: url(../../images/colorpicker/colorpicker_select.gif);
margin: -5px 0 0 -5px;
}
.colorpicker_hue {
position: absolute;
top: 13px;
left: 171px;
width: 35px;
height: 150px;
cursor: n-resize;
}
.colorpicker_hue div {
position: absolute;
width: 35px;
height: 9px;
overflow: hidden;
background: url(../../images/colorpicker/colorpicker_indic.gif) left top;
margin: -4px 0 0 0;
left: 0px;
}
.colorpicker_new_color {
position: absolute;
width: 60px;
height: 30px;
left: 213px;
top: 13px;
background: #f00;
}
.colorpicker_current_color {
position: absolute;
width: 60px;
height: 30px;
left: 283px;
top: 13px;
background: #f00;
}
.colorpicker input {
background-color: transparent;
border: 1px solid transparent;
position: absolute;
font-size: 10px;
font-family: Arial, Helvetica, sans-serif;
color: #898989;
top: 4px;
right: 11px;
text-align: right;
margin: 0;
padding: 0;
height: 11px;
}
.colorpicker_hex {
position: absolute;
width: 72px;
height: 22px;
background: url(../../images/colorpicker/colorpicker_hex.png) top;
left: 212px;
top: 142px;
}
.colorpicker_hex input {
right: 6px;
}
.colorpicker_field {
height: 22px;
width: 62px;
background-position: top;
position: absolute;
}
.colorpicker_field span {
position: absolute;
width: 12px;
height: 22px;
overflow: hidden;
top: 0;
right: 0;
cursor: n-resize;
}
.colorpicker_rgb_r {
background-image: url(../../images/colorpicker/colorpicker_rgb_r.png);
top: 52px;
left: 212px;
}
.colorpicker_rgb_g {
background-image: url(../../images/colorpicker/colorpicker_rgb_g.png);
top: 82px;
left: 212px;
}
.colorpicker_rgb_b {
background-image: url(../../images/colorpicker/colorpicker_rgb_b.png);
top: 112px;
left: 212px;
}
.colorpicker_hsb_h {
background-image: url(../../images/colorpicker/colorpicker_hsb_h.png);
top: 52px;
left: 282px;
}
.colorpicker_hsb_s {
background-image: url(../../images/colorpicker/colorpicker_hsb_s.png);
top: 82px;
left: 282px;
}
.colorpicker_hsb_b {
background-image: url(../../images/colorpicker/colorpicker_hsb_b.png);
top: 112px;
left: 282px;
}
.colorpicker_submit {
position: absolute;
width: 22px;
height: 22px;
background: url(../../images/colorpicker/colorpicker_submit.png) top;
left: 322px;
top: 142px;
overflow: hidden;
}
.colorpicker_focus {
background-position: center;
}
.colorpicker_hex.colorpicker_focus {
background-position: bottom;
}
.colorpicker_submit.colorpicker_focus {
background-position: bottom;
}
.colorpicker_slider {
background-position: bottom;
}

View File

@ -0,0 +1,834 @@
/* file manager window */
.el-finder {
width:100%;
min-width:400px;
background-color:#eee;
font-size: 12px;
font-family: DroidSansRegular, Arial, Helvetica, sans-serif;
}
.el-finder-undocked {
position:absolute;
min-width:400px;
border:1px solid #ccc;
padding:5px;
}
/* error messages */
.el-finder-err {
padding: 15px;
text-align:center;
background: #fee;
color: #cc0509;
border: 2px #844 solid;
border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px;
}
/* disabled */
.el-finder-disabled .el-finder-toolbar li,
.el-finder-disabled .el-finder-nav,
.el-finder-disabled .el-finder-cwd {
opacity:0.35; filter:Alpha(Opacity=35);
}
.el-finder .el-finder-droppable {
background-color:#99ccff;
}
.el-finder .ui-selected {
background-color:#ccc;
/* background-color:#c5e4f9;*/
}
.el-finder input {
margin:0;
padding:0;
outline:none;
border:1px solid #ccc;
}
/************************************/
/* toolbar */
/************************************/
.el-finder-toolbar ul {
padding:5px 7px;
margin:0;
list-style:none;
}
.el-finder-toolbar ul li {
display: -moz-inline-stack;
display: inline-block;
zoom: 1;
*display: inline;
vertical-align: top;
height:22px;
width:23px;
margin:0 2px;
padding:0;
background:url('../../images/filemanager/toolbar.png') no-repeat;
border:1px solid #ccc;
border-radius:3px;
-moz-border-radius:3px;
-webkit-border-radius:3px;
}
.el-finder-toolbar ul li.delim {
border:none;
width:3px;
background-position: 1px -610px;
}
.el-finder-toolbar ul li.el-finder-tb-hover {
border:1px solid #fff;
background-color:#ccc;
}
.el-finder-toolbar ul li.disabled { opacity:0.35; filter:Alpha(Opacity=35); }
.el-finder-toolbar ul li.back { background-position: 3px -171px; }
.el-finder-toolbar ul li.reload { background-position: 3px -192px; }
.el-finder-toolbar ul li.select { background-position: 3px -214px; }
.el-finder-toolbar ul li.open { background-position: 4px -235px; }
.el-finder-toolbar ul li.mkdir { background-position: 4px -258px; }
.el-finder-toolbar ul li.mkfile { background-position: 4px -280px; }
.el-finder-toolbar ul li.upload { background-position: 3px -305px; }
.el-finder-toolbar ul li.rm { background-position: 3px -330px; }
.el-finder-toolbar ul li.copy { background-position: 3px -356px; }
.el-finder-toolbar ul li.paste { background-position: 3px -381px; }
.el-finder-toolbar ul li.rename { background-position: 3px -407px; }
.el-finder-toolbar ul li.edit { background-position: 4px -435px; }
.el-finder-toolbar ul li.info { background-position: 3px -462px; }
.el-finder-toolbar ul li.help { background-position: 3px -487px; }
.el-finder-toolbar ul li.icons { background-position: 3px -537px; }
.el-finder-toolbar ul li.list { background-position: 3px -557px; }
.el-finder-toolbar ul li.uncompress { background-position: 3px -583px; }
.el-finder-toolbar ul li.resize { background-position: 3px -656px; }
.el-finder-toolbar ul li.quicklook { background-position: 3px -726px; }
.el-finder-dock-button {
width:19px;
height:19px;
float:right;
margin: 2px;
border:1px solid #ccc;
border-radius:3px;
-moz-border-radius:3px;
-webkit-border-radius:3px;
background:url('../../images/filemanager/toolbar.png') 2px -705px no-repeat;
}
.ui-dialog .el-finder-dock-button {
background-position:2px -681px;
}
.el-finder-dock-button-hover {
background-color:#ccc;
border:1px solid #fff;
}
/**********************************************************/
/* workzone, container for navigation and current folder */
/**********************************************************/
.el-finder-workzone {
background-color:#f7f7f7;
border-top:1px solid #ccc;
border-bottom:1px solid #ccc;
position:relative;
}
.el-finder-spinner {
position:absolute;
top:37%;
left:37%;
width:250px;
height:50px;
background:transparent url(../../images/filemanager/spinner.gif) 50% 50% no-repeat;
display:none;
}
/* error in workzone */
.el-finder-workzone p.el-finder-err {
display:none;
position:absolute;
left:37%;
top:20px;
}
/* navigation and current directory */
.el-finder-nav, .el-finder-cwd {
height:350px;
overflow:auto;
}
/************************************/
/* navigation */
/************************************/
.el-finder-nav {
float:left;
width : 200px;
background:#fff;
}
.el-finder-nav .ui-resizable-e {
right:0;
}
/* folders tree */
.el-finder-nav ul {
list-style:none;
margin:0;
padding:0;
}
.el-finder-nav ul li {
clear:both;
}
ul.el-finder-tree, ul.el-finder-places {
margin-bottom:1em;
}
.el-finder-nav ul li ul {
margin-left:12px;
}
.el-finder-nav ul div {
width:12px;
height:20px;
float:left;
margin-right:23px;
}
.el-finder-nav a, .el-finder-nav div.collapsed {
background-image:url(../../images/filemanager/toolbar.png);
background-repeat:no-repeat;
}
.el-finder-nav div.collapsed {
background-position: -1px 7px;
}
.el-finder-nav div.expanded {
background-position: -1px -9px;
}
.el-finder-nav a {
display: block;
white-space:nowrap;
line-height:20px;
color:#444;
cursor:default;
text-decoration:none;
outline:none;
background-position: 15px -56px;
font-size: 11px;
}
.el-finder-nav a.dropbox {
background-position: 15px -80px;
}
.el-finder-nav a.readonly {
background-position: 15px -104px;
}
.el-finder-nav a.noaccess {
background-position: 15px -750px;
}
.el-finder-nav a.selected {
/* background-color:#ccc;*/
background-color:#c5e4f9;
background-position: 15px -128px;
}
.el-finder-nav a.el-finder-tree-root {
background-position: 15px -30px;
font-weight:bold;
font-size: 11px;
}
.el-finder-nav a.el-finder-places-root {
background-position: 15px -152px;
font-weight:bold;
font-size: 11px;
margin-top: 5px;
}
.el-finder-nav ul.el-finder-tree .el-finder-droppable {
background-position: 15px -237px;
}
/***********************************/
/* current working directory */
/************************************/
.el-finder-cwd {
border-left:1px solid #ddd;
padding:10px;
}
/********** view: icons ************/
.el-finder-cwd div {
width: 81px;
display: -moz-inline-stack;
display: inline-block;
vertical-align: top;
zoom: 1;
*display: inline;
margin:0 3px 3px 0;
padding:1px 0;
text-align:center;
border-radius:2px;
-moz-border-radius:2px;
-webkit-border-radius:2px;
color:#333;
background-color:transparent;
}
.el-finder-cwd p,
.el-finder-ql p {
width:48px;
height:48px;
margin:1px auto;
padding:0;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
background: url('../../images/filemanager/icons-big.png') -1px 1px no-repeat;
}
/* mimetypes */
.directory p { background-position: 0 -50px; }
.application p,.x-java p { background-position: -1px -150px; }
.audio p { background-position: -1px -300px; }
.image p { background-position: -1px -250px; }
.text p, .x-empty p { background-position: -1px -200px; }
.video p { background-position: -1px -350px; }
.vnd-adobe-photoshop p, .postscript p { background-position: 0 -250px; }
/* texts */
.rtf p, .rtfd p { background-position: 0 -400px; }
.html p { background-position: 0 -550px; }
.css p { background-position: 0 -600px; }
.javascript p, .x-javascript p { background-position: 0 -650px; }
.x-perl p { background-position: 0 -700px; }
.x-python p { background-position: 0 -750px; }
.x-ruby p { background-position: 0 -800px; }
.x-sh p, .x-shellscript p { background-position: 0 -850px; }
.x-c p, .x-java-source p { background-position: 0 -900px; }
.x-php p { background-position: 0 -950px; }
.xml p { background-position: 0 -1000px; }
/* applications */
.vnd-ms-office p,
.msword p,
.vnd-ms-word p,
.vnd-oasis-opendocument-text p,
.ms-excel p,
.vnd-ms-excel p,
.vnd-oasis-opendocument-spreadsheet p,
.vnd-ms-powerpoint p,
.vnd-oasis-opendocument-presentation p { background-position: 0 -500px; }
.pdf p { background-position: 0 -450px; }
.x-shockwave-flash p { background-position: 0 -1250px; }
/* archives */
.zip p, .x-7z-compressed p { background-position: 0 -1050px; }
.x-gzip p, .x-tar p { background-position: 0 -1100px; }
.x-bzip p, .x-bzip2 p { background-position: 0 -1150px; }
.x-rar p, .x-rar-compressed p { background-position: 0 -1200px; }
.el-finder-cwd div.el-finder-droppable p {
background-position: 0 -98px;
}
.el-finder-cwd label {
display:block;
font-size:11px;
line-height:13px;
padding:0 1px;
margin:0;
height:25px;
overflow:hidden;
cursor:default;
}
.el-finder-cwd div input {
background:#fff;
color:#000;
width:81px;
margin-left:-2px;
outline:none;
border:1px solid #ccc;
text-align:center;
}
.el-finder-cwd div em {
float:left;
margin-top:-40px;
margin-left:9px;
width:15px;
height:16px;
background:url(../../images/filemanager/icons-big.png) -17px -1310px no-repeat;
}
.el-finder-cwd div em.dropbox {
float:right;
margin-right:9px;
background-position: 0 -1308px;
}
.el-finder-cwd div em.noread {
float:right;
margin-right:9px;
background-position: 0 -1310px;
}
.el-finder-cwd div em.readonly {
float:right;
margin-right:9px;
background-position: -34px -1306px;
}
.el-finder-cwd div em.noaccess {
float:right;
margin-right:9px;
background-position: 0 -1430px;
}
/********** view: list ************/
.el-finder-cwd table {
width:100%;
/* *width:99%;*/
border-collapse: collapse;
border-spacing: 0;
border:1px solid #ccc;
border-top:0 solid;
border-left:0 solid;
margin:-3px -3px;
}
.el-finder-cwd table tr {
background:transparent;
}
.el-finder-cwd table tr.el-finder-row-odd {
background-color:#eee;
}
.el-finder-cwd table tr.ui-selected {
background-color:#ccc;
}
.el-finder-cwd table th,
.el-finder-cwd table td {
padding:3px 5px;
border-left:1px solid #ccc;
cursor:default;
white-space:nowrap;
color:#000;
}
.el-finder-cwd table th {
text-align:left;
background:#fbf9ee;
font-size:.86em;
}
.el-finder-cwd table td.icon {
width:24px;
}
.el-finder-cwd table p {
width:24px;
height:16px;
margin:0;
padding:0;
background:url(../../images/filemanager/icons-small.png) 4px 0 no-repeat;
}
.el-finder-cwd table .size {
text-align:right;
}
tr.directory p { background-position:4px -16px; }
tr.text p { background-position:5px -34px; }
tr.image p { background-position:4px -51px; }
tr.audio p { background-position:4px -70px; }
tr.video p { background-position:5px -89px; }
tr.application p { background-position:4px -108px; }
/* text */
tr.html p { background-position:5px -188px; }
tr.javascript p,
tr.x-javascript p,
tr.css p,
tr.x-sql p,
tr.xml p,
tr.x-python p,
tr.x-java-source p,
tr.x-perl p,
tr.x-ruby p { background-position:5px -228px; }
tr.x-php p { background-position:5px -247px; }
tr.x-c p { background-position:5px -208px; }
tr.x-shellscript p,
tr.x-sh p { background-position:5px -168px; }
tr.rtf p, tr.rtfd p { background-position:5px -148px; }
/* application */
tr.x-shockwave-flash p { background-position:4px -266px; }
tr.pdf p { background-position:4px -285px; }
tr.vnd-ms-office p { background-position:4px -325px; }
tr.msword p,
tr.vnd-oasis-opendocument-text p,
tr.vnd-ms-word p { background-position:4px -346px; }
tr.vnd-ms-excel p,
tr.ms-excel p,
tr.vnd-oasis-opendocument-spreadsheet { background-position:4px -365px; }
tr.vnd-ms-powerpoint p,
tr.vnd-oasis-opendocument-presentation { background-position:4px -385px; }
/* archives */
tr.x-tar p,
tr.x-gzip p,
tr.x-bzip p,
tr.x-bzip2 p,
tr.zip p,
tr.x-rar p,
tr.x-rar-compressed p,
tr.x-7z-compressed p { background-position:4px -305px; }
tr.el-finder-droppable td.icon p { background-position:5px -450px; }
.el-finder-cwd table td p em {
float:left;
width:10px;
height:12px;
margin-top:5px;
background:url(../../images/filemanager/icons-small.png) 0px -405px no-repeat;
}
.el-finder-cwd table p em.readonly { background-position:0px -433px; }
.el-finder-cwd table p em.dropbox { background-position:0px -418px; }
.el-finder-cwd table p em.noread,
.el-finder-cwd table p em.noaccess { background-position:0px -470px; }
/************************************/
/* statusbar */
/************************************/
.el-finder-statusbar {
height:25px;
}
.el-finder-stat,
.el-finder-path,
.el-finder-sel {
padding:3px 9px 1px 9px;
font-size:11px;
color:#555;
}
/* current directory path */
.el-finder-path {
float:left;
}
/* number folders/files in current directory and size */
.el-finder-stat {
float:right;
}
/* info about selected files */
.el-finder-sel {
text-align:center;
}
/************************************/
/* dialog window */
/************************************/
.el-finder-dialog {
font-size:.84em;
}
.el-finder-dialog form p, .el-finder-dialog .ui-tabs p {
margin:.5em;
}
.el-finder-dialog .ui-dialog-titlebar {
padding: .2em .1em .1em .8em;
}
.el-finder-dialog .ui-dialog-buttonpane {
padding: .1em 1em .1em .4em;
font-size:.9em;
}
.el-finder-dialog .ui-dialog-content {
padding:5px;
}
.el-finder-dialog hr {
border:0;
border-bottom: 1px #ccc solid;
clear:both
}
.el-finder-dialog ul {
margin-top:0;
}
.el-finder-dialog kbd { font-size:1.2em;}
.el-finder-dialog a { outline: none;}
.el-finder-dialog textarea {
width:98.9%;
height:400px;
outline:none;
border:1px solid #ccc;
font-family: Arial, Helvetica, sans-serif;
}
.ui-state-error {
margin: 5px 0;
padding:.5em;
clear:both;
}
.el-finder-dialog .ui-state-error .ui-icon {
float: left;
margin-right: .3em;
}
.el-finder-add-field {
cursor:pointer;
}
.el-finder-add-field span {
float:left;
margin-right:.7em;
}
.el-finder-dialog table {
width : 100%;
}
.el-finder-dialog table td {
padding:2px 5px;
}
.el-finder-dialog .ui-tabs {
font-size:.98em;
}
.el-finder-dialog .ui-tabs div {
padding:0 .5em;
}
.el-finder-dialog .ui-tabs-nav li a {
padding:.2em 1em;
}
/************************************/
/* contextmenu */
/************************************/
.el-finder-contextmenu {
position:absolute;
width:200px;
background:#fff;
color:#000;
cursor:default;
border:1px solid #ccc;
padding:5px 0;
}
.el-finder-contextmenu div {
position:relative;
display:block;
margin:0;
padding:2px 29px;
white-space:nowrap;
font-size:11px;
font-family: Arial, Helvetica, sans-serif;
background:url('../../images/filemanager/toolbar.png') 0 0 no-repeat;
}
.el-finder-contextmenu span {
float:right;
width:9px;
height:18px;
margin-right:-27px;
background:url(../../images/filemanager/toolbar.png) -4px 5px no-repeat;
}
.el-finder-contextmenu div.el-finder-contextmenu-sub {
position:absolute;
top:0;
display:none;
margin:0;
padding:5px 0;
background:#fff;
border:1px solid #ccc;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
}
.el-finder-contextmenu div.reload { background-position: 5px -192px; }
.el-finder-contextmenu div.select { background-position: 5px -214px; }
.el-finder-contextmenu div.open { background-position: 6px -235px; }
.el-finder-contextmenu div.mkdir { background-position: 6px -258px; }
.el-finder-contextmenu div.mkfile { background-position: 6px -280px; }
.el-finder-contextmenu div.upload { background-position: 5px -305px; }
.el-finder-contextmenu div.rm { background-position: 5px -330px; }
.el-finder-contextmenu div.copy { background-position: 5px -356px; }
.el-finder-contextmenu div.cut { background-position: 5px -631px; }
.el-finder-contextmenu div.duplicate { background-position: 5px -356px; }
.el-finder-contextmenu div.paste { background-position: 5px -381px; }
.el-finder-contextmenu div.rename { background-position: 5px -407px; }
.el-finder-contextmenu div.edit { background-position: 6px -435px; }
.el-finder-contextmenu div.info { background-position: 5px -462px; }
.el-finder-contextmenu div.help { background-position: 5px -487px; }
.el-finder-contextmenu div.icons { background-position: 5px -537px; }
.el-finder-contextmenu div.list { background-position: 5px -557px; }
.el-finder-contextmenu div.archive { background-position: 5px -583px; }
.el-finder-contextmenu div.extract { background-position: 5px -583px; }
.el-finder-contextmenu div.resize { background-position: 5px -655px; }
.el-finder-contextmenu div.quicklook { background-position: 5px -727px; }
.el-finder-contextmenu div.delim {
margin:0;
padding:0;
height:1px;
border-top:1px solid #eee;
background:transparent;
display:block;
}
.el-finder-contextmenu div.hover { background-color:#99ccff; }
.el-finder-places {
margin-top:.5em;
}
.el-finder-drag-helper {
padding:0;
cursor:move;
zoom:1;
}
.el-finder-drag-helper div {
border:0 solid;
margin-left:-57px;
}
.el-finder-drag-copy {
background:url('../../images/filemanager/toolbar.png') 0 -771px no-repeat;
}
.el-finder-drag-helper label {
border:1px solid #ccc;
background-color:#eee;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
}
/************************************/
/* QuickLook */
/************************************/
.el-finder-ql {
position:absolute;
width:420px;
height:auto;
padding:12px 9px;
text-align:center;
border-radius:9px;
-moz-border-radius:9px;
-webkit-border-radius:9px;
background:url(../../images/filemanager/ql.png);
overflow: inherit !important;
}
.el-finder-ql.directory p { background-position: 0 -50px; }
/* toolbar */
.el-finder-ql div.el-finder-ql-drag-handle {
height:18px;
font-size:14px;
background-color:#777;
margin:-12px -9px 12px -9px;
padding:3px 0 0 19px;
opacity:.8;
text-align:center;
white-space: nowrap;
overflow:hidden;
-moz-border-radius-topleft:9px;
-moz-border-radius-topright:9px;
-webkit-border-top-left-radius: 9px;
-webkit-border-top-right-radius: 9px;
border-top-left-radius: 9px;
border-top-right-radius: 9px;
}
/* close button */
.el-finder-ql div.el-finder-ql-drag-handle span {
float:left;
margin:0 19px 0 -15px;
}
/* title in tolbar */
.el-finder-ql div.el-finder-ql-drag-handle strong {
line-height:18px;
margin-left:-17px;
color:#fff;
}
.el-finder-ql div.el-finder-ql-media {
width:100%;
padding:0;
}
.el-finder-ql div.el-finder-ql-content {
width:100%;
font-size:.82em/1.3em;
font-family: Arial, Helvetica, sans-serif;
padding:5px 0;
overflow:hidden;
}
.el-finder-ql div.el-finder-ql-content span,
.el-finder-ql div.el-finder-ql-content a {
display:block;
color: #fff;
}
/* text files preview */
.el-finder-ql iframe {
background:#fff;
width:100%;
height:315px;
padding:0;
margin:0;
border:none;
outline:none;
}
/* images preview */
.el-finder-ql img {
margin:0 auto;
border:1px solid #fff;
}
/* button help */
.el-finder-help-std {
background: url(../../images/filemanager/icons-big.png) 0 -1380px no-repeat;
width:48px;
height:48px;
float:right;
}
.el-finder-logo {
background: url(../../images/filemanager/icons-big.png) 0 -1329px no-repeat;
width:48px;
height:48px;
float:left;
}
.el-finder-ql .ui-resizable-e, .el-finder-ql .ui-resizable-s { background:transparent !important;}

View File

@ -0,0 +1,578 @@
/*
* FullCalendar v1.5.2 Stylesheet
*
* Copyright (c) 2011 Adam Shaw
* Dual licensed under the MIT and GPL licenses, located in
* MIT-LICENSE.txt and GPL-LICENSE.txt respectively.
*
* Date: Sun Aug 21 22:06:09 2011 -0700
*
*/
.fc {
direction: ltr;
text-align: left;
}
.fc table {
border-collapse: collapse;
border-spacing: 0;
}
html .fc,
.fc table {
font-size: 1em;
}
.fc td,
.fc th {
padding: 0;
vertical-align: top;
}
/* Header
------------------------------------------------------------------------*/
.fc-header td {
white-space: nowrap;
}
.fc-header-left {
width: 25%;
text-align: left;
}
.fc-header-center {
text-align: center;
}
.fc-header-right {
width: 25%;
text-align: right;
}
.fc-header-title {
display: inline-block;
vertical-align: top;
}
.fc-header-title h2 {
margin-top: 5px;
white-space: nowrap;
}
.fc .fc-header-space {
padding-left: 10px;
display: none;
}
.fc-header .fc-button {
margin-bottom: 1em;
vertical-align: top;
}
/* buttons edges butting together */
.fc-header .fc-button {
margin-right: -1px;
}
.fc-header .fc-corner-right {
margin-right: 1px; /* back to normal */
}
.fc-header .ui-corner-right {
margin-right: 0; /* back to normal */
}
/* button layering (for border precedence) */
.fc-header .fc-state-hover,
.fc-header .ui-state-hover {
z-index: 2;
}
.fc-header .fc-state-down {
z-index: 3;
}
.fc-header .fc-state-active,
.fc-header .ui-state-active {
z-index: 4;
}
/* Content
------------------------------------------------------------------------*/
.fc-content {
clear: both;
background: #fcfcfc;
}
.fc-view {
width: 100%; /* needed for view switching (when view is absolute) */
overflow: hidden;
}
/* Cell Styles
------------------------------------------------------------------------*/
.fc-widget-header, /* <th>, usually */
.fc-widget-content { /* <td>, usually */
border: 1px solid #ccc;
}
.fc-state-highlight { /* <td> today cell */ /* TODO: add .fc-today to <th> */
background: #ffc;
}
.fc-cell-overlay { /* semi-transparent rectangle while dragging */
background: #9cf;
opacity: .2;
filter: alpha(opacity=20); /* for IE */
}
/* Buttons
------------------------------------------------------------------------*/
.fc-button {
position: relative;
display: inline-block;
cursor: pointer;
}
.fc-button-inner {
position: relative;
float: left;
overflow: hidden;
}
/*
.fc-state-default .fc-button-inner {
border-style: solid;
border-width: 0 1px;
} */
.fc-button-content {
position: relative;
float: left;
height: 1.9em;
line-height: 1.9em;
padding: 0 .6em;
white-space: nowrap;
display: none;
}
/* icon (for jquery ui) */
.fc-button-content .fc-icon-wrap {
position: relative;
float: left;
top: 50%;
}
.fc-button-content .ui-icon {
position: relative;
float: left;
margin-top: -50%;
*margin-top: 0;
*top: -50%;
}
/* gloss effect */
.fc-state-default .fc-button-effect {
display: none;
}
/* Global Event Styles
------------------------------------------------------------------------*/
.fc-event {
font-size: .85em;
cursor: default;
background: url(../../images/blacktrans1.png) !important; /* default BACKGROUND color */
}
a.fc-event,
.fc-event-draggable {
cursor: pointer;
}
a.fc-event {
text-decoration: none;
}
.fc-rtl .fc-event {
text-align: right;
}
.fc-event-skin {
color: #fff; /* default TEXT color */
border: 0;
}
.fc-event-inner {
position: relative;
width: 100%;
height: 100%;
border-style: solid;
border-width: 0;
overflow: hidden;
}
.fc-event-time,
.fc-event-title {
padding: 0 5px;
display: inline-block;
}
.fc .ui-resizable-handle { /*** TODO: don't use ui-resizable anymore, change class ***/
display: block;
position: absolute;
z-index: 99999;
overflow: hidden; /* hacky spaces (IE6/7) */
font-size: 300%; /* */
line-height: 50%; /* */
}
/* Horizontal Events
------------------------------------------------------------------------*/
.fc-event-hori {
border-width: 1px 0;
margin-bottom: 1px;
}
/* resizable */
.fc-event-hori .ui-resizable-e {
top: 0 !important; /* importants override pre jquery ui 1.7 styles */
right: -3px !important;
width: 7px !important;
height: 100% !important;
cursor: e-resize;
}
.fc-event-hori .ui-resizable-w {
top: 0 !important;
left: -3px !important;
width: 7px !important;
height: 100% !important;
cursor: w-resize;
}
.fc-event-hori .ui-resizable-handle {
_padding-bottom: 14px; /* IE6 had 0 height */
}
/* Fake Rounded Corners (for buttons and events)
------------------------------------------------------------*/
.fc-corner-left {
margin-left: 1px;
}
.fc-corner-left .fc-button-inner,
.fc-corner-left .fc-event-inner {
margin-left: -1px;
}
.fc-corner-right {
margin-right: 1px;
}
.fc-corner-right .fc-button-inner,
.fc-corner-right .fc-event-inner {
margin-right: -1px;
}
.fc-corner-top {
margin-top: 1px;
}
.fc-corner-top .fc-event-inner {
margin-top: -1px;
}
.fc-corner-bottom {
margin-bottom: 1px;
}
.fc-corner-bottom .fc-event-inner {
margin-bottom: -1px;
}
/* Fake Rounded Corners SPECIFICALLY FOR EVENTS
-----------------------------------------------------------------*/
.fc-corner-left .fc-event-inner {
border-left-width: 1px;
}
.fc-corner-right .fc-event-inner {
border-right-width: 1px;
}
.fc-corner-top .fc-event-inner {
border-top-width: 1px;
}
.fc-corner-bottom .fc-event-inner {
border-bottom-width: 1px;
}
/* Reusable Separate-border Table
------------------------------------------------------------*/
table.fc-border-separate {
border-collapse: separate;
}
.fc-border-separate th { text-transform: uppercase; font-weight: normal; background: url(../../images/thead.png) repeat-x top left; }
.fc-border-separate th,
.fc-border-separate td {
border-width: 1px 0 0 1px;
padding: 5px;
}
.fc-border-separate th.fc-last,
.fc-border-separate td.fc-last {
border-right-width: 1px;
}
.fc-border-separate tr.fc-last th,
.fc-border-separate tr.fc-last td {
border-bottom-width: 1px;
}
.fc-border-separate tbody tr.fc-first td,
.fc-border-separate tbody tr.fc-first th {
border-top-width: 0;
}
/* Month View, Basic Week View, Basic Day View
------------------------------------------------------------------------*/
.fc-grid th {
text-align: center;
}
.fc-grid .fc-day-number {
float: right;
padding: 0 2px;
}
.fc-grid .fc-other-month .fc-day-number {
opacity: 0.3;
filter: alpha(opacity=30); /* for IE */
/* opacity with small font can sometimes look too faded
might want to set the 'color' property instead
making day-numbers bold also fixes the problem */
}
.fc-grid .fc-day-content {
clear: both;
padding: 2px 2px 1px; /* distance between events and day edges */
}
/* event styles */
.fc-grid .fc-event-time {
font-weight: bold;
}
/* right-to-left */
.fc-rtl .fc-grid .fc-day-number {
float: left;
}
.fc-rtl .fc-grid .fc-event-time {
float: right;
}
/* Agenda Week View, Agenda Day View
------------------------------------------------------------------------*/
.fc-agenda table {
border-collapse: separate;
}
.fc-agenda-days th {
text-align: center;
}
.fc-agenda .fc-agenda-axis {
width: 50px;
padding: 0 4px;
vertical-align: middle;
text-align: right;
white-space: nowrap;
font-weight: normal;
}
.fc-agenda .fc-day-content {
padding: 2px 2px 1px;
}
/* make axis border take precedence */
.fc-agenda-days .fc-agenda-axis {
border-right-width: 1px;
}
.fc-agenda-days .fc-col0 {
border-left-width: 0;
}
/* all-day area */
.fc-agenda-allday th {
border-width: 0 1px;
}
.fc-agenda-allday .fc-day-content {
min-height: 34px; /* TODO: doesnt work well in quirksmode */
_height: 34px;
}
/* divider (between all-day and slots) */
.fc-agenda-divider-inner {
height: 2px;
overflow: hidden;
}
.fc-widget-header .fc-agenda-divider-inner {
background: #eee;
}
/* slot rows */
.fc-agenda-slots th {
border-width: 1px 1px 0;
}
.fc-agenda-slots td {
border-width: 1px 0 0;
background: none;
}
.fc-agenda-slots td div {
height: 20px;
}
.fc-agenda-slots tr.fc-slot0 th,
.fc-agenda-slots tr.fc-slot0 td {
border-top-width: 0;
}
.fc-agenda-slots tr.fc-minor th,
.fc-agenda-slots tr.fc-minor td {
border-top-style: dotted;
}
.fc-agenda-slots tr.fc-minor th.ui-widget-header {
*border-top-style: solid; /* doesn't work with background in IE6/7 */
}
/* Vertical Events
------------------------------------------------------------------------*/
.fc-event-vert {
border-width: 0 1px;
}
.fc-event-vert .fc-event-head,
.fc-event-vert .fc-event-content {
position: relative;
z-index: 2;
width: 100%;
overflow: hidden;
}
.fc-event-vert .fc-event-time {
white-space: nowrap;
font-size: 10px;
}
.fc-event-vert .fc-event-bg { /* makes the event lighter w/ a semi-transparent overlay */
position: absolute;
z-index: 1;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #fff;
opacity: .3;
filter: alpha(opacity=30);
}
.fc .ui-draggable-dragging .fc-event-bg, /* TODO: something nicer like .fc-opacity */
.fc-select-helper .fc-event-bg {
display: none\9; /* for IE6/7/8. nested opacity filters while dragging don't work */
}
/* resizable */
.fc-event-vert .ui-resizable-s {
bottom: 0 !important; /* importants override pre jquery ui 1.7 styles */
width: 100% !important;
height: 8px !important;
overflow: hidden !important;
line-height: 8px !important;
font-size: 11px !important;
font-family: monospace;
text-align: center;
cursor: s-resize;
}
.fc-agenda .ui-resizable-resizing { /* TODO: better selector */
_overflow: hidden;
}
/** custom **/
.fc-button { border: 1px solid #ccc; height: 30px; display: inline-block; background: url(../../images/buttonbg6.png) repeat-x 0 -30px; }
.fc-button-prev { width: 30px; background: url(../../images/prevnext.png) no-repeat 0 -30px; }
.fc-button-next { width: 30px; background: url(../../images/prevnext.png) no-repeat -30px -30px; }
.fc-button-prev:active { background-position: 0 0; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }
.fc-button-next:active { background-position: -30px 0; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }
.fc-button-month .fc-button-content, .fc-button-agendaWeek .fc-button-content,
.fc-button-agendaDay .fc-button-content, .fc-button-today .fc-button-content { display: block; padding: 3px 10px; }
.fc-button-today { margin-left: 10px; }
.fc-button-prev:hover, .fc-button-next:hover, .fc-button-month:hover,
.fc-button-agendaWeek:hover, .fc-button-agendaDay:hover,
.fc-button-today:hover { -moz-box-shadow: 0 0 1px #849ebd; -webkit-box-shadow: 0 0 1px #849ebd; box-shadow: 0 0 1px #849ebd; }
.fc-button-month:active,
.fc-button-agendaWeek:active, .fc-button-agendaDay:active,
.fc-button-today:active { background-position: 0 0; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }

View File

@ -0,0 +1,71 @@
#popup_container {
font-family: DroidSansRegular, Arial, sans-serif;
font-size: 12px;
min-width: 300px; /* Dialog will be no smaller than this */
max-width: 600px; /* Dialog will wrap after this width */
background: url(../../images/blacktrans1.png);
padding: 5px !important;
color: #666;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
#popup_title {
font-size: 14px;
line-height: 21px;
font-weight: normal;
color: #333;
background: #eee url(../../images/thead.png) repeat-x top left;
border-bottom: solid 1px #ccc;
cursor: default;
padding: 10px;
margin: 0em;
}
#popup_content {
/*background: 16px 16px no-repeat url(../../images/info.gif);*/
padding: 10px;
margin: 0em;
background: #fcfcfc;
}
/*
#popup_content.alert {
background-image: url(../../images/info.gif);
}
#popup_content.confirm {
background-image: url(../../images/important.gif);
}
#popup_content.prompt {
background-image: url(../../images/help.gif);
}
#popup_message {
padding-left: 48px;
}*/
#popup_panel {
text-align: center;
margin: 1em 0em 0em 1em;
}
#popup_prompt {
margin: .5em 0em;
}
#popup_overlay { background: #000 !important; opacity: 0.5 !important; }
#popup_ok, #popup_cancel { padding: 5px 15px; font-size: 12px; display: inline-block; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
#popup_ok, #popup_cancel { -moz-box-shadow: 1px 1px 2px #eee; -webkit-box-shadow: 1px 1px 2px #eee; box-shadow: 1px 1px 2px #eee; cursor: pointer; }
#popup_ok:hover, #popup_ok:active, #popup_cancel:hover, #popup_cancel:active { background-position: 0 -39px; }
#popup_ok { border: 1px solid #39537f; background: #eee url(../../images/buttons/button_blue.png) repeat-x top left; text-shadow: 1px 1px #39537f; color: #fff; }
#popup_ok:active { -moz-box-shadow: inset 2px 2px 2px #12274c; -webkit-box-shadow: inset 2px 2px 2px #12274c; box-shadow: inset 2px 2px 2px #12274c; }
#popup_cancel { border: 1px solid #ccc; background: #eee url(../../images/buttons/button_white.png) repeat-x top left; text-shadow: 1px 1px #f7f7f7; color: #333; }
#popup_cancel:active { -moz-box-shadow: inset 2px 2px 2px #ccc; -webkit-box-shadow: inset 2px 2px 2px #ccc; box-shadow: inset 2px 2px 2px #ccc; }
#popup_prompt { width: 270px !important; }

View File

@ -0,0 +1,141 @@
div.jGrowl {
z-index: 9999;
color: #fff;
font-size: 12px;
}
/** Special IE6 Style Positioning **/
div.ie6 {
position: absolute;
}
div.ie6.top-right {
right: auto;
bottom: auto;
left: expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}
div.ie6.top-left {
left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}
div.ie6.bottom-right {
left: expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
top: expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}
div.ie6.bottom-left {
left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
top: expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}
div.ie6.center {
left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
width: 100%;
}
/** Normal Style Positions **/
div.jGrowl {
position: absolute;
}
body > div.jGrowl {
position: fixed;
}
div.jGrowl.top-left {
left: 0px;
top: 0px;
}
div.jGrowl.top-right {
right: 0px;
top: 0px;
}
div.jGrowl.customtop-right {
right: 0;
top: 100px;
}
div.jGrowl.bottom-left {
left: 0px;
bottom: 0px;
}
div.jGrowl.bottom-right {
right: 0px;
bottom: 0px;
}
div.jGrowl.center {
top: 0px;
width: 50%;
left: 25%;
}
/** Cross Browser Styling **/
div.center div.jGrowl-notification, div.center div.jGrowl-closer {
margin-left: auto;
margin-right: auto;
}
div.jGrowl div.jGrowl-notification, div.jGrowl div.jGrowl-closer {
background-color: #000;
opacity: .85;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
zoom: 1;
width: 235px;
padding: 10px;
margin-top: 5px;
margin-bottom: 5px;
font-family: Tahoma, Arial, Helvetica, sans-serif;
font-size: 1em;
text-align: left;
display: none;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
}
div.jGrowl div.jGrowl-notification {
min-height: 40px;
}
div.jGrowl div.jGrowl-notification,
div.jGrowl div.jGrowl-closer {
margin: 10px;
}
div.jGrowl div.jGrowl-notification div.jGrowl-header {
font-weight: bold;
font-size: .85em;
}
div.jGrowl div.jGrowl-notification div.jGrowl-close {
z-index: 99;
float: right;
font-weight: bold;
font-size: 1em;
cursor: pointer;
}
div.jGrowl div.jGrowl-closer {
padding-top: 4px;
padding-bottom: 4px;
cursor: pointer;
font-size: .9em;
font-weight: bold;
text-align: center;
}
/** Hide jGrowl when printing **/
@media print {
div.jGrowl {
display: none;
}
}

View File

@ -0,0 +1,95 @@
/** DATE PICKER **/
.ui-datepicker { background: url(../../images/blacktrans.png); -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px;}
.ui-datepicker { z-index: 100 !important; display: none; padding: 5px; }
.ui-datepicker-header { position: relative; text-align: center; background: url(../../images/blacktrans1.png); padding: 5px; color: #fff; }
.ui-datepicker-calendar { border-collapse: collapse; border: 1px solid #ccc; border-top: 0; }
.ui-datepicker-calendar thead th { font-weight: normal; font-size: 10px; text-transform: uppercase; color: #666; }
.ui-datepicker-calendar thead th { background: url(../../images/thead.png) repeat-x top left; border-bottom: 1px solid #ccc; }
.ui-datepicker-calendar td { border-left: 1px solid #ccc; border-top: 1px solid #ccc; text-align: right; }
.ui-datepicker-calendar td { padding: 1px; background: url(../../images/thead.png) repeat-x top left; }
.ui-datepicker-calendar td a { display: block; padding: 2px 8px; color: #666; text-shadow: 1px 1px #f7f7f7; }
.ui-datepicker-calendar td a:hover { background: #c8d9ed; text-decoration: none; color: #333; }
.ui-datepicker-calendar td:first-child { border-left: 1px solid #ccc; }
.ui-datepicker-prev, .ui-datepicker-next { display: inline-block; width: 14px; height: 14px; }
.ui-datepicker-prev span, .ui-datepicker-next span { display: none; }
.ui-datepicker-prev { position: absolute; top: 9px; left: 5px; background: url(../../images/icons/calarrow.png) no-repeat 3px -39px; }
.ui-datepicker-next { position: absolute; top: 9px; right: 5px; background: url(../../images/icons/calarrow.png) no-repeat 3px 1px; }
/** TABS **/
.ui-tabs { border: 1px solid #ccc; background: #fcfcfc; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
.ui-tabs { -moz-box-shadow: 1px 1px 2px #ddd; -webkit-box-shadow: 1px 1px 2px #ddd; box-shadow: 1px 1px 2px #ddd; }
.ui-tabs-nav { list-style: none; background: #eee url(../../images/thead.png) repeat-x top left; border-bottom: 1px solid #ccc; }
.ui-tabs-nav { position: relative; height: 41px; -moz-border-radius: 3px 3px 0 0; -webkit-border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0; }
.ui-tabs-nav li { display: inline-block; float: left; }
.ui-tabs-nav li:first-child a { -moz-border-radius: 3px 0 0 0; -webkit-border-radius: 3px 0 0 0; border-radius: 3px 0 0 0; }
.ui-tabs-nav li a { display: block; padding: 10px 20px; background: #eee; color: #333; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc; }
.ui-tabs-nav li a:hover { text-decoration: none; background: #e7e7e7; }
.ui-tabs-nav li.ui-state-active a { background: #fcfcfc; color: #069; border-bottom: 1px solid #fcfcfc; }
.ui-tabs-hide { display: none; }
.ui-tabs-panel { padding: 15px; }
/*
.tabs2 { border: 0; }
.tabs2 .ui-tabs-nav { padding: 5px 0 0 5px; border: 1px solid #6082AD; background: #688AB5 url(../../images/titlebg.png) repeat-x top left; }
.tabs2 .ui-tabs-nav li:last-child a { -moz-border-radius: 0 3px 0 0; -webkit-border-radius: 0 3px 0 0; border-radius: 0 3px 0 0; }
.tabs2 .ui-tabs-panel { border: 1px solid #ccc; border-top: 0; }
.tabs2 .ui-tabs-nav li a { background: #a8c0df; border: 0; color: #fff; margin-right: 1px; }
.tabs2 .ui-tabs-nav li.ui-state-active a { background: #fcfcfc; color: #688AB5; border-bottom: 1px solid #fcfcfc; }
*/
/** ACCORDION **/
.accordion { border: 1px solid #ccc; background: #fcfcfc; overflow: hidden; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
.accordion { -moz-box-shadow: 1px 1px 3px #ddd; -webkit-box-shadow: 1px 1px 3px #ddd; box-shadow: 1px 1px 3px #ddd; }
.ui-accordion-header { background: #eee url(../../images/thead.png) repeat-x top left; border-top: 1px solid #ccc; position: relative; }
.ui-accordion-header { font-size: 12px; text-shadow: 1px 1px #f7f7f7; text-transform: uppercase; font-weight: normal; cursor: pointer; }
.ui-accordion-header:first-child { border-top: 0; }
.ui-accordion-header a { color: #333; padding: 10px; display: block; }
.ui-accordion-header a:hover { color: #069; text-decoration: none; }
.ui-accordion-content { padding: 10px; border-top: 1px solid #ccc; color: #666; overflow: hidden; }
.ui-accordion-header .ui-icon { position: absolute; display: inline-block; background: url(../../images/arrow.png) no-repeat 0 0; top: 18px; right: 10px; width: 10px; height: 10px; }
.ui-state-active .ui-icon { position: absolute; display: inline-block; background: url(../../images/arrow.png) no-repeat 0 -45px; top: 18px; right: 10px; width: 10px; height: 5px; }
/** SLIDER **/
.ui-slider { border: 1px solid #ccc; background: #eee; position: relative; margin: 10px 0; }
.ui-slider { -moz-box-shadow: inset 1px 1px 2px #ccc; -webit-box-shadow: inset 1px 1px 2px #ccc; box-shadow: inset 1px 1px 2px #ccc; }
.ui-slider { -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; }
.ui-slider a { display: inline-block; z-index: 2; }
.ui-slider-range { -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; }
.ui-slider-horizontal { display: block; height: 4px; }
.ui-slider-horizontal a { position: absolute; top: -4px; }
.ui-slider-horizontal a { width: 15px; height: 12px; background: url(../../images/icons/hbutton.png) no-repeat 0 0; }
.ui-slider-horizontal a.ui-slider-handle { margin-left: -8px; }
.ui-slider-horizontal a.ui-state-active { -moz-box-shadow: 0 0 2px #09f; -webkit-box-shadow: 0 0 2px #09f; box-shadow: 0 0 2px #09f; }
.ui-slider-horizontal .ui-slider-range { background: #39f; height: 5px; position: absolute; }
.ui-slider-horizontal .ui-slider-range { -moz-box-shadow: inset 1px 1px 2px #069; -webkit-box-shadow: inset 1px 1px 2px #069; box-shadow: inset 1px 1px 2px #069; }
.ui-slider-horizontal .ui-slider-range-max { right: 0; }
.ui-slider-vertical { width: 5px; }
.ui-slider-vertical a { position: absolute; left: -3px; }
.ui-slider-vertical a { width: 11px; height: 15px; background: url(../../images/icons/vbutton.png) no-repeat 0 0; }
.ui-slider-vertical a.ui-slider-handle { margin-bottom: -8px; }
.ui-slider-vertical a.ui-state-active { -moz-box-shadow: 0 0 2px #09f; -webkit-box-shadow: 0 0 2px #09f; box-shadow: 0 0 2px #09f; }
.ui-slider-vertical .ui-slider-range { background: #39f; width: 7px; position: absolute; left: -1px; }
.ui-slider-vertical .ui-slider-range { -moz-box-shadow: inset 1px 1px 2px #069; -webkit-box-shadow: inset 1px 1px 2px #069; box-shadow: inset 1px 1px 2px #069; }
.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
.ui-slider-vertical .ui-slider-range-max { right: 0; }
/**DIALOG**/
.ui-dialog { background: url(../../images/blacktrans1.png); padding: 5px; }
.ui-dialog { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; position: relative; }
.ui-dialog-titlebar { padding: 8px 10px; color: #fff; background: #eee url(../../images/thead.png) repeat-x top left; border-bottom: 1px solid #ccc; }
.ui-dialog-content { background: #fff; padding: 10px; }
.ui-dialog-titlebar { color: #069; font-weight: bold; }
.ui-dialog-titlebar-close { position: absolute; top: 12px; right: 15px; font-size: 11px; font-weight: normal; color: #666; }
.ui-dialog-titlebar-close:hover { text-decoration: none; color: #333; }
.ui-dialog .wysiwyg legend { position: absolute; top: 13px; left: 15px; font-size: 11px; text-transform: uppercase; }
.ui-dialog .wysiwyg p { margin: 8px 0; }
.ui-dialog .wysiwyg input.submit { background: url(../../images/buttonbg3.png) repeat-x top left; border: 1px solid #314a78; color: #fff; font-size: 11px; }
.ui-dialog .wysiwyg input.reset { background: url(../../images/thead.png) repeat-x top left; border: 1px solid #bbb; color: #333; font-size: 11px; }
.ui-dialog .wysiwyg label { float: left; width: 100px; }

View File

@ -0,0 +1,96 @@
div.wysiwyg { background: #f7f7f7; }
div.wysiwyg * { margin: 0; padding: 0; }
div.wysiwyg ul.toolbar li.jwysiwyg-custom-command { overflow: hidden; }
div.wysiwyg ul.toolbar { border-bottom: 1px solid #ccc; float: left; width: 100%; padding: 10px; background: #eee url(../../images/thead.png) repeat-x top left; }
div.wysiwyg ul.toolbar li { list-style: none; float: left; margin: 1px 2px 3px 0; background: rgb(240, 240, 240); -moz-user-select: none; -webkit-user-select: none; user-select: none; clear: none; padding: 0 }
div.wysiwyg ul.toolbar li.separator { width: 1px; height: 16px; margin: 0 4px; border-left: 1px solid #ccc; }
div.wysiwyg ul.toolbar li { text-indent: -5000px; opacity: 0.85; filter: alpha(opacity=85); display: block; width: 16px; height: 16px; background: url('../../images/jquery.wysiwyg.gif') no-repeat -64px -80px; border: 1px dotted rgb(240, 240, 240); cursor: pointer; margin: 0px; }
div.wysiwyg ul.toolbar li.wysiwyg-button-hover, div.wysiwyg ul.toolbar li.active { opacity: 1.00; filter:alpha(opacity=100); border: 1px solid #ccc; background-color: #fcfcfc; }
div.wysiwyg ul.toolbar li.active { background-color: #c8d9ed; border: 1px solid #86aad4; margin: 0; }
div.wysiwyg ul.toolbar li.disabled, div.wysiwyg ul.toolbar li.wysiwyg-button-hover.disabled, div.wysiwyg ul.toolbar li.active.disabled { opacity: 0.5; filter:alpha(opacity=50); border: 0px none transparent; padding: 1px; cursor: auto; }
div.wysiwyg ul.toolbar li.bold { background-position: 0 -16px; }
div.wysiwyg ul.toolbar li.italic { background-position: -16px -16px; }
div.wysiwyg ul.toolbar li.strikeThrough { background-position: -32px -16px; }
div.wysiwyg ul.toolbar li.underline { background-position: -48px -16px; }
div.wysiwyg ul.toolbar li.highlight { background-position: -48px -96px; }
div.wysiwyg ul.toolbar li.justifyLeft { background-position: 0 0; }
div.wysiwyg ul.toolbar li.justifyCenter { background-position: -16px 0; }
div.wysiwyg ul.toolbar li.justifyRight { background-position: -32px 0; }
div.wysiwyg ul.toolbar li.justifyFull { background-position: -48px 0; }
div.wysiwyg ul.toolbar li.indent { background-position: -64px 0; }
div.wysiwyg ul.toolbar li.outdent { background-position: -80px 0; }
div.wysiwyg ul.toolbar li.subscript { background-position: -64px -16px; }
div.wysiwyg ul.toolbar li.superscript { background-position: -80px -16px; }
div.wysiwyg ul.toolbar li.undo { background-position: 0 -64px; }
div.wysiwyg ul.toolbar li.redo { background-position: -16px -64px; }
div.wysiwyg ul.toolbar li.insertOrderedList { background-position: -32px -48px; }
div.wysiwyg ul.toolbar li.insertUnorderedList { background-position: -16px -48px; }
div.wysiwyg ul.toolbar li.insertHorizontalRule { background-position: 0 -48px; }
div.wysiwyg ul.toolbar li.h1 { background-position: 0 -32px; }
div.wysiwyg ul.toolbar li.h2 { background-position: -16px -32px; }
div.wysiwyg ul.toolbar li.h3 { background-position: -32px -32px; }
div.wysiwyg ul.toolbar li.h4 { background-position: -48px -32px; }
div.wysiwyg ul.toolbar li.h5 { background-position: -64px -32px; }
div.wysiwyg ul.toolbar li.h6 { background-position: -80px -32px; }
div.wysiwyg ul.toolbar li.paragraph { background-position: 0px -96px; }
div.wysiwyg ul.toolbar li.colorpicker { background-position: -16px -96px; }
div.wysiwyg ul.toolbar li.fullscreen { background-position: -32px -96px; }
div.wysiwyg ul.toolbar li.cut { background-position: -32px -64px; }
div.wysiwyg ul.toolbar li.copy { background-position: -48px -64px; }
div.wysiwyg ul.toolbar li.paste { background-position: -64px -64px; }
div.wysiwyg ul.toolbar li.insertTable { background-position: -64px -48px; }
div.wysiwyg ul.toolbar li.increaseFontSize { background-position: -16px -80px; }
div.wysiwyg ul.toolbar li.decreaseFontSize { background-position: -32px -80px; }
div.wysiwyg ul.toolbar li.createLink { background-position: -80px -48px; }
div.wysiwyg ul.toolbar li.insertImage { background-position: -80px -80px; }
div.wysiwyg ul.toolbar li.html { background-position: -48px -48px; }
div.wysiwyg ul.toolbar li.removeFormat { background-position: -80px -64px; }
div.wysiwyg ul.toolbar li.empty { background-position: -64px -80px; }
div.wysiwyg ul.toolbar li.code { background-position: -64px -96px; }
div.wysiwyg ul.toolbar li.cssWrap { background-position: -80px -96px; }
div.wysiwyg-dialogRow { float:left; width:100%; font-size: 16px; }
div.wysiwyg iframe { clear: left;
background-color:#f7f7f7; padding:0; margin:5px; display:block; width: 90%; }
/* dialog */
.wysiwyg-dialog { position:fixed; top:50px; left:50px; width:450px; height:300px; background:transparent; font:12px "Helvetic Neue", Helvetica,Arial,sans-serif; }
.wysiwyg-dialog .wysiwyg-dialog-topbar { background:#333; color:white; padding: 7px 10px; position:relative; }
.wysiwyg-dialog .wysiwyg-dialog-topbar { -moz-border-radius: 3px 3px 0 0; -webkit-border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0; }
.wysiwyg-dialog .wysiwyg-dialog-topbar .wysiwyg-dialog-close-wrapper .wysiwyg-dialog-close-button { color:white; text-decoration:none; display:block; padding:2px 2px; position:absolute; right:12px; top:50%; font-size: 10px; paddding: 0 5px; margin-top:-12px; }
.wysiwyg-dialog .wysiwyg-dialog-topbar .wysiwyg-dialog-close-wrapper a.wysiwyg-dialog-close-button:hover { background:#666; }
.wysiwyg-dialog .wysiwyg-dialog-topbar .wysiwyg-dialog-title { font-size:12px; font-weight:bold; padding:5px; }
.wysiwyg-dialog .wysiwyg-dialog-content { padding:10px; background:#fcfcfc; -moz-border-radius: 0 0 3px 3px; -webkit-border-radius: 0 0 3px 3px; border-radius: 0 0 3px 3px; }
.wysiwyg-dialog-modal-div { position:absolute; top:0px; left:0px; width:100%; height:100%; background-color:rgb(255,255,255); background-color:rgba(0,0,0,0.5); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000); -ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";}
.wysiwyg-dialog-content form.wysiwyg fieldset { }
.wysiwyg-dialog-content form.wysiwyg legend { padding:7px; }
.wysiwyg-dialog-content form.wysiwyg .form-row { clear:both; padding:4px 0; }
.wysiwyg-dialog-content form.wysiwyg .form-row label, .wysiwyg-dialog form.wysiwyg .form-row .form-row-key { display:block; float:left; width:35%; text-align:right; padding:4px 5px; }
.wysiwyg-dialog-content form.wysiwyg .form-row .form-row-value { display:block; float:left; width:55%; }
.wysiwyg-dialog-content form.wysiwyg .form-row .form-row-value input { padding: 7px 10px; }
.wysiwyg-dialog-content form.wysiwyg .form-row input.width-auto { width:auto; }
.wysiwyg-dialog-content form.wysiwyg input.width-small { width:50px; min-width:50px; max-width:50px; }
.wysiwyg-dialog-content form.wysiwyg input, .wysiwyg-dialog form.wysiwyg select { padding:2px; width:100%; margin:2px; }
.wysiwyg-dialog-content form.wysiwyg input[type=submit], .wysiwyg-dialog form.wysiwyg input[type=reset] { padding:2px 7px; width:auto; }
.wysiwyg-dialog-content input.submit { background: url(../../images/buttonbg3.png) repeat-x top left; border: 1px solid #314a78; color: #fff; }
.wysiwyg-dialog-content input.reset { background: url(../../images/thead.png) repeat-x top left; border: 1px solid #bbb; color: #333; }
.wysiwyg-dialog-content label { float: left; width: 120px; }

View File

@ -0,0 +1,602 @@
/***
* Created by: Mienard Lumaad
* Date: Nov 26, 2011
* Website: http://themepixels.com/
***/
@import url('plugins/colorbox.css');
@import url('plugins/colorpicker.css');
@import url('plugins/jquery.ui.css');
@import url('plugins/jquery.jgrowl.css');
@import url('plugins/jquery.alerts.css');
@import url('plugins/fullcalendar.css');
@import url('custom.css');
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: transparent;
border: 0;
margin: 0;
padding: 0;
vertical-align: baseline;
}
/***@FONT FACE***/
@font-face {
font-family: 'DroidSansRegular';
src: url('../fonts/droidsans-webfont.eot');
src: url('../fonts/droidsans-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/droidsans-webfont.woff') format('woff'),
url('../fonts/droidsans-webfont.ttf') format('truetype'),
url('../fonts/droidsans-webfont.svg#DroidSansRegular') format('svg');
font-weight: normal;
font-style: normal;
}
/***GENERAL STYLES***/
body { font-family: DroidSansRegular, "Segoe UI", "Lucida Sans Unicode", "Lucida Grande", sans-serif; font-size: 12px; }
body { background: #333 url(../images/texturebg.png); line-height: 21px; }
input, select, textarea, button { outline: none; font-family: DroidSansRegular, "Lucida Sans Unicode", "Lucida Grande", sans-serif; font-size: 12px; }
input, select, textarea, button { border: 1px solid #ccc; padding: 5px; }
a { text-decoration: none; outline: none; color: #069; }
a:hover { text-decoration: underline; }
button { margin: 0; outline: 0; }
small { font-size: 11px; line-height: 12px; }
.bodywhite { background: #fff; }
.bodygrey { background: #eee url(../images/leftbg.png) repeat-y top left; }
.page404 { background: #eee; }
h1.prize { font-size: 28px; color: #000; font-family: Arial, Helvetica, sans-serif; margin-bottom: 5px; }
h2.prize { font-size: 20px; color: #000; font-family: Arial, Helvetica, sans-serif; margin-bottom: 5px; }
/***NOTIFICATION MESSAGES (login.html, dashboard.html)***/
.notification { padding: 10px 10px 10px 45px; margin: 0 0 20px 0; -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; position: relative; }
.notification .close { position: absolute; right: 5px; top: 5px; display: inline-block; width: 8px; height: 8px; cursor: pointer; }
.notification .close { background: url(../images/icons/close.png) no-repeat 0 0; -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; }
.notifyError { border: 1px solid #ff0000; background: #FFECEC; color: #ff0000; font-size: 11px; }
.notification ul { margin: 0 0 0 15px;}
.msgalert { border: 1px solid #eac572; background: #ffe9ad url(../images/icons/warning.png) no-repeat 10px 10px; }
.msginfo { border: 1px solid #99c4ea; background: #d1e4f3 url(../images/icons/info.png) no-repeat 10px 10px; }
.msgsuccess { border: 1px solid #c1d779; background: #effeb9 url(../images/icons/success.png) no-repeat 10px 10px; }
.msgerror { border: 1px solid #e18b7c; background: #fad5cf url(../images/icons/error.png) no-repeat 10px 10px;}
/***LOGIN PAGE (index.html)***/
.loginlogo { width: 279px; height: 50px; margin: 80px auto 20px auto; padding: 75px 50px; }
.loginbox { width: 580px; height: 62px; margin: 10px auto; background: url(../images/loginbox.png) no-repeat right -62px; padding-right: 11px; }
.loginbox_inner { background: url(../images/loginbox.png) no-repeat 0 0; height: 62px; padding-left: 11px; }
.loginbox_content { background: url(../images/loginbox.png) repeat-x 0 -124px; height: 62px; overflow: hidden; padding: 15px 2px; }
.loginbox .username { border: 0; background: #eee url(../images/usernamefield.png) no-repeat; background-position: top left; width: 190px; margin-right: 10px; }
.loginbox .username { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; padding: 7px 5px 6px 40px; display: inline-block; font-size: 14px; }
.loginbox .username:focus { background-color: #fff; background-position: 0 -32px; }
.loginbox .password { border: 0; background: #eee url(../images/passwordfield.png) no-repeat; background-position: top left; width: 190px; margin-right: 10px; }
.loginbox .password { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; padding: 7px 5px 6px 40px; display: inline-block; font-size: 14px; }
.loginbox .password:focus { background-color: #fff; background-position: 0 -32px; }
.loginbox button { background: #4b6592 url(../images/buttonbg.png) repeat-x top left; font-size: 13px; padding: 6px 14px; width: 67px; font-weight: bold;}
.loginbox button { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; cursor: pointer; color: #fff; text-shadow: 1px 1px #333; border: 0; }
.loginbox button:active { -moz-box-shadow: inset 1px 1px 2px #000; -webkit-box-shadow: inset 1px 1px 2px #000; box-shadow: inset 1px 1px 2px #000;}
.loginbox button:hover { background: #364f7e url(../images/buttonbg.png) repeat-x 0 -34px; }
.loginoption { width: 570px; margin: 10px auto; background: url(../images/blacktrans.png); padding: 7px 10px; font-size: 11px; color: #ccc; }
.loginoption { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
.loginoption input { margin: 0; padding: 0; vertical-align: middle; }
.loginoption a { float: right; font-size: 11px; color: #ccc; }
.loginNotify { padding: 7px; border: 0; width: 580px; margin: auto; background: url(../images/blacktrans.png); }
.loginNotify { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; text-align: center; }
/***TOP HEADER (all page)***/
.header, .topheader { min-width: 980px; }
.headerspace { height: 10px; background: #222; border-bottom: 1px solid #111; }
.topheader .msgicon { position: absolute; top: 7px; left: 8px; width: 15px; height: 15px; background-image: url(../images/icons/message.png); }
.topheader .infoicon { position: absolute; top: 7px; left: 8px; width: 14px; height: 15px; background-image: url(../images/icons/notification.png); }
.topheader .msgicon, .topheader .infoicon { background-repeat: no-repeat; background-position: 0 0; }
.topheader .thiconhover { background-position: 0 -15px !important; }
.topheader > ul { list-style: none; position: absolute; top: 10px; left: 287px; }
.topheader > ul > li { display: inline-block; float: left; margin-right: 8px; line-height: 14px; position: relative; }
.topheader > ul > li > a { font-size: 11px; color: #fff; padding-right: 4px; position: relative; }
.topheader > ul > li > a { display: inline-block; background: url(../images/headbutton.png) no-repeat right -29px; }
.topheader > ul > li > a .wrap { display: block; padding: 7px 11px 7px 26px; color: #fff; background: url(../images/headbutton.png) no-repeat 0 0; height: 15px; }
.topheader > ul > li > a .wrap span.count { padding: 1px 5px 0 5px; display: block; position: absolute; top: -3px; right: -3px; font-size: 10px; }
.topheader > ul > li > a .wrap span.count { background: #cc0000; color: #fff; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
.topheader > ul > li > a:hover { background-position: right -88px; text-decoration: none; }
.topheader > ul > li > a:hover .wrap { background-position: 0 -59px; }
.topheader > ul > li.note a .wrap { padding-right: 0; }
.dropbox { width: 250px; min-height: 100px; background: #fcfcfc; position: absolute; z-index: 5; }
.dropbox { top: 29px; left: -1px; border: 1px solid #333; border-top: 0; }
.dropbox { -moz-box-shadow: 3px 3px 2px #333; -webkit-box-shadow: 3px 3px 2px #333; box-shadow: 3px 3px 2px #333; }
.dropbox { -moz-border-radius: 0 3px 3px 3px; }
.showmsg { -moz-border-radius: 3px 3px 0 0; -webkit-border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0; }
.showmsg .wrap { -moz-border-radius: 0 0 0; -webkit-border-radius: 3px 0 0 0; border-radius: 3px 0 0 0; }
.showmsg, .showmsg .wrap { background: #fcfcfc !important; }
/***TOP HEADER: SEARCH (all page)***/
#search { position: absolute; top: 10px; left: 49px; }
#search input { color: #999; font-size: 11px; float: left; margin: 0; outline: 0; }
#search input { background: #333 url(../images/searchbar.png) no-repeat 0 0; border: 0; height: 25px; padding: 2px 3px 3px 75px; }
#search button { float: left; border: 0; margin: 0; background: #333 url(../images/searchicon.png) no-repeat 0 0; width: 27px; height: 30px; cursor: pointer; }
/***HEADER (all page)***/
.header { background: #333 url(../images/texturebg.png); padding: 20px 10px 11px 10px; position: relative; }
.header { border-top: 1px solid #444; border-bottom: 3px solid #272727; }
.accountinfo { position: absolute; right: 10px; top: 6px; background: url(../images/blacktrans.png); padding: 10px; overflow: hidden; line-height: 15px; }
.accountinfo { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
.accountinfo img { float: left; }
.accountinfo .info { float: left; margin-left: 10px; }
.accountinfo h3 { font-size: 12px; color: #fff; font-weight: normal; }
.accountinfo small { font-size: 11px; color: #999; }
.accountinfo p { margin-top: 5px; }
.accountinfo p a { font-size: 11px; color: #ccc; display: inline-block; color: #bbd0e8; }
.accountinfo p a:hover { text-decoration: underline; }
.accountinfo p a:first-child { margin-right: 5px; border-right: 1px solid #666; padding-right: 7px; }
/***TAB MENU (all page)***/
.tabmenu { line-height: 21px; position: absolute; top: 49px; left: 50px; }
.tabmenu ul { list-style: none; }
.tabmenu ul li { display: inline-block; float: left; position: relative; background: #4b6592 url(../images/tabmenubg.png) repeat-x top left; }
.tabmenu ul li:first-child { -moz-border-radius: 3px 0 0 0; -webkit-border-radius: 3px 0 0 0; border-radius: 3px 0 0 0; }
.tabmenu ul li:last-child { -moz-border-radius: 0 3px 0 0; -webkit-border-radius: 0 3px 0 0; border-radius: 0 3px 0 0; }
.tabmenu ul li a { display: inline-block; color: #fff; background: url(../images/separator.png) no-repeat right center; }
.tabmenu ul li a:hover { text-decoration: none; }
.tabmenu ul li:last-child a { background: none; }
.tabmenu ul li:hover { background: #37507f url(../images/tabmenubg.png) repeat-x 0 -68px; }
.tabmenu ul li a span { display: block; padding: 9px 15px 9px 40px; text-transform: uppercase; font-size: 12px; text-shadow: 1px 1px #224e82; }
.tabmenu ul li.current { background: #eee; text-shadow: 1px 1px #fff; }
.tabmenu ul li.current a { color: #333; background: none; }
.tabmenu ul li.current a span { text-shadow: 1px 1px #fcfcfc; }
.tabmenu ul li a.dashboard span { background: url(../images/icons/home.png) no-repeat 15px 12px; }
.tabmenu ul li.current a.dashboard span { background: url(../images/icons/home.png) no-repeat 15px 12px; }
.tabmenu ul li a.elements span { background: url(../images/icons/elements.png) no-repeat 15px 12px; }
.tabmenu ul li.current a.elements span { background: url(../images/icons/elements.png) no-repeat 15px -57px; }
.tabmenu ul li a.reports span { background: url(../images/icons/reports.png) no-repeat 15px 12px; }
.tabmenu ul li.current a.reports span { background: url(../images/icons/reports.png) no-repeat 15px -57px; }
.tabmenu ul li a.users span { background: url(../images/icons/users.png) no-repeat 15px 14px; }
.tabmenu ul li.current a.users span { background: url(../images/icons/users.png) no-repeat 15px -59px; }
.tabmenu ul li a.candidatos span { background: url(../images/icons/candidatos.png) no-repeat 15px 12px; }
.tabmenu ul li.current a.candidatos span { background: url(../images/icons/candidatos.png) no-repeat 15px -57px; }
.tabmenu ul li a.ofertas span { background: url(../images/icons/elements.png) no-repeat 15px 12px; }
.tabmenu ul li.current a.ofertas span { background: url(../images/icons/elements.png) no-repeat 15px -57px; }
.tabmenu ul li a.solicitudes span { background: url(../images/icons/elements.png) no-repeat 15px 12px; }
.tabmenu ul li.current a.solicitudes span { background: url(../images/icons/elements.png) no-repeat 15px -57px; }
.tabmenu ul li a.sistema span { background: url(../images/icons/dashboard.png) no-repeat 15px 12px; }
.tabmenu ul li.current a.sistema span { background: url(../images/icons/dashboard.png) no-repeat 15px 12px; }
.tabmenu ul li .subnav {
position: absolute; min-width: 200px; top: 39px; left: 0; display: none; z-index: 100; border: 1px solid #6785b0; border-bottom: 0; }
.tabmenu ul li .subnav li { display: block; float: none; background: none; }
.tabmenu ul li .subnav li a { display: block; background: #83a3ca; border-bottom: 1px solid #6785b0; color: #fff; }
.tabmenu ul li .subnav li:last-child a { background: #83a3ca; }
.tabmenu ul li .subnav li a:hover { background: #7293c1; color: #fff; }
.tabmenu ul li .subnav a span { padding: 5px 15px; text-transform: capitalize; text-shadow: 1px 1px #6785b0; }
.tabmenu ul li.current .subnav { border-color: #ccc; border-top: 0; }
.tabmenu ul li.current .subnav li a { background: #eee; border-bottom: 1px solid #ccc; color: #333; }
.tabmenu ul li.current .subnav li a:hover { background: #c8d9ed; }
.tabmenu ul li.current .subnav li a span { text-shadow: 1px 1px #f7f7f7; }
/***SIDEBAR (all page)***/
.sidebar { padding: 20px 0 20px 0; width: 50px; display: block; float: left; }
#accordion h3 { background: url(../images/arrow.png) no-repeat 10px 6px; padding-left: 30px; }
#accordion h3 { cursor: pointer; font-size: 12px; color: #333; text-transform: uppercase; }
#accordion h3.open { background: url(../images/arrow.png) no-repeat 10px -37px; }
#accordion .content { display: none; margin: 10px 0 20px 0; }
#accordion .content:last-child { padding: 0 15px; color: #333; }
.leftmenu { list-style: none; }
.leftmenu li { display: block; margin-bottom: 1px; }
.leftmenu li a { font-size: 12px; display: block; padding: 5px 0 5px 40px; color: #333; }
.leftmenu li a:hover { }
.leftmenu li.current a { background-color: #eee; border-right: 0; color: #333; border-top: 1px solid #a6c0de; border-bottom: 1px solid #a6c0de; }
.leftmenu li.current a:hover { text-decoration: none; }
.leftmenu li a.form { background-image: url(../images/icons/form.png); background-repeat: no-repeat; background-position: 15px center; }
.leftmenu li a.table { background-image: url(../images/icons/table.png); background-repeat: no-repeat; background-position: 15px center; }
.leftmenu li a.gallery { background-image: url(../images/icons/gallery.png); background-repeat: no-repeat; background-position: 15px center; }
.leftmenu li a.home { background-image: url(../images/icons/home.png); background-repeat: no-repeat; background-position: 15px center; }
.leftmenu li a.grid { background-image: url(../images/icons/grid.png); background-repeat: no-repeat; background-position: 15px center; }
.leftmenu li a.calendar { background-image: url(../images/icons/cal.png); background-repeat: no-repeat; background-position: 15px center; }
.leftmenu li a.buttons { background-image: url(../images/icons/buttons.png); background-repeat: no-repeat; background-position: 15px center; }
.leftmenu li a.editor { background-image: url(../images/icons/editor.png); background-repeat: no-repeat; background-position: 15px center; }
.leftmenu li a.file { background-image: url(../images/icons/file.png); background-repeat: no-repeat; background-position: 15px center; }
.leftmenu li a.error { background-image: url(../images/icons/404.png); background-repeat: no-repeat; background-position: 15px center; }
/***COLUMNS***/
.one_half{ width:48%; }
.one_third{ width:30.66%; }
.two_third{ width:65.33%; }
.one_fourth{ width:22%; }
.three_fourth{ width:74%; }
.one_fifth{ width:16.8%; }
.two_fifth{ width:37.6%; }
.three_fifth{ width:58.4%; }
.four_fifth{ width:67.2%; }
.one_sixth{ width:13.33%; }
.five_sixth{ width:82.67%; }
.one_half,.one_third,.two_third,.three_fourth,.one_fourth,.one_fifth,
.two_fifth,.three_fifth,.four_fifth,.one_sixth,.five_sixth{ position:relative; margin-right:4%; float:left; }
.last{ margin-right:0 !important; clear:right; }
/***MAIN CONTENT (dashboard.html)***/
.maincontent { margin-left: 50px; min-width: 1028px; position: relative; color: #333; }
.maincontent .left { padding: 20px 15px; overflow: hidden; }
.maincontent .right { padding: 20px 0; padding-right: 15px; overflow: hidden; }
.maincontent .right .widgetbox:last-child { margin-bottom: 0; border-bottom: 0; }
.maincontent_inner { width:68.33%; margin-right: 1%; }
.breadcrumbs { font-size: 11px; padding: 0 15px 0 30px; margin: 20px 15px 0 15px; border: 1px solid #ddd; }
.breadcrumbs { -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; background: #f7f7f7 url(../images/icons/homesmall.png) no-repeat 10px 9px; }
.breadcrumbs { -moz-box-shadow: 1px 1px 0 #f3f3f3; }
.breadcrumbs a { display: inline-block; color: #069; padding: 5px 20px 5px 0; }
.breadcrumbs a { background: url(../images/separator2.png) no-repeat right center; margin-right: 10px; }
.breadcrumbs a:hover { text-decoration: none; }
.breadcrumbs span { color: #666; }
.widgetlist { list-style: none; }
.widgetlist li { display: inline-block; float: left; width: 130px; margin: 0 10px 10px 0; }
.widgetlist li a { display: block; padding: 15px; border: 1px solid #ccc; color: #333; text-align: center; background: #f7f7f7; }
.widgetlist li a { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; -moz-box-shadow: 1px 1px 0 #fff; color: #069; }
.widgetlist li a span { font-size: 12px; display: block; margin-top: 10px; }
.widgetlist li a:hover { -moz-box-shadow: 0 0 4px #ddd; background: #fcfcfc; text-decoration: none; }
/***MAIN CONTENT: BUTTONS(elements.html)***/
button.button { padding: 7px 15px; font-size: 12px; display: inline-block; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
button.button { -moz-box-shadow: 1px 1px 2px #eee; -webkit-box-shadow: 1px 1px 2px #eee; box-shadow: 1px 1px 2px #eee; cursor: pointer; }
button.button:hover, .button:active { background-position: 0 -39px; }
.anchorbutton { padding: 7px 15px; font-size: 12px; display: inline-block; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
.anchorbutton { -moz-box-shadow: 1px 1px 2px #eee; -webkit-box-shadow: 1px 1px 2px #eee; box-shadow: 1px 1px 2px #eee; cursor: pointer; }
.anchorbutton:hover, .anchorbutton:active { background-position: 0 -39px; text-decoration: none; }
.button_white { border: 1px solid #ccc; background: #eee url(../images/buttons/button_white.png) repeat-x top left; text-shadow: 1px 1px #f7f7f7; color: #333; }
.button_white:active { -moz-box-shadow: inset 2px 2px 2px #ccc; -webkit-box-shadow: inset 2px 2px 2px #ccc; box-shadow: inset 2px 2px 2px #ccc; }
.button_blue { border: 1px solid #39537f; background: #eee url(../images/buttons/button_blue.png) repeat-x top left; text-shadow: 1px 1px #39537f; color: #fff; }
.button_blue:active { -moz-box-shadow: inset 2px 2px 2px #12274c; -webkit-box-shadow: inset 2px 2px 2px #12274c; box-shadow: inset 2px 2px 2px #12274c; }
.button_black { border: 1px solid #333; background: #333 url(../images/buttons/button_black.png) repeat-x top left; text-shadow: 1px 1px #333; color: #fff; }
.button_black:active { -moz-box-shadow: inset 2px 2px 2px #12274c; -webkit-box-shadow: inset 2px 2px 2px #12274c; box-shadow: inset 2px 2px 2px #12274c; }
.button_red { border: 1px solid #b22407; background: #333 url(../images/buttons/button_red.png) repeat-x top left; text-shadow: 1px 1px #b22407; color: #fff; }
.button_red:active { -moz-box-shadow: inset 2px 2px 2px #b22407; -webkit-box-shadow: inset 2px 2px 2px #b22407; box-shadow: inset 2px 2px 2px #b22407; }
.button_yellow { border: 1px solid #c67601; background: #333 url(../images/buttons/button_yellow.png) repeat-x top left; text-shadow: 1px 1px #c67601;color: #fff; }
.button_yellow:active { -moz-box-shadow: inset 2px 2px 2px #c67601; -webkit-box-shadow: inset 2px 2px 2px #c67601; box-shadow: inset 2px 2px 2px #c67601; }
.button_green { border: 1px solid #507e0c; background: #333 url(../images/buttons/button_green.png) repeat-x top left; text-shadow: 1px 1px #507e0c;color: #fff; }
.button_green:active { -moz-box-shadow: inset 2px 2px 2px #507e0c; -webkit-box-shadow: inset 2px 2px 2px #507e0c; box-shadow: inset 2px 2px 2px #507e0c; }
.button_brown { border: 1px solid #574128; background: #333 url(../images/buttons/button_brown.png) repeat-x top left; text-shadow: 1px 1px #574128; color: #fff; }
.button_brown:active { -moz-box-shadow: inset 2px 2px 2px #574128; -webkit-box-shadow: inset 2px 2px 2px #574128; box-shadow: inset 2px 2px 2px #574128; }
.button_lblue { border: 1px solid #7197bd; background: #333 url(../images/buttons/button_lblue.png) repeat-x top left; text-shadow: 1px 1px #fff; color: #2161a0; }
.button_lblue:active { -moz-box-shadow: inset 2px 2px 2px #7197bd; -webkit-box-shadow: inset 2px 2px 2px #7197bd; box-shadow: inset 2px 2px 2px #7197bd; }
/***MAIN CONTENT: WIDGET BOX (dashboard.html)***/
.widgetbox { margin-bottom: 20px; -moz-box-shadow: 1px 1px 2px #ccc; -webkit-box-shadow: 1px 1px 2px #ccc; box-shadow: 1px 1px 2px #ccc; }
.widgetbox h3 { font-size: 12px; text-transform: uppercase; color: #fff; font-weight: normal; text-shadow: 1px 1px #4b6592; }
.widgetbox h3 { -moz-border-radius: 3px 3px 0 0; -webkit-border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0; }
.widgetbox h3 { border: 1px solid #6082ad; background: #688ab5 url(../images/titlebg.png) repeat-x top left; }
.widgetbox h3 span { padding: 10px 15px; display: block; }
.widgetbox h3.arrow span { background: url(../images/toggle.png) no-repeat right center; }
.widgetbox .content { background: #fcfcfc; padding: 20px 15px; color: #666; overflow: hidden; border: 1px solid #ccc; border-top: 0; }
.widgetbox .content { -moz-border-radius: 0 0 3px 3px; -webkit-border-radius: 0 0 3px 3px; border-radius: 0 0 3px 3px; }
.widgetbox .content p { margin: 5px auto; }
.widgetbox .content p:first-child { margin-top: 0; }
.widgetbox2 { margin-bottom: 20px; -moz-box-shadow: 1px 1px 2px #ddd; -webkit-box-shadow: 1px 1px 2px #ddd; box-shadow: 1px 1px 2px #ddd; }
.widgetbox2 h3 { font-size: 12px; color: #333; font-weight: normal; text-shadow: 1px 1px #fff; }
.widgetbox2 h3 { -moz-border-radius: 3px 3px 0 0; -webkit-border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0; }
.widgetbox2 h3 { border: 1px solid #ddd; background: #eee url(../images/thead.png) repeat-x top left; }
.widgetbox2 h3 span { padding: 10px 15px; display: block; }
.widgetbox2 h3.arrow span { background: url(../images/toggle2.png) no-repeat right center; }
.widgetbox2 .content { background: #fcfcfc; padding: 20px 15px; color: #666; overflow: hidden; border: 1px solid #ddd; border-top: 0; }
.widgetbox2 .content { -moz-border-radius: 0 0 3px 3px; -webkit-border-radius: 0 0 3px 3px; border-radius: 0 0 3px 3px; }
.widgetbox2 .content p { margin: 5px 0; }
.widgetbox2 .content p:first-child { margin-top: 0; }
.widgetbox2 .content label { display: block; padding: 0; width: 120px; margin-right: 15px; float: left; }
/***PROGRESS BAR (dashboard.html)***/
.progress { margin: 5px 0; }
.progress .bar { background: #ddd; -moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; padding: 2px; }
.progress .bar { -moz-box-shadow: inset 2px 2px 3px #999; -webkit-box-shadow: inset 2px 2px 3px #999; box-shadow: inset 2px 2px 3px #999; }
.progress .bar .value { height: 5px; -moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }
.progress .bar2 { background: #ddd; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; padding: 2px; }
.progress .bar2 { -moz-box-shadow: inset 2px 2px 3px #999; -webkit-box-shadow: inset 2px 2px 3px #999; box-shadow: inset 2px 2px 3px #999; }
.progress .bar2 .value { padding: 3px 0; text-align: center; -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; color: #fff; }
.progress .bar2 .value { background-image: url(../images/barbg.png); background-repeat: repeat-x; background-position: 0 0; }
.progress .bluebar { background-color: #069; }
.progress .orangebar { background-color: #F90; }
.progress .redbar { background-color: #cc0000; }
/***MAIN CONTENT:FULL PAGE***/
.fullpage { margin: 20px 15px; }
.pageTitle { font-size: 24px; margin-bottom: 20px; text-shadow: 1px 1px #fff; }
/***MAIN CONTENT: SUB MENU (users.html)***/
.submenu { list-style: none; overflow: hidden; float:right; }
.submenu li { display: inline-block; float: left; }
.submenu li a { display: block; padding: 5px 10px; border: 1px solid #bbb; background: url(../images/bgbutton4.png) repeat-x top left; border-left: 0; }
.submenu li a { color: #333; text-shadow: 1px 1px #eee; -moz-box-shadow: 1px 1px 0 #fcfcfc; -webkit-box-shadow: 1px 1px 0 #fcfcfc; box-shadow: 1px 1px 0 #fcfcfc; }
.submenu li a:hover { -moz-box-shadow: inset 1px 1px 2px #ccc; -webkit-box-shadow: inset 1px 1px 2px #ccc; box-shadow: inset 1px 1px 2px #ccc; }
.submenu li a:hover { text-decoration: none; }
.submenu li.current a { background: #f7f7f7; color: #069; text-shadow: none; }
.submenu li.current a:hover { -moz-box-shadow: none; webkit-box-shadow: none; box-shadow: none; }
.submenu li:last-child a { -moz-border-radius: 0 3px 3px 0; -webkit-border-radius: 0 3px 3px 0; border-radius: 0 3px 3px 0; }
.submenu li:first-child a { -moz-border-radius: 3px 0 0 3px; -webkit-border-radius: 3px 0 0 3px; border-radius: 3px 0 0 3px; border-left: 1px solid #bbb; }
/***MAIN CONTENT: FORM STYLING (forms.html)***/
.sf { width: 250px; }
.mf { width: 350px; }
.lf { width: 450px; }
textarea.mf { height: 100px; }
input[type=radio], input[type=checkbox] { margin: 0; padding: 0; vertical-align: middle; }
.form_default fieldset { border: 1px solid #ccc; padding: 20px; background: #f7f7f7; }
.form_default legend { text-transform: uppercase; }
.form_default p { margin: 20px 0 !important; }
.form_default label { width: 150px; float: left; text-align: right; padding-top: 5px; margin-right: 20px; }
.form_default input[type=text], .form_default input[type=password] { font-size: 12px; padding: 8px 5px; border: 1px solid #ccc; background: #fcfcfc; outline: none; }
.form_default input[type=text], .form_default input[type=password] { -moz-box-shadow: inset 1px 1px 3px #ccc; -webkit-box-shadow: inset 1px 1px 3px #ccc; box-shadow: inset 1px 1px 3px #ccc; }
.form_default input[type=text], .form_default input[type=password] { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; margin-right: 10px; }
.form_default textarea { font-size: 12px; padding: 8px 5px; border: 1px solid #ccc; background: #fcfcfc; outline: none; }
.form_default textarea { -moz-box-shadow: inset 1px 1px 3px #ccc; -webkit-box-shadow: inset 1px 1px 3px #ccc; box-shadow: inset 1px 1px 3px #ccc; }
.form_default textarea { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; margin-right: 10px; }
.form_default select { font-size: 12px; padding: 5px; border: 1px solid #ccc; background: #fcfcfc; outline: none; }
.form_default select { -moz-box-shadow: inset 1px 1px 3px #ccc; -webkit-box-shadow: inset 1px 1px 3px #ccc; box-shadow: inset 1px 1px 3px #ccc; }
.form_default select { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; margin-right: 10px; }
.form_default input[type=text]:focus, .form_default input[type=password]:focus, .form_default textarea:focus { background: #fff; }
.form_default button { background: #4b6592 url(../images/buttonbg3.png) repeat-x top left; color: #fff; padding: 7px 20px; cursor: pointer; }
.form_default button { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; border: 1px solid #395380; font-size: 12px; }
.form_default button { text-transform: uppercase; text-shadow: 1px 1px #395380; margin-left: 170px; }
.form_default button { -moz-box-shadow: 1px 1px 2px #999; -webkit-box-shadow: 1px 1px 2px #999; box-shadow: 1px 1px 2px #999; }
.form_default button:hover { background: #005681 url(../images/buttonbg3.png) repeat-x 0 -36px; }
.form_default button:active { -moz-box-shadow: inset 2px 2px 2px #12274c; -webkit-box-shadow: inset 2px 2px 2px #12274c; box-shadow: inset 2px 2px 2px #12274c; }
.form_default input.error, .form_default textarea.error, .form_default select.error { border: 1px solid #ff0000; }
.form_default div.error { float: none; width: auto; color: #ff0000; font-size: 11px; display: inline-block; }
.form_default label.error { color: #ff0000; }
/***MAIN CONTENT: STANDARD TABLE (users.html)***/
.addNewButton { float: left; border: 1px solid #ccc; background: #4b6592 url(../images/buttonbg3.png) repeat-x top left; color: #fff; padding: 5px 20px; }
.addNewButton { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; border: 1px solid #395380; font-size: 12px; }
.addNewButton { text-transform: uppercase; text-shadow: 1px 1px #395380; margin-right: 10px; }
.addNewButton { -moz-box-shadow: 1px 1px 2px #999; -webkit-box-shadow: 1px 1px 2px #999; box-shadow: 1px 1px 2px #999; }
.addNewButton:hover { background: #005681 url(../images/buttonbg3.png) repeat-x 0 -36px; text-decoration: none; }
.sTableOptions { padding: 12px 10px; border: 1px solid #bbb; border-bottom: 0; background: #eee url(../images/thead.png) repeat-x top left; }
.sTableOptions { -moz-border-radius: 3px 3px 0 0; -webkit-border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0; position: relative; }
.sTableOptions .button { display: inline-block; border: 1px solid #999; background: url(../images/buttonbg5.png) repeat-x bottom left; }
.sTableOptions .button { text-transform: uppercase; color: #333; text-shadow: 1px 1px #fcfcfc; -webkit-box-shadow: 0 1px 0 #ddd; box-shadow: 0 1px 0 #ddd; }
.sTableOptions .button { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; -moz-box-shadow: 0 1px 0 #ddd; }
.sTableOptions .button:hover { cursor: pointer; text-decoration: none; background-position: top left; }
.sTableOptions .button:active { -moz-box-shadow: inset 1px 1px 2px #999; -webkit-box-shadow: inset 1px 1px 2px #999; box-shadow: inset 1px 1px 2px #999; }
.sTableOptions .button:active { background: #eee; }
.sTableOptions .button span { padding: 5px 10px; display: block; }
.sTableOptions h4 { font-size: 12px; font-weight: normal; color: #333; }
.sTableOptions .delete span { background: url(../images/icons/trash.png) no-repeat 8px center; padding-left: 30px; }
/***(tables.html)***/
.sTableOptions2 { padding: 12px 10px; border: 1px solid #ccc; border-bottom: 0; background: #ddd url(../images/bgbutton5.png) repeat-x top left; }
.sTableOptions2 { -moz-border-radius: 3px 3px 0 0; -webkit-border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0; position: relative; }
.sTableOptions2 .button { display: inline-block; border: 1px solid #999; background: url(../images/buttonbg5.png) repeat-x bottom left; }
.sTableOptions2 .button { text-transform: uppercase; color: #333; text-shadow: 1px 1px #fcfcfc; -webkit-box-shadow: 0 1px 0 #ddd; box-shadow: 0 1px 0 #ddd; }
.sTableOptions2 .button { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; -moz-box-shadow: 0 1px 0 #ddd; }
.sTableOptions2 .button:hover { cursor: pointer; text-decoration: none; background-position: top left; }
.sTableOptions2 .button:active { -moz-box-shadow: inset 1px 1px 2px #999; -webkit-box-shadow: inset 1px 1px 2px #999; box-shadow: inset 1px 1px 2px #999; }
.sTableOptions2 .button:active { background: #eee; }
.sTableOptions2 .button span { padding: 5px 10px; display: block; }
.sTableOptions2 h4 { font-size: 12px; font-weight: normal; color: #333; }
.sTableHead { border-collapse: collapse; }
.sTableHead td { padding: 8px 10px; color: #ccc; text-shadow: 1px 1px #444; font-size: 12px; text-transform: uppercase; border-right: 1px solid #777; }
.sTableHead .head0 { background: #666; }
.sTableHead .head1 { background: #555; }
.sTableWrapper { border: 1px solid #bbb; border-top: 0; }
.sTable { border-collapse: collapse; }
.sTable tr td { padding: 8px 10px; border-right: 1px solid #fff; border-bottom: 1px solid #ddd; vertical-align: top; }
.sTable thead th { padding: 8px 10px; color: #ccc; text-shadow: 1px 1px #444; font-size: 12px; text-transform: uppercase; border-right: 1px solid #777; }
.sTable thead th { font-weight: normal; text-align: left; }
.sTable tr td:last-child { border-right: 0; }
.sTable tr:last-child td { border-bottom: 0; }
.sTable tr:hover { background: #ddd; }
.sTable tr.selected { background: #fffccc; }
.sTable .head0 { background: #666; }
.sTable .head1 { background: #555; }
.sTable .con1 { background: #eee; }
.sTable .con0 { background: #f7f7f7; }
/***(tables.html)***/
.sTable2 { border-collapse: collapse; border: 1px solid #ccc; }
.sTable2 thead td { padding: 5px 10px; background: #eee url(../images/thead.png) repeat-x top left; border: 1px solid #ccc; }
.sTable2 thead th { padding: 5px 10px; background: #eee url(../images/thead.png) repeat-x top left; border: 1px solid #ccc; }
.sTable2 tbody tr td { padding: 10px; background: #fff; border-top: 1px solid #eee; border-left: 1px solid #eee; }
.sTable2 tbody tr td:first-child { border-left: 1px solid #ccc; }
.sTable2 tbody tr.even td { background: #fcfcfc; }
.sTable3 { border-collapse: collapse; }
.sTable3 thead td { padding: 5px 10px; background: #eee url(../images/thead.png) repeat-x top left; border-bottom: 1px solid #ccc; }
.sTable3 tbody tr td { padding: 10px; background: #fff; border-top: 1px solid #eee; border-left: 1px solid #eee; }
.sTable3 tbody tr.even td { background: #fcfcfc; }
/**dynamic table***/
.dataTables_wrapper { border: 1px solid #ccc; background: #eee url(../images/thead.png) repeat-x top left;
-moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; position: relative; }
.dataTables_filter { position: absolute; top: 11px; right: 5px; }
.dataTables_length { padding: 10px 10px; }
.dataTables_wrapper label { display: inline-block; margin-right: 5px; }
.dyntable { width: 100%; background: #fcfcfc; }
.dyntable thead th, .dyntable tfoot th { padding: 5px 10px; color: #fff; font-weight: normal; text-align: left; }
.dyntable thead th.head0, .dyntable tfoot th.head0 { background: #666; }
.dyntable thead th.head1, .dyntable tfoot th.head1 { background: #555; }
.dyntable tbody tr td { padding: 5px 10px; border-top: 1px solid #ddd; }
.dyntable tbody tr:first-child td { border-top: 0; }
.dyntable .con1 { background: #eee; }
.dyntable .con0 { background: #f7f7f7; }
.dyntable thead th.sorting { background-image: url(../images/sort_both.png); background-repeat: no-repeat; background-position: right 5px; }
.dyntable thead th.sorting_asc { background-image: url(../images/sort_asc.png); background-repeat: no-repeat; background-position: right 6px; }
.dyntable thead th.sorting_desc { background-image: url(../images/sort_desc.png); background-repeat: no-repeat; background-position: right 6px; }
.dataTables_info { padding: 10px; }
.paging_full_numbers { position: absolute; bottom: 7px; right: 8px; }
.paging_full_numbers .paginate_button {
display: inline-block; padding: 2px 8px; border: 1px solid #ccc; margin-left: 5px;
background: #eee url(../images/buttonbg5.png) repeat-x top left; cursor: pointer;
-moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px;
}
.paging_full_numbers .paginate_button:hover {
background: #eee; -moz-box-shadow: inset 1px 1px 2px #ccc; -webkit-box-shadow: inset 1px 1px 2px #ccc;
box-shadow: inset 1px 1px 2px #ccc;
}
.paging_full_numbers .paginate_active, .paging_full_numbers .paginate_button:active {
display: inline-block; padding: 2px 8px; border: 1px solid #405A87; margin-left: 5px;
background: #405A87 url(../images/buttonbg3.png) repeat-x top left; color: #fff;
-moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px;
}
.paging_full_numbers .paginate_button_disabled { color: #999; }
/***PAGINATION (users.html)***/
.pagination a { display: inline-block; padding: 5px 10px; color: #333; border: 1px solid #bbb; background: url(../images/buttonbg5.png) repeat-x bottom left; }
.pagination a { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
.pagination a { -moz-box-shadow: 1px 1px 0 #f7f7f7; -webkit-box-shadow: 1px 1px 0 #f7f7f7; box-shadow: 1px 1px 0 #f7f7f7; }
.pagination a:hover { -moz-box-shadow: inset 1px 1px 3px #eee; -webkit-box-shadow: inset 1px 1px 3px #eee; }
.pagination a:hover { text-decoration: none; background: #eee; box-shadow: inset 1px 1px 3px #eee; }
.pagination a.disabled { color: #999; border: 1px solid #ccc; }
.pagination a.disabled:hover { background: url(../images/buttonbg5.png) repeat-x bottom left; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }
.pagination a.current { background: #333 url(../images/buttonbg3.png) repeat-x top left; color: #fff; border: 1px solid #405a87; }
.pagination a.current:hover { -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }
.pgright { position: absolute; right: 10px; top: 12px; }
.pgright a.disabled { border: 1px solid #ccc; }
/***MAINCONTENT: GALLERY (galery.html)***/
.gallery .thumbview ul { list-style: none; }
.gallery .thumbview ul li { float: left; display: inline-block; margin-right: 20px; margin-bottom: 20px; }
.gallery .thumbview .thumb { border: 1px solid #ccc; padding: 10px; background: #fcfcfc; -moz-box-shadow: 1px 1px 2px #ddd; box-shadow: 1px 1px 2px #ddd; }
.gallery .thumbview .thumb { -moz-border-radius: 3px; -webit-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 1px 1px 2px #ddd; position: relative; }
.gallery .thumbview .thumb img { cursor: pointer; }
.gallery .thumbview .info { width: 230px; height: 130px; position: absolute; top: 10px; left: 10px; font-size: 12px; line-height: 18px; }
.gallery .thumbview .info { padding: 10px; background: url(../images/blacktrans1.png); display: none; cursor: pointer; }
.gallery .thumbview .info label { width: 70px; display: inline-block; color: #ccc; }
.gallery .thumbview .info span { color: #fff; }
.gallery .thumbview .info .menu { margin-top: 10px; }
.gallery .thumbview .info .menu a { display: inline-block; margin-right: 5px; width: 22px; height: 22px; }
.gallery .thumbview .info .menu a { -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; }
.gallery .thumbview .info .menu a.view { background: #83a3ca url(../images/viewdelete.png) no-repeat 5px 5px; }
.gallery .thumbview .info .menu a.delete { background: #83a3ca url(../images/viewdelete.png) no-repeat 5px -15px; }
.gallery .thumbview .info .menu a:hover { text-decoration: none; background-color: #6385ae; }
.gallery .listview { display: none; }
/***PAGES: message.html, info.html***/
.messagelist h4 { font-size: 11px; color: #333; font-weight: normal; padding: 8px 10px; border-bottom: 1px solid #ccc; text-transform: uppercase; }
.messagelist .link { padding: 8px 10px; background: #eee; font-size: 11px; border-top: 1px solid #ccc; }
.messagelist ul { list-style: none; }
.messagelist ul li { display: block; border-bottom: 1px dotted #ccc; padding: 5px 10px; }
.messagelist ul li:last-child { border-bottom: 0; }
.messagelist ul li.current { background: #fff; color: #333; }
.messagelist ul li.current a { color: #6385ae; font-weight: bold; }
.messagelist ul li a { display: block; color: #333; }
.messagelist ul li a:hover { text-decoration: none; }
.messagelist ul li span { color: #666; display: block; font-size: 11px; }
.messagelist ul li small { font-size: 11px; color: #666; }
.messagelist ul li:hover { background: #e8f3fe; }
/***MAIN CONTENT: ELEMENTS (elements.html)***/
.imgleft { float: left; margin: 0 10px 0 0; padding: 5px; border: 1px solid #ccc; }
.imgleft { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
/**BUTTONS & ICONS**/
.iconlink { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; color: #fff; text-shadow: 1px 1px #304978; margin-bottom: 5px; }
.iconlink { -moz-box-shadow: 1px 1px 0 #f7f7f7; -webkit-box-shadow: 1px 1px 0 #f7f7f7; box-shadow: 1px 1px 0 #f7f7f7; }
.iconlink { display: inline-block; padding: 5px 7px; border: 1px solid #304978; background: url(../images/buttonbg3.png) repeat-x top left; }
.iconlink:hover { background-position: 0 -36px; text-decoration: none; }
.iconlink:active { -moz-box-shadow: inset 1px 1px 2px #304978; -webkit-box-shadow: inset 1px 1px 2px #304978; box-shadow: inset 1px 1px 2px #304978; }
.iconlink img { vertical-align: middle; display: inline-block; }
.iconlink2 { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; color: #333; margin-bottom: 5px; }
.iconlink2 { -moz-box-shadow: 1px 1px 0 #f7f7f7; -webkit-box-shadow: 1px 1px 0 #f7f7f7; box-shadow: 1px 1px 0 #f7f7f7; }
.iconlink2 { display: inline-block; padding: 5px 7px; border: 1px solid #ccc; background: url(../images/bgbutton4.png) repeat-x top left; }
.iconlink2:active { -moz-box-shadow: inset 1px 1px 2px #ccc; -webkit-box-shadow: inset 1px 1px 2px #ccc; box-shadow: inset 1px 1px 2px #ccc; }
.iconlink2:hover { background-position: 0 -37px; text-decoration: none; }
.iconlink2 img { vertical-align: middle; display: inline-block; }
/**INVOICE**/
.invoice { border: 1px solid #ccc; background: #f7f7f7; -moz-box-shadow: 1px 1px 3px #ddd; -webkit-box-shadow: 1px 1px 3px #ddd; box-shadow: 1px 1px 3px #ddd; }
.invoice_inner { padding: 20px; position: relative; overflow: hidden; }
.invoice .title { font-size: 18px; float: right; }
.invoicetable { border-collape: collapse; }
.invoicetable thead td { border-bottom: 1px solid #ccc; padding: 5px 0; font-weight: bold; }
.invoicetable .subtotal td { font-weight: bold; }
.invoicetable tr td.line { border-bottom: 1px solid #ccc; }
/** FOOTER**/
.footer { background: #333; padding: 10px 0; }
.footerinner { padding: 0 20px; text-align: right; font-size: 11px; color: #ccc; }
.footer_float { position: fixed; bottom: 0; left: 0; width: 100%; }
/***MAIN CONTENT: CUSTOM STYLES***/
.errorpage { padding: 20px; }
.widgetbox .content .bright { border-right: 1px solid #ddd; width: 47%; }
.clear { clear: both; height: 15px; }
.nopadding { padding: 0 !important; }
.loaders img { vertical-align: middle; display: inline-block; margin-right: 10px; }
.padding15 { padding: 15px; overflow: hidden; }
.padding1020 { padding: 10px 20px; }
.padding20 { padding: 20px; overflow: hidden; }
.borderbottom { border-bottom: 1px solid #eee; }
.floatleft { float: left; }
.width50 { width: 50px; }
.ohidden { overflow: hidden; }
.overflownone { overflow: none !important; }
.marginleft150 { margin-left: 150px; }
.marginbottom20 { margin-bottom: 20px; }
.color069 { color: #069; }
.tooltipflot { background: url(../images/blacktrans1.png); padding: 2px 10px; color: #fff; font-size: 11px; }
.tooltipflot { -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; }
#colorselector { width: 16px; height: 16px; border: 2px solid #ccc; display: inline-block; }
#colorselector { background: url(../images/colorpicker.png) no-repeat top left; cursor: pointer; }
.pie { height: 200px; width: 290px; }
.external-event { border: 1px solid #a6bdd8; padding: 7px 10px; color: #333; margin-bottom: 5px; background: #c8d9ed; cursor: move; }
.mgright5 { margin-right: 5px; }
.inlineblock { display: inline-block; }
.alignright { text-align: right; }
.bordertop { border-top: 1px solid #ccc; }
/***CUSTOM STYLES***/
.operations > ul {list-style: none;}

Binary file not shown.

View File

@ -0,0 +1,231 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>
This is a custom SVG webfont generated by Font Squirrel.
Copyright : Digitized data copyright 2006 Google Corporation
Foundry : Ascender Corporation
Foundry URL : httpwwwascendercorpcom
</metadata>
<defs>
<font id="DroidSansRegular" horiz-adv-x="1128" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="532" />
<glyph unicode=" " horiz-adv-x="532" />
<glyph unicode="&#x09;" horiz-adv-x="532" />
<glyph unicode="&#xa0;" horiz-adv-x="532" />
<glyph unicode="!" horiz-adv-x="551" d="M147 111q0 38 10 64.5t27 43t40 24t50 7.5q26 0 49.5 -7.5t40.5 -24t27 -43t10 -64.5q0 -37 -10 -63.5t-27 -43.5t-40.5 -25t-49.5 -8q-27 0 -50 8t-40 25t-27 43.5t-10 63.5zM164 1462h223l-51 -1048h-121z" />
<glyph unicode="&#x22;" horiz-adv-x="823" d="M133 1462h197l-41 -528h-115zM494 1462h196l-41 -528h-114z" />
<glyph unicode="#" horiz-adv-x="1323" d="M51 428v137h285l65 328h-274v137h299l82 432h147l-82 -432h293l84 432h144l-84 -432h262v-137h-289l-63 -328h280v-137h-307l-82 -428h-147l84 428h-291l-82 -428h-144l78 428h-258zM483 565h291l64 328h-291z" />
<glyph unicode="$" d="M123 172v172q33 -16 76.5 -32.5t91.5 -29.5t98.5 -21.5t97.5 -8.5v434q-89 30 -154.5 63t-108.5 75.5t-64 97.5t-21 129q0 67 24.5 122.5t70 97t110 68t143.5 35.5v180h138v-176q100 -5 184.5 -26t151.5 -52l-66 -145q-56 25 -126 45.5t-144 26.5v-422q88 -31 155.5 -64 t113 -74.5t68.5 -95t23 -125.5q0 -70 -25 -127t-71.5 -99t-113 -69.5t-150.5 -39.5v-230h-138v221q-50 0 -101 4.5t-99 13.5t-90 22t-74 30zM315 1049q0 -36 8.5 -64.5t28.5 -52t53 -42.5t82 -36v369q-89 -16 -130.5 -60.5t-41.5 -113.5zM625 262q93 14 138.5 63t45.5 121 q0 33 -10 60.5t-31.5 50t-56.5 41.5t-86 37v-373z" />
<glyph unicode="%" horiz-adv-x="1690" d="M102 1026q0 108 17.5 193t54 143.5t93 89.5t134.5 31q75 0 131.5 -31t95 -89.5t58 -143.5t19.5 -193t-18 -194t-55 -145t-94.5 -90.5t-136.5 -31.5q-73 0 -129 31.5t-94 90.5t-57 145t-19 194zM250 1026q0 -165 35.5 -247.5t115.5 -82.5q156 0 156 330q0 328 -156 328 q-80 0 -115.5 -81.5t-35.5 -246.5zM362 0l812 1462h157l-811 -1462h-158zM985 440q0 108 17.5 193t54 143.5t93 89.5t134.5 31q75 0 131.5 -31t94.5 -89.5t57.5 -143.5t19.5 -193t-17.5 -193.5t-54.5 -144.5t-94.5 -90.5t-136.5 -31.5q-74 0 -130 31.5t-93.5 90.5 t-56.5 144.5t-19 193.5zM1133 440q0 -165 35.5 -247t115.5 -82q156 0 156 329q0 328 -156 328q-80 0 -115.5 -81.5t-35.5 -246.5z" />
<glyph unicode="&#x26;" horiz-adv-x="1438" d="M109 381q0 78 20 139t58.5 111t94 93t126.5 85q-31 36 -61 74.5t-52.5 82t-36.5 93t-14 106.5q0 75 25 134.5t72 101t116 63t157 21.5q83 0 148.5 -21.5t111 -63t69.5 -101t24 -134.5q0 -64 -25 -118.5t-67 -101t-96.5 -86t-114.5 -75.5l352 -372q27 29 48.5 59t38.5 64 t30.5 73t23.5 86h184q-15 -66 -35.5 -121.5t-47 -104.5t-59 -91.5t-71.5 -83.5l277 -293h-225l-168 172q-49 -45 -97 -80.5t-102 -60t-116 -38t-140 -13.5q-105 0 -188.5 26.5t-141 78t-88 126t-30.5 170.5zM299 387q0 -54 17.5 -99.5t50.5 -78t81 -50.5t109 -18 q58 0 107 11.5t91 31.5t78 47t68 58l-387 407q-52 -33 -92 -64.5t-67.5 -67.5t-41.5 -78.5t-14 -98.5zM422 1165q0 -34 8 -66.5t24.5 -65t42.5 -66t62 -70.5q59 35 102 66t71 63t42 67t14 76q0 36 -12.5 66.5t-36 52.5t-56.5 34.5t-75 12.5q-86 0 -136 -44.5t-50 -125.5z " />
<glyph unicode="'" horiz-adv-x="463" d="M133 1462h197l-41 -528h-115z" />
<glyph unicode="(" horiz-adv-x="616" d="M82 561q0 125 18 246.5t55 236t93.5 220t134.5 198.5h172q-140 -193 -212.5 -424t-72.5 -475q0 -119 18.5 -237t54 -231t88.5 -219t122 -200h-170q-78 90 -134.5 193t-93.5 215.5t-55 232.5t-18 244z" />
<glyph unicode=")" horiz-adv-x="616" d="M61 1462h172q78 -93 134.5 -198.5t94 -220t55.5 -236t18 -246.5q0 -124 -18 -244t-55.5 -232.5t-94 -215.5t-134.5 -193h-170q69 94 122 200t89 219t54 231t18 237q0 244 -72 475t-213 424z" />
<glyph unicode="*" d="M82 1081l29 193l391 -111l-43 393h205l-43 -393l397 111l26 -193l-378 -28l245 -326l-178 -96l-176 358l-158 -358l-184 96l242 326z" />
<glyph unicode="+" d="M102 647v150h387v389h150v-389h387v-150h-387v-385h-150v385h-387z" />
<glyph unicode="," horiz-adv-x="512" d="M63 -264l30 127l28 131q13 66 24 128.5t19 115.5h198l15 -23q-14 -54 -33.5 -115t-42.5 -123l-49 -124l-51 -117h-138z" />
<glyph unicode="-" horiz-adv-x="659" d="M82 465v168h496v-168h-496z" />
<glyph unicode="." horiz-adv-x="549" d="M147 111q0 38 10 64.5t27 43t40 24t50 7.5q26 0 49.5 -7.5t40.5 -24t27 -43t10 -64.5q0 -37 -10 -63.5t-27 -43.5t-40.5 -25t-49.5 -8q-27 0 -50 8t-40 25t-27 43.5t-10 63.5z" />
<glyph unicode="/" horiz-adv-x="764" d="M20 0l545 1462h178l-544 -1462h-179z" />
<glyph unicode="0" d="M98 733q0 177 25.5 317t81 236.5t144 147.5t214.5 51q119 0 207 -50.5t146 -147t87 -236.5t29 -318q0 -177 -25.5 -317t-82 -237t-145.5 -148t-216 -51q-118 0 -205.5 51t-145 148t-86 237t-28.5 317zM283 733q0 -150 15 -262t48 -186.5t86.5 -112t130.5 -37.5t131 37 t88.5 111t50 186.5t15.5 263.5q0 150 -15.5 262t-50 186t-88.5 111t-131 37t-130.5 -37t-86.5 -111t-48 -186t-15 -262z" />
<glyph unicode="1" d="M178 1163l383 299h150v-1462h-176v913q0 43 0.5 92t2.5 97l2 93q2 45 3 79l-30 -31q-13 -13 -27 -25l-28 -26l-36 -31l-148 -121z" />
<glyph unicode="2" d="M96 0v156l350 381l134 148q59 67 100.5 131t63.5 128.5t22 140.5q0 59 -17 104t-48.5 76.5t-74.5 47.5t-96 16q-95 0 -171.5 -38.5t-145.5 -98.5l-102 119q40 36 86 67.5t99 54.5t112 36.5t124 13.5q96 0 173.5 -27t131.5 -77.5t83.5 -123t29.5 -163.5q0 -85 -26.5 -162 t-73 -151.5t-110.5 -149.5l-140 -156l-281 -299v-8h689v-166h-912z" />
<glyph unicode="3" d="M82 59v170q87 -46 188.5 -71t194.5 -25q92 0 159 20t110.5 57t64 91t20.5 121q0 68 -26.5 116.5t-75.5 80t-119.5 46.5t-159.5 15h-133v151h133q81 0 144 20t105.5 57t64.5 88t22 112q0 52 -18 93t-51 69.5t-79 43.5t-102 15q-107 0 -188.5 -33.5t-155.5 -87.5l-92 125 q38 31 84.5 58t101.5 47.5t117.5 32.5t132.5 12q108 0 189.5 -27t136.5 -75.5t83 -115t28 -145.5q0 -73 -23 -133t-64.5 -104t-99.5 -72.5t-129 -40.5v-6q177 -22 269 -112.5t92 -235.5q0 -96 -32.5 -176t-98.5 -138t-167 -90t-239 -32q-109 0 -205.5 17t-181.5 62z" />
<glyph unicode="4" d="M23 328v159l663 983h188v-976h213v-166h-213v-328h-176v328h-675zM201 494h497v356q0 56 1.5 117.5t3.5 120t4.5 109.5t3.5 85h-9q-7 -20 -17.5 -44.5t-23 -49t-25.5 -47.5t-24 -39z" />
<glyph unicode="5" d="M131 59v172q33 -23 77.5 -41t93.5 -30t98.5 -18.5t91.5 -6.5q79 0 141 18.5t105 57.5t66 98t23 140q0 143 -88 218.5t-256 75.5q-27 0 -58.5 -2.5t-63 -6.5t-60 -8.5t-49.5 -8.5l-90 57l55 688h690v-166h-532l-39 -419q32 6 84.5 13t124.5 7q99 0 184.5 -27.5t149 -81.5 t99.5 -134t36 -185q0 -114 -34 -205t-101 -154t-165.5 -96.5t-226.5 -33.5q-51 0 -100.5 5t-95 14.5t-86.5 24.5t-74 35z" />
<glyph unicode="6" d="M113 625q0 105 10.5 209t37 199.5t72.5 177.5t117 142.5t170 95t232 34.5q19 0 42 -1t46.5 -3.5t45 -6t38.5 -8.5v-155q-35 12 -79 18t-87 6q-90 0 -158.5 -21.5t-118.5 -60.5t-83.5 -93t-54.5 -119.5t-31 -139.5t-13 -154h12q20 36 48.5 67.5t66.5 54t85.5 35.5 t106.5 13q95 0 172 -29.5t131 -86.5t83.5 -139.5t29.5 -188.5q0 -114 -31 -205t-89 -154.5t-140 -97.5t-184 -34q-100 0 -187.5 39t-151.5 119t-101 201t-37 286zM295 506q0 -67 18.5 -133.5t55 -119.5t91.5 -86.5t128 -33.5q60 0 109.5 20.5t85.5 62t55.5 105t19.5 150.5 q0 70 -16.5 125.5t-49.5 94.5t-82.5 60t-115.5 21q-67 0 -122.5 -23.5t-94.5 -61t-60.5 -85.5t-21.5 -96z" />
<glyph unicode="7" d="M90 1296v166h940v-145l-555 -1317h-194l563 1296h-754z" />
<glyph unicode="8" d="M106 373q0 75 22.5 135t60.5 108t90 85t110 65q-49 31 -92 67.5t-74.5 81.5t-50 99.5t-18.5 120.5q0 87 33.5 152.5t90.5 109.5t131.5 66t155.5 22q84 0 158.5 -22t131 -66t89.5 -110t33 -154q0 -67 -20 -121t-55 -97.5t-83 -78t-104 -62.5q58 -31 113.5 -69t99 -85.5 t70 -106.5t26.5 -132q0 -92 -33.5 -166.5t-94 -126.5t-145 -80t-186.5 -28q-110 0 -195.5 27t-144 77.5t-89 123.5t-30.5 165zM285 371q0 -53 16 -97.5t50 -76t86 -49t124 -17.5q70 0 123.5 17.5t89.5 50t54 78.5t18 102q0 52 -19.5 94t-56 78t-87.5 68t-114 63l-30 14 q-126 -60 -190 -137.5t-64 -187.5zM332 1126q0 -57 17.5 -98t48.5 -73t74.5 -57.5t94.5 -49.5q48 22 90.5 48t74 59t49.5 75t18 96q0 101 -63 154t-173 53q-106 0 -168.5 -53t-62.5 -154z" />
<glyph unicode="9" d="M106 991q0 114 31.5 205.5t89 155t140 97.5t184.5 34q101 0 188 -39t151 -119t101 -201.5t37 -285.5q0 -105 -10.5 -209.5t-37 -199.5t-72.5 -177.5t-117 -142.5t-170 -94.5t-232 -34.5q-19 0 -42 1t-46 3.5t-45 5.5t-39 8v156q35 -13 79 -19t87 -6q135 0 222 47 t138 127.5t72.5 187.5t26.5 226h-13q-20 -36 -48 -67t-66 -54t-86 -36t-107 -13q-95 0 -172 29.5t-131 86.5t-83.5 139.5t-29.5 188.5zM283 991q0 -70 16.5 -125.5t49.5 -94.5t82.5 -60t115.5 -21q68 0 123 23.5t94 61t60.5 85.5t21.5 96q0 67 -18.5 133.5t-55 120 t-91.5 86.5t-128 33q-60 0 -109.5 -20t-85.5 -62t-55.5 -105.5t-19.5 -150.5z" />
<glyph unicode=":" horiz-adv-x="549" d="M147 111q0 38 10 64.5t27 43t40 24t50 7.5q26 0 49.5 -7.5t40.5 -24t27 -43t10 -64.5q0 -37 -10 -63.5t-27 -43.5t-40.5 -25t-49.5 -8q-27 0 -50 8t-40 25t-27 43.5t-10 63.5zM147 987q0 39 10 65.5t27 43t40 23.5t50 7q26 0 49.5 -7t40.5 -23.5t27 -43t10 -65.5 q0 -37 -10 -63t-27 -43t-40.5 -25t-49.5 -8q-27 0 -50 8t-40 25t-27 43t-10 63z" />
<glyph unicode=";" horiz-adv-x="549" d="M63 -264l30 127l28 131q13 66 24 128.5t19 115.5h198l15 -23q-14 -54 -33.5 -115t-42.5 -123l-49 -124l-51 -117h-138zM147 987q0 39 10 65.5t27 43t40 23.5t50 7q26 0 49.5 -7t40.5 -23.5t27 -43t10 -65.5q0 -37 -10 -63t-27 -43t-40.5 -25t-49.5 -8q-27 0 -50 8t-40 25 t-27 43t-10 63z" />
<glyph unicode="&#x3c;" d="M102 662v102l924 481v-160l-735 -364l735 -322v-161z" />
<glyph unicode="=" d="M102 442v150h924v-150h-924zM102 852v149h924v-149h-924z" />
<glyph unicode="&#x3e;" d="M102 238v161l736 322l-736 364v160l924 -481v-102z" />
<glyph unicode="?" horiz-adv-x="872" d="M37 1382q81 42 175 71.5t191 29.5q93 0 167.5 -25.5t126.5 -73.5t80 -117.5t28 -156.5q0 -67 -13.5 -119.5t-40.5 -97.5t-67 -87t-94 -89q-52 -45 -85 -78.5t-52 -65t-26 -64.5t-7 -77v-18h-139v37q0 57 7.5 103t27 86t52.5 78.5t83 80.5q48 41 82 74.5t55.5 68t32 74 t10.5 92.5q0 48 -15 87.5t-43.5 68t-71 44t-98.5 15.5q-83 0 -158 -26t-145 -60zM233 111q0 38 10 64.5t27 43t40 24t50 7.5q26 0 49.5 -7.5t40.5 -24t27 -43t10 -64.5q0 -37 -10 -63.5t-27 -43.5t-40.5 -25t-49.5 -8q-27 0 -50 8t-40 25t-27 43.5t-10 63.5z" />
<glyph unicode="@" horiz-adv-x="1774" d="M109 575q0 188 59 350.5t168.5 281.5t265 187t348.5 68q156 0 287 -50.5t226.5 -145t148.5 -230t53 -305.5q0 -62 -9.5 -124.5t-28 -119t-47 -105t-66.5 -84.5t-86.5 -56.5t-106.5 -20.5q-45 0 -81.5 15t-62.5 40t-42.5 57.5t-22.5 67.5h-4q-18 -37 -45 -70t-62.5 -57.5 t-80 -38.5t-97.5 -14q-77 0 -136.5 28t-100.5 78.5t-62.5 121.5t-21.5 157q0 101 29.5 185t85 145t134.5 95t177 34q45 0 90 -4t86 -11t75.5 -15.5t57.5 -16.5l-23 -416q-1 -22 -1.5 -35.5t-0.5 -21.5v-12v-7q0 -53 10.5 -87t27.5 -54t38.5 -27.5t44.5 -7.5q46 0 81 30.5 t58.5 82.5t35.5 122t12 148q0 142 -43 252.5t-119 186.5t-180.5 115.5t-227.5 39.5q-169 0 -298 -55.5t-216.5 -155t-132.5 -236t-45 -298.5q0 -151 39.5 -268t116 -197t190 -121t260.5 -41q61 0 120.5 7t115 19t105.5 27.5t93 32.5v-141q-86 -38 -194 -60t-238 -22 q-179 0 -319.5 51t-238 148.5t-148.5 238t-51 319.5zM662 602q0 -133 50.5 -192.5t135.5 -59.5q55 0 94 22.5t64 64t38 99t17 126.5l14 253q-28 8 -66.5 14.5t-80.5 6.5q-74 0 -124.5 -29t-82 -76t-45.5 -107t-14 -122z" />
<glyph unicode="A" horiz-adv-x="1245" d="M0 0l537 1468h170l538 -1468h-190l-160 453h-545l-162 -453h-188zM410 618h426l-148 424l-14 44l-18 56l-18 62l-17 64q-7 -31 -16 -64l-18 -64l-17 -56l-15 -42z" />
<glyph unicode="B" horiz-adv-x="1272" d="M199 0v1462h399q128 0 225.5 -19.5t163 -63t98.5 -114t33 -173.5q0 -62 -19.5 -116t-56.5 -95t-91.5 -68.5t-123.5 -36.5v-10q69 -12 129.5 -34.5t105.5 -62t71 -99.5t26 -146q0 -100 -32.5 -178.5t-94 -133t-149.5 -83.5t-199 -29h-485zM385 158h266q88 0 147.5 20 t96 56t52.5 86.5t16 111.5q0 56 -16.5 103t-54 80.5t-99.5 52t-154 18.5h-254v-528zM385 842h244q84 0 141 15t92 44.5t50.5 74t15.5 103.5q0 120 -77 172t-243 52h-223v-461z" />
<glyph unicode="C" horiz-adv-x="1235" d="M125 733q0 166 43.5 304t128 237t209.5 154t287 55q108 0 206 -22t177 -64l-78 -156q-63 32 -137 55t-168 23q-107 0 -194 -40.5t-148.5 -116.5t-95 -185t-33.5 -246q0 -141 29.5 -250.5t88.5 -184.5t147 -114t206 -39q89 0 169 17.5t158 40.5v-162q-39 -15 -78 -26.5 t-81.5 -18.5t-91 -10.5t-107.5 -3.5q-164 0 -284 54t-198.5 153t-116.5 238t-38 308z" />
<glyph unicode="D" horiz-adv-x="1401" d="M199 0v1462h407q153 0 277 -46t211 -136.5t134.5 -224.5t47.5 -310q0 -185 -48 -324.5t-139 -233t-223.5 -140.5t-300.5 -47h-366zM385 160h162q264 0 398 146t134 433q0 146 -33 252.5t-96 175.5t-155 102.5t-209 33.5h-201v-1143z" />
<glyph unicode="E" horiz-adv-x="1081" d="M199 0v1462h759v-164h-573v-452h535v-162h-535v-520h573v-164h-759z" />
<glyph unicode="F" horiz-adv-x="1006" d="M199 0v1462h759v-164h-573v-516h535v-164h-535v-618h-186z" />
<glyph unicode="G" horiz-adv-x="1413" d="M125 733q0 172 47.5 311t138.5 236.5t224.5 150t304.5 52.5q111 0 213 -22t190 -64l-72 -162q-36 17 -77.5 32t-85.5 26.5t-90.5 18.5t-92.5 7q-122 0 -216 -40.5t-157.5 -116.5t-96.5 -185t-33 -246q0 -130 27.5 -238t87.5 -186t155 -121t229 -43q44 0 80.5 2.5 t67.5 6.5t59 10l53 10v436h-299v164h484v-717q-55 -18 -111 -32t-115 -23.5t-124 -14.5t-140 -5q-157 0 -278 52.5t-204 150t-126 237t-43 313.5z" />
<glyph unicode="H" horiz-adv-x="1436" d="M199 0v1462h186v-616h666v616h186v-1462h-186v682h-666v-682h-186z" />
<glyph unicode="I" horiz-adv-x="694" d="M82 0v102l172 41v1176l-172 41v102h530v-102l-172 -41v-1176l172 -41v-102h-530z" />
<glyph unicode="J" horiz-adv-x="555" d="M-184 -205q34 -9 73 -14.5t84 -5.5q37 0 74.5 9.5t68 34.5t49.5 69t19 112v1462h187v-1442q0 -105 -29.5 -182t-82 -127.5t-126 -75t-162.5 -24.5q-51 0 -89 6.5t-66 17.5v160z" />
<glyph unicode="K" horiz-adv-x="1186" d="M199 0v1462h186v-731l121 168l452 563h209l-520 -637l539 -825h-211l-451 698l-139 -114v-584h-186z" />
<glyph unicode="L" horiz-adv-x="1006" d="M199 0v1462h186v-1296h573v-166h-759z" />
<glyph unicode="M" horiz-adv-x="1782" d="M199 0v1462h276l412 -1192h6l414 1192h276v-1462h-186v887q0 52 2 119t5 128q4 71 7 144h-8l-447 -1278h-153l-443 1280h-8q6 -74 10 -147q4 -63 6.5 -132.5t2.5 -126.5v-874h-172z" />
<glyph unicode="N" horiz-adv-x="1493" d="M199 0v1462h213l716 -1204h7q-3 76 -7 150q0 32 -2 66l-4 66q-2 33 -2 64.5v57.5v800h174v-1462h-215l-719 1210h-8q6 -77 10 -153q4 -65 6.5 -136t2.5 -128v-793h-172z" />
<glyph unicode="O" horiz-adv-x="1520" d="M125 735q0 170 38 308.5t117 236.5t199 151.5t283 53.5q155 0 272.5 -53.5t197.5 -152t120.5 -237t40.5 -309.5q0 -169 -40.5 -308t-120.5 -238t-198.5 -153t-273.5 -54q-163 0 -282.5 54t-198 153t-116.5 238.5t-38 309.5zM322 733q0 -137 26 -246.5t79.5 -186t136 -117 t196.5 -40.5t196.5 40.5t136 117t78.5 186t25 246.5q0 138 -25 247t-78 184.5t-135 116t-196 40.5t-197 -40.5t-137 -116t-80 -184.5t-26 -247z" />
<glyph unicode="P" horiz-adv-x="1180" d="M199 0v1462h362q134 0 231 -28.5t160 -83t93 -134.5t30 -182q0 -91 -27.5 -175t-90.5 -148.5t-166.5 -103t-255.5 -38.5h-150v-569h-186zM385 727h129q93 0 162.5 16t115 51.5t68.5 92t23 137.5q0 142 -82 210.5t-256 68.5h-160v-576z" />
<glyph unicode="Q" horiz-adv-x="1518" d="M125 735q0 170 38 308.5t117 236.5t199 151.5t283 53.5q155 0 272.5 -53.5t197.5 -152t120.5 -237t40.5 -309.5q0 -131 -24.5 -244t-72 -203.5t-118.5 -156.5t-164 -104q43 -94 111.5 -165.5t158.5 -131.5l-121 -142q-103 73 -189.5 172t-137.5 226q-17 -2 -37.5 -3 t-38.5 -1q-163 0 -282.5 54t-198 153t-116.5 238.5t-38 309.5zM322 733q0 -137 26 -246.5t79.5 -186t136 -117t196.5 -40.5t196.5 40.5t136 117t78.5 186t25 246.5q0 138 -25 247t-78 184.5t-135 116t-196 40.5t-197 -40.5t-137 -116t-80 -184.5t-26 -247z" />
<glyph unicode="R" horiz-adv-x="1208" d="M199 0v1462h356q266 0 393 -103t127 -312q0 -87 -24.5 -152t-65 -111.5t-92.5 -77.5t-107 -51l398 -655h-219l-351 604h-229v-604h-186zM385 762h164q90 0 153 17.5t103.5 52t59 86t18.5 120.5q0 72 -20.5 122t-62 82t-105 46.5t-150.5 14.5h-160v-541z" />
<glyph unicode="S" horiz-adv-x="1063" d="M104 49v178q34 -16 77.5 -31.5t91.5 -27.5t99 -19.5t101 -7.5q160 0 236.5 60t76.5 172q0 54 -14.5 94t-51 73.5t-97.5 65t-154 68.5q-89 35 -154.5 76.5t-108 93.5t-63 118t-20.5 150q0 88 32 157t90 116.5t138.5 72.5t177.5 25q119 0 214 -22.5t169 -57.5l-67 -156 q-65 29 -147.5 50.5t-170.5 21.5q-122 0 -189 -56.5t-67 -152.5q0 -57 15 -98.5t50 -75t92.5 -63t141.5 -62.5q91 -36 159.5 -74t114.5 -86t69.5 -111t23.5 -149q0 -97 -34.5 -173.5t-98.5 -129.5t-156 -80.5t-207 -27.5q-111 0 -207.5 17.5t-161.5 51.5z" />
<glyph unicode="T" horiz-adv-x="1063" d="M20 1298v164h1022v-164h-417v-1298h-187v1298h-418z" />
<glyph unicode="U" horiz-adv-x="1430" d="M184 520v942h187v-952q0 -175 86.5 -271t261.5 -96q89 0 153 27t105 76t61 117t21 149v952h186v-948q0 -114 -33 -212t-99.5 -170t-167 -113t-236.5 -41q-128 0 -226 38.5t-164.5 109.5t-100.5 170.5t-34 221.5z" />
<glyph unicode="V" horiz-adv-x="1163" d="M0 1462h197l295 -927q29 -91 50 -175l38 -159q15 74 38 158.5t54 181.5l293 921h198l-489 -1462h-187z" />
<glyph unicode="W" horiz-adv-x="1810" d="M20 1462h197l223 -889q12 -46 22 -95.5t18.5 -98.5t15.5 -94.5t12 -83.5q5 37 12.5 86t17.5 103t21.5 109.5t24.5 104.5l225 858h197l229 -856l29 -112l27 -109l22 -99t16 -85q4 38 10 83t14 94.5t17.5 101t20.5 100.5l200 882h199l-367 -1462h-188l-254 938 q-14 51 -27 105l-24 101l-23 107l-22 -106l-23 -103q-12 -56 -26 -110l-242 -932h-188z" />
<glyph unicode="X" horiz-adv-x="1120" d="M0 0l453 764l-422 698h198l332 -559l334 559h190l-421 -692l456 -770h-211l-354 635l-367 -635h-188z" />
<glyph unicode="Y" horiz-adv-x="1079" d="M0 1462h203l336 -739l340 739h200l-446 -893v-569h-187v559z" />
<glyph unicode="Z" horiz-adv-x="1104" d="M82 0v145l711 1151h-691v166h899v-145l-710 -1151h731v-166h-940z" />
<glyph unicode="[" horiz-adv-x="621" d="M164 -324v1786h405v-149h-223v-1487h223v-150h-405z" />
<glyph unicode="\" horiz-adv-x="764" d="M23 1462h178l544 -1462h-178z" />
<glyph unicode="]" horiz-adv-x="621" d="M51 -174h223v1487h-223v149h406v-1786h-406v150z" />
<glyph unicode="^" horiz-adv-x="1090" d="M41 549l459 924h102l447 -924h-161l-337 735l-349 -735h-161z" />
<glyph unicode="_" horiz-adv-x="842" d="M-4 -184h850v-140h-850v140z" />
<glyph unicode="`" horiz-adv-x="1182" d="M393 1548v21h219q16 -34 38 -75l44 -81l47 -78t45 -67v-27h-120q-35 28 -76 69.5t-79.5 85.5t-70 84.5t-47.5 67.5z" />
<glyph unicode="a" horiz-adv-x="1087" d="M94 307q0 164 115.5 252t351.5 96l184 7v69q0 67 -14.5 112t-42 72.5t-68 39.5t-92.5 12q-83 0 -154.5 -24t-137.5 -58l-64 137q74 40 165 68t191 28q102 0 176.5 -20.5t123 -65t72.5 -113.5t24 -167v-752h-131l-37 152h-8q-33 -45 -66 -77.5t-72 -53.5t-87 -31t-111 -10 q-69 0 -127 19.5t-100.5 60t-66.5 102t-24 145.5zM283 305q0 -92 48.5 -135t127.5 -43q61 0 113 19t90 57.5t59.5 97t21.5 137.5v99l-143 -7q-90 -4 -151 -20t-97.5 -44.5t-52.5 -69t-16 -91.5z" />
<glyph unicode="b" horiz-adv-x="1200" d="M174 0v1556h182v-376q0 -35 -1 -74.5t-3 -73.5l-4 -78h8q23 35 52 65t67.5 52t86.5 34.5t108 12.5q94 0 171 -36t131.5 -107.5t84.5 -177.5t30 -246q0 -141 -30 -247.5t-84.5 -178.5t-131.5 -108.5t-171 -36.5q-59 0 -107 13t-86.5 34.5t-68 50.5t-52.5 61h-12l-37 -139 h-133zM356 551q0 -101 13.5 -179.5t46 -132t86.5 -81t135 -27.5q135 0 198.5 109t63.5 313q0 208 -63.5 311t-200.5 103q-80 0 -133.5 -25.5t-86 -77.5t-46 -130t-13.5 -183z" />
<glyph unicode="c" horiz-adv-x="948" d="M113 543q0 157 38 266.5t104.5 178t155.5 99.5t191 31q78 0 152.5 -17t124.5 -42l-54 -154q-23 10 -51 19.5t-58 17t-59 12t-55 4.5q-157 0 -229 -100.5t-72 -312.5q0 -211 72.5 -308.5t220.5 -97.5q81 0 146.5 18.5t119.5 43.5v-162q-54 -29 -115.5 -44t-150.5 -15 q-101 0 -189 31.5t-153 100t-102 175t-37 256.5z" />
<glyph unicode="d" horiz-adv-x="1200" d="M113 547q0 141 30 247.5t85 178.5t132 108.5t170 36.5q59 0 107 -13t86.5 -35t68.5 -51t52 -61h12l-6 65l-4 53q-2 27 -2 44v436h182v-1556h-147l-27 147h-8q-22 -34 -51.5 -64.5t-68 -53.5t-86.5 -36t-108 -13q-93 0 -170 36t-132 107.5t-85 177.5t-30 246zM301 545 q0 -209 63.5 -311.5t200.5 -102.5q76 0 128.5 23t85 70t48 117.5t17.5 164.5v41q0 101 -13.5 179.5t-46 132t-86.5 81t-135 27.5q-135 0 -198.5 -109t-63.5 -313z" />
<glyph unicode="e" horiz-adv-x="1096" d="M113 541q0 136 33 243t93 181.5t143.5 113.5t184.5 39q99 0 178 -35.5t134 -100t84.5 -155t29.5 -200.5v-113h-692q5 -193 81.5 -284t227.5 -91q51 0 94.5 5t84 14.5t78.5 24t77 32.5v-162q-40 -19 -78.5 -33t-79 -23t-84 -13t-94.5 -4q-110 0 -201 37t-156.5 108 t-101.5 176t-36 240zM305 662h492q0 68 -13.5 124.5t-42 96.5t-72.5 62t-106 22q-114 0 -180.5 -78t-77.5 -227z" />
<glyph unicode="f" horiz-adv-x="674" d="M29 961v75l194 68v96q0 107 22.5 177.5t65 112.5t104.5 59.5t140 17.5q59 0 108.5 -11.5t88.5 -25.5l-47 -141q-31 11 -67.5 19.5t-76.5 8.5t-69 -9.5t-48 -33.5t-28.5 -65.5t-9.5 -106.5v-104h245v-137h-245v-961h-183v961h-194z" />
<glyph unicode="g" horiz-adv-x="1061" d="M37 -186q0 60 19.5 105.5t52.5 78.5t76.5 54t90.5 32q-42 19 -69 60t-27 94q0 61 32 105.5t101 86.5q-43 18 -78.5 49.5t-60 72t-38 88.5t-13.5 99q0 89 25 159t74 119t122 75t170 26q37 0 76.5 -5.5t66.5 -14.5h363v-113l-197 -27q28 -35 47 -89.5t19 -123.5 q0 -76 -23.5 -140.5t-71 -111.5t-117.5 -73.5t-163 -26.5q-22 0 -44 0.5t-36 3.5q-17 -10 -33.5 -22.5t-30 -28.5t-22 -36t-8.5 -44q0 -27 12 -43.5t32.5 -25.5t48.5 -12t59 -3h176q93 0 157 -23.5t104.5 -63.5t58.5 -94.5t18 -115.5q0 -88 -32.5 -158t-99.5 -118.5 t-169.5 -74.5t-241.5 -26q-107 0 -187 21t-133 61t-79.5 96.5t-26.5 127.5zM209 -180q0 -37 13 -69t42.5 -55t78 -36.5t120.5 -13.5q186 0 278.5 57.5t92.5 165.5q0 46 -12 75t-39.5 45.5t-72.5 22.5t-110 6h-176q-35 0 -73 -8t-69.5 -30t-52 -60.5t-20.5 -99.5zM301 745 q0 -115 54 -171t153 -56q100 0 151.5 55.5t51.5 174.5q0 123 -52.5 181t-152.5 58q-99 0 -152 -60t-53 -182z" />
<glyph unicode="h" horiz-adv-x="1206" d="M174 0v1556h182v-462l-8 -144h10q25 43 59.5 74.5t75.5 52.5t87 31t94 10q183 0 275.5 -95.5t92.5 -305.5v-717h-182v707q0 130 -52.5 195t-164.5 65q-81 0 -136 -26t-88.5 -77t-48 -125t-14.5 -170v-569h-182z" />
<glyph unicode="i" horiz-adv-x="530" d="M160 1395q0 60 30.5 87t75.5 27q22 0 41.5 -6.5t34 -20.5t23 -35.5t8.5 -51.5q0 -58 -31.5 -86.5t-75.5 -28.5q-45 0 -75.5 28t-30.5 87zM174 0v1098h182v-1098h-182z" />
<glyph unicode="j" horiz-adv-x="530" d="M-68 -319q26 -10 53 -15.5t62 -5.5q27 0 50 7.5t40.5 27t27 52t9.5 83.5v1268h182v-1256q0 -77 -17 -138.5t-53 -105t-90.5 -67t-129.5 -23.5q-48 0 -79.5 7t-54.5 18v148zM160 1395q0 60 30.5 87t75.5 27q22 0 41.5 -6.5t34 -20.5t23 -35.5t8.5 -51.5q0 -58 -31.5 -86.5 t-75.5 -28.5q-45 0 -75.5 28t-30.5 87z" />
<glyph unicode="k" horiz-adv-x="1016" d="M174 0v1556h180v-714l-16 -275h4l135 170l293 361h211l-401 -475l428 -623h-209l-336 504l-109 -82v-422h-180z" />
<glyph unicode="l" horiz-adv-x="530" d="M174 0v1556h182v-1556h-182z" />
<glyph unicode="m" horiz-adv-x="1835" d="M174 0v1098h148l26 -148h10q24 43 57 74.5t72.5 52.5t84 31t90.5 10q120 0 199.5 -44t117.5 -138h8q26 47 62.5 81t80 56.5t91.5 33.5t98 11q175 0 263.5 -95.5t88.5 -305.5v-717h-182v707q0 130 -50 195t-155 65q-73 0 -124 -23.5t-83.5 -69t-47.5 -113t-15 -155.5v-606 h-183v707q0 130 -49.5 195t-154.5 65q-77 0 -129 -26t-83.5 -77t-45 -125t-13.5 -170v-569h-182z" />
<glyph unicode="n" horiz-adv-x="1206" d="M174 0v1098h148l26 -148h10q25 43 59.5 74.5t75.5 52.5t87 31t94 10q183 0 275.5 -95.5t92.5 -305.5v-717h-182v707q0 130 -52.5 195t-164.5 65q-81 0 -136 -26t-88.5 -77t-48 -125t-14.5 -170v-569h-182z" />
<glyph unicode="o" horiz-adv-x="1182" d="M113 551q0 136 33.5 241.5t95.5 178t151.5 110t200.5 37.5q103 0 190 -37.5t150.5 -110t99 -178t35.5 -241.5q0 -137 -33.5 -243.5t-96 -179t-151.5 -110.5t-200 -38q-103 0 -190 38t-150.5 110.5t-99 179t-35.5 243.5zM301 551q0 -209 68.5 -314.5t222.5 -105.5 t221.5 105.5t67.5 314.5t-68.5 312.5t-222.5 103.5t-221.5 -103.5t-67.5 -312.5z" />
<glyph unicode="p" horiz-adv-x="1200" d="M174 -492v1590h148l26 -148h8q23 35 52 65.5t67.5 53t86.5 36t108 13.5q94 0 171 -36t131.5 -107.5t84.5 -177.5t30 -246q0 -141 -30 -247.5t-84.5 -178.5t-131.5 -108.5t-171 -36.5q-59 0 -107 13t-86.5 34.5t-68 50.5t-52.5 61h-12l6 -65l4 -53q2 -28 2 -44v-469h-182z M356 551q0 -101 13.5 -179.5t46 -132t86.5 -81t135 -27.5q135 0 198.5 109t63.5 313q0 208 -63.5 311t-200.5 103q-76 0 -128.5 -23t-85 -70t-48 -117t-17.5 -165v-41z" />
<glyph unicode="q" horiz-adv-x="1200" d="M113 547q0 141 30 247.5t85 178.5t132 108.5t170 36.5q59 0 107 -13.5t86 -36t68 -53t53 -65.5h8l27 148h147v-1590h-182v469q0 19 2 48l4 56l6 66h-12q-22 -34 -51.5 -64.5t-68 -53.5t-86.5 -36t-108 -13q-93 0 -170 36t-132 107.5t-85 177.5t-30 246zM301 545 q0 -209 63.5 -311.5t200.5 -102.5q76 0 128.5 23t85 70t48 117.5t17.5 164.5v41q0 101 -13.5 179.5t-46 132t-86.5 81t-135 27.5q-135 0 -198.5 -109t-63.5 -313z" />
<glyph unicode="r" horiz-adv-x="817" d="M174 0v1098h148l22 -201h8q25 43 53.5 83t64 70.5t79.5 49t100 18.5q29 0 65 -2.5t62 -7.5l-24 -168q-28 5 -57.5 8.5t-55.5 3.5q-63 0 -115 -25.5t-89.5 -73t-58 -114t-20.5 -147.5v-592h-182z" />
<glyph unicode="s" horiz-adv-x="924" d="M90 49v166q31 -16 69 -31.5t80 -27.5t86.5 -19.5t88.5 -7.5q65 0 110.5 11t74 31.5t41.5 50t13 65.5q0 31 -10 56t-36.5 49.5t-72.5 49.5t-118 56t-129.5 61t-97.5 67t-61.5 85.5t-21.5 115.5q0 70 27.5 124.5t77.5 91.5t120 56t156 19q97 0 177.5 -21t152.5 -55 l-63 -147q-65 29 -133.5 50.5t-139.5 21.5q-102 0 -151 -33.5t-49 -95.5q0 -35 11.5 -61t39.5 -49t75 -46.5t117 -52.5q72 -30 128.5 -60t96.5 -67.5t61 -85.5t21 -115q0 -80 -29 -140t-83.5 -100.5t-131.5 -60.5t-173 -20q-109 0 -187 17.5t-137 51.5z" />
<glyph unicode="t" horiz-adv-x="694" d="M33 961v81l155 78l78 230h105v-252h276v-137h-276v-637q0 -97 31.5 -146t103.5 -49q18 0 40.5 2t43.5 5t38.5 7t26.5 7v-138q-13 -6 -33 -12t-44 -10.5t-50 -7t-51 -2.5q-62 0 -115 16t-91.5 55t-60.5 105.5t-22 167.5v637h-155z" />
<glyph unicode="u" horiz-adv-x="1206" d="M164 381v717h182v-707q0 -130 53 -195t164 -65q81 0 136 26t88.5 76.5t48 124.5t14.5 170v570h182v-1098h-147l-27 147h-10q-25 -43 -59.5 -74.5t-75.5 -52t-87 -30.5t-94 -10q-91 0 -160 23t-115 72t-69.5 125t-23.5 181z" />
<glyph unicode="v" horiz-adv-x="981" d="M0 1098h188l199 -611q11 -33 26 -85l30 -106l27 -102q12 -48 17 -73h7q5 25 17 73t27 102l30 106q15 52 26 85l199 611h188l-375 -1098h-231z" />
<glyph unicode="w" horiz-adv-x="1528" d="M20 1098h191l131 -584q10 -45 20 -98l19 -104q9 -51 16 -96.5t11 -74.5h6l14 69q8 44 18 92l22 96q11 48 21 81l179 619h196l172 -619l20 -80l23 -93q11 -48 20 -92t13 -73h6q3 26 9.5 69.5t15.5 95.5t19.5 106.5t21.5 101.5l137 584h186l-284 -1098h-215l-168 616 q-4 18 -10 40.5t-12 47.5l-13 51l-12 51l-29 120h-6l-27 -121l-24 -103q-12 -53 -23 -90l-172 -612h-211z" />
<glyph unicode="x" horiz-adv-x="1024" d="M35 0l373 563l-353 535h207l250 -410l250 410h207l-355 -535l373 -563h-207l-268 436l-270 -436h-207z" />
<glyph unicode="y" horiz-adv-x="1001" d="M10 1098h189l215 -613l29 -84q14 -44 26.5 -88t21.5 -85t13 -76h6q5 25 16 68l25 92q13 48 28 95l25 80l199 611h188l-434 -1241q-28 -81 -60.5 -145.5t-75.5 -109.5t-101 -69.5t-138 -24.5q-52 0 -90 5.5t-65 11.5v145q21 -5 53 -8.5t67 -3.5q48 0 83 11.5t61 33.5 t44.5 54t33.5 73l57 160z" />
<glyph unicode="z" horiz-adv-x="903" d="M82 0v125l536 836h-503v137h688v-146l-524 -815h542v-137h-739z" />
<glyph unicode="{" horiz-adv-x="725" d="M61 492v155q125 0 190.5 43t65.5 146v333q0 78 27 133t74.5 90.5t113 52t142.5 17.5v-149q-40 -1 -72.5 -7.5t-55 -24t-34.5 -48t-12 -78.5v-332q0 -105 -59.5 -166.5t-174.5 -81.5v-12q115 -20 174.5 -81t59.5 -167v-331q0 -48 12 -78.5t34.5 -48t55 -24t72.5 -7.5v-150 q-77 1 -142.5 17.5t-113 52t-74.5 90.5t-27 133v334q0 103 -65.5 146t-190.5 43z" />
<glyph unicode="|" d="M489 -492v2048h150v-2048h-150z" />
<glyph unicode="}" horiz-adv-x="725" d="M51 -174q40 1 72.5 7.5t55 24t34.5 48t12 78.5v331q0 106 59.5 167t174.5 81v12q-115 20 -174.5 81.5t-59.5 166.5v332q0 48 -12 78.5t-34.5 48t-55 24t-72.5 7.5v149q77 -1 142.5 -17.5t113 -52t74.5 -90.5t27 -133v-333q0 -52 16.5 -88t49 -58.5t80.5 -32.5t110 -10 v-155q-125 0 -190.5 -43t-65.5 -146v-334q0 -78 -27 -133t-74.5 -90.5t-113 -52t-142.5 -17.5v150z" />
<glyph unicode="~" d="M102 586v162q100 108 248 108q29 0 54 -2.5t52.5 -9t61 -19t80.5 -32.5l64 -27q28 -11 51.5 -17.5t43.5 -9t42 -2.5q28 0 58 9.5t59.5 26t57.5 38.5t52 47v-162q-99 -108 -248 -108q-29 0 -54 2.5t-52.5 9t-61 19t-80.5 32.5l-64 27q-28 11 -50.5 17.5t-43 9t-42.5 2.5 q-28 0 -58 -9.5t-59.5 -26t-57.5 -38.5t-53 -47z" />
<glyph unicode="&#xa1;" horiz-adv-x="551" d="M147 979q0 37 10 63t27.5 43t40.5 25t49 8q27 0 50 -8t40.5 -25t27 -43t9.5 -63q0 -38 -9.5 -64.5t-27 -43t-40.5 -24t-50 -7.5q-26 0 -49 7.5t-40.5 24t-27.5 43t-10 64.5zM162 -373l51 1049h121l51 -1049h-223z" />
<glyph unicode="&#xa2;" d="M188 743q0 141 26.5 242.5t75 169.5t118 105.5t155.5 50.5v172h137v-164q72 -3 140 -19.5t114 -39.5l-53 -154q-23 10 -51 19.5t-58 17t-59.5 12t-54.5 4.5q-157 0 -229 -101t-72 -313q0 -210 72.5 -307.5t220.5 -97.5q81 0 146.5 18.5t119.5 42.5v-161q-50 -28 -105 -43 t-131 -17v-200h-137v206q-87 13 -156 50.5t-118 104t-75 166t-26 236.5z" />
<glyph unicode="&#xa3;" d="M68 0v154q44 11 80.5 31.5t63 54.5t41.5 82.5t15 115.5v213h-198v137h198v324q0 87 29.5 155.5t82 116t125.5 72.5t161 25q106 0 193 -22.5t153 -57.5l-66 -144q-56 29 -126.5 50.5t-145.5 21.5q-48 0 -89 -13.5t-71 -43t-46.5 -76.5t-16.5 -113v-295h376v-137h-376v-211 q0 -62 -11.5 -106.5t-31 -76.5t-45 -53.5t-52.5 -37.5h748v-166h-991z" />
<glyph unicode="&#xa4;" d="M123 1065l98 98l127 -129q47 32 101 50t114 18t113.5 -18t99.5 -50l129 129l99 -96l-130 -129q31 -46 49.5 -100.5t18.5 -114.5t-17.5 -115t-50.5 -100l127 -127l-96 -96l-129 127q-46 -31 -99.5 -48.5t-113.5 -17.5t-115 18t-100 50l-127 -127l-96 96l127 127 q-31 45 -48.5 99t-17.5 114q0 59 17.5 112.5t48.5 100.5zM324 723q0 -50 18.5 -93.5t51 -76t76 -51.5t93.5 -19q51 0 95.5 19t77.5 51.5t52 76t19 93.5q0 51 -19 95.5t-52 77.5t-77.5 52t-95.5 19q-50 0 -93.5 -19t-76 -52t-51 -77.5t-18.5 -95.5z" />
<glyph unicode="&#xa5;" d="M29 1462h192l342 -739l346 739h191l-385 -768h239v-137h-301v-158h301v-137h-301v-262h-178v262h-301v137h301v158h-301v137h234z" />
<glyph unicode="&#xa6;" d="M489 289h150v-781h-150v781zM489 776v780h150v-780h-150z" />
<glyph unicode="&#xa7;" horiz-adv-x="995" d="M121 55v158q31 -15 69 -30t80 -26.5t86.5 -18.5t87.5 -7q69 0 115.5 12t74 31.5t39 45t11.5 52.5q0 29 -8.5 51.5t-34 45t-72.5 47t-123 55.5q-73 31 -130.5 62t-97.5 70t-60.5 89t-20.5 117q0 51 13 92.5t35.5 73.5t51.5 54.5t60 37.5q-75 38 -117.5 95t-42.5 141 q0 61 27.5 110t77.5 83t120 52.5t156 18.5q97 0 175.5 -20t150.5 -52l-56 -139q-65 28 -135 47.5t-141 19.5q-99 0 -150 -29.5t-51 -86.5q0 -27 12 -50t40.5 -45t76 -45.5t117.5 -52.5q72 -28 128.5 -60.5t95.5 -71.5t60 -87.5t21 -110.5q0 -52 -12 -94.5t-32.5 -76.5 t-46.5 -58.5t-54 -40.5q69 -38 107 -92.5t38 -132.5q0 -71 -29.5 -126.5t-83.5 -94t-131.5 -58.5t-173.5 -20q-108 0 -186 16.5t-137 48.5zM291 831q0 -37 14 -68.5t45.5 -60.5t82 -56.5t122.5 -57.5l35 -15q20 13 40.5 31t37 41t27 51t10.5 62q0 38 -13 70t-45.5 61.5 t-86.5 58t-136 58.5q-25 -8 -48.5 -23.5t-42.5 -38t-30.5 -51.5t-11.5 -62z" />
<glyph unicode="&#xa8;" horiz-adv-x="1182" d="M307 1395q0 54 28 78t68 24q39 0 68 -24.5t29 -77.5t-29 -78t-68 -25q-40 0 -68 25t-28 78zM682 1395q0 54 28 78t68 24q19 0 36.5 -6t30.5 -18.5t21 -31.5t8 -46q0 -53 -29 -78t-67 -25q-40 0 -68 25t-28 78z" />
<glyph unicode="&#xa9;" horiz-adv-x="1704" d="M100 731q0 104 27 200t75.5 179.5t117.5 152.5t152.5 117.5t179.5 75.5t200 27t200 -27t179.5 -75.5t152.5 -117.5t117.5 -152.5t75.5 -179.5t27 -200t-27 -200t-75.5 -179.5t-117.5 -152t-152.5 -117.5t-179.5 -75.5t-200 -26.5t-200 26.5t-179.5 75.5t-152.5 117.5 t-117.5 152t-75.5 179.5t-27 200zM209 731q0 -133 50.5 -250t138 -204.5t204.5 -138t250 -50.5t250 50.5t204.5 138t138 204.5t50.5 250t-50.5 250t-138 204.5t-204.5 138t-250 50.5t-250 -50.5t-204.5 -138t-138 -204.5t-50.5 -250zM479 733q0 101 27 184.5t79.5 143.5 t129 93.5t176.5 33.5q63 0 129 -16.5t125 -45.5l-62 -127q-52 26 -100.5 40t-91.5 14q-61 0 -108 -22t-79 -63.5t-48.5 -101.5t-16.5 -135q0 -78 14.5 -138t45 -101t78 -62.5t114.5 -21.5q23 0 50 3.5t55.5 9.5t56.5 14.5t53 17.5v-131q-24 -11 -48.5 -20t-51 -16 t-56.5 -10.5t-65 -3.5q-102 0 -178 33t-126.5 94t-76 146t-25.5 188z" />
<glyph unicode="&#xaa;" horiz-adv-x="678" d="M68 989q0 102 70.5 156t213.5 59l99 4v31q0 72 -30.5 100.5t-86.5 28.5q-48 0 -93 -14.5t-87 -36.5l-48 100q51 26 109.5 44t118.5 18q125 0 184.5 -53t59.5 -175v-454h-91l-28 82q-18 -22 -37.5 -39.5t-43 -30t-51.5 -19t-63 -6.5q-43 0 -79 13t-62 38.5t-40.5 64 t-14.5 89.5zM199 987q0 -51 25 -73.5t67 -22.5q34 0 63 10.5t50.5 32.5t34 54.5t12.5 76.5v49l-74 -4q-51 -3 -85 -12t-54.5 -24t-29.5 -36.5t-9 -50.5z" />
<glyph unicode="&#xab;" horiz-adv-x="997" d="M82 526v27l309 414l117 -78l-238 -348l238 -348l-117 -78zM489 526v27l310 414l116 -78l-237 -348l237 -348l-116 -78z" />
<glyph unicode="&#xac;" d="M102 647v150h924v-535h-149v385h-775z" />
<glyph unicode="&#xad;" horiz-adv-x="659" d="M82 465v168h496v-168h-496z" />
<glyph unicode="&#xae;" horiz-adv-x="1704" d="M100 731q0 104 27 200t75.5 179.5t117.5 152.5t152.5 117.5t179.5 75.5t200 27t200 -27t179.5 -75.5t152.5 -117.5t117.5 -152.5t75.5 -179.5t27 -200t-27 -200t-75.5 -179.5t-117.5 -152t-152.5 -117.5t-179.5 -75.5t-200 -26.5t-200 26.5t-179.5 75.5t-152.5 117.5 t-117.5 152t-75.5 179.5t-27 200zM209 731q0 -133 50.5 -250t138 -204.5t204.5 -138t250 -50.5t250 50.5t204.5 138t138 204.5t50.5 250t-50.5 250t-138 204.5t-204.5 138t-250 50.5t-250 -50.5t-204.5 -138t-138 -204.5t-50.5 -250zM586 285v893h233q168 0 247 -65t79 -200 q0 -48 -13.5 -85.5t-36 -66t-51 -48.5t-59.5 -33l120 -197l44 -73l37 -63l27 -45l10 -17h-179l-206 352h-95v-352h-157zM743 768h72q91 0 130.5 36t39.5 105q0 74 -41.5 103.5t-130.5 29.5h-70v-274z" />
<glyph unicode="&#xaf;" horiz-adv-x="1024" d="M-6 1556v140h1036v-140h-1036z" />
<glyph unicode="&#xb0;" horiz-adv-x="877" d="M123 1167q0 65 25 122.5t67.5 100.5t100 68t122.5 25t122.5 -25t100.5 -68t68 -100.5t25 -122.5t-25 -122t-68 -99.5t-100.5 -67t-122.5 -24.5t-122.5 24.5t-100 67t-67.5 99.5t-25 122zM246 1167q0 -39 15 -73.5t41 -60.5t61 -41t75 -15t75 15t61.5 41t41.5 60.5 t15 73.5q0 40 -15 75.5t-41.5 62t-61.5 42t-75 15.5t-75 -15.5t-61 -42t-41 -62t-15 -75.5z" />
<glyph unicode="&#xb1;" d="M102 0v150h924v-150h-924zM102 647v150h387v389h150v-389h387v-150h-387v-385h-150v385h-387z" />
<glyph unicode="&#xb2;" horiz-adv-x="678" d="M49 586v112l209 228q57 62 93 104.5t56 76t27.5 63t7.5 63.5q0 65 -33 97t-87 32q-51 0 -97.5 -25t-91.5 -63l-78 94q54 48 120.5 80.5t148.5 32.5q60 0 108.5 -16.5t82.5 -48t52.5 -77t18.5 -102.5q0 -50 -14.5 -93t-41.5 -85.5t-66 -88.5l-91 -100l-148 -157h396v-127 h-572z" />
<glyph unicode="&#xb3;" horiz-adv-x="678" d="M31 625v133q63 -34 129 -53t119 -19q98 0 142 41.5t44 114.5q0 74 -53.5 107.5t-149.5 33.5h-98v113h98q92 0 134 39.5t42 103.5q0 32 -10 55.5t-27.5 38.5t-41 22t-50.5 7q-59 0 -107.5 -20.5t-99.5 -57.5l-69 96q29 23 59.5 41.5t64.5 31.5t72 20.5t82 7.5 q69 0 121.5 -17t87.5 -47t52.5 -71.5t17.5 -90.5q0 -78 -40.5 -131t-109.5 -77q88 -23 132 -76t44 -131q0 -60 -20 -110t-61.5 -85.5t-104.5 -55.5t-149 -20q-70 0 -131.5 12.5t-118.5 43.5z" />
<glyph unicode="&#xb4;" horiz-adv-x="1182" d="M393 1241v27q22 29 45 67l48 79q23 40 44 80.5t37 74.5h219v-21q-16 -27 -47.5 -67.5t-70 -84.5t-79 -85.5t-75.5 -69.5h-121z" />
<glyph unicode="&#xb5;" horiz-adv-x="1217" d="M174 -492v1590h182v-707q0 -130 53 -195t164 -65q82 0 137 26t88.5 76.5t47.5 124.5t14 170v570h182v-1098h-147l-27 147h-10q-48 -83 -120 -125t-175 -42q-72 0 -125 23t-88 65q1 -38 3 -78q2 -35 2.5 -77.5t0.5 -84.5v-320h-182z" />
<glyph unicode="&#xb6;" horiz-adv-x="1341" d="M113 1042q0 147 32.5 245.5t92 158.5t142.5 85t183 25h563v-1816h-120v1657h-207v-1657h-121v819q-61 -18 -146 -18q-95 0 -172.5 25.5t-132 84.5t-84.5 155t-30 236z" />
<glyph unicode="&#xb7;" horiz-adv-x="549" d="M147 723q0 38 10 64.5t27 43t40 24t50 7.5q26 0 49.5 -7.5t40.5 -24t27 -43t10 -64.5q0 -37 -10 -63t-27 -43t-40.5 -25t-49.5 -8q-27 0 -50 8t-40 25t-27 43t-10 63z" />
<glyph unicode="&#xb8;" horiz-adv-x="420" d="M35 -375q15 -3 39.5 -4.5t40.5 -1.5q71 0 111 21.5t40 70.5q0 24 -13 41.5t-36 30.5t-54.5 22.5t-68.5 18.5l90 176h121l-57 -115q34 -8 63 -21t50.5 -33.5t34 -49.5t12.5 -68q0 -97 -70.5 -151t-220.5 -54q-22 0 -44.5 3t-37.5 6v108z" />
<glyph unicode="&#xb9;" horiz-adv-x="678" d="M63 1274l244 188h135v-876h-145v516q0 25 0.5 55t2.5 60l3 58q1 28 2 50q-14 -17 -33 -37t-41 -37l-94 -73z" />
<glyph unicode="&#xba;" horiz-adv-x="717" d="M66 1133q0 83 20.5 147.5t58.5 108.5t92.5 67t122.5 23q62 0 115.5 -23t92.5 -67t61 -108.5t22 -147.5t-20.5 -148t-59 -109.5t-93 -68t-122.5 -23.5q-63 0 -116 23.5t-92 68t-60.5 109.5t-21.5 148zM197 1133q0 -119 37.5 -179.5t123.5 -60.5q85 0 122.5 60.5 t37.5 179.5q0 120 -37.5 177.5t-122.5 57.5q-86 0 -123.5 -57.5t-37.5 -177.5z" />
<glyph unicode="&#xbb;" horiz-adv-x="997" d="M84 193l238 348l-238 348l117 78l309 -414v-27l-309 -411zM492 193l237 348l-237 348l116 78l310 -414v-27l-310 -411z" />
<glyph unicode="&#xbc;" horiz-adv-x="1509" d="M63 1274l244 188h135v-876h-145v516q0 25 0.5 55t2.5 60l2 58q2 28 3 50q-14 -17 -33 -37t-41 -37l-94 -73zM234 0l811 1462h157l-811 -1462h-157zM776 193v111l377 579h141v-563h125v-127h-125v-192h-143v192h-375zM922 320h229v195q0 42 1.5 91.5t4.5 98.5 q-5 -11 -15 -29l-21 -40q-11 -21 -23 -41l-21 -35z" />
<glyph unicode="&#xbd;" horiz-adv-x="1509" d="M44 1274l244 188h135v-876h-145v516q0 25 0.5 55t1.5 60l4 58q1 28 2 50q-14 -17 -33 -37t-41 -37l-94 -73zM213 0l811 1462h157l-811 -1462h-157zM868 1v112l209 228q57 62 93 104.5t56 76t27.5 63t7.5 63.5q0 65 -33 97t-87 32q-51 0 -97.5 -25t-91.5 -63l-78 94 q54 48 120.5 80.5t148.5 32.5q60 0 108.5 -16.5t82.5 -48t52.5 -77t18.5 -102.5q0 -50 -14.5 -93t-41.5 -85.5t-67 -87.5l-90 -101l-148 -157h396v-127h-572z" />
<glyph unicode="&#xbe;" horiz-adv-x="1509" d="M31 625v133q63 -34 129 -53t119 -19q98 0 142 41.5t44 114.5q0 74 -53.5 107.5t-149.5 33.5h-98v113h98q92 0 134 39.5t42 103.5q0 32 -10 55.5t-27.5 38.5t-41 22t-50.5 7q-59 0 -107.5 -20.5t-99.5 -57.5l-69 96q29 23 59.5 41.5t64.5 31.5t72 20.5t82 7.5 q69 0 121.5 -17t87.5 -47t52.5 -71.5t17.5 -90.5q0 -78 -40.5 -131t-109.5 -77q88 -23 132 -76t44 -131q0 -60 -20 -110t-61.5 -85.5t-104.5 -55.5t-149 -20q-70 0 -131.5 12.5t-118.5 43.5zM328 0l811 1462h157l-811 -1462h-157zM843 193v111l377 579h141v-563h125v-127 h-125v-192h-143v192h-375zM989 320h229v195q0 42 1.5 91.5t4.5 98.5q-5 -11 -15 -29l-21 -40q-11 -21 -23 -41l-21 -35z" />
<glyph unicode="&#xbf;" horiz-adv-x="872" d="M68 -20q0 68 13.5 120t40 97t67 87t94.5 89q52 45 85 78.5t52 64.5t26 64.5t7 76.5v19h139v-37q0 -58 -8 -103.5t-27.5 -86t-52 -78.5t-82.5 -80q-48 -41 -82 -74.5t-55.5 -68t-32 -74t-10.5 -92.5q0 -48 15 -87.5t43.5 -68t71 -44t97.5 -15.5q84 0 159 25.5t144 60.5 l64 -146q-82 -42 -176 -71t-191 -29q-93 0 -167.5 25.5t-126 73.5t-79.5 117t-28 157zM385 979q0 37 10 63t27.5 43t40.5 25t49 8q27 0 50 -8t40.5 -25t27 -43t9.5 -63q0 -38 -9.5 -64.5t-27 -43t-40.5 -24t-50 -7.5q-26 0 -49 7.5t-40.5 24t-27.5 43t-10 64.5z" />
<glyph unicode="&#xc0;" horiz-adv-x="1245" d="M0 0l537 1468h170l538 -1468h-190l-160 453h-545l-162 -453h-188zM326 1886v21h219l37 -75l45 -80q23 -41 47 -79t45 -67v-27h-120q-35 28 -76 69.5t-79.5 85.5t-70 84.5t-47.5 67.5zM410 618h426l-148 424l-14 44l-18 56l-18 62l-17 64q-7 -31 -16 -64l-18 -64l-17 -56 l-15 -42z" />
<glyph unicode="&#xc1;" horiz-adv-x="1245" d="M0 0l537 1468h170l538 -1468h-190l-160 453h-545l-162 -453h-188zM410 618h426l-148 424l-14 44l-18 56l-18 62l-17 64q-7 -31 -16 -64l-18 -64l-17 -56l-15 -42zM534 1579v27q22 29 46 67l46 79q24 40 45 80.5t37 74.5h219v-21q-16 -27 -47.5 -67.5t-70 -84.5t-79 -85.5 t-75.5 -69.5h-121z" />
<glyph unicode="&#xc2;" horiz-adv-x="1245" d="M0 0l537 1468h170l538 -1468h-190l-160 453h-545l-162 -453h-188zM289 1579v27l60 67l67 79q34 40 63.5 80.5t45.5 74.5h192q16 -34 45.5 -74.5t63.5 -80.5l68 -79l59 -67v-27h-121q-51 34 -105 82.5t-106 103.5q-54 -55 -107 -103.5t-104 -82.5h-121zM410 618h426 l-148 424l-14 44l-18 56l-18 62l-17 64q-7 -31 -16 -64l-18 -64l-17 -56l-15 -42z" />
<glyph unicode="&#xc3;" horiz-adv-x="1245" d="M0 0l537 1468h170l538 -1468h-190l-160 453h-545l-162 -453h-188zM264 1579q5 60 21.5 109t43 83.5t63.5 53t83 18.5q42 0 82.5 -17.5t78.5 -38.5l72 -39q35 -17 64 -17q45 0 68 26t38 88h105q-5 -60 -21.5 -108.5t-43 -83t-63.5 -53.5t-83 -19q-40 0 -79.5 17.5 t-77.5 39t-73 39t-67 17.5q-45 0 -69 -26.5t-38 -88.5h-104zM410 618h426l-148 424l-14 44l-18 56l-18 62l-17 64q-7 -31 -16 -64l-18 -64l-17 -56l-15 -42z" />
<glyph unicode="&#xc4;" horiz-adv-x="1245" d="M0 0l537 1468h170l538 -1468h-190l-160 453h-545l-162 -453h-188zM340 1733q0 54 28 78t68 24q39 0 68 -24.5t29 -77.5t-29 -78t-68 -25q-40 0 -68 25t-28 78zM410 618h426l-148 424l-14 44l-18 56l-18 62l-17 64q-7 -31 -16 -64l-18 -64l-17 -56l-15 -42zM715 1733 q0 54 28 78t68 24q19 0 36.5 -6t30.5 -18.5t21 -31.5t8 -46q0 -53 -29 -78t-67 -25q-40 0 -68 25t-28 78z" />
<glyph unicode="&#xc5;" horiz-adv-x="1245" d="M0 0l537 1468h170l538 -1468h-190l-160 453h-545l-162 -453h-188zM396 1581q0 51 16 90.5t45.5 67.5t70.5 42.5t91 14.5q48 0 90 -14.5t73 -42t48.5 -67t17.5 -89.5q0 -51 -17.5 -91.5t-48 -68.5t-72.5 -42.5t-91 -14.5q-50 0 -91 14.5t-70.5 42.5t-45.5 67.5t-16 90.5z M410 618h426l-148 424l-14 44l-18 56l-18 62l-17 64q-7 -31 -16 -64l-18 -64l-17 -56l-15 -42zM506 1581q0 -53 28.5 -83t84.5 -30q49 0 80.5 30t31.5 83t-31.5 83t-80.5 30q-50 0 -81.5 -30t-31.5 -83z" />
<glyph unicode="&#xc6;" horiz-adv-x="1745" d="M-2 0l655 1462h969v-164h-573v-452h534v-162h-534v-520h573v-164h-760v453h-475l-203 -453h-186zM459 618h403v680h-108z" />
<glyph unicode="&#xc7;" horiz-adv-x="1235" d="M125 733q0 166 43.5 304t128 237t209.5 154t287 55q108 0 206 -22t177 -64l-78 -156q-63 32 -137 55t-168 23q-107 0 -194 -40.5t-148.5 -116.5t-95 -185t-33.5 -246q0 -141 29.5 -250.5t88.5 -184.5t147 -114t206 -39q89 0 169 17.5t158 40.5v-162q-39 -15 -78 -26.5 t-81.5 -18.5t-91 -10.5t-107.5 -3.5q-164 0 -284 54t-198.5 153t-116.5 238t-38 308zM543 -375q15 -3 39.5 -4.5t40.5 -1.5q71 0 111 21.5t40 70.5q0 24 -13 41.5t-36 30.5t-54.5 22.5t-68.5 18.5l90 176h121l-57 -115q34 -8 63 -21t50.5 -33.5t34 -49.5t12.5 -68 q0 -97 -70.5 -151t-220.5 -54q-22 0 -44.5 3t-37.5 6v108z" />
<glyph unicode="&#xc8;" horiz-adv-x="1081" d="M199 0v1462h759v-164h-573v-452h535v-162h-535v-520h573v-164h-759zM320 1886v21h219l37 -75l45 -80q23 -41 47 -79t45 -67v-27h-120q-35 28 -76 69.5t-79.5 85.5t-70 84.5t-47.5 67.5z" />
<glyph unicode="&#xc9;" horiz-adv-x="1081" d="M199 0v1462h759v-164h-573v-452h535v-162h-535v-520h573v-164h-759zM456 1579v27q22 29 46 67l46 79q24 40 45 80.5t37 74.5h219v-21q-16 -27 -47.5 -67.5t-70 -84.5t-79 -85.5t-75.5 -69.5h-121z" />
<glyph unicode="&#xca;" horiz-adv-x="1081" d="M199 0v1462h759v-164h-573v-452h535v-162h-535v-520h573v-164h-759zM243 1579v27l60 67l67 79q34 40 63.5 80.5t45.5 74.5h192q16 -34 45.5 -74.5t63.5 -80.5l68 -79l59 -67v-27h-121q-51 34 -105 82.5t-106 103.5q-54 -55 -107 -103.5t-104 -82.5h-121z" />
<glyph unicode="&#xcb;" horiz-adv-x="1081" d="M199 0v1462h759v-164h-573v-452h535v-162h-535v-520h573v-164h-759zM296 1733q0 54 28 78t68 24q39 0 68 -24.5t29 -77.5t-29 -78t-68 -25q-40 0 -68 25t-28 78zM671 1733q0 54 28 78t68 24q19 0 36.5 -6t30.5 -18.5t21 -31.5t8 -46q0 -53 -29 -78t-67 -25q-40 0 -68 25 t-28 78z" />
<glyph unicode="&#xcc;" horiz-adv-x="694" d="M62 1886v21h219l37 -75l45 -80q23 -41 47 -79t45 -67v-27h-120q-35 28 -76 69.5t-79.5 85.5t-70 84.5t-47.5 67.5zM82 0v102l172 41v1176l-172 41v102h530v-102l-172 -41v-1176l172 -41v-102h-530z" />
<glyph unicode="&#xcd;" horiz-adv-x="694" d="M82 0v102l172 41v1176l-172 41v102h530v-102l-172 -41v-1176l172 -41v-102h-530zM257 1579v27q22 29 45 67l48 79q23 40 44 80.5t37 74.5h219v-21q-16 -27 -47.5 -67.5t-70 -84.5t-79 -85.5t-75.5 -69.5h-121z" />
<glyph unicode="&#xce;" horiz-adv-x="694" d="M17 1579v27l60 67l67 79q34 40 63.5 80.5t45.5 74.5h192q16 -34 45.5 -74.5t63.5 -80.5l68 -79l59 -67v-27h-121q-51 34 -105 82.5t-106 103.5q-54 -55 -107 -103.5t-104 -82.5h-121zM82 0v102l172 41v1176l-172 41v102h530v-102l-172 -41v-1176l172 -41v-102h-530z" />
<glyph unicode="&#xcf;" horiz-adv-x="694" d="M64 1733q0 54 28 78t68 24q39 0 68 -24.5t29 -77.5t-29 -78t-68 -25q-40 0 -68 25t-28 78zM82 0v102l172 41v1176l-172 41v102h530v-102l-172 -41v-1176l172 -41v-102h-530zM439 1733q0 54 28 78t68 24q19 0 36.5 -6t30.5 -18.5t21 -31.5t8 -46q0 -53 -29 -78t-67 -25 q-40 0 -68 25t-28 78z" />
<glyph unicode="&#xd0;" horiz-adv-x="1401" d="M47 643v162h152v657h407q153 0 277 -46t211 -136.5t134.5 -224.5t47.5 -310q0 -185 -48 -324.5t-139 -233t-223.5 -140.5t-300.5 -47h-366v643h-152zM385 160h162q264 0 398 146t134 433q0 146 -33 252.5t-96 175.5t-155 102.5t-209 33.5h-201v-498h336v-162h-336v-483z " />
<glyph unicode="&#xd1;" horiz-adv-x="1493" d="M199 0v1462h213l716 -1204h7q-3 76 -7 150l-2 66l-4 66q-1 34 -1.5 65t-0.5 57v800h174v-1462h-215l-719 1210h-8q6 -77 10 -153q4 -65 6.5 -136t2.5 -128v-793h-172zM397 1579q5 60 21.5 109t43 83.5t63.5 53t83 18.5q42 0 82.5 -17.5t78.5 -38.5l73 -39q34 -17 63 -17 q45 0 68 26t38 88h105q-5 -60 -21.5 -108.5t-43 -83t-63.5 -53.5t-83 -19q-40 0 -79.5 17.5t-77.5 39t-73 39t-67 17.5q-45 0 -69 -26.5t-38 -88.5h-104z" />
<glyph unicode="&#xd2;" horiz-adv-x="1520" d="M125 735q0 170 38 308.5t117 236.5t199 151.5t283 53.5q155 0 272.5 -53.5t197.5 -152t120.5 -237t40.5 -309.5q0 -169 -40.5 -308t-120.5 -238t-198.5 -153t-273.5 -54q-163 0 -282.5 54t-198 153t-116.5 238.5t-38 309.5zM322 733q0 -137 26 -246.5t79.5 -186t136 -117 t196.5 -40.5t196.5 40.5t136 117t78.5 186t25 246.5q0 138 -25 247t-78 184.5t-135 116t-196 40.5t-197 -40.5t-137 -116t-80 -184.5t-26 -247zM477 1886v21h219q16 -34 38 -75l44 -80q23 -41 47 -79t45 -67v-27h-120q-35 28 -76 69.5t-79.5 85.5t-70 84.5t-47.5 67.5z" />
<glyph unicode="&#xd3;" horiz-adv-x="1520" d="M125 735q0 170 38 308.5t117 236.5t199 151.5t283 53.5q155 0 272.5 -53.5t197.5 -152t120.5 -237t40.5 -309.5q0 -169 -40.5 -308t-120.5 -238t-198.5 -153t-273.5 -54q-163 0 -282.5 54t-198 153t-116.5 238.5t-38 309.5zM322 733q0 -137 26 -246.5t79.5 -186t136 -117 t196.5 -40.5t196.5 40.5t136 117t78.5 186t25 246.5q0 138 -25 247t-78 184.5t-135 116t-196 40.5t-197 -40.5t-137 -116t-80 -184.5t-26 -247zM651 1579v27q22 29 45 67l48 79q23 40 44 80.5t37 74.5h219v-21q-16 -27 -47.5 -67.5t-70 -84.5t-79 -85.5t-75.5 -69.5h-121z " />
<glyph unicode="&#xd4;" horiz-adv-x="1520" d="M125 735q0 170 38 308.5t117 236.5t199 151.5t283 53.5q155 0 272.5 -53.5t197.5 -152t120.5 -237t40.5 -309.5q0 -169 -40.5 -308t-120.5 -238t-198.5 -153t-273.5 -54q-163 0 -282.5 54t-198 153t-116.5 238.5t-38 309.5zM322 733q0 -137 26 -246.5t79.5 -186t136 -117 t196.5 -40.5t196.5 40.5t136 117t78.5 186t25 246.5q0 138 -25 247t-78 184.5t-135 116t-196 40.5t-197 -40.5t-137 -116t-80 -184.5t-26 -247zM432 1579v27l60 67l68 79q33 40 62.5 80.5t45.5 74.5h192q16 -34 45.5 -74.5t62.5 -80.5l68 -79l60 -67v-27h-121 q-51 34 -105 82.5t-106 103.5q-54 -55 -107 -103.5t-104 -82.5h-121z" />
<glyph unicode="&#xd5;" horiz-adv-x="1520" d="M125 735q0 170 38 308.5t117 236.5t199 151.5t283 53.5q155 0 272.5 -53.5t197.5 -152t120.5 -237t40.5 -309.5q0 -169 -40.5 -308t-120.5 -238t-198.5 -153t-273.5 -54q-163 0 -282.5 54t-198 153t-116.5 238.5t-38 309.5zM322 733q0 -137 26 -246.5t79.5 -186t136 -117 t196.5 -40.5t196.5 40.5t136 117t78.5 186t25 246.5q0 138 -25 247t-78 184.5t-135 116t-196 40.5t-197 -40.5t-137 -116t-80 -184.5t-26 -247zM383 1579q5 60 21.5 109t43 83.5t63.5 53t83 18.5q42 0 82.5 -17.5t78.5 -38.5l73 -39q34 -17 63 -17q45 0 68 26t38 88h105 q-5 -60 -21.5 -108.5t-43 -83t-63.5 -53.5t-83 -19q-40 0 -79.5 17.5t-77.5 39t-73 39t-67 17.5q-45 0 -69 -26.5t-38 -88.5h-104z" />
<glyph unicode="&#xd6;" horiz-adv-x="1520" d="M125 735q0 170 38 308.5t117 236.5t199 151.5t283 53.5q155 0 272.5 -53.5t197.5 -152t120.5 -237t40.5 -309.5q0 -169 -40.5 -308t-120.5 -238t-198.5 -153t-273.5 -54q-163 0 -282.5 54t-198 153t-116.5 238.5t-38 309.5zM322 733q0 -137 26 -246.5t79.5 -186t136 -117 t196.5 -40.5t196.5 40.5t136 117t78.5 186t25 246.5q0 138 -25 247t-78 184.5t-135 116t-196 40.5t-197 -40.5t-137 -116t-80 -184.5t-26 -247zM477 1733q0 54 28 78t68 24q39 0 68 -24.5t29 -77.5t-29 -78t-68 -25q-40 0 -68 25t-28 78zM852 1733q0 54 28 78t68 24 q19 0 36.5 -6t30.5 -18.5t21 -31.5t8 -46q0 -53 -29 -78t-67 -25q-40 0 -68 25t-28 78z" />
<glyph unicode="&#xd7;" d="M141 1042l105 105l317 -318l322 318l104 -103l-321 -321l319 -320l-102 -102l-322 317l-317 -315l-103 103l316 317z" />
<glyph unicode="&#xd8;" horiz-adv-x="1520" d="M125 735q0 170 38 308.5t117 236.5t199 151.5t283 53.5q94 0 174.5 -21t146.5 -59l80 127l137 -78l-92 -149q91 -99 138 -244t47 -328q0 -169 -40.5 -308t-120.5 -238t-198.5 -153t-273.5 -54q-189 0 -322 71l-78 -127l-137 78l90 145q-97 100 -142.5 249t-45.5 339z M322 733q0 -131 23 -235.5t71 -182.5l579 945q-48 29 -105 45t-128 16q-114 0 -197 -40.5t-137 -116t-80 -184.5t-26 -247zM530 201q47 -28 104 -43t126 -15q114 0 196.5 40.5t136 117t78.5 186t25 246.5q0 257 -88 408z" />
<glyph unicode="&#xd9;" horiz-adv-x="1430" d="M184 520v942h187v-952q0 -175 86.5 -271t261.5 -96q89 0 153 27t105 76t61 117t21 149v952h186v-948q0 -114 -33 -212t-99.5 -170t-167 -113t-236.5 -41q-128 0 -226 38.5t-164.5 109.5t-100.5 170.5t-34 221.5zM454 1886v21h219l37 -75l45 -80q23 -41 47 -79t45 -67v-27 h-120q-35 28 -76 69.5t-79.5 85.5t-70 84.5t-47.5 67.5z" />
<glyph unicode="&#xda;" horiz-adv-x="1430" d="M184 520v942h187v-952q0 -175 86.5 -271t261.5 -96q89 0 153 27t105 76t61 117t21 149v952h186v-948q0 -114 -33 -212t-99.5 -170t-167 -113t-236.5 -41q-128 0 -226 38.5t-164.5 109.5t-100.5 170.5t-34 221.5zM590 1579v27q22 29 46 67l46 79q24 40 45 80.5t37 74.5 h219v-21q-16 -27 -47.5 -67.5t-70 -84.5t-79 -85.5t-75.5 -69.5h-121z" />
<glyph unicode="&#xdb;" horiz-adv-x="1430" d="M184 520v942h187v-952q0 -175 86.5 -271t261.5 -96q89 0 153 27t105 76t61 117t21 149v952h186v-948q0 -114 -33 -212t-99.5 -170t-167 -113t-236.5 -41q-128 0 -226 38.5t-164.5 109.5t-100.5 170.5t-34 221.5zM379 1579v27l60 67l67 79q34 40 63.5 80.5t45.5 74.5h192 q16 -34 45.5 -74.5t63.5 -80.5l68 -79l59 -67v-27h-121q-51 34 -105 82.5t-106 103.5q-54 -55 -107 -103.5t-104 -82.5h-121z" />
<glyph unicode="&#xdc;" horiz-adv-x="1430" d="M184 520v942h187v-952q0 -175 86.5 -271t261.5 -96q89 0 153 27t105 76t61 117t21 149v952h186v-948q0 -114 -33 -212t-99.5 -170t-167 -113t-236.5 -41q-128 0 -226 38.5t-164.5 109.5t-100.5 170.5t-34 221.5zM432 1733q0 54 28 78t68 24q39 0 68 -24.5t29 -77.5 t-29 -78t-68 -25q-40 0 -68 25t-28 78zM807 1733q0 54 28 78t68 24q19 0 36.5 -6t30.5 -18.5t21 -31.5t8 -46q0 -53 -29 -78t-67 -25q-40 0 -68 25t-28 78z" />
<glyph unicode="&#xdd;" horiz-adv-x="1079" d="M0 1462h203l336 -739l340 739h200l-446 -893v-569h-187v559zM442 1579v27q22 29 46 67l46 79q24 40 45 80.5t37 74.5h219v-21q-16 -27 -47.5 -67.5t-70 -84.5t-79 -85.5t-75.5 -69.5h-121z" />
<glyph unicode="&#xde;" horiz-adv-x="1180" d="M199 0v1462h186v-252h176q134 0 231 -28.5t160 -83t93 -134.5t30 -182q0 -91 -27.5 -175t-90.5 -148.5t-166.5 -103t-255.5 -38.5h-150v-317h-186zM385 475h129q93 0 162.5 16t115 51.5t68.5 92t23 137.5q0 143 -82 211t-256 68h-160v-576z" />
<glyph unicode="&#xdf;" horiz-adv-x="1233" d="M174 0v1200q0 104 31.5 174.5t88 113t134.5 61t170 18.5t168 -19t130 -57t84 -96t30 -135q0 -57 -21.5 -101.5t-53 -81t-69.5 -66.5l-68 -57q-32 -28 -53.5 -55t-21.5 -57q0 -21 7 -37.5t26.5 -36t54.5 -43.5l92 -63q56 -37 100 -73t74.5 -77t47 -89t16.5 -110 q0 -87 -28 -150t-78.5 -103.5t-121 -60t-155.5 -19.5q-97 0 -166.5 17.5t-122.5 51.5v166q26 -16 58.5 -31.5t68.5 -27.5t74 -19.5t75 -7.5q56 0 96.5 12.5t66.5 35t38 54.5t12 72q0 36 -8.5 65.5t-30 57.5t-57.5 57t-92 64q-63 40 -105.5 74t-69 67.5t-37.5 68.5t-11 77 q0 54 20.5 93.5t51.5 71t67 58.5t67 56t51.5 62.5t20.5 77.5q0 42 -16.5 73t-46.5 51.5t-71.5 30t-92.5 9.5q-49 0 -93 -9.5t-77 -33.5t-52.5 -65.5t-19.5 -106.5v-1202h-182z" />
<glyph unicode="&#xe0;" horiz-adv-x="1087" d="M94 307q0 164 115.5 252t351.5 96l184 7v69q0 67 -14.5 112t-42 72.5t-68 39.5t-92.5 12q-83 0 -154.5 -24t-137.5 -58l-64 137q74 40 165 68t191 28q102 0 176.5 -20.5t123 -65t72.5 -113.5t24 -167v-752h-131l-37 152h-8q-33 -45 -66 -77.5t-72 -53.5t-87 -31t-111 -10 q-69 0 -127 19.5t-100.5 60t-66.5 102t-24 145.5zM283 305q0 -92 48.5 -135t127.5 -43q61 0 113 19t90 57.5t59.5 97t21.5 137.5v99l-143 -7q-90 -4 -151 -20t-97.5 -44.5t-52.5 -69t-16 -91.5zM285 1548v21h219q16 -34 38 -75l44 -80q23 -41 47 -79t45 -67v-27h-120 q-35 28 -76 69.5t-79.5 85.5t-70 84.5t-47.5 67.5z" />
<glyph unicode="&#xe1;" horiz-adv-x="1087" d="M94 307q0 164 115.5 252t351.5 96l184 7v69q0 67 -14.5 112t-42 72.5t-68 39.5t-92.5 12q-83 0 -154.5 -24t-137.5 -58l-64 137q74 40 165 68t191 28q102 0 176.5 -20.5t123 -65t72.5 -113.5t24 -167v-752h-131l-37 152h-8q-33 -45 -66 -77.5t-72 -53.5t-87 -31t-111 -10 q-69 0 -127 19.5t-100.5 60t-66.5 102t-24 145.5zM283 305q0 -92 48.5 -135t127.5 -43q61 0 113 19t90 57.5t59.5 97t21.5 137.5v99l-143 -7q-90 -4 -151 -20t-97.5 -44.5t-52.5 -69t-16 -91.5zM446 1241v27q22 29 46 67l46 79q24 40 45 80.5t37 74.5h219v-21 q-16 -27 -47.5 -67.5t-70 -84.5t-79 -85.5t-75.5 -69.5h-121z" />
<glyph unicode="&#xe2;" horiz-adv-x="1087" d="M94 307q0 164 115.5 252t351.5 96l184 7v69q0 67 -14.5 112t-42 72.5t-68 39.5t-92.5 12q-83 0 -154.5 -24t-137.5 -58l-64 137q74 40 165 68t191 28q102 0 176.5 -20.5t123 -65t72.5 -113.5t24 -167v-752h-131l-37 152h-8q-33 -45 -66 -77.5t-72 -53.5t-87 -31t-111 -10 q-69 0 -127 19.5t-100.5 60t-66.5 102t-24 145.5zM228 1241v27l60 67l68 79q33 40 62.5 80.5t45.5 74.5h192q16 -34 45.5 -74.5t62.5 -80.5l68 -79l60 -67v-27h-121q-51 34 -105 82.5t-106 103.5q-54 -55 -107 -103.5t-104 -82.5h-121zM283 305q0 -92 48.5 -135t127.5 -43 q61 0 113 19t90 57.5t59.5 97t21.5 137.5v99l-143 -7q-90 -4 -151 -20t-97.5 -44.5t-52.5 -69t-16 -91.5z" />
<glyph unicode="&#xe3;" horiz-adv-x="1087" d="M94 307q0 164 115.5 252t351.5 96l184 7v69q0 67 -14.5 112t-42 72.5t-68 39.5t-92.5 12q-83 0 -154.5 -24t-137.5 -58l-64 137q74 40 165 68t191 28q102 0 176.5 -20.5t123 -65t72.5 -113.5t24 -167v-752h-131l-37 152h-8q-33 -45 -66 -77.5t-72 -53.5t-87 -31t-111 -10 q-69 0 -127 19.5t-100.5 60t-66.5 102t-24 145.5zM191 1241q5 60 21.5 109t43 83.5t63.5 53t83 18.5q42 0 82.5 -17.5t78.5 -38.5l73 -39q34 -17 63 -17q45 0 68 26t38 88h105q-5 -60 -21.5 -108.5t-43 -83t-63.5 -53.5t-83 -19q-40 0 -79.5 17.5t-77.5 39t-73 39t-67 17.5 q-45 0 -69 -26.5t-38 -88.5h-104zM283 305q0 -92 48.5 -135t127.5 -43q61 0 113 19t90 57.5t59.5 97t21.5 137.5v99l-143 -7q-90 -4 -151 -20t-97.5 -44.5t-52.5 -69t-16 -91.5z" />
<glyph unicode="&#xe4;" horiz-adv-x="1087" d="M94 307q0 164 115.5 252t351.5 96l184 7v69q0 67 -14.5 112t-42 72.5t-68 39.5t-92.5 12q-83 0 -154.5 -24t-137.5 -58l-64 137q74 40 165 68t191 28q102 0 176.5 -20.5t123 -65t72.5 -113.5t24 -167v-752h-131l-37 152h-8q-33 -45 -66 -77.5t-72 -53.5t-87 -31t-111 -10 q-69 0 -127 19.5t-100.5 60t-66.5 102t-24 145.5zM273 1395q0 54 28 78t68 24q39 0 68 -24.5t29 -77.5t-29 -78t-68 -25q-40 0 -68 25t-28 78zM283 305q0 -92 48.5 -135t127.5 -43q61 0 113 19t90 57.5t59.5 97t21.5 137.5v99l-143 -7q-90 -4 -151 -20t-97.5 -44.5 t-52.5 -69t-16 -91.5zM648 1395q0 54 28 78t68 24q19 0 36.5 -6t30.5 -18.5t21 -31.5t8 -46q0 -53 -29 -78t-67 -25q-40 0 -68 25t-28 78z" />
<glyph unicode="&#xe5;" horiz-adv-x="1087" d="M94 307q0 164 115.5 252t351.5 96l184 7v69q0 67 -14.5 112t-42 72.5t-68 39.5t-92.5 12q-83 0 -154.5 -24t-137.5 -58l-64 137q74 40 165 68t191 28q102 0 176.5 -20.5t123 -65t72.5 -113.5t24 -167v-752h-131l-37 152h-8q-33 -45 -66 -77.5t-72 -53.5t-87 -31t-111 -10 q-69 0 -127 19.5t-100.5 60t-66.5 102t-24 145.5zM283 305q0 -92 48.5 -135t127.5 -43q61 0 113 19t90 57.5t59.5 97t21.5 137.5v99l-143 -7q-90 -4 -151 -20t-97.5 -44.5t-52.5 -69t-16 -91.5zM331 1456q0 51 16 90.5t45.5 67.5t70.5 42.5t91 14.5q48 0 90 -14.5t73 -42 t48.5 -67t17.5 -89.5q0 -51 -17.5 -91.5t-48 -68.5t-72.5 -42.5t-91 -14.5q-50 0 -91 14.5t-70.5 42.5t-45.5 67.5t-16 90.5zM441 1456q0 -53 28.5 -83t84.5 -30q49 0 80.5 30t31.5 83t-31.5 83t-80.5 30q-50 0 -81.5 -30t-31.5 -83z" />
<glyph unicode="&#xe6;" horiz-adv-x="1706" d="M94 307q0 164 115.5 252t351.5 96l184 7v69q0 67 -14.5 112t-42 72.5t-68 39.5t-92.5 12q-83 0 -154.5 -24t-137.5 -58l-64 137q74 40 165 68t191 28q131 0 214 -42.5t126 -135.5q51 85 134 131.5t186 46.5q97 0 174 -35.5t131 -100t82.5 -155t28.5 -200.5v-113h-672 q5 -193 78.5 -284t220.5 -91q49 0 91.5 5t81.5 14.5t76 24t74 32.5v-162q-39 -19 -76.5 -33t-77 -23t-82 -13t-91.5 -4q-138 0 -239 57t-163 172q-34 -54 -72 -96.5t-85.5 -72t-105.5 -45t-132 -15.5q-71 0 -132.5 19.5t-106.5 60t-71 102t-26 145.5zM283 305 q0 -92 48.5 -135t127.5 -43q61 0 113 19t90 57.5t59.5 97t21.5 137.5v99l-143 -7q-90 -4 -151 -20t-97.5 -44.5t-52.5 -69t-16 -91.5zM936 662h471q0 68 -13 124.5t-40.5 96.5t-69.5 62t-100 22q-110 0 -173.5 -78t-74.5 -227z" />
<glyph unicode="&#xe7;" horiz-adv-x="948" d="M113 543q0 157 38 266.5t104.5 178t155.5 99.5t191 31q78 0 152.5 -17t124.5 -42l-54 -154q-23 10 -51 19.5t-58 17t-59 12t-55 4.5q-157 0 -229 -100.5t-72 -312.5q0 -211 72.5 -308.5t220.5 -97.5q81 0 146.5 18.5t119.5 43.5v-162q-54 -29 -115.5 -44t-150.5 -15 q-101 0 -189 31.5t-153 100t-102 175t-37 256.5zM357 -375q15 -3 39.5 -4.5t40.5 -1.5q71 0 111 21.5t40 70.5q0 24 -13 41.5t-36 30.5t-54.5 22.5t-68.5 18.5l90 176h121l-57 -115q34 -8 63 -21t50.5 -33.5t34 -49.5t12.5 -68q0 -97 -70.5 -151t-220.5 -54q-22 0 -44.5 3 t-37.5 6v108z" />
<glyph unicode="&#xe8;" horiz-adv-x="1096" d="M113 541q0 136 33 243t93 181.5t143.5 113.5t184.5 39q99 0 178 -35.5t134 -100t84.5 -155t29.5 -200.5v-113h-692q5 -193 81.5 -284t227.5 -91q51 0 94.5 5t84 14.5t78.5 24t77 32.5v-162q-40 -19 -78.5 -33t-79 -23t-84 -13t-94.5 -4q-110 0 -201 37t-156.5 108 t-101.5 176t-36 240zM285 1548v21h219q16 -34 38 -75l44 -80q23 -41 47 -79t45 -67v-27h-120q-35 28 -76 69.5t-79.5 85.5t-70 84.5t-47.5 67.5zM305 662h492q0 68 -13.5 124.5t-42 96.5t-72.5 62t-106 22q-114 0 -180.5 -78t-77.5 -227z" />
<glyph unicode="&#xe9;" horiz-adv-x="1096" d="M113 541q0 136 33 243t93 181.5t143.5 113.5t184.5 39q99 0 178 -35.5t134 -100t84.5 -155t29.5 -200.5v-113h-692q5 -193 81.5 -284t227.5 -91q51 0 94.5 5t84 14.5t78.5 24t77 32.5v-162q-40 -19 -78.5 -33t-79 -23t-84 -13t-94.5 -4q-110 0 -201 37t-156.5 108 t-101.5 176t-36 240zM305 662h492q0 68 -13.5 124.5t-42 96.5t-72.5 62t-106 22q-114 0 -180.5 -78t-77.5 -227zM475 1241v27q22 29 45 67l48 79q23 40 44 80.5t37 74.5h219v-21q-16 -27 -47.5 -67.5t-70 -84.5t-79 -85.5t-75.5 -69.5h-121z" />
<glyph unicode="&#xea;" horiz-adv-x="1096" d="M113 541q0 136 33 243t93 181.5t143.5 113.5t184.5 39q99 0 178 -35.5t134 -100t84.5 -155t29.5 -200.5v-113h-692q5 -193 81.5 -284t227.5 -91q51 0 94.5 5t84 14.5t78.5 24t77 32.5v-162q-40 -19 -78.5 -33t-79 -23t-84 -13t-94.5 -4q-110 0 -201 37t-156.5 108 t-101.5 176t-36 240zM224 1241v27l60 67l68 79q33 40 62.5 80.5t45.5 74.5h192q16 -34 45.5 -74.5t62.5 -80.5l68 -79l60 -67v-27h-121q-51 34 -105 82.5t-106 103.5q-54 -55 -107 -103.5t-104 -82.5h-121zM305 662h492q0 68 -13.5 124.5t-42 96.5t-72.5 62t-106 22 q-114 0 -180.5 -78t-77.5 -227z" />
<glyph unicode="&#xeb;" horiz-adv-x="1096" d="M113 541q0 136 33 243t93 181.5t143.5 113.5t184.5 39q99 0 178 -35.5t134 -100t84.5 -155t29.5 -200.5v-113h-692q5 -193 81.5 -284t227.5 -91q51 0 94.5 5t84 14.5t78.5 24t77 32.5v-162q-40 -19 -78.5 -33t-79 -23t-84 -13t-94.5 -4q-110 0 -201 37t-156.5 108 t-101.5 176t-36 240zM269 1395q0 54 28 78t68 24q39 0 68 -24.5t29 -77.5t-29 -78t-68 -25q-40 0 -68 25t-28 78zM305 662h492q0 68 -13.5 124.5t-42 96.5t-72.5 62t-106 22q-114 0 -180.5 -78t-77.5 -227zM644 1395q0 54 28 78t68 24q19 0 36.5 -6t30.5 -18.5t21 -31.5 t8 -46q0 -53 -29 -78t-67 -25q-40 0 -68 25t-28 78z" />
<glyph unicode="&#xec;" horiz-adv-x="530" d="M-34 1548v21h219l37 -75l45 -80q23 -41 47 -79t45 -67v-27h-120q-35 28 -76 69.5t-79.5 85.5t-70 84.5t-47.5 67.5zM174 0v1098h182v-1098h-182z" />
<glyph unicode="&#xed;" horiz-adv-x="530" d="M174 0v1098h182v-1098h-182zM185 1241v27q22 29 45 67l48 79q23 40 44 80.5t37 74.5h219v-21q-16 -27 -47.5 -67.5t-70 -84.5t-79 -85.5t-75.5 -69.5h-121z" />
<glyph unicode="&#xee;" horiz-adv-x="530" d="M-67 1241v27l60 67l67 79q34 40 63.5 80.5t45.5 74.5h192q16 -34 45.5 -74.5t63.5 -80.5l68 -79l59 -67v-27h-121q-51 34 -105 82.5t-106 103.5q-54 -55 -107 -103.5t-104 -82.5h-121zM174 0v1098h182v-1098h-182z" />
<glyph unicode="&#xef;" horiz-adv-x="530" d="M-18 1395q0 54 28 78t68 24q39 0 68 -24.5t29 -77.5t-29 -78t-68 -25q-40 0 -68 25t-28 78zM174 0v1098h182v-1098h-182zM357 1395q0 54 28 78t68 24q19 0 36.5 -6t30.5 -18.5t21 -31.5t8 -46q0 -53 -29 -78t-67 -25q-40 0 -68 25t-28 78z" />
<glyph unicode="&#xf0;" horiz-adv-x="1182" d="M111 477q0 119 31.5 211t90.5 155t143 95.5t189 32.5q102 0 179 -29.5t120 -89.5l8 4q-31 118 -91 214t-150 177l-256 -153l-74 114l217 131l-83 56q-42 27 -89 53l70 123q65 -32 126 -68t120 -80l227 138l74 -113l-195 -117q67 -65 122.5 -143t95 -171.5t61.5 -204 t22 -239.5q0 -142 -33.5 -252t-96 -186t-151.5 -115.5t-200 -39.5q-104 0 -191.5 33t-151 96.5t-99 156t-35.5 211.5zM303 471q0 -76 16.5 -138.5t52 -107.5t90 -69.5t130.5 -24.5q154 0 221.5 99.5t67.5 295.5q0 56 -17 109.5t-52 94.5t-90 66t-130 25q-77 0 -131.5 -23 t-89.5 -67t-51.5 -109.5t-16.5 -150.5z" />
<glyph unicode="&#xf1;" horiz-adv-x="1206" d="M174 0v1098h148l26 -148h10q25 43 59.5 74.5t75.5 52.5t87 31t94 10q183 0 275.5 -95.5t92.5 -305.5v-717h-182v707q0 130 -52.5 195t-164.5 65q-81 0 -136 -26t-88.5 -77t-48 -125t-14.5 -170v-569h-182zM251 1241q5 60 21.5 109t43 83.5t63.5 53t83 18.5 q42 0 82.5 -17.5t78.5 -38.5l73 -39q34 -17 63 -17q45 0 68 26t38 88h105q-5 -60 -21.5 -108.5t-43 -83t-63.5 -53.5t-83 -19q-40 0 -79.5 17.5t-77.5 39t-73 39t-67 17.5q-45 0 -69 -26.5t-38 -88.5h-104z" />
<glyph unicode="&#xf2;" horiz-adv-x="1182" d="M113 551q0 136 33.5 241.5t95.5 178t151.5 110t200.5 37.5q103 0 190 -37.5t150.5 -110t99 -178t35.5 -241.5q0 -137 -33.5 -243.5t-96 -179t-151.5 -110.5t-200 -38q-103 0 -190 38t-150.5 110.5t-99 179t-35.5 243.5zM301 551q0 -209 68.5 -314.5t222.5 -105.5 t221.5 105.5t67.5 314.5t-68.5 312.5t-222.5 103.5t-221.5 -103.5t-67.5 -312.5zM353 1548v21h219q16 -34 38 -75l44 -80q23 -41 47 -79t45 -67v-27h-120q-35 28 -76 69.5t-79.5 85.5t-70 84.5t-47.5 67.5z" />
<glyph unicode="&#xf3;" horiz-adv-x="1182" d="M113 551q0 136 33.5 241.5t95.5 178t151.5 110t200.5 37.5q103 0 190 -37.5t150.5 -110t99 -178t35.5 -241.5q0 -137 -33.5 -243.5t-96 -179t-151.5 -110.5t-200 -38q-103 0 -190 38t-150.5 110.5t-99 179t-35.5 243.5zM301 551q0 -209 68.5 -314.5t222.5 -105.5 t221.5 105.5t67.5 314.5t-68.5 312.5t-222.5 103.5t-221.5 -103.5t-67.5 -312.5zM473 1241v27q22 29 45 67l48 79q23 40 44 80.5t37 74.5h219v-21q-16 -27 -47.5 -67.5t-70 -84.5t-79 -85.5t-75.5 -69.5h-121z" />
<glyph unicode="&#xf4;" horiz-adv-x="1182" d="M113 551q0 136 33.5 241.5t95.5 178t151.5 110t200.5 37.5q103 0 190 -37.5t150.5 -110t99 -178t35.5 -241.5q0 -137 -33.5 -243.5t-96 -179t-151.5 -110.5t-200 -38q-103 0 -190 38t-150.5 110.5t-99 179t-35.5 243.5zM253 1241v27l60 67l67 79q34 40 63.5 80.5 t45.5 74.5h192q16 -34 45.5 -74.5t63.5 -80.5l68 -79l59 -67v-27h-121q-51 34 -105 82.5t-106 103.5q-54 -55 -107 -103.5t-104 -82.5h-121zM301 551q0 -209 68.5 -314.5t222.5 -105.5t221.5 105.5t67.5 314.5t-68.5 312.5t-222.5 103.5t-221.5 -103.5t-67.5 -312.5z" />
<glyph unicode="&#xf5;" horiz-adv-x="1182" d="M113 551q0 136 33.5 241.5t95.5 178t151.5 110t200.5 37.5q103 0 190 -37.5t150.5 -110t99 -178t35.5 -241.5q0 -137 -33.5 -243.5t-96 -179t-151.5 -110.5t-200 -38q-103 0 -190 38t-150.5 110.5t-99 179t-35.5 243.5zM228 1241q5 60 21.5 109t43 83.5t63.5 53t83 18.5 q42 0 82.5 -17.5t78.5 -38.5l72 -39q35 -17 64 -17q45 0 68 26t38 88h105q-5 -60 -21.5 -108.5t-43 -83t-63.5 -53.5t-83 -19q-40 0 -79.5 17.5t-77.5 39t-73 39t-67 17.5q-45 0 -69 -26.5t-38 -88.5h-104zM301 551q0 -209 68.5 -314.5t222.5 -105.5t221.5 105.5t67.5 314.5 t-68.5 312.5t-222.5 103.5t-221.5 -103.5t-67.5 -312.5z" />
<glyph unicode="&#xf6;" horiz-adv-x="1182" d="M113 551q0 136 33.5 241.5t95.5 178t151.5 110t200.5 37.5q103 0 190 -37.5t150.5 -110t99 -178t35.5 -241.5q0 -137 -33.5 -243.5t-96 -179t-151.5 -110.5t-200 -38q-103 0 -190 38t-150.5 110.5t-99 179t-35.5 243.5zM300 1395q0 54 28 78t68 24q39 0 68 -24.5 t29 -77.5t-29 -78t-68 -25q-40 0 -68 25t-28 78zM301 551q0 -209 68.5 -314.5t222.5 -105.5t221.5 105.5t67.5 314.5t-68.5 312.5t-222.5 103.5t-221.5 -103.5t-67.5 -312.5zM675 1395q0 54 28 78t68 24q19 0 36.5 -6t30.5 -18.5t21 -31.5t8 -46q0 -53 -29 -78t-67 -25 q-40 0 -68 25t-28 78z" />
<glyph unicode="&#xf7;" d="M102 647v150h924v-150h-924zM449 373q0 35 9 58.5t24.5 38.5t36 21.5t44.5 6.5q23 0 44 -6.5t37 -21.5t25 -38.5t9 -58.5q0 -33 -9 -56.5t-25 -39t-37 -22.5t-44 -7q-24 0 -44.5 7t-36 22.5t-24.5 39t-9 56.5zM449 1071q0 35 9 58.5t24.5 38.5t36 21.5t44.5 6.5 q23 0 44 -6.5t37 -21.5t25 -38.5t9 -58.5q0 -33 -9 -56.5t-25 -39t-37 -22.5t-44 -7q-24 0 -44.5 7t-36 22.5t-24.5 39t-9 56.5z" />
<glyph unicode="&#xf8;" horiz-adv-x="1182" d="M115 551q0 136 33.5 241.5t95.5 178t151.5 110t200.5 37.5q63 0 119.5 -14.5t105.5 -42.5l68 108l131 -73l-80 -129q62 -73 96.5 -177.5t34.5 -238.5q0 -137 -33.5 -243.5t-96 -179t-151.5 -110.5t-200 -38q-125 0 -223 53l-68 -109l-131 74l80 131q-63 72 -98 178.5 t-35 243.5zM303 551q0 -84 9.5 -149.5t31.5 -116.5l397 647q-29 17 -66.5 26t-82.5 9q-154 0 -221.5 -103.5t-67.5 -312.5zM446 164q31 -17 67 -25t81 -8q154 0 221.5 105.5t67.5 314.5q0 159 -39 258z" />
<glyph unicode="&#xf9;" horiz-adv-x="1206" d="M164 381v717h182v-707q0 -130 53 -195t164 -65q81 0 136 26t88.5 76.5t48 124.5t14.5 170v570h182v-1098h-147l-27 147h-10q-25 -43 -59.5 -74.5t-75.5 -52t-87 -30.5t-94 -10q-91 0 -160 23t-115 72t-69.5 125t-23.5 181zM300 1548v21h219l37 -75l45 -80q23 -41 47 -79 t45 -67v-27h-120q-35 28 -76 69.5t-79.5 85.5t-70 84.5t-47.5 67.5z" />
<glyph unicode="&#xfa;" horiz-adv-x="1206" d="M164 381v717h182v-707q0 -130 53 -195t164 -65q81 0 136 26t88.5 76.5t48 124.5t14.5 170v570h182v-1098h-147l-27 147h-10q-25 -43 -59.5 -74.5t-75.5 -52t-87 -30.5t-94 -10q-91 0 -160 23t-115 72t-69.5 125t-23.5 181zM489 1241v27q22 29 45 67l48 79q23 40 44 80.5 t37 74.5h219v-21q-16 -27 -47.5 -67.5t-70 -84.5t-79 -85.5t-75.5 -69.5h-121z" />
<glyph unicode="&#xfb;" horiz-adv-x="1206" d="M164 381v717h182v-707q0 -130 53 -195t164 -65q81 0 136 26t88.5 76.5t48 124.5t14.5 170v570h182v-1098h-147l-27 147h-10q-25 -43 -59.5 -74.5t-75.5 -52t-87 -30.5t-94 -10q-91 0 -160 23t-115 72t-69.5 125t-23.5 181zM266 1241v27l60 67l68 79q33 40 62.5 80.5 t45.5 74.5h192q16 -34 45.5 -74.5t62.5 -80.5l68 -79l60 -67v-27h-121q-51 34 -105 82.5t-106 103.5q-54 -55 -107 -103.5t-104 -82.5h-121z" />
<glyph unicode="&#xfc;" horiz-adv-x="1206" d="M164 381v717h182v-707q0 -130 53 -195t164 -65q81 0 136 26t88.5 76.5t48 124.5t14.5 170v570h182v-1098h-147l-27 147h-10q-25 -43 -59.5 -74.5t-75.5 -52t-87 -30.5t-94 -10q-91 0 -160 23t-115 72t-69.5 125t-23.5 181zM309 1395q0 54 28 78t68 24q39 0 68 -24.5 t29 -77.5t-29 -78t-68 -25q-40 0 -68 25t-28 78zM684 1395q0 54 28 78t68 24q19 0 36.5 -6t30.5 -18.5t21 -31.5t8 -46q0 -53 -29 -78t-67 -25q-40 0 -68 25t-28 78z" />
<glyph unicode="&#xfd;" horiz-adv-x="1001" d="M10 1098h189l215 -613l28 -84q15 -44 27.5 -88t21.5 -85t13 -76h6q5 25 16 68l24 92l28 95l26 80l199 611h188l-434 -1241q-28 -81 -60.5 -145.5t-75.5 -109.5t-101 -69.5t-138 -24.5q-52 0 -90 5.5t-65 11.5v145q21 -5 53 -8.5t67 -3.5q48 0 83 11.5t61 33.5t44.5 54 t33.5 73l57 160zM407 1241v27q22 29 45 67l48 79q23 40 44 80.5t37 74.5h219v-21q-16 -27 -47.5 -67.5t-70 -84.5t-79 -85.5t-75.5 -69.5h-121z" />
<glyph unicode="&#xfe;" horiz-adv-x="1200" d="M174 -492v2048h182v-458l-8 -148h8q23 35 52 65.5t67.5 53t86.5 36t108 13.5q94 0 171 -36t131.5 -107.5t84.5 -177.5t30 -246q0 -141 -30 -247.5t-84.5 -178.5t-131.5 -108.5t-171 -36.5q-59 0 -107 13t-86.5 34.5t-68 50.5t-52.5 61h-12l6 -65l4 -54q2 -27 2 -43v-469 h-182zM356 551q0 -101 13.5 -179.5t46 -132t86.5 -81t135 -27.5q135 0 198.5 109t63.5 313q0 208 -63.5 311t-200.5 103q-76 0 -128.5 -23t-85 -70t-48 -117t-17.5 -165v-41z" />
<glyph unicode="&#xff;" horiz-adv-x="1001" d="M10 1098h189l215 -613l28 -84q15 -44 27.5 -88t21.5 -85t13 -76h6q5 25 16 68l24 92l28 95l26 80l199 611h188l-434 -1241q-28 -81 -60.5 -145.5t-75.5 -109.5t-101 -69.5t-138 -24.5q-52 0 -90 5.5t-65 11.5v145q21 -5 53 -8.5t67 -3.5q48 0 83 11.5t61 33.5t44.5 54 t33.5 73l57 160zM228 1395q0 54 28 78t68 24q39 0 68 -24.5t29 -77.5t-29 -78t-68 -25q-40 0 -68 25t-28 78zM603 1395q0 54 28 78t68 24q19 0 36.5 -6t30.5 -18.5t21 -31.5t8 -46q0 -53 -29 -78t-67 -25q-40 0 -68 25t-28 78z" />
<glyph unicode="&#x152;" horiz-adv-x="1823" d="M125 735q0 170 38 308.5t117 236.5t199 151.5t283 53.5q98 0 182 -23h756v-164h-574v-452h535v-162h-535v-520h574v-164h-758q-43 -9 -88.5 -14.5t-93.5 -5.5q-163 0 -282.5 54t-198 153t-116.5 238.5t-38 309.5zM322 733q0 -137 26 -246.5t79.5 -186t136 -117 t196.5 -40.5q52 0 97 9t83 24v1112q-38 16 -82.5 24.5t-95.5 8.5q-114 0 -197 -40.5t-137 -116t-80 -184.5t-26 -247z" />
<glyph unicode="&#x153;" horiz-adv-x="1864" d="M113 551q0 136 33.5 241.5t95.5 178t151.5 110t200.5 37.5q121 0 218.5 -55.5t160.5 -161.5q60 105 152.5 161t209.5 56q99 0 178 -35.5t134 -100t84.5 -155t29.5 -200.5v-113h-692q5 -193 81.5 -284t227.5 -91q51 0 94.5 5t84 14.5t78.5 24t77 32.5v-162 q-40 -19 -78.5 -33t-79 -23t-84 -13t-94.5 -4q-130 0 -232 56t-167 165q-63 -109 -162 -165t-227 -56q-103 0 -190 38t-150.5 110.5t-99 179t-35.5 243.5zM301 551q0 -209 68.5 -314.5t222.5 -105.5q150 0 219.5 100.5t69.5 309.5q0 220 -70 323t-221 103 q-154 0 -221.5 -103.5t-67.5 -312.5zM1073 662h492q0 68 -13.5 124.5t-42 96.5t-72.5 62t-106 22q-114 0 -180.5 -78t-77.5 -227z" />
<glyph unicode="&#x178;" horiz-adv-x="1079" d="M0 1462h203l336 -739l340 739h200l-446 -893v-569h-187v559zM257 1733q0 54 28 78t68 24q39 0 68 -24.5t29 -77.5t-29 -78t-68 -25q-40 0 -68 25t-28 78zM632 1733q0 54 28 78t68 24q19 0 36.5 -6t30.5 -18.5t21 -31.5t8 -46q0 -53 -29 -78t-67 -25q-40 0 -68 25t-28 78z " />
<glyph unicode="&#x2c6;" horiz-adv-x="1182" d="M258 1241v27l60 67l67 79q34 40 63.5 80.5t45.5 74.5h192q16 -34 45.5 -74.5t62.5 -80.5l68 -79l60 -67v-27h-121q-51 34 -105 82.5t-106 103.5q-54 -55 -107 -103.5t-104 -82.5h-121z" />
<glyph unicode="&#x2dc;" horiz-adv-x="1182" d="M258 1241q5 60 21.5 109t43 83.5t63.5 53t83 18.5q42 0 82.5 -17.5t78.5 -38.5l73 -38q34 -18 63 -18q45 0 68 26t38 88h105q-5 -60 -21.5 -108.5t-43 -83t-63.5 -53.5t-83 -19q-40 0 -79.5 17.5t-77.5 39t-73 39t-67 17.5q-45 0 -69 -26.5t-38 -88.5h-104z" />
<glyph unicode="&#x2013;" horiz-adv-x="1024" d="M82 465v168h860v-168h-860z" />
<glyph unicode="&#x2014;" horiz-adv-x="2048" d="M82 465v168h1884v-168h-1884z" />
<glyph unicode="&#x2018;" horiz-adv-x="358" d="M23 983q14 54 33.5 115t42.5 123t49 123l51 118h137q-15 -61 -29.5 -127t-27.5 -131.5t-24 -127.5t-19 -115h-199z" />
<glyph unicode="&#x2019;" horiz-adv-x="358" d="M23 961l29 126l28 132q13 66 24 128t19 115h199l14 -22q-14 -55 -33.5 -115.5t-43 -123l-48.5 -123.5l-51 -117h-137z" />
<glyph unicode="&#x201a;" horiz-adv-x="512" d="M63 -264l30 127l28 131q13 66 24 128.5t19 115.5h198l15 -23q-14 -54 -33.5 -115t-42.5 -123l-49 -124l-51 -117h-138z" />
<glyph unicode="&#x201c;" horiz-adv-x="743" d="M23 983q14 54 33.5 115t42.5 123t49 123l51 118h137q-15 -61 -29.5 -127t-27.5 -131.5t-24 -127.5t-19 -115h-199zM408 983q14 54 33.5 115t42.5 123t49 123l51 118h137q-15 -61 -29.5 -127t-27.5 -131.5t-24 -127.5t-19 -115h-199z" />
<glyph unicode="&#x201d;" horiz-adv-x="743" d="M23 961l29 126l28 132q13 66 24 128t19 115h199l14 -22q-14 -55 -33.5 -115.5t-43 -123l-48.5 -123.5l-51 -117h-137zM408 961l29 126l28 132q13 66 24 128t19 115h199l14 -22q-14 -55 -33.5 -115.5t-43 -123l-48.5 -123.5l-51 -117h-137z" />
<glyph unicode="&#x201e;" horiz-adv-x="897" d="M63 -264l30 127l28 131q13 66 24 128.5t19 115.5h198l15 -23q-14 -54 -33.5 -115t-42.5 -123l-49 -124l-51 -117h-138zM449 -264l29 127l28 131q13 66 24 128.5t19 115.5h199l14 -23q-14 -54 -33.5 -115t-42.5 -123l-49 -124l-51 -117h-137z" />
<glyph unicode="&#x2022;" horiz-adv-x="770" d="M150 748q0 71 18 121t49.5 81.5t74.5 45.5t93 14q49 0 92 -14t75 -45.5t50.5 -81.5t18.5 -121q0 -70 -18.5 -120t-50.5 -81.5t-75 -46.5t-92 -15q-50 0 -93 15t-74.5 46.5t-49.5 81.5t-18 120z" />
<glyph unicode="&#x2026;" horiz-adv-x="1647" d="M147 111q0 38 10 64.5t27 43t40 24t50 7.5q26 0 49.5 -7.5t40.5 -24t27 -43t10 -64.5q0 -37 -10 -63.5t-27 -43.5t-40.5 -25t-49.5 -8q-27 0 -50 8t-40 25t-27 43.5t-10 63.5zM696 111q0 38 10 64.5t27 43t40 24t50 7.5q26 0 49.5 -7.5t40.5 -24t27 -43t10 -64.5 q0 -37 -10 -63.5t-27 -43.5t-40.5 -25t-49.5 -8q-27 0 -50 8t-40 25t-27 43.5t-10 63.5zM1245 111q0 38 9.5 64.5t27 43t40.5 24t50 7.5q26 0 49.5 -7.5t40.5 -24t27 -43t10 -64.5q0 -37 -10 -63.5t-27 -43.5t-40.5 -25t-49.5 -8q-54 0 -90.5 33t-36.5 107z" />
<glyph unicode="&#x2039;" horiz-adv-x="590" d="M82 526v27l309 414l117 -78l-238 -348l238 -348l-117 -78z" />
<glyph unicode="&#x203a;" horiz-adv-x="590" d="M82 193l237 348l-237 348l117 78l309 -414v-27l-309 -411z" />
<glyph unicode="&#x20ac;" d="M63 502v137h148q-2 23 -2 38v44q0 22 1 45t1 31h-148v137h160q18 125 62 226t111.5 173t159.5 111t206 39q97 0 177 -21.5t159 -70.5l-80 -146q-51 31 -110.5 52.5t-131.5 21.5q-69 0 -128 -26t-106 -75.5t-80.5 -121t-51.5 -162.5h432v-137h-447q0 -15 -1 -29 q-1 -12 -1 -25v-22v-39q0 -21 2 -43h385v-137h-366q34 -175 126.5 -267t241.5 -92q75 0 142.5 16t126.5 42v-162q-59 -28 -125.5 -43.5t-157.5 -15.5q-115 0 -206 36.5t-158.5 104t-111.5 164t-65 217.5h-164z" />
<glyph unicode="&#x2122;" horiz-adv-x="1534" d="M37 1354v108h522v-108h-199v-613h-127v613h-196zM625 741v721h186l180 -551l191 551h178v-721h-127v428q0 9 0.5 24t0.5 33l2 34q0 18 1 30h-6l-195 -549h-100l-186 549h-7l2 -33q1 -17 1.5 -32t1 -27t0.5 -18v-439h-123z" />
<glyph unicode="&#xe000;" horiz-adv-x="1100" d="M0 1100h1100v-1100h-1100v1100z" />
<glyph unicode="&#xfb01;" horiz-adv-x="1204" d="M29 961v75l194 68v96q0 107 22.5 177.5t65 112.5t104.5 59.5t140 17.5q59 0 108.5 -11.5t88.5 -25.5l-47 -141q-31 11 -67.5 19.5t-76.5 8.5t-69 -9.5t-48 -33.5t-28.5 -65.5t-9.5 -106.5v-104h245v-137h-245v-961h-183v961h-194zM834 1395q0 60 30.5 87t75.5 27 q22 0 41.5 -6.5t34 -20.5t23 -35.5t8.5 -51.5q0 -58 -31.5 -86.5t-75.5 -28.5q-45 0 -75.5 28t-30.5 87zM848 0v1098h182v-1098h-182z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1204" d="M29 961v75l194 68v96q0 107 22.5 177.5t65 112.5t104.5 59.5t140 17.5q59 0 108.5 -11.5t88.5 -25.5l-47 -141q-31 11 -67.5 19.5t-76.5 8.5t-69 -9.5t-48 -33.5t-28.5 -65.5t-9.5 -106.5v-104h245v-137h-245v-961h-183v961h-194zM848 0v1556h182v-1556h-182z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1878" d="M29 961v75l194 68v96q0 107 22.5 177.5t65 112.5t104.5 59.5t140 17.5q59 0 108.5 -11.5t88.5 -25.5l-47 -141q-31 11 -67.5 19.5t-76.5 8.5t-69 -9.5t-48 -33.5t-28.5 -65.5t-9.5 -106.5v-104h245v-137h-245v-961h-183v961h-194zM703 961v75l194 68v96q0 107 22.5 177.5 t65 112.5t104.5 59.5t140 17.5q59 0 108.5 -11.5t88.5 -25.5l-47 -141q-31 11 -67.5 19.5t-76.5 8.5t-69 -9.5t-48 -33.5t-28.5 -65.5t-9.5 -106.5v-104h245v-137h-245v-961h-183v961h-194zM1508 1395q0 60 30.5 87t75.5 27q22 0 41.5 -6.5t34 -20.5t23 -35.5t8.5 -51.5 q0 -58 -31.5 -86.5t-75.5 -28.5q-45 0 -75.5 28t-30.5 87zM1522 0v1098h182v-1098h-182z" />
<glyph unicode="&#xfb04;" horiz-adv-x="1878" d="M29 961v75l194 68v96q0 107 22.5 177.5t65 112.5t104.5 59.5t140 17.5q59 0 108.5 -11.5t88.5 -25.5l-47 -141q-31 11 -67.5 19.5t-76.5 8.5t-69 -9.5t-48 -33.5t-28.5 -65.5t-9.5 -106.5v-104h245v-137h-245v-961h-183v961h-194zM703 961v75l194 68v96q0 107 22.5 177.5 t65 112.5t104.5 59.5t140 17.5q59 0 108.5 -11.5t88.5 -25.5l-47 -141q-31 11 -67.5 19.5t-76.5 8.5t-69 -9.5t-48 -33.5t-28.5 -65.5t-9.5 -106.5v-104h245v-137h-245v-961h-183v961h-194zM1522 0v1556h182v-1556h-182z" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 505 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 568 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 506 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 402 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 715 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 630 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 303 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 559 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 448 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 174 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 226 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 188 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 B

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 532 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 970 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1012 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 970 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 984 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 562 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 970 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 B

Some files were not shown because too many files have changed in this diff Show More