catalogfilters - Version 0.1.0

Version Notes

catalogfilters

Download this release

Release Info

Developer ab
Extension catalogfilters
Version 0.1.0
Comparing to
See all releases


Version 0.1.0

Files changed (35) hide show
  1. app/code/local/Bricks/Catalogfilters/Block/Adminhtml/Catalogfilters.php +12 -0
  2. app/code/local/Bricks/Catalogfilters/Block/Adminhtml/Catalogfilters/Edit.php +26 -0
  3. app/code/local/Bricks/Catalogfilters/Block/Adminhtml/Catalogfilters/Edit/Form.php +46 -0
  4. app/code/local/Bricks/Catalogfilters/Block/Adminhtml/Catalogfilters/Edit/Tab/Form.php +15 -0
  5. app/code/local/Bricks/Catalogfilters/Block/Adminhtml/Catalogfilters/Edit/Tab/Metaform.php +9 -0
  6. app/code/local/Bricks/Catalogfilters/Block/Adminhtml/Catalogfilters/Edit/Tabs.php +24 -0
  7. app/code/local/Bricks/Catalogfilters/Block/Adminhtml/Catalogfilters/Grid.php +94 -0
  8. app/code/local/Bricks/Catalogfilters/Block/Adminhtml/Catalogfilters/Grid/Renderer/Reward.php +14 -0
  9. app/code/local/Bricks/Catalogfilters/Block/Test.php +8 -0
  10. app/code/local/Bricks/Catalogfilters/Block/Widget/Grid/Column.php +33 -0
  11. app/code/local/Bricks/Catalogfilters/Helper/Data.php +5 -0
  12. app/code/local/Bricks/Catalogfilters/Model/Catalogfilters.php +9 -0
  13. app/code/local/Bricks/Catalogfilters/Model/Entity/Attribute/Source/Boolean/Config.php +42 -0
  14. app/code/local/Bricks/Catalogfilters/Model/Mysql4/Catalogfilters.php +43 -0
  15. app/code/local/Bricks/Catalogfilters/Model/Mysql4/Catalogfilters/Collection.php +11 -0
  16. app/code/local/Bricks/Catalogfilters/Model/Observer.php +32 -0
  17. app/code/local/Bricks/Catalogfilters/controllers/Adminhtml/CatalogfiltersController.php +58 -0
  18. app/code/local/Bricks/Catalogfilters/controllers/TestController.php +58 -0
  19. app/code/local/Bricks/Catalogfilters/etc/adminhtml.xml +34 -0
  20. app/code/local/Bricks/Catalogfilters/etc/config.xml +129 -0
  21. app/code/local/Bricks/Catalogfilters/sql/catalogfilters_setup/mysql4-install-0.1.0.php +16 -0
  22. app/code/local/Bricks/Catalogfilters/sql/catalogfilters_setup/mysql4-upgrade-0.1.0-0.1.1.php +16 -0
  23. app/design/frontend/base/default/layout/catalogfilters.xml +12 -0
  24. app/design/frontend/base/default/template/catalogfilters/index.phtml +119 -0
  25. app/design/frontend/base/default/template/catalogfilters/index_with_input_field.phtml +92 -0
  26. app/etc/modules/Bricks_catalogfilters.xml +9 -0
  27. package.xml +18 -0
  28. skin/frontend/base/default/css/fonts/icons.eot +0 -0
  29. skin/frontend/base/default/css/fonts/icons.otf +0 -0
  30. skin/frontend/base/default/css/fonts/icons.svg +565 -0
  31. skin/frontend/base/default/css/fonts/icons.ttf +0 -0
  32. skin/frontend/base/default/css/fonts/icons.woff +0 -0
  33. skin/frontend/base/default/css/fonts/icons.woff2 +0 -0
  34. skin/frontend/base/default/css/images/flags.png +0 -0
  35. skin/frontend/base/default/css/semantic.css +32095 -0
app/code/local/Bricks/Catalogfilters/Block/Adminhtml/Catalogfilters.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Bricks_Catalogfilters_Block_Adminhtml_Catalogfilters extends Mage_Adminhtml_Block_Widget_Grid_Container
3
+ {
4
+ public function __construct()
5
+ {
6
+ $this->_controller = 'adminhtml_catalogfilters';
7
+ $this->_blockGroup = 'catalogfilters';
8
+ $this->_headerText = Mage::helper('Catalogfilters')->__('Reward Manager');
9
+ $this->_addButtonLabel = Mage::helper('Catalogfilters')->__('Add Reward');
10
+ parent::__construct();
11
+ }
12
+ }
app/code/local/Bricks/Catalogfilters/Block/Adminhtml/Catalogfilters/Edit.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Bricks_Catalogfilters_Block_Adminhtml_Catalogfilters_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
4
+ {
5
+ public function __construct()
6
+ {
7
+ parent::__construct();
8
+ $this->_objectId = 'id';
9
+ $this->_blockGroup = 'catalogfilters';
10
+ $this->_controller = 'adminhtml_catalogfilters';
11
+
12
+ $this->_updateButton('save', 'label', Mage::helper('catalogfilters')->__('Save Settings'));
13
+ $this->_updateButton('delete', 'label', Mage::helper('catalogfilters')->__('Delete Option'));
14
+
15
+ }
16
+
17
+ public function getHeaderText()
18
+ {
19
+ if( Mage::registry('catalogfilters_data') && Mage::registry('catalogfilters_data')->getId() ) {
20
+ return Mage::helper('catalogfilters')->__("Edit Review");
21
+ } else {
22
+ return Mage::helper('catalogfilters')->__('Select Attributes To Filter');
23
+ }
24
+
25
+ }
26
+ }
app/code/local/Bricks/Catalogfilters/Block/Adminhtml/Catalogfilters/Edit/Form.php ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Bricks_Catalogfilters_Block_Adminhtml_Catalogfilters_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
4
+ {
5
+ public function _construct()
6
+ {
7
+ parent::_construct();
8
+ }
9
+
10
+ protected function _prepareForm()
11
+ {
12
+ $form = new Varien_Data_Form(array(
13
+ 'id' => 'edit_form',
14
+ 'action' => $this->getUrl('*/*/update', array('id' => $this->getRequest()->getParam('id'))),
15
+ 'method' => 'post'
16
+ )
17
+ );
18
+ $form->setUseContainer(true);
19
+ $this->setForm($form);
20
+
21
+ $model = Mage::getModel('catalogfilters/catalogfilters')->load(1);
22
+ $array = explode(',', $model->getFilterAttributeCode());
23
+ $attributes = Mage::getResourceModel('catalog/product_attribute_collection')->getItems();
24
+ $attrbArray = array();
25
+ foreach ($attributes as $attribute){
26
+ if($attribute->getIsFilterable() && $attribute->getIsVisible())
27
+ {
28
+ $attrbArray[] = array(
29
+ 'value' => $attribute->getAttributecode(),
30
+ 'label' => $attribute->getFrontendLabel(),
31
+ );
32
+ }
33
+ }
34
+ $fieldset = $form->addFieldset('new_reward', array('legend' => 'Catagory Filters'));
35
+
36
+ $fieldset->addField('attributes', 'multiselect', array(
37
+ 'label' => 'Select Attributes',
38
+ 'name' => 'filter_attribute_code',
39
+ 'multiple' =>"multiple",
40
+ 'required' => false,
41
+ 'values' => $attrbArray,
42
+ 'value' =>$array
43
+ ));
44
+ return parent::_prepareForm();
45
+ }
46
+ }
app/code/local/Bricks/Catalogfilters/Block/Adminhtml/Catalogfilters/Edit/Tab/Form.php ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Bricks_Catalogfilters_Block_Adminhtml_Catalogfilters_Edit_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
4
+ {
5
+ protected function _prepareLayout()
6
+ {
7
+ parent::_prepareLayout();
8
+ }
9
+
10
+ protected function _prepareForm()
11
+ {
12
+
13
+ return parent::_prepareForm();
14
+ }
15
+ }
app/code/local/Bricks/Catalogfilters/Block/Adminhtml/Catalogfilters/Edit/Tab/Metaform.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Bricks_Catalogfilters_Block_Adminhtml_Catalogfilters_Edit_Tab_Metaform extends Mage_Adminhtml_Block_Widget_Form
4
+ {
5
+ protected function _prepareForm()
6
+ {
7
+ return parent::_prepareForm();
8
+ }
9
+ }
app/code/local/Bricks/Catalogfilters/Block/Adminhtml/Catalogfilters/Edit/Tabs.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Bricks_Catalogfilters_Block_Adminhtml_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
4
+ {
5
+
6
+ public function __construct()
7
+ {
8
+ parent::__construct();
9
+ $this->setId('catalogfilters_tabs');
10
+ $this->setDestElementId('edit_form');
11
+ $this->setTitle(Mage::helper('catalogfilters')->__('Review Information'));
12
+ }
13
+
14
+ protected function _beforeToHtml()
15
+ {
16
+ $this->addTab('form_section', array(
17
+ 'label' => Mage::helper('catalogfilters')->__('Review Information'),
18
+ 'title' => Mage::helper('catalogfilters')->__('Review Information'),
19
+ 'content' => $this->getLayout()->createBlock('catalogfilters/adminhtml_edit_tab_form')->toHtml(),
20
+ ));
21
+
22
+ return parent::_beforeToHtml();
23
+ }
24
+ }
app/code/local/Bricks/Catalogfilters/Block/Adminhtml/Catalogfilters/Grid.php ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Bricks_Catalogfilters_Block_Adminhtml_Catalogfilters_Grid extends Mage_Adminhtml_Block_Widget_Grid
4
+ {
5
+ public function __construct()
6
+ {
7
+ parent::__construct();
8
+ $this->setId('catalogfiltersGrid');
9
+ $this->setDefaultSort('catalogfilters_id');
10
+ $this->setDefaultDir('ASC');
11
+ $this->setSaveParametersInSession(true);
12
+ }
13
+
14
+ protected function _prepareCollection()
15
+ {
16
+ // $collection = Mage::getModel('catalogfilters/catalogfilters')->getCollection()->setOrder('reward_id','DESC');
17
+
18
+ //$collection->addFieldToSelect('*');
19
+ //$collection->getSelect()->where("parent_forum_id != 0");
20
+
21
+ //$collection->addAttributeToSort('forum_id', 'DESC');
22
+
23
+ // $this->setCollection($collection);
24
+ return parent::_prepareCollection();
25
+ }
26
+
27
+ protected function _prepareColumns()
28
+ {
29
+ $this->addColumn('catalogfilters_id', array(
30
+ 'header' => Mage::helper('catalogfilters')->__('ID'),
31
+ 'align' =>'right',
32
+ 'width' => '50px',
33
+ 'index' => 'catalogfilters_id',
34
+ ));
35
+
36
+ $this->addColumn('catalogfilters_name', array(
37
+ 'header' => Mage::helper('catalogfilters')->__('catalogfilters Name'),
38
+ 'align' =>'left',
39
+ 'index' => 'catalogfilters_name',
40
+ ));
41
+
42
+ $this->addColumn('catalogfilters_count', array(
43
+ 'header' => Mage::helper('catalogfilters')->__('Review Count'),
44
+ 'align' => 'left',
45
+ 'index' => 'catalogfilters_count',
46
+ 'sortable' => false,
47
+ 'filter' => false,
48
+ ));
49
+
50
+ $this->addColumn('message', array(
51
+ 'header' => Mage::helper('catalogfilters')->__('Message'),
52
+ 'align' =>'left',
53
+ 'index' => 'message',
54
+ ));
55
+
56
+ $this->addColumn('action',
57
+ array(
58
+ 'header' => Mage::helper('catalogfilters')->__('Action'),
59
+ 'width' => '100',
60
+ 'type' => 'action',
61
+ 'getter' => 'getId',
62
+ 'actions' => array(
63
+ array(
64
+ 'caption' => Mage::helper('catalogfilters')->__('Edit'),
65
+ 'url' => array('base'=> '*/*/edit'),
66
+ 'field' => 'id'
67
+ )
68
+ ),
69
+ 'filter' => false,
70
+ 'sortable' => false,
71
+ 'index' => 'stores',
72
+ 'is_system' => true,
73
+ ));
74
+
75
+ return parent::_prepareColumns();
76
+ }
77
+
78
+ protected function _prepareMassaction()
79
+ {
80
+ $this->setMassactionIdField('catalogfilters_id');
81
+ $this->getMassactionBlock()->setFormFieldName('catalogfilters');
82
+
83
+ $this->getMassactionBlock()->addItem('delete', array(
84
+ 'label' => Mage::helper('catalogfilters')->__('Delete'),
85
+ 'url' => $this->getUrl('*/*/massdelete'),
86
+ 'confirm' => Mage::helper('catalogfilters')->__('Are you sure?')
87
+ ));
88
+
89
+
90
+ return $this;
91
+ }
92
+
93
+
94
+ }
app/code/local/Bricks/Catalogfilters/Block/Adminhtml/Catalogfilters/Grid/Renderer/Reward.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Bricks_Catalogfilters_Block_Adminhtml_Grid_Renderer_Reward extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract
4
+ {
5
+ // public function render(Varien_Object $row)
6
+ // {
7
+ // if($row->getFilename()==""){
8
+ // return "";
9
+ // }
10
+ // else{
11
+ // return "<img src='".Mage::getBaseUrl("media").$row->getFilename()."' width='50' height='50'/>";
12
+ // }
13
+ // }
14
+ }
app/code/local/Bricks/Catalogfilters/Block/Test.php ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Bricks_Catalogfilters_Block_Test extends Mage_Core_Block_Template
3
+ {
4
+ public function methodblock()
5
+ {
6
+ return 'informations about my block !!' ;
7
+ }
8
+ }
app/code/local/Bricks/Catalogfilters/Block/Widget/Grid/Column.php ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category Mage
16
+ * @package TBT_MassRelater
17
+ * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
18
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
19
+ */
20
+
21
+ /**
22
+ * Grid column block
23
+ *
24
+ * @category Mage
25
+ * @package TBT_MassRelater
26
+ * @author Magento Core Team <core@magentocommerce.com>
27
+ */
28
+ class Bricks_Catalogfilters_Block_Widget_Grid_Column extends Mage_Adminhtml_Block_Widget_Grid_Column
29
+ {
30
+
31
+
32
+
33
+ }
app/code/local/Bricks/Catalogfilters/Helper/Data.php ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <?php
2
+ class Bricks_Catalogfilters_Helper_Data extends Mage_Core_Helper_Abstract
3
+ {
4
+
5
+ }
app/code/local/Bricks/Catalogfilters/Model/Catalogfilters.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Bricks_Catalogfilters_Model_Catalogfilters extends Mage_Core_Model_Abstract
3
+ {
4
+ public function _construct()
5
+ {
6
+ parent::_construct();
7
+ $this->_init('catalogfilters/catalogfilters');
8
+ }
9
+ }
app/code/local/Bricks/Catalogfilters/Model/Entity/Attribute/Source/Boolean/Config.php ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * aheadWorks Co.
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the EULA
9
+ * that is bundled with this package in the file LICENSE.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://ecommerce.aheadworks.com/LICENSE-M1.txt
12
+ *
13
+ * @category AW
14
+ * @package AW_Featuredproducts
15
+ * @copyright Copyright (c) 2008-2009 aheadWorks Co. (http://www.aheadworks.com)
16
+ * @license http://ecommerce.aheadworks.com/LICENSE-M1.txt
17
+ */
18
+
19
+ class Bricks_Rewardreview_Model_Entity_Attribute_Source_Boolean_Config extends Mage_Eav_Model_Entity_Attribute_Source_Boolean
20
+ {
21
+ /**
22
+ * Retrive all attribute options
23
+ *
24
+ * @return array
25
+ */
26
+ public function getAllOptions()
27
+ {
28
+ // if (!$this->_options) {
29
+ // $this->_options = array(
30
+ // array(
31
+ // 'label' => Mage::helper('rewardreview')->__('No'),
32
+ // 'value' => 0
33
+ // ),
34
+ // array(
35
+ // 'label' => Mage::helper('rewardreview')->__('Yes'),
36
+ // 'value' => 1
37
+ // )
38
+ // );
39
+ // }
40
+ // return $this->_options;
41
+ }
42
+ }
app/code/local/Bricks/Catalogfilters/Model/Mysql4/Catalogfilters.php ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Bricks_Catalogfilters_Model_Mysql4_Catalogfilters extends Mage_Core_Model_Mysql4_Abstract
4
+ {
5
+ public function _construct()
6
+ {
7
+ // Note that the review_id refers to the key field in your database table.
8
+ $this->_init('catalogfilters/catalogfilters', 'id');
9
+ }
10
+
11
+ /**
12
+ * Process page data before saving
13
+ *
14
+ * @param Mage_Core_Model_Abstract $object
15
+ */
16
+ // protected function _beforeSave(Mage_Core_Model_Abstract $object)
17
+ // {
18
+
19
+ // if (! $object->getId() && $object->getCreationTime() == "") {
20
+ // $object->setCreationTime(Mage::getSingleton('core/date')->gmtDate());
21
+ // }
22
+
23
+ // $format = Mage::app()->getLocale()->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT);
24
+ // if ($date = $object->getData('creation_time')) {
25
+ // $object->setData('creation_time', Mage::app()->getLocale()->date($date, $format, null, false)
26
+ // ->toString(Varien_Date::DATETIME_INTERNAL_FORMAT)
27
+ // );
28
+ // }
29
+ // $object->setUpdateTime(Mage::getSingleton('core/date')->gmtDate());
30
+
31
+ // return $this;
32
+ // }
33
+
34
+ /**
35
+ * Assign page to store views
36
+ *
37
+ * @param Mage_Core_Model_Abstract $object
38
+ */
39
+ protected function _afterSave(Mage_Core_Model_Abstract $object)
40
+ {
41
+ return parent::_afterSave($object);
42
+ }
43
+ }
app/code/local/Bricks/Catalogfilters/Model/Mysql4/Catalogfilters/Collection.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Bricks_Catalogfilters_Model_Mysql4_Catalogfilters_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
4
+ {
5
+ public function _construct()
6
+ {
7
+ parent::_construct();
8
+ $this->_init('catalogfilters/catalogfilters');
9
+ }
10
+
11
+ }
app/code/local/Bricks/Catalogfilters/Model/Observer.php ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Bricks_Catalogfilters_Model_Observer{
3
+ public function changeColletion(Varien_Event_Observer $observer)
4
+ {
5
+ $collection = $observer->getCollection();
6
+ $model = Mage::getModel('catalogfilters/catalogfilters')->load(1);
7
+ $array = explode(',', $model->getFilterAttributeCode());
8
+ foreach ($array as $key => $value) {
9
+ if(isset($_GET) && in_array($value, $array))
10
+ {
11
+ if($_GET[$value])
12
+ {
13
+ if($_GET['price'])
14
+ {
15
+ $ar = explode('-', $_GET['price']);
16
+ $collection->addFieldToFilter('price',
17
+ array(array('from'=>trim($ar[0]),'to'=>trim($ar[1])))
18
+ );
19
+ }else
20
+ {
21
+ $collection->addAttributeToSelect(array('*'))
22
+ ->addAttributeToFilter($value, array('eq' => $_GET[$value]))->load();
23
+ }
24
+ }
25
+ }
26
+ }
27
+ // echo $_GET[$value];
28
+ // print_r($array);
29
+ // exit;
30
+ return $collection;
31
+ }
32
+ }
app/code/local/Bricks/Catalogfilters/controllers/Adminhtml/CatalogfiltersController.php ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Bricks_Catalogfilters_Adminhtml_CatalogfiltersController extends Mage_Adminhtml_Controller_Action
3
+ {
4
+ protected function _initAction() {
5
+ $this->loadLayout()
6
+ ->_setActiveMenu('catalogfilters/items')
7
+ ->_addBreadcrumb(Mage::helper('adminhtml')->__('Items Manager'), Mage::helper('adminhtml')->__('Item Manager'));
8
+
9
+ return $this;
10
+ }
11
+ public function indexAction() {
12
+
13
+ }
14
+
15
+ public function editAction() {
16
+ $collection = Mage::getModel('catalogfilters/catalogfilters')->getCollection();
17
+ $model = Mage::getModel('catalogfilters/catalogfilters');
18
+ if(empty($collection->getData()))
19
+ {
20
+ $filter_attribute_code = '';
21
+ $array['filter_attribute_code'] = $filter_attribute_code;
22
+ $model->setData($array);
23
+ $model->save();
24
+ }
25
+ $this->loadLayout();
26
+ $this->_addBreadcrumb(Mage::helper('adminhtml')->__('Item News'), Mage::helper('adminhtml')->__('Item News'));
27
+
28
+ $this->_addContent($this->getLayout()->createBlock('catalogfilters/adminhtml_catalogfilters_edit'));
29
+
30
+ $this->renderLayout();
31
+ }
32
+
33
+ public function newAction() {
34
+ $this->_forward('edit');
35
+ }
36
+
37
+ public function updateAction()
38
+ {
39
+ $model = Mage::getModel('catalogfilters/catalogfilters')->load(1);
40
+ // echo "<pre>";
41
+ // print_r($model);exit;
42
+ if(!empty($model->getData()))
43
+ {
44
+ if ($data = $this->getRequest()->getPost()) {
45
+ $filter_attribute_code = implode(',',$data['filter_attribute_code']);
46
+ if($filter_attribute_code=='')
47
+ {
48
+ $filter_attribute_code = "";
49
+ }
50
+ $array['filter_attribute_code'] = $filter_attribute_code;
51
+ Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('adminhtml')->__('Item successfully updated'));
52
+ $model->setData($array)->setId(1);
53
+ $model->save();
54
+ }
55
+ }
56
+ $this->_redirect('*/*/edit');
57
+ }
58
+ }
app/code/local/Bricks/Catalogfilters/controllers/TestController.php ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Bricks_Catalogfilters_TestController extends Mage_Core_Controller_Front_Action
3
+ {
4
+ public function indexAction()
5
+ {
6
+ $this->loadLayout();
7
+ $this->renderLayout();
8
+ }
9
+ public function loadAttribsAction()
10
+ {
11
+ $counter = 0;
12
+ $cate_id = $_GET['cate_id'];
13
+ $category = Mage::getModel('catalog/category')->load($cate_id);
14
+ $products = Mage::getModel('catalog/product')->getCollection()
15
+ ->addAttributeToSelect('*')
16
+ ->addCategoryFilter($category)
17
+ ->load();
18
+ $model = Mage::getModel('catalogfilters/catalogfilters')->load(1);
19
+
20
+ $array = explode(',', $model->getFilterAttributeCode());
21
+ if($model->getFilterAttributeCode())
22
+ {
23
+ foreach ($array as $arr) {
24
+ $result = array();
25
+ if($arr!='price'){
26
+ foreach ($products as $product) {
27
+ $producer = $product->getAttributeText($arr);
28
+ if(!empty($product->getData($arr)))
29
+ $beforedat = $product->getData($arr);
30
+ $result[$producer] = $product->getData($arr);
31
+ if($result[$producer]==0 || $result[$producer]=='')
32
+ {
33
+ unset($result[$producer]);
34
+ }
35
+ }
36
+ ksort($result);
37
+ }else
38
+ {
39
+ $result = array('0 - 100'=>'0-100', '100 - 200'=> '100-200','200 - 500'=>'200-500',
40
+ '500 - 1000'=> '500-1000','1000 - 2500'=>'1000-2500',
41
+ '2500 - 5000'=>'2500-5000','5000 - 10000'=>'5000-10000');
42
+ }
43
+ $data[$arr] = $result;
44
+ }
45
+ }else
46
+ {
47
+ $data['error'] = 'No Attributes selected';
48
+ }
49
+ // print_r($data);exit;
50
+ // print_r($data);
51
+ // exit;
52
+ // $children = Mage::getModel('catalog/category')->getCategories($cate_id);
53
+
54
+ // $data['brands'] = $result;
55
+ // $data['cates'] = $this->getCategoryArray($children);
56
+ echo json_encode($data);exit;
57
+ }
58
+ }
app/code/local/Bricks/Catalogfilters/etc/adminhtml.xml ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <acl>
4
+ <resources>
5
+ <all>
6
+ <title>Allow Everything</title>
7
+ </all>
8
+ <admin>
9
+ <children>
10
+ <catalogfilters translate="title" module="catalogfilters">
11
+ <title>catalogfilters</title>
12
+ <children>
13
+ <firstchild>
14
+ <title>Catalogfilters</title>
15
+ </firstchild>
16
+ </children>
17
+ </catalogfilters>
18
+ <system>
19
+ <children>
20
+ <config>
21
+ <children>
22
+ <bricks_options translate="title">
23
+ <title>Configuration Section</title>
24
+ <sort_order>100</sort_order>
25
+ </bricks_options>
26
+ </children>
27
+ </config>
28
+ </children>
29
+ </system>
30
+ </children>
31
+ </admin>
32
+ </resources>
33
+ </acl>
34
+ </config>
app/code/local/Bricks/Catalogfilters/etc/config.xml ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Bricks_Catalogfilters>
5
+ <version>0.1.0</version>
6
+ </Bricks_Catalogfilters>
7
+ </modules>
8
+
9
+ <admin>
10
+ <routers>
11
+ <catalogfilters>
12
+ <use>admin</use>
13
+ <args>
14
+ <module>Bricks_Catalogfilters</module>
15
+ <frontName>filters_settings</frontName>
16
+ </args>
17
+ </catalogfilters>
18
+ </routers>
19
+ </admin>
20
+
21
+ <adminhtml>
22
+ <menu>
23
+ <catalogfil module="catalogfilters">
24
+ <title>Catalog Filters</title>
25
+ <sort_order>72</sort_order>
26
+ <children>
27
+ <filter_menu module="catalogfilters">
28
+ <title>Settings</title>
29
+ <sort_order>1</sort_order>
30
+ <action>catalogfilters/adminhtml_catalogfilters/new</action>
31
+ </filter_menu>
32
+ </children>
33
+ </catalogfil>
34
+ </menu>
35
+ <layout>
36
+ <updates>
37
+ <catalogfilters>
38
+ <file>catalogfilters.xml</file>
39
+ </catalogfilters>
40
+ </updates>
41
+ </layout>
42
+ </adminhtml>
43
+ <global>
44
+ <models>
45
+ <catalogfilters>
46
+ <class>Bricks_Catalogfilters_Model</class>
47
+ <resourceModel>catalogfilters_mysql4</resourceModel>
48
+ </catalogfilters>
49
+ <catalogfilters_mysql4>
50
+ <class>Bricks_Catalogfilters_Model_Mysql4</class>
51
+ <entities>
52
+ <catalogfilters>
53
+ <table>catalogfilters</table>
54
+ </catalogfilters>
55
+ </entities>
56
+ </catalogfilters_mysql4>
57
+ </models>
58
+
59
+ <blocks>
60
+ <catalogfilters>
61
+ <class>Bricks_Catalogfilters_Block</class>
62
+ </catalogfilters>
63
+ </blocks>
64
+
65
+ <helpers>
66
+ <catalogfilters>
67
+ <class>Bricks_Catalogfilters_Helper</class>
68
+ </catalogfilters>
69
+ </helpers>
70
+
71
+
72
+ <resources>
73
+ <catalogfilters_setup>
74
+ <setup>
75
+ <module>Bricks_Catalogfilters</module>
76
+ </setup>
77
+ <connection>
78
+ <use>core_setup</use>
79
+ </connection>
80
+ </catalogfilters_setup>
81
+ <catalogfilters_write>
82
+ <connection>
83
+ <use>core_write</use>
84
+ </connection>
85
+ </catalogfilters_write>
86
+ <catalogfilters_read>
87
+ <connection>
88
+ <use>core_read</use>
89
+ </connection>
90
+ </catalogfilters_read>
91
+
92
+ <bricks_catalogfilters_setup>
93
+ <setup>
94
+ <module>Bricks_Catalogfilters</module>
95
+ </setup>
96
+ </bricks_catalogfilters_setup>
97
+ </resources>
98
+ </global>
99
+
100
+ <frontend>
101
+ <routers>
102
+ <catalogfilters>
103
+ <use>standard</use>
104
+ <args>
105
+ <module>Bricks_Catalogfilters</module>
106
+ <frontName>filters</frontName>
107
+ </args>
108
+ </catalogfilters>
109
+ </routers>
110
+ <layout>
111
+ <updates>
112
+ <catalogfilters>
113
+ <file>catalogfilters.xml</file>
114
+ </catalogfilters>
115
+ </updates>
116
+ </layout>
117
+ <events>
118
+ <catalog_product_collection_apply_limitations_after>
119
+ <observers>
120
+ <catalogfilters_observer_edit_col>
121
+ <type>singleton</type>
122
+ <class>catalogfilters/observer</class>
123
+ <method>changeColletion</method>
124
+ </catalogfilters_observer_edit_col>
125
+ </observers>
126
+ </catalog_product_collection_apply_limitations_after>
127
+ </events>
128
+ </frontend>
129
+ </config>
app/code/local/Bricks/Catalogfilters/sql/catalogfilters_setup/mysql4-install-0.1.0.php ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $installer = $this;
3
+ $installer->startSetup();
4
+ $table = Mage::getSingleton('core/resource')->getTableName('catalogfilters/catalogfilters');
5
+ $installer->run("
6
+ DROP TABLE IF EXISTS `{$installer->getTable('catalogfilters')}`;
7
+ CREATE TABLE `{$installer->getTable('catalogfilters')}`(
8
+ `id` int(11) NOT NULL AUTO_INCREMENT,
9
+ `filter_attribute_code` text NOT NULL,
10
+ PRIMARY KEY (`id`)
11
+ ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
12
+ INSERT INTO $table (`id`, `filter_attribute_code`) VALUES
13
+ (1, '');
14
+ ");
15
+
16
+ $installer->endSetup();
app/code/local/Bricks/Catalogfilters/sql/catalogfilters_setup/mysql4-upgrade-0.1.0-0.1.1.php ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $installer = $this;
3
+ $installer->startSetup();
4
+
5
+ $installer->run("
6
+ DROP TABLE IF EXISTS `{$installer->getTable('catalogfilters')}`;
7
+ CREATE TABLE `{$installer->getTable('catalogfilters')}`(
8
+ `id` int(11) NOT NULL AUTO_INCREMENT,
9
+ `filter_attribute_code` text NOT NULL,
10
+ PRIMARY KEY (`id`)
11
+ ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
12
+ INSERT INTO `catalogfilters` (`id`, `filter_attribute_code`) VALUES
13
+ (1, '');
14
+ ");
15
+
16
+ $installer->endSetup();
app/design/frontend/base/default/layout/catalogfilters.xml ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <layout version="0.1.0">
3
+ <default>
4
+ <reference name="content"></reference>
5
+ </default>
6
+ <catalogfilters_test_index>
7
+ <reference name="content">
8
+ <block type="catalogfilters/test" name="index_test" template="catalogfilters/index.phtml" />
9
+ </reference>
10
+ </catalogfilters_test_index>
11
+ </layout>
12
+
app/design/frontend/base/default/template/catalogfilters/index.phtml ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <link rel="stylesheet" type="text/css" href="<?php echo Mage::getBaseUrl('skin'); ?>frontend/base/default/css/semantic.css">
2
+ <script src="<?php echo Mage::getBaseUrl('skin'); ?>frontend/base/default/js/semantic.js"></script>
3
+ <?php
4
+ $model = Mage::getModel('catalogfilters/catalogfilters')->load(1);
5
+ $array = explode(',', $model->getFilterAttributeCode());
6
+ $_category = Mage::getModel('catalog/layer')->getCurrentCategory();
7
+ $currentUrl=strtok($_SERVER["REQUEST_URI"],'?');
8
+ $cate_id = Mage::getModel('catalog/layer')->getCurrentCategory()->getId();
9
+ if($model->getFilterAttributeCode()!='')
10
+ {
11
+ ?>
12
+ <div id="attributes">
13
+ <?php
14
+ foreach ($array as $key => $val) {
15
+ ?>
16
+ <!-- <select disabled="disabled" id='<?php echo $val; ?>' >
17
+ <option>Loading Options....</option>
18
+ </select> -->
19
+ <div id='<?php echo $val; ?>' class="ui loading selection dropdown">
20
+ <?php echo $val; ?>
21
+ <i class="dropdown icon"></i>
22
+ <div class="menu">
23
+ <div class="item">loading....</div>
24
+ </div>
25
+ </div>
26
+ <?php
27
+ }
28
+ ?>
29
+ <button onclick="resetFilters()" class="ui secondary button">Reset Filters</button>
30
+ </div>
31
+ <?php
32
+ }
33
+ ?>
34
+ <!-- <input type="button" onclick="resetFilters()" value="Reset Filters" id="reset" /> -->
35
+
36
+ <script type="text/javascript">
37
+ jQuery(document).ready(function($){
38
+ var url = "<?php echo Mage::getBaseUrl().'filters/test/loadAttribs'; ?>";
39
+ jQuery.ajax({
40
+ url: url,
41
+ dataType: 'json',
42
+ type : 'get',
43
+ data: {'cate_id':<?php echo $cate_id;?>},
44
+ success: function(response){
45
+
46
+ var $el = jQuery("#attributes");
47
+ if(!response.error)
48
+ {
49
+ jQuery.each(response, function(val, key) {
50
+ // console.log(val);
51
+ if(key)
52
+ {
53
+ var $el2 = jQuery("#"+val);
54
+ jQuery("#"+val+" .menu").remove(); // Remove previous options
55
+ jQuery("#"+val+" .icon").remove(); // Remove previous options
56
+
57
+ $el2.removeClass(); // remove all classes
58
+ $el2.addClass('ui floating dropdown labeled search icon button');
59
+ $el2.attr('onchange','getUrl("'+val+'",this)');
60
+ $el2.append('<i class="filter icon"></i><div class="menu"><div class="header"><i class="tags icon"></i>Filter by '+val+'</div></div>');
61
+ var $menu = jQuery("#"+val+" .menu");
62
+
63
+ jQuery.each(key, function(value1, key1) {
64
+ $menu.append(
65
+ '<div onclick="getUrl('+"'"+val+"'"+','+"'"+key1+"'"+')" class="item">'+value1+'</div>'
66
+
67
+ );
68
+ });
69
+ }else
70
+ {
71
+ var $el2 = jQuery("#"+val);
72
+ jQuery("#"+val+" .menu").remove(); // Remove previous options
73
+ jQuery("#"+val+" .icon").remove(); // Remove previous options
74
+
75
+ $el2.removeClass(); // remove all classes
76
+ $el2.addClass('ui floating dropdown labeled search icon button');
77
+ $el2.append('<i class="filter icon"></i><div class="menu"><div class="header"><i class="tags icon"></i>Filter by '+val+'</div></div>');
78
+ var $menu = jQuery("#"+val+" .menu");
79
+ $menu.append(
80
+ '<div class="item">No '+val+' Not Found</div>'
81
+ );
82
+
83
+ }
84
+
85
+ });
86
+ jQuery('.ui.dropdown').dropdown();
87
+ }
88
+ }
89
+ });
90
+
91
+ });
92
+ jQuery('.ui.dropdown')
93
+ .dropdown()
94
+ ;
95
+ function getUrl($item,$value)
96
+ {
97
+ window.location.href = "<?php echo $currentUrl?>?"+$item+"="+$value;
98
+ }
99
+ function resetFilters()
100
+ {
101
+ window.location.href = "<?php echo $currentUrl?>";
102
+ }
103
+ </script>
104
+ <style>
105
+ .dropdown
106
+ {
107
+ overflow: visible !Important;
108
+ height: auto !Important;
109
+ /*width: auto !Important;*/
110
+ }
111
+ .dropdown:before, .dropdown:after
112
+ {
113
+ background: none !Important;
114
+ }
115
+ .button span, .cart-table .product-cart-actions .button span, #co-shipping-method-form .buttons-set .button span, .footer .button span, .button2 span, .minicart-actions .cart-link span, .minicart-actions .checkout-button span
116
+ {
117
+
118
+ }
119
+ </style>
app/design/frontend/base/default/template/catalogfilters/index_with_input_field.phtml ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <link rel="stylesheet" type="text/css" href="<?php echo Mage::getBaseUrl('skin'); ?>frontend/base/default/css/semantic.css">
2
+ <script src="<?php echo Mage::getBaseUrl('skin'); ?>frontend/base/default/js/semantic.js"></script>
3
+ <?php
4
+ $model = Mage::getModel('catalogfilters/catalogfilters')->load(1);
5
+ $array = explode(',', $model->getFilterAttributeCode());
6
+ $_category = Mage::getModel('catalog/layer')->getCurrentCategory();
7
+ $currentUrl=strtok($_SERVER["REQUEST_URI"],'?');
8
+ $cate_id = Mage::getModel('catalog/layer')->getCurrentCategory()->getId();
9
+ ?>
10
+ <div id="attributes">
11
+ <?php
12
+ foreach ($array as $key => $val) {
13
+ ?>
14
+ <select class="ui search dropdown" disabled="disabled" id='<?php echo $val; ?>' >
15
+ <option>Loading Options....</option>
16
+ </select>
17
+ <?php
18
+
19
+ }
20
+
21
+ ?>
22
+
23
+
24
+ </div>
25
+ <script type="text/javascript">
26
+ jQuery(document).ready(function($){
27
+ var url = "<?php echo Mage::getBaseUrl().'filters/test/loadAttribs'; ?>";
28
+ jQuery.ajax({
29
+ url: url,
30
+ dataType: 'json',
31
+ type : 'get',
32
+ data: {'cate_id':<?php echo $cate_id;?>},
33
+ success: function(response){
34
+
35
+ var $el = jQuery("#attributes");
36
+ if(response)
37
+ {
38
+ jQuery.each(response, function(val, key) {
39
+ // console.log(val);
40
+ if(key)
41
+ {
42
+ var $el2 = jQuery("#"+val);
43
+ $el2.empty(); // remove old options
44
+ $el2.attr('onchange','getUrl("'+val+'",this)');
45
+ $el2.addClass('ui search dropdown');
46
+ $el2.append($("<option></option>").attr("value", '').text('Select Option'));
47
+ jQuery.each(key, function(value1, key1) {
48
+ $el2.append(jQuery("<option></option>").attr("value", key1).text(value1));
49
+ });
50
+ $el2.removeAttr('disabled');
51
+ }else
52
+ {
53
+ var $el2 = jQuery("#"+val);
54
+ $el2.empty(); // remove old options
55
+ $el2.append($("<option></option>").attr("value", '').text('Select Option'));
56
+ $el2.removeAttr('disabled');
57
+ }
58
+
59
+ });
60
+ }
61
+ jQuery('.ui.dropdown').dropdown();
62
+ }
63
+ });
64
+
65
+ });
66
+ jQuery('.ui.dropdown').dropdown();
67
+ function getUrl($val,$el)
68
+ {
69
+ window.location.href = "<?php echo $currentUrl?>?"+$val+"="+$el.value;
70
+ }
71
+ </script>
72
+ <style>
73
+ .dropdown
74
+ {
75
+ overflow: visible !Important;
76
+ height: auto !Important;
77
+ width: auto !Important;
78
+ }
79
+ .dropdown:before, .dropdown:after
80
+ {
81
+ background: none !Important;
82
+ }
83
+ .dropdown:before, .dropdown:after {
84
+ {
85
+ border-style: none !Important;
86
+ position: relative !Important;
87
+ }
88
+ .dropdown:before {
89
+ border-bottom-style: none !Important;
90
+ border-top: medium none !Important;
91
+ }
92
+ </style>
app/etc/modules/Bricks_catalogfilters.xml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Bricks_Catalogfilters>
5
+ <active>true</active>
6
+ <codePool>local</codePool>
7
+ </Bricks_Catalogfilters>
8
+ </modules>
9
+ </config>
package.xml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <package>
3
+ <name>catalogfilters</name>
4
+ <version>0.1.0</version>
5
+ <stability>stable</stability>
6
+ <license>OSL-3.0</license>
7
+ <channel>community</channel>
8
+ <extends/>
9
+ <summary>catalogfilters</summary>
10
+ <description>catalogfilters</description>
11
+ <notes>catalogfilters</notes>
12
+ <authors><author><name>ab</name><user>sahi</user><email>sahi.abubakar@gmail.com</email></author></authors>
13
+ <date>2016-02-01</date>
14
+ <time>14:40:56</time>
15
+ <contents><target name="magelocal"><dir name="Bricks"><dir name="Catalogfilters"><dir name="Block"><dir name="Adminhtml"><dir name="Catalogfilters"><dir name="Edit"><file name="Form.php" hash="9f91507ab63f462a99ecfcc2ed508e4a"/><dir name="Tab"><file name="Form.php" hash="5f657556bfa05c9748aceda03e5684fb"/><file name="Metaform.php" hash="2cff1580d4d3bd1aa6712f247524d2d7"/></dir><file name="Tabs.php" hash="64e356df0325eec6b2dbc3e73b6106e1"/></dir><file name="Edit.php" hash="3f25fbd3171d5a3040ad19ab133e15aa"/><dir name="Grid"><dir name="Renderer"><file name="Reward.php" hash="7290ec3a60d562e09a6bb3e97cca904d"/></dir></dir><file name="Grid.php" hash="daedc5f74c378e64b0e3037657bce173"/></dir><file name="Catalogfilters.php" hash="5776ce7edb6cdd097a05c742d87064f0"/></dir><file name="Test.php" hash="4c996a63726b83825e5f7054147eefbc"/><dir name="Widget"><dir name="Grid"><file name="Column.php" hash="6e6221c56e5f3c9a798444adf8228b30"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="9800e6bbb7ec92134dbb63ae54634f6c"/></dir><dir name="Model"><file name="Catalogfilters.php" hash="6027820fdcaec41cd719e5286586fbaa"/><dir name="Entity"><dir name="Attribute"><dir name="Source"><dir name="Boolean"><file name="Config.php" hash="7f14cc6852694c2ff7b2ed3da11e061e"/></dir></dir></dir></dir><dir name="Mysql4"><dir name="Catalogfilters"><file name="Collection.php" hash="7bd1d5e232baa1ff2db67bdf461faf90"/></dir><file name="Catalogfilters.php" hash="ddc2fe814df5c1ce8e2ad2811071251b"/></dir><file name="Observer.php" hash="cfba518288e1ec42e320793ea9d66051"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="CatalogfiltersController.php" hash="7a0e2033d00f0e6a739df4cb99a6dfd6"/></dir><file name="TestController.php" hash="9ab7f3f06cc60b317bcaa008fd97a738"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2b8234b7b4d336f1503b1c7b249ee820"/><file name="config.xml" hash="7a38a27d191a1b235e246186231a467b"/></dir><dir name="sql"><dir name="catalogfilters_setup"><file name="mysql4-install-0.1.0.php" hash="3f027b1812d4ac15d368190f91996c58"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="a41abc44048188fc0977c4b056647d2a"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Bricks_catalogfilters.xml" hash="56ace9bec273bb6417c3bbbbce7ab1c1"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="catalogfilters.xml" hash="90dd2d283057424670e31918d0272a8a"/></dir><dir name="template"><dir name="catalogfilters"><file name="index.phtml" hash="c1b448ef36520e43ddf16258bf323001"/><file name="index_with_input_field.phtml" hash="efbddbc4160706a9c29f2e0541c078f7"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="js"><file name="semantic.js" hash="04497920ab25c7c4278e128e9b264d93"/></dir><dir name="css"><file name="semantic.css" hash="902992ed6adf5ed64792edf0f80e188b"/><dir name="fonts"><file name="icons.eot" hash="f7c2b4b747b1a225eb8dee034134a1b0"/><file name="icons.otf" hash="0b462f5cc07779cab3bef252c0271f2b"/><file name="icons.svg" hash="2980083682e94d33a66eef2e7d612519"/><file name="icons.ttf" hash="706450d7bba6374ca02fe167d86685cb"/><file name="icons.woff" hash="d9ee23d59d0e0e727b51368b458a0bff"/><file name="icons.woff2" hash="97493d3f11c0a3bd5cbd959f5d19b699"/></dir><dir name="images"><file name="flags.png" hash="9c74e172f87984c48ddf5c8108cabe67"/></dir></dir></dir></dir></dir></target></contents>
16
+ <compatible/>
17
+ <dependencies><required><php><min>2.0.0</min><max>6.0.0</max></php></required></dependencies>
18
+ </package>
skin/frontend/base/default/css/fonts/icons.eot ADDED
Binary file
skin/frontend/base/default/css/fonts/icons.otf ADDED
Binary file
skin/frontend/base/default/css/fonts/icons.svg ADDED
@@ -0,0 +1,565 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
4
+ <metadata></metadata>
5
+ <defs>
6
+ <font id="fontawesomeregular" horiz-adv-x="1536" >
7
+ <font-face units-per-em="1792" ascent="1536" descent="-256" />
8
+ <missing-glyph horiz-adv-x="448" />
9
+ <glyph unicode=" " horiz-adv-x="448" />
10
+ <glyph unicode="&#x09;" horiz-adv-x="448" />
11
+ <glyph unicode="&#xa0;" horiz-adv-x="448" />
12
+ <glyph unicode="&#xa8;" horiz-adv-x="1792" />
13
+ <glyph unicode="&#xa9;" horiz-adv-x="1792" />
14
+ <glyph unicode="&#xae;" horiz-adv-x="1792" />
15
+ <glyph unicode="&#xb4;" horiz-adv-x="1792" />
16
+ <glyph unicode="&#xc6;" horiz-adv-x="1792" />
17
+ <glyph unicode="&#xd8;" horiz-adv-x="1792" />
18
+ <glyph unicode="&#x2000;" horiz-adv-x="768" />
19
+ <glyph unicode="&#x2001;" horiz-adv-x="1537" />
20
+ <glyph unicode="&#x2002;" horiz-adv-x="768" />
21
+ <glyph unicode="&#x2003;" horiz-adv-x="1537" />
22
+ <glyph unicode="&#x2004;" horiz-adv-x="512" />
23
+ <glyph unicode="&#x2005;" horiz-adv-x="384" />
24
+ <glyph unicode="&#x2006;" horiz-adv-x="256" />
25
+ <glyph unicode="&#x2007;" horiz-adv-x="256" />
26
+ <glyph unicode="&#x2008;" horiz-adv-x="192" />
27
+ <glyph unicode="&#x2009;" horiz-adv-x="307" />
28
+ <glyph unicode="&#x200a;" horiz-adv-x="85" />
29
+ <glyph unicode="&#x202f;" horiz-adv-x="307" />
30
+ <glyph unicode="&#x205f;" horiz-adv-x="384" />
31
+ <glyph unicode="&#x2122;" horiz-adv-x="1792" />
32
+ <glyph unicode="&#x221e;" horiz-adv-x="1792" />
33
+ <glyph unicode="&#x2260;" horiz-adv-x="1792" />
34
+ <glyph unicode="&#x25fc;" horiz-adv-x="500" d="M0 0z" />
35
+ <glyph unicode="&#xf000;" horiz-adv-x="1792" d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
36
+ <glyph unicode="&#xf001;" d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89 t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
37
+ <glyph unicode="&#xf002;" horiz-adv-x="1664" d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5 t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
38
+ <glyph unicode="&#xf003;" horiz-adv-x="1792" d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13 t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
39
+ <glyph unicode="&#xf004;" horiz-adv-x="1792" d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600 q-18 -18 -44 -18z" />
40
+ <glyph unicode="&#xf005;" horiz-adv-x="1664" d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455 l502 -73q56 -9 56 -46z" />
41
+ <glyph unicode="&#xf006;" horiz-adv-x="1664" d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500 l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
42
+ <glyph unicode="&#xf007;" horiz-adv-x="1408" d="M1408 131q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q9 0 42 -21.5t74.5 -48t108 -48t133.5 -21.5t133.5 21.5t108 48t74.5 48t42 21.5q61 0 111.5 -20t85.5 -53.5t62 -81 t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
43
+ <glyph unicode="&#xf008;" horiz-adv-x="1920" d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128 q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45 t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128 q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19 t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
44
+ <glyph unicode="&#xf009;" horiz-adv-x="1664" d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38 h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
45
+ <glyph unicode="&#xf00a;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
46
+ <glyph unicode="&#xf00b;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
47
+ <glyph unicode="&#xf00c;" horiz-adv-x="1792" d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
48
+ <glyph unicode="&#xf00d;" horiz-adv-x="1408" d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68 t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
49
+ <glyph unicode="&#xf00e;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224 q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5 t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
50
+ <glyph unicode="&#xf010;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z " />
51
+ <glyph unicode="&#xf011;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5 t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
52
+ <glyph unicode="&#xf012;" horiz-adv-x="1792" d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
53
+ <glyph unicode="&#xf013;" d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38 q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13 l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22 q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
54
+ <glyph unicode="&#xf014;" horiz-adv-x="1408" d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832 q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
55
+ <glyph unicode="&#xf015;" horiz-adv-x="1664" d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5 l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
56
+ <glyph unicode="&#xf016;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z " />
57
+ <glyph unicode="&#xf017;" d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
58
+ <glyph unicode="&#xf018;" horiz-adv-x="1920" d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256 q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
59
+ <glyph unicode="&#xf019;" horiz-adv-x="1664" d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136 q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
60
+ <glyph unicode="&#xf01a;" d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273 t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
61
+ <glyph unicode="&#xf01b;" d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198 t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
62
+ <glyph unicode="&#xf01c;" d="M1023 576h316q-1 3 -2.5 8t-2.5 8l-212 496h-708l-212 -496q-1 -2 -2.5 -8t-2.5 -8h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552 q25 -61 25 -123z" />
63
+ <glyph unicode="&#xf01d;" d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
64
+ <glyph unicode="&#xf01e;" d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q14 0 25 -9 l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
65
+ <glyph unicode="&#xf021;" d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117 q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5 q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
66
+ <glyph unicode="&#xf022;" horiz-adv-x="1792" d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5 t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47 t47 -113z" />
67
+ <glyph unicode="&#xf023;" horiz-adv-x="1152" d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
68
+ <glyph unicode="&#xf024;" horiz-adv-x="1792" d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48 t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
69
+ <glyph unicode="&#xf025;" horiz-adv-x="1664" d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78 t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5 t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
70
+ <glyph unicode="&#xf026;" horiz-adv-x="768" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
71
+ <glyph unicode="&#xf027;" horiz-adv-x="1152" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
72
+ <glyph unicode="&#xf028;" horiz-adv-x="1664" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5 t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289 t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
73
+ <glyph unicode="&#xf029;" horiz-adv-x="1408" d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
74
+ <glyph unicode="&#xf02a;" horiz-adv-x="1792" d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
75
+ <glyph unicode="&#xf02b;" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91z" />
76
+ <glyph unicode="&#xf02c;" horiz-adv-x="1920" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
77
+ <glyph unicode="&#xf02d;" horiz-adv-x="1664" d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23 q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906 q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5 t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
78
+ <glyph unicode="&#xf02e;" horiz-adv-x="1280" d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
79
+ <glyph unicode="&#xf02f;" horiz-adv-x="1664" d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68 v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
80
+ <glyph unicode="&#xf030;" horiz-adv-x="1920" d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136 q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
81
+ <glyph unicode="&#xf031;" horiz-adv-x="1664" d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57 q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -4 -0.5 -13t-0.5 -13q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5 q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" />
82
+ <glyph unicode="&#xf032;" horiz-adv-x="1408" d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142 q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5 t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68.5 -0.5t67.5 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5 t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" />
83
+ <glyph unicode="&#xf033;" horiz-adv-x="1024" d="M0 -126l17 85q6 2 81.5 21.5t111.5 37.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5 q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" />
84
+ <glyph unicode="&#xf034;" horiz-adv-x="1792" d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2 t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5 q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" />
85
+ <glyph unicode="&#xf035;" d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1 t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5 t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49 t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" />
86
+ <glyph unicode="&#xf036;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
87
+ <glyph unicode="&#xf037;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19 h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
88
+ <glyph unicode="&#xf038;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
89
+ <glyph unicode="&#xf039;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
90
+ <glyph unicode="&#xf03a;" horiz-adv-x="1792" d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5 t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344 q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192 q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
91
+ <glyph unicode="&#xf03b;" horiz-adv-x="1792" d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
92
+ <glyph unicode="&#xf03c;" horiz-adv-x="1792" d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
93
+ <glyph unicode="&#xf03d;" horiz-adv-x="1792" d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5 q39 -17 39 -59z" />
94
+ <glyph unicode="&#xf03e;" horiz-adv-x="1920" d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216 q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
95
+ <glyph unicode="&#xf040;" d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38 q53 0 91 -38l235 -234q37 -39 37 -91z" />
96
+ <glyph unicode="&#xf041;" horiz-adv-x="1024" d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
97
+ <glyph unicode="&#xf042;" d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
98
+ <glyph unicode="&#xf043;" horiz-adv-x="1024" d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362 q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
99
+ <glyph unicode="&#xf044;" horiz-adv-x="1792" d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92 l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
100
+ <glyph unicode="&#xf045;" horiz-adv-x="1664" d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832 q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5 t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
101
+ <glyph unicode="&#xf046;" horiz-adv-x="1664" d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832 q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110 q24 -24 24 -57t-24 -57z" />
102
+ <glyph unicode="&#xf047;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45 t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
103
+ <glyph unicode="&#xf048;" horiz-adv-x="1024" d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19z" />
104
+ <glyph unicode="&#xf049;" horiz-adv-x="1792" d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19l710 710 q19 19 32 13t13 -32v-710q4 11 13 19z" />
105
+ <glyph unicode="&#xf04a;" horiz-adv-x="1664" d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-8 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q5 11 13 19z" />
106
+ <glyph unicode="&#xf04b;" horiz-adv-x="1408" d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
107
+ <glyph unicode="&#xf04c;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
108
+ <glyph unicode="&#xf04d;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
109
+ <glyph unicode="&#xf04e;" horiz-adv-x="1664" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
110
+ <glyph unicode="&#xf050;" horiz-adv-x="1792" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19l-710 -710 q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
111
+ <glyph unicode="&#xf051;" horiz-adv-x="1024" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19z" />
112
+ <glyph unicode="&#xf052;" horiz-adv-x="1538" d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
113
+ <glyph unicode="&#xf053;" horiz-adv-x="1280" d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" />
114
+ <glyph unicode="&#xf054;" horiz-adv-x="1280" d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" />
115
+ <glyph unicode="&#xf055;" d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5 t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
116
+ <glyph unicode="&#xf056;" d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" />
117
+ <glyph unicode="&#xf057;" d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19 q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
118
+ <glyph unicode="&#xf058;" d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
119
+ <glyph unicode="&#xf059;" d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59 q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
120
+ <glyph unicode="&#xf05a;" d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23 t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
121
+ <glyph unicode="&#xf05b;" d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109 q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143 q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
122
+ <glyph unicode="&#xf05c;" d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
123
+ <glyph unicode="&#xf05d;" d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198 t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
124
+ <glyph unicode="&#xf05e;" d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61 t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
125
+ <glyph unicode="&#xf060;" d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5 t32.5 -90.5z" />
126
+ <glyph unicode="&#xf061;" d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
127
+ <glyph unicode="&#xf062;" horiz-adv-x="1664" d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651 q37 -39 37 -91z" />
128
+ <glyph unicode="&#xf063;" horiz-adv-x="1664" d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
129
+ <glyph unicode="&#xf064;" horiz-adv-x="1792" d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22 t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
130
+ <glyph unicode="&#xf065;" d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332 q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
131
+ <glyph unicode="&#xf066;" d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45 t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
132
+ <glyph unicode="&#xf067;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
133
+ <glyph unicode="&#xf068;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
134
+ <glyph unicode="&#xf069;" horiz-adv-x="1664" d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154 q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
135
+ <glyph unicode="&#xf06a;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192 q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
136
+ <glyph unicode="&#xf06b;" d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320 q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5 t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
137
+ <glyph unicode="&#xf06c;" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268 q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-30 0 -51 11t-31 24t-27 42q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5 t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
138
+ <glyph unicode="&#xf06d;" horiz-adv-x="1408" d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1 q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
139
+ <glyph unicode="&#xf06e;" horiz-adv-x="1792" d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5 t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
140
+ <glyph unicode="&#xf070;" horiz-adv-x="1792" d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9 q-105 -188 -315 -566t-316 -567l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5 q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z " />
141
+ <glyph unicode="&#xf071;" horiz-adv-x="1792" d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185 q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
142
+ <glyph unicode="&#xf072;" horiz-adv-x="1408" d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9 q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
143
+ <glyph unicode="&#xf073;" horiz-adv-x="1664" d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64 q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47 h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
144
+ <glyph unicode="&#xf074;" horiz-adv-x="1792" d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1 t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5 v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111 t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
145
+ <glyph unicode="&#xf075;" horiz-adv-x="1792" d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281 q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
146
+ <glyph unicode="&#xf076;" d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384 q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
147
+ <glyph unicode="&#xf077;" horiz-adv-x="1792" d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" />
148
+ <glyph unicode="&#xf078;" horiz-adv-x="1792" d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" />
149
+ <glyph unicode="&#xf079;" horiz-adv-x="1920" d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -11 7 -21 zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z " />
150
+ <glyph unicode="&#xf07a;" horiz-adv-x="1664" d="M640 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1536 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1664 1088v-512q0 -24 -16.5 -42.5t-40.5 -21.5l-1044 -122q13 -60 13 -70q0 -16 -24 -64h920q26 0 45 -19t19 -45 t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 11 8 31.5t16 36t21.5 40t15.5 29.5l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t19.5 -15.5t13 -24.5t8 -26t5.5 -29.5t4.5 -26h1201q26 0 45 -19t19 -45z" />
151
+ <glyph unicode="&#xf07b;" horiz-adv-x="1664" d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
152
+ <glyph unicode="&#xf07c;" horiz-adv-x="1920" d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5 t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
153
+ <glyph unicode="&#xf07d;" horiz-adv-x="768" d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
154
+ <glyph unicode="&#xf07e;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
155
+ <glyph unicode="&#xf080;" horiz-adv-x="2048" d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" />
156
+ <glyph unicode="&#xf081;" d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4 q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5 t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
157
+ <glyph unicode="&#xf082;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-188v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-532q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960z" />
158
+ <glyph unicode="&#xf083;" horiz-adv-x="1792" d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5 t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280 q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
159
+ <glyph unicode="&#xf084;" horiz-adv-x="1792" d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26 l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5 t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
160
+ <glyph unicode="&#xf085;" horiz-adv-x="1920" d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -10 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5 l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7 l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -9 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31 q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20 t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68 q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70 q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
161
+ <glyph unicode="&#xf086;" horiz-adv-x="1792" d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224 q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7 q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
162
+ <glyph unicode="&#xf087;" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5 t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769 q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128 q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
163
+ <glyph unicode="&#xf088;" d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 32 18 69t-17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5 t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5 h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -74 49 -163z" />
164
+ <glyph unicode="&#xf089;" horiz-adv-x="896" d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
165
+ <glyph unicode="&#xf08a;" horiz-adv-x="1792" d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559 q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5 q224 0 351 -124t127 -344z" />
166
+ <glyph unicode="&#xf08b;" horiz-adv-x="1664" d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704 q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
167
+ <glyph unicode="&#xf08c;" d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5 q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
168
+ <glyph unicode="&#xf08d;" horiz-adv-x="1152" d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38 t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
169
+ <glyph unicode="&#xf08e;" horiz-adv-x="1792" d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
170
+ <glyph unicode="&#xf090;" d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
171
+ <glyph unicode="&#xf091;" horiz-adv-x="1664" d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
172
+ <glyph unicode="&#xf092;" d="M394 184q-8 -9 -20 3q-13 11 -4 19q8 9 20 -3q12 -11 4 -19zM352 245q9 -12 0 -19q-8 -6 -17 7t0 18q9 7 17 -6zM291 305q-5 -7 -13 -2q-10 5 -7 12q3 5 13 2q10 -5 7 -12zM322 271q-6 -7 -16 3q-9 11 -2 16q6 6 16 -3q9 -11 2 -16zM451 159q-4 -12 -19 -6q-17 4 -13 15 t19 7q16 -5 13 -16zM514 154q0 -11 -16 -11q-17 -2 -17 11q0 11 16 11q17 2 17 -11zM572 164q2 -10 -14 -14t-18 8t14 15q16 2 18 -9zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-224q-16 0 -24.5 1t-19.5 5t-16 14.5t-5 27.5v239q0 97 -52 142q57 6 102.5 18t94 39 t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103 q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -103t0.5 -68q0 -22 -11 -33.5t-22 -13t-33 -1.5 h-224q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
173
+ <glyph unicode="&#xf093;" horiz-adv-x="1664" d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
174
+ <glyph unicode="&#xf094;" d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -10 1 -18.5t3 -17t4 -13.5t6.5 -16t6.5 -17q16 -40 25 -118.5t9 -136.5z" />
175
+ <glyph unicode="&#xf095;" horiz-adv-x="1408" d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -52.5 3.5t-57.5 12.5t-47.5 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-128 79 -264.5 215.5t-215.5 264.5q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47.5t-12.5 57.5t-3.5 52.5 q0 92 51 186q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174 q2 -1 19 -11.5t24 -14t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
176
+ <glyph unicode="&#xf096;" horiz-adv-x="1408" d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q119 0 203.5 -84.5t84.5 -203.5z" />
177
+ <glyph unicode="&#xf097;" horiz-adv-x="1280" d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289 q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
178
+ <glyph unicode="&#xf098;" d="M1280 343q0 11 -2 16q-3 8 -38.5 29.5t-88.5 49.5l-53 29q-5 3 -19 13t-25 15t-21 5q-18 0 -47 -32.5t-57 -65.5t-44 -33q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170.5 126.5t-126.5 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5t-3.5 16.5q0 13 20.5 33.5t45 38.5 t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5t320.5 -216.5q6 -2 30 -11t33 -12.5 t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
179
+ <glyph unicode="&#xf099;" horiz-adv-x="1664" d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
180
+ <glyph unicode="&#xf09a;" horiz-adv-x="1024" d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" />
181
+ <glyph unicode="&#xf09b;" d="M1536 640q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -39.5 7t-12.5 30v211q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5 q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23 q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -89t0.5 -54q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
182
+ <glyph unicode="&#xf09c;" horiz-adv-x="1664" d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 t316.5 -131.5t131.5 -316.5z" />
183
+ <glyph unicode="&#xf09d;" horiz-adv-x="1920" d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
184
+ <glyph unicode="&#xf09e;" horiz-adv-x="1408" d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 q187 -186 294 -425.5t120 -501.5z" />
185
+ <glyph unicode="&#xf0a0;" d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5 h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75 l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
186
+ <glyph unicode="&#xf0a1;" horiz-adv-x="1792" d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5 t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
187
+ <glyph unicode="&#xf0a2;" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5 t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
188
+ <glyph unicode="&#xf0a3;" d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70 l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70 l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
189
+ <glyph unicode="&#xf0a4;" horiz-adv-x="1792" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106 q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43 q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5 t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
190
+ <glyph unicode="&#xf0a5;" horiz-adv-x="1792" d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-2 3 -3.5 4.5t-4 4.5t-4.5 5q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576 q-50 0 -89 -38.5t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45 t45 -19t45 19t19 45zM1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128 q0 122 81.5 189t206.5 67q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
191
+ <glyph unicode="&#xf0a6;" d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576 q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5 t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76 q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
192
+ <glyph unicode="&#xf0a7;" d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33 t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580 q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100 q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
193
+ <glyph unicode="&#xf0a8;" d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
194
+ <glyph unicode="&#xf0a9;" d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
195
+ <glyph unicode="&#xf0aa;" d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
196
+ <glyph unicode="&#xf0ab;" d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
197
+ <glyph unicode="&#xf0ac;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11 q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 10.5t-9.5 10.5q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5 q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5 q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5 t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-5 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3 q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25 q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5 t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5 t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10t17 -20q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21 q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5 q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3 q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5 t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q7 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5 q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7 q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
198
+ <glyph unicode="&#xf0ad;" horiz-adv-x="1664" d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5 t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
199
+ <glyph unicode="&#xf0ae;" horiz-adv-x="1792" d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19 t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
200
+ <glyph unicode="&#xf0b0;" horiz-adv-x="1408" d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
201
+ <glyph unicode="&#xf0b1;" horiz-adv-x="1792" d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68 t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
202
+ <glyph unicode="&#xf0b2;" d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144 l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z " />
203
+ <glyph unicode="&#xf0c0;" horiz-adv-x="1920" d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75 t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5 t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
204
+ <glyph unicode="&#xf0c1;" horiz-adv-x="1664" d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26 l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15 t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207 q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
205
+ <glyph unicode="&#xf0c2;" horiz-adv-x="1920" d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z " />
206
+ <glyph unicode="&#xf0c3;" horiz-adv-x="1664" d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
207
+ <glyph unicode="&#xf0c4;" horiz-adv-x="1792" d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84 q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148 q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108 q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6 q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
208
+ <glyph unicode="&#xf0c5;" horiz-adv-x="1792" d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299 h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
209
+ <glyph unicode="&#xf0c6;" horiz-adv-x="1408" d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181 l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235 z" />
210
+ <glyph unicode="&#xf0c7;" d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5 h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
211
+ <glyph unicode="&#xf0c8;" d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
212
+ <glyph unicode="&#xf0c9;" d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45 t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
213
+ <glyph unicode="&#xf0ca;" horiz-adv-x="1792" d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
214
+ <glyph unicode="&#xf0cb;" horiz-adv-x="1792" d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362 q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5 t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 122t0.5 121v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5 t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
215
+ <glyph unicode="&#xf0cc;" horiz-adv-x="1792" d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 97 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6 l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -55 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23 l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
216
+ <glyph unicode="&#xf0cd;" d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47 q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41 q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472 q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
217
+ <glyph unicode="&#xf0ce;" horiz-adv-x="1664" d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23 v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192 q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192 q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113 z" />
218
+ <glyph unicode="&#xf0d0;" horiz-adv-x="1664" d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276 l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
219
+ <glyph unicode="&#xf0d1;" horiz-adv-x="1792" d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
220
+ <glyph unicode="&#xf0d2;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
221
+ <glyph unicode="&#xf0d3;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
222
+ <glyph unicode="&#xf0d4;" d="M829 318q0 -76 -58.5 -112.5t-139.5 -36.5q-41 0 -80.5 9.5t-75.5 28.5t-58 53t-22 78q0 46 25 80t65.5 51.5t82 25t84.5 7.5q20 0 31 -2q2 -1 23 -16.5t26 -19t23 -18t24.5 -22t19 -22.5t17 -26t9 -26.5t4.5 -31.5zM755 863q0 -60 -33 -99.5t-92 -39.5q-53 0 -93 42.5 t-57.5 96.5t-17.5 106q0 61 32 104t92 43q53 0 93.5 -45t58 -101t17.5 -107zM861 1120l88 64h-265q-85 0 -161 -32t-127.5 -98t-51.5 -153q0 -93 64.5 -154.5t158.5 -61.5q22 0 43 3q-13 -29 -13 -54q0 -44 40 -94q-175 -12 -257 -63q-47 -29 -75.5 -73t-28.5 -95 q0 -43 18.5 -77.5t48.5 -56.5t69 -37t77.5 -21t76.5 -6q60 0 120.5 15.5t113.5 46t86 82.5t33 117q0 49 -20 89.5t-49 66.5t-58 47.5t-49 44t-20 44.5t15.5 42.5t37.5 39.5t44 42t37.5 59.5t15.5 82.5q0 60 -22.5 99.5t-72.5 90.5h83zM1152 672h128v64h-128v128h-64v-128 h-128v-64h128v-160h64v160zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
223
+ <glyph unicode="&#xf0d5;" horiz-adv-x="1664" d="M735 740q0 -36 32 -70.5t77.5 -68t90.5 -73.5t77 -104t32 -142q0 -90 -48 -173q-72 -122 -211 -179.5t-298 -57.5q-132 0 -246.5 41.5t-171.5 137.5q-37 60 -37 131q0 81 44.5 150t118.5 115q131 82 404 100q-32 42 -47.5 74t-15.5 73q0 36 21 85q-46 -4 -68 -4 q-148 0 -249.5 96.5t-101.5 244.5q0 82 36 159t99 131q77 66 182.5 98t217.5 32h418l-138 -88h-131q74 -63 112 -133t38 -160q0 -72 -24.5 -129.5t-59 -93t-69.5 -65t-59.5 -61.5t-24.5 -66zM589 836q38 0 78 16.5t66 43.5q53 57 53 159q0 58 -17 125t-48.5 129.5 t-84.5 103.5t-117 41q-42 0 -82.5 -19.5t-65.5 -52.5q-47 -59 -47 -160q0 -46 10 -97.5t31.5 -103t52 -92.5t75 -67t96.5 -26zM591 -37q58 0 111.5 13t99 39t73 73t27.5 109q0 25 -7 49t-14.5 42t-27 41.5t-29.5 35t-38.5 34.5t-36.5 29t-41.5 30t-36.5 26q-16 2 -48 2 q-53 0 -105 -7t-107.5 -25t-97 -46t-68.5 -74.5t-27 -105.5q0 -70 35 -123.5t91.5 -83t119 -44t127.5 -14.5zM1401 839h213v-108h-213v-219h-105v219h-212v108h212v217h105v-217z" />
224
+ <glyph unicode="&#xf0d6;" horiz-adv-x="1920" d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
225
+ <glyph unicode="&#xf0d7;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
226
+ <glyph unicode="&#xf0d8;" horiz-adv-x="1024" d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
227
+ <glyph unicode="&#xf0d9;" horiz-adv-x="640" d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
228
+ <glyph unicode="&#xf0da;" horiz-adv-x="640" d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
229
+ <glyph unicode="&#xf0db;" horiz-adv-x="1664" d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
230
+ <glyph unicode="&#xf0dc;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
231
+ <glyph unicode="&#xf0dd;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
232
+ <glyph unicode="&#xf0de;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
233
+ <glyph unicode="&#xf0e0;" horiz-adv-x="1792" d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123 q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
234
+ <glyph unicode="&#xf0e1;" d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329 q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
235
+ <glyph unicode="&#xf0e2;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
236
+ <glyph unicode="&#xf0e3;" horiz-adv-x="1792" d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5 t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14 q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28 q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
237
+ <glyph unicode="&#xf0e4;" horiz-adv-x="1792" d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5 t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5 t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29 q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
238
+ <glyph unicode="&#xf0e5;" horiz-adv-x="1792" d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640 q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5 t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
239
+ <glyph unicode="&#xf0e6;" horiz-adv-x="1792" d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257 t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5 t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129 q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
240
+ <glyph unicode="&#xf0e7;" horiz-adv-x="896" d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
241
+ <glyph unicode="&#xf0e8;" horiz-adv-x="1792" d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68 z" />
242
+ <glyph unicode="&#xf0e9;" horiz-adv-x="1664" d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97 q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69 q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
243
+ <glyph unicode="&#xf0ea;" horiz-adv-x="1792" d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28 h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
244
+ <glyph unicode="&#xf0eb;" horiz-adv-x="1024" d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134 q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47 q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5 t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
245
+ <glyph unicode="&#xf0ec;" horiz-adv-x="1792" d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9 q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
246
+ <glyph unicode="&#xf0ed;" horiz-adv-x="1920" d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
247
+ <glyph unicode="&#xf0ee;" horiz-adv-x="1920" d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
248
+ <glyph unicode="&#xf0f0;" horiz-adv-x="1408" d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56 t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68 t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" />
249
+ <glyph unicode="&#xf0f1;" horiz-adv-x="1408" d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48 t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252 t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
250
+ <glyph unicode="&#xf0f2;" horiz-adv-x="1792" d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66 t66 -158z" />
251
+ <glyph unicode="&#xf0f3;" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5 t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
252
+ <glyph unicode="&#xf0f4;" horiz-adv-x="1920" d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45 t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
253
+ <glyph unicode="&#xf0f5;" horiz-adv-x="1408" d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45 t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
254
+ <glyph unicode="&#xf0f6;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704 q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" />
255
+ <glyph unicode="&#xf0f7;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
256
+ <glyph unicode="&#xf0f8;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5 t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320 v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
257
+ <glyph unicode="&#xf0f9;" horiz-adv-x="1920" d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152 q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
258
+ <glyph unicode="&#xf0fa;" horiz-adv-x="1792" d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32 q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
259
+ <glyph unicode="&#xf0fb;" horiz-adv-x="1920" d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96 q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q261 -58 287 -93z" />
260
+ <glyph unicode="&#xf0fc;" horiz-adv-x="1664" d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
261
+ <glyph unicode="&#xf0fd;" d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
262
+ <glyph unicode="&#xf0fe;" d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
263
+ <glyph unicode="&#xf100;" horiz-adv-x="1024" d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
264
+ <glyph unicode="&#xf101;" horiz-adv-x="1024" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23 l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
265
+ <glyph unicode="&#xf102;" horiz-adv-x="1152" d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393 q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
266
+ <glyph unicode="&#xf103;" horiz-adv-x="1152" d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
267
+ <glyph unicode="&#xf104;" horiz-adv-x="640" d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
268
+ <glyph unicode="&#xf105;" horiz-adv-x="640" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
269
+ <glyph unicode="&#xf106;" horiz-adv-x="1152" d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
270
+ <glyph unicode="&#xf107;" horiz-adv-x="1152" d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
271
+ <glyph unicode="&#xf108;" horiz-adv-x="1920" d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19 t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
272
+ <glyph unicode="&#xf109;" horiz-adv-x="1920" d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
273
+ <glyph unicode="&#xf10a;" horiz-adv-x="1152" d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832 q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
274
+ <glyph unicode="&#xf10b;" horiz-adv-x="768" d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136 q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
275
+ <glyph unicode="&#xf10c;" d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103 t279.5 -279.5t103 -385.5z" />
276
+ <glyph unicode="&#xf10d;" horiz-adv-x="1664" d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
277
+ <glyph unicode="&#xf10e;" horiz-adv-x="1664" d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216 v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
278
+ <glyph unicode="&#xf110;" horiz-adv-x="1792" d="M526 142q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 -64q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -53 -37.5 -90.5t-90.5 -37.5 t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1522 142q0 -52 -38 -90t-90 -38q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM558 1138q0 -66 -47 -113t-113 -47t-113 47t-47 113t47 113t113 47t113 -47t47 -113z M1728 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1088 1344q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1618 1138q0 -93 -66 -158.5t-158 -65.5q-93 0 -158.5 65.5t-65.5 158.5 q0 92 65.5 158t158.5 66q92 0 158 -66t66 -158z" />
279
+ <glyph unicode="&#xf111;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
280
+ <glyph unicode="&#xf112;" horiz-adv-x="1792" d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19 l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
281
+ <glyph unicode="&#xf113;" horiz-adv-x="1664" d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 q0 -87 -27 -168q136 -160 136 -398z" />
282
+ <glyph unicode="&#xf114;" horiz-adv-x="1664" d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
283
+ <glyph unicode="&#xf115;" horiz-adv-x="1920" d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z " />
284
+ <glyph unicode="&#xf116;" horiz-adv-x="1792" />
285
+ <glyph unicode="&#xf117;" horiz-adv-x="1792" />
286
+ <glyph unicode="&#xf118;" d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
287
+ <glyph unicode="&#xf119;" d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
288
+ <glyph unicode="&#xf11a;" d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
289
+ <glyph unicode="&#xf11b;" horiz-adv-x="1920" d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150 t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
290
+ <glyph unicode="&#xf11c;" horiz-adv-x="1920" d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16 h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16 h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96 q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896 h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
291
+ <glyph unicode="&#xf11d;" horiz-adv-x="1792" d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9 h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102 q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
292
+ <glyph unicode="&#xf11e;" horiz-adv-x="1792" d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2 q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266 q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8 q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
293
+ <glyph unicode="&#xf120;" horiz-adv-x="1664" d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9 t9 -23z" />
294
+ <glyph unicode="&#xf121;" horiz-adv-x="1920" d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5 l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
295
+ <glyph unicode="&#xf122;" horiz-adv-x="1792" d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1 q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
296
+ <glyph unicode="&#xf123;" horiz-adv-x="1664" d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5 l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
297
+ <glyph unicode="&#xf124;" horiz-adv-x="1408" d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
298
+ <glyph unicode="&#xf125;" horiz-adv-x="1664" d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23 v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
299
+ <glyph unicode="&#xf126;" horiz-adv-x="1024" d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5 q-2 -287 -226 -414q-68 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497 q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
300
+ <glyph unicode="&#xf127;" horiz-adv-x="1664" d="M439 265l-256 -256q-10 -9 -23 -9q-12 0 -23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320 q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18 l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9 t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
301
+ <glyph unicode="&#xf128;" horiz-adv-x="1024" d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5 t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
302
+ <glyph unicode="&#xf129;" horiz-adv-x="640" d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192 q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
303
+ <glyph unicode="&#xf12a;" horiz-adv-x="640" d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
304
+ <glyph unicode="&#xf12b;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1534 846v-206h-514l-3 27 q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5t-65.5 -51.5t-30.5 -63h232v80 h126z" />
305
+ <glyph unicode="&#xf12c;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1536 -50v-206h-514l-4 27 q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73h232v80h126z" />
306
+ <glyph unicode="&#xf12d;" horiz-adv-x="1920" d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
307
+ <glyph unicode="&#xf12e;" horiz-adv-x="1664" d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5 t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89 q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117 q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
308
+ <glyph unicode="&#xf130;" horiz-adv-x="1152" d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5 t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
309
+ <glyph unicode="&#xf131;" horiz-adv-x="1408" d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128 q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23 t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
310
+ <glyph unicode="&#xf132;" horiz-adv-x="1280" d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150 t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
311
+ <glyph unicode="&#xf133;" horiz-adv-x="1664" d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
312
+ <glyph unicode="&#xf134;" horiz-adv-x="1408" d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
313
+ <glyph unicode="&#xf135;" horiz-adv-x="1664" d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
314
+ <glyph unicode="&#xf136;" horiz-adv-x="1792" d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
315
+ <glyph unicode="&#xf137;" d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
316
+ <glyph unicode="&#xf138;" d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
317
+ <glyph unicode="&#xf139;" d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
318
+ <glyph unicode="&#xf13a;" d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
319
+ <glyph unicode="&#xf13b;" horiz-adv-x="1408" d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
320
+ <glyph unicode="&#xf13c;" horiz-adv-x="1792" d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
321
+ <glyph unicode="&#xf13d;" horiz-adv-x="1792" d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-13 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352 q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19 t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
322
+ <glyph unicode="&#xf13e;" horiz-adv-x="1152" d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181 v-320h736z" />
323
+ <glyph unicode="&#xf140;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150 t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
324
+ <glyph unicode="&#xf141;" horiz-adv-x="1408" d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
325
+ <glyph unicode="&#xf142;" horiz-adv-x="384" d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
326
+ <glyph unicode="&#xf143;" d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 232 -177 396t-396 177q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128q13 0 23 10 t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
327
+ <glyph unicode="&#xf144;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56 q16 -8 32 -8q17 0 32 9z" />
328
+ <glyph unicode="&#xf145;" horiz-adv-x="1792" d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136 t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
329
+ <glyph unicode="&#xf146;" d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
330
+ <glyph unicode="&#xf147;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5 t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
331
+ <glyph unicode="&#xf148;" horiz-adv-x="1024" d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
332
+ <glyph unicode="&#xf149;" horiz-adv-x="1024" d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
333
+ <glyph unicode="&#xf14a;" d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5 t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
334
+ <glyph unicode="&#xf14b;" d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
335
+ <glyph unicode="&#xf14c;" d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
336
+ <glyph unicode="&#xf14d;" d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q10 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5 t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
337
+ <glyph unicode="&#xf14e;" d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
338
+ <glyph unicode="&#xf150;" d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
339
+ <glyph unicode="&#xf151;" d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
340
+ <glyph unicode="&#xf152;" d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
341
+ <glyph unicode="&#xf153;" horiz-adv-x="1024" d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9 t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26 l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
342
+ <glyph unicode="&#xf154;" horiz-adv-x="1024" d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7 q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
343
+ <glyph unicode="&#xf155;" horiz-adv-x="1024" d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 t53 -63.5t31.5 -76.5t13 -94z" />
344
+ <glyph unicode="&#xf156;" horiz-adv-x="898" d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
345
+ <glyph unicode="&#xf157;" horiz-adv-x="1027" d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
346
+ <glyph unicode="&#xf158;" horiz-adv-x="1280" d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128 q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
347
+ <glyph unicode="&#xf159;" horiz-adv-x="1792" d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
348
+ <glyph unicode="&#xf15a;" horiz-adv-x="1280" d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
349
+ <glyph unicode="&#xf15b;" d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" />
350
+ <glyph unicode="&#xf15c;" d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" />
351
+ <glyph unicode="&#xf15d;" horiz-adv-x="1664" d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23 v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162 l230 -662h70z" />
352
+ <glyph unicode="&#xf15e;" horiz-adv-x="1664" d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150 v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248 v119h121z" />
353
+ <glyph unicode="&#xf160;" horiz-adv-x="1792" d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832 q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
354
+ <glyph unicode="&#xf161;" horiz-adv-x="1792" d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192 q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
355
+ <glyph unicode="&#xf162;" d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23 zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5 t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
356
+ <glyph unicode="&#xf163;" d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9 t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13 q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
357
+ <glyph unicode="&#xf164;" horiz-adv-x="1664" d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76 q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5 t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
358
+ <glyph unicode="&#xf165;" horiz-adv-x="1664" d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135 t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121 t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
359
+ <glyph unicode="&#xf166;" d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 16 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15 q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38 q21 -28 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5 q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78l24 -69t23 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38q-51 0 -78 -38 q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
360
+ <glyph unicode="&#xf167;" d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73 q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51 q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99 q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-37 -51 -106 -51q-67 0 -105 51 q-28 38 -28 118v175q0 80 28 117q38 51 105 51q69 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
361
+ <glyph unicode="&#xf168;" horiz-adv-x="1408" d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942 q25 45 64 45h241q22 0 31 -15z" />
362
+ <glyph unicode="&#xf169;" d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
363
+ <glyph unicode="&#xf16a;" horiz-adv-x="1792" d="M1280 640q0 37 -30 54l-512 320q-31 20 -65 2q-33 -18 -33 -56v-640q0 -38 33 -56q16 -8 31 -8q20 0 34 10l512 320q30 17 30 54zM1792 640q0 -96 -1 -150t-8.5 -136.5t-22.5 -147.5q-16 -73 -69 -123t-124 -58q-222 -25 -671 -25t-671 25q-71 8 -124.5 58t-69.5 123 q-14 65 -21.5 147.5t-8.5 136.5t-1 150t1 150t8.5 136.5t22.5 147.5q16 73 69 123t124 58q222 25 671 25t671 -25q71 -8 124.5 -58t69.5 -123q14 -65 21.5 -147.5t8.5 -136.5t1 -150z" />
364
+ <glyph unicode="&#xf16b;" horiz-adv-x="1792" d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
365
+ <glyph unicode="&#xf16c;" horiz-adv-x="1408" d="M928 135v-151l-707 -1v151zM1169 481v-701l-1 -35v-1h-1132l-35 1h-1v736h121v-618h928v618h120zM241 393l704 -65l-13 -150l-705 65zM309 709l683 -183l-39 -146l-683 183zM472 1058l609 -360l-77 -130l-609 360zM832 1389l398 -585l-124 -85l-399 584zM1285 1536 l121 -697l-149 -26l-121 697z" />
366
+ <glyph unicode="&#xf16d;" d="M1362 110v648h-135q20 -63 20 -131q0 -126 -64 -232.5t-174 -168.5t-240 -62q-197 0 -337 135.5t-140 327.5q0 68 20 131h-141v-648q0 -26 17.5 -43.5t43.5 -17.5h1069q25 0 43 17.5t18 43.5zM1078 643q0 124 -90.5 211.5t-218.5 87.5q-127 0 -217.5 -87.5t-90.5 -211.5 t90.5 -211.5t217.5 -87.5q128 0 218.5 87.5t90.5 211.5zM1362 1003v165q0 28 -20 48.5t-49 20.5h-174q-29 0 -49 -20.5t-20 -48.5v-165q0 -29 20 -49t49 -20h174q29 0 49 20t20 49zM1536 1211v-1142q0 -81 -58 -139t-139 -58h-1142q-81 0 -139 58t-58 139v1142q0 81 58 139 t139 58h1142q81 0 139 -58t58 -139z" />
367
+ <glyph unicode="&#xf16e;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
368
+ <glyph unicode="&#xf170;" d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
369
+ <glyph unicode="&#xf171;" horiz-adv-x="1408" d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22 t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18 t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5 t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
370
+ <glyph unicode="&#xf172;" d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5 t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
371
+ <glyph unicode="&#xf173;" horiz-adv-x="1024" d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14 q78 2 134 29z" />
372
+ <glyph unicode="&#xf174;" d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
373
+ <glyph unicode="&#xf175;" horiz-adv-x="768" d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
374
+ <glyph unicode="&#xf176;" horiz-adv-x="768" d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
375
+ <glyph unicode="&#xf177;" horiz-adv-x="1792" d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
376
+ <glyph unicode="&#xf178;" horiz-adv-x="1792" d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
377
+ <glyph unicode="&#xf179;" horiz-adv-x="1408" d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q112 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65 q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
378
+ <glyph unicode="&#xf17a;" horiz-adv-x="1664" d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
379
+ <glyph unicode="&#xf17b;" horiz-adv-x="1408" d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30 t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5 h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
380
+ <glyph unicode="&#xf17c;" d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-7 -10 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7 q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15 q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5 t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19 q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63 q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18l-4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92 q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152 q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-14 -1 -7 -7l4 -2 q14 -4 18 -31q0 -3 8 2zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5t-30 -18.5 t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43q-19 4 -51 9.5 t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49t-14 -48 q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54q110 143 124 195 q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5t-40.5 -33.5t-61 -14 q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5t15.5 47.5q1 -31 8 -56.5 t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
381
+ <glyph unicode="&#xf17d;" d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81 t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19 q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -6 6.5 -17.5t7.5 -16.5q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6 t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
382
+ <glyph unicode="&#xf17e;" d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5 t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5 q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80 q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
383
+ <glyph unicode="&#xf180;" horiz-adv-x="1280" d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324 l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" />
384
+ <glyph unicode="&#xf181;" d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408 q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
385
+ <glyph unicode="&#xf182;" horiz-adv-x="1280" d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43 q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
386
+ <glyph unicode="&#xf183;" horiz-adv-x="1024" d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
387
+ <glyph unicode="&#xf184;" d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
388
+ <glyph unicode="&#xf185;" horiz-adv-x="1792" d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4 l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94 q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
389
+ <glyph unicode="&#xf186;" d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61 t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
390
+ <glyph unicode="&#xf187;" horiz-adv-x="1792" d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536 q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
391
+ <glyph unicode="&#xf188;" horiz-adv-x="1664" d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
392
+ <glyph unicode="&#xf189;" horiz-adv-x="1920" d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-78 -100 -90 -131q-17 -41 14 -81q17 -21 81 -82h1l1 -1l1 -1l2 -2q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q17 19 38 30q53 26 239 24 q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 q39 5 64 -2.5t31 -16.5z" />
393
+ <glyph unicode="&#xf18a;" horiz-adv-x="1792" d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
394
+ <glyph unicode="&#xf18b;" d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495 q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
395
+ <glyph unicode="&#xf18c;" horiz-adv-x="1408" d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5 t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56 t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -5 1 -50.5t-1 -71.5q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5 t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
396
+ <glyph unicode="&#xf18d;" horiz-adv-x="1280" d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z " />
397
+ <glyph unicode="&#xf18e;" d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
398
+ <glyph unicode="&#xf190;" d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
399
+ <glyph unicode="&#xf191;" d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
400
+ <glyph unicode="&#xf192;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5 t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
401
+ <glyph unicode="&#xf193;" horiz-adv-x="1664" d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128 q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 16 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
402
+ <glyph unicode="&#xf194;" d="M1254 899q16 85 -21 132q-52 65 -187 45q-17 -3 -41 -12.5t-57.5 -30.5t-64.5 -48.5t-59.5 -70t-44.5 -91.5q80 7 113.5 -16t26.5 -99q-5 -52 -52 -143q-43 -78 -71 -99q-44 -32 -87 14q-23 24 -37.5 64.5t-19 73t-10 84t-8.5 71.5q-23 129 -34 164q-12 37 -35.5 69 t-50.5 40q-57 16 -127 -25q-54 -32 -136.5 -106t-122.5 -102v-7q16 -8 25.5 -26t21.5 -20q21 -3 54.5 8.5t58 10.5t41.5 -30q11 -18 18.5 -38.5t15 -48t12.5 -40.5q17 -46 53 -187q36 -146 57 -197q42 -99 103 -125q43 -12 85 -1.5t76 31.5q131 77 250 237 q104 139 172.5 292.5t82.5 226.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
403
+ <glyph unicode="&#xf195;" horiz-adv-x="1152" d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160 q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
404
+ <glyph unicode="&#xf196;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832 q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
405
+ <glyph unicode="&#xf197;" horiz-adv-x="2176" d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40 t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29 q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" />
406
+ <glyph unicode="&#xf198;" horiz-adv-x="1664" d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9 q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102 t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" />
407
+ <glyph unicode="&#xf199;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69 q-46 32 -141.5 92.5t-142.5 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13 t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" />
408
+ <glyph unicode="&#xf19a;" horiz-adv-x="1792" d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5 t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21 t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286 t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273 t273 -182.5t331.5 -68z" />
409
+ <glyph unicode="&#xf19b;" horiz-adv-x="1792" d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" />
410
+ <glyph unicode="&#xf19c;" horiz-adv-x="2048" d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64 q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" />
411
+ <glyph unicode="&#xf19d;" horiz-adv-x="2304" d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433 q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" />
412
+ <glyph unicode="&#xf19e;" d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q43 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0 q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" />
413
+ <glyph unicode="&#xf1a0;" horiz-adv-x="1280" d="M981 197q0 25 -7 49t-14.5 42t-27 41.5t-29.5 35t-38.5 34.5t-36.5 29t-41.5 30t-36.5 26q-16 2 -49 2q-53 0 -104.5 -7t-107 -25t-97 -46t-68.5 -74.5t-27 -105.5q0 -56 23.5 -102t61 -75.5t87 -50t100 -29t101.5 -8.5q58 0 111.5 13t99 39t73 73t27.5 109zM864 1055 q0 59 -17 125.5t-48 129t-84 103.5t-117 41q-42 0 -82.5 -19.5t-66.5 -52.5q-46 -59 -46 -160q0 -46 10 -97.5t31.5 -103t52 -92.5t75 -67t96.5 -26q37 0 77.5 16.5t65.5 43.5q53 56 53 159zM752 1536h417l-137 -88h-132q75 -63 113 -133t38 -160q0 -72 -24.5 -129.5 t-59.5 -93t-69.5 -65t-59 -61.5t-24.5 -66q0 -36 32 -70.5t77 -68t90.5 -73.5t77.5 -104t32 -142q0 -91 -49 -173q-71 -122 -209.5 -179.5t-298.5 -57.5q-132 0 -246.5 41.5t-172.5 137.5q-36 59 -36 131q0 81 44.5 150t118.5 115q131 82 404 100q-32 41 -47.5 73.5 t-15.5 73.5q0 40 21 85q-46 -4 -68 -4q-148 0 -249.5 96.5t-101.5 244.5q0 82 36 159t99 131q76 66 182 98t218 32z" />
414
+ <glyph unicode="&#xf1a1;" horiz-adv-x="2304" d="M1509 107q0 -14 -12 -29q-52 -59 -147.5 -83t-196.5 -24q-252 0 -346 107q-12 15 -12 29q0 17 12 29.5t29 12.5q15 0 30 -12q58 -49 125.5 -66t159.5 -17t160 17t127 66q15 12 30 12q17 0 29 -12.5t12 -29.5zM978 498q0 -61 -43 -104t-104 -43q-60 0 -104.5 43.5 t-44.5 103.5q0 61 44 105t105 44t104 -44t43 -105zM1622 498q0 -61 -43 -104t-104 -43q-60 0 -104.5 43.5t-44.5 103.5q0 61 44 105t105 44t104 -44t43 -105zM415 793q-39 27 -88 27q-66 0 -113 -47t-47 -113q0 -72 54 -121q53 141 194 254zM2020 382q0 222 -249 387 q-128 85 -291.5 126.5t-331.5 41.5t-331.5 -41.5t-292.5 -126.5q-249 -165 -249 -387t249 -387q129 -85 292.5 -126.5t331.5 -41.5t331.5 41.5t291.5 126.5q249 165 249 387zM2137 660q0 66 -47 113t-113 47q-50 0 -93 -30q140 -114 192 -256q61 48 61 126zM1993 1335 q0 49 -34.5 83.5t-82.5 34.5q-49 0 -83.5 -34.5t-34.5 -83.5q0 -48 34.5 -82.5t83.5 -34.5q48 0 82.5 34.5t34.5 82.5zM2220 660q0 -65 -33 -122t-89 -90q5 -35 5 -66q0 -139 -79 -255.5t-208 -201.5q-140 -92 -313.5 -136.5t-354.5 -44.5t-355 44.5t-314 136.5 q-129 85 -208 201.5t-79 255.5q0 36 6 71q-53 33 -83.5 88.5t-30.5 118.5q0 100 71 171.5t172 71.5q91 0 159 -60q265 170 638 177l144 456q10 29 40 29q24 0 384 -90q24 55 74 88t110 33q82 0 141 -59t59 -142t-59 -141.5t-141 -58.5q-83 0 -141.5 58.5t-59.5 140.5 l-339 80l-125 -395q349 -15 603 -179q71 63 163 63q101 0 172 -71.5t71 -171.5z" />
415
+ <glyph unicode="&#xf1a2;" d="M950 393q7 7 17.5 7t17.5 -7t7 -18t-7 -18q-65 -64 -208 -64h-1h-1q-143 0 -207 64q-8 7 -8 18t8 18q7 7 17.5 7t17.5 -7q49 -51 172 -51h1h1q122 0 173 51zM671 613q0 -37 -26 -64t-63 -27t-63 27t-26 64t26 63t63 26t63 -26t26 -63zM1214 1049q-29 0 -50 21t-21 50 q0 30 21 51t50 21q30 0 51 -21t21 -51q0 -29 -21 -50t-51 -21zM1216 1408q132 0 226 -94t94 -227v-894q0 -133 -94 -227t-226 -94h-896q-132 0 -226 94t-94 227v894q0 133 94 227t226 94h896zM1321 596q35 14 57 45.5t22 70.5q0 51 -36 87.5t-87 36.5q-60 0 -98 -48 q-151 107 -375 115l83 265l206 -49q1 -50 36.5 -85t84.5 -35q50 0 86 35.5t36 85.5t-36 86t-86 36q-36 0 -66 -20.5t-45 -53.5l-227 54q-9 2 -17.5 -2.5t-11.5 -14.5l-95 -302q-224 -4 -381 -113q-36 43 -93 43q-51 0 -87 -36.5t-36 -87.5q0 -37 19.5 -67.5t52.5 -45.5 q-7 -25 -7 -54q0 -98 74 -181.5t201.5 -132t278.5 -48.5q150 0 277.5 48.5t201.5 132t74 181.5q0 27 -6 54zM971 702q37 0 63 -26t26 -63t-26 -64t-63 -27t-63 27t-26 64t26 63t63 26z" />
416
+ <glyph unicode="&#xf1a3;" d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150 v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103 t385.5 -103t279.5 -279.5t103 -385.5z" />
417
+ <glyph unicode="&#xf1a4;" horiz-adv-x="1920" d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328 v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" />
418
+ <glyph unicode="&#xf1a5;" d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
419
+ <glyph unicode="&#xf1a6;" horiz-adv-x="2048" d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123 v-369h123z" />
420
+ <glyph unicode="&#xf1a7;" d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101 v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
421
+ <glyph unicode="&#xf1a8;" horiz-adv-x="2038" d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14 q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24 q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33 q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5 t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43 q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5 t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13 t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" />
422
+ <glyph unicode="&#xf1a9;" d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10 q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14 q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14 t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44 q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" />
423
+ <glyph unicode="&#xf1aa;" d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5 t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5 q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126 t135.5 51q85 0 145 -60.5t60 -145.5z" />
424
+ <glyph unicode="&#xf1ab;" d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5 q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28 q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11 q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q106 35 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5 q20 0 20 -21v-418z" />
425
+ <glyph unicode="&#xf1ac;" horiz-adv-x="1792" d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48 l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23 t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128 q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128 q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" />
426
+ <glyph unicode="&#xf1ad;" d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9 t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9 t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9 t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" />
427
+ <glyph unicode="&#xf1ae;" horiz-adv-x="1280" d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68t68 28t68 -28l228 -228h368l228 228q28 28 68 28t68 -28t28 -68t-28 -68zM864 1152q0 -93 -65.5 -158.5 t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
428
+ <glyph unicode="&#xf1b0;" horiz-adv-x="1664" d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5 q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819 q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5 t100.5 134t141.5 55.5z" />
429
+ <glyph unicode="&#xf1b1;" horiz-adv-x="768" d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" />
430
+ <glyph unicode="&#xf1b2;" horiz-adv-x="1792" d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z " />
431
+ <glyph unicode="&#xf1b3;" horiz-adv-x="2304" d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67 t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-5 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70 v-400l434 -186q36 -16 57 -48t21 -70z" />
432
+ <glyph unicode="&#xf1b4;" horiz-adv-x="2048" d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658 q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204 q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" />
433
+ <glyph unicode="&#xf1b5;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5 t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217 t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" />
434
+ <glyph unicode="&#xf1b6;" horiz-adv-x="1792" d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5 q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89 q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" />
435
+ <glyph unicode="&#xf1b7;" d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5 q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5 q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z " />
436
+ <glyph unicode="&#xf1b8;" horiz-adv-x="1792" d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188 l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5 t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1 q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" />
437
+ <glyph unicode="&#xf1b9;" horiz-adv-x="2048" d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384 q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5 l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" />
438
+ <glyph unicode="&#xf1ba;" horiz-adv-x="2048" d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5 t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" />
439
+ <glyph unicode="&#xf1bb;" d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384 q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" />
440
+ <glyph unicode="&#xf1bc;" d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64 q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37 q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
441
+ <glyph unicode="&#xf1bd;" horiz-adv-x="1024" d="M1024 1233l-303 -582l24 -31h279v-415h-507l-44 -30l-142 -273l-30 -30h-301v303l303 583l-24 30h-279v415h507l44 30l142 273l30 30h301v-303z" />
442
+ <glyph unicode="&#xf1be;" horiz-adv-x="2304" d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11 q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245 q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785 l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242 q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236q0 -11 -8 -19 t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786q-13 2 -22 11t-9 22v899 q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" />
443
+ <glyph unicode="&#xf1c0;" d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127 t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5 t-103 128v128q0 69 103 128t280 93.5t385 34.5z" />
444
+ <glyph unicode="&#xf1c1;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197 q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8 q-1 1 -1 2t-0.5 1.5t-0.5 1.5q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" />
445
+ <glyph unicode="&#xf1c2;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4l-3 21q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5t-3.5 -21.5l-4 -21h-4l-2 21 q-2 26 -7 46l-99 438h90v107h-300z" />
446
+ <glyph unicode="&#xf1c3;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107 h-290v-107h68l189 -272l-194 -283h-68z" />
447
+ <glyph unicode="&#xf1c4;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" />
448
+ <glyph unicode="&#xf1c5;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" />
449
+ <glyph unicode="&#xf1c6;" d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400 v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79 q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" />
450
+ <glyph unicode="&#xf1c7;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5 q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" />
451
+ <glyph unicode="&#xf1c8;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" />
452
+ <glyph unicode="&#xf1c9;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243 l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" />
453
+ <glyph unicode="&#xf1ca;" d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406 q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" />
454
+ <glyph unicode="&#xf1cb;" horiz-adv-x="1792" d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546 q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" />
455
+ <glyph unicode="&#xf1cc;" horiz-adv-x="2048" d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94 q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55 t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97q14 -16 29.5 -34t34.5 -40t29 -34q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5 t-85 -189.5z" />
456
+ <glyph unicode="&#xf1cd;" horiz-adv-x="1792" d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194 q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5 t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" />
457
+ <glyph unicode="&#xf1ce;" horiz-adv-x="1792" d="M1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348q0 222 101 414.5t276.5 317t390.5 155.5v-260q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 q0 230 -145.5 406t-366.5 221v260q215 -31 390.5 -155.5t276.5 -317t101 -414.5z" />
458
+ <glyph unicode="&#xf1d0;" horiz-adv-x="1792" d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41 t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170 t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136 q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" />
459
+ <glyph unicode="&#xf1d1;" horiz-adv-x="1792" d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251 l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162 q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33 q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5 t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71 t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
460
+ <glyph unicode="&#xf1d2;" d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85 q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392 q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072 q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
461
+ <glyph unicode="&#xf1d3;" horiz-adv-x="1792" d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58 q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47 q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171 v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" />
462
+ <glyph unicode="&#xf1d4;" d="M825 547l343 588h-150q-21 -39 -63.5 -118.5t-68 -128.5t-59.5 -118.5t-60 -128.5h-3q-21 48 -44.5 97t-52 105.5t-46.5 92t-54 104.5t-49 95h-150l323 -589v-435h134v436zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
463
+ <glyph unicode="&#xf1d5;" horiz-adv-x="1280" d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5 t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153 t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" />
464
+ <glyph unicode="&#xf1d6;" horiz-adv-x="1792" d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5 q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20 t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5 t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" />
465
+ <glyph unicode="&#xf1d7;" horiz-adv-x="2048" d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25 q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5 q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109 q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" />
466
+ <glyph unicode="&#xf1d8;" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" />
467
+ <glyph unicode="&#xf1d9;" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137 l863 639l-478 -797z" />
468
+ <glyph unicode="&#xf1da;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23 t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" />
469
+ <glyph unicode="&#xf1db;" d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
470
+ <glyph unicode="&#xf1dc;" horiz-adv-x="1792" d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15 t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2 t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160 q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5 q0 -26 -12 -48t-36 -22z" />
471
+ <glyph unicode="&#xf1dd;" horiz-adv-x="1280" d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179 q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" />
472
+ <glyph unicode="&#xf1de;" d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256 q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" />
473
+ <glyph unicode="&#xf1e0;" d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5 t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" />
474
+ <glyph unicode="&#xf1e1;" d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5 t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
475
+ <glyph unicode="&#xf1e2;" horiz-adv-x="1792" d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5 t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91 q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9 t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
476
+ <glyph unicode="&#xf1e3;" horiz-adv-x="1792" d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323 l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" />
477
+ <glyph unicode="&#xf1e4;" horiz-adv-x="1792" d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23 zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5 t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" />
478
+ <glyph unicode="&#xf1e5;" horiz-adv-x="1792" d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" />
479
+ <glyph unicode="&#xf1e6;" horiz-adv-x="1792" d="M1755 1083q37 -37 37 -90t-37 -91l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234l401 400 q38 37 91 37t90 -37z" />
480
+ <glyph unicode="&#xf1e7;" horiz-adv-x="1792" d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5 t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q3 -2 11 -7 t11 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" />
481
+ <glyph unicode="&#xf1e8;" horiz-adv-x="1792" d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" />
482
+ <glyph unicode="&#xf1e9;" d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36 q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q70 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5 t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87 q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" />
483
+ <glyph unicode="&#xf1ea;" horiz-adv-x="2048" d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19 t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" />
484
+ <glyph unicode="&#xf1eb;" horiz-adv-x="2048" d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121 q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" />
485
+ <glyph unicode="&#xf1ec;" horiz-adv-x="1792" d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5 t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38 h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" />
486
+ <glyph unicode="&#xf1ed;" horiz-adv-x="1792" d="M1112 1090q0 159 -237 159h-70q-32 0 -59.5 -21.5t-34.5 -52.5l-63 -276q-2 -5 -2 -16q0 -24 17 -39.5t41 -15.5h53q69 0 128.5 13t112.5 41t83.5 81.5t30.5 126.5zM1716 938q0 -265 -220 -428q-219 -161 -612 -161h-61q-32 0 -59 -21.5t-34 -52.5l-73 -316 q-8 -36 -40.5 -61.5t-69.5 -25.5h-213q-31 0 -53 20t-22 51q0 10 13 65h151q34 0 64 23.5t38 56.5l73 316q8 33 37.5 57t63.5 24h61q390 0 607 160t217 421q0 129 -51 207q183 -92 183 -335zM1533 1123q0 -264 -221 -428q-218 -161 -612 -161h-60q-32 0 -59.5 -22t-34.5 -53 l-73 -315q-8 -36 -40 -61.5t-69 -25.5h-214q-31 0 -52.5 19.5t-21.5 51.5q0 8 2 20l300 1301q8 36 40.5 61.5t69.5 25.5h444q68 0 125 -4t120.5 -15t113.5 -30t96.5 -50.5t77.5 -74t49.5 -103.5t18.5 -136z" />
487
+ <glyph unicode="&#xf1ee;" horiz-adv-x="1792" d="M602 949q19 -61 31 -123.5t17 -141.5t-14 -159t-62 -145q-21 81 -67 157t-95.5 127t-99 90.5t-78.5 57.5t-33 19q-62 34 -81.5 100t14.5 128t101 81.5t129 -14.5q138 -83 238 -177zM927 1236q11 -25 20.5 -46t36.5 -100.5t42.5 -150.5t25.5 -179.5t0 -205.5t-47.5 -209.5 t-105.5 -208.5q-51 -72 -138 -72q-54 0 -98 31q-57 40 -69 109t28 127q60 85 81 195t13 199.5t-32 180.5t-39 128t-22 52q-31 63 -8.5 129.5t85.5 97.5q34 17 75 17q47 0 88.5 -25t63.5 -69zM1248 567q-17 -160 -72 -311q-17 131 -63 246q25 174 -5 361q-27 178 -94 342 q114 -90 212 -211q9 -37 15 -80q26 -179 7 -347zM1520 1440q9 -17 23.5 -49.5t43.5 -117.5t50.5 -178t34 -227.5t5 -269t-47 -300t-112.5 -323.5q-22 -48 -66 -75.5t-95 -27.5q-39 0 -74 16q-67 31 -92.5 100t4.5 136q58 126 90 257.5t37.5 239.5t-3.5 213.5t-26.5 180.5 t-38.5 138.5t-32.5 90t-15.5 32.5q-34 65 -11.5 135.5t87.5 104.5q37 20 81 20q49 0 91.5 -25.5t66.5 -70.5z" />
488
+ <glyph unicode="&#xf1f0;" horiz-adv-x="2304" d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27 q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128 q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
489
+ <glyph unicode="&#xf1f1;" horiz-adv-x="2304" d="M671 603h-13q-47 0 -47 -32q0 -22 20 -22q17 0 28 15t12 39zM1066 639h62v3q1 4 0.5 6.5t-1 7t-2 8t-4.5 6.5t-7.5 5t-11.5 2q-28 0 -36 -38zM1606 603h-12q-48 0 -48 -32q0 -22 20 -22q17 0 28 15t12 39zM1925 629q0 41 -30 41q-19 0 -31 -20t-12 -51q0 -42 28 -42 q20 0 32.5 20t12.5 52zM480 770h87l-44 -262h-56l32 201l-71 -201h-39l-4 200l-34 -200h-53l44 262h81l2 -163zM733 663q0 -6 -4 -42q-16 -101 -17 -113h-47l1 22q-20 -26 -58 -26q-23 0 -37.5 16t-14.5 42q0 39 26 60.5t73 21.5q14 0 23 -1q0 3 0.5 5.5t1 4.5t0.5 3 q0 20 -36 20q-29 0 -59 -10q0 4 7 48q38 11 67 11q74 0 74 -62zM889 721l-8 -49q-22 3 -41 3q-27 0 -27 -17q0 -8 4.5 -12t21.5 -11q40 -19 40 -60q0 -72 -87 -71q-34 0 -58 6q0 2 7 49q29 -8 51 -8q32 0 32 19q0 7 -4.5 11.5t-21.5 12.5q-43 20 -43 59q0 72 84 72 q30 0 50 -4zM977 721h28l-7 -52h-29q-2 -17 -6.5 -40.5t-7 -38.5t-2.5 -18q0 -16 19 -16q8 0 16 2l-8 -47q-21 -7 -40 -7q-43 0 -45 47q0 12 8 56q3 20 25 146h55zM1180 648q0 -23 -7 -52h-111q-3 -22 10 -33t38 -11q30 0 58 14l-9 -54q-30 -8 -57 -8q-95 0 -95 95 q0 55 27.5 90.5t69.5 35.5q35 0 55.5 -21t20.5 -56zM1319 722q-13 -23 -22 -62q-22 2 -31 -24t-25 -128h-56l3 14q22 130 29 199h51l-3 -33q14 21 25.5 29.5t28.5 4.5zM1506 763l-9 -57q-28 14 -50 14q-31 0 -51 -27.5t-20 -70.5q0 -30 13.5 -47t38.5 -17q21 0 48 13 l-10 -59q-28 -8 -50 -8q-45 0 -71.5 30.5t-26.5 82.5q0 70 35.5 114.5t91.5 44.5q26 0 61 -13zM1668 663q0 -18 -4 -42q-13 -79 -17 -113h-46l1 22q-20 -26 -59 -26q-23 0 -37 16t-14 42q0 39 25.5 60.5t72.5 21.5q15 0 23 -1q2 7 2 13q0 20 -36 20q-29 0 -59 -10q0 4 8 48 q38 11 67 11q73 0 73 -62zM1809 722q-14 -24 -21 -62q-23 2 -31.5 -23t-25.5 -129h-56l3 14q19 104 29 199h52q0 -11 -4 -33q15 21 26.5 29.5t27.5 4.5zM1950 770h56l-43 -262h-53l3 19q-23 -23 -52 -23q-31 0 -49.5 24t-18.5 64q0 53 27.5 92t64.5 39q31 0 53 -29z M2061 640q0 148 -72.5 273t-198 198t-273.5 73q-181 0 -328 -110q127 -116 171 -284h-50q-44 150 -158 253q-114 -103 -158 -253h-50q44 168 171 284q-147 110 -328 110q-148 0 -273.5 -73t-198 -198t-72.5 -273t72.5 -273t198 -198t273.5 -73q181 0 328 110 q-120 111 -165 264h50q46 -138 152 -233q106 95 152 233h50q-45 -153 -165 -264q147 -110 328 -110q148 0 273.5 73t198 198t72.5 273zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
490
+ <glyph unicode="&#xf1f2;" horiz-adv-x="2304" d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42 q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604 v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569 q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73 t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" />
491
+ <glyph unicode="&#xf1f3;" horiz-adv-x="2304" d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260 l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279 v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040 q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168 q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5 t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21 h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5 t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" />
492
+ <glyph unicode="&#xf1f4;" horiz-adv-x="2304" d="M322 689h-15q-19 0 -19 18q0 28 19 85q5 15 15 19.5t28 4.5q77 0 77 -49q0 -41 -30.5 -59.5t-74.5 -18.5zM664 528q-47 0 -47 29q0 62 123 62l3 -3q-5 -88 -79 -88zM1438 687h-15q-19 0 -19 19q0 28 19 85q5 15 14.5 19t28.5 4q77 0 77 -49q0 -41 -30.5 -59.5 t-74.5 -18.5zM1780 527q-47 0 -47 30q0 62 123 62l3 -3q-5 -89 -79 -89zM373 894h-128q-8 0 -14.5 -4t-8.5 -7.5t-7 -12.5q-3 -7 -45 -190t-42 -192q0 -7 5.5 -12.5t13.5 -5.5h62q25 0 32.5 34.5l15 69t32.5 34.5q47 0 87.5 7.5t80.5 24.5t63.5 52.5t23.5 84.5 q0 36 -14.5 61t-41 36.5t-53.5 15.5t-62 4zM719 798q-38 0 -74 -6q-2 0 -8.5 -1t-9 -1.5l-7.5 -1.5t-7.5 -2t-6.5 -3t-6.5 -4t-5 -5t-4.5 -7t-4 -9q-9 -29 -9 -39t9 -10q5 0 21.5 5t19.5 6q30 8 58 8q74 0 74 -36q0 -11 -10 -14q-8 -2 -18 -3t-21.5 -1.5t-17.5 -1.5 q-38 -4 -64.5 -10t-56.5 -19.5t-45.5 -39t-15.5 -62.5q0 -38 26 -59.5t64 -21.5q24 0 45.5 6.5t33 13t38.5 23.5q-3 -7 -3 -15t5.5 -13.5t12.5 -5.5h56q1 1 7 3.5t7.5 3.5t5 3.5t5 5.5t2.5 8l45 194q4 13 4 30q0 81 -145 81zM1247 793h-74q-22 0 -39 -23q-5 -7 -29.5 -51 t-46.5 -81.5t-26 -38.5l-5 4q0 77 -27 166q-1 5 -3.5 8.5t-6 6.5t-6.5 5t-8.5 3t-8.5 1.5t-9.5 1t-9 0.5h-10h-8.5q-38 0 -38 -21l1 -5q5 -53 25 -151t25 -143q2 -16 2 -24q0 -19 -30.5 -61.5t-30.5 -58.5q0 -13 40 -13q61 0 76 25l245 415q10 20 10 26q0 9 -8 9zM1489 892 h-129q-18 0 -29 -23q-6 -13 -46.5 -191.5t-40.5 -190.5q0 -20 43 -20h7.5h9h9t9.5 1t8.5 2t8.5 3t6.5 4.5t5.5 6t3 8.5l21 91q2 10 10.5 17t19.5 7q47 0 87.5 7t80.5 24.5t63.5 52.5t23.5 84q0 36 -14.5 61t-41 36.5t-53.5 15.5t-62 4zM1835 798q-26 0 -74 -6 q-38 -6 -48 -16q-7 -8 -11 -19q-8 -24 -8 -39q0 -10 8 -10q1 0 41 12q30 8 58 8q74 0 74 -36q0 -12 -10 -14q-4 -1 -57 -7q-38 -4 -64.5 -10t-56.5 -19.5t-45.5 -39t-15.5 -62.5t26 -58.5t64 -21.5q24 0 45 6t34 13t38 24q-3 -15 -3 -16q0 -5 2 -8.5t6.5 -5.5t8 -3.5 t10.5 -2t9.5 -0.5h9.5h8q42 0 48 25l45 194q3 15 3 31q0 81 -145 81zM2157 889h-55q-25 0 -33 -40q-10 -44 -36.5 -167t-42.5 -190v-5q0 -16 16 -18h1h57q10 0 18.5 6.5t10.5 16.5l83 374h-1l1 5q0 7 -5.5 12.5t-13.5 5.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048 q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
493
+ <glyph unicode="&#xf1f5;" horiz-adv-x="2304" d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109 q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118 q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151 q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31 q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
494
+ <glyph unicode="&#xf1f6;" horiz-adv-x="2048" d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5 l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5 l418 363q10 8 23.5 7t21.5 -11z" />
495
+ <glyph unicode="&#xf1f7;" horiz-adv-x="2048" d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128 q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161 q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" />
496
+ <glyph unicode="&#xf1f8;" horiz-adv-x="1408" d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704 q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167 q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
497
+ <glyph unicode="&#xf1f9;" d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5 t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
498
+ <glyph unicode="&#xf1fa;" d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53 q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24 t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61 t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" />
499
+ <glyph unicode="&#xf1fb;" horiz-adv-x="1792" d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10 t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" />
500
+ <glyph unicode="&#xf1fc;" horiz-adv-x="1792" d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5 t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" />
501
+ <glyph unicode="&#xf1fd;" horiz-adv-x="1792" d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11t55.5 -11t52.5 -38q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5t47 37.5 q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-35 0 -55.5 11t-52.5 38q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38t-58 27 t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448h256v448 h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51 t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" />
502
+ <glyph unicode="&#xf1fe;" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" />
503
+ <glyph unicode="&#xf200;" horiz-adv-x="1792" d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" />
504
+ <glyph unicode="&#xf201;" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9 t9 -23z" />
505
+ <glyph unicode="&#xf202;" horiz-adv-x="1792" d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20 q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50 t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1 q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" />
506
+ <glyph unicode="&#xf203;" d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73 q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110 q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
507
+ <glyph unicode="&#xf204;" horiz-adv-x="2048" d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5 t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5 t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" />
508
+ <glyph unicode="&#xf205;" horiz-adv-x="2048" d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5 t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" />
509
+ <glyph unicode="&#xf206;" horiz-adv-x="2304" d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94 q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469 q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400 q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" />
510
+ <glyph unicode="&#xf207;" d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5 h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" />
511
+ <glyph unicode="&#xf208;" horiz-adv-x="2048" d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327 q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5 q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" />
512
+ <glyph unicode="&#xf209;" horiz-adv-x="1280" d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q18 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119 t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5 t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14 q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88 q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5 t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" />
513
+ <glyph unicode="&#xf20a;" horiz-adv-x="2048" d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206 q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307 t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14 t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" />
514
+ <glyph unicode="&#xf20b;" d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5 t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
515
+ <glyph unicode="&#xf20c;" d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55 q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410 q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" />
516
+ <glyph unicode="&#xf20d;" d="M915 450h-294l147 551zM1001 128h311l-324 1024h-440l-324 -1024h311l383 314zM1536 1120v-960q0 -118 -85 -203t-203 -85h-960q-118 0 -203 85t-85 203v960q0 118 85 203t203 85h960q118 0 203 -85t85 -203z" />
517
+ <glyph unicode="&#xf20e;" horiz-adv-x="2048" d="M2048 641q0 -21 -13 -36.5t-33 -19.5l-205 -356q3 -9 3 -18q0 -20 -12.5 -35.5t-32.5 -19.5l-193 -337q3 -8 3 -16q0 -23 -16.5 -40t-40.5 -17q-25 0 -41 18h-400q-17 -20 -43 -20t-43 20h-399q-17 -20 -43 -20q-23 0 -40 16.5t-17 40.5q0 8 4 20l-193 335 q-20 4 -32.5 19.5t-12.5 35.5q0 9 3 18l-206 356q-20 5 -32.5 20.5t-12.5 35.5q0 21 13.5 36.5t33.5 19.5l199 344q0 1 -0.5 3t-0.5 3q0 36 34 51l209 363q-4 10 -4 18q0 24 17 40.5t40 16.5q26 0 44 -21h396q16 21 43 21t43 -21h398q18 21 44 21q23 0 40 -16.5t17 -40.5 q0 -6 -4 -18l207 -358q23 -1 39 -17.5t16 -38.5q0 -13 -7 -27l187 -324q19 -4 31.5 -19.5t12.5 -35.5zM1063 -158h389l-342 354h-143l-342 -354h360q18 16 39 16t39 -16zM112 654q1 -4 1 -13q0 -10 -2 -15l208 -360q2 0 4.5 -1t5.5 -2.5l5 -2.5l188 199v347l-187 194 q-13 -8 -29 -10zM986 1438h-388l190 -200l554 200h-280q-16 -16 -38 -16t-38 16zM1689 226q1 6 5 11l-64 68l-17 -79h76zM1583 226l22 105l-252 266l-296 -307l63 -64h463zM1495 -142l16 28l65 310h-427l333 -343q8 4 13 5zM578 -158h5l342 354h-373v-335l4 -6q14 -5 22 -13 zM552 226h402l64 66l-309 321l-157 -166v-221zM359 226h163v189l-168 -177q4 -8 5 -12zM358 1051q0 -1 0.5 -2t0.5 -2q0 -16 -8 -29l171 -177v269zM552 1121v-311l153 -157l297 314l-223 236zM556 1425l-4 -8v-264l205 74l-191 201q-6 -2 -10 -3zM1447 1438h-16l-621 -224 l213 -225zM1023 946l-297 -315l311 -319l296 307zM688 634l-136 141v-284zM1038 270l-42 -44h85zM1374 618l238 -251l132 624l-3 5l-1 1zM1718 1018q-8 13 -8 29v2l-216 376q-5 1 -13 5l-437 -463l310 -327zM522 1142v223l-163 -282zM522 196h-163l163 -283v283zM1607 196 l-48 -227l130 227h-82zM1729 266l207 361q-2 10 -2 14q0 1 3 16l-171 296l-129 -612l77 -82q5 3 15 7z" />
518
+ <glyph unicode="&#xf210;" d="M0 856q0 131 91.5 226.5t222.5 95.5h742l352 358v-1470q0 -132 -91.5 -227t-222.5 -95h-780q-131 0 -222.5 95t-91.5 227v790zM1232 102l-176 180v425q0 46 -32 79t-78 33h-484q-46 0 -78 -33t-32 -79v-492q0 -46 32.5 -79.5t77.5 -33.5h770z" />
519
+ <glyph unicode="&#xf211;" d="M934 1386q-317 -121 -556 -362.5t-358 -560.5q-20 89 -20 176q0 208 102.5 384.5t278.5 279t384 102.5q82 0 169 -19zM1203 1267q93 -65 164 -155q-389 -113 -674.5 -400.5t-396.5 -676.5q-93 72 -155 162q112 386 395 671t667 399zM470 -67q115 356 379.5 622t619.5 384 q40 -92 54 -195q-292 -120 -516 -345t-343 -518q-103 14 -194 52zM1536 -125q-193 50 -367 115q-135 -84 -290 -107q109 205 274 370.5t369 275.5q-21 -152 -101 -284q65 -175 115 -370z" />
520
+ <glyph unicode="&#xf212;" horiz-adv-x="2048" d="M1893 1144l155 -1272q-131 0 -257 57q-200 91 -393 91q-226 0 -374 -148q-148 148 -374 148q-193 0 -393 -91q-128 -57 -252 -57h-5l155 1272q224 127 482 127q233 0 387 -106q154 106 387 106q258 0 482 -127zM1398 157q129 0 232 -28.5t260 -93.5l-124 1021 q-171 78 -368 78q-224 0 -374 -141q-150 141 -374 141q-197 0 -368 -78l-124 -1021q105 43 165.5 65t148.5 39.5t178 17.5q202 0 374 -108q172 108 374 108zM1438 191l-55 907q-211 -4 -359 -155q-152 155 -374 155q-176 0 -336 -66l-114 -941q124 51 228.5 76t221.5 25 q209 0 374 -102q172 107 374 102z" />
521
+ <glyph unicode="&#xf213;" horiz-adv-x="2048" d="M1500 165v733q0 21 -15 36t-35 15h-93q-20 0 -35 -15t-15 -36v-733q0 -20 15 -35t35 -15h93q20 0 35 15t15 35zM1216 165v531q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-531q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM924 165v429q0 20 -15 35t-35 15h-101 q-20 0 -35 -15t-15 -35v-429q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM632 165v362q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-362q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM2048 311q0 -166 -118 -284t-284 -118h-1244q-166 0 -284 118t-118 284 q0 116 63 214.5t168 148.5q-10 34 -10 73q0 113 80.5 193.5t193.5 80.5q102 0 180 -67q45 183 194 300t338 117q149 0 275 -73.5t199.5 -199.5t73.5 -275q0 -66 -14 -122q135 -33 221 -142.5t86 -247.5z" />
522
+ <glyph unicode="&#xf214;" d="M0 1536h1536v-1392l-776 -338l-760 338v1392zM1436 209v926h-1336v-926l661 -294zM1436 1235v201h-1336v-201h1336zM181 937v-115h-37v115h37zM181 789v-115h-37v115h37zM181 641v-115h-37v115h37zM181 493v-115h-37v115h37zM181 345v-115h-37v115h37zM207 202l15 34 l105 -47l-15 -33zM343 142l15 34l105 -46l-15 -34zM478 82l15 34l105 -46l-15 -34zM614 23l15 33l104 -46l-15 -34zM797 10l105 46l15 -33l-105 -47zM932 70l105 46l15 -34l-105 -46zM1068 130l105 46l15 -34l-105 -46zM1203 189l105 47l15 -34l-105 -46zM259 1389v-36h-114 v36h114zM421 1389v-36h-115v36h115zM583 1389v-36h-115v36h115zM744 1389v-36h-114v36h114zM906 1389v-36h-114v36h114zM1068 1389v-36h-115v36h115zM1230 1389v-36h-115v36h115zM1391 1389v-36h-114v36h114zM181 1049v-79h-37v115h115v-36h-78zM421 1085v-36h-115v36h115z M583 1085v-36h-115v36h115zM744 1085v-36h-114v36h114zM906 1085v-36h-114v36h114zM1068 1085v-36h-115v36h115zM1230 1085v-36h-115v36h115zM1355 970v79h-78v36h115v-115h-37zM1355 822v115h37v-115h-37zM1355 674v115h37v-115h-37zM1355 526v115h37v-115h-37zM1355 378 v115h37v-115h-37zM1355 230v115h37v-115h-37zM760 265q-129 0 -221 91.5t-92 221.5q0 129 92 221t221 92q130 0 221.5 -92t91.5 -221q0 -130 -91.5 -221.5t-221.5 -91.5zM595 646q0 -36 19.5 -56.5t49.5 -25t64 -7t64 -2t49.5 -9t19.5 -30.5q0 -49 -112 -49q-97 0 -123 51 h-3l-31 -63q67 -42 162 -42q29 0 56.5 5t55.5 16t45.5 33t17.5 53q0 46 -27.5 69.5t-67.5 27t-79.5 3t-67 5t-27.5 25.5q0 21 20.5 33t40.5 15t41 3q34 0 70.5 -11t51.5 -34h3l30 58q-3 1 -21 8.5t-22.5 9t-19.5 7t-22 7t-20 4.5t-24 4t-23 1q-29 0 -56.5 -5t-54 -16.5 t-43 -34t-16.5 -53.5z" />
523
+ <glyph unicode="&#xf215;" horiz-adv-x="2048" d="M863 504q0 112 -79.5 191.5t-191.5 79.5t-191 -79.5t-79 -191.5t79 -191t191 -79t191.5 79t79.5 191zM1726 505q0 112 -79 191t-191 79t-191.5 -79t-79.5 -191q0 -113 79.5 -192t191.5 -79t191 79.5t79 191.5zM2048 1314v-1348q0 -44 -31.5 -75.5t-76.5 -31.5h-1832 q-45 0 -76.5 31.5t-31.5 75.5v1348q0 44 31.5 75.5t76.5 31.5h431q44 0 76 -31.5t32 -75.5v-161h754v161q0 44 32 75.5t76 31.5h431q45 0 76.5 -31.5t31.5 -75.5z" />
524
+ <glyph unicode="&#xf216;" horiz-adv-x="2048" d="M1430 953zM1690 749q148 0 253 -98.5t105 -244.5q0 -157 -109 -261.5t-267 -104.5q-85 0 -162 27.5t-138 73.5t-118 106t-109 126.5t-103.5 132.5t-108.5 126t-117 106t-136 73.5t-159 27.5q-154 0 -251.5 -91.5t-97.5 -244.5q0 -157 104 -250t263 -93q100 0 208 37.5 t193 98.5q5 4 21 18.5t30 24t22 9.5q14 0 24.5 -10.5t10.5 -24.5q0 -24 -60 -77q-101 -88 -234.5 -142t-260.5 -54q-133 0 -245.5 58t-180 165t-67.5 241q0 205 141.5 341t347.5 136q120 0 226.5 -43.5t185.5 -113t151.5 -153t139 -167.5t133.5 -153.5t149.5 -113 t172.5 -43.5q102 0 168.5 61.5t66.5 162.5q0 95 -64.5 159t-159.5 64q-30 0 -81.5 -18.5t-68.5 -18.5q-20 0 -35.5 15t-15.5 35q0 18 8.5 57t8.5 59q0 159 -107.5 263t-266.5 104q-58 0 -111.5 -18.5t-84 -40.5t-55.5 -40.5t-33 -18.5q-15 0 -25.5 10.5t-10.5 25.5 q0 19 25 46q59 67 147 103.5t182 36.5q191 0 318 -125.5t127 -315.5q0 -37 -4 -66q57 15 115 15z" />
525
+ <glyph unicode="&#xf217;" horiz-adv-x="1664" d="M1216 832q0 26 -19 45t-45 19h-128v128q0 26 -19 45t-45 19t-45 -19t-19 -45v-128h-128q-26 0 -45 -19t-19 -45t19 -45t45 -19h128v-128q0 -26 19 -45t45 -19t45 19t19 45v128h128q26 0 45 19t19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
526
+ <glyph unicode="&#xf218;" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19t-45 -19l-147 -146v293q0 26 -19 45t-45 19t-45 -19t-19 -45v-293l-147 146q-19 19 -45 19t-45 -19t-19 -45t19 -45l256 -256q19 -19 45 -19t45 19l256 256q19 19 19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
527
+ <glyph unicode="&#xf219;" horiz-adv-x="2048" d="M212 768l623 -665l-300 665h-323zM1024 -4l349 772h-698zM538 896l204 384h-262l-288 -384h346zM1213 103l623 665h-323zM683 896h682l-204 384h-274zM1510 896h346l-288 384h-262zM1651 1382l384 -512q14 -18 13 -41.5t-17 -40.5l-960 -1024q-18 -20 -47 -20t-47 20 l-960 1024q-16 17 -17 40.5t13 41.5l384 512q18 26 51 26h1152q33 0 51 -26z" />
528
+ <glyph unicode="&#xf21a;" horiz-adv-x="2048" d="M1811 -19q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83 q19 19 45 19t45 -19l83 -83zM237 19q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -82l83 82q19 19 45 19t45 -19l83 -82l64 64v293l-210 314q-17 26 -7 56.5t40 40.5l177 58v299h128v128h256v128h256v-128h256v-128h128v-299l177 -58q30 -10 40 -40.5t-7 -56.5l-210 -314 v-293l19 18q19 19 45 19t45 -19l83 -82l83 82q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83zM640 1152v-128l384 128l384 -128v128h-128v128h-512v-128h-128z" />
529
+ <glyph unicode="&#xf21b;" d="M576 0l96 448l-96 128l-128 64zM832 0l128 640l-128 -64l-96 -128zM992 1010q-2 4 -4 6q-10 8 -96 8q-70 0 -167 -19q-7 -2 -21 -2t-21 2q-97 19 -167 19q-86 0 -96 -8q-2 -2 -4 -6q2 -18 4 -27q2 -3 7.5 -6.5t7.5 -10.5q2 -4 7.5 -20.5t7 -20.5t7.5 -17t8.5 -17t9 -14 t12 -13.5t14 -9.5t17.5 -8t20.5 -4t24.5 -2q36 0 59 12.5t32.5 30t14.5 34.5t11.5 29.5t17.5 12.5h12q11 0 17.5 -12.5t11.5 -29.5t14.5 -34.5t32.5 -30t59 -12.5q13 0 24.5 2t20.5 4t17.5 8t14 9.5t12 13.5t9 14t8.5 17t7.5 17t7 20.5t7.5 20.5q2 7 7.5 10.5t7.5 6.5 q2 9 4 27zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 61 4.5 118t19 125.5t37.5 123.5t63.5 103.5t93.5 74.5l-90 220h214q-22 64 -22 128q0 12 2 32q-194 40 -194 96q0 57 210 99q17 62 51.5 134t70.5 114q32 37 76 37q30 0 84 -31t84 -31t84 31 t84 31q44 0 76 -37q36 -42 70.5 -114t51.5 -134q210 -42 210 -99q0 -56 -194 -96q7 -81 -20 -160h214l-82 -225q63 -33 107.5 -96.5t65.5 -143.5t29 -151.5t8 -148.5z" />
530
+ <glyph unicode="&#xf21c;" horiz-adv-x="2304" d="M2301 500q12 -103 -22 -198.5t-99 -163.5t-158.5 -106t-196.5 -31q-161 11 -279.5 125t-134.5 274q-12 111 27.5 210.5t118.5 170.5l-71 107q-96 -80 -151 -194t-55 -244q0 -27 -18.5 -46.5t-45.5 -19.5h-256h-69q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5 t-131.5 316.5t131.5 316.5t316.5 131.5q76 0 152 -27l24 45q-123 110 -304 110h-64q-26 0 -45 19t-19 45t19 45t45 19h128q78 0 145 -13.5t116.5 -38.5t71.5 -39.5t51 -36.5h512h115l-85 128h-222q-30 0 -49 22.5t-14 52.5q4 23 23 38t43 15h253q33 0 53 -28l70 -105 l114 114q19 19 46 19h101q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-179l115 -172q131 63 275 36q143 -26 244 -134.5t118 -253.5zM448 128q115 0 203 72.5t111 183.5h-314q-35 0 -55 31q-18 32 -1 63l147 277q-47 13 -91 13q-132 0 -226 -94t-94 -226t94 -226 t226 -94zM1856 128q132 0 226 94t94 226t-94 226t-226 94q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94z" />
531
+ <glyph unicode="&#xf21d;" d="M1408 0q0 -63 -61.5 -113.5t-164 -81t-225 -46t-253.5 -15.5t-253.5 15.5t-225 46t-164 81t-61.5 113.5q0 49 33 88.5t91 66.5t118 44.5t131 29.5q26 5 48 -10.5t26 -41.5q5 -26 -10.5 -48t-41.5 -26q-58 -10 -106 -23.5t-76.5 -25.5t-48.5 -23.5t-27.5 -19.5t-8.5 -12 q3 -11 27 -26.5t73 -33t114 -32.5t160.5 -25t201.5 -10t201.5 10t160.5 25t114 33t73 33.5t27 27.5q-1 4 -8.5 11t-27.5 19t-48.5 23.5t-76.5 25t-106 23.5q-26 4 -41.5 26t-10.5 48q4 26 26 41.5t48 10.5q71 -12 131 -29.5t118 -44.5t91 -66.5t33 -88.5zM1024 896v-384 q0 -26 -19 -45t-45 -19h-64v-384q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v384h-64q-26 0 -45 19t-19 45v384q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5zM928 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5 t158.5 -65.5t65.5 -158.5z" />
532
+ <glyph unicode="&#xf21e;" horiz-adv-x="1792" d="M1280 512h305q-5 -6 -10 -10.5t-9 -7.5l-3 -4l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-5 2 -21 20h369q22 0 39.5 13.5t22.5 34.5l70 281l190 -667q6 -20 23 -33t39 -13q21 0 38 13t23 33l146 485l56 -112q18 -35 57 -35zM1792 940q0 -145 -103 -300h-369l-111 221 q-8 17 -25.5 27t-36.5 8q-45 -5 -56 -46l-129 -430l-196 686q-6 20 -23.5 33t-39.5 13t-39 -13.5t-22 -34.5l-116 -464h-423q-103 155 -103 300q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124 t127 -344z" />
533
+ <glyph unicode="&#xf221;" horiz-adv-x="1280" d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292 q11 134 80.5 249t182 188t245.5 88q170 19 319 -54t236 -212t87 -306zM128 960q0 -185 131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5z" />
534
+ <glyph unicode="&#xf222;" horiz-adv-x="1792" d="M1280 1504q0 14 9 23t23 9h416q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-419 -420q87 -104 129.5 -236.5t30.5 -276.5q-22 -250 -200.5 -431t-428.5 -206q-163 -17 -314 39.5t-256.5 162t-162 256.5t-39.5 314q25 250 206 428.5 t431 200.5q144 12 276.5 -30.5t236.5 -129.5l419 419h-261q-14 0 -23 9t-9 23v64zM704 -128q117 0 223.5 45.5t184 123t123 184t45.5 223.5t-45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123 t223.5 -45.5z" />
535
+ <glyph unicode="&#xf223;" horiz-adv-x="1280" d="M830 1220q145 -72 233.5 -210.5t88.5 -305.5q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5 t-147.5 384.5q0 167 88.5 305.5t233.5 210.5q-165 96 -228 273q-6 16 3.5 29.5t26.5 13.5h69q21 0 29 -20q44 -106 140 -171t214 -65t214 65t140 171q8 20 37 20h61q17 0 26.5 -13.5t3.5 -29.5q-63 -177 -228 -273zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
536
+ <glyph unicode="&#xf224;" d="M1024 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-149 16 -270.5 103t-186.5 223.5t-53 291.5q16 204 160 353.5t347 172.5q118 14 228 -19t198 -103l255 254h-134q-14 0 -23 9t-9 23v64zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
537
+ <glyph unicode="&#xf225;" horiz-adv-x="1792" d="M1280 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5t-147.5 384.5q0 201 126 359l-52 53l-101 -111q-9 -10 -22 -10.5t-23 7.5l-48 44q-10 8 -10.5 21.5t8.5 23.5l105 115l-111 112v-134q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9 t-9 23v288q0 26 19 45t45 19h288q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-133l106 -107l86 94q9 10 22 10.5t23 -7.5l48 -44q10 -8 10.5 -21.5t-8.5 -23.5l-90 -99l57 -56q158 126 359 126t359 -126l255 254h-134q-14 0 -23 9t-9 23v64zM832 256q185 0 316.5 131.5 t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
538
+ <glyph unicode="&#xf226;" horiz-adv-x="1792" d="M1790 1007q12 -155 -52.5 -292t-186 -224t-271.5 -103v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-512v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23 t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292q17 206 164.5 356.5t352.5 169.5q206 21 377 -94q171 115 377 94q205 -19 352.5 -169.5t164.5 -356.5zM896 647q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM576 512q115 0 218 57q-154 165 -154 391 q0 224 154 391q-103 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5zM1152 128v260q-137 15 -256 94q-119 -79 -256 -94v-260h512zM1216 512q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5q-115 0 -218 -57q154 -167 154 -391 q0 -226 -154 -391q103 -57 218 -57z" />
539
+ <glyph unicode="&#xf227;" horiz-adv-x="1920" d="M1536 1120q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-31 -182 -166 -312t-318 -156q-210 -29 -384.5 80t-241.5 300q-117 6 -221 57.5t-177.5 133t-113.5 192.5t-32 230 q9 135 78 252t182 191.5t248 89.5q118 14 227.5 -19t198.5 -103l255 254h-134q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q59 -74 93 -169q182 -9 328 -124l255 254h-134q-14 0 -23 9 t-9 23v64zM1024 704q0 20 -4 58q-162 -25 -271 -150t-109 -292q0 -20 4 -58q162 25 271 150t109 292zM128 704q0 -168 111 -294t276 -149q-3 29 -3 59q0 210 135 369.5t338 196.5q-53 120 -163.5 193t-245.5 73q-185 0 -316.5 -131.5t-131.5 -316.5zM1088 -128 q185 0 316.5 131.5t131.5 316.5q0 168 -111 294t-276 149q3 -29 3 -59q0 -210 -135 -369.5t-338 -196.5q53 -120 163.5 -193t245.5 -73z" />
540
+ <glyph unicode="&#xf228;" horiz-adv-x="2048" d="M1664 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-32 -180 -164.5 -310t-313.5 -157q-223 -34 -409 90q-117 -78 -256 -93v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23 t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-155 17 -279.5 109.5t-187 237.5t-39.5 307q25 187 159.5 322.5t320.5 164.5q224 34 410 -90q146 97 320 97q201 0 359 -126l255 254h-134q-14 0 -23 9 t-9 23v64zM896 391q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM128 704q0 -185 131.5 -316.5t316.5 -131.5q117 0 218 57q-154 167 -154 391t154 391q-101 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5zM1216 256q185 0 316.5 131.5t131.5 316.5 t-131.5 316.5t-316.5 131.5q-117 0 -218 -57q154 -167 154 -391t-154 -391q101 -57 218 -57z" />
541
+ <glyph unicode="&#xf229;" horiz-adv-x="1792" d="M1728 1536q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-229 -230l156 -156q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-156 157l-99 -100q87 -104 129.5 -236.5t30.5 -276.5q-22 -250 -200.5 -431t-428.5 -206q-163 -17 -314 39.5 t-256.5 162t-162 256.5t-39.5 314q25 250 206 428.5t431 200.5q144 12 276.5 -30.5t236.5 -129.5l99 99l-156 156q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l156 -156l229 229h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM1280 448q0 117 -45.5 223.5t-123 184t-184 123 t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5z" />
542
+ <glyph unicode="&#xf22a;" horiz-adv-x="1280" d="M640 892q217 -24 364.5 -187.5t147.5 -384.5q0 -167 -87 -306t-236 -212t-319 -54q-133 15 -245.5 88t-182 188t-80.5 249q-12 155 52.5 292t186 224t271.5 103v132h-160q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h160v165l-92 -92q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22 t9 23l202 201q19 19 45 19t45 -19l202 -201q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-92 92v-165h160q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-160v-132zM576 -128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5 t131.5 -316.5t316.5 -131.5z" />
543
+ <glyph unicode="&#xf22b;" horiz-adv-x="2048" d="M2029 685q19 -19 19 -45t-19 -45l-294 -294q-9 -10 -22.5 -10t-22.5 10l-45 45q-10 9 -10 22.5t10 22.5l185 185h-294v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-131q-12 -119 -67 -226t-139 -183.5t-196.5 -121.5t-234.5 -45q-180 0 -330.5 91t-234.5 247 t-74 337q8 162 94 300t226.5 219.5t302.5 85.5q166 4 310.5 -71.5t235.5 -208.5t107 -296h131v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h294l-185 185q-10 9 -10 22.5t10 22.5l45 45q9 10 22.5 10t22.5 -10zM640 128q104 0 198.5 40.5t163.5 109.5t109.5 163.5 t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" />
544
+ <glyph unicode="&#xf22c;" horiz-adv-x="1280" d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-612q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v612q-217 24 -364.5 187.5t-147.5 384.5q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM576 512q185 0 316.5 131.5 t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
545
+ <glyph unicode="&#xf22d;" horiz-adv-x="1792" />
546
+ <glyph unicode="&#xf22e;" horiz-adv-x="1792" />
547
+ <glyph unicode="&#xf22f;" horiz-adv-x="1792" />
548
+ <glyph unicode="&#xf230;" d="M1451 1408q35 0 60 -25t25 -60v-1366q0 -35 -25 -60t-60 -25h-391v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-735q-35 0 -60 25t-25 60v1366q0 35 25 60t60 25h1366z" />
549
+ <glyph unicode="&#xf231;" horiz-adv-x="1280" d="M0 939q0 108 37.5 203.5t103.5 166.5t152 123t185 78t202 26q158 0 294 -66.5t221 -193.5t85 -287q0 -96 -19 -188t-60 -177t-100 -149.5t-145 -103t-189 -38.5q-68 0 -135 32t-96 88q-10 -39 -28 -112.5t-23.5 -95t-20.5 -71t-26 -71t-32 -62.5t-46 -77.5t-62 -86.5 l-14 -5l-9 10q-15 157 -15 188q0 92 21.5 206.5t66.5 287.5t52 203q-32 65 -32 169q0 83 52 156t132 73q61 0 95 -40.5t34 -102.5q0 -66 -44 -191t-44 -187q0 -63 45 -104.5t109 -41.5q55 0 102 25t78.5 68t56 95t38 110.5t20 111t6.5 99.5q0 173 -109.5 269.5t-285.5 96.5 q-200 0 -334 -129.5t-134 -328.5q0 -44 12.5 -85t27 -65t27 -45.5t12.5 -30.5q0 -28 -15 -73t-37 -45q-2 0 -17 3q-51 15 -90.5 56t-61 94.5t-32.5 108t-11 106.5z" />
550
+ <glyph unicode="&#xf232;" d="M985 562q13 0 97.5 -44t89.5 -53q2 -5 2 -15q0 -33 -17 -76q-16 -39 -71 -65.5t-102 -26.5q-57 0 -190 62q-98 45 -170 118t-148 185q-72 107 -71 194v8q3 91 74 158q24 22 52 22q6 0 18 -1.5t19 -1.5q19 0 26.5 -6.5t15.5 -27.5q8 -20 33 -88t25 -75q0 -21 -34.5 -57.5 t-34.5 -46.5q0 -7 5 -15q34 -73 102 -137q56 -53 151 -101q12 -7 22 -7q15 0 54 48.5t52 48.5zM782 32q127 0 243.5 50t200.5 134t134 200.5t50 243.5t-50 243.5t-134 200.5t-200.5 134t-243.5 50t-243.5 -50t-200.5 -134t-134 -200.5t-50 -243.5q0 -203 120 -368l-79 -233 l242 77q158 -104 345 -104zM782 1414q153 0 292.5 -60t240.5 -161t161 -240.5t60 -292.5t-60 -292.5t-161 -240.5t-240.5 -161t-292.5 -60q-195 0 -365 94l-417 -134l136 405q-108 178 -108 389q0 153 60 292.5t161 240.5t240.5 161t292.5 60z" />
551
+ <glyph unicode="&#xf233;" horiz-adv-x="1792" d="M128 128h1024v128h-1024v-128zM128 640h1024v128h-1024v-128zM1696 192q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM128 1152h1024v128h-1024v-128zM1696 704q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1696 1216 q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1792 384v-384h-1792v384h1792zM1792 896v-384h-1792v384h1792zM1792 1408v-384h-1792v384h1792z" />
552
+ <glyph unicode="&#xf234;" horiz-adv-x="2048" d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1664 512h352q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-352q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5 t-9.5 22.5v352h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352zM928 288q0 -52 38 -90t90 -38h256v-238q-68 -50 -171 -50h-874q-121 0 -194 69t-73 190q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q79 -61 154.5 -91.5t164.5 -30.5t164.5 30.5t154.5 91.5q20 17 39 17q132 0 217 -96h-223q-52 0 -90 -38t-38 -90v-192z" />
553
+ <glyph unicode="&#xf235;" horiz-adv-x="2048" d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1781 320l249 -249q9 -9 9 -23q0 -13 -9 -22l-136 -136q-9 -9 -22 -9q-14 0 -23 9l-249 249l-249 -249q-9 -9 -23 -9q-13 0 -22 9l-136 136 q-9 9 -9 22q0 14 9 23l249 249l-249 249q-9 9 -9 23q0 13 9 22l136 136q9 9 22 9q14 0 23 -9l249 -249l249 249q9 9 23 9q13 0 22 -9l136 -136q9 -9 9 -22q0 -14 -9 -23zM1283 320l-181 -181q-37 -37 -37 -91q0 -53 37 -90l83 -83q-21 -3 -44 -3h-874q-121 0 -194 69 t-73 190q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q154 -122 319 -122t319 122q20 17 39 17q28 0 57 -6q-28 -27 -41 -50t-13 -56q0 -54 37 -91z" />
554
+ <glyph unicode="&#xf236;" horiz-adv-x="2048" d="M256 512h1728q26 0 45 -19t19 -45v-448h-256v256h-1536v-256h-256v1216q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-704zM832 832q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM2048 576v64q0 159 -112.5 271.5t-271.5 112.5h-704 q-26 0 -45 -19t-19 -45v-384h1152z" />
555
+ <glyph unicode="&#xf237;" d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" />
556
+ <glyph unicode="&#xf238;" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56 t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" />
557
+ <glyph unicode="&#xf239;" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47 t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" />
558
+ <glyph unicode="&#xf23a;" horiz-adv-x="1792" d="M1792 204v-209h-642v209h134v926h-6l-314 -1135h-243l-310 1135h-8v-926h135v-209h-538v209h69q21 0 43 19.5t22 37.5v881q0 18 -22 40t-43 22h-69v209h672l221 -821h6l223 821h670v-209h-71q-19 0 -41 -22t-22 -40v-881q0 -18 21.5 -37.5t41.5 -19.5h71z" />
559
+ <glyph unicode="&#xf23b;" horiz-adv-x="1792" />
560
+ <glyph unicode="&#xf23c;" horiz-adv-x="1792" />
561
+ <glyph unicode="&#xf23d;" horiz-adv-x="1792" />
562
+ <glyph unicode="&#xf23e;" horiz-adv-x="1792" />
563
+ <glyph unicode="&#xf500;" horiz-adv-x="1792" />
564
+ </font>
565
+ </defs></svg>
skin/frontend/base/default/css/fonts/icons.ttf ADDED
Binary file
skin/frontend/base/default/css/fonts/icons.woff ADDED
Binary file
skin/frontend/base/default/css/fonts/icons.woff2 ADDED
Binary file
skin/frontend/base/default/css/images/flags.png ADDED
Binary file
skin/frontend/base/default/css/semantic.css ADDED
@@ -0,0 +1,35170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * # Semantic UI - 2.1.7
3
+ * https://github.com/Semantic-Org/Semantic-UI
4
+ * http://www.semantic-ui.com/
5
+ *
6
+ * Copyright 2014 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+ @import url('https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic&subset=latin');
12
+ /*!
13
+ * # Semantic UI 2.1.7 - Reset
14
+ * http://github.com/semantic-org/semantic-ui/
15
+ *
16
+ *
17
+ * Copyright 2015 Contributors
18
+ * Released under the MIT license
19
+ * http://opensource.org/licenses/MIT
20
+ *
21
+ */
22
+
23
+ /*******************************
24
+ Reset
25
+ *******************************/
26
+
27
+ /* Border-Box */
28
+
29
+ *,
30
+ *:before,
31
+ *:after {
32
+ box-sizing: inherit;
33
+ }
34
+
35
+ html {
36
+ box-sizing: border-box;
37
+ }
38
+
39
+ /* iPad Input Shadows */
40
+
41
+ input[type="text"],
42
+ input[type="email"],
43
+ input[type="search"],
44
+ input[type="password"] {
45
+ -webkit-appearance: none;
46
+ -moz-appearance: none;
47
+ /* mobile firefox too! */
48
+ }
49
+
50
+ /*******************************
51
+ Theme Overrides
52
+ *******************************/
53
+
54
+ /*! normalize.css v3.0.1 | MIT License | git.io/normalize */
55
+
56
+ /**
57
+ * Correct `block` display not defined in IE 8/9.
58
+ */
59
+
60
+ /*! normalize.css v3.0.1 | MIT License | git.io/normalize */
61
+
62
+ /**
63
+ * 1. Set default font family to sans-serif.
64
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
65
+ * user zoom.
66
+ */
67
+
68
+ html {
69
+ font-family: sans-serif;
70
+ /* 1 */
71
+ -ms-text-size-adjust: 100%;
72
+ /* 2 */
73
+ -webkit-text-size-adjust: 100%;
74
+ /* 2 */
75
+ }
76
+
77
+ /**
78
+ * Remove default margin.
79
+ */
80
+
81
+ body {
82
+ margin: 0;
83
+ }
84
+
85
+ /* HTML5 display definitions
86
+ ========================================================================== */
87
+
88
+ /**
89
+ * Correct `block` display not defined for any HTML5 element in IE 8/9.
90
+ * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
91
+ * Correct `block` display not defined for `main` in IE 11.
92
+ */
93
+
94
+ article,
95
+ aside,
96
+ details,
97
+ figcaption,
98
+ figure,
99
+ footer,
100
+ header,
101
+ hgroup,
102
+ main,
103
+ nav,
104
+ section,
105
+ summary {
106
+ display: block;
107
+ }
108
+
109
+ /**
110
+ * 1. Correct `inline-block` display not defined in IE 8/9.
111
+ * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
112
+ */
113
+
114
+ audio,
115
+ canvas,
116
+ progress,
117
+ video {
118
+ display: inline-block;
119
+ /* 1 */
120
+ vertical-align: baseline;
121
+ /* 2 */
122
+ }
123
+
124
+ /**
125
+ * Prevent modern browsers from displaying `audio` without controls.
126
+ * Remove excess height in iOS 5 devices.
127
+ */
128
+
129
+ audio:not([controls]) {
130
+ display: none;
131
+ height: 0;
132
+ }
133
+
134
+ /**
135
+ * Address `[hidden]` styling not present in IE 8/9/10.
136
+ * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
137
+ */
138
+
139
+ [hidden],
140
+ template {
141
+ display: none;
142
+ }
143
+
144
+ /* Links
145
+ ========================================================================== */
146
+
147
+ /**
148
+ * Remove the gray background color from active links in IE 10.
149
+ */
150
+
151
+ a {
152
+ background: transparent;
153
+ }
154
+
155
+ /**
156
+ * Improve readability when focused and also mouse hovered in all browsers.
157
+ */
158
+
159
+ a:active,
160
+ a:hover {
161
+ outline: 0;
162
+ }
163
+
164
+ /* Text-level semantics
165
+ ========================================================================== */
166
+
167
+ /**
168
+ * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
169
+ */
170
+
171
+ abbr[title] {
172
+ border-bottom: 1px dotted;
173
+ }
174
+
175
+ /**
176
+ * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
177
+ */
178
+
179
+ b,
180
+ strong {
181
+ font-weight: bold;
182
+ }
183
+
184
+ /**
185
+ * Address styling not present in Safari and Chrome.
186
+ */
187
+
188
+ dfn {
189
+ font-style: italic;
190
+ }
191
+
192
+ /**
193
+ * Address variable `h1` font-size and margin within `section` and `article`
194
+ * contexts in Firefox 4+, Safari, and Chrome.
195
+ */
196
+
197
+ h1 {
198
+ font-size: 2em;
199
+ margin: 0.67em 0;
200
+ }
201
+
202
+ /**
203
+ * Address styling not present in IE 8/9.
204
+ */
205
+
206
+ mark {
207
+ background: #ff0;
208
+ color: #000;
209
+ }
210
+
211
+ /**
212
+ * Address inconsistent and variable font size in all browsers.
213
+ */
214
+
215
+ small {
216
+ font-size: 80%;
217
+ }
218
+
219
+ /**
220
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
221
+ */
222
+
223
+ sub,
224
+ sup {
225
+ font-size: 75%;
226
+ line-height: 0;
227
+ position: relative;
228
+ vertical-align: baseline;
229
+ }
230
+
231
+ sup {
232
+ top: -0.5em;
233
+ }
234
+
235
+ sub {
236
+ bottom: -0.25em;
237
+ }
238
+
239
+ /* Embedded content
240
+ ========================================================================== */
241
+
242
+ /**
243
+ * Remove border when inside `a` element in IE 8/9/10.
244
+ */
245
+
246
+ img {
247
+ border: 0;
248
+ }
249
+
250
+ /**
251
+ * Correct overflow not hidden in IE 9/10/11.
252
+ */
253
+
254
+ svg:not(:root) {
255
+ overflow: hidden;
256
+ }
257
+
258
+ /* Grouping content
259
+ ========================================================================== */
260
+
261
+ /**
262
+ * Address margin not present in IE 8/9 and Safari.
263
+ */
264
+
265
+ figure {
266
+ margin: 1em 40px;
267
+ }
268
+
269
+ /**
270
+ * Address differences between Firefox and other browsers.
271
+ */
272
+
273
+ hr {
274
+ box-sizing: content-box;
275
+ height: 0;
276
+ }
277
+
278
+ /**
279
+ * Contain overflow in all browsers.
280
+ */
281
+
282
+ pre {
283
+ overflow: auto;
284
+ }
285
+
286
+ /**
287
+ * Address odd `em`-unit font size rendering in all browsers.
288
+ */
289
+
290
+ code,
291
+ kbd,
292
+ pre,
293
+ samp {
294
+ font-family: monospace, monospace;
295
+ font-size: 1em;
296
+ }
297
+
298
+ /* Forms
299
+ ========================================================================== */
300
+
301
+ /**
302
+ * Known limitation: by default, Chrome and Safari on OS X allow very limited
303
+ * styling of `select`, unless a `border` property is set.
304
+ */
305
+
306
+ /**
307
+ * 1. Correct color not being inherited.
308
+ * Known issue: affects color of disabled elements.
309
+ * 2. Correct font properties not being inherited.
310
+ * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
311
+ */
312
+
313
+ button,
314
+ input,
315
+ optgroup,
316
+ select,
317
+ textarea {
318
+ color: inherit;
319
+ /* 1 */
320
+ font: inherit;
321
+ /* 2 */
322
+ margin: 0;
323
+ /* 3 */
324
+ }
325
+
326
+ /**
327
+ * Address `overflow` set to `hidden` in IE 8/9/10/11.
328
+ */
329
+
330
+ button {
331
+ overflow: visible;
332
+ }
333
+
334
+ /**
335
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
336
+ * All other form control elements do not inherit `text-transform` values.
337
+ * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
338
+ * Correct `select` style inheritance in Firefox.
339
+ */
340
+
341
+ button,
342
+ select {
343
+ text-transform: none;
344
+ }
345
+
346
+ /**
347
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
348
+ * and `video` controls.
349
+ * 2. Correct inability to style clickable `input` types in iOS.
350
+ * 3. Improve usability and consistency of cursor style between image-type
351
+ * `input` and others.
352
+ */
353
+
354
+ button,
355
+ html input[type="button"],
356
+ input[type="reset"],
357
+ input[type="submit"] {
358
+ -webkit-appearance: button;
359
+ /* 2 */
360
+ cursor: pointer;
361
+ /* 3 */
362
+ }
363
+
364
+ /**
365
+ * Re-set default cursor for disabled elements.
366
+ */
367
+
368
+ button[disabled],
369
+ html input[disabled] {
370
+ cursor: default;
371
+ }
372
+
373
+ /**
374
+ * Remove inner padding and border in Firefox 4+.
375
+ */
376
+
377
+ button::-moz-focus-inner,
378
+ input::-moz-focus-inner {
379
+ border: 0;
380
+ padding: 0;
381
+ }
382
+
383
+ /**
384
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
385
+ * the UA stylesheet.
386
+ */
387
+
388
+ input {
389
+ line-height: normal;
390
+ }
391
+
392
+ /**
393
+ * It's recommended that you don't attempt to style these elements.
394
+ * Firefox's implementation doesn't respect box-sizing, padding, or width.
395
+ *
396
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
397
+ * 2. Remove excess padding in IE 8/9/10.
398
+ */
399
+
400
+ input[type="checkbox"],
401
+ input[type="radio"] {
402
+ box-sizing: border-box;
403
+ /* 1 */
404
+ padding: 0;
405
+ /* 2 */
406
+ }
407
+
408
+ /**
409
+ * Fix the cursor style for Chrome's increment/decrement buttons. For certain
410
+ * `font-size` values of the `input`, it causes the cursor style of the
411
+ * decrement button to change from `default` to `text`.
412
+ */
413
+
414
+ input[type="number"]::-webkit-inner-spin-button,
415
+ input[type="number"]::-webkit-outer-spin-button {
416
+ height: auto;
417
+ }
418
+
419
+ /**
420
+ * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
421
+ * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
422
+ * (include `-moz` to future-proof).
423
+ */
424
+
425
+ input[type="search"] {
426
+ -webkit-appearance: textfield;
427
+ /* 1 */
428
+ /* 2 */
429
+ box-sizing: content-box;
430
+ }
431
+
432
+ /**
433
+ * Remove inner padding and search cancel button in Safari and Chrome on OS X.
434
+ * Safari (but not Chrome) clips the cancel button when the search input has
435
+ * padding (and `textfield` appearance).
436
+ */
437
+
438
+ input[type="search"]::-webkit-search-cancel-button,
439
+ input[type="search"]::-webkit-search-decoration {
440
+ -webkit-appearance: none;
441
+ }
442
+
443
+ /**
444
+ * Define consistent border, margin, and padding.
445
+ */
446
+
447
+ fieldset {
448
+ border: 1px solid #c0c0c0;
449
+ margin: 0 2px;
450
+ padding: 0.35em 0.625em 0.75em;
451
+ }
452
+
453
+ /**
454
+ * 1. Correct `color` not being inherited in IE 8/9/10/11.
455
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
456
+ */
457
+
458
+ legend {
459
+ border: 0;
460
+ /* 1 */
461
+ padding: 0;
462
+ /* 2 */
463
+ }
464
+
465
+ /**
466
+ * Remove default vertical scrollbar in IE 8/9/10/11.
467
+ */
468
+
469
+ textarea {
470
+ overflow: auto;
471
+ }
472
+
473
+ /**
474
+ * Don't inherit the `font-weight` (applied by a rule above).
475
+ * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
476
+ */
477
+
478
+ optgroup {
479
+ font-weight: bold;
480
+ }
481
+
482
+ /* Tables
483
+ ========================================================================== */
484
+
485
+ /**
486
+ * Remove most spacing between table cells.
487
+ */
488
+
489
+ table {
490
+ border-collapse: collapse;
491
+ border-spacing: 0;
492
+ }
493
+
494
+ td,
495
+ th {
496
+ padding: 0;
497
+ }
498
+
499
+ /*******************************
500
+ Site Overrides
501
+ *******************************/
502
+ /*!
503
+ * # Semantic UI 2.1.7 - Site
504
+ * http://github.com/semantic-org/semantic-ui/
505
+ *
506
+ *
507
+ * Copyright 2015 Contributors
508
+ * Released under the MIT license
509
+ * http://opensource.org/licenses/MIT
510
+ *
511
+ */
512
+
513
+ /*******************************
514
+ Page
515
+ *******************************/
516
+
517
+ html,
518
+ body {
519
+ height: 100%;
520
+ }
521
+
522
+ html {
523
+ font-size: 14px;
524
+ }
525
+
526
+ body {
527
+ margin: 0px;
528
+ padding: 0px;
529
+ overflow-x: hidden;
530
+ min-width: 320px;
531
+ background: #ffffff;
532
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
533
+ font-size: 14px;
534
+ line-height: 1.4285em;
535
+ color: rgba(0, 0, 0, 0.87);
536
+ font-smoothing: antialiased;
537
+ }
538
+
539
+ /*******************************
540
+ Headers
541
+ *******************************/
542
+
543
+ h1,
544
+ h2,
545
+ h3,
546
+ h4,
547
+ h5 {
548
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
549
+ line-height: 1.2857em;
550
+ margin: calc(2rem - 0.14285em ) 0em 1rem;
551
+ font-weight: bold;
552
+ padding: 0em;
553
+ }
554
+
555
+ h1 {
556
+ min-height: 1rem;
557
+ font-size: 2rem;
558
+ }
559
+
560
+ h2 {
561
+ font-size: 1.714rem;
562
+ }
563
+
564
+ h3 {
565
+ font-size: 1.28rem;
566
+ }
567
+
568
+ h4 {
569
+ font-size: 1.071rem;
570
+ }
571
+
572
+ h5 {
573
+ font-size: 1rem;
574
+ }
575
+
576
+ h1:first-child,
577
+ h2:first-child,
578
+ h3:first-child,
579
+ h4:first-child,
580
+ h5:first-child {
581
+ margin-top: 0em;
582
+ }
583
+
584
+ h1:last-child,
585
+ h2:last-child,
586
+ h3:last-child,
587
+ h4:last-child,
588
+ h5:last-child {
589
+ margin-bottom: 0em;
590
+ }
591
+
592
+ /*******************************
593
+ Text
594
+ *******************************/
595
+
596
+ p {
597
+ margin: 0em 0em 1em;
598
+ line-height: 1.4285em;
599
+ }
600
+
601
+ p:first-child {
602
+ margin-top: 0em;
603
+ }
604
+
605
+ p:last-child {
606
+ margin-bottom: 0em;
607
+ }
608
+
609
+ /*-------------------
610
+ Links
611
+ --------------------*/
612
+
613
+ a {
614
+ color: #4183c4;
615
+ text-decoration: none;
616
+ }
617
+
618
+ a:hover {
619
+ color: #1e70bf;
620
+ text-decoration: none;
621
+ }
622
+
623
+ /*******************************
624
+ Highlighting
625
+ *******************************/
626
+
627
+ /* Site */
628
+
629
+ ::-webkit-selection {
630
+ background-color: #cce2ff;
631
+ color: rgba(0, 0, 0, 0.87);
632
+ }
633
+
634
+ ::-moz-selection {
635
+ background-color: #cce2ff;
636
+ color: rgba(0, 0, 0, 0.87);
637
+ }
638
+
639
+ ::selection {
640
+ background-color: #cce2ff;
641
+ color: rgba(0, 0, 0, 0.87);
642
+ }
643
+
644
+ /* Form */
645
+
646
+ textarea::-webkit-selection,
647
+ input::-webkit-selection {
648
+ background-color: rgba(100, 100, 100, 0.4);
649
+ color: rgba(0, 0, 0, 0.87);
650
+ }
651
+
652
+ textarea::-moz-selection,
653
+ input::-moz-selection {
654
+ background-color: rgba(100, 100, 100, 0.4);
655
+ color: rgba(0, 0, 0, 0.87);
656
+ }
657
+
658
+ textarea::selection,
659
+ input::selection {
660
+ background-color: rgba(100, 100, 100, 0.4);
661
+ color: rgba(0, 0, 0, 0.87);
662
+ }
663
+
664
+ /*******************************
665
+ Global Overrides
666
+ *******************************/
667
+
668
+ /*******************************
669
+ Site Overrides
670
+ *******************************/
671
+ /*!
672
+ * # Semantic UI 2.1.7 - Button
673
+ * http://github.com/semantic-org/semantic-ui/
674
+ *
675
+ *
676
+ * Copyright 2015 Contributors
677
+ * Released under the MIT license
678
+ * http://opensource.org/licenses/MIT
679
+ *
680
+ */
681
+
682
+ /*******************************
683
+ Button
684
+ *******************************/
685
+
686
+ .ui.button {
687
+ cursor: pointer;
688
+ display: inline-block;
689
+ min-height: 1em;
690
+ outline: none;
691
+ border: none;
692
+ vertical-align: baseline;
693
+ background: #e0e1e2 none;
694
+ color: rgba(0, 0, 0, 0.6);
695
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
696
+ margin: 0em 0.25em 0em 0em;
697
+ padding: 0.78571429em 1.5em 0.78571429em;
698
+ text-transform: none;
699
+ text-shadow: none;
700
+ font-weight: bold;
701
+ line-height: 1em;
702
+ font-style: normal;
703
+ text-align: center;
704
+ text-decoration: none;
705
+ border-radius: 0.28571429rem;
706
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
707
+ -webkit-user-select: none;
708
+ -moz-user-select: none;
709
+ -ms-user-select: none;
710
+ user-select: none;
711
+ -webkit-transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
712
+ transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
713
+ will-change: '';
714
+ -webkit-tap-highlight-color: transparent;
715
+ }
716
+
717
+ /*******************************
718
+ States
719
+ *******************************/
720
+
721
+ /*--------------
722
+ Hover
723
+ ---------------*/
724
+
725
+ .ui.button:hover {
726
+ background-color: #cacbcd;
727
+ background-image: none;
728
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
729
+ color: rgba(0, 0, 0, 0.8);
730
+ }
731
+
732
+ .ui.button:hover .icon {
733
+ opacity: 0.85;
734
+ }
735
+
736
+ /*--------------
737
+ Focus
738
+ ---------------*/
739
+
740
+ .ui.button:focus {
741
+ background-color: #cacbcd;
742
+ color: rgba(0, 0, 0, 0.8);
743
+ background-image: '' !important;
744
+ box-shadow: '' !important;
745
+ }
746
+
747
+ .ui.button:focus .icon {
748
+ opacity: 0.85;
749
+ }
750
+
751
+ /*--------------
752
+ Down
753
+ ---------------*/
754
+
755
+ .ui.button:active,
756
+ .ui.active.button:active {
757
+ background-color: #babbbc;
758
+ background-image: '';
759
+ color: rgba(0, 0, 0, 0.9);
760
+ box-shadow: 0px 0px 0px 1px transparent inset, none;
761
+ }
762
+
763
+ /*--------------
764
+ Active
765
+ ---------------*/
766
+
767
+ .ui.active.button {
768
+ background-color: #c0c1c2;
769
+ background-image: none;
770
+ box-shadow: 0px 0px 0px 1px transparent inset;
771
+ color: rgba(0, 0, 0, 0.95);
772
+ }
773
+
774
+ .ui.active.button:hover {
775
+ background-color: #c0c1c2;
776
+ background-image: none;
777
+ color: rgba(0, 0, 0, 0.95);
778
+ }
779
+
780
+ .ui.active.button:active {
781
+ background-color: #c0c1c2;
782
+ background-image: none;
783
+ }
784
+
785
+ /*--------------
786
+ Loading
787
+ ---------------*/
788
+
789
+ /* Specificity hack */
790
+
791
+ .ui.loading.loading.loading.loading.loading.loading.button {
792
+ position: relative;
793
+ cursor: default;
794
+ text-shadow: none !important;
795
+ color: transparent !important;
796
+ opacity: 1;
797
+ pointer-events: auto;
798
+ -webkit-transition: all 0s linear, opacity 0.1s ease;
799
+ transition: all 0s linear, opacity 0.1s ease;
800
+ }
801
+
802
+ .ui.loading.button:before {
803
+ position: absolute;
804
+ content: '';
805
+ top: 50%;
806
+ left: 50%;
807
+ margin: -0.64285714em 0em 0em -0.64285714em;
808
+ width: 1.28571429em;
809
+ height: 1.28571429em;
810
+ border-radius: 500rem;
811
+ border: 0.2em solid rgba(0, 0, 0, 0.15);
812
+ }
813
+
814
+ .ui.loading.button:after {
815
+ position: absolute;
816
+ content: '';
817
+ top: 50%;
818
+ left: 50%;
819
+ margin: -0.64285714em 0em 0em -0.64285714em;
820
+ width: 1.28571429em;
821
+ height: 1.28571429em;
822
+ -webkit-animation: button-spin 0.6s linear;
823
+ animation: button-spin 0.6s linear;
824
+ -webkit-animation-iteration-count: infinite;
825
+ animation-iteration-count: infinite;
826
+ border-radius: 500rem;
827
+ border-color: #ffffff transparent transparent;
828
+ border-style: solid;
829
+ border-width: 0.2em;
830
+ box-shadow: 0px 0px 0px 1px transparent;
831
+ }
832
+
833
+ .ui.labeled.icon.loading.button .icon {
834
+ background-color: transparent;
835
+ box-shadow: none;
836
+ }
837
+
838
+ @-webkit-keyframes button-spin {
839
+ from {
840
+ -webkit-transform: rotate(0deg);
841
+ transform: rotate(0deg);
842
+ }
843
+
844
+ to {
845
+ -webkit-transform: rotate(360deg);
846
+ transform: rotate(360deg);
847
+ }
848
+ }
849
+
850
+ @keyframes button-spin {
851
+ from {
852
+ -webkit-transform: rotate(0deg);
853
+ transform: rotate(0deg);
854
+ }
855
+
856
+ to {
857
+ -webkit-transform: rotate(360deg);
858
+ transform: rotate(360deg);
859
+ }
860
+ }
861
+
862
+ .ui.basic.loading.button:not(.inverted):before {
863
+ border-color: rgba(0, 0, 0, 0.1);
864
+ }
865
+
866
+ .ui.basic.loading.button:not(.inverted):after {
867
+ border-top-color: #767676;
868
+ }
869
+
870
+ /*-------------------
871
+ Disabled
872
+ --------------------*/
873
+
874
+ .ui.buttons .disabled.button,
875
+ .ui.disabled.button,
876
+ .ui.button:disabled,
877
+ .ui.disabled.button:hover,
878
+ .ui.disabled.active.button {
879
+ cursor: default;
880
+ opacity: 0.45 !important;
881
+ background-image: none !important;
882
+ box-shadow: none !important;
883
+ pointer-events: none;
884
+ }
885
+
886
+ /* Basic Group With Disabled */
887
+
888
+ .ui.basic.buttons .ui.disabled.button {
889
+ border-color: rgba(34, 36, 38, 0.5);
890
+ }
891
+
892
+ /*******************************
893
+ Types
894
+ *******************************/
895
+
896
+ /*-------------------
897
+ Animated
898
+ --------------------*/
899
+
900
+ .ui.animated.button {
901
+ position: relative;
902
+ overflow: hidden;
903
+ padding-right: 0em !important;
904
+ vertical-align: middle;
905
+ z-index: 1;
906
+ }
907
+
908
+ .ui.animated.button .content {
909
+ will-change: transform, opacity;
910
+ }
911
+
912
+ .ui.animated.button .visible.content {
913
+ position: relative;
914
+ margin-right: 1.5em;
915
+ }
916
+
917
+ .ui.animated.button .hidden.content {
918
+ position: absolute;
919
+ width: 100%;
920
+ }
921
+
922
+ /* Horizontal */
923
+
924
+ .ui.animated.button .visible.content,
925
+ .ui.animated.button .hidden.content {
926
+ -webkit-transition: right 0.3s ease 0s;
927
+ transition: right 0.3s ease 0s;
928
+ }
929
+
930
+ .ui.animated.button .visible.content {
931
+ left: auto;
932
+ right: 0%;
933
+ }
934
+
935
+ .ui.animated.button .hidden.content {
936
+ top: 50%;
937
+ left: auto;
938
+ right: -100%;
939
+ margin-top: -0.5em;
940
+ }
941
+
942
+ .ui.animated.button:focus .visible.content,
943
+ .ui.animated.button:hover .visible.content {
944
+ left: auto;
945
+ right: 200%;
946
+ }
947
+
948
+ .ui.animated.button:focus .hidden.content,
949
+ .ui.animated.button:hover .hidden.content {
950
+ left: auto;
951
+ right: 0%;
952
+ }
953
+
954
+ /* Vertical */
955
+
956
+ .ui.vertical.animated.button .visible.content,
957
+ .ui.vertical.animated.button .hidden.content {
958
+ -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
959
+ transition: top 0.3s ease, transform 0.3s ease;
960
+ }
961
+
962
+ .ui.vertical.animated.button .visible.content {
963
+ -webkit-transform: translateY(0%);
964
+ -ms-transform: translateY(0%);
965
+ transform: translateY(0%);
966
+ right: auto;
967
+ }
968
+
969
+ .ui.vertical.animated.button .hidden.content {
970
+ top: -50%;
971
+ left: 0%;
972
+ right: auto;
973
+ }
974
+
975
+ .ui.vertical.animated.button:focus .visible.content,
976
+ .ui.vertical.animated.button:hover .visible.content {
977
+ -webkit-transform: translateY(200%);
978
+ -ms-transform: translateY(200%);
979
+ transform: translateY(200%);
980
+ right: auto;
981
+ }
982
+
983
+ .ui.vertical.animated.button:focus .hidden.content,
984
+ .ui.vertical.animated.button:hover .hidden.content {
985
+ top: 50%;
986
+ right: auto;
987
+ }
988
+
989
+ /* Fade */
990
+
991
+ .ui.fade.animated.button .visible.content,
992
+ .ui.fade.animated.button .hidden.content {
993
+ -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
994
+ transition: opacity 0.3s ease, transform 0.3s ease;
995
+ }
996
+
997
+ .ui.fade.animated.button .visible.content {
998
+ left: auto;
999
+ right: auto;
1000
+ opacity: 1;
1001
+ -webkit-transform: scale(1);
1002
+ -ms-transform: scale(1);
1003
+ transform: scale(1);
1004
+ }
1005
+
1006
+ .ui.fade.animated.button .hidden.content {
1007
+ opacity: 0;
1008
+ left: 0%;
1009
+ right: auto;
1010
+ -webkit-transform: scale(1.5);
1011
+ -ms-transform: scale(1.5);
1012
+ transform: scale(1.5);
1013
+ }
1014
+
1015
+ .ui.fade.animated.button:focus .visible.content,
1016
+ .ui.fade.animated.button:hover .visible.content {
1017
+ left: auto;
1018
+ right: auto;
1019
+ opacity: 0;
1020
+ -webkit-transform: scale(0.75);
1021
+ -ms-transform: scale(0.75);
1022
+ transform: scale(0.75);
1023
+ }
1024
+
1025
+ .ui.fade.animated.button:focus .hidden.content,
1026
+ .ui.fade.animated.button:hover .hidden.content {
1027
+ left: 0%;
1028
+ right: auto;
1029
+ opacity: 1;
1030
+ -webkit-transform: scale(1);
1031
+ -ms-transform: scale(1);
1032
+ transform: scale(1);
1033
+ }
1034
+
1035
+ /*-------------------
1036
+ Inverted
1037
+ --------------------*/
1038
+
1039
+ .ui.inverted.button {
1040
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
1041
+ background: transparent none;
1042
+ color: #ffffff;
1043
+ text-shadow: none !important;
1044
+ }
1045
+
1046
+ /* Group */
1047
+
1048
+ .ui.inverted.buttons .button {
1049
+ margin: 0px 0px 0px -2px;
1050
+ }
1051
+
1052
+ .ui.inverted.buttons .button:first-child {
1053
+ margin-left: 0em;
1054
+ }
1055
+
1056
+ .ui.inverted.vertical.buttons .button {
1057
+ margin: 0px 0px -2px 0px;
1058
+ }
1059
+
1060
+ .ui.inverted.vertical.buttons .button:first-child {
1061
+ margin-top: 0em;
1062
+ }
1063
+
1064
+ /* States */
1065
+
1066
+ /* Hover */
1067
+
1068
+ .ui.inverted.button:hover {
1069
+ background: #ffffff;
1070
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
1071
+ color: rgba(0, 0, 0, 0.8);
1072
+ }
1073
+
1074
+ /* Active / Focus */
1075
+
1076
+ .ui.inverted.button:focus,
1077
+ .ui.inverted.button.active {
1078
+ background: #ffffff;
1079
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
1080
+ color: rgba(0, 0, 0, 0.8);
1081
+ }
1082
+
1083
+ /* Active Focus */
1084
+
1085
+ .ui.inverted.button.active:focus {
1086
+ background: #dcddde;
1087
+ box-shadow: 0px 0px 0px 2px #dcddde inset !important;
1088
+ color: rgba(0, 0, 0, 0.8);
1089
+ }
1090
+
1091
+ /*-------------------
1092
+ Labeled Button
1093
+ --------------------*/
1094
+
1095
+ .ui.labeled.button:not(.icon) {
1096
+ display: -webkit-inline-box;
1097
+ display: -webkit-inline-flex;
1098
+ display: -ms-inline-flexbox;
1099
+ display: inline-flex;
1100
+ -webkit-box-orient: horizontal;
1101
+ -webkit-box-direction: normal;
1102
+ -webkit-flex-direction: row;
1103
+ -ms-flex-direction: row;
1104
+ flex-direction: row;
1105
+ background: none !important;
1106
+ padding: 0px !important;
1107
+ border: none !important;
1108
+ box-shadow: none !important;
1109
+ }
1110
+
1111
+ .ui.labeled.button > .button {
1112
+ margin: 0px;
1113
+ }
1114
+
1115
+ .ui.labeled.button > .label {
1116
+ display: -webkit-box;
1117
+ display: -webkit-flex;
1118
+ display: -ms-flexbox;
1119
+ display: flex;
1120
+ -webkit-box-align: center;
1121
+ -webkit-align-items: center;
1122
+ -ms-flex-align: center;
1123
+ align-items: center;
1124
+ margin: 0px 0px 0px -1px !important;
1125
+ padding: '';
1126
+ font-size: 1em;
1127
+ border-color: rgba(34, 36, 38, 0.15);
1128
+ }
1129
+
1130
+ /* Tag */
1131
+
1132
+ .ui.labeled.button > .tag.label:before {
1133
+ width: 1.85em;
1134
+ height: 1.85em;
1135
+ }
1136
+
1137
+ /* Right */
1138
+
1139
+ .ui.labeled.button:not([class*="left labeled"]) > .button {
1140
+ border-top-right-radius: 0px;
1141
+ border-bottom-right-radius: 0px;
1142
+ }
1143
+
1144
+ .ui.labeled.button:not([class*="left labeled"]) > .label {
1145
+ border-top-left-radius: 0px;
1146
+ border-bottom-left-radius: 0px;
1147
+ }
1148
+
1149
+ /* Left Side */
1150
+
1151
+ .ui[class*="left labeled"].button > .button {
1152
+ border-top-left-radius: 0px;
1153
+ border-bottom-left-radius: 0px;
1154
+ }
1155
+
1156
+ .ui[class*="left labeled"].button > .label {
1157
+ border-top-right-radius: 0px;
1158
+ border-bottom-right-radius: 0px;
1159
+ }
1160
+
1161
+ /*-------------------
1162
+ Social
1163
+ --------------------*/
1164
+
1165
+ /* Facebook */
1166
+
1167
+ .ui.facebook.button {
1168
+ background-color: #3b5998;
1169
+ color: #ffffff;
1170
+ text-shadow: none;
1171
+ background-image: none;
1172
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1173
+ }
1174
+
1175
+ .ui.facebook.button:hover {
1176
+ background-color: #304d8a;
1177
+ color: #ffffff;
1178
+ text-shadow: none;
1179
+ }
1180
+
1181
+ .ui.facebook.button:active {
1182
+ background-color: #2d4373;
1183
+ color: #ffffff;
1184
+ text-shadow: none;
1185
+ }
1186
+
1187
+ /* Twitter */
1188
+
1189
+ .ui.twitter.button {
1190
+ background-color: #0084b4;
1191
+ color: #ffffff;
1192
+ text-shadow: none;
1193
+ background-image: none;
1194
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1195
+ }
1196
+
1197
+ .ui.twitter.button:hover {
1198
+ background-color: #00719b;
1199
+ color: #ffffff;
1200
+ text-shadow: none;
1201
+ }
1202
+
1203
+ .ui.twitter.button:active {
1204
+ background-color: #005f81;
1205
+ color: #ffffff;
1206
+ text-shadow: none;
1207
+ }
1208
+
1209
+ /* Google Plus */
1210
+
1211
+ .ui.google.plus.button {
1212
+ background-color: #dc4a38;
1213
+ color: #ffffff;
1214
+ text-shadow: none;
1215
+ background-image: none;
1216
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1217
+ }
1218
+
1219
+ .ui.google.plus.button:hover {
1220
+ background-color: #de321d;
1221
+ color: #ffffff;
1222
+ text-shadow: none;
1223
+ }
1224
+
1225
+ .ui.google.plus.button:active {
1226
+ background-color: #bf3322;
1227
+ color: #ffffff;
1228
+ text-shadow: none;
1229
+ }
1230
+
1231
+ /* Linked In */
1232
+
1233
+ .ui.linkedin.button {
1234
+ background-color: #1f88be;
1235
+ color: #ffffff;
1236
+ text-shadow: none;
1237
+ }
1238
+
1239
+ .ui.linkedin.button:hover {
1240
+ background-color: #147baf;
1241
+ color: #ffffff;
1242
+ text-shadow: none;
1243
+ }
1244
+
1245
+ .ui.linkedin.button:active {
1246
+ background-color: #186992;
1247
+ color: #ffffff;
1248
+ text-shadow: none;
1249
+ }
1250
+
1251
+ /* YouTube */
1252
+
1253
+ .ui.youtube.button {
1254
+ background-color: #cc181e;
1255
+ color: #ffffff;
1256
+ text-shadow: none;
1257
+ background-image: none;
1258
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1259
+ }
1260
+
1261
+ .ui.youtube.button:hover {
1262
+ background-color: #bd0d13;
1263
+ color: #ffffff;
1264
+ text-shadow: none;
1265
+ }
1266
+
1267
+ .ui.youtube.button:active {
1268
+ background-color: #9e1317;
1269
+ color: #ffffff;
1270
+ text-shadow: none;
1271
+ }
1272
+
1273
+ /* Instagram */
1274
+
1275
+ .ui.instagram.button {
1276
+ background-color: #49769c;
1277
+ color: #ffffff;
1278
+ text-shadow: none;
1279
+ background-image: none;
1280
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1281
+ }
1282
+
1283
+ .ui.instagram.button:hover {
1284
+ background-color: #3d698e;
1285
+ color: #ffffff;
1286
+ text-shadow: none;
1287
+ }
1288
+
1289
+ .ui.instagram.button:active {
1290
+ background-color: #395c79;
1291
+ color: #ffffff;
1292
+ text-shadow: none;
1293
+ }
1294
+
1295
+ /* Pinterest */
1296
+
1297
+ .ui.pinterest.button {
1298
+ background-color: #00aced;
1299
+ color: #ffffff;
1300
+ text-shadow: none;
1301
+ background-image: none;
1302
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1303
+ }
1304
+
1305
+ .ui.pinterest.button:hover {
1306
+ background-color: #0099d4;
1307
+ color: #ffffff;
1308
+ text-shadow: none;
1309
+ }
1310
+
1311
+ .ui.pinterest.button:active {
1312
+ background-color: #0087ba;
1313
+ color: #ffffff;
1314
+ text-shadow: none;
1315
+ }
1316
+
1317
+ /* VK */
1318
+
1319
+ .ui.vk.button {
1320
+ background-color: #4D7198;
1321
+ color: #ffffff;
1322
+ background-image: none;
1323
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1324
+ }
1325
+
1326
+ .ui.vk.button:hover {
1327
+ background-color: #41648a;
1328
+ color: #ffffff;
1329
+ }
1330
+
1331
+ .ui.vk.button:active {
1332
+ background-color: #3c5876;
1333
+ color: #ffffff;
1334
+ }
1335
+
1336
+ /*--------------
1337
+ Icon
1338
+ ---------------*/
1339
+
1340
+ .ui.button > .icon:not(.button) {
1341
+ height: 0.85714286em;
1342
+ opacity: 0.8;
1343
+ margin: 0em 0.42857143em 0em -0.21428571em;
1344
+ -webkit-transition: opacity 0.1s ease;
1345
+ transition: opacity 0.1s ease;
1346
+ vertical-align: '';
1347
+ color: '';
1348
+ }
1349
+
1350
+ .ui.button > .right.icon:not(.button) {
1351
+ margin: 0em -0.21428571em 0em 0.42857143em;
1352
+ }
1353
+
1354
+ /*******************************
1355
+ Variations
1356
+ *******************************/
1357
+
1358
+ /*-------------------
1359
+ Floated
1360
+ --------------------*/
1361
+
1362
+ .ui[class*="left floated"].buttons,
1363
+ .ui[class*="left floated"].button {
1364
+ float: left;
1365
+ margin-left: 0em;
1366
+ margin-right: 0.25em;
1367
+ }
1368
+
1369
+ .ui[class*="right floated"].buttons,
1370
+ .ui[class*="right floated"].button {
1371
+ float: right;
1372
+ margin-right: 0em;
1373
+ margin-left: 0.25em;
1374
+ }
1375
+
1376
+ /*-------------------
1377
+ Compact
1378
+ --------------------*/
1379
+
1380
+ .ui.compact.buttons .button,
1381
+ .ui.compact.button {
1382
+ padding: 0.58928571em 1.125em 0.58928571em;
1383
+ }
1384
+
1385
+ .ui.compact.icon.buttons .button,
1386
+ .ui.compact.icon.button {
1387
+ padding: 0.58928571em 0.58928571em 0.58928571em;
1388
+ }
1389
+
1390
+ .ui.compact.labeled.icon.buttons .button,
1391
+ .ui.compact.labeled.icon.button {
1392
+ padding: 0.58928571em 3.69642857em 0.58928571em;
1393
+ }
1394
+
1395
+ /*-------------------
1396
+ Sizes
1397
+ --------------------*/
1398
+
1399
+ .ui.mini.buttons .button,
1400
+ .ui.mini.buttons .or,
1401
+ .ui.mini.button {
1402
+ font-size: 0.71428571rem;
1403
+ }
1404
+
1405
+ .ui.tiny.buttons .button,
1406
+ .ui.tiny.buttons .or,
1407
+ .ui.tiny.button {
1408
+ font-size: 0.85714286rem;
1409
+ }
1410
+
1411
+ .ui.small.buttons .button,
1412
+ .ui.small.buttons .or,
1413
+ .ui.small.button {
1414
+ font-size: 0.92857143rem;
1415
+ }
1416
+
1417
+ .ui.buttons .button,
1418
+ .ui.buttons .or,
1419
+ .ui.button {
1420
+ font-size: 1rem;
1421
+ }
1422
+
1423
+ .ui.large.buttons .button,
1424
+ .ui.large.buttons .or,
1425
+ .ui.large.button {
1426
+ font-size: 1.14285714rem;
1427
+ }
1428
+
1429
+ .ui.big.buttons .button,
1430
+ .ui.big.buttons .or,
1431
+ .ui.big.button {
1432
+ font-size: 1.28571429rem;
1433
+ }
1434
+
1435
+ .ui.huge.buttons .button,
1436
+ .ui.huge.buttons .or,
1437
+ .ui.huge.button {
1438
+ font-size: 1.42857143rem;
1439
+ }
1440
+
1441
+ .ui.massive.buttons .button,
1442
+ .ui.massive.buttons .or,
1443
+ .ui.massive.button {
1444
+ font-size: 1.71428571rem;
1445
+ }
1446
+
1447
+ /*--------------
1448
+ Icon Only
1449
+ ---------------*/
1450
+
1451
+ .ui.icon.buttons .button,
1452
+ .ui.icon.button {
1453
+ padding: 0.78571429em 0.78571429em 0.78571429em;
1454
+ }
1455
+
1456
+ .ui.icon.buttons .button > .icon,
1457
+ .ui.icon.button > .icon {
1458
+ opacity: 0.9;
1459
+ margin: 0em;
1460
+ vertical-align: top;
1461
+ }
1462
+
1463
+ /*-------------------
1464
+ Basic
1465
+ --------------------*/
1466
+
1467
+ .ui.basic.buttons .button,
1468
+ .ui.basic.button {
1469
+ background: transparent none !important;
1470
+ color: rgba(0, 0, 0, 0.6) !important;
1471
+ font-weight: normal;
1472
+ border-radius: 0.28571429rem;
1473
+ text-transform: none;
1474
+ text-shadow: none !important;
1475
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
1476
+ }
1477
+
1478
+ .ui.basic.buttons {
1479
+ box-shadow: none;
1480
+ border: 1px solid rgba(34, 36, 38, 0.15);
1481
+ border-radius: 0.28571429rem;
1482
+ }
1483
+
1484
+ .ui.basic.buttons .button {
1485
+ border-radius: 0em;
1486
+ }
1487
+
1488
+ .ui.basic.buttons .button:hover,
1489
+ .ui.basic.button:hover {
1490
+ background: #ffffff !important;
1491
+ color: rgba(0, 0, 0, 0.8) !important;
1492
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset;
1493
+ }
1494
+
1495
+ .ui.basic.buttons .button:focus,
1496
+ .ui.basic.button:focus {
1497
+ background: #ffffff !important;
1498
+ color: rgba(0, 0, 0, 0.8) !important;
1499
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset;
1500
+ }
1501
+
1502
+ .ui.basic.buttons .button:active,
1503
+ .ui.basic.button:active {
1504
+ background: #f8f8f8 !important;
1505
+ color: rgba(0, 0, 0, 0.9) !important;
1506
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset;
1507
+ }
1508
+
1509
+ .ui.basic.buttons .active.button,
1510
+ .ui.basic.active.button {
1511
+ background: rgba(0, 0, 0, 0.05) !important;
1512
+ box-shadow: '' !important;
1513
+ color: rgba(0, 0, 0, 0.95);
1514
+ box-shadow: rgba(34, 36, 38, 0.35);
1515
+ }
1516
+
1517
+ .ui.basic.buttons .active.button:hover,
1518
+ .ui.basic.active.button:hover {
1519
+ background-color: rgba(0, 0, 0, 0.05);
1520
+ }
1521
+
1522
+ /* Vertical */
1523
+
1524
+ .ui.basic.buttons .button:hover {
1525
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset inset;
1526
+ }
1527
+
1528
+ .ui.basic.buttons .button:active {
1529
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset inset;
1530
+ }
1531
+
1532
+ .ui.basic.buttons .active.button {
1533
+ box-shadow: rgba(34, 36, 38, 0.35) inset;
1534
+ }
1535
+
1536
+ /* Standard Basic Inverted */
1537
+
1538
+ .ui.basic.inverted.buttons .button,
1539
+ .ui.basic.inverted.button {
1540
+ background-color: transparent !important;
1541
+ color: #f9fafb !important;
1542
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1543
+ }
1544
+
1545
+ .ui.basic.inverted.buttons .button:hover,
1546
+ .ui.basic.inverted.button:hover {
1547
+ color: #ffffff !important;
1548
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
1549
+ }
1550
+
1551
+ .ui.basic.inverted.buttons .button:focus,
1552
+ .ui.basic.inverted.button:focus {
1553
+ color: #ffffff !important;
1554
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
1555
+ }
1556
+
1557
+ .ui.basic.inverted.buttons .button:active,
1558
+ .ui.basic.inverted.button:active {
1559
+ background-color: rgba(255, 255, 255, 0.08) !important;
1560
+ color: #ffffff !important;
1561
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.9) inset !important;
1562
+ }
1563
+
1564
+ .ui.basic.inverted.buttons .active.button,
1565
+ .ui.basic.inverted.active.button {
1566
+ background-color: rgba(255, 255, 255, 0.08);
1567
+ color: #ffffff;
1568
+ text-shadow: none;
1569
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.7) inset;
1570
+ }
1571
+
1572
+ .ui.basic.inverted.buttons .active.button:hover,
1573
+ .ui.basic.inverted.active.button:hover {
1574
+ background-color: rgba(255, 255, 255, 0.15);
1575
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
1576
+ }
1577
+
1578
+ /* Basic Group */
1579
+
1580
+ .ui.basic.buttons .button {
1581
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
1582
+ box-shadow: none;
1583
+ }
1584
+
1585
+ .ui.basic.vertical.buttons .button {
1586
+ border-left: none;
1587
+ }
1588
+
1589
+ .ui.basic.vertical.buttons .button {
1590
+ border-left-width: 0px;
1591
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
1592
+ }
1593
+
1594
+ .ui.basic.vertical.buttons .button:first-child {
1595
+ border-top-width: 0px;
1596
+ }
1597
+
1598
+ /*--------------
1599
+ Labeled Icon
1600
+ ---------------*/
1601
+
1602
+ .ui.labeled.icon.buttons .button,
1603
+ .ui.labeled.icon.button {
1604
+ position: relative;
1605
+ padding-left: 4.07142857em !important;
1606
+ padding-right: 1.5em !important;
1607
+ }
1608
+
1609
+ /* Left Labeled */
1610
+
1611
+ .ui.labeled.icon.buttons > .button > .icon,
1612
+ .ui.labeled.icon.button > .icon {
1613
+ position: absolute;
1614
+ height: 100%;
1615
+ line-height: 1;
1616
+ border-radius: 0px;
1617
+ border-top-left-radius: inherit;
1618
+ border-bottom-left-radius: inherit;
1619
+ text-align: center;
1620
+ margin: 0em;
1621
+ width: 2.57142857em;
1622
+ background-color: rgba(0, 0, 0, 0.05);
1623
+ color: '';
1624
+ box-shadow: -1px 0px 0px 0px transparent inset;
1625
+ }
1626
+
1627
+ /* Left Labeled */
1628
+
1629
+ .ui.labeled.icon.buttons > .button > .icon,
1630
+ .ui.labeled.icon.button > .icon {
1631
+ top: 0em;
1632
+ left: 0em;
1633
+ }
1634
+
1635
+ /* Right Labeled */
1636
+
1637
+ .ui[class*="right labeled"].icon.button {
1638
+ padding-right: 4.07142857em !important;
1639
+ padding-left: 1.5em !important;
1640
+ }
1641
+
1642
+ .ui[class*="right labeled"].icon.button > .icon {
1643
+ left: auto;
1644
+ right: 0em;
1645
+ border-radius: 0px;
1646
+ border-top-right-radius: inherit;
1647
+ border-bottom-right-radius: inherit;
1648
+ box-shadow: 1px 0px 0px 0px transparent inset;
1649
+ }
1650
+
1651
+ .ui.labeled.icon.buttons > .button > .icon:before,
1652
+ .ui.labeled.icon.button > .icon:before,
1653
+ .ui.labeled.icon.buttons > .button > .icon:after,
1654
+ .ui.labeled.icon.button > .icon:after {
1655
+ display: block;
1656
+ position: absolute;
1657
+ width: 100%;
1658
+ top: 50%;
1659
+ text-align: center;
1660
+ -webkit-transform: translateY(-50%);
1661
+ -ms-transform: translateY(-50%);
1662
+ transform: translateY(-50%);
1663
+ }
1664
+
1665
+ .ui.labeled.icon.buttons .button > .icon {
1666
+ border-radius: 0em;
1667
+ }
1668
+
1669
+ .ui.labeled.icon.buttons .button:first-child > .icon {
1670
+ border-top-left-radius: 0.28571429rem;
1671
+ border-bottom-left-radius: 0.28571429rem;
1672
+ }
1673
+
1674
+ .ui.labeled.icon.buttons .button:last-child > .icon {
1675
+ border-top-right-radius: 0.28571429rem;
1676
+ border-bottom-right-radius: 0.28571429rem;
1677
+ }
1678
+
1679
+ .ui.vertical.labeled.icon.buttons .button:first-child > .icon {
1680
+ border-radius: 0em;
1681
+ border-top-left-radius: 0.28571429rem;
1682
+ }
1683
+
1684
+ .ui.vertical.labeled.icon.buttons .button:last-child > .icon {
1685
+ border-radius: 0em;
1686
+ border-bottom-left-radius: 0.28571429rem;
1687
+ }
1688
+
1689
+ /* Fluid Labeled */
1690
+
1691
+ .ui.fluid[class*="left labeled"].icon.button,
1692
+ .ui.fluid[class*="right labeled"].icon.button {
1693
+ padding-left: 1.5em !important;
1694
+ padding-right: 1.5em !important;
1695
+ }
1696
+
1697
+ /*--------------
1698
+ Toggle
1699
+ ---------------*/
1700
+
1701
+ /* Toggle (Modifies active state to give affordances) */
1702
+
1703
+ .ui.toggle.buttons .active.button,
1704
+ .ui.buttons .button.toggle.active,
1705
+ .ui.button.toggle.active {
1706
+ background-color: #21ba45 !important;
1707
+ box-shadow: none !important;
1708
+ text-shadow: none;
1709
+ color: #ffffff !important;
1710
+ }
1711
+
1712
+ .ui.button.toggle.active:hover {
1713
+ background-color: #16ab39 !important;
1714
+ text-shadow: none;
1715
+ color: #ffffff !important;
1716
+ }
1717
+
1718
+ /*--------------
1719
+ Circular
1720
+ ---------------*/
1721
+
1722
+ .ui.circular.button {
1723
+ border-radius: 10em;
1724
+ }
1725
+
1726
+ .ui.circular.button > .icon {
1727
+ width: 1em;
1728
+ vertical-align: baseline;
1729
+ }
1730
+
1731
+ /*-------------------
1732
+ Or Buttons
1733
+ --------------------*/
1734
+
1735
+ .ui.buttons .or {
1736
+ position: relative;
1737
+ width: 0.3em;
1738
+ height: 2.57142857em;
1739
+ z-index: 3;
1740
+ }
1741
+
1742
+ .ui.buttons .or:before {
1743
+ position: absolute;
1744
+ text-align: center;
1745
+ border-radius: 500rem;
1746
+ content: 'or';
1747
+ top: 50%;
1748
+ left: 50%;
1749
+ background-color: #ffffff;
1750
+ text-shadow: none;
1751
+ margin-top: -0.89285714em;
1752
+ margin-left: -0.89285714em;
1753
+ width: 1.78571429em;
1754
+ height: 1.78571429em;
1755
+ line-height: 1.78571429em;
1756
+ color: rgba(0, 0, 0, 0.4);
1757
+ font-style: normal;
1758
+ font-weight: bold;
1759
+ box-shadow: 0px 0px 0px 1px transparent inset;
1760
+ }
1761
+
1762
+ .ui.buttons .or[data-text]:before {
1763
+ content: attr(data-text);
1764
+ }
1765
+
1766
+ /* Fluid Or */
1767
+
1768
+ .ui.fluid.buttons .or {
1769
+ width: 0em !important;
1770
+ }
1771
+
1772
+ .ui.fluid.buttons .or:after {
1773
+ display: none;
1774
+ }
1775
+
1776
+ /*-------------------
1777
+ Attached
1778
+ --------------------*/
1779
+
1780
+ /* Singular */
1781
+
1782
+ .ui.attached.button {
1783
+ position: relative;
1784
+ display: block;
1785
+ margin: 0em;
1786
+ border-radius: 0em;
1787
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) !important;
1788
+ }
1789
+
1790
+ /* Top / Bottom */
1791
+
1792
+ .ui.attached.top.button {
1793
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
1794
+ }
1795
+
1796
+ .ui.attached.bottom.button {
1797
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
1798
+ }
1799
+
1800
+ /* Left / Right */
1801
+
1802
+ .ui.left.attached.button {
1803
+ display: inline-block;
1804
+ border-left: none;
1805
+ text-align: right;
1806
+ padding-right: 0.75em;
1807
+ border-radius: 0.28571429rem 0em 0em 0.28571429rem;
1808
+ }
1809
+
1810
+ .ui.right.attached.button {
1811
+ display: inline-block;
1812
+ text-align: left;
1813
+ padding-left: 0.75em;
1814
+ border-radius: 0em 0.28571429rem 0.28571429rem 0em;
1815
+ }
1816
+
1817
+ /* Plural */
1818
+
1819
+ .ui.attached.buttons {
1820
+ position: relative;
1821
+ display: -webkit-box;
1822
+ display: -webkit-flex;
1823
+ display: -ms-flexbox;
1824
+ display: flex;
1825
+ border-radius: 0em;
1826
+ width: auto !important;
1827
+ z-index: 2;
1828
+ margin-left: -1px;
1829
+ margin-right: -1px;
1830
+ }
1831
+
1832
+ .ui.attached.buttons .button {
1833
+ margin: 0em;
1834
+ }
1835
+
1836
+ .ui.attached.buttons .button:first-child {
1837
+ border-radius: 0em;
1838
+ }
1839
+
1840
+ .ui.attached.buttons .button:last-child {
1841
+ border-radius: 0em;
1842
+ }
1843
+
1844
+ /* Top / Bottom */
1845
+
1846
+ .ui[class*="top attached"].buttons {
1847
+ margin-bottom: -1px;
1848
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
1849
+ }
1850
+
1851
+ .ui[class*="top attached"].buttons .button:first-child {
1852
+ border-radius: 0.28571429rem 0em 0em 0em;
1853
+ }
1854
+
1855
+ .ui[class*="top attached"].buttons .button:last-child {
1856
+ border-radius: 0em 0.28571429rem 0em 0em;
1857
+ }
1858
+
1859
+ .ui[class*="bottom attached"].buttons {
1860
+ margin-top: -1px;
1861
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
1862
+ }
1863
+
1864
+ .ui[class*="bottom attached"].buttons .button:first-child {
1865
+ border-radius: 0em 0em 0em 0.28571429rem;
1866
+ }
1867
+
1868
+ .ui[class*="bottom attached"].buttons .button:last-child {
1869
+ border-radius: 0em 0em 0.28571429rem 0em;
1870
+ }
1871
+
1872
+ /* Left / Right */
1873
+
1874
+ .ui[class*="left attached"].buttons {
1875
+ display: -webkit-inline-box;
1876
+ display: -webkit-inline-flex;
1877
+ display: -ms-inline-flexbox;
1878
+ display: inline-flex;
1879
+ margin-right: 0em;
1880
+ margin-left: -1px;
1881
+ border-radius: 0em 0.28571429rem 0.28571429rem 0em;
1882
+ }
1883
+
1884
+ .ui[class*="left attached"].buttons .button:first-child {
1885
+ margin-left: -1px;
1886
+ border-radius: 0em 0.28571429rem 0em 0em;
1887
+ }
1888
+
1889
+ .ui[class*="left attached"].buttons .button:last-child {
1890
+ margin-left: -1px;
1891
+ border-radius: 0em 0em 0.28571429rem 0em;
1892
+ }
1893
+
1894
+ .ui[class*="right attached"].buttons {
1895
+ display: -webkit-inline-box;
1896
+ display: -webkit-inline-flex;
1897
+ display: -ms-inline-flexbox;
1898
+ display: inline-flex;
1899
+ margin-left: 0em;
1900
+ margin-right: -1px;
1901
+ border-radius: 0.28571429rem 0em 0em 0.28571429rem;
1902
+ }
1903
+
1904
+ .ui[class*="right attached"].buttons .button:first-child {
1905
+ margin-left: -1px;
1906
+ border-radius: 0.28571429rem 0em 0em 0em;
1907
+ }
1908
+
1909
+ .ui[class*="right attached"].buttons .button:last-child {
1910
+ margin-left: -1px;
1911
+ border-radius: 0em 0em 0em 0.28571429rem;
1912
+ }
1913
+
1914
+ /*-------------------
1915
+ Fluid
1916
+ --------------------*/
1917
+
1918
+ .ui.fluid.buttons,
1919
+ .ui.fluid.button {
1920
+ width: 100%;
1921
+ }
1922
+
1923
+ .ui.fluid.button {
1924
+ display: block;
1925
+ }
1926
+
1927
+ .ui.two.buttons {
1928
+ width: 100%;
1929
+ }
1930
+
1931
+ .ui.two.buttons > .button {
1932
+ width: 50%;
1933
+ }
1934
+
1935
+ .ui.three.buttons {
1936
+ width: 100%;
1937
+ }
1938
+
1939
+ .ui.three.buttons > .button {
1940
+ width: 33.333%;
1941
+ }
1942
+
1943
+ .ui.four.buttons {
1944
+ width: 100%;
1945
+ }
1946
+
1947
+ .ui.four.buttons > .button {
1948
+ width: 25%;
1949
+ }
1950
+
1951
+ .ui.five.buttons {
1952
+ width: 100%;
1953
+ }
1954
+
1955
+ .ui.five.buttons > .button {
1956
+ width: 20%;
1957
+ }
1958
+
1959
+ .ui.six.buttons {
1960
+ width: 100%;
1961
+ }
1962
+
1963
+ .ui.six.buttons > .button {
1964
+ width: 16.666%;
1965
+ }
1966
+
1967
+ .ui.seven.buttons {
1968
+ width: 100%;
1969
+ }
1970
+
1971
+ .ui.seven.buttons > .button {
1972
+ width: 14.285%;
1973
+ }
1974
+
1975
+ .ui.eight.buttons {
1976
+ width: 100%;
1977
+ }
1978
+
1979
+ .ui.eight.buttons > .button {
1980
+ width: 12.500%;
1981
+ }
1982
+
1983
+ .ui.nine.buttons {
1984
+ width: 100%;
1985
+ }
1986
+
1987
+ .ui.nine.buttons > .button {
1988
+ width: 11.11%;
1989
+ }
1990
+
1991
+ .ui.ten.buttons {
1992
+ width: 100%;
1993
+ }
1994
+
1995
+ .ui.ten.buttons > .button {
1996
+ width: 10%;
1997
+ }
1998
+
1999
+ .ui.eleven.buttons {
2000
+ width: 100%;
2001
+ }
2002
+
2003
+ .ui.eleven.buttons > .button {
2004
+ width: 9.09%;
2005
+ }
2006
+
2007
+ .ui.twelve.buttons {
2008
+ width: 100%;
2009
+ }
2010
+
2011
+ .ui.twelve.buttons > .button {
2012
+ width: 8.3333%;
2013
+ }
2014
+
2015
+ /* Fluid Vertical Buttons */
2016
+
2017
+ .ui.fluid.vertical.buttons,
2018
+ .ui.fluid.vertical.buttons > .button {
2019
+ display: -webkit-box;
2020
+ display: -webkit-flex;
2021
+ display: -ms-flexbox;
2022
+ display: flex;
2023
+ width: auto;
2024
+ }
2025
+
2026
+ .ui.two.vertical.buttons > .button {
2027
+ height: 50%;
2028
+ }
2029
+
2030
+ .ui.three.vertical.buttons > .button {
2031
+ height: 33.333%;
2032
+ }
2033
+
2034
+ .ui.four.vertical.buttons > .button {
2035
+ height: 25%;
2036
+ }
2037
+
2038
+ .ui.five.vertical.buttons > .button {
2039
+ height: 20%;
2040
+ }
2041
+
2042
+ .ui.six.vertical.buttons > .button {
2043
+ height: 16.666%;
2044
+ }
2045
+
2046
+ .ui.seven.vertical.buttons > .button {
2047
+ height: 14.285%;
2048
+ }
2049
+
2050
+ .ui.eight.vertical.buttons > .button {
2051
+ height: 12.500%;
2052
+ }
2053
+
2054
+ .ui.nine.vertical.buttons > .button {
2055
+ height: 11.11%;
2056
+ }
2057
+
2058
+ .ui.ten.vertical.buttons > .button {
2059
+ height: 10%;
2060
+ }
2061
+
2062
+ .ui.eleven.vertical.buttons > .button {
2063
+ height: 9.09%;
2064
+ }
2065
+
2066
+ .ui.twelve.vertical.buttons > .button {
2067
+ height: 8.3333%;
2068
+ }
2069
+
2070
+ /*-------------------
2071
+ Colors
2072
+ --------------------*/
2073
+
2074
+ /*--- Black ---*/
2075
+
2076
+ .ui.black.buttons .button,
2077
+ .ui.black.button {
2078
+ background-color: #1b1c1d;
2079
+ color: #ffffff;
2080
+ text-shadow: none;
2081
+ background-image: none;
2082
+ }
2083
+
2084
+ .ui.black.button {
2085
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2086
+ }
2087
+
2088
+ .ui.black.buttons .button:hover,
2089
+ .ui.black.button:hover {
2090
+ background-color: #27292a;
2091
+ color: #ffffff;
2092
+ text-shadow: none;
2093
+ }
2094
+
2095
+ .ui.black.buttons .button:focus,
2096
+ .ui.black.button:focus {
2097
+ background-color: #2f3032;
2098
+ color: #ffffff;
2099
+ text-shadow: none;
2100
+ }
2101
+
2102
+ .ui.black.buttons .button:active,
2103
+ .ui.black.button:active {
2104
+ background-color: #343637;
2105
+ color: #ffffff;
2106
+ text-shadow: none;
2107
+ }
2108
+
2109
+ .ui.black.buttons .active.button,
2110
+ .ui.black.buttons .active.button:active,
2111
+ .ui.black.active.button,
2112
+ .ui.black.button .active.button:active {
2113
+ background-color: #0f0f10;
2114
+ color: #ffffff;
2115
+ text-shadow: none;
2116
+ }
2117
+
2118
+ /* Basic */
2119
+
2120
+ .ui.basic.black.buttons .button,
2121
+ .ui.basic.black.button {
2122
+ box-shadow: 0px 0px 0px 1px #1b1c1d inset !important;
2123
+ color: #1b1c1d !important;
2124
+ }
2125
+
2126
+ .ui.basic.black.buttons .button:hover,
2127
+ .ui.basic.black.button:hover {
2128
+ background: transparent !important;
2129
+ box-shadow: 0px 0px 0px 1px #27292a inset !important;
2130
+ color: #27292a !important;
2131
+ }
2132
+
2133
+ .ui.basic.black.buttons .button:focus,
2134
+ .ui.basic.black.button:focus {
2135
+ background: transparent !important;
2136
+ box-shadow: 0px 0px 0px 1px #2f3032 inset !important;
2137
+ color: #27292a !important;
2138
+ }
2139
+
2140
+ .ui.basic.black.buttons .active.button,
2141
+ .ui.basic.black.active.button {
2142
+ background: transparent !important;
2143
+ box-shadow: 0px 0px 0px 1px #0f0f10 inset !important;
2144
+ color: #343637 !important;
2145
+ }
2146
+
2147
+ .ui.basic.black.buttons .button:active,
2148
+ .ui.basic.black.button:active {
2149
+ box-shadow: 0px 0px 0px 1px #343637 inset !important;
2150
+ color: #343637 !important;
2151
+ }
2152
+
2153
+ .ui.buttons:not(.vertical) > .basic.black.button:not(:first-child) {
2154
+ margin-left: -1px;
2155
+ }
2156
+
2157
+ /* Inverted */
2158
+
2159
+ .ui.inverted.black.buttons .button,
2160
+ .ui.inverted.black.button {
2161
+ background-color: transparent;
2162
+ box-shadow: 0px 0px 0px 2px #d4d4d5 inset !important;
2163
+ color: #ffffff;
2164
+ }
2165
+
2166
+ .ui.inverted.black.buttons .button:hover,
2167
+ .ui.inverted.black.button:hover,
2168
+ .ui.inverted.black.buttons .button:focus,
2169
+ .ui.inverted.black.button:focus,
2170
+ .ui.inverted.black.buttons .button.active,
2171
+ .ui.inverted.black.button.active,
2172
+ .ui.inverted.black.buttons .button:active,
2173
+ .ui.inverted.black.button:active {
2174
+ box-shadow: none !important;
2175
+ color: #ffffff;
2176
+ }
2177
+
2178
+ .ui.inverted.black.buttons .button:hover,
2179
+ .ui.inverted.black.button:hover {
2180
+ background-color: #000000;
2181
+ }
2182
+
2183
+ .ui.inverted.black.buttons .button:focus,
2184
+ .ui.inverted.black.button:focus {
2185
+ background-color: #000000;
2186
+ }
2187
+
2188
+ .ui.inverted.black.buttons .active.button,
2189
+ .ui.inverted.black.active.button {
2190
+ background-color: #000000;
2191
+ }
2192
+
2193
+ .ui.inverted.black.buttons .button:active,
2194
+ .ui.inverted.black.button:active {
2195
+ background-color: #000000;
2196
+ }
2197
+
2198
+ /* Inverted Basic */
2199
+
2200
+ .ui.inverted.black.basic.buttons .button,
2201
+ .ui.inverted.black.buttons .basic.button,
2202
+ .ui.inverted.black.basic.button {
2203
+ background-color: transparent;
2204
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2205
+ color: #ffffff !important;
2206
+ }
2207
+
2208
+ .ui.inverted.black.basic.buttons .button:hover,
2209
+ .ui.inverted.black.buttons .basic.button:hover,
2210
+ .ui.inverted.black.basic.button:hover {
2211
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
2212
+ color: #ffffff !important;
2213
+ }
2214
+
2215
+ .ui.inverted.black.basic.buttons .button:focus,
2216
+ .ui.inverted.black.basic.buttons .button:focus,
2217
+ .ui.inverted.black.basic.button:focus {
2218
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
2219
+ color: #545454 !important;
2220
+ }
2221
+
2222
+ .ui.inverted.black.basic.buttons .active.button,
2223
+ .ui.inverted.black.buttons .basic.active.button,
2224
+ .ui.inverted.black.basic.active.button {
2225
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
2226
+ color: #ffffff !important;
2227
+ }
2228
+
2229
+ .ui.inverted.black.basic.buttons .button:active,
2230
+ .ui.inverted.black.buttons .basic.button:active,
2231
+ .ui.inverted.black.basic.button:active {
2232
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
2233
+ color: #ffffff !important;
2234
+ }
2235
+
2236
+ /*--- Grey ---*/
2237
+
2238
+ .ui.grey.buttons .button,
2239
+ .ui.grey.button {
2240
+ background-color: #767676;
2241
+ color: #ffffff;
2242
+ text-shadow: none;
2243
+ background-image: none;
2244
+ }
2245
+
2246
+ .ui.grey.button {
2247
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2248
+ }
2249
+
2250
+ .ui.grey.buttons .button:hover,
2251
+ .ui.grey.button:hover {
2252
+ background-color: #838383;
2253
+ color: #ffffff;
2254
+ text-shadow: none;
2255
+ }
2256
+
2257
+ .ui.grey.buttons .button:focus,
2258
+ .ui.grey.button:focus {
2259
+ background-color: #8a8a8a;
2260
+ color: #ffffff;
2261
+ text-shadow: none;
2262
+ }
2263
+
2264
+ .ui.grey.buttons .button:active,
2265
+ .ui.grey.button:active {
2266
+ background-color: #909090;
2267
+ color: #ffffff;
2268
+ text-shadow: none;
2269
+ }
2270
+
2271
+ .ui.grey.buttons .active.button,
2272
+ .ui.grey.buttons .active.button:active,
2273
+ .ui.grey.active.button,
2274
+ .ui.grey.button .active.button:active {
2275
+ background-color: #696969;
2276
+ color: #ffffff;
2277
+ text-shadow: none;
2278
+ }
2279
+
2280
+ /* Basic */
2281
+
2282
+ .ui.basic.grey.buttons .button,
2283
+ .ui.basic.grey.button {
2284
+ box-shadow: 0px 0px 0px 1px #767676 inset !important;
2285
+ color: #767676 !important;
2286
+ }
2287
+
2288
+ .ui.basic.grey.buttons .button:hover,
2289
+ .ui.basic.grey.button:hover {
2290
+ background: transparent !important;
2291
+ box-shadow: 0px 0px 0px 1px #838383 inset !important;
2292
+ color: #838383 !important;
2293
+ }
2294
+
2295
+ .ui.basic.grey.buttons .button:focus,
2296
+ .ui.basic.grey.button:focus {
2297
+ background: transparent !important;
2298
+ box-shadow: 0px 0px 0px 1px #8a8a8a inset !important;
2299
+ color: #838383 !important;
2300
+ }
2301
+
2302
+ .ui.basic.grey.buttons .active.button,
2303
+ .ui.basic.grey.active.button {
2304
+ background: transparent !important;
2305
+ box-shadow: 0px 0px 0px 1px #696969 inset !important;
2306
+ color: #909090 !important;
2307
+ }
2308
+
2309
+ .ui.basic.grey.buttons .button:active,
2310
+ .ui.basic.grey.button:active {
2311
+ box-shadow: 0px 0px 0px 1px #909090 inset !important;
2312
+ color: #909090 !important;
2313
+ }
2314
+
2315
+ .ui.buttons:not(.vertical) > .basic.grey.button:not(:first-child) {
2316
+ margin-left: -1px;
2317
+ }
2318
+
2319
+ /* Inverted */
2320
+
2321
+ .ui.inverted.grey.buttons .button,
2322
+ .ui.inverted.grey.button {
2323
+ background-color: transparent;
2324
+ box-shadow: 0px 0px 0px 2px #d4d4d5 inset !important;
2325
+ color: #ffffff;
2326
+ }
2327
+
2328
+ .ui.inverted.grey.buttons .button:hover,
2329
+ .ui.inverted.grey.button:hover,
2330
+ .ui.inverted.grey.buttons .button:focus,
2331
+ .ui.inverted.grey.button:focus,
2332
+ .ui.inverted.grey.buttons .button.active,
2333
+ .ui.inverted.grey.button.active,
2334
+ .ui.inverted.grey.buttons .button:active,
2335
+ .ui.inverted.grey.button:active {
2336
+ box-shadow: none !important;
2337
+ color: rgba(0, 0, 0, 0.6);
2338
+ }
2339
+
2340
+ .ui.inverted.grey.buttons .button:hover,
2341
+ .ui.inverted.grey.button:hover {
2342
+ background-color: #cfd0d2;
2343
+ }
2344
+
2345
+ .ui.inverted.grey.buttons .button:focus,
2346
+ .ui.inverted.grey.button:focus {
2347
+ background-color: #c7c9cb;
2348
+ }
2349
+
2350
+ .ui.inverted.grey.buttons .active.button,
2351
+ .ui.inverted.grey.active.button {
2352
+ background-color: #cfd0d2;
2353
+ }
2354
+
2355
+ .ui.inverted.grey.buttons .button:active,
2356
+ .ui.inverted.grey.button:active {
2357
+ background-color: #c2c4c5;
2358
+ }
2359
+
2360
+ /* Inverted Basic */
2361
+
2362
+ .ui.inverted.grey.basic.buttons .button,
2363
+ .ui.inverted.grey.buttons .basic.button,
2364
+ .ui.inverted.grey.basic.button {
2365
+ background-color: transparent;
2366
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2367
+ color: #ffffff !important;
2368
+ }
2369
+
2370
+ .ui.inverted.grey.basic.buttons .button:hover,
2371
+ .ui.inverted.grey.buttons .basic.button:hover,
2372
+ .ui.inverted.grey.basic.button:hover {
2373
+ box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important;
2374
+ color: #ffffff !important;
2375
+ }
2376
+
2377
+ .ui.inverted.grey.basic.buttons .button:focus,
2378
+ .ui.inverted.grey.basic.buttons .button:focus,
2379
+ .ui.inverted.grey.basic.button:focus {
2380
+ box-shadow: 0px 0px 0px 2px #c7c9cb inset !important;
2381
+ color: #dcddde !important;
2382
+ }
2383
+
2384
+ .ui.inverted.grey.basic.buttons .active.button,
2385
+ .ui.inverted.grey.buttons .basic.active.button,
2386
+ .ui.inverted.grey.basic.active.button {
2387
+ box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important;
2388
+ color: #ffffff !important;
2389
+ }
2390
+
2391
+ .ui.inverted.grey.basic.buttons .button:active,
2392
+ .ui.inverted.grey.buttons .basic.button:active,
2393
+ .ui.inverted.grey.basic.button:active {
2394
+ box-shadow: 0px 0px 0px 2px #c2c4c5 inset !important;
2395
+ color: #ffffff !important;
2396
+ }
2397
+
2398
+ /*--- Brown ---*/
2399
+
2400
+ .ui.brown.buttons .button,
2401
+ .ui.brown.button {
2402
+ background-color: #a5673f;
2403
+ color: #ffffff;
2404
+ text-shadow: none;
2405
+ background-image: none;
2406
+ }
2407
+
2408
+ .ui.brown.button {
2409
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2410
+ }
2411
+
2412
+ .ui.brown.buttons .button:hover,
2413
+ .ui.brown.button:hover {
2414
+ background-color: #975b33;
2415
+ color: #ffffff;
2416
+ text-shadow: none;
2417
+ }
2418
+
2419
+ .ui.brown.buttons .button:focus,
2420
+ .ui.brown.button:focus {
2421
+ background-color: #90532b;
2422
+ color: #ffffff;
2423
+ text-shadow: none;
2424
+ }
2425
+
2426
+ .ui.brown.buttons .button:active,
2427
+ .ui.brown.button:active {
2428
+ background-color: #805031;
2429
+ color: #ffffff;
2430
+ text-shadow: none;
2431
+ }
2432
+
2433
+ .ui.brown.buttons .active.button,
2434
+ .ui.brown.buttons .active.button:active,
2435
+ .ui.brown.active.button,
2436
+ .ui.brown.button .active.button:active {
2437
+ background-color: #995a31;
2438
+ color: #ffffff;
2439
+ text-shadow: none;
2440
+ }
2441
+
2442
+ /* Basic */
2443
+
2444
+ .ui.basic.brown.buttons .button,
2445
+ .ui.basic.brown.button {
2446
+ box-shadow: 0px 0px 0px 1px #a5673f inset !important;
2447
+ color: #a5673f !important;
2448
+ }
2449
+
2450
+ .ui.basic.brown.buttons .button:hover,
2451
+ .ui.basic.brown.button:hover {
2452
+ background: transparent !important;
2453
+ box-shadow: 0px 0px 0px 1px #975b33 inset !important;
2454
+ color: #975b33 !important;
2455
+ }
2456
+
2457
+ .ui.basic.brown.buttons .button:focus,
2458
+ .ui.basic.brown.button:focus {
2459
+ background: transparent !important;
2460
+ box-shadow: 0px 0px 0px 1px #90532b inset !important;
2461
+ color: #975b33 !important;
2462
+ }
2463
+
2464
+ .ui.basic.brown.buttons .active.button,
2465
+ .ui.basic.brown.active.button {
2466
+ background: transparent !important;
2467
+ box-shadow: 0px 0px 0px 1px #995a31 inset !important;
2468
+ color: #805031 !important;
2469
+ }
2470
+
2471
+ .ui.basic.brown.buttons .button:active,
2472
+ .ui.basic.brown.button:active {
2473
+ box-shadow: 0px 0px 0px 1px #805031 inset !important;
2474
+ color: #805031 !important;
2475
+ }
2476
+
2477
+ .ui.buttons:not(.vertical) > .basic.brown.button:not(:first-child) {
2478
+ margin-left: -1px;
2479
+ }
2480
+
2481
+ /* Inverted */
2482
+
2483
+ .ui.inverted.brown.buttons .button,
2484
+ .ui.inverted.brown.button {
2485
+ background-color: transparent;
2486
+ box-shadow: 0px 0px 0px 2px #d67c1c inset !important;
2487
+ color: #d67c1c;
2488
+ }
2489
+
2490
+ .ui.inverted.brown.buttons .button:hover,
2491
+ .ui.inverted.brown.button:hover,
2492
+ .ui.inverted.brown.buttons .button:focus,
2493
+ .ui.inverted.brown.button:focus,
2494
+ .ui.inverted.brown.buttons .button.active,
2495
+ .ui.inverted.brown.button.active,
2496
+ .ui.inverted.brown.buttons .button:active,
2497
+ .ui.inverted.brown.button:active {
2498
+ box-shadow: none !important;
2499
+ color: #ffffff;
2500
+ }
2501
+
2502
+ .ui.inverted.brown.buttons .button:hover,
2503
+ .ui.inverted.brown.button:hover {
2504
+ background-color: #c86f11;
2505
+ }
2506
+
2507
+ .ui.inverted.brown.buttons .button:focus,
2508
+ .ui.inverted.brown.button:focus {
2509
+ background-color: #c16808;
2510
+ }
2511
+
2512
+ .ui.inverted.brown.buttons .active.button,
2513
+ .ui.inverted.brown.active.button {
2514
+ background-color: #cc6f0d;
2515
+ }
2516
+
2517
+ .ui.inverted.brown.buttons .button:active,
2518
+ .ui.inverted.brown.button:active {
2519
+ background-color: #a96216;
2520
+ }
2521
+
2522
+ /* Inverted Basic */
2523
+
2524
+ .ui.inverted.brown.basic.buttons .button,
2525
+ .ui.inverted.brown.buttons .basic.button,
2526
+ .ui.inverted.brown.basic.button {
2527
+ background-color: transparent;
2528
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2529
+ color: #ffffff !important;
2530
+ }
2531
+
2532
+ .ui.inverted.brown.basic.buttons .button:hover,
2533
+ .ui.inverted.brown.buttons .basic.button:hover,
2534
+ .ui.inverted.brown.basic.button:hover {
2535
+ box-shadow: 0px 0px 0px 2px #c86f11 inset !important;
2536
+ color: #d67c1c !important;
2537
+ }
2538
+
2539
+ .ui.inverted.brown.basic.buttons .button:focus,
2540
+ .ui.inverted.brown.basic.buttons .button:focus,
2541
+ .ui.inverted.brown.basic.button:focus {
2542
+ box-shadow: 0px 0px 0px 2px #c16808 inset !important;
2543
+ color: #d67c1c !important;
2544
+ }
2545
+
2546
+ .ui.inverted.brown.basic.buttons .active.button,
2547
+ .ui.inverted.brown.buttons .basic.active.button,
2548
+ .ui.inverted.brown.basic.active.button {
2549
+ box-shadow: 0px 0px 0px 2px #cc6f0d inset !important;
2550
+ color: #d67c1c !important;
2551
+ }
2552
+
2553
+ .ui.inverted.brown.basic.buttons .button:active,
2554
+ .ui.inverted.brown.buttons .basic.button:active,
2555
+ .ui.inverted.brown.basic.button:active {
2556
+ box-shadow: 0px 0px 0px 2px #a96216 inset !important;
2557
+ color: #d67c1c !important;
2558
+ }
2559
+
2560
+ /*--- Blue ---*/
2561
+
2562
+ .ui.blue.buttons .button,
2563
+ .ui.blue.button {
2564
+ background-color: #2185d0;
2565
+ color: #ffffff;
2566
+ text-shadow: none;
2567
+ background-image: none;
2568
+ }
2569
+
2570
+ .ui.blue.button {
2571
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2572
+ }
2573
+
2574
+ .ui.blue.buttons .button:hover,
2575
+ .ui.blue.button:hover {
2576
+ background-color: #1678c2;
2577
+ color: #ffffff;
2578
+ text-shadow: none;
2579
+ }
2580
+
2581
+ .ui.blue.buttons .button:focus,
2582
+ .ui.blue.button:focus {
2583
+ background-color: #0d71bb;
2584
+ color: #ffffff;
2585
+ text-shadow: none;
2586
+ }
2587
+
2588
+ .ui.blue.buttons .button:active,
2589
+ .ui.blue.button:active {
2590
+ background-color: #1a69a4;
2591
+ color: #ffffff;
2592
+ text-shadow: none;
2593
+ }
2594
+
2595
+ .ui.blue.buttons .active.button,
2596
+ .ui.blue.buttons .active.button:active,
2597
+ .ui.blue.active.button,
2598
+ .ui.blue.button .active.button:active {
2599
+ background-color: #1279c6;
2600
+ color: #ffffff;
2601
+ text-shadow: none;
2602
+ }
2603
+
2604
+ /* Basic */
2605
+
2606
+ .ui.basic.blue.buttons .button,
2607
+ .ui.basic.blue.button {
2608
+ box-shadow: 0px 0px 0px 1px #2185d0 inset !important;
2609
+ color: #2185d0 !important;
2610
+ }
2611
+
2612
+ .ui.basic.blue.buttons .button:hover,
2613
+ .ui.basic.blue.button:hover {
2614
+ background: transparent !important;
2615
+ box-shadow: 0px 0px 0px 1px #1678c2 inset !important;
2616
+ color: #1678c2 !important;
2617
+ }
2618
+
2619
+ .ui.basic.blue.buttons .button:focus,
2620
+ .ui.basic.blue.button:focus {
2621
+ background: transparent !important;
2622
+ box-shadow: 0px 0px 0px 1px #0d71bb inset !important;
2623
+ color: #1678c2 !important;
2624
+ }
2625
+
2626
+ .ui.basic.blue.buttons .active.button,
2627
+ .ui.basic.blue.active.button {
2628
+ background: transparent !important;
2629
+ box-shadow: 0px 0px 0px 1px #1279c6 inset !important;
2630
+ color: #1a69a4 !important;
2631
+ }
2632
+
2633
+ .ui.basic.blue.buttons .button:active,
2634
+ .ui.basic.blue.button:active {
2635
+ box-shadow: 0px 0px 0px 1px #1a69a4 inset !important;
2636
+ color: #1a69a4 !important;
2637
+ }
2638
+
2639
+ .ui.buttons:not(.vertical) > .basic.blue.button:not(:first-child) {
2640
+ margin-left: -1px;
2641
+ }
2642
+
2643
+ /* Inverted */
2644
+
2645
+ .ui.inverted.blue.buttons .button,
2646
+ .ui.inverted.blue.button {
2647
+ background-color: transparent;
2648
+ box-shadow: 0px 0px 0px 2px #54c8ff inset !important;
2649
+ color: #54c8ff;
2650
+ }
2651
+
2652
+ .ui.inverted.blue.buttons .button:hover,
2653
+ .ui.inverted.blue.button:hover,
2654
+ .ui.inverted.blue.buttons .button:focus,
2655
+ .ui.inverted.blue.button:focus,
2656
+ .ui.inverted.blue.buttons .button.active,
2657
+ .ui.inverted.blue.button.active,
2658
+ .ui.inverted.blue.buttons .button:active,
2659
+ .ui.inverted.blue.button:active {
2660
+ box-shadow: none !important;
2661
+ color: #ffffff;
2662
+ }
2663
+
2664
+ .ui.inverted.blue.buttons .button:hover,
2665
+ .ui.inverted.blue.button:hover {
2666
+ background-color: #3ac0ff;
2667
+ }
2668
+
2669
+ .ui.inverted.blue.buttons .button:focus,
2670
+ .ui.inverted.blue.button:focus {
2671
+ background-color: #2bbbff;
2672
+ }
2673
+
2674
+ .ui.inverted.blue.buttons .active.button,
2675
+ .ui.inverted.blue.active.button {
2676
+ background-color: #3ac0ff;
2677
+ }
2678
+
2679
+ .ui.inverted.blue.buttons .button:active,
2680
+ .ui.inverted.blue.button:active {
2681
+ background-color: #21b8ff;
2682
+ }
2683
+
2684
+ /* Inverted Basic */
2685
+
2686
+ .ui.inverted.blue.basic.buttons .button,
2687
+ .ui.inverted.blue.buttons .basic.button,
2688
+ .ui.inverted.blue.basic.button {
2689
+ background-color: transparent;
2690
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2691
+ color: #ffffff !important;
2692
+ }
2693
+
2694
+ .ui.inverted.blue.basic.buttons .button:hover,
2695
+ .ui.inverted.blue.buttons .basic.button:hover,
2696
+ .ui.inverted.blue.basic.button:hover {
2697
+ box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
2698
+ color: #54c8ff !important;
2699
+ }
2700
+
2701
+ .ui.inverted.blue.basic.buttons .button:focus,
2702
+ .ui.inverted.blue.basic.buttons .button:focus,
2703
+ .ui.inverted.blue.basic.button:focus {
2704
+ box-shadow: 0px 0px 0px 2px #2bbbff inset !important;
2705
+ color: #54c8ff !important;
2706
+ }
2707
+
2708
+ .ui.inverted.blue.basic.buttons .active.button,
2709
+ .ui.inverted.blue.buttons .basic.active.button,
2710
+ .ui.inverted.blue.basic.active.button {
2711
+ box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
2712
+ color: #54c8ff !important;
2713
+ }
2714
+
2715
+ .ui.inverted.blue.basic.buttons .button:active,
2716
+ .ui.inverted.blue.buttons .basic.button:active,
2717
+ .ui.inverted.blue.basic.button:active {
2718
+ box-shadow: 0px 0px 0px 2px #21b8ff inset !important;
2719
+ color: #54c8ff !important;
2720
+ }
2721
+
2722
+ /*--- Green ---*/
2723
+
2724
+ .ui.green.buttons .button,
2725
+ .ui.green.button {
2726
+ background-color: #21ba45;
2727
+ color: #ffffff;
2728
+ text-shadow: none;
2729
+ background-image: none;
2730
+ }
2731
+
2732
+ .ui.green.button {
2733
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2734
+ }
2735
+
2736
+ .ui.green.buttons .button:hover,
2737
+ .ui.green.button:hover {
2738
+ background-color: #16ab39;
2739
+ color: #ffffff;
2740
+ text-shadow: none;
2741
+ }
2742
+
2743
+ .ui.green.buttons .button:focus,
2744
+ .ui.green.button:focus {
2745
+ background-color: #0ea432;
2746
+ color: #ffffff;
2747
+ text-shadow: none;
2748
+ }
2749
+
2750
+ .ui.green.buttons .button:active,
2751
+ .ui.green.button:active {
2752
+ background-color: #198f35;
2753
+ color: #ffffff;
2754
+ text-shadow: none;
2755
+ }
2756
+
2757
+ .ui.green.buttons .active.button,
2758
+ .ui.green.buttons .active.button:active,
2759
+ .ui.green.active.button,
2760
+ .ui.green.button .active.button:active {
2761
+ background-color: #13ae38;
2762
+ color: #ffffff;
2763
+ text-shadow: none;
2764
+ }
2765
+
2766
+ /* Basic */
2767
+
2768
+ .ui.basic.green.buttons .button,
2769
+ .ui.basic.green.button {
2770
+ box-shadow: 0px 0px 0px 1px #21ba45 inset !important;
2771
+ color: #21ba45 !important;
2772
+ }
2773
+
2774
+ .ui.basic.green.buttons .button:hover,
2775
+ .ui.basic.green.button:hover {
2776
+ background: transparent !important;
2777
+ box-shadow: 0px 0px 0px 1px #16ab39 inset !important;
2778
+ color: #16ab39 !important;
2779
+ }
2780
+
2781
+ .ui.basic.green.buttons .button:focus,
2782
+ .ui.basic.green.button:focus {
2783
+ background: transparent !important;
2784
+ box-shadow: 0px 0px 0px 1px #0ea432 inset !important;
2785
+ color: #16ab39 !important;
2786
+ }
2787
+
2788
+ .ui.basic.green.buttons .active.button,
2789
+ .ui.basic.green.active.button {
2790
+ background: transparent !important;
2791
+ box-shadow: 0px 0px 0px 1px #13ae38 inset !important;
2792
+ color: #198f35 !important;
2793
+ }
2794
+
2795
+ .ui.basic.green.buttons .button:active,
2796
+ .ui.basic.green.button:active {
2797
+ box-shadow: 0px 0px 0px 1px #198f35 inset !important;
2798
+ color: #198f35 !important;
2799
+ }
2800
+
2801
+ .ui.buttons:not(.vertical) > .basic.green.button:not(:first-child) {
2802
+ margin-left: -1px;
2803
+ }
2804
+
2805
+ /* Inverted */
2806
+
2807
+ .ui.inverted.green.buttons .button,
2808
+ .ui.inverted.green.button {
2809
+ background-color: transparent;
2810
+ box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
2811
+ color: #2ecc40;
2812
+ }
2813
+
2814
+ .ui.inverted.green.buttons .button:hover,
2815
+ .ui.inverted.green.button:hover,
2816
+ .ui.inverted.green.buttons .button:focus,
2817
+ .ui.inverted.green.button:focus,
2818
+ .ui.inverted.green.buttons .button.active,
2819
+ .ui.inverted.green.button.active,
2820
+ .ui.inverted.green.buttons .button:active,
2821
+ .ui.inverted.green.button:active {
2822
+ box-shadlightOw: none !important;
2823
+ color: #ffffff;
2824
+ }
2825
+
2826
+ .ui.inverted.green.buttons .button:hover,
2827
+ .ui.inverted.green.button:hover {
2828
+ background-color: #22be34;
2829
+ }
2830
+
2831
+ .ui.inverted.green.buttons .button:focus,
2832
+ .ui.inverted.green.button:focus {
2833
+ background-color: #19b82b;
2834
+ }
2835
+
2836
+ .ui.inverted.green.buttons .active.button,
2837
+ .ui.inverted.green.active.button {
2838
+ background-color: #1fc231;
2839
+ }
2840
+
2841
+ .ui.inverted.green.buttons .button:active,
2842
+ .ui.inverted.green.button:active {
2843
+ background-color: #25a233;
2844
+ }
2845
+
2846
+ /* Inverted Basic */
2847
+
2848
+ .ui.inverted.green.basic.buttons .button,
2849
+ .ui.inverted.green.buttons .basic.button,
2850
+ .ui.inverted.green.basic.button {
2851
+ background-color: transparent;
2852
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2853
+ color: #ffffff !important;
2854
+ }
2855
+
2856
+ .ui.inverted.green.basic.buttons .button:hover,
2857
+ .ui.inverted.green.buttons .basic.button:hover,
2858
+ .ui.inverted.green.basic.button:hover {
2859
+ box-shadow: 0px 0px 0px 2px #22be34 inset !important;
2860
+ color: #2ecc40 !important;
2861
+ }
2862
+
2863
+ .ui.inverted.green.basic.buttons .button:focus,
2864
+ .ui.inverted.green.basic.buttons .button:focus,
2865
+ .ui.inverted.green.basic.button:focus {
2866
+ box-shadow: 0px 0px 0px 2px #19b82b inset !important;
2867
+ color: #2ecc40 !important;
2868
+ }
2869
+
2870
+ .ui.inverted.green.basic.buttons .active.button,
2871
+ .ui.inverted.green.buttons .basic.active.button,
2872
+ .ui.inverted.green.basic.active.button {
2873
+ box-shadow: 0px 0px 0px 2px #1fc231 inset !important;
2874
+ color: #2ecc40 !important;
2875
+ }
2876
+
2877
+ .ui.inverted.green.basic.buttons .button:active,
2878
+ .ui.inverted.green.buttons .basic.button:active,
2879
+ .ui.inverted.green.basic.button:active {
2880
+ box-shadow: 0px 0px 0px 2px #25a233 inset !important;
2881
+ color: #2ecc40 !important;
2882
+ }
2883
+
2884
+ /*--- Orange ---*/
2885
+
2886
+ .ui.orange.buttons .button,
2887
+ .ui.orange.button {
2888
+ background-color: #f2711c;
2889
+ color: #ffffff;
2890
+ text-shadow: none;
2891
+ background-image: none;
2892
+ }
2893
+
2894
+ .ui.orange.button {
2895
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2896
+ }
2897
+
2898
+ .ui.orange.buttons .button:hover,
2899
+ .ui.orange.button:hover {
2900
+ background-color: #f26202;
2901
+ color: #ffffff;
2902
+ text-shadow: none;
2903
+ }
2904
+
2905
+ .ui.orange.buttons .button:focus,
2906
+ .ui.orange.button:focus {
2907
+ background-color: #e55b00;
2908
+ color: #ffffff;
2909
+ text-shadow: none;
2910
+ }
2911
+
2912
+ .ui.orange.buttons .button:active,
2913
+ .ui.orange.button:active {
2914
+ background-color: #cf590c;
2915
+ color: #ffffff;
2916
+ text-shadow: none;
2917
+ }
2918
+
2919
+ .ui.orange.buttons .active.button,
2920
+ .ui.orange.buttons .active.button:active,
2921
+ .ui.orange.active.button,
2922
+ .ui.orange.button .active.button:active {
2923
+ background-color: #f56100;
2924
+ color: #ffffff;
2925
+ text-shadow: none;
2926
+ }
2927
+
2928
+ /* Basic */
2929
+
2930
+ .ui.basic.orange.buttons .button,
2931
+ .ui.basic.orange.button {
2932
+ box-shadow: 0px 0px 0px 1px #f2711c inset !important;
2933
+ color: #f2711c !important;
2934
+ }
2935
+
2936
+ .ui.basic.orange.buttons .button:hover,
2937
+ .ui.basic.orange.button:hover {
2938
+ background: transparent !important;
2939
+ box-shadow: 0px 0px 0px 1px #f26202 inset !important;
2940
+ color: #f26202 !important;
2941
+ }
2942
+
2943
+ .ui.basic.orange.buttons .button:focus,
2944
+ .ui.basic.orange.button:focus {
2945
+ background: transparent !important;
2946
+ box-shadow: 0px 0px 0px 1px #e55b00 inset !important;
2947
+ color: #f26202 !important;
2948
+ }
2949
+
2950
+ .ui.basic.orange.buttons .active.button,
2951
+ .ui.basic.orange.active.button {
2952
+ background: transparent !important;
2953
+ box-shadow: 0px 0px 0px 1px #f56100 inset !important;
2954
+ color: #cf590c !important;
2955
+ }
2956
+
2957
+ .ui.basic.orange.buttons .button:active,
2958
+ .ui.basic.orange.button:active {
2959
+ box-shadow: 0px 0px 0px 1px #cf590c inset !important;
2960
+ color: #cf590c !important;
2961
+ }
2962
+
2963
+ .ui.buttons:not(.vertical) > .basic.orange.button:not(:first-child) {
2964
+ margin-left: -1px;
2965
+ }
2966
+
2967
+ /* Inverted */
2968
+
2969
+ .ui.inverted.orange.buttons .button,
2970
+ .ui.inverted.orange.button {
2971
+ background-color: transparent;
2972
+ box-shadow: 0px 0px 0px 2px #ff851b inset !important;
2973
+ color: #ff851b;
2974
+ }
2975
+
2976
+ .ui.inverted.orange.buttons .button:hover,
2977
+ .ui.inverted.orange.button:hover,
2978
+ .ui.inverted.orange.buttons .button:focus,
2979
+ .ui.inverted.orange.button:focus,
2980
+ .ui.inverted.orange.buttons .button.active,
2981
+ .ui.inverted.orange.button.active,
2982
+ .ui.inverted.orange.buttons .button:active,
2983
+ .ui.inverted.orange.button:active {
2984
+ box-shadow: none !important;
2985
+ color: #ffffff;
2986
+ }
2987
+
2988
+ .ui.inverted.orange.buttons .button:hover,
2989
+ .ui.inverted.orange.button:hover {
2990
+ background-color: #ff7701;
2991
+ }
2992
+
2993
+ .ui.inverted.orange.buttons .button:focus,
2994
+ .ui.inverted.orange.button:focus {
2995
+ background-color: #f17000;
2996
+ }
2997
+
2998
+ .ui.inverted.orange.buttons .active.button,
2999
+ .ui.inverted.orange.active.button {
3000
+ background-color: #ff7701;
3001
+ }
3002
+
3003
+ .ui.inverted.orange.buttons .button:active,
3004
+ .ui.inverted.orange.button:active {
3005
+ background-color: #e76b00;
3006
+ }
3007
+
3008
+ /* Inverted Basic */
3009
+
3010
+ .ui.inverted.orange.basic.buttons .button,
3011
+ .ui.inverted.orange.buttons .basic.button,
3012
+ .ui.inverted.orange.basic.button {
3013
+ background-color: transparent;
3014
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
3015
+ color: #ffffff !important;
3016
+ }
3017
+
3018
+ .ui.inverted.orange.basic.buttons .button:hover,
3019
+ .ui.inverted.orange.buttons .basic.button:hover,
3020
+ .ui.inverted.orange.basic.button:hover {
3021
+ box-shadow: 0px 0px 0px 2px #ff7701 inset !important;
3022
+ color: #ff851b !important;
3023
+ }
3024
+
3025
+ .ui.inverted.orange.basic.buttons .button:focus,
3026
+ .ui.inverted.orange.basic.buttons .button:focus,
3027
+ .ui.inverted.orange.basic.button:focus {
3028
+ box-shadow: 0px 0px 0px 2px #f17000 inset !important;
3029
+ color: #ff851b !important;
3030
+ }
3031
+
3032
+ .ui.inverted.orange.basic.buttons .active.button,
3033
+ .ui.inverted.orange.buttons .basic.active.button,
3034
+ .ui.inverted.orange.basic.active.button {
3035
+ box-shadow: 0px 0px 0px 2px #ff7701 inset !important;
3036
+ color: #ff851b !important;
3037
+ }
3038
+
3039
+ .ui.inverted.orange.basic.buttons .button:active,
3040
+ .ui.inverted.orange.buttons .basic.button:active,
3041
+ .ui.inverted.orange.basic.button:active {
3042
+ box-shadow: 0px 0px 0px 2px #e76b00 inset !important;
3043
+ color: #ff851b !important;
3044
+ }
3045
+
3046
+ /*--- Pink ---*/
3047
+
3048
+ .ui.pink.buttons .button,
3049
+ .ui.pink.button {
3050
+ background-color: #e03997;
3051
+ color: #ffffff;
3052
+ text-shadow: none;
3053
+ background-image: none;
3054
+ }
3055
+
3056
+ .ui.pink.button {
3057
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3058
+ }
3059
+
3060
+ .ui.pink.buttons .button:hover,
3061
+ .ui.pink.button:hover {
3062
+ background-color: #e61a8d;
3063
+ color: #ffffff;
3064
+ text-shadow: none;
3065
+ }
3066
+
3067
+ .ui.pink.buttons .button:focus,
3068
+ .ui.pink.button:focus {
3069
+ background-color: #e10f85;
3070
+ color: #ffffff;
3071
+ text-shadow: none;
3072
+ }
3073
+
3074
+ .ui.pink.buttons .button:active,
3075
+ .ui.pink.button:active {
3076
+ background-color: #c71f7e;
3077
+ color: #ffffff;
3078
+ text-shadow: none;
3079
+ }
3080
+
3081
+ .ui.pink.buttons .active.button,
3082
+ .ui.pink.buttons .active.button:active,
3083
+ .ui.pink.active.button,
3084
+ .ui.pink.button .active.button:active {
3085
+ background-color: #ea158d;
3086
+ color: #ffffff;
3087
+ text-shadow: none;
3088
+ }
3089
+
3090
+ /* Basic */
3091
+
3092
+ .ui.basic.pink.buttons .button,
3093
+ .ui.basic.pink.button {
3094
+ box-shadow: 0px 0px 0px 1px #e03997 inset !important;
3095
+ color: #e03997 !important;
3096
+ }
3097
+
3098
+ .ui.basic.pink.buttons .button:hover,
3099
+ .ui.basic.pink.button:hover {
3100
+ background: transparent !important;
3101
+ box-shadow: 0px 0px 0px 1px #e61a8d inset !important;
3102
+ color: #e61a8d !important;
3103
+ }
3104
+
3105
+ .ui.basic.pink.buttons .button:focus,
3106
+ .ui.basic.pink.button:focus {
3107
+ background: transparent !important;
3108
+ box-shadow: 0px 0px 0px 1px #e10f85 inset !important;
3109
+ color: #e61a8d !important;
3110
+ }
3111
+
3112
+ .ui.basic.pink.buttons .active.button,
3113
+ .ui.basic.pink.active.button {
3114
+ background: transparent !important;
3115
+ box-shadow: 0px 0px 0px 1px #ea158d inset !important;
3116
+ color: #c71f7e !important;
3117
+ }
3118
+
3119
+ .ui.basic.pink.buttons .button:active,
3120
+ .ui.basic.pink.button:active {
3121
+ box-shadow: 0px 0px 0px 1px #c71f7e inset !important;
3122
+ color: #c71f7e !important;
3123
+ }
3124
+
3125
+ .ui.buttons:not(.vertical) > .basic.pink.button:not(:first-child) {
3126
+ margin-left: -1px;
3127
+ }
3128
+
3129
+ /* Inverted */
3130
+
3131
+ .ui.inverted.pink.buttons .button,
3132
+ .ui.inverted.pink.button {
3133
+ background-color: transparent;
3134
+ box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
3135
+ color: #ff8edf;
3136
+ }
3137
+
3138
+ .ui.inverted.pink.buttons .button:hover,
3139
+ .ui.inverted.pink.button:hover,
3140
+ .ui.inverted.pink.buttons .button:focus,
3141
+ .ui.inverted.pink.button:focus,
3142
+ .ui.inverted.pink.buttons .button.active,
3143
+ .ui.inverted.pink.button.active,
3144
+ .ui.inverted.pink.buttons .button:active,
3145
+ .ui.inverted.pink.button:active {
3146
+ box-shadow: none !important;
3147
+ color: #ffffff;
3148
+ }
3149
+
3150
+ .ui.inverted.pink.buttons .button:hover,
3151
+ .ui.inverted.pink.button:hover {
3152
+ background-color: #ff74d8;
3153
+ }
3154
+
3155
+ .ui.inverted.pink.buttons .button:focus,
3156
+ .ui.inverted.pink.button:focus {
3157
+ background-color: #ff65d3;
3158
+ }
3159
+
3160
+ .ui.inverted.pink.buttons .active.button,
3161
+ .ui.inverted.pink.active.button {
3162
+ background-color: #ff74d8;
3163
+ }
3164
+
3165
+ .ui.inverted.pink.buttons .button:active,
3166
+ .ui.inverted.pink.button:active {
3167
+ background-color: #ff5bd1;
3168
+ }
3169
+
3170
+ /* Inverted Basic */
3171
+
3172
+ .ui.inverted.pink.basic.buttons .button,
3173
+ .ui.inverted.pink.buttons .basic.button,
3174
+ .ui.inverted.pink.basic.button {
3175
+ background-color: transparent;
3176
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
3177
+ color: #ffffff !important;
3178
+ }
3179
+
3180
+ .ui.inverted.pink.basic.buttons .button:hover,
3181
+ .ui.inverted.pink.buttons .basic.button:hover,
3182
+ .ui.inverted.pink.basic.button:hover {
3183
+ box-shadow: 0px 0px 0px 2px #ff74d8 inset !important;
3184
+ color: #ff8edf !important;
3185
+ }
3186
+
3187
+ .ui.inverted.pink.basic.buttons .button:focus,
3188
+ .ui.inverted.pink.basic.buttons .button:focus,
3189
+ .ui.inverted.pink.basic.button:focus {
3190
+ box-shadow: 0px 0px 0px 2px #ff65d3 inset !important;
3191
+ color: #ff8edf !important;
3192
+ }
3193
+
3194
+ .ui.inverted.pink.basic.buttons .active.button,
3195
+ .ui.inverted.pink.buttons .basic.active.button,
3196
+ .ui.inverted.pink.basic.active.button {
3197
+ box-shadow: 0px 0px 0px 2px #ff74d8 inset !important;
3198
+ color: #ff8edf !important;
3199
+ }
3200
+
3201
+ .ui.inverted.pink.basic.buttons .button:active,
3202
+ .ui.inverted.pink.buttons .basic.button:active,
3203
+ .ui.inverted.pink.basic.button:active {
3204
+ box-shadow: 0px 0px 0px 2px #ff5bd1 inset !important;
3205
+ color: #ff8edf !important;
3206
+ }
3207
+
3208
+ /*--- Violet ---*/
3209
+
3210
+ .ui.violet.buttons .button,
3211
+ .ui.violet.button {
3212
+ background-color: #6435c9;
3213
+ color: #ffffff;
3214
+ text-shadow: none;
3215
+ background-image: none;
3216
+ }
3217
+
3218
+ .ui.violet.button {
3219
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3220
+ }
3221
+
3222
+ .ui.violet.buttons .button:hover,
3223
+ .ui.violet.button:hover {
3224
+ background-color: #5829bb;
3225
+ color: #ffffff;
3226
+ text-shadow: none;
3227
+ }
3228
+
3229
+ .ui.violet.buttons .button:focus,
3230
+ .ui.violet.button:focus {
3231
+ background-color: #4f20b5;
3232
+ color: #ffffff;
3233
+ text-shadow: none;
3234
+ }
3235
+
3236
+ .ui.violet.buttons .button:active,
3237
+ .ui.violet.button:active {
3238
+ background-color: #502aa1;
3239
+ color: #ffffff;
3240
+ text-shadow: none;
3241
+ }
3242
+
3243
+ .ui.violet.buttons .active.button,
3244
+ .ui.violet.buttons .active.button:active,
3245
+ .ui.violet.active.button,
3246
+ .ui.violet.button .active.button:active {
3247
+ background-color: #5626bf;
3248
+ color: #ffffff;
3249
+ text-shadow: none;
3250
+ }
3251
+
3252
+ /* Basic */
3253
+
3254
+ .ui.basic.violet.buttons .button,
3255
+ .ui.basic.violet.button {
3256
+ box-shadow: 0px 0px 0px 1px #6435c9 inset !important;
3257
+ color: #6435c9 !important;
3258
+ }
3259
+
3260
+ .ui.basic.violet.buttons .button:hover,
3261
+ .ui.basic.violet.button:hover {
3262
+ background: transparent !important;
3263
+ box-shadow: 0px 0px 0px 1px #5829bb inset !important;
3264
+ color: #5829bb !important;
3265
+ }
3266
+
3267
+ .ui.basic.violet.buttons .button:focus,
3268
+ .ui.basic.violet.button:focus {
3269
+ background: transparent !important;
3270
+ box-shadow: 0px 0px 0px 1px #4f20b5 inset !important;
3271
+ color: #5829bb !important;
3272
+ }
3273
+
3274
+ .ui.basic.violet.buttons .active.button,
3275
+ .ui.basic.violet.active.button {
3276
+ background: transparent !important;
3277
+ box-shadow: 0px 0px 0px 1px #5626bf inset !important;
3278
+ color: #502aa1 !important;
3279
+ }
3280
+
3281
+ .ui.basic.violet.buttons .button:active,
3282
+ .ui.basic.violet.button:active {
3283
+ box-shadow: 0px 0px 0px 1px #502aa1 inset !important;
3284
+ color: #502aa1 !important;
3285
+ }
3286
+
3287
+ .ui.buttons:not(.vertical) > .basic.violet.button:not(:first-child) {
3288
+ margin-left: -1px;
3289
+ }
3290
+
3291
+ /* Inverted */
3292
+
3293
+ .ui.inverted.violet.buttons .button,
3294
+ .ui.inverted.violet.button {
3295
+ background-color: transparent;
3296
+ box-shadow: 0px 0px 0px 2px #a291fb inset !important;
3297
+ color: #a291fb;
3298
+ }
3299
+
3300
+ .ui.inverted.violet.buttons .button:hover,
3301
+ .ui.inverted.violet.button:hover,
3302
+ .ui.inverted.violet.buttons .button:focus,
3303
+ .ui.inverted.violet.button:focus,
3304
+ .ui.inverted.violet.buttons .button.active,
3305
+ .ui.inverted.violet.button.active,
3306
+ .ui.inverted.violet.buttons .button:active,
3307
+ .ui.inverted.violet.button:active {
3308
+ box-shadow: none !important;
3309
+ color: #ffffff;
3310
+ }
3311
+
3312
+ .ui.inverted.violet.buttons .button:hover,
3313
+ .ui.inverted.violet.button:hover {
3314
+ background-color: #8a73ff;
3315
+ }
3316
+
3317
+ .ui.inverted.violet.buttons .button:focus,
3318
+ .ui.inverted.violet.button:focus {
3319
+ background-color: #7d64ff;
3320
+ }
3321
+
3322
+ .ui.inverted.violet.buttons .active.button,
3323
+ .ui.inverted.violet.active.button {
3324
+ background-color: #8a73ff;
3325
+ }
3326
+
3327
+ .ui.inverted.violet.buttons .button:active,
3328
+ .ui.inverted.violet.button:active {
3329
+ background-color: #7860f9;
3330
+ }
3331
+
3332
+ /* Inverted Basic */
3333
+
3334
+ .ui.inverted.violet.basic.buttons .button,
3335
+ .ui.inverted.violet.buttons .basic.button,
3336
+ .ui.inverted.violet.basic.button {
3337
+ background-color: transparent;
3338
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
3339
+ color: #ffffff !important;
3340
+ }
3341
+
3342
+ .ui.inverted.violet.basic.buttons .button:hover,
3343
+ .ui.inverted.violet.buttons .basic.button:hover,
3344
+ .ui.inverted.violet.basic.button:hover {
3345
+ box-shadow: 0px 0px 0px 2px #8a73ff inset !important;
3346
+ color: #a291fb !important;
3347
+ }
3348
+
3349
+ .ui.inverted.violet.basic.buttons .button:focus,
3350
+ .ui.inverted.violet.basic.buttons .button:focus,
3351
+ .ui.inverted.violet.basic.button:focus {
3352
+ box-shadow: 0px 0px 0px 2px #7d64ff inset !important;
3353
+ color: #a291fb !important;
3354
+ }
3355
+
3356
+ .ui.inverted.violet.basic.buttons .active.button,
3357
+ .ui.inverted.violet.buttons .basic.active.button,
3358
+ .ui.inverted.violet.basic.active.button {
3359
+ box-shadow: 0px 0px 0px 2px #8a73ff inset !important;
3360
+ color: #a291fb !important;
3361
+ }
3362
+
3363
+ .ui.inverted.violet.basic.buttons .button:active,
3364
+ .ui.inverted.violet.buttons .basic.button:active,
3365
+ .ui.inverted.violet.basic.button:active {
3366
+ box-shadow: 0px 0px 0px 2px #7860f9 inset !important;
3367
+ color: #a291fb !important;
3368
+ }
3369
+
3370
+ /*--- Purple ---*/
3371
+
3372
+ .ui.purple.buttons .button,
3373
+ .ui.purple.button {
3374
+ background-color: #a333c8;
3375
+ color: #ffffff;
3376
+ text-shadow: none;
3377
+ background-image: none;
3378
+ }
3379
+
3380
+ .ui.purple.button {
3381
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3382
+ }
3383
+
3384
+ .ui.purple.buttons .button:hover,
3385
+ .ui.purple.button:hover {
3386
+ background-color: #9627ba;
3387
+ color: #ffffff;
3388
+ text-shadow: none;
3389
+ }
3390
+
3391
+ .ui.purple.buttons .button:focus,
3392
+ .ui.purple.button:focus {
3393
+ background-color: #8f1eb4;
3394
+ color: #ffffff;
3395
+ text-shadow: none;
3396
+ }
3397
+
3398
+ .ui.purple.buttons .button:active,
3399
+ .ui.purple.button:active {
3400
+ background-color: #82299f;
3401
+ color: #ffffff;
3402
+ text-shadow: none;
3403
+ }
3404
+
3405
+ .ui.purple.buttons .active.button,
3406
+ .ui.purple.buttons .active.button:active,
3407
+ .ui.purple.active.button,
3408
+ .ui.purple.button .active.button:active {
3409
+ background-color: #9724be;
3410
+ color: #ffffff;
3411
+ text-shadow: none;
3412
+ }
3413
+
3414
+ /* Basic */
3415
+
3416
+ .ui.basic.purple.buttons .button,
3417
+ .ui.basic.purple.button {
3418
+ box-shadow: 0px 0px 0px 1px #a333c8 inset !important;
3419
+ color: #a333c8 !important;
3420
+ }
3421
+
3422
+ .ui.basic.purple.buttons .button:hover,
3423
+ .ui.basic.purple.button:hover {
3424
+ background: transparent !important;
3425
+ box-shadow: 0px 0px 0px 1px #9627ba inset !important;
3426
+ color: #9627ba !important;
3427
+ }
3428
+
3429
+ .ui.basic.purple.buttons .button:focus,
3430
+ .ui.basic.purple.button:focus {
3431
+ background: transparent !important;
3432
+ box-shadow: 0px 0px 0px 1px #8f1eb4 inset !important;
3433
+ color: #9627ba !important;
3434
+ }
3435
+
3436
+ .ui.basic.purple.buttons .active.button,
3437
+ .ui.basic.purple.active.button {
3438
+ background: transparent !important;
3439
+ box-shadow: 0px 0px 0px 1px #9724be inset !important;
3440
+ color: #82299f !important;
3441
+ }
3442
+
3443
+ .ui.basic.purple.buttons .button:active,
3444
+ .ui.basic.purple.button:active {
3445
+ box-shadow: 0px 0px 0px 1px #82299f inset !important;
3446
+ color: #82299f !important;
3447
+ }
3448
+
3449
+ .ui.buttons:not(.vertical) > .basic.purple.button:not(:first-child) {
3450
+ margin-left: -1px;
3451
+ }
3452
+
3453
+ /* Inverted */
3454
+
3455
+ .ui.inverted.purple.buttons .button,
3456
+ .ui.inverted.purple.button {
3457
+ background-color: transparent;
3458
+ box-shadow: 0px 0px 0px 2px #dc73ff inset !important;
3459
+ color: #dc73ff;
3460
+ }
3461
+
3462
+ .ui.inverted.purple.buttons .button:hover,
3463
+ .ui.inverted.purple.button:hover,
3464
+ .ui.inverted.purple.buttons .button:focus,
3465
+ .ui.inverted.purple.button:focus,
3466
+ .ui.inverted.purple.buttons .button.active,
3467
+ .ui.inverted.purple.button.active,
3468
+ .ui.inverted.purple.buttons .button:active,
3469
+ .ui.inverted.purple.button:active {
3470
+ box-shadow: none !important;
3471
+ color: #ffffff;
3472
+ }
3473
+
3474
+ .ui.inverted.purple.buttons .button:hover,
3475
+ .ui.inverted.purple.button:hover {
3476
+ background-color: #d65aff;
3477
+ }
3478
+
3479
+ .ui.inverted.purple.buttons .button:focus,
3480
+ .ui.inverted.purple.button:focus {
3481
+ background-color: #d24aff;
3482
+ }
3483
+
3484
+ .ui.inverted.purple.buttons .active.button,
3485
+ .ui.inverted.purple.active.button {
3486
+ background-color: #d65aff;
3487
+ }
3488
+
3489
+ .ui.inverted.purple.buttons .button:active,
3490
+ .ui.inverted.purple.button:active {
3491
+ background-color: #cf40ff;
3492
+ }
3493
+
3494
+ /* Inverted Basic */
3495
+
3496
+ .ui.inverted.purple.basic.buttons .button,
3497
+ .ui.inverted.purple.buttons .basic.button,
3498
+ .ui.inverted.purple.basic.button {
3499
+ background-color: transparent;
3500
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
3501
+ color: #ffffff !important;
3502
+ }
3503
+
3504
+ .ui.inverted.purple.basic.buttons .button:hover,
3505
+ .ui.inverted.purple.buttons .basic.button:hover,
3506
+ .ui.inverted.purple.basic.button:hover {
3507
+ box-shadow: 0px 0px 0px 2px #d65aff inset !important;
3508
+ color: #dc73ff !important;
3509
+ }
3510
+
3511
+ .ui.inverted.purple.basic.buttons .button:focus,
3512
+ .ui.inverted.purple.basic.buttons .button:focus,
3513
+ .ui.inverted.purple.basic.button:focus {
3514
+ box-shadow: 0px 0px 0px 2px #d24aff inset !important;
3515
+ color: #dc73ff !important;
3516
+ }
3517
+
3518
+ .ui.inverted.purple.basic.buttons .active.button,
3519
+ .ui.inverted.purple.buttons .basic.active.button,
3520
+ .ui.inverted.purple.basic.active.button {
3521
+ box-shadow: 0px 0px 0px 2px #d65aff inset !important;
3522
+ color: #dc73ff !important;
3523
+ }
3524
+
3525
+ .ui.inverted.purple.basic.buttons .button:active,
3526
+ .ui.inverted.purple.buttons .basic.button:active,
3527
+ .ui.inverted.purple.basic.button:active {
3528
+ box-shadow: 0px 0px 0px 2px #cf40ff inset !important;
3529
+ color: #dc73ff !important;
3530
+ }
3531
+
3532
+ /*--- Red ---*/
3533
+
3534
+ .ui.red.buttons .button,
3535
+ .ui.red.button {
3536
+ background-color: #db2828;
3537
+ color: #ffffff;
3538
+ text-shadow: none;
3539
+ background-image: none;
3540
+ }
3541
+
3542
+ .ui.red.button {
3543
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3544
+ }
3545
+
3546
+ .ui.red.buttons .button:hover,
3547
+ .ui.red.button:hover {
3548
+ background-color: #d01919;
3549
+ color: #ffffff;
3550
+ text-shadow: none;
3551
+ }
3552
+
3553
+ .ui.red.buttons .button:focus,
3554
+ .ui.red.button:focus {
3555
+ background-color: #ca1010;
3556
+ color: #ffffff;
3557
+ text-shadow: none;
3558
+ }
3559
+
3560
+ .ui.red.buttons .button:active,
3561
+ .ui.red.button:active {
3562
+ background-color: #b21e1e;
3563
+ color: #ffffff;
3564
+ text-shadow: none;
3565
+ }
3566
+
3567
+ .ui.red.buttons .active.button,
3568
+ .ui.red.buttons .active.button:active,
3569
+ .ui.red.active.button,
3570
+ .ui.red.button .active.button:active {
3571
+ background-color: #d41515;
3572
+ color: #ffffff;
3573
+ text-shadow: none;
3574
+ }
3575
+
3576
+ /* Basic */
3577
+
3578
+ .ui.basic.red.buttons .button,
3579
+ .ui.basic.red.button {
3580
+ box-shadow: 0px 0px 0px 1px #db2828 inset !important;
3581
+ color: #db2828 !important;
3582
+ }
3583
+
3584
+ .ui.basic.red.buttons .button:hover,
3585
+ .ui.basic.red.button:hover {
3586
+ background: transparent !important;
3587
+ box-shadow: 0px 0px 0px 1px #d01919 inset !important;
3588
+ color: #d01919 !important;
3589
+ }
3590
+
3591
+ .ui.basic.red.buttons .button:focus,
3592
+ .ui.basic.red.button:focus {
3593
+ background: transparent !important;
3594
+ box-shadow: 0px 0px 0px 1px #ca1010 inset !important;
3595
+ color: #d01919 !important;
3596
+ }
3597
+
3598
+ .ui.basic.red.buttons .active.button,
3599
+ .ui.basic.red.active.button {
3600
+ background: transparent !important;
3601
+ box-shadow: 0px 0px 0px 1px #d41515 inset !important;
3602
+ color: #b21e1e !important;
3603
+ }
3604
+
3605
+ .ui.basic.red.buttons .button:active,
3606
+ .ui.basic.red.button:active {
3607
+ box-shadow: 0px 0px 0px 1px #b21e1e inset !important;
3608
+ color: #b21e1e !important;
3609
+ }
3610
+
3611
+ .ui.buttons:not(.vertical) > .basic.red.button:not(:first-child) {
3612
+ margin-left: -1px;
3613
+ }
3614
+
3615
+ /* Inverted */
3616
+
3617
+ .ui.inverted.red.buttons .button,
3618
+ .ui.inverted.red.button {
3619
+ background-color: transparent;
3620
+ box-shadow: 0px 0px 0px 2px #ff695e inset !important;
3621
+ color: #ff695e;
3622
+ }
3623
+
3624
+ .ui.inverted.red.buttons .button:hover,
3625
+ .ui.inverted.red.button:hover,
3626
+ .ui.inverted.red.buttons .button:focus,
3627
+ .ui.inverted.red.button:focus,
3628
+ .ui.inverted.red.buttons .button.active,
3629
+ .ui.inverted.red.button.active,
3630
+ .ui.inverted.red.buttons .button:active,
3631
+ .ui.inverted.red.button:active {
3632
+ box-shadow: none !important;
3633
+ color: #ffffff;
3634
+ }
3635
+
3636
+ .ui.inverted.red.buttons .button:hover,
3637
+ .ui.inverted.red.button:hover {
3638
+ background-color: #ff5144;
3639
+ }
3640
+
3641
+ .ui.inverted.red.buttons .button:focus,
3642
+ .ui.inverted.red.button:focus {
3643
+ background-color: #ff4335;
3644
+ }
3645
+
3646
+ .ui.inverted.red.buttons .active.button,
3647
+ .ui.inverted.red.active.button {
3648
+ background-color: #ff5144;
3649
+ }
3650
+
3651
+ .ui.inverted.red.buttons .button:active,
3652
+ .ui.inverted.red.button:active {
3653
+ background-color: #ff392b;
3654
+ }
3655
+
3656
+ /* Inverted Basic */
3657
+
3658
+ .ui.inverted.red.basic.buttons .button,
3659
+ .ui.inverted.red.buttons .basic.button,
3660
+ .ui.inverted.red.basic.button {
3661
+ background-color: transparent;
3662
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
3663
+ color: #ffffff !important;
3664
+ }
3665
+
3666
+ .ui.inverted.red.basic.buttons .button:hover,
3667
+ .ui.inverted.red.buttons .basic.button:hover,
3668
+ .ui.inverted.red.basic.button:hover {
3669
+ box-shadow: 0px 0px 0px 2px #ff5144 inset !important;
3670
+ color: #ff695e !important;
3671
+ }
3672
+
3673
+ .ui.inverted.red.basic.buttons .button:focus,
3674
+ .ui.inverted.red.basic.buttons .button:focus,
3675
+ .ui.inverted.red.basic.button:focus {
3676
+ box-shadow: 0px 0px 0px 2px #ff4335 inset !important;
3677
+ color: #ff695e !important;
3678
+ }
3679
+
3680
+ .ui.inverted.red.basic.buttons .active.button,
3681
+ .ui.inverted.red.buttons .basic.active.button,
3682
+ .ui.inverted.red.basic.active.button {
3683
+ box-shadow: 0px 0px 0px 2px #ff5144 inset !important;
3684
+ color: #ff695e !important;
3685
+ }
3686
+
3687
+ .ui.inverted.red.basic.buttons .button:active,
3688
+ .ui.inverted.red.buttons .basic.button:active,
3689
+ .ui.inverted.red.basic.button:active {
3690
+ box-shadow: 0px 0px 0px 2px #ff392b inset !important;
3691
+ color: #ff695e !important;
3692
+ }
3693
+
3694
+ /*--- Teal ---*/
3695
+
3696
+ .ui.teal.buttons .button,
3697
+ .ui.teal.button {
3698
+ background-color: #00b5ad;
3699
+ color: #ffffff;
3700
+ text-shadow: none;
3701
+ background-image: none;
3702
+ }
3703
+
3704
+ .ui.teal.button {
3705
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3706
+ }
3707
+
3708
+ .ui.teal.buttons .button:hover,
3709
+ .ui.teal.button:hover {
3710
+ background-color: #009c95;
3711
+ color: #ffffff;
3712
+ text-shadow: none;
3713
+ }
3714
+
3715
+ .ui.teal.buttons .button:focus,
3716
+ .ui.teal.button:focus {
3717
+ background-color: #008c86;
3718
+ color: #ffffff;
3719
+ text-shadow: none;
3720
+ }
3721
+
3722
+ .ui.teal.buttons .button:active,
3723
+ .ui.teal.button:active {
3724
+ background-color: #00827c;
3725
+ color: #ffffff;
3726
+ text-shadow: none;
3727
+ }
3728
+
3729
+ .ui.teal.buttons .active.button,
3730
+ .ui.teal.buttons .active.button:active,
3731
+ .ui.teal.active.button,
3732
+ .ui.teal.button .active.button:active {
3733
+ background-color: #009c95;
3734
+ color: #ffffff;
3735
+ text-shadow: none;
3736
+ }
3737
+
3738
+ /* Basic */
3739
+
3740
+ .ui.basic.teal.buttons .button,
3741
+ .ui.basic.teal.button {
3742
+ box-shadow: 0px 0px 0px 1px #00b5ad inset !important;
3743
+ color: #00b5ad !important;
3744
+ }
3745
+
3746
+ .ui.basic.teal.buttons .button:hover,
3747
+ .ui.basic.teal.button:hover {
3748
+ background: transparent !important;
3749
+ box-shadow: 0px 0px 0px 1px #009c95 inset !important;
3750
+ color: #009c95 !important;
3751
+ }
3752
+
3753
+ .ui.basic.teal.buttons .button:focus,
3754
+ .ui.basic.teal.button:focus {
3755
+ background: transparent !important;
3756
+ box-shadow: 0px 0px 0px 1px #008c86 inset !important;
3757
+ color: #009c95 !important;
3758
+ }
3759
+
3760
+ .ui.basic.teal.buttons .active.button,
3761
+ .ui.basic.teal.active.button {
3762
+ background: transparent !important;
3763
+ box-shadow: 0px 0px 0px 1px #009c95 inset !important;
3764
+ color: #00827c !important;
3765
+ }
3766
+
3767
+ .ui.basic.teal.buttons .button:active,
3768
+ .ui.basic.teal.button:active {
3769
+ box-shadow: 0px 0px 0px 1px #00827c inset !important;
3770
+ color: #00827c !important;
3771
+ }
3772
+
3773
+ .ui.buttons:not(.vertical) > .basic.teal.button:not(:first-child) {
3774
+ margin-left: -1px;
3775
+ }
3776
+
3777
+ /* Inverted */
3778
+
3779
+ .ui.inverted.teal.buttons .button,
3780
+ .ui.inverted.teal.button {
3781
+ background-color: transparent;
3782
+ box-shadow: 0px 0px 0px 2px #6dffff inset !important;
3783
+ color: #6dffff;
3784
+ }
3785
+
3786
+ .ui.inverted.teal.buttons .button:hover,
3787
+ .ui.inverted.teal.button:hover,
3788
+ .ui.inverted.teal.buttons .button:focus,
3789
+ .ui.inverted.teal.button:focus,
3790
+ .ui.inverted.teal.buttons .button.active,
3791
+ .ui.inverted.teal.button.active,
3792
+ .ui.inverted.teal.buttons .button:active,
3793
+ .ui.inverted.teal.button:active {
3794
+ box-shadow: none !important;
3795
+ color: rgba(0, 0, 0, 0.6);
3796
+ }
3797
+
3798
+ .ui.inverted.teal.buttons .button:hover,
3799
+ .ui.inverted.teal.button:hover {
3800
+ background-color: #54ffff;
3801
+ }
3802
+
3803
+ .ui.inverted.teal.buttons .button:focus,
3804
+ .ui.inverted.teal.button:focus {
3805
+ background-color: #44ffff;
3806
+ }
3807
+
3808
+ .ui.inverted.teal.buttons .active.button,
3809
+ .ui.inverted.teal.active.button {
3810
+ background-color: #54ffff;
3811
+ }
3812
+
3813
+ .ui.inverted.teal.buttons .button:active,
3814
+ .ui.inverted.teal.button:active {
3815
+ background-color: #3affff;
3816
+ }
3817
+
3818
+ /* Inverted Basic */
3819
+
3820
+ .ui.inverted.teal.basic.buttons .button,
3821
+ .ui.inverted.teal.buttons .basic.button,
3822
+ .ui.inverted.teal.basic.button {
3823
+ background-color: transparent;
3824
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
3825
+ color: #ffffff !important;
3826
+ }
3827
+
3828
+ .ui.inverted.teal.basic.buttons .button:hover,
3829
+ .ui.inverted.teal.buttons .basic.button:hover,
3830
+ .ui.inverted.teal.basic.button:hover {
3831
+ box-shadow: 0px 0px 0px 2px #54ffff inset !important;
3832
+ color: #6dffff !important;
3833
+ }
3834
+
3835
+ .ui.inverted.teal.basic.buttons .button:focus,
3836
+ .ui.inverted.teal.basic.buttons .button:focus,
3837
+ .ui.inverted.teal.basic.button:focus {
3838
+ box-shadow: 0px 0px 0px 2px #44ffff inset !important;
3839
+ color: #6dffff !important;
3840
+ }
3841
+
3842
+ .ui.inverted.teal.basic.buttons .active.button,
3843
+ .ui.inverted.teal.buttons .basic.active.button,
3844
+ .ui.inverted.teal.basic.active.button {
3845
+ box-shadow: 0px 0px 0px 2px #54ffff inset !important;
3846
+ color: #6dffff !important;
3847
+ }
3848
+
3849
+ .ui.inverted.teal.basic.buttons .button:active,
3850
+ .ui.inverted.teal.buttons .basic.button:active,
3851
+ .ui.inverted.teal.basic.button:active {
3852
+ box-shadow: 0px 0px 0px 2px #3affff inset !important;
3853
+ color: #6dffff !important;
3854
+ }
3855
+
3856
+ /*--- Olive ---*/
3857
+
3858
+ .ui.olive.buttons .button,
3859
+ .ui.olive.button {
3860
+ background-color: #b5cc18;
3861
+ color: #ffffff;
3862
+ text-shadow: none;
3863
+ background-image: none;
3864
+ }
3865
+
3866
+ .ui.olive.button {
3867
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3868
+ }
3869
+
3870
+ .ui.olive.buttons .button:hover,
3871
+ .ui.olive.button:hover {
3872
+ background-color: #a7bd0d;
3873
+ color: #ffffff;
3874
+ text-shadow: none;
3875
+ }
3876
+
3877
+ .ui.olive.buttons .button:focus,
3878
+ .ui.olive.button:focus {
3879
+ background-color: #a0b605;
3880
+ color: #ffffff;
3881
+ text-shadow: none;
3882
+ }
3883
+
3884
+ .ui.olive.buttons .button:active,
3885
+ .ui.olive.button:active {
3886
+ background-color: #8d9e13;
3887
+ color: #ffffff;
3888
+ text-shadow: none;
3889
+ }
3890
+
3891
+ .ui.olive.buttons .active.button,
3892
+ .ui.olive.buttons .active.button:active,
3893
+ .ui.olive.active.button,
3894
+ .ui.olive.button .active.button:active {
3895
+ background-color: #aac109;
3896
+ color: #ffffff;
3897
+ text-shadow: none;
3898
+ }
3899
+
3900
+ /* Basic */
3901
+
3902
+ .ui.basic.olive.buttons .button,
3903
+ .ui.basic.olive.button {
3904
+ box-shadow: 0px 0px 0px 1px #b5cc18 inset !important;
3905
+ color: #b5cc18 !important;
3906
+ }
3907
+
3908
+ .ui.basic.olive.buttons .button:hover,
3909
+ .ui.basic.olive.button:hover {
3910
+ background: transparent !important;
3911
+ box-shadow: 0px 0px 0px 1px #a7bd0d inset !important;
3912
+ color: #a7bd0d !important;
3913
+ }
3914
+
3915
+ .ui.basic.olive.buttons .button:focus,
3916
+ .ui.basic.olive.button:focus {
3917
+ background: transparent !important;
3918
+ box-shadow: 0px 0px 0px 1px #a0b605 inset !important;
3919
+ color: #a7bd0d !important;
3920
+ }
3921
+
3922
+ .ui.basic.olive.buttons .active.button,
3923
+ .ui.basic.olive.active.button {
3924
+ background: transparent !important;
3925
+ box-shadow: 0px 0px 0px 1px #aac109 inset !important;
3926
+ color: #8d9e13 !important;
3927
+ }
3928
+
3929
+ .ui.basic.olive.buttons .button:active,
3930
+ .ui.basic.olive.button:active {
3931
+ box-shadow: 0px 0px 0px 1px #8d9e13 inset !important;
3932
+ color: #8d9e13 !important;
3933
+ }
3934
+
3935
+ .ui.buttons:not(.vertical) > .basic.olive.button:not(:first-child) {
3936
+ margin-left: -1px;
3937
+ }
3938
+
3939
+ /* Inverted */
3940
+
3941
+ .ui.inverted.olive.buttons .button,
3942
+ .ui.inverted.olive.button {
3943
+ background-color: transparent;
3944
+ box-shadow: 0px 0px 0px 2px #d9e778 inset !important;
3945
+ color: #d9e778;
3946
+ }
3947
+
3948
+ .ui.inverted.olive.buttons .button:hover,
3949
+ .ui.inverted.olive.button:hover,
3950
+ .ui.inverted.olive.buttons .button:focus,
3951
+ .ui.inverted.olive.button:focus,
3952
+ .ui.inverted.olive.buttons .button.active,
3953
+ .ui.inverted.olive.button.active,
3954
+ .ui.inverted.olive.buttons .button:active,
3955
+ .ui.inverted.olive.button:active {
3956
+ box-shadow: none !important;
3957
+ color: rgba(0, 0, 0, 0.6);
3958
+ }
3959
+
3960
+ .ui.inverted.olive.buttons .button:hover,
3961
+ .ui.inverted.olive.button:hover {
3962
+ background-color: #d8ea5c;
3963
+ }
3964
+
3965
+ .ui.inverted.olive.buttons .button:focus,
3966
+ .ui.inverted.olive.button:focus {
3967
+ background-color: #daef47;
3968
+ }
3969
+
3970
+ .ui.inverted.olive.buttons .active.button,
3971
+ .ui.inverted.olive.active.button {
3972
+ background-color: #daed59;
3973
+ }
3974
+
3975
+ .ui.inverted.olive.buttons .button:active,
3976
+ .ui.inverted.olive.button:active {
3977
+ background-color: #cddf4d;
3978
+ }
3979
+
3980
+ /* Inverted Basic */
3981
+
3982
+ .ui.inverted.olive.basic.buttons .button,
3983
+ .ui.inverted.olive.buttons .basic.button,
3984
+ .ui.inverted.olive.basic.button {
3985
+ background-color: transparent;
3986
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
3987
+ color: #ffffff !important;
3988
+ }
3989
+
3990
+ .ui.inverted.olive.basic.buttons .button:hover,
3991
+ .ui.inverted.olive.buttons .basic.button:hover,
3992
+ .ui.inverted.olive.basic.button:hover {
3993
+ box-shadow: 0px 0px 0px 2px #d8ea5c inset !important;
3994
+ color: #d9e778 !important;
3995
+ }
3996
+
3997
+ .ui.inverted.olive.basic.buttons .button:focus,
3998
+ .ui.inverted.olive.basic.buttons .button:focus,
3999
+ .ui.inverted.olive.basic.button:focus {
4000
+ box-shadow: 0px 0px 0px 2px #daef47 inset !important;
4001
+ color: #d9e778 !important;
4002
+ }
4003
+
4004
+ .ui.inverted.olive.basic.buttons .active.button,
4005
+ .ui.inverted.olive.buttons .basic.active.button,
4006
+ .ui.inverted.olive.basic.active.button {
4007
+ box-shadow: 0px 0px 0px 2px #daed59 inset !important;
4008
+ color: #d9e778 !important;
4009
+ }
4010
+
4011
+ .ui.inverted.olive.basic.buttons .button:active,
4012
+ .ui.inverted.olive.buttons .basic.button:active,
4013
+ .ui.inverted.olive.basic.button:active {
4014
+ box-shadow: 0px 0px 0px 2px #cddf4d inset !important;
4015
+ color: #d9e778 !important;
4016
+ }
4017
+
4018
+ /*--- Yellow ---*/
4019
+
4020
+ .ui.yellow.buttons .button,
4021
+ .ui.yellow.button {
4022
+ background-color: #fbbd08;
4023
+ color: #ffffff;
4024
+ text-shadow: none;
4025
+ background-image: none;
4026
+ }
4027
+
4028
+ .ui.yellow.button {
4029
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
4030
+ }
4031
+
4032
+ .ui.yellow.buttons .button:hover,
4033
+ .ui.yellow.button:hover {
4034
+ background-color: #eaae00;
4035
+ color: #ffffff;
4036
+ text-shadow: none;
4037
+ }
4038
+
4039
+ .ui.yellow.buttons .button:focus,
4040
+ .ui.yellow.button:focus {
4041
+ background-color: #daa300;
4042
+ color: #ffffff;
4043
+ text-shadow: none;
4044
+ }
4045
+
4046
+ .ui.yellow.buttons .button:active,
4047
+ .ui.yellow.button:active {
4048
+ background-color: #cd9903;
4049
+ color: #ffffff;
4050
+ text-shadow: none;
4051
+ }
4052
+
4053
+ .ui.yellow.buttons .active.button,
4054
+ .ui.yellow.buttons .active.button:active,
4055
+ .ui.yellow.active.button,
4056
+ .ui.yellow.button .active.button:active {
4057
+ background-color: #eaae00;
4058
+ color: #ffffff;
4059
+ text-shadow: none;
4060
+ }
4061
+
4062
+ /* Basic */
4063
+
4064
+ .ui.basic.yellow.buttons .button,
4065
+ .ui.basic.yellow.button {
4066
+ box-shadow: 0px 0px 0px 1px #fbbd08 inset !important;
4067
+ color: #fbbd08 !important;
4068
+ }
4069
+
4070
+ .ui.basic.yellow.buttons .button:hover,
4071
+ .ui.basic.yellow.button:hover {
4072
+ background: transparent !important;
4073
+ box-shadow: 0px 0px 0px 1px #eaae00 inset !important;
4074
+ color: #eaae00 !important;
4075
+ }
4076
+
4077
+ .ui.basic.yellow.buttons .button:focus,
4078
+ .ui.basic.yellow.button:focus {
4079
+ background: transparent !important;
4080
+ box-shadow: 0px 0px 0px 1px #daa300 inset !important;
4081
+ color: #eaae00 !important;
4082
+ }
4083
+
4084
+ .ui.basic.yellow.buttons .active.button,
4085
+ .ui.basic.yellow.active.button {
4086
+ background: transparent !important;
4087
+ box-shadow: 0px 0px 0px 1px #eaae00 inset !important;
4088
+ color: #cd9903 !important;
4089
+ }
4090
+
4091
+ .ui.basic.yellow.buttons .button:active,
4092
+ .ui.basic.yellow.button:active {
4093
+ box-shadow: 0px 0px 0px 1px #cd9903 inset !important;
4094
+ color: #cd9903 !important;
4095
+ }
4096
+
4097
+ .ui.buttons:not(.vertical) > .basic.yellow.button:not(:first-child) {
4098
+ margin-left: -1px;
4099
+ }
4100
+
4101
+ /* Inverted */
4102
+
4103
+ .ui.inverted.yellow.buttons .button,
4104
+ .ui.inverted.yellow.button {
4105
+ background-color: transparent;
4106
+ box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
4107
+ color: #ffe21f;
4108
+ }
4109
+
4110
+ .ui.inverted.yellow.buttons .button:hover,
4111
+ .ui.inverted.yellow.button:hover,
4112
+ .ui.inverted.yellow.buttons .button:focus,
4113
+ .ui.inverted.yellow.button:focus,
4114
+ .ui.inverted.yellow.buttons .button.active,
4115
+ .ui.inverted.yellow.button.active,
4116
+ .ui.inverted.yellow.buttons .button:active,
4117
+ .ui.inverted.yellow.button:active {
4118
+ box-shadow: none !important;
4119
+ color: rgba(0, 0, 0, 0.6);
4120
+ }
4121
+
4122
+ .ui.inverted.yellow.buttons .button:hover,
4123
+ .ui.inverted.yellow.button:hover {
4124
+ background-color: #ffdf05;
4125
+ }
4126
+
4127
+ .ui.inverted.yellow.buttons .button:focus,
4128
+ .ui.inverted.yellow.button:focus {
4129
+ background-color: #f5d500;
4130
+ }
4131
+
4132
+ .ui.inverted.yellow.buttons .active.button,
4133
+ .ui.inverted.yellow.active.button {
4134
+ background-color: #ffdf05;
4135
+ }
4136
+
4137
+ .ui.inverted.yellow.buttons .button:active,
4138
+ .ui.inverted.yellow.button:active {
4139
+ background-color: #ebcd00;
4140
+ }
4141
+
4142
+ /* Inverted Basic */
4143
+
4144
+ .ui.inverted.yellow.basic.buttons .button,
4145
+ .ui.inverted.yellow.buttons .basic.button,
4146
+ .ui.inverted.yellow.basic.button {
4147
+ background-color: transparent;
4148
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
4149
+ color: #ffffff !important;
4150
+ }
4151
+
4152
+ .ui.inverted.yellow.basic.buttons .button:hover,
4153
+ .ui.inverted.yellow.buttons .basic.button:hover,
4154
+ .ui.inverted.yellow.basic.button:hover {
4155
+ box-shadow: 0px 0px 0px 2px #ffdf05 inset !important;
4156
+ color: #ffe21f !important;
4157
+ }
4158
+
4159
+ .ui.inverted.yellow.basic.buttons .button:focus,
4160
+ .ui.inverted.yellow.basic.buttons .button:focus,
4161
+ .ui.inverted.yellow.basic.button:focus {
4162
+ box-shadow: 0px 0px 0px 2px #f5d500 inset !important;
4163
+ color: #ffe21f !important;
4164
+ }
4165
+
4166
+ .ui.inverted.yellow.basic.buttons .active.button,
4167
+ .ui.inverted.yellow.buttons .basic.active.button,
4168
+ .ui.inverted.yellow.basic.active.button {
4169
+ box-shadow: 0px 0px 0px 2px #ffdf05 inset !important;
4170
+ color: #ffe21f !important;
4171
+ }
4172
+
4173
+ .ui.inverted.yellow.basic.buttons .button:active,
4174
+ .ui.inverted.yellow.buttons .basic.button:active,
4175
+ .ui.inverted.yellow.basic.button:active {
4176
+ box-shadow: 0px 0px 0px 2px #ebcd00 inset !important;
4177
+ color: #ffe21f !important;
4178
+ }
4179
+
4180
+ /*-------------------
4181
+ Primary
4182
+ --------------------*/
4183
+
4184
+ .ui.primary.buttons .button,
4185
+ .ui.primary.button {
4186
+ background-color: #2185d0;
4187
+ color: #ffffff;
4188
+ text-shadow: none;
4189
+ background-image: none;
4190
+ }
4191
+
4192
+ .ui.primary.button {
4193
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
4194
+ }
4195
+
4196
+ .ui.primary.buttons .button:hover,
4197
+ .ui.primary.button:hover {
4198
+ background-color: #1678c2;
4199
+ color: #ffffff;
4200
+ text-shadow: none;
4201
+ }
4202
+
4203
+ .ui.primary.buttons .button:focus,
4204
+ .ui.primary.button:focus {
4205
+ background-color: #0d71bb;
4206
+ color: #ffffff;
4207
+ text-shadow: none;
4208
+ }
4209
+
4210
+ .ui.primary.buttons .button:active,
4211
+ .ui.primary.button:active {
4212
+ background-color: #1a69a4;
4213
+ color: #ffffff;
4214
+ text-shadow: none;
4215
+ }
4216
+
4217
+ .ui.primary.buttons .active.button,
4218
+ .ui.primary.active.button {
4219
+ background-color: #1279c6;
4220
+ color: #ffffff;
4221
+ text-shadow: none;
4222
+ }
4223
+
4224
+ /*-------------------
4225
+ Secondary
4226
+ --------------------*/
4227
+
4228
+ .ui.secondary.buttons .button,
4229
+ .ui.secondary.button {
4230
+ background-color: #1b1c1d;
4231
+ color: #ffffff;
4232
+ text-shadow: none;
4233
+ background-image: none;
4234
+ }
4235
+
4236
+ .ui.secondary.button {
4237
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
4238
+ }
4239
+
4240
+ .ui.secondary.buttons .button:hover,
4241
+ .ui.secondary.button:hover {
4242
+ background-color: #27292a;
4243
+ color: #ffffff;
4244
+ text-shadow: none;
4245
+ }
4246
+
4247
+ .ui.secondary.buttons .button:focus,
4248
+ .ui.secondary.button:focus {
4249
+ background-color: #2e3032;
4250
+ color: #ffffff;
4251
+ text-shadow: none;
4252
+ }
4253
+
4254
+ .ui.secondary.buttons .button:active,
4255
+ .ui.secondary.button:active {
4256
+ background-color: #343637;
4257
+ color: #ffffff;
4258
+ text-shadow: none;
4259
+ }
4260
+
4261
+ .ui.secondary.buttons .active.button,
4262
+ .ui.secondary.active.button {
4263
+ background-color: #27292a;
4264
+ color: #ffffff;
4265
+ text-shadow: none;
4266
+ }
4267
+
4268
+ /*---------------
4269
+ Positive
4270
+ ----------------*/
4271
+
4272
+ .ui.positive.buttons .button,
4273
+ .ui.positive.button {
4274
+ background-color: #21ba45 !important;
4275
+ color: #ffffff;
4276
+ text-shadow: none;
4277
+ background-image: none;
4278
+ }
4279
+
4280
+ .ui.positive.button {
4281
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
4282
+ }
4283
+
4284
+ .ui.positive.buttons .button:hover,
4285
+ .ui.positive.button:hover {
4286
+ background-color: #16ab39 !important;
4287
+ color: #ffffff;
4288
+ text-shadow: none;
4289
+ }
4290
+
4291
+ .ui.positive.buttons .button:focus,
4292
+ .ui.positive.button:focus {
4293
+ background-color: #0ea432 !important;
4294
+ color: #ffffff;
4295
+ text-shadow: none;
4296
+ }
4297
+
4298
+ .ui.positive.buttons .button:active,
4299
+ .ui.positive.button:active {
4300
+ background-color: #198f35 !important;
4301
+ color: #ffffff;
4302
+ text-shadow: none;
4303
+ }
4304
+
4305
+ .ui.positive.buttons .active.button,
4306
+ .ui.positive.active.button,
4307
+ .ui.positive.buttons .active.button:active {
4308
+ background-color: #13ae38;
4309
+ color: #ffffff;
4310
+ text-shadow: none;
4311
+ }
4312
+
4313
+ /*---------------
4314
+ Negative
4315
+ ----------------*/
4316
+
4317
+ .ui.negative.buttons .button,
4318
+ .ui.negative.button {
4319
+ background-color: #db2828 !important;
4320
+ color: #ffffff;
4321
+ text-shadow: none;
4322
+ background-image: none;
4323
+ }
4324
+
4325
+ .ui.negative.button {
4326
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
4327
+ }
4328
+
4329
+ .ui.negative.buttons .button:hover,
4330
+ .ui.negative.button:hover {
4331
+ background-color: #d01919 !important;
4332
+ color: #ffffff;
4333
+ text-shadow: none;
4334
+ }
4335
+
4336
+ .ui.negative.buttons .button:focus,
4337
+ .ui.negative.button:focus {
4338
+ background-color: #ca1010 !important;
4339
+ color: #ffffff;
4340
+ text-shadow: none;
4341
+ }
4342
+
4343
+ .ui.negative.buttons .button:active,
4344
+ .ui.negative.button:active {
4345
+ background-color: #b21e1e !important;
4346
+ color: #ffffff;
4347
+ text-shadow: none;
4348
+ }
4349
+
4350
+ .ui.negative.buttons .active.button,
4351
+ .ui.negative.active.button,
4352
+ .ui.negative.buttons .active.button:active {
4353
+ background-color: #d41515;
4354
+ color: #ffffff;
4355
+ text-shadow: none;
4356
+ }
4357
+
4358
+ /*******************************
4359
+ Groups
4360
+ *******************************/
4361
+
4362
+ .ui.buttons {
4363
+ display: -webkit-inline-box;
4364
+ display: -webkit-inline-flex;
4365
+ display: -ms-inline-flexbox;
4366
+ display: inline-flex;
4367
+ -webkit-box-orient: horizontal;
4368
+ -webkit-box-direction: normal;
4369
+ -webkit-flex-direction: row;
4370
+ -ms-flex-direction: row;
4371
+ flex-direction: row;
4372
+ font-size: 0em;
4373
+ vertical-align: baseline;
4374
+ margin: 0em 0.25em 0em 0em;
4375
+ }
4376
+
4377
+ .ui.buttons:not(.basic):not(.inverted) {
4378
+ box-shadow: none;
4379
+ }
4380
+
4381
+ /* Clearfix */
4382
+
4383
+ .ui.buttons:after {
4384
+ content: ".";
4385
+ display: block;
4386
+ height: 0;
4387
+ clear: both;
4388
+ visibility: hidden;
4389
+ }
4390
+
4391
+ /* Standard Group */
4392
+
4393
+ .ui.buttons .button {
4394
+ -webkit-box-flex: 1;
4395
+ -webkit-flex: 1 0 auto;
4396
+ -ms-flex: 1 0 auto;
4397
+ flex: 1 0 auto;
4398
+ margin: 0em;
4399
+ border-radius: 0em;
4400
+ margin: 0px 0px 0px 0px;
4401
+ }
4402
+
4403
+ .ui.buttons > .ui.button:not(.basic):not(.inverted),
4404
+ .ui.buttons:not(.basic):not(.inverted) > .button {
4405
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
4406
+ }
4407
+
4408
+ .ui.buttons .button:first-child {
4409
+ border-left: none;
4410
+ margin-left: 0em;
4411
+ border-top-left-radius: 0.28571429rem;
4412
+ border-bottom-left-radius: 0.28571429rem;
4413
+ }
4414
+
4415
+ .ui.buttons .button:last-child {
4416
+ border-top-right-radius: 0.28571429rem;
4417
+ border-bottom-right-radius: 0.28571429rem;
4418
+ }
4419
+
4420
+ /* Vertical Style */
4421
+
4422
+ .ui.vertical.buttons {
4423
+ display: -webkit-inline-box;
4424
+ display: -webkit-inline-flex;
4425
+ display: -ms-inline-flexbox;
4426
+ display: inline-flex;
4427
+ -webkit-box-orient: vertical;
4428
+ -webkit-box-direction: normal;
4429
+ -webkit-flex-direction: column;
4430
+ -ms-flex-direction: column;
4431
+ flex-direction: column;
4432
+ }
4433
+
4434
+ .ui.vertical.buttons .button {
4435
+ display: block;
4436
+ float: none;
4437
+ width: 100%;
4438
+ margin: 0px 0px 0px 0px;
4439
+ box-shadow: none;
4440
+ }
4441
+
4442
+ .ui.vertical.buttons .button:first-child,
4443
+ .ui.vertical.buttons .mini.button:first-child,
4444
+ .ui.vertical.buttons .tiny.button:first-child,
4445
+ .ui.vertical.buttons .small.button:first-child,
4446
+ .ui.vertical.buttons .massive.button:first-child,
4447
+ .ui.vertical.buttons .huge.button:first-child {
4448
+ border-radius: 0.28571429rem 0.28571429rem 0px 0px;
4449
+ }
4450
+
4451
+ .ui.vertical.buttons .button:last-child,
4452
+ .ui.vertical.buttons .mini.button:last-child,
4453
+ .ui.vertical.buttons .tiny.button:last-child,
4454
+ .ui.vertical.buttons .small.button:last-child,
4455
+ .ui.vertical.buttons .massive.button:last-child,
4456
+ .ui.vertical.buttons .huge.button:last-child,
4457
+ .ui.vertical.buttons .gigantic.button:last-child {
4458
+ margin-bottom: 0px;
4459
+ border-radius: 0px 0px 0.28571429rem 0.28571429rem;
4460
+ }
4461
+
4462
+ /*******************************
4463
+ Theme Overrides
4464
+ *******************************/
4465
+
4466
+ /*******************************
4467
+ Site Overrides
4468
+ *******************************/
4469
+ /*!
4470
+ * # Semantic UI 2.1.7 - Container
4471
+ * http://github.com/semantic-org/semantic-ui/
4472
+ *
4473
+ *
4474
+ * Copyright 2015 Contributors
4475
+ * Released under the MIT license
4476
+ * http://opensource.org/licenses/MIT
4477
+ *
4478
+ */
4479
+
4480
+ /*******************************
4481
+ Container
4482
+ *******************************/
4483
+
4484
+ /* All Sizes */
4485
+
4486
+ .ui.container {
4487
+ display: block;
4488
+ max-width: 100% !important;
4489
+ }
4490
+
4491
+ /* Mobile */
4492
+
4493
+ @media only screen and (max-width: 767px) {
4494
+ .ui.container {
4495
+ width: auto !important;
4496
+ margin-left: 1em !important;
4497
+ margin-right: 1em !important;
4498
+ }
4499
+
4500
+ .ui.grid.container {
4501
+ width: auto !important;
4502
+ }
4503
+
4504
+ .ui.relaxed.grid.container {
4505
+ width: auto !important;
4506
+ }
4507
+
4508
+ .ui.very.relaxed.grid.container {
4509
+ width: auto !important;
4510
+ }
4511
+ }
4512
+
4513
+ /* Tablet */
4514
+
4515
+ @media only screen and (min-width: 768px) and (max-width: 991px) {
4516
+ .ui.container {
4517
+ width: 723px;
4518
+ margin-left: auto !important;
4519
+ margin-right: auto !important;
4520
+ }
4521
+
4522
+ .ui.grid.container {
4523
+ width: calc( 723px + 2rem ) !important;
4524
+ }
4525
+
4526
+ .ui.relaxed.grid.container {
4527
+ width: calc( 723px + 3rem ) !important;
4528
+ }
4529
+
4530
+ .ui.very.relaxed.grid.container {
4531
+ width: calc( 723px + 5rem ) !important;
4532
+ }
4533
+ }
4534
+
4535
+ /* Small Monitor */
4536
+
4537
+ @media only screen and (min-width: 992px) and (max-width: 1199px) {
4538
+ .ui.container {
4539
+ width: 933px;
4540
+ margin-left: auto !important;
4541
+ margin-right: auto !important;
4542
+ }
4543
+
4544
+ .ui.grid.container {
4545
+ width: calc( 933px + 2rem ) !important;
4546
+ }
4547
+
4548
+ .ui.relaxed.grid.container {
4549
+ width: calc( 933px + 3rem ) !important;
4550
+ }
4551
+
4552
+ .ui.very.relaxed.grid.container {
4553
+ width: calc( 933px + 5rem ) !important;
4554
+ }
4555
+ }
4556
+
4557
+ /* Large Monitor */
4558
+
4559
+ @media only screen and (min-width: 1200px) {
4560
+ .ui.container {
4561
+ width: 1127px;
4562
+ margin-left: auto !important;
4563
+ margin-right: auto !important;
4564
+ }
4565
+
4566
+ .ui.grid.container {
4567
+ width: calc( 1127px + 2rem ) !important;
4568
+ }
4569
+
4570
+ .ui.relaxed.grid.container {
4571
+ width: calc( 1127px + 3rem ) !important;
4572
+ }
4573
+
4574
+ .ui.very.relaxed.grid.container {
4575
+ width: calc( 1127px + 5rem ) !important;
4576
+ }
4577
+ }
4578
+
4579
+ /*******************************
4580
+ Types
4581
+ *******************************/
4582
+
4583
+ /* Text Container */
4584
+
4585
+ .ui.text.container {
4586
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
4587
+ max-width: 700px !important;
4588
+ line-height: 1.5;
4589
+ }
4590
+
4591
+ .ui.text.container {
4592
+ font-size: 1.14285714rem;
4593
+ }
4594
+
4595
+ /* Fluid */
4596
+
4597
+ .ui.fluid.container {
4598
+ width: 100%;
4599
+ }
4600
+
4601
+ /*******************************
4602
+ Variations
4603
+ *******************************/
4604
+
4605
+ .ui[class*="left aligned"].container {
4606
+ text-align: left;
4607
+ }
4608
+
4609
+ .ui[class*="center aligned"].container {
4610
+ text-align: center;
4611
+ }
4612
+
4613
+ .ui[class*="right aligned"].container {
4614
+ text-align: right;
4615
+ }
4616
+
4617
+ .ui.justified.container {
4618
+ text-align: justify;
4619
+ -webkit-hyphens: auto;
4620
+ -moz-hyphens: auto;
4621
+ -ms-hyphens: auto;
4622
+ hyphens: auto;
4623
+ }
4624
+
4625
+ /*******************************
4626
+ Theme Overrides
4627
+ *******************************/
4628
+
4629
+ /*******************************
4630
+ Site Overrides
4631
+ *******************************/
4632
+ /*!
4633
+ * # Semantic UI 2.1.7 - Divider
4634
+ * http://github.com/semantic-org/semantic-ui/
4635
+ *
4636
+ *
4637
+ * Copyright 2015 Contributors
4638
+ * Released under the MIT license
4639
+ * http://opensource.org/licenses/MIT
4640
+ *
4641
+ */
4642
+
4643
+ /*******************************
4644
+ Divider
4645
+ *******************************/
4646
+
4647
+ .ui.divider {
4648
+ margin: 1rem 0rem;
4649
+ line-height: 1;
4650
+ height: 0em;
4651
+ font-weight: bold;
4652
+ text-transform: uppercase;
4653
+ letter-spacing: 0.05em;
4654
+ color: rgba(0, 0, 0, 0.85);
4655
+ -webkit-user-select: none;
4656
+ -moz-user-select: none;
4657
+ -ms-user-select: none;
4658
+ user-select: none;
4659
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
4660
+ }
4661
+
4662
+ /*--------------
4663
+ Basic
4664
+ ---------------*/
4665
+
4666
+ .ui.divider:not(.vertical):not(.horizontal) {
4667
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
4668
+ border-bottom: 1px solid rgba(255, 255, 255, 0.1);
4669
+ }
4670
+
4671
+ /*--------------
4672
+ Coupling
4673
+ ---------------*/
4674
+
4675
+ /* Allow divider between each column row */
4676
+
4677
+ .ui.grid > .column + .divider,
4678
+ .ui.grid > .row > .column + .divider {
4679
+ left: auto;
4680
+ }
4681
+
4682
+ /*--------------
4683
+ Horizontal
4684
+ ---------------*/
4685
+
4686
+ .ui.horizontal.divider {
4687
+ display: table;
4688
+ white-space: nowrap;
4689
+ height: auto;
4690
+ margin: '';
4691
+ overflow: hidden;
4692
+ line-height: 1;
4693
+ text-align: center;
4694
+ }
4695
+
4696
+ .ui.horizontal.divider:before,
4697
+ .ui.horizontal.divider:after {
4698
+ content: '';
4699
+ display: table-cell;
4700
+ position: relative;
4701
+ top: 50%;
4702
+ width: 50%;
4703
+ background-repeat: no-repeat;
4704
+ }
4705
+
4706
+ .ui.horizontal.divider:before {
4707
+ background-position: right 1em top 50%;
4708
+ }
4709
+
4710
+ .ui.horizontal.divider:after {
4711
+ background-position: left 1em top 50%;
4712
+ }
4713
+
4714
+ /*--------------
4715
+ Vertical
4716
+ ---------------*/
4717
+
4718
+ .ui.vertical.divider {
4719
+ position: absolute;
4720
+ z-index: 2;
4721
+ top: 50%;
4722
+ left: 50%;
4723
+ margin: 0rem;
4724
+ padding: 0em;
4725
+ width: auto;
4726
+ height: 50%;
4727
+ line-height: 0em;
4728
+ text-align: center;
4729
+ -webkit-transform: translateX(-50%);
4730
+ -ms-transform: translateX(-50%);
4731
+ transform: translateX(-50%);
4732
+ }
4733
+
4734
+ .ui.vertical.divider:before,
4735
+ .ui.vertical.divider:after {
4736
+ position: absolute;
4737
+ left: 50%;
4738
+ content: '';
4739
+ z-index: 3;
4740
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
4741
+ border-right: 1px solid rgba(255, 255, 255, 0.1);
4742
+ width: 0%;
4743
+ height: calc(100% - 1rem );
4744
+ }
4745
+
4746
+ .ui.vertical.divider:before {
4747
+ top: -100%;
4748
+ }
4749
+
4750
+ .ui.vertical.divider:after {
4751
+ top: auto;
4752
+ bottom: 0px;
4753
+ }
4754
+
4755
+ /* Inside grid */
4756
+
4757
+ @media only screen and (max-width: 767px) {
4758
+ .ui.stackable.grid .ui.vertical.divider,
4759
+ .ui.grid .stackable.row .ui.vertical.divider {
4760
+ display: table;
4761
+ white-space: nowrap;
4762
+ height: auto;
4763
+ margin: '';
4764
+ overflow: hidden;
4765
+ line-height: 1;
4766
+ text-align: center;
4767
+ position: static;
4768
+ top: 0;
4769
+ left: 0;
4770
+ -webkit-transform: none;
4771
+ -ms-transform: none;
4772
+ transform: none;
4773
+ }
4774
+
4775
+ .ui.stackable.grid .ui.vertical.divider:before,
4776
+ .ui.grid .stackable.row .ui.vertical.divider:before,
4777
+ .ui.stackable.grid .ui.vertical.divider:after,
4778
+ .ui.grid .stackable.row .ui.vertical.divider:after {
4779
+ position: static;
4780
+ left: 0;
4781
+ border-left: none;
4782
+ border-right: none;
4783
+ content: '';
4784
+ display: table-cell;
4785
+ position: relative;
4786
+ top: 50%;
4787
+ width: 50%;
4788
+ background-repeat: no-repeat;
4789
+ }
4790
+
4791
+ .ui.stackable.grid .ui.vertical.divider:before,
4792
+ .ui.grid .stackable.row .ui.vertical.divider:before {
4793
+ background-position: right 1em top 50%;
4794
+ }
4795
+
4796
+ .ui.stackable.grid .ui.vertical.divider:after,
4797
+ .ui.grid .stackable.row .ui.vertical.divider:after {
4798
+ background-position: left 1em top 50%;
4799
+ }
4800
+ }
4801
+
4802
+ /*--------------
4803
+ Icon
4804
+ ---------------*/
4805
+
4806
+ .ui.divider > .icon {
4807
+ margin: 0rem;
4808
+ font-size: 1rem;
4809
+ height: 1em;
4810
+ vertical-align: middle;
4811
+ }
4812
+
4813
+ /*******************************
4814
+ Variations
4815
+ *******************************/
4816
+
4817
+ /*--------------
4818
+ Hidden
4819
+ ---------------*/
4820
+
4821
+ .ui.hidden.divider {
4822
+ border-color: transparent !important;
4823
+ }
4824
+
4825
+ .ui.hidden.divider:before,
4826
+ .ui.hidden.divider:after {
4827
+ display: none;
4828
+ }
4829
+
4830
+ /*--------------
4831
+ Inverted
4832
+ ---------------*/
4833
+
4834
+ .ui.divider.inverted,
4835
+ .ui.vertical.inverted.divider,
4836
+ .ui.horizontal.inverted.divider {
4837
+ color: #ffffff;
4838
+ }
4839
+
4840
+ .ui.divider.inverted,
4841
+ .ui.divider.inverted:after,
4842
+ .ui.divider.inverted:before {
4843
+ border-top-color: rgba(34, 36, 38, 0.15) !important;
4844
+ border-left-color: rgba(34, 36, 38, 0.15) !important;
4845
+ border-bottom-color: rgba(255, 255, 255, 0.15) !important;
4846
+ border-right-color: rgba(255, 255, 255, 0.15) !important;
4847
+ }
4848
+
4849
+ /*--------------
4850
+ Fitted
4851
+ ---------------*/
4852
+
4853
+ .ui.fitted.divider {
4854
+ margin: 0em;
4855
+ }
4856
+
4857
+ /*--------------
4858
+ Clearing
4859
+ ---------------*/
4860
+
4861
+ .ui.clearing.divider {
4862
+ clear: both;
4863
+ }
4864
+
4865
+ /*--------------
4866
+ Section
4867
+ ---------------*/
4868
+
4869
+ .ui.section.divider {
4870
+ margin-top: 2rem;
4871
+ margin-bottom: 2rem;
4872
+ }
4873
+
4874
+ /*--------------
4875
+ Sizes
4876
+ ---------------*/
4877
+
4878
+ .ui.divider {
4879
+ font-size: 1rem;
4880
+ }
4881
+
4882
+ /*******************************
4883
+ Theme Overrides
4884
+ *******************************/
4885
+
4886
+ .ui.horizontal.divider:before,
4887
+ .ui.horizontal.divider:after {
4888
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC");
4889
+ }
4890
+
4891
+ @media only screen and (max-width: 767px) {
4892
+ .ui.stackable.grid .ui.vertical.divider:before,
4893
+ .ui.grid .stackable.row .ui.vertical.divider:before,
4894
+ .ui.stackable.grid .ui.vertical.divider:after,
4895
+ .ui.grid .stackable.row .ui.vertical.divider:after {
4896
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC");
4897
+ }
4898
+ }
4899
+
4900
+ /*******************************
4901
+ Site Overrides
4902
+ *******************************/
4903
+ /*!
4904
+ * # Semantic UI 2.1.7 - Flag
4905
+ * http://github.com/semantic-org/semantic-ui/
4906
+ *
4907
+ *
4908
+ * Copyright 2015 Contributors
4909
+ * Released under the MIT license
4910
+ * http://opensource.org/licenses/MIT
4911
+ *
4912
+ */
4913
+
4914
+ /*******************************
4915
+ Flag
4916
+ *******************************/
4917
+
4918
+ i.flag:not(.icon) {
4919
+ display: inline-block;
4920
+ width: 16px;
4921
+ height: 11px;
4922
+ line-height: 11px;
4923
+ vertical-align: baseline;
4924
+ margin: 0em 0.5em 0em 0em;
4925
+ text-decoration: inherit;
4926
+ speak: none;
4927
+ font-smoothing: antialiased;
4928
+ -webkit-backface-visibility: hidden;
4929
+ backface-visibility: hidden;
4930
+ }
4931
+
4932
+ /* Sprite */
4933
+
4934
+ i.flag:not(.icon):before {
4935
+ display: inline-block;
4936
+ content: '';
4937
+ background: url("images/flags.png") no-repeat -108px -1976px;
4938
+ width: 16px;
4939
+ height: 11px;
4940
+ }
4941
+
4942
+ /* Flag Sprite Based On http://www.famfamfam.com/lab/icons/flags/ */
4943
+
4944
+ /*******************************
4945
+ Theme Overrides
4946
+ *******************************/
4947
+
4948
+ i.flag.ad:before,
4949
+ i.flag.andorra:before {
4950
+ background-position: 0px 0px;
4951
+ }
4952
+
4953
+ i.flag.ae:before,
4954
+ i.flag.united.arab.emirates:before,
4955
+ i.flag.uae:before {
4956
+ background-position: 0px -26px;
4957
+ }
4958
+
4959
+ i.flag.af:before,
4960
+ i.flag.afghanistan:before {
4961
+ background-position: 0px -52px;
4962
+ }
4963
+
4964
+ i.flag.ag:before,
4965
+ i.flag.antigua:before {
4966
+ background-position: 0px -78px;
4967
+ }
4968
+
4969
+ i.flag.ai:before,
4970
+ i.flag.anguilla:before {
4971
+ background-position: 0px -104px;
4972
+ }
4973
+
4974
+ i.flag.al:before,
4975
+ i.flag.albania:before {
4976
+ background-position: 0px -130px;
4977
+ }
4978
+
4979
+ i.flag.am:before,
4980
+ i.flag.armenia:before {
4981
+ background-position: 0px -156px;
4982
+ }
4983
+
4984
+ i.flag.an:before,
4985
+ i.flag.netherlands.antilles:before {
4986
+ background-position: 0px -182px;
4987
+ }
4988
+
4989
+ i.flag.ao:before,
4990
+ i.flag.angola:before {
4991
+ background-position: 0px -208px;
4992
+ }
4993
+
4994
+ i.flag.ar:before,
4995
+ i.flag.argentina:before {
4996
+ background-position: 0px -234px;
4997
+ }
4998
+
4999
+ i.flag.as:before,
5000
+ i.flag.american.samoa:before {
5001
+ background-position: 0px -260px;
5002
+ }
5003
+
5004
+ i.flag.at:before,
5005
+ i.flag.austria:before {
5006
+ background-position: 0px -286px;
5007
+ }
5008
+
5009
+ i.flag.au:before,
5010
+ i.flag.australia:before {
5011
+ background-position: 0px -312px;
5012
+ }
5013
+
5014
+ i.flag.aw:before,
5015
+ i.flag.aruba:before {
5016
+ background-position: 0px -338px;
5017
+ }
5018
+
5019
+ i.flag.ax:before,
5020
+ i.flag.aland.islands:before {
5021
+ background-position: 0px -364px;
5022
+ }
5023
+
5024
+ i.flag.az:before,
5025
+ i.flag.azerbaijan:before {
5026
+ background-position: 0px -390px;
5027
+ }
5028
+
5029
+ i.flag.ba:before,
5030
+ i.flag.bosnia:before {
5031
+ background-position: 0px -416px;
5032
+ }
5033
+
5034
+ i.flag.bb:before,
5035
+ i.flag.barbados:before {
5036
+ background-position: 0px -442px;
5037
+ }
5038
+
5039
+ i.flag.bd:before,
5040
+ i.flag.bangladesh:before {
5041
+ background-position: 0px -468px;
5042
+ }
5043
+
5044
+ i.flag.be:before,
5045
+ i.flag.belgium:before {
5046
+ background-position: 0px -494px;
5047
+ }
5048
+
5049
+ i.flag.bf:before,
5050
+ i.flag.burkina.faso:before {
5051
+ background-position: 0px -520px;
5052
+ }
5053
+
5054
+ i.flag.bg:before,
5055
+ i.flag.bulgaria:before {
5056
+ background-position: 0px -546px;
5057
+ }
5058
+
5059
+ i.flag.bh:before,
5060
+ i.flag.bahrain:before {
5061
+ background-position: 0px -572px;
5062
+ }
5063
+
5064
+ i.flag.bi:before,
5065
+ i.flag.burundi:before {
5066
+ background-position: 0px -598px;
5067
+ }
5068
+
5069
+ i.flag.bj:before,
5070
+ i.flag.benin:before {
5071
+ background-position: 0px -624px;
5072
+ }
5073
+
5074
+ i.flag.bm:before,
5075
+ i.flag.bermuda:before {
5076
+ background-position: 0px -650px;
5077
+ }
5078
+
5079
+ i.flag.bn:before,
5080
+ i.flag.brunei:before {
5081
+ background-position: 0px -676px;
5082
+ }
5083
+
5084
+ i.flag.bo:before,
5085
+ i.flag.bolivia:before {
5086
+ background-position: 0px -702px;
5087
+ }
5088
+
5089
+ i.flag.br:before,
5090
+ i.flag.brazil:before {
5091
+ background-position: 0px -728px;
5092
+ }
5093
+
5094
+ i.flag.bs:before,
5095
+ i.flag.bahamas:before {
5096
+ background-position: 0px -754px;
5097
+ }
5098
+
5099
+ i.flag.bt:before,
5100
+ i.flag.bhutan:before {
5101
+ background-position: 0px -780px;
5102
+ }
5103
+
5104
+ i.flag.bv:before,
5105
+ i.flag.bouvet.island:before {
5106
+ background-position: 0px -806px;
5107
+ }
5108
+
5109
+ i.flag.bw:before,
5110
+ i.flag.botswana:before {
5111
+ background-position: 0px -832px;
5112
+ }
5113
+
5114
+ i.flag.by:before,
5115
+ i.flag.belarus:before {
5116
+ background-position: 0px -858px;
5117
+ }
5118
+
5119
+ i.flag.bz:before,
5120
+ i.flag.belize:before {
5121
+ background-position: 0px -884px;
5122
+ }
5123
+
5124
+ i.flag.ca:before,
5125
+ i.flag.canada:before {
5126
+ background-position: 0px -910px;
5127
+ }
5128
+
5129
+ i.flag.cc:before,
5130
+ i.flag.cocos.islands:before {
5131
+ background-position: 0px -962px;
5132
+ }
5133
+
5134
+ i.flag.cd:before,
5135
+ i.flag.congo:before {
5136
+ background-position: 0px -988px;
5137
+ }
5138
+
5139
+ i.flag.cf:before,
5140
+ i.flag.central.african.republic:before {
5141
+ background-position: 0px -1014px;
5142
+ }
5143
+
5144
+ i.flag.cg:before,
5145
+ i.flag.congo.brazzaville:before {
5146
+ background-position: 0px -1040px;
5147
+ }
5148
+
5149
+ i.flag.ch:before,
5150
+ i.flag.switzerland:before {
5151
+ background-position: 0px -1066px;
5152
+ }
5153
+
5154
+ i.flag.ci:before,
5155
+ i.flag.cote.divoire:before {
5156
+ background-position: 0px -1092px;
5157
+ }
5158
+
5159
+ i.flag.ck:before,
5160
+ i.flag.cook.islands:before {
5161
+ background-position: 0px -1118px;
5162
+ }
5163
+
5164
+ i.flag.cl:before,
5165
+ i.flag.chile:before {
5166
+ background-position: 0px -1144px;
5167
+ }
5168
+
5169
+ i.flag.cm:before,
5170
+ i.flag.cameroon:before {
5171
+ background-position: 0px -1170px;
5172
+ }
5173
+
5174
+ i.flag.cn:before,
5175
+ i.flag.china:before {
5176
+ background-position: 0px -1196px;
5177
+ }
5178
+
5179
+ i.flag.co:before,
5180
+ i.flag.colombia:before {
5181
+ background-position: 0px -1222px;
5182
+ }
5183
+
5184
+ i.flag.cr:before,
5185
+ i.flag.costa.rica:before {
5186
+ background-position: 0px -1248px;
5187
+ }
5188
+
5189
+ i.flag.cs:before,
5190
+ i.flag.serbia:before {
5191
+ background-position: 0px -1274px;
5192
+ }
5193
+
5194
+ i.flag.cu:before,
5195
+ i.flag.cuba:before {
5196
+ background-position: 0px -1300px;
5197
+ }
5198
+
5199
+ i.flag.cv:before,
5200
+ i.flag.cape.verde:before {
5201
+ background-position: 0px -1326px;
5202
+ }
5203
+
5204
+ i.flag.cx:before,
5205
+ i.flag.christmas.island:before {
5206
+ background-position: 0px -1352px;
5207
+ }
5208
+
5209
+ i.flag.cy:before,
5210
+ i.flag.cyprus:before {
5211
+ background-position: 0px -1378px;
5212
+ }
5213
+
5214
+ i.flag.cz:before,
5215
+ i.flag.czech.republic:before {
5216
+ background-position: 0px -1404px;
5217
+ }
5218
+
5219
+ i.flag.de:before,
5220
+ i.flag.germany:before {
5221
+ background-position: 0px -1430px;
5222
+ }
5223
+
5224
+ i.flag.dj:before,
5225
+ i.flag.djibouti:before {
5226
+ background-position: 0px -1456px;
5227
+ }
5228
+
5229
+ i.flag.dk:before,
5230
+ i.flag.denmark:before {
5231
+ background-position: 0px -1482px;
5232
+ }
5233
+
5234
+ i.flag.dm:before,
5235
+ i.flag.dominica:before {
5236
+ background-position: 0px -1508px;
5237
+ }
5238
+
5239
+ i.flag.do:before,
5240
+ i.flag.dominican.republic:before {
5241
+ background-position: 0px -1534px;
5242
+ }
5243
+
5244
+ i.flag.dz:before,
5245
+ i.flag.algeria:before {
5246
+ background-position: 0px -1560px;
5247
+ }
5248
+
5249
+ i.flag.ec:before,
5250
+ i.flag.ecuador:before {
5251
+ background-position: 0px -1586px;
5252
+ }
5253
+
5254
+ i.flag.ee:before,
5255
+ i.flag.estonia:before {
5256
+ background-position: 0px -1612px;
5257
+ }
5258
+
5259
+ i.flag.eg:before,
5260
+ i.flag.egypt:before {
5261
+ background-position: 0px -1638px;
5262
+ }
5263
+
5264
+ i.flag.eh:before,
5265
+ i.flag.western.sahara:before {
5266
+ background-position: 0px -1664px;
5267
+ }
5268
+
5269
+ i.flag.er:before,
5270
+ i.flag.eritrea:before {
5271
+ background-position: 0px -1716px;
5272
+ }
5273
+
5274
+ i.flag.es:before,
5275
+ i.flag.spain:before {
5276
+ background-position: 0px -1742px;
5277
+ }
5278
+
5279
+ i.flag.et:before,
5280
+ i.flag.ethiopia:before {
5281
+ background-position: 0px -1768px;
5282
+ }
5283
+
5284
+ i.flag.eu:before,
5285
+ i.flag.european.union:before {
5286
+ background-position: 0px -1794px;
5287
+ }
5288
+
5289
+ i.flag.fi:before,
5290
+ i.flag.finland:before {
5291
+ background-position: 0px -1846px;
5292
+ }
5293
+
5294
+ i.flag.fj:before,
5295
+ i.flag.fiji:before {
5296
+ background-position: 0px -1872px;
5297
+ }
5298
+
5299
+ i.flag.fk:before,
5300
+ i.flag.falkland.islands:before {
5301
+ background-position: 0px -1898px;
5302
+ }
5303
+
5304
+ i.flag.fm:before,
5305
+ i.flag.micronesia:before {
5306
+ background-position: 0px -1924px;
5307
+ }
5308
+
5309
+ i.flag.fo:before,
5310
+ i.flag.faroe.islands:before {
5311
+ background-position: 0px -1950px;
5312
+ }
5313
+
5314
+ i.flag.fr:before,
5315
+ i.flag.france:before {
5316
+ background-position: 0px -1976px;
5317
+ }
5318
+
5319
+ i.flag.ga:before,
5320
+ i.flag.gabon:before {
5321
+ background-position: -36px 0px;
5322
+ }
5323
+
5324
+ i.flag.gb:before,
5325
+ i.flag.united.kingdom:before {
5326
+ background-position: -36px -26px;
5327
+ }
5328
+
5329
+ i.flag.gd:before,
5330
+ i.flag.grenada:before {
5331
+ background-position: -36px -52px;
5332
+ }
5333
+
5334
+ i.flag.ge:before,
5335
+ i.flag.georgia:before {
5336
+ background-position: -36px -78px;
5337
+ }
5338
+
5339
+ i.flag.gf:before,
5340
+ i.flag.french.guiana:before {
5341
+ background-position: -36px -104px;
5342
+ }
5343
+
5344
+ i.flag.gh:before,
5345
+ i.flag.ghana:before {
5346
+ background-position: -36px -130px;
5347
+ }
5348
+
5349
+ i.flag.gi:before,
5350
+ i.flag.gibraltar:before {
5351
+ background-position: -36px -156px;
5352
+ }
5353
+
5354
+ i.flag.gl:before,
5355
+ i.flag.greenland:before {
5356
+ background-position: -36px -182px;
5357
+ }
5358
+
5359
+ i.flag.gm:before,
5360
+ i.flag.gambia:before {
5361
+ background-position: -36px -208px;
5362
+ }
5363
+
5364
+ i.flag.gn:before,
5365
+ i.flag.guinea:before {
5366
+ background-position: -36px -234px;
5367
+ }
5368
+
5369
+ i.flag.gp:before,
5370
+ i.flag.guadeloupe:before {
5371
+ background-position: -36px -260px;
5372
+ }
5373
+
5374
+ i.flag.gq:before,
5375
+ i.flag.equatorial.guinea:before {
5376
+ background-position: -36px -286px;
5377
+ }
5378
+
5379
+ i.flag.gr:before,
5380
+ i.flag.greece:before {
5381
+ background-position: -36px -312px;
5382
+ }
5383
+
5384
+ i.flag.gs:before,
5385
+ i.flag.sandwich.islands:before {
5386
+ background-position: -36px -338px;
5387
+ }
5388
+
5389
+ i.flag.gt:before,
5390
+ i.flag.guatemala:before {
5391
+ background-position: -36px -364px;
5392
+ }
5393
+
5394
+ i.flag.gu:before,
5395
+ i.flag.guam:before {
5396
+ background-position: -36px -390px;
5397
+ }
5398
+
5399
+ i.flag.gw:before,
5400
+ i.flag.guinea-bissau:before {
5401
+ background-position: -36px -416px;
5402
+ }
5403
+
5404
+ i.flag.gy:before,
5405
+ i.flag.guyana:before {
5406
+ background-position: -36px -442px;
5407
+ }
5408
+
5409
+ i.flag.hk:before,
5410
+ i.flag.hong.kong:before {
5411
+ background-position: -36px -468px;
5412
+ }
5413
+
5414
+ i.flag.hm:before,
5415
+ i.flag.heard.island:before {
5416
+ background-position: -36px -494px;
5417
+ }
5418
+
5419
+ i.flag.hn:before,
5420
+ i.flag.honduras:before {
5421
+ background-position: -36px -520px;
5422
+ }
5423
+
5424
+ i.flag.hr:before,
5425
+ i.flag.croatia:before {
5426
+ background-position: -36px -546px;
5427
+ }
5428
+
5429
+ i.flag.ht:before,
5430
+ i.flag.haiti:before {
5431
+ background-position: -36px -572px;
5432
+ }
5433
+
5434
+ i.flag.hu:before,
5435
+ i.flag.hungary:before {
5436
+ background-position: -36px -598px;
5437
+ }
5438
+
5439
+ i.flag.id:before,
5440
+ i.flag.indonesia:before {
5441
+ background-position: -36px -624px;
5442
+ }
5443
+
5444
+ i.flag.ie:before,
5445
+ i.flag.ireland:before {
5446
+ background-position: -36px -650px;
5447
+ }
5448
+
5449
+ i.flag.il:before,
5450
+ i.flag.israel:before {
5451
+ background-position: -36px -676px;
5452
+ }
5453
+
5454
+ i.flag.in:before,
5455
+ i.flag.india:before {
5456
+ background-position: -36px -702px;
5457
+ }
5458
+
5459
+ i.flag.io:before,
5460
+ i.flag.indian.ocean.territory:before {
5461
+ background-position: -36px -728px;
5462
+ }
5463
+
5464
+ i.flag.iq:before,
5465
+ i.flag.iraq:before {
5466
+ background-position: -36px -754px;
5467
+ }
5468
+
5469
+ i.flag.ir:before,
5470
+ i.flag.iran:before {
5471
+ background-position: -36px -780px;
5472
+ }
5473
+
5474
+ i.flag.is:before,
5475
+ i.flag.iceland:before {
5476
+ background-position: -36px -806px;
5477
+ }
5478
+
5479
+ i.flag.it:before,
5480
+ i.flag.italy:before {
5481
+ background-position: -36px -832px;
5482
+ }
5483
+
5484
+ i.flag.jm:before,
5485
+ i.flag.jamaica:before {
5486
+ background-position: -36px -858px;
5487
+ }
5488
+
5489
+ i.flag.jo:before,
5490
+ i.flag.jordan:before {
5491
+ background-position: -36px -884px;
5492
+ }
5493
+
5494
+ i.flag.jp:before,
5495
+ i.flag.japan:before {
5496
+ background-position: -36px -910px;
5497
+ }
5498
+
5499
+ i.flag.ke:before,
5500
+ i.flag.kenya:before {
5501
+ background-position: -36px -936px;
5502
+ }
5503
+
5504
+ i.flag.kg:before,
5505
+ i.flag.kyrgyzstan:before {
5506
+ background-position: -36px -962px;
5507
+ }
5508
+
5509
+ i.flag.kh:before,
5510
+ i.flag.cambodia:before {
5511
+ background-position: -36px -988px;
5512
+ }
5513
+
5514
+ i.flag.ki:before,
5515
+ i.flag.kiribati:before {
5516
+ background-position: -36px -1014px;
5517
+ }
5518
+
5519
+ i.flag.km:before,
5520
+ i.flag.comoros:before {
5521
+ background-position: -36px -1040px;
5522
+ }
5523
+
5524
+ i.flag.kn:before,
5525
+ i.flag.saint.kitts.and.nevis:before {
5526
+ background-position: -36px -1066px;
5527
+ }
5528
+
5529
+ i.flag.kp:before,
5530
+ i.flag.north.korea:before {
5531
+ background-position: -36px -1092px;
5532
+ }
5533
+
5534
+ i.flag.kr:before,
5535
+ i.flag.south.korea:before {
5536
+ background-position: -36px -1118px;
5537
+ }
5538
+
5539
+ i.flag.kw:before,
5540
+ i.flag.kuwait:before {
5541
+ background-position: -36px -1144px;
5542
+ }
5543
+
5544
+ i.flag.ky:before,
5545
+ i.flag.cayman.islands:before {
5546
+ background-position: -36px -1170px;
5547
+ }
5548
+
5549
+ i.flag.kz:before,
5550
+ i.flag.kazakhstan:before {
5551
+ background-position: -36px -1196px;
5552
+ }
5553
+
5554
+ i.flag.la:before,
5555
+ i.flag.laos:before {
5556
+ background-position: -36px -1222px;
5557
+ }
5558
+
5559
+ i.flag.lb:before,
5560
+ i.flag.lebanon:before {
5561
+ background-position: -36px -1248px;
5562
+ }
5563
+
5564
+ i.flag.lc:before,
5565
+ i.flag.saint.lucia:before {
5566
+ background-position: -36px -1274px;
5567
+ }
5568
+
5569
+ i.flag.li:before,
5570
+ i.flag.liechtenstein:before {
5571
+ background-position: -36px -1300px;
5572
+ }
5573
+
5574
+ i.flag.lk:before,
5575
+ i.flag.sri.lanka:before {
5576
+ background-position: -36px -1326px;
5577
+ }
5578
+
5579
+ i.flag.lr:before,
5580
+ i.flag.liberia:before {
5581
+ background-position: -36px -1352px;
5582
+ }
5583
+
5584
+ i.flag.ls:before,
5585
+ i.flag.lesotho:before {
5586
+ background-position: -36px -1378px;
5587
+ }
5588
+
5589
+ i.flag.lt:before,
5590
+ i.flag.lithuania:before {
5591
+ background-position: -36px -1404px;
5592
+ }
5593
+
5594
+ i.flag.lu:before,
5595
+ i.flag.luxembourg:before {
5596
+ background-position: -36px -1430px;
5597
+ }
5598
+
5599
+ i.flag.lv:before,
5600
+ i.flag.latvia:before {
5601
+ background-position: -36px -1456px;
5602
+ }
5603
+
5604
+ i.flag.ly:before,
5605
+ i.flag.libya:before {
5606
+ background-position: -36px -1482px;
5607
+ }
5608
+
5609
+ i.flag.ma:before,
5610
+ i.flag.morocco:before {
5611
+ background-position: -36px -1508px;
5612
+ }
5613
+
5614
+ i.flag.mc:before,
5615
+ i.flag.monaco:before {
5616
+ background-position: -36px -1534px;
5617
+ }
5618
+
5619
+ i.flag.md:before,
5620
+ i.flag.moldova:before {
5621
+ background-position: -36px -1560px;
5622
+ }
5623
+
5624
+ i.flag.me:before,
5625
+ i.flag.montenegro:before {
5626
+ background-position: -36px -1586px;
5627
+ }
5628
+
5629
+ i.flag.mg:before,
5630
+ i.flag.madagascar:before {
5631
+ background-position: -36px -1613px;
5632
+ }
5633
+
5634
+ i.flag.mh:before,
5635
+ i.flag.marshall.islands:before {
5636
+ background-position: -36px -1639px;
5637
+ }
5638
+
5639
+ i.flag.mk:before,
5640
+ i.flag.macedonia:before {
5641
+ background-position: -36px -1665px;
5642
+ }
5643
+
5644
+ i.flag.ml:before,
5645
+ i.flag.mali:before {
5646
+ background-position: -36px -1691px;
5647
+ }
5648
+
5649
+ i.flag.mm:before,
5650
+ i.flag.myanmar:before,
5651
+ i.flag.burma:before {
5652
+ background-position: -36px -1717px;
5653
+ }
5654
+
5655
+ i.flag.mn:before,
5656
+ i.flag.mongolia:before {
5657
+ background-position: -36px -1743px;
5658
+ }
5659
+
5660
+ i.flag.mo:before,
5661
+ i.flag.macau:before {
5662
+ background-position: -36px -1769px;
5663
+ }
5664
+
5665
+ i.flag.mp:before,
5666
+ i.flag.northern.mariana.islands:before {
5667
+ background-position: -36px -1795px;
5668
+ }
5669
+
5670
+ i.flag.mq:before,
5671
+ i.flag.martinique:before {
5672
+ background-position: -36px -1821px;
5673
+ }
5674
+
5675
+ i.flag.mr:before,
5676
+ i.flag.mauritania:before {
5677
+ background-position: -36px -1847px;
5678
+ }
5679
+
5680
+ i.flag.ms:before,
5681
+ i.flag.montserrat:before {
5682
+ background-position: -36px -1873px;
5683
+ }
5684
+
5685
+ i.flag.mt:before,
5686
+ i.flag.malta:before {
5687
+ background-position: -36px -1899px;
5688
+ }
5689
+
5690
+ i.flag.mu:before,
5691
+ i.flag.mauritius:before {
5692
+ background-position: -36px -1925px;
5693
+ }
5694
+
5695
+ i.flag.mv:before,
5696
+ i.flag.maldives:before {
5697
+ background-position: -36px -1951px;
5698
+ }
5699
+
5700
+ i.flag.mw:before,
5701
+ i.flag.malawi:before {
5702
+ background-position: -36px -1977px;
5703
+ }
5704
+
5705
+ i.flag.mx:before,
5706
+ i.flag.mexico:before {
5707
+ background-position: -72px 0px;
5708
+ }
5709
+
5710
+ i.flag.my:before,
5711
+ i.flag.malaysia:before {
5712
+ background-position: -72px -26px;
5713
+ }
5714
+
5715
+ i.flag.mz:before,
5716
+ i.flag.mozambique:before {
5717
+ background-position: -72px -52px;
5718
+ }
5719
+
5720
+ i.flag.na:before,
5721
+ i.flag.namibia:before {
5722
+ background-position: -72px -78px;
5723
+ }
5724
+
5725
+ i.flag.nc:before,
5726
+ i.flag.new.caledonia:before {
5727
+ background-position: -72px -104px;
5728
+ }
5729
+
5730
+ i.flag.ne:before,
5731
+ i.flag.niger:before {
5732
+ background-position: -72px -130px;
5733
+ }
5734
+
5735
+ i.flag.nf:before,
5736
+ i.flag.norfolk.island:before {
5737
+ background-position: -72px -156px;
5738
+ }
5739
+
5740
+ i.flag.ng:before,
5741
+ i.flag.nigeria:before {
5742
+ background-position: -72px -182px;
5743
+ }
5744
+
5745
+ i.flag.ni:before,
5746
+ i.flag.nicaragua:before {
5747
+ background-position: -72px -208px;
5748
+ }
5749
+
5750
+ i.flag.nl:before,
5751
+ i.flag.netherlands:before {
5752
+ background-position: -72px -234px;
5753
+ }
5754
+
5755
+ i.flag.no:before,
5756
+ i.flag.norway:before {
5757
+ background-position: -72px -260px;
5758
+ }
5759
+
5760
+ i.flag.np:before,
5761
+ i.flag.nepal:before {
5762
+ background-position: -72px -286px;
5763
+ }
5764
+
5765
+ i.flag.nr:before,
5766
+ i.flag.nauru:before {
5767
+ background-position: -72px -312px;
5768
+ }
5769
+
5770
+ i.flag.nu:before,
5771
+ i.flag.niue:before {
5772
+ background-position: -72px -338px;
5773
+ }
5774
+
5775
+ i.flag.nz:before,
5776
+ i.flag.new.zealand:before {
5777
+ background-position: -72px -364px;
5778
+ }
5779
+
5780
+ i.flag.om:before,
5781
+ i.flag.oman:before {
5782
+ background-position: -72px -390px;
5783
+ }
5784
+
5785
+ i.flag.pa:before,
5786
+ i.flag.panama:before {
5787
+ background-position: -72px -416px;
5788
+ }
5789
+
5790
+ i.flag.pe:before,
5791
+ i.flag.peru:before {
5792
+ background-position: -72px -442px;
5793
+ }
5794
+
5795
+ i.flag.pf:before,
5796
+ i.flag.french.polynesia:before {
5797
+ background-position: -72px -468px;
5798
+ }
5799
+
5800
+ i.flag.pg:before,
5801
+ i.flag.new.guinea:before {
5802
+ background-position: -72px -494px;
5803
+ }
5804
+
5805
+ i.flag.ph:before,
5806
+ i.flag.philippines:before {
5807
+ background-position: -72px -520px;
5808
+ }
5809
+
5810
+ i.flag.pk:before,
5811
+ i.flag.pakistan:before {
5812
+ background-position: -72px -546px;
5813
+ }
5814
+
5815
+ i.flag.pl:before,
5816
+ i.flag.poland:before {
5817
+ background-position: -72px -572px;
5818
+ }
5819
+
5820
+ i.flag.pm:before,
5821
+ i.flag.saint.pierre:before {
5822
+ background-position: -72px -598px;
5823
+ }
5824
+
5825
+ i.flag.pn:before,
5826
+ i.flag.pitcairn.islands:before {
5827
+ background-position: -72px -624px;
5828
+ }
5829
+
5830
+ i.flag.pr:before,
5831
+ i.flag.puerto.rico:before {
5832
+ background-position: -72px -650px;
5833
+ }
5834
+
5835
+ i.flag.ps:before,
5836
+ i.flag.palestine:before {
5837
+ background-position: -72px -676px;
5838
+ }
5839
+
5840
+ i.flag.pt:before,
5841
+ i.flag.portugal:before {
5842
+ background-position: -72px -702px;
5843
+ }
5844
+
5845
+ i.flag.pw:before,
5846
+ i.flag.palau:before {
5847
+ background-position: -72px -728px;
5848
+ }
5849
+
5850
+ i.flag.py:before,
5851
+ i.flag.paraguay:before {
5852
+ background-position: -72px -754px;
5853
+ }
5854
+
5855
+ i.flag.qa:before,
5856
+ i.flag.qatar:before {
5857
+ background-position: -72px -780px;
5858
+ }
5859
+
5860
+ i.flag.re:before,
5861
+ i.flag.reunion:before {
5862
+ background-position: -72px -806px;
5863
+ }
5864
+
5865
+ i.flag.ro:before,
5866
+ i.flag.romania:before {
5867
+ background-position: -72px -832px;
5868
+ }
5869
+
5870
+ i.flag.rs:before,
5871
+ i.flag.serbia:before {
5872
+ background-position: -72px -858px;
5873
+ }
5874
+
5875
+ i.flag.ru:before,
5876
+ i.flag.russia:before {
5877
+ background-position: -72px -884px;
5878
+ }
5879
+
5880
+ i.flag.rw:before,
5881
+ i.flag.rwanda:before {
5882
+ background-position: -72px -910px;
5883
+ }
5884
+
5885
+ i.flag.sa:before,
5886
+ i.flag.saudi.arabia:before {
5887
+ background-position: -72px -936px;
5888
+ }
5889
+
5890
+ i.flag.sb:before,
5891
+ i.flag.solomon.islands:before {
5892
+ background-position: -72px -962px;
5893
+ }
5894
+
5895
+ i.flag.sc:before,
5896
+ i.flag.seychelles:before {
5897
+ background-position: -72px -988px;
5898
+ }
5899
+
5900
+ i.flag.gb.sct:before,
5901
+ i.flag.scotland:before {
5902
+ background-position: -72px -1014px;
5903
+ }
5904
+
5905
+ i.flag.sd:before,
5906
+ i.flag.sudan:before {
5907
+ background-position: -72px -1040px;
5908
+ }
5909
+
5910
+ i.flag.se:before,
5911
+ i.flag.sweden:before {
5912
+ background-position: -72px -1066px;
5913
+ }
5914
+
5915
+ i.flag.sg:before,
5916
+ i.flag.singapore:before {
5917
+ background-position: -72px -1092px;
5918
+ }
5919
+
5920
+ i.flag.sh:before,
5921
+ i.flag.saint.helena:before {
5922
+ background-position: -72px -1118px;
5923
+ }
5924
+
5925
+ i.flag.si:before,
5926
+ i.flag.slovenia:before {
5927
+ background-position: -72px -1144px;
5928
+ }
5929
+
5930
+ i.flag.sj:before,
5931
+ i.flag.svalbard:before,
5932
+ i.flag.jan.mayen:before {
5933
+ background-position: -72px -1170px;
5934
+ }
5935
+
5936
+ i.flag.sk:before,
5937
+ i.flag.slovakia:before {
5938
+ background-position: -72px -1196px;
5939
+ }
5940
+
5941
+ i.flag.sl:before,
5942
+ i.flag.sierra.leone:before {
5943
+ background-position: -72px -1222px;
5944
+ }
5945
+
5946
+ i.flag.sm:before,
5947
+ i.flag.san.marino:before {
5948
+ background-position: -72px -1248px;
5949
+ }
5950
+
5951
+ i.flag.sn:before,
5952
+ i.flag.senegal:before {
5953
+ background-position: -72px -1274px;
5954
+ }
5955
+
5956
+ i.flag.so:before,
5957
+ i.flag.somalia:before {
5958
+ background-position: -72px -1300px;
5959
+ }
5960
+
5961
+ i.flag.sr:before,
5962
+ i.flag.suriname:before {
5963
+ background-position: -72px -1326px;
5964
+ }
5965
+
5966
+ i.flag.st:before,
5967
+ i.flag.sao.tome:before {
5968
+ background-position: -72px -1352px;
5969
+ }
5970
+
5971
+ i.flag.sv:before,
5972
+ i.flag.el.salvador:before {
5973
+ background-position: -72px -1378px;
5974
+ }
5975
+
5976
+ i.flag.sy:before,
5977
+ i.flag.syria:before {
5978
+ background-position: -72px -1404px;
5979
+ }
5980
+
5981
+ i.flag.sz:before,
5982
+ i.flag.swaziland:before {
5983
+ background-position: -72px -1430px;
5984
+ }
5985
+
5986
+ i.flag.tc:before,
5987
+ i.flag.caicos.islands:before {
5988
+ background-position: -72px -1456px;
5989
+ }
5990
+
5991
+ i.flag.td:before,
5992
+ i.flag.chad:before {
5993
+ background-position: -72px -1482px;
5994
+ }
5995
+
5996
+ i.flag.tf:before,
5997
+ i.flag.french.territories:before {
5998
+ background-position: -72px -1508px;
5999
+ }
6000
+
6001
+ i.flag.tg:before,
6002
+ i.flag.togo:before {
6003
+ background-position: -72px -1534px;
6004
+ }
6005
+
6006
+ i.flag.th:before,
6007
+ i.flag.thailand:before {
6008
+ background-position: -72px -1560px;
6009
+ }
6010
+
6011
+ i.flag.tj:before,
6012
+ i.flag.tajikistan:before {
6013
+ background-position: -72px -1586px;
6014
+ }
6015
+
6016
+ i.flag.tk:before,
6017
+ i.flag.tokelau:before {
6018
+ background-position: -72px -1612px;
6019
+ }
6020
+
6021
+ i.flag.tl:before,
6022
+ i.flag.timorleste:before {
6023
+ background-position: -72px -1638px;
6024
+ }
6025
+
6026
+ i.flag.tm:before,
6027
+ i.flag.turkmenistan:before {
6028
+ background-position: -72px -1664px;
6029
+ }
6030
+
6031
+ i.flag.tn:before,
6032
+ i.flag.tunisia:before {
6033
+ background-position: -72px -1690px;
6034
+ }
6035
+
6036
+ i.flag.to:before,
6037
+ i.flag.tonga:before {
6038
+ background-position: -72px -1716px;
6039
+ }
6040
+
6041
+ i.flag.tr:before,
6042
+ i.flag.turkey:before {
6043
+ background-position: -72px -1742px;
6044
+ }
6045
+
6046
+ i.flag.tt:before,
6047
+ i.flag.trinidad:before {
6048
+ background-position: -72px -1768px;
6049
+ }
6050
+
6051
+ i.flag.tv:before,
6052
+ i.flag.tuvalu:before {
6053
+ background-position: -72px -1794px;
6054
+ }
6055
+
6056
+ i.flag.tw:before,
6057
+ i.flag.taiwan:before {
6058
+ background-position: -72px -1820px;
6059
+ }
6060
+
6061
+ i.flag.tz:before,
6062
+ i.flag.tanzania:before {
6063
+ background-position: -72px -1846px;
6064
+ }
6065
+
6066
+ i.flag.ua:before,
6067
+ i.flag.ukraine:before {
6068
+ background-position: -72px -1872px;
6069
+ }
6070
+
6071
+ i.flag.ug:before,
6072
+ i.flag.uganda:before {
6073
+ background-position: -72px -1898px;
6074
+ }
6075
+
6076
+ i.flag.um:before,
6077
+ i.flag.us.minor.islands:before {
6078
+ background-position: -72px -1924px;
6079
+ }
6080
+
6081
+ i.flag.us:before,
6082
+ i.flag.america:before,
6083
+ i.flag.united.states:before {
6084
+ background-position: -72px -1950px;
6085
+ }
6086
+
6087
+ i.flag.uy:before,
6088
+ i.flag.uruguay:before {
6089
+ background-position: -72px -1976px;
6090
+ }
6091
+
6092
+ i.flag.uz:before,
6093
+ i.flag.uzbekistan:before {
6094
+ background-position: -108px 0px;
6095
+ }
6096
+
6097
+ i.flag.va:before,
6098
+ i.flag.vatican.city:before {
6099
+ background-position: -108px -26px;
6100
+ }
6101
+
6102
+ i.flag.vc:before,
6103
+ i.flag.saint.vincent:before {
6104
+ background-position: -108px -52px;
6105
+ }
6106
+
6107
+ i.flag.ve:before,
6108
+ i.flag.venezuela:before {
6109
+ background-position: -108px -78px;
6110
+ }
6111
+
6112
+ i.flag.vg:before,
6113
+ i.flag.british.virgin.islands:before {
6114
+ background-position: -108px -104px;
6115
+ }
6116
+
6117
+ i.flag.vi:before,
6118
+ i.flag.us.virgin.islands:before {
6119
+ background-position: -108px -130px;
6120
+ }
6121
+
6122
+ i.flag.vn:before,
6123
+ i.flag.vietnam:before {
6124
+ background-position: -108px -156px;
6125
+ }
6126
+
6127
+ i.flag.vu:before,
6128
+ i.flag.vanuatu:before {
6129
+ background-position: -108px -182px;
6130
+ }
6131
+
6132
+ i.flag.gb.wls:before,
6133
+ i.flag.wales:before {
6134
+ background-position: -108px -208px;
6135
+ }
6136
+
6137
+ i.flag.wf:before,
6138
+ i.flag.wallis.and.futuna:before {
6139
+ background-position: -108px -234px;
6140
+ }
6141
+
6142
+ i.flag.ws:before,
6143
+ i.flag.samoa:before {
6144
+ background-position: -108px -260px;
6145
+ }
6146
+
6147
+ i.flag.ye:before,
6148
+ i.flag.yemen:before {
6149
+ background-position: -108px -286px;
6150
+ }
6151
+
6152
+ i.flag.yt:before,
6153
+ i.flag.mayotte:before {
6154
+ background-position: -108px -312px;
6155
+ }
6156
+
6157
+ i.flag.za:before,
6158
+ i.flag.south.africa:before {
6159
+ background-position: -108px -338px;
6160
+ }
6161
+
6162
+ i.flag.zm:before,
6163
+ i.flag.zambia:before {
6164
+ background-position: -108px -364px;
6165
+ }
6166
+
6167
+ i.flag.zw:before,
6168
+ i.flag.zimbabwe:before {
6169
+ background-position: -108px -390px;
6170
+ }
6171
+
6172
+ /*******************************
6173
+ Site Overrides
6174
+ *******************************/
6175
+ /*!
6176
+ * # Semantic UI 2.1.7 - Header
6177
+ * http://github.com/semantic-org/semantic-ui/
6178
+ *
6179
+ *
6180
+ * Copyright 2015 Contributors
6181
+ * Released under the MIT license
6182
+ * http://opensource.org/licenses/MIT
6183
+ *
6184
+ */
6185
+
6186
+ /*******************************
6187
+ Header
6188
+ *******************************/
6189
+
6190
+ /* Standard */
6191
+
6192
+ .ui.header {
6193
+ border: none;
6194
+ margin: calc(2rem - 0.14285em ) 0em 1rem;
6195
+ padding: 0em 0em;
6196
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
6197
+ font-weight: bold;
6198
+ line-height: 1.2857em;
6199
+ text-transform: none;
6200
+ color: rgba(0, 0, 0, 0.87);
6201
+ }
6202
+
6203
+ .ui.header:first-child {
6204
+ margin-top: -0.14285em;
6205
+ }
6206
+
6207
+ .ui.header:last-child {
6208
+ margin-bottom: 0em;
6209
+ }
6210
+
6211
+ /*--------------
6212
+ Sub Header
6213
+ ---------------*/
6214
+
6215
+ .ui.header .sub.header {
6216
+ display: block;
6217
+ font-weight: normal;
6218
+ padding: 0em;
6219
+ margin: 0em;
6220
+ font-size: 1rem;
6221
+ line-height: 1.2em;
6222
+ color: rgba(0, 0, 0, 0.6);
6223
+ }
6224
+
6225
+ /*--------------
6226
+ Icon
6227
+ ---------------*/
6228
+
6229
+ .ui.header > .icon {
6230
+ display: table-cell;
6231
+ opacity: 1;
6232
+ font-size: 1.5em;
6233
+ padding-top: 0.14285em;
6234
+ vertical-align: middle;
6235
+ }
6236
+
6237
+ /* With Text Node */
6238
+
6239
+ .ui.header .icon:only-child {
6240
+ display: inline-block;
6241
+ padding: 0em;
6242
+ margin-right: 0.75rem;
6243
+ }
6244
+
6245
+ /*-------------------
6246
+ Image
6247
+ --------------------*/
6248
+
6249
+ .ui.header > .image,
6250
+ .ui.header > img {
6251
+ display: inline-block;
6252
+ margin-top: 0.14285em;
6253
+ width: 2.5em;
6254
+ height: auto;
6255
+ vertical-align: middle;
6256
+ }
6257
+
6258
+ .ui.header > .image:only-child,
6259
+ .ui.header > img:only-child {
6260
+ margin-right: 0.75rem;
6261
+ }
6262
+
6263
+ /*--------------
6264
+ Content
6265
+ ---------------*/
6266
+
6267
+ .ui.header .content {
6268
+ display: inline-block;
6269
+ vertical-align: top;
6270
+ }
6271
+
6272
+ /* After Image */
6273
+
6274
+ .ui.header > img + .content,
6275
+ .ui.header > .image + .content {
6276
+ padding-left: 0.75rem;
6277
+ vertical-align: middle;
6278
+ }
6279
+
6280
+ /* After Icon */
6281
+
6282
+ .ui.header > .icon + .content {
6283
+ padding-left: 0.75rem;
6284
+ display: table-cell;
6285
+ vertical-align: middle;
6286
+ }
6287
+
6288
+ /*--------------
6289
+ Loose Coupling
6290
+ ---------------*/
6291
+
6292
+ .ui.header .ui.label {
6293
+ font-size: '';
6294
+ margin-left: 0.5rem;
6295
+ vertical-align: middle;
6296
+ }
6297
+
6298
+ /* Positioning */
6299
+
6300
+ .ui.header + p {
6301
+ margin-top: 0em;
6302
+ }
6303
+
6304
+ /*******************************
6305
+ Types
6306
+ *******************************/
6307
+
6308
+ /*--------------
6309
+ Page
6310
+ ---------------*/
6311
+
6312
+ h1.ui.header {
6313
+ font-size: 2rem;
6314
+ }
6315
+
6316
+ h2.ui.header {
6317
+ font-size: 1.714rem;
6318
+ }
6319
+
6320
+ h3.ui.header {
6321
+ font-size: 1.28rem;
6322
+ }
6323
+
6324
+ h4.ui.header {
6325
+ font-size: 1.071rem;
6326
+ }
6327
+
6328
+ h5.ui.header {
6329
+ font-size: 1rem;
6330
+ }
6331
+
6332
+ /* Sub Header */
6333
+
6334
+ h1.ui.header .sub.header {
6335
+ font-size: 1.14285714rem;
6336
+ }
6337
+
6338
+ h2.ui.header .sub.header {
6339
+ font-size: 1.14285714rem;
6340
+ }
6341
+
6342
+ h3.ui.header .sub.header {
6343
+ font-size: 1rem;
6344
+ }
6345
+
6346
+ h4.ui.header .sub.header {
6347
+ font-size: 1rem;
6348
+ }
6349
+
6350
+ h5.ui.header .sub.header {
6351
+ font-size: 0.92857143rem;
6352
+ }
6353
+
6354
+ /*--------------
6355
+ Content Heading
6356
+ ---------------*/
6357
+
6358
+ .ui.huge.header {
6359
+ min-height: 1em;
6360
+ font-size: 2em;
6361
+ }
6362
+
6363
+ .ui.large.header {
6364
+ font-size: 1.714em;
6365
+ }
6366
+
6367
+ .ui.medium.header {
6368
+ font-size: 1.28em;
6369
+ }
6370
+
6371
+ .ui.small.header {
6372
+ font-size: 1.071em;
6373
+ }
6374
+
6375
+ .ui.tiny.header {
6376
+ font-size: 1em;
6377
+ }
6378
+
6379
+ /* Sub Header */
6380
+
6381
+ .ui.huge.header .sub.header {
6382
+ font-size: 1.14285714rem;
6383
+ }
6384
+
6385
+ .ui.large.header .sub.header {
6386
+ font-size: 1.14285714rem;
6387
+ }
6388
+
6389
+ .ui.header .sub.header {
6390
+ font-size: 1rem;
6391
+ }
6392
+
6393
+ .ui.small.header .sub.header {
6394
+ font-size: 1rem;
6395
+ }
6396
+
6397
+ .ui.tiny.header .sub.header {
6398
+ font-size: 0.92857143rem;
6399
+ }
6400
+
6401
+ /*--------------
6402
+ Sub Heading
6403
+ ---------------*/
6404
+
6405
+ .ui.sub.header {
6406
+ padding: 0em;
6407
+ margin-bottom: 0.14285714rem;
6408
+ font-weight: bold;
6409
+ font-size: 0.85714286em;
6410
+ text-transform: uppercase;
6411
+ color: '';
6412
+ }
6413
+
6414
+ .ui.small.sub.header {
6415
+ font-size: 0.71428571em;
6416
+ }
6417
+
6418
+ .ui.sub.header {
6419
+ font-size: 0.85714286em;
6420
+ }
6421
+
6422
+ .ui.large.sub.header {
6423
+ font-size: 0.92857143em;
6424
+ }
6425
+
6426
+ .ui.huge.sub.header {
6427
+ font-size: 1em;
6428
+ }
6429
+
6430
+ /*-------------------
6431
+ Icon
6432
+ --------------------*/
6433
+
6434
+ .ui.icon.header {
6435
+ display: inline-block;
6436
+ text-align: center;
6437
+ margin: 2rem 0em 1rem;
6438
+ }
6439
+
6440
+ .ui.icon.header:after {
6441
+ content: '';
6442
+ display: block;
6443
+ height: 0px;
6444
+ clear: both;
6445
+ visibility: hidden;
6446
+ }
6447
+
6448
+ .ui.icon.header:first-child {
6449
+ margin-top: 0em;
6450
+ }
6451
+
6452
+ .ui.icon.header .icon {
6453
+ float: none;
6454
+ display: block;
6455
+ width: auto;
6456
+ height: auto;
6457
+ line-height: 1;
6458
+ padding: 0em;
6459
+ font-size: 3em;
6460
+ margin: 0em auto 0.5rem;
6461
+ opacity: 1;
6462
+ }
6463
+
6464
+ .ui.icon.header .content {
6465
+ display: block;
6466
+ }
6467
+
6468
+ .ui.icon.header .circular.icon {
6469
+ font-size: 2em;
6470
+ }
6471
+
6472
+ .ui.icon.header .square.icon {
6473
+ font-size: 2em;
6474
+ }
6475
+
6476
+ .ui.block.icon.header .icon {
6477
+ margin-bottom: 0em;
6478
+ }
6479
+
6480
+ .ui.icon.header.aligned {
6481
+ margin-left: auto;
6482
+ margin-right: auto;
6483
+ display: block;
6484
+ }
6485
+
6486
+ /*******************************
6487
+ States
6488
+ *******************************/
6489
+
6490
+ .ui.disabled.header {
6491
+ opacity: 0.45;
6492
+ }
6493
+
6494
+ /*******************************
6495
+ Variations
6496
+ *******************************/
6497
+
6498
+ /*-------------------
6499
+ Inverted
6500
+ --------------------*/
6501
+
6502
+ .ui.inverted.header {
6503
+ color: #ffffff;
6504
+ }
6505
+
6506
+ .ui.inverted.header .sub.header {
6507
+ color: rgba(255, 255, 255, 0.8);
6508
+ }
6509
+
6510
+ .ui.inverted.attached.header {
6511
+ background: #545454 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
6512
+ background: #545454 linear-gradient(transparent, rgba(0, 0, 0, 0.05));
6513
+ box-shadow: none;
6514
+ border-color: transparent;
6515
+ }
6516
+
6517
+ .ui.inverted.block.header {
6518
+ background: #545454 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
6519
+ background: #545454 linear-gradient(transparent, rgba(0, 0, 0, 0.05));
6520
+ box-shadow: none;
6521
+ }
6522
+
6523
+ .ui.inverted.block.header {
6524
+ border-bottom: none;
6525
+ }
6526
+
6527
+ /*-------------------
6528
+ Colors
6529
+ --------------------*/
6530
+
6531
+ /*--- Red ---*/
6532
+
6533
+ .ui.red.header {
6534
+ color: #db2828 !important;
6535
+ }
6536
+
6537
+ a.ui.red.header:hover {
6538
+ color: #d01919 !important;
6539
+ }
6540
+
6541
+ .ui.red.dividing.header {
6542
+ border-bottom: 2px solid #db2828;
6543
+ }
6544
+
6545
+ /* Inverted */
6546
+
6547
+ .ui.inverted.red.header {
6548
+ color: #ff695e !important;
6549
+ }
6550
+
6551
+ a.ui.inverted.red.header:hover {
6552
+ color: #ff5144 !important;
6553
+ }
6554
+
6555
+ /*--- Orange ---*/
6556
+
6557
+ .ui.orange.header {
6558
+ color: #f2711c !important;
6559
+ }
6560
+
6561
+ a.ui.orange.header:hover {
6562
+ color: #f26202 !important;
6563
+ }
6564
+
6565
+ .ui.orange.dividing.header {
6566
+ border-bottom: 2px solid #f2711c;
6567
+ }
6568
+
6569
+ /* Inverted */
6570
+
6571
+ .ui.inverted.orange.header {
6572
+ color: #ff851b !important;
6573
+ }
6574
+
6575
+ a.ui.inverted.orange.header:hover {
6576
+ color: #ff7701 !important;
6577
+ }
6578
+
6579
+ /*--- Olive ---*/
6580
+
6581
+ .ui.olive.header {
6582
+ color: #b5cc18 !important;
6583
+ }
6584
+
6585
+ a.ui.olive.header:hover {
6586
+ color: #a7bd0d !important;
6587
+ }
6588
+
6589
+ .ui.olive.dividing.header {
6590
+ border-bottom: 2px solid #b5cc18;
6591
+ }
6592
+
6593
+ /* Inverted */
6594
+
6595
+ .ui.inverted.olive.header {
6596
+ color: #d9e778 !important;
6597
+ }
6598
+
6599
+ a.ui.inverted.olive.header:hover {
6600
+ color: #d8ea5c !important;
6601
+ }
6602
+
6603
+ /*--- Yellow ---*/
6604
+
6605
+ .ui.yellow.header {
6606
+ color: #fbbd08 !important;
6607
+ }
6608
+
6609
+ a.ui.yellow.header:hover {
6610
+ color: #eaae00 !important;
6611
+ }
6612
+
6613
+ .ui.yellow.dividing.header {
6614
+ border-bottom: 2px solid #fbbd08;
6615
+ }
6616
+
6617
+ /* Inverted */
6618
+
6619
+ .ui.inverted.yellow.header {
6620
+ color: #ffe21f !important;
6621
+ }
6622
+
6623
+ a.ui.inverted.yellow.header:hover {
6624
+ color: #ffdf05 !important;
6625
+ }
6626
+
6627
+ /*--- Green ---*/
6628
+
6629
+ .ui.green.header {
6630
+ color: #21ba45 !important;
6631
+ }
6632
+
6633
+ a.ui.green.header:hover {
6634
+ color: #16ab39 !important;
6635
+ }
6636
+
6637
+ .ui.green.dividing.header {
6638
+ border-bottom: 2px solid #21ba45;
6639
+ }
6640
+
6641
+ /* Inverted */
6642
+
6643
+ .ui.inverted.green.header {
6644
+ color: #2ecc40 !important;
6645
+ }
6646
+
6647
+ a.ui.inverted.green.header:hover {
6648
+ color: #22be34 !important;
6649
+ }
6650
+
6651
+ /*--- Teal ---*/
6652
+
6653
+ .ui.teal.header {
6654
+ color: #00b5ad !important;
6655
+ }
6656
+
6657
+ a.ui.teal.header:hover {
6658
+ color: #009c95 !important;
6659
+ }
6660
+
6661
+ .ui.teal.dividing.header {
6662
+ border-bottom: 2px solid #00b5ad;
6663
+ }
6664
+
6665
+ /* Inverted */
6666
+
6667
+ .ui.inverted.teal.header {
6668
+ color: #6dffff !important;
6669
+ }
6670
+
6671
+ a.ui.inverted.teal.header:hover {
6672
+ color: #54ffff !important;
6673
+ }
6674
+
6675
+ /*--- Blue ---*/
6676
+
6677
+ .ui.blue.header {
6678
+ color: #2185d0 !important;
6679
+ }
6680
+
6681
+ a.ui.blue.header:hover {
6682
+ color: #1678c2 !important;
6683
+ }
6684
+
6685
+ .ui.blue.dividing.header {
6686
+ border-bottom: 2px solid #2185d0;
6687
+ }
6688
+
6689
+ /* Inverted */
6690
+
6691
+ .ui.inverted.blue.header {
6692
+ color: #54c8ff !important;
6693
+ }
6694
+
6695
+ a.ui.inverted.blue.header:hover {
6696
+ color: #3ac0ff !important;
6697
+ }
6698
+
6699
+ /*--- Violet ---*/
6700
+
6701
+ .ui.violet.header {
6702
+ color: #6435c9 !important;
6703
+ }
6704
+
6705
+ a.ui.violet.header:hover {
6706
+ color: #5829bb !important;
6707
+ }
6708
+
6709
+ .ui.violet.dividing.header {
6710
+ border-bottom: 2px solid #6435c9;
6711
+ }
6712
+
6713
+ /* Inverted */
6714
+
6715
+ .ui.inverted.violet.header {
6716
+ color: #a291fb !important;
6717
+ }
6718
+
6719
+ a.ui.inverted.violet.header:hover {
6720
+ color: #8a73ff !important;
6721
+ }
6722
+
6723
+ /*--- Purple ---*/
6724
+
6725
+ .ui.purple.header {
6726
+ color: #a333c8 !important;
6727
+ }
6728
+
6729
+ a.ui.purple.header:hover {
6730
+ color: #9627ba !important;
6731
+ }
6732
+
6733
+ .ui.purple.dividing.header {
6734
+ border-bottom: 2px solid #a333c8;
6735
+ }
6736
+
6737
+ /* Inverted */
6738
+
6739
+ .ui.inverted.purple.header {
6740
+ color: #dc73ff !important;
6741
+ }
6742
+
6743
+ a.ui.inverted.purple.header:hover {
6744
+ color: #d65aff !important;
6745
+ }
6746
+
6747
+ /*--- Pink ---*/
6748
+
6749
+ .ui.pink.header {
6750
+ color: #e03997 !important;
6751
+ }
6752
+
6753
+ a.ui.pink.header:hover {
6754
+ color: #e61a8d !important;
6755
+ }
6756
+
6757
+ .ui.pink.dividing.header {
6758
+ border-bottom: 2px solid #e03997;
6759
+ }
6760
+
6761
+ /* Inverted */
6762
+
6763
+ .ui.inverted.pink.header {
6764
+ color: #ff8edf !important;
6765
+ }
6766
+
6767
+ a.ui.inverted.pink.header:hover {
6768
+ color: #ff74d8 !important;
6769
+ }
6770
+
6771
+ /*--- Brown ---*/
6772
+
6773
+ .ui.brown.header {
6774
+ color: #a5673f !important;
6775
+ }
6776
+
6777
+ a.ui.brown.header:hover {
6778
+ color: #975b33 !important;
6779
+ }
6780
+
6781
+ .ui.brown.dividing.header {
6782
+ border-bottom: 2px solid #a5673f;
6783
+ }
6784
+
6785
+ /* Inverted */
6786
+
6787
+ .ui.inverted.brown.header {
6788
+ color: #d67c1c !important;
6789
+ }
6790
+
6791
+ a.ui.inverted.brown.header:hover {
6792
+ color: #c86f11 !important;
6793
+ }
6794
+
6795
+ /*--- Grey ---*/
6796
+
6797
+ .ui.grey.header {
6798
+ color: #767676 !important;
6799
+ }
6800
+
6801
+ a.ui.grey.header:hover {
6802
+ color: #838383 !important;
6803
+ }
6804
+
6805
+ .ui.grey.dividing.header {
6806
+ border-bottom: 2px solid #767676;
6807
+ }
6808
+
6809
+ /* Inverted */
6810
+
6811
+ .ui.inverted.grey.header {
6812
+ color: #dcddde !important;
6813
+ }
6814
+
6815
+ a.ui.inverted.grey.header:hover {
6816
+ color: #cfd0d2 !important;
6817
+ }
6818
+
6819
+ /*-------------------
6820
+ Aligned
6821
+ --------------------*/
6822
+
6823
+ .ui.left.aligned.header {
6824
+ text-align: left;
6825
+ }
6826
+
6827
+ .ui.right.aligned.header {
6828
+ text-align: right;
6829
+ }
6830
+
6831
+ .ui.centered.header,
6832
+ .ui.center.aligned.header {
6833
+ text-align: center;
6834
+ }
6835
+
6836
+ .ui.justified.header {
6837
+ text-align: justify;
6838
+ }
6839
+
6840
+ .ui.justified.header:after {
6841
+ display: inline-block;
6842
+ content: '';
6843
+ width: 100%;
6844
+ }
6845
+
6846
+ /*-------------------
6847
+ Floated
6848
+ --------------------*/
6849
+
6850
+ .ui.floated.header,
6851
+ .ui[class*="left floated"].header {
6852
+ float: left;
6853
+ margin-top: 0em;
6854
+ margin-right: 0.5em;
6855
+ }
6856
+
6857
+ .ui[class*="right floated"].header {
6858
+ float: right;
6859
+ margin-top: 0em;
6860
+ margin-left: 0.5em;
6861
+ }
6862
+
6863
+ /*-------------------
6864
+ Fittted
6865
+ --------------------*/
6866
+
6867
+ .ui.fitted.header {
6868
+ padding: 0em;
6869
+ }
6870
+
6871
+ /*-------------------
6872
+ Dividing
6873
+ --------------------*/
6874
+
6875
+ .ui.dividing.header {
6876
+ padding-bottom: 0.21428571rem;
6877
+ border-bottom: 1px solid rgba(34, 36, 38, 0.15);
6878
+ }
6879
+
6880
+ .ui.dividing.header .sub.header {
6881
+ padding-bottom: 0.21428571rem;
6882
+ }
6883
+
6884
+ .ui.dividing.header .icon {
6885
+ margin-bottom: 0em;
6886
+ }
6887
+
6888
+ .ui.inverted.dividing.header {
6889
+ border-bottom-color: rgba(255, 255, 255, 0.1);
6890
+ }
6891
+
6892
+ /*-------------------
6893
+ Block
6894
+ --------------------*/
6895
+
6896
+ .ui.block.header {
6897
+ background: #f3f4f5;
6898
+ padding: 0.71428571rem 1rem;
6899
+ box-shadow: none;
6900
+ border: 1px solid #d4d4d5;
6901
+ border-radius: 0.28571429rem;
6902
+ }
6903
+
6904
+ .ui.tiny.block.header {
6905
+ font-size: 0.85714286rem;
6906
+ }
6907
+
6908
+ .ui.small.block.header {
6909
+ font-size: 0.92857143rem;
6910
+ }
6911
+
6912
+ .ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
6913
+ font-size: 1rem;
6914
+ }
6915
+
6916
+ .ui.large.block.header {
6917
+ font-size: 1.14285714rem;
6918
+ }
6919
+
6920
+ .ui.huge.block.header {
6921
+ font-size: 1.42857143rem;
6922
+ }
6923
+
6924
+ /*-------------------
6925
+ Attached
6926
+ --------------------*/
6927
+
6928
+ .ui.attached.header {
6929
+ background: #ffffff;
6930
+ padding: 0.71428571rem 1rem;
6931
+ margin-left: -1px;
6932
+ margin-right: -1px;
6933
+ box-shadow: none;
6934
+ border: 1px solid #d4d4d5;
6935
+ }
6936
+
6937
+ .ui.attached.block.header {
6938
+ background: #f3f4f5;
6939
+ }
6940
+
6941
+ .ui.attached:not(.top):not(.bottom).header {
6942
+ margin-top: 0em;
6943
+ margin-bottom: 0em;
6944
+ border-top: none;
6945
+ border-radius: 0em;
6946
+ }
6947
+
6948
+ .ui.top.attached.header {
6949
+ margin-bottom: 0em;
6950
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
6951
+ }
6952
+
6953
+ .ui.bottom.attached.header {
6954
+ margin-top: 0em;
6955
+ border-top: none;
6956
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
6957
+ }
6958
+
6959
+ /* Attached Sizes */
6960
+
6961
+ .ui.tiny.attached.header {
6962
+ font-size: 0.85714286em;
6963
+ }
6964
+
6965
+ .ui.small.attached.header {
6966
+ font-size: 0.92857143em;
6967
+ }
6968
+
6969
+ .ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
6970
+ font-size: 1em;
6971
+ }
6972
+
6973
+ .ui.large.attached.header {
6974
+ font-size: 1.14285714em;
6975
+ }
6976
+
6977
+ .ui.huge.attached.header {
6978
+ font-size: 1.42857143em;
6979
+ }
6980
+
6981
+ /*-------------------
6982
+ Sizing
6983
+ --------------------*/
6984
+
6985
+ .ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
6986
+ font-size: 1.28em;
6987
+ }
6988
+
6989
+ /*******************************
6990
+ Theme Overrides
6991
+ *******************************/
6992
+
6993
+ /*******************************
6994
+ Site Overrides
6995
+ *******************************/
6996
+ /*!
6997
+ * # Semantic UI 2.1.7 - Icon
6998
+ * http://github.com/semantic-org/semantic-ui/
6999
+ *
7000
+ *
7001
+ * Copyright 2015 Contributors
7002
+ * Released under the MIT license
7003
+ * http://opensource.org/licenses/MIT
7004
+ *
7005
+ */
7006
+
7007
+ /*******************************
7008
+ Icon
7009
+ *******************************/
7010
+
7011
+ @font-face {
7012
+ font-family: 'Icons';
7013
+ src: url("fonts/icons.eot");
7014
+ src: url("fonts/icons.eot?#iefix") format('embedded-opentype'), url("fonts/icons.woff2") format('woff2'), url("fonts/icons.woff") format('woff'), url("fonts/icons.ttf") format('truetype'), url("fonts/icons.svg#icons") format('svg');
7015
+ font-style: normal;
7016
+ font-weight: normal;
7017
+ font-variant: normal;
7018
+ text-decoration: inherit;
7019
+ text-transform: none;
7020
+ }
7021
+
7022
+ i.icon {
7023
+ display: inline-block;
7024
+ opacity: 1;
7025
+ margin: 0em 0.25rem 0em 0em;
7026
+ width: 1.18em;
7027
+ height: 1em;
7028
+ font-family: 'Icons';
7029
+ font-style: normal;
7030
+ font-weight: normal;
7031
+ text-decoration: inherit;
7032
+ text-align: center;
7033
+ speak: none;
7034
+ font-smoothing: antialiased;
7035
+ -moz-osx-font-smoothing: grayscale;
7036
+ -webkit-font-smoothing: antialiased;
7037
+ -webkit-backface-visibility: hidden;
7038
+ backface-visibility: hidden;
7039
+ }
7040
+
7041
+ i.icon:before {
7042
+ background: none !important;
7043
+ }
7044
+
7045
+ /*******************************
7046
+ Types
7047
+ *******************************/
7048
+
7049
+ /*--------------
7050
+ Loading
7051
+ ---------------*/
7052
+
7053
+ i.icon.loading {
7054
+ height: 1em;
7055
+ line-height: 1;
7056
+ -webkit-animation: icon-loading 2s linear infinite;
7057
+ animation: icon-loading 2s linear infinite;
7058
+ }
7059
+
7060
+ @-webkit-keyframes icon-loading {
7061
+ from {
7062
+ -webkit-transform: rotate(0deg);
7063
+ transform: rotate(0deg);
7064
+ }
7065
+
7066
+ to {
7067
+ -webkit-transform: rotate(360deg);
7068
+ transform: rotate(360deg);
7069
+ }
7070
+ }
7071
+
7072
+ @keyframes icon-loading {
7073
+ from {
7074
+ -webkit-transform: rotate(0deg);
7075
+ transform: rotate(0deg);
7076
+ }
7077
+
7078
+ to {
7079
+ -webkit-transform: rotate(360deg);
7080
+ transform: rotate(360deg);
7081
+ }
7082
+ }
7083
+
7084
+ /*******************************
7085
+ States
7086
+ *******************************/
7087
+
7088
+ i.icon.hover {
7089
+ opacity: 1 !important;
7090
+ }
7091
+
7092
+ i.icon.active {
7093
+ opacity: 1 !important;
7094
+ }
7095
+
7096
+ i.emphasized.icon {
7097
+ opacity: 1 !important;
7098
+ }
7099
+
7100
+ i.disabled.icon {
7101
+ opacity: 0.45 !important;
7102
+ }
7103
+
7104
+ /*******************************
7105
+ Variations
7106
+ *******************************/
7107
+
7108
+ /*-------------------
7109
+ Fitted
7110
+ --------------------*/
7111
+
7112
+ i.fitted.icon {
7113
+ width: auto;
7114
+ margin: 0em;
7115
+ }
7116
+
7117
+ /*-------------------
7118
+ Link
7119
+ --------------------*/
7120
+
7121
+ i.link.icon {
7122
+ cursor: pointer;
7123
+ opacity: 0.8;
7124
+ -webkit-transition: opacity 0.1s ease;
7125
+ transition: opacity 0.1s ease;
7126
+ }
7127
+
7128
+ i.link.icon:hover {
7129
+ opacity: 1 !important;
7130
+ }
7131
+
7132
+ /*-------------------
7133
+ Circular
7134
+ --------------------*/
7135
+
7136
+ i.circular.icon {
7137
+ border-radius: 500em !important;
7138
+ line-height: 1 !important;
7139
+ padding: 0.5em 0.5em !important;
7140
+ box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
7141
+ width: 2em !important;
7142
+ height: 2em !important;
7143
+ }
7144
+
7145
+ i.circular.inverted.icon {
7146
+ border: none;
7147
+ box-shadow: none;
7148
+ }
7149
+
7150
+ /*-------------------
7151
+ Flipped
7152
+ --------------------*/
7153
+
7154
+ i.flipped.icon,
7155
+ i.horizontally.flipped.icon {
7156
+ -webkit-transform: scale(-1, 1);
7157
+ -ms-transform: scale(-1, 1);
7158
+ transform: scale(-1, 1);
7159
+ }
7160
+
7161
+ i.vertically.flipped.icon {
7162
+ -webkit-transform: scale(1, -1);
7163
+ -ms-transform: scale(1, -1);
7164
+ transform: scale(1, -1);
7165
+ }
7166
+
7167
+ /*-------------------
7168
+ Rotated
7169
+ --------------------*/
7170
+
7171
+ i.rotated.icon,
7172
+ i.right.rotated.icon,
7173
+ i.clockwise.rotated.icon {
7174
+ -webkit-transform: rotate(90deg);
7175
+ -ms-transform: rotate(90deg);
7176
+ transform: rotate(90deg);
7177
+ }
7178
+
7179
+ i.left.rotated.icon,
7180
+ i.counterclockwise.rotated.icon {
7181
+ -webkit-transform: rotate(-90deg);
7182
+ -ms-transform: rotate(-90deg);
7183
+ transform: rotate(-90deg);
7184
+ }
7185
+
7186
+ /*-------------------
7187
+ Bordered
7188
+ --------------------*/
7189
+
7190
+ i.bordered.icon {
7191
+ line-height: 1;
7192
+ vertical-align: baseline;
7193
+ width: 2em;
7194
+ height: 2em;
7195
+ padding: 0.5em 0.41em !important;
7196
+ box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
7197
+ }
7198
+
7199
+ i.bordered.inverted.icon {
7200
+ border: none;
7201
+ box-shadow: none;
7202
+ }
7203
+
7204
+ /*-------------------
7205
+ Inverted
7206
+ --------------------*/
7207
+
7208
+ /* Inverted Shapes */
7209
+
7210
+ i.inverted.bordered.icon,
7211
+ i.inverted.circular.icon {
7212
+ background-color: #1b1c1d !important;
7213
+ color: #ffffff !important;
7214
+ }
7215
+
7216
+ i.inverted.icon {
7217
+ color: #ffffff;
7218
+ }
7219
+
7220
+ /*-------------------
7221
+ Colors
7222
+ --------------------*/
7223
+
7224
+ /* Red */
7225
+
7226
+ i.red.icon {
7227
+ color: #db2828 !important;
7228
+ }
7229
+
7230
+ i.inverted.red.icon {
7231
+ color: #ff695e !important;
7232
+ }
7233
+
7234
+ i.inverted.bordered.red.icon,
7235
+ i.inverted.circular.red.icon {
7236
+ background-color: #db2828 !important;
7237
+ color: #ffffff !important;
7238
+ }
7239
+
7240
+ /* Orange */
7241
+
7242
+ i.orange.icon {
7243
+ color: #f2711c !important;
7244
+ }
7245
+
7246
+ i.inverted.orange.icon {
7247
+ color: #ff851b !important;
7248
+ }
7249
+
7250
+ i.inverted.bordered.orange.icon,
7251
+ i.inverted.circular.orange.icon {
7252
+ background-color: #f2711c !important;
7253
+ color: #ffffff !important;
7254
+ }
7255
+
7256
+ /* Yellow */
7257
+
7258
+ i.yellow.icon {
7259
+ color: #fbbd08 !important;
7260
+ }
7261
+
7262
+ i.inverted.yellow.icon {
7263
+ color: #ffe21f !important;
7264
+ }
7265
+
7266
+ i.inverted.bordered.yellow.icon,
7267
+ i.inverted.circular.yellow.icon {
7268
+ background-color: #fbbd08 !important;
7269
+ color: #ffffff !important;
7270
+ }
7271
+
7272
+ /* Olive */
7273
+
7274
+ i.olive.icon {
7275
+ color: #b5cc18 !important;
7276
+ }
7277
+
7278
+ i.inverted.olive.icon {
7279
+ color: #d9e778 !important;
7280
+ }
7281
+
7282
+ i.inverted.bordered.olive.icon,
7283
+ i.inverted.circular.olive.icon {
7284
+ background-color: #b5cc18 !important;
7285
+ color: #ffffff !important;
7286
+ }
7287
+
7288
+ /* Green */
7289
+
7290
+ i.green.icon {
7291
+ color: #21ba45 !important;
7292
+ }
7293
+
7294
+ i.inverted.green.icon {
7295
+ color: #2ecc40 !important;
7296
+ }
7297
+
7298
+ i.inverted.bordered.green.icon,
7299
+ i.inverted.circular.green.icon {
7300
+ background-color: #21ba45 !important;
7301
+ color: #ffffff !important;
7302
+ }
7303
+
7304
+ /* Teal */
7305
+
7306
+ i.teal.icon {
7307
+ color: #00b5ad !important;
7308
+ }
7309
+
7310
+ i.inverted.teal.icon {
7311
+ color: #6dffff !important;
7312
+ }
7313
+
7314
+ i.inverted.bordered.teal.icon,
7315
+ i.inverted.circular.teal.icon {
7316
+ background-color: #00b5ad !important;
7317
+ color: #ffffff !important;
7318
+ }
7319
+
7320
+ /* Blue */
7321
+
7322
+ i.blue.icon {
7323
+ color: #2185d0 !important;
7324
+ }
7325
+
7326
+ i.inverted.blue.icon {
7327
+ color: #54c8ff !important;
7328
+ }
7329
+
7330
+ i.inverted.bordered.blue.icon,
7331
+ i.inverted.circular.blue.icon {
7332
+ background-color: #2185d0 !important;
7333
+ color: #ffffff !important;
7334
+ }
7335
+
7336
+ /* Violet */
7337
+
7338
+ i.violet.icon {
7339
+ color: #6435c9 !important;
7340
+ }
7341
+
7342
+ i.inverted.violet.icon {
7343
+ color: #a291fb !important;
7344
+ }
7345
+
7346
+ i.inverted.bordered.violet.icon,
7347
+ i.inverted.circular.violet.icon {
7348
+ background-color: #6435c9 !important;
7349
+ color: #ffffff !important;
7350
+ }
7351
+
7352
+ /* Purple */
7353
+
7354
+ i.purple.icon {
7355
+ color: #a333c8 !important;
7356
+ }
7357
+
7358
+ i.inverted.purple.icon {
7359
+ color: #dc73ff !important;
7360
+ }
7361
+
7362
+ i.inverted.bordered.purple.icon,
7363
+ i.inverted.circular.purple.icon {
7364
+ background-color: #a333c8 !important;
7365
+ color: #ffffff !important;
7366
+ }
7367
+
7368
+ /* Pink */
7369
+
7370
+ i.pink.icon {
7371
+ color: #e03997 !important;
7372
+ }
7373
+
7374
+ i.inverted.pink.icon {
7375
+ color: #ff8edf !important;
7376
+ }
7377
+
7378
+ i.inverted.bordered.pink.icon,
7379
+ i.inverted.circular.pink.icon {
7380
+ background-color: #e03997 !important;
7381
+ color: #ffffff !important;
7382
+ }
7383
+
7384
+ /* Brown */
7385
+
7386
+ i.brown.icon {
7387
+ color: #a5673f !important;
7388
+ }
7389
+
7390
+ i.inverted.brown.icon {
7391
+ color: #d67c1c !important;
7392
+ }
7393
+
7394
+ i.inverted.bordered.brown.icon,
7395
+ i.inverted.circular.brown.icon {
7396
+ background-color: #a5673f !important;
7397
+ color: #ffffff !important;
7398
+ }
7399
+
7400
+ /* Grey */
7401
+
7402
+ i.grey.icon {
7403
+ color: #767676 !important;
7404
+ }
7405
+
7406
+ i.inverted.grey.icon {
7407
+ color: #dcddde !important;
7408
+ }
7409
+
7410
+ i.inverted.bordered.grey.icon,
7411
+ i.inverted.circular.grey.icon {
7412
+ background-color: #767676 !important;
7413
+ color: #ffffff !important;
7414
+ }
7415
+
7416
+ /* Black */
7417
+
7418
+ i.black.icon {
7419
+ color: #1b1c1d !important;
7420
+ }
7421
+
7422
+ i.inverted.black.icon {
7423
+ color: #545454 !important;
7424
+ }
7425
+
7426
+ i.inverted.bordeblack.black.icon,
7427
+ i.inverted.circular.black.icon {
7428
+ background-color: #1b1c1d !important;
7429
+ color: #ffffff !important;
7430
+ }
7431
+
7432
+ /*-------------------
7433
+ Sizes
7434
+ --------------------*/
7435
+
7436
+ i.mini.icon,
7437
+ i.mini.icons {
7438
+ line-height: 1;
7439
+ font-size: 0.71428571rem;
7440
+ }
7441
+
7442
+ i.tiny.icon,
7443
+ i.tiny.icons {
7444
+ line-height: 1;
7445
+ font-size: 0.85714286rem;
7446
+ }
7447
+
7448
+ i.small.icon,
7449
+ i.small.icons {
7450
+ line-height: 1;
7451
+ font-size: 0.92857143em;
7452
+ }
7453
+
7454
+ i.icon,
7455
+ i.icons {
7456
+ font-size: 1em;
7457
+ }
7458
+
7459
+ i.large.icon,
7460
+ i.large.icons {
7461
+ line-height: 1;
7462
+ vertical-align: middle;
7463
+ font-size: 1.5em;
7464
+ }
7465
+
7466
+ i.big.icon,
7467
+ i.big.icons {
7468
+ line-height: 1;
7469
+ vertical-align: middle;
7470
+ font-size: 2em;
7471
+ }
7472
+
7473
+ i.huge.icon,
7474
+ i.huge.icons {
7475
+ line-height: 1;
7476
+ vertical-align: middle;
7477
+ font-size: 4em;
7478
+ }
7479
+
7480
+ i.massive.icon,
7481
+ i.massive.icons {
7482
+ line-height: 1;
7483
+ vertical-align: middle;
7484
+ font-size: 8em;
7485
+ }
7486
+
7487
+ /*******************************
7488
+ Groups
7489
+ *******************************/
7490
+
7491
+ i.icons {
7492
+ display: inline-block;
7493
+ position: relative;
7494
+ line-height: 1;
7495
+ }
7496
+
7497
+ i.icons .icon {
7498
+ position: absolute;
7499
+ top: 50%;
7500
+ left: 50%;
7501
+ -webkit-transform: translateX(-50%) translateY(-50%);
7502
+ -ms-transform: translateX(-50%) translateY(-50%);
7503
+ transform: translateX(-50%) translateY(-50%);
7504
+ margin: 0em;
7505
+ margin: 0;
7506
+ }
7507
+
7508
+ i.icons .icon:first-child {
7509
+ position: static;
7510
+ width: auto;
7511
+ height: auto;
7512
+ vertical-align: top;
7513
+ -webkit-transform: none;
7514
+ -ms-transform: none;
7515
+ transform: none;
7516
+ margin-right: 0.25rem;
7517
+ }
7518
+
7519
+ /* Corner Icon */
7520
+
7521
+ i.icons .corner.icon {
7522
+ top: auto;
7523
+ left: auto;
7524
+ right: 0;
7525
+ bottom: 0;
7526
+ -webkit-transform: none;
7527
+ -ms-transform: none;
7528
+ transform: none;
7529
+ font-size: 0.45em;
7530
+ text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff;
7531
+ }
7532
+
7533
+ i.icons .inverted.corner.icon {
7534
+ text-shadow: -1px -1px 0 #1b1c1d, 1px -1px 0 #1b1c1d, -1px 1px 0 #1b1c1d, 1px 1px 0 #1b1c1d;
7535
+ }
7536
+
7537
+ /*
7538
+ * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
7539
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
7540
+ */
7541
+
7542
+ /*******************************
7543
+
7544
+ Semantic-UI integration of font-awesome :
7545
+
7546
+ ///class names are separated
7547
+ i.icon.circle => i.icon.circle
7548
+ i.icon.circle-o => i.icon.circle.outline
7549
+
7550
+ //abbreviation are replaced by full letters:
7551
+ i.icon.ellipsis-h => i.icon.ellipsis.horizontal
7552
+ i.icon.ellipsis-v => i.icon.ellipsis.vertical
7553
+ .alpha => .i.icon.alphabet
7554
+ .asc => .i.icon.ascending
7555
+ .desc => .i.icon.descending
7556
+ .alt =>.alternate
7557
+
7558
+ ASCII order is conserved for easier maintenance.
7559
+
7560
+ Icons that only have one style 'outline', 'square' etc do not require this class
7561
+ for instance `lemon icon` not `lemon outline icon` since there is only one lemon
7562
+
7563
+ *******************************/
7564
+
7565
+ /*******************************
7566
+ Icons
7567
+ *******************************/
7568
+
7569
+ /* Web Content */
7570
+
7571
+ i.icon.search:before {
7572
+ content: "\f002";
7573
+ }
7574
+
7575
+ i.icon.mail.outline:before {
7576
+ content: "\f003";
7577
+ }
7578
+
7579
+ i.icon.external:before {
7580
+ content: "\f08e";
7581
+ }
7582
+
7583
+ i.icon.signal:before {
7584
+ content: "\f012";
7585
+ }
7586
+
7587
+ i.icon.setting:before {
7588
+ content: "\f013";
7589
+ }
7590
+
7591
+ i.icon.home:before {
7592
+ content: "\f015";
7593
+ }
7594
+
7595
+ i.icon.inbox:before {
7596
+ content: "\f01c";
7597
+ }
7598
+
7599
+ i.icon.browser:before {
7600
+ content: "\f022";
7601
+ }
7602
+
7603
+ i.icon.tag:before {
7604
+ content: "\f02b";
7605
+ }
7606
+
7607
+ i.icon.tags:before {
7608
+ content: "\f02c";
7609
+ }
7610
+
7611
+ i.icon.calendar:before {
7612
+ content: "\f073";
7613
+ }
7614
+
7615
+ i.icon.comment:before {
7616
+ content: "\f075";
7617
+ }
7618
+
7619
+ i.icon.comments:before {
7620
+ content: "\f086";
7621
+ }
7622
+
7623
+ i.icon.shop:before {
7624
+ content: "\f07a";
7625
+ }
7626
+
7627
+ i.icon.privacy:before {
7628
+ content: "\f084";
7629
+ }
7630
+
7631
+ i.icon.settings:before {
7632
+ content: "\f085";
7633
+ }
7634
+
7635
+ i.icon.trophy:before {
7636
+ content: "\f091";
7637
+ }
7638
+
7639
+ i.icon.payment:before {
7640
+ content: "\f09d";
7641
+ }
7642
+
7643
+ i.icon.feed:before {
7644
+ content: "\f09e";
7645
+ }
7646
+
7647
+ i.icon.alarm.outline:before {
7648
+ content: "\f0a2";
7649
+ }
7650
+
7651
+ i.icon.tasks:before {
7652
+ content: "\f0ae";
7653
+ }
7654
+
7655
+ i.icon.cloud:before {
7656
+ content: "\f0c2";
7657
+ }
7658
+
7659
+ i.icon.lab:before {
7660
+ content: "\f0c3";
7661
+ }
7662
+
7663
+ i.icon.mail:before {
7664
+ content: "\f0e0";
7665
+ }
7666
+
7667
+ i.icon.idea:before {
7668
+ content: "\f0eb";
7669
+ }
7670
+
7671
+ i.icon.dashboard:before {
7672
+ content: "\f0e4";
7673
+ }
7674
+
7675
+ i.icon.sitemap:before {
7676
+ content: "\f0e8";
7677
+ }
7678
+
7679
+ i.icon.alarm:before {
7680
+ content: "\f0f3";
7681
+ }
7682
+
7683
+ i.icon.terminal:before {
7684
+ content: "\f120";
7685
+ }
7686
+
7687
+ i.icon.code:before {
7688
+ content: "\f121";
7689
+ }
7690
+
7691
+ i.icon.protect:before {
7692
+ content: "\f132";
7693
+ }
7694
+
7695
+ i.icon.calendar.outline:before {
7696
+ content: "\f133";
7697
+ }
7698
+
7699
+ i.icon.ticket:before {
7700
+ content: "\f145";
7701
+ }
7702
+
7703
+ i.icon.external.square:before {
7704
+ content: "\f14c";
7705
+ }
7706
+
7707
+ i.icon.map:before {
7708
+ content: "\f14e";
7709
+ }
7710
+
7711
+ i.icon.bug:before {
7712
+ content: "\f188";
7713
+ }
7714
+
7715
+ i.icon.mail.square:before {
7716
+ content: "\f199";
7717
+ }
7718
+
7719
+ i.icon.history:before {
7720
+ content: "\f1da";
7721
+ }
7722
+
7723
+ i.icon.options:before {
7724
+ content: "\f1de";
7725
+ }
7726
+
7727
+ i.icon.comment.outline:before {
7728
+ content: "\f0e5";
7729
+ }
7730
+
7731
+ i.icon.comments.outline:before {
7732
+ content: "\f0e6";
7733
+ }
7734
+
7735
+ i.icon.text.telephone:before {
7736
+ content: "\f1e4";
7737
+ }
7738
+
7739
+ i.icon.find:before {
7740
+ content: "\f1e5";
7741
+ }
7742
+
7743
+ i.icon.wifi:before {
7744
+ content: "\f1eb";
7745
+ }
7746
+
7747
+ i.icon.alarm.slash:before {
7748
+ content: "\f1f6";
7749
+ }
7750
+
7751
+ i.icon.alarm.slash.outline:before {
7752
+ content: "\f1f7";
7753
+ }
7754
+
7755
+ i.icon.copyright:before {
7756
+ content: "\f1f9";
7757
+ }
7758
+
7759
+ i.icon.at:before {
7760
+ content: "\f1fa";
7761
+ }
7762
+
7763
+ i.icon.eyedropper:before {
7764
+ content: "\f1fb";
7765
+ }
7766
+
7767
+ i.icon.paint.brush:before {
7768
+ content: "\f1fc";
7769
+ }
7770
+
7771
+ i.icon.heartbeat:before {
7772
+ content: "\f21e";
7773
+ }
7774
+
7775
+ /* User Actions */
7776
+
7777
+ i.icon.download:before {
7778
+ content: "\f019";
7779
+ }
7780
+
7781
+ i.icon.repeat:before {
7782
+ content: "\f01e";
7783
+ }
7784
+
7785
+ i.icon.refresh:before {
7786
+ content: "\f021";
7787
+ }
7788
+
7789
+ i.icon.lock:before {
7790
+ content: "\f023";
7791
+ }
7792
+
7793
+ i.icon.bookmark:before {
7794
+ content: "\f02e";
7795
+ }
7796
+
7797
+ i.icon.print:before {
7798
+ content: "\f02f";
7799
+ }
7800
+
7801
+ i.icon.write:before {
7802
+ content: "\f040";
7803
+ }
7804
+
7805
+ i.icon.theme:before {
7806
+ content: "\f043";
7807
+ }
7808
+
7809
+ i.icon.adjust:before {
7810
+ content: "\f042";
7811
+ }
7812
+
7813
+ i.icon.edit:before {
7814
+ content: "\f044";
7815
+ }
7816
+
7817
+ i.icon.external.share:before {
7818
+ content: "\f045";
7819
+ }
7820
+
7821
+ i.icon.ban:before {
7822
+ content: "\f05e";
7823
+ }
7824
+
7825
+ i.icon.mail.forward:before {
7826
+ content: "\f064";
7827
+ }
7828
+
7829
+ i.icon.share:before {
7830
+ content: "\f064";
7831
+ }
7832
+
7833
+ i.icon.expand:before {
7834
+ content: "\f065";
7835
+ }
7836
+
7837
+ i.icon.compress:before {
7838
+ content: "\f066";
7839
+ }
7840
+
7841
+ i.icon.unhide:before {
7842
+ content: "\f06e";
7843
+ }
7844
+
7845
+ i.icon.hide:before {
7846
+ content: "\f070";
7847
+ }
7848
+
7849
+ i.icon.random:before {
7850
+ content: "\f074";
7851
+ }
7852
+
7853
+ i.icon.retweet:before {
7854
+ content: "\f079";
7855
+ }
7856
+
7857
+ i.icon.sign.out:before {
7858
+ content: "\f08b";
7859
+ }
7860
+
7861
+ i.icon.pin:before {
7862
+ content: "\f08d";
7863
+ }
7864
+
7865
+ i.icon.sign.in:before {
7866
+ content: "\f090";
7867
+ }
7868
+
7869
+ i.icon.upload:before {
7870
+ content: "\f093";
7871
+ }
7872
+
7873
+ i.icon.call:before {
7874
+ content: "\f095";
7875
+ }
7876
+
7877
+ i.icon.call.square:before {
7878
+ content: "\f098";
7879
+ }
7880
+
7881
+ i.icon.remove.bookmark:before {
7882
+ content: "\f097";
7883
+ }
7884
+
7885
+ i.icon.unlock:before {
7886
+ content: "\f09c";
7887
+ }
7888
+
7889
+ i.icon.configure:before {
7890
+ content: "\f0ad";
7891
+ }
7892
+
7893
+ i.icon.filter:before {
7894
+ content: "\f0b0";
7895
+ }
7896
+
7897
+ i.icon.wizard:before {
7898
+ content: "\f0d0";
7899
+ }
7900
+
7901
+ i.icon.undo:before {
7902
+ content: "\f0e2";
7903
+ }
7904
+
7905
+ i.icon.exchange:before {
7906
+ content: "\f0ec";
7907
+ }
7908
+
7909
+ i.icon.cloud.download:before {
7910
+ content: "\f0ed";
7911
+ }
7912
+
7913
+ i.icon.cloud.upload:before {
7914
+ content: "\f0ee";
7915
+ }
7916
+
7917
+ i.icon.reply:before {
7918
+ content: "\f112";
7919
+ }
7920
+
7921
+ i.icon.reply.all:before {
7922
+ content: "\f122";
7923
+ }
7924
+
7925
+ i.icon.erase:before {
7926
+ content: "\f12d";
7927
+ }
7928
+
7929
+ i.icon.unlock.alternate:before {
7930
+ content: "\f13e";
7931
+ }
7932
+
7933
+ i.icon.archive:before {
7934
+ content: "\f187";
7935
+ }
7936
+
7937
+ i.icon.translate:before {
7938
+ content: "\f1ab";
7939
+ }
7940
+
7941
+ i.icon.recycle:before {
7942
+ content: "\f1b8";
7943
+ }
7944
+
7945
+ i.icon.send:before {
7946
+ content: "\f1d8";
7947
+ }
7948
+
7949
+ i.icon.send.outline:before {
7950
+ content: "\f1d9";
7951
+ }
7952
+
7953
+ i.icon.share.alternate:before {
7954
+ content: "\f1e0";
7955
+ }
7956
+
7957
+ i.icon.share.alternate.square:before {
7958
+ content: "\f1e1";
7959
+ }
7960
+
7961
+ i.icon.wait:before {
7962
+ content: "\f017";
7963
+ }
7964
+
7965
+ i.icon.write.square:before {
7966
+ content: "\f14b";
7967
+ }
7968
+
7969
+ i.icon.share.square:before {
7970
+ content: "\f14d";
7971
+ }
7972
+
7973
+ i.icon.add.to.cart:before {
7974
+ content: "\f217";
7975
+ }
7976
+
7977
+ i.icon.in.cart:before {
7978
+ content: "\f218";
7979
+ }
7980
+
7981
+ i.icon.add.user:before {
7982
+ content: "\f234";
7983
+ }
7984
+
7985
+ i.icon.remove.user:before {
7986
+ content: "\f235";
7987
+ }
7988
+
7989
+ /* Messages */
7990
+
7991
+ i.icon.help.circle:before {
7992
+ content: "\f059";
7993
+ }
7994
+
7995
+ i.icon.info.circle:before {
7996
+ content: "\f05a";
7997
+ }
7998
+
7999
+ i.icon.warning:before {
8000
+ content: "\f12a";
8001
+ }
8002
+
8003
+ i.icon.warning.circle:before {
8004
+ content: "\f06a";
8005
+ }
8006
+
8007
+ i.icon.warning.sign:before {
8008
+ content: "\f071";
8009
+ }
8010
+
8011
+ i.icon.help:before {
8012
+ content: "\f128";
8013
+ }
8014
+
8015
+ i.icon.info:before {
8016
+ content: "\f129";
8017
+ }
8018
+
8019
+ i.icon.announcement:before {
8020
+ content: "\f0a1";
8021
+ }
8022
+
8023
+ i.icon.birthday:before {
8024
+ content: "\f1fd";
8025
+ }
8026
+
8027
+ /* Users */
8028
+
8029
+ i.icon.users:before {
8030
+ content: "\f0c0";
8031
+ }
8032
+
8033
+ i.icon.doctor:before {
8034
+ content: "\f0f0";
8035
+ }
8036
+
8037
+ i.icon.child:before {
8038
+ content: "\f1ae";
8039
+ }
8040
+
8041
+ i.icon.user:before {
8042
+ content: "\f007";
8043
+ }
8044
+
8045
+ i.icon.handicap:before {
8046
+ content: "\f193";
8047
+ }
8048
+
8049
+ i.icon.student:before {
8050
+ content: "\f19d";
8051
+ }
8052
+
8053
+ i.icon.spy:before {
8054
+ content: "\f21b";
8055
+ }
8056
+
8057
+ /* Gender & Sexuality */
8058
+
8059
+ i.icon.female:before {
8060
+ content: "\f182";
8061
+ }
8062
+
8063
+ i.icon.male:before {
8064
+ content: "\f183";
8065
+ }
8066
+
8067
+ i.icon.woman:before {
8068
+ content: "\f221";
8069
+ }
8070
+
8071
+ i.icon.man:before {
8072
+ content: "\f222";
8073
+ }
8074
+
8075
+ i.icon.non.binary.transgender:before {
8076
+ content: "\f223";
8077
+ }
8078
+
8079
+ i.icon.intergender:before {
8080
+ content: "\f224";
8081
+ }
8082
+
8083
+ i.icon.transgender:before {
8084
+ content: "\f225";
8085
+ }
8086
+
8087
+ i.icon.lesbian:before {
8088
+ content: "\f226";
8089
+ }
8090
+
8091
+ i.icon.gay:before {
8092
+ content: "\f227";
8093
+ }
8094
+
8095
+ i.icon.heterosexual:before {
8096
+ content: "\f228";
8097
+ }
8098
+
8099
+ i.icon.other.gender:before {
8100
+ content: "\f229";
8101
+ }
8102
+
8103
+ i.icon.other.gender.vertical:before {
8104
+ content: "\f22a";
8105
+ }
8106
+
8107
+ i.icon.other.gender.horizontal:before {
8108
+ content: "\f22b";
8109
+ }
8110
+
8111
+ i.icon.neuter:before {
8112
+ content: "\f22c";
8113
+ }
8114
+
8115
+ /* View Adjustment */
8116
+
8117
+ i.icon.grid.layout:before {
8118
+ content: "\f00a";
8119
+ }
8120
+
8121
+ i.icon.list.layout:before {
8122
+ content: "\f00b";
8123
+ }
8124
+
8125
+ i.icon.block.layout:before {
8126
+ content: "\f009";
8127
+ }
8128
+
8129
+ i.icon.zoom:before {
8130
+ content: "\f00e";
8131
+ }
8132
+
8133
+ i.icon.zoom.out:before {
8134
+ content: "\f010";
8135
+ }
8136
+
8137
+ i.icon.resize.vertical:before {
8138
+ content: "\f07d";
8139
+ }
8140
+
8141
+ i.icon.resize.horizontal:before {
8142
+ content: "\f07e";
8143
+ }
8144
+
8145
+ i.icon.maximize:before {
8146
+ content: "\f0b2";
8147
+ }
8148
+
8149
+ i.icon.crop:before {
8150
+ content: "\f125";
8151
+ }
8152
+
8153
+ /* Literal Objects */
8154
+
8155
+ i.icon.cocktail:before {
8156
+ content: "\f000";
8157
+ }
8158
+
8159
+ i.icon.road:before {
8160
+ content: "\f018";
8161
+ }
8162
+
8163
+ i.icon.flag:before {
8164
+ content: "\f024";
8165
+ }
8166
+
8167
+ i.icon.book:before {
8168
+ content: "\f02d";
8169
+ }
8170
+
8171
+ i.icon.gift:before {
8172
+ content: "\f06b";
8173
+ }
8174
+
8175
+ i.icon.leaf:before {
8176
+ content: "\f06c";
8177
+ }
8178
+
8179
+ i.icon.fire:before {
8180
+ content: "\f06d";
8181
+ }
8182
+
8183
+ i.icon.plane:before {
8184
+ content: "\f072";
8185
+ }
8186
+
8187
+ i.icon.magnet:before {
8188
+ content: "\f076";
8189
+ }
8190
+
8191
+ i.icon.legal:before {
8192
+ content: "\f0e3";
8193
+ }
8194
+
8195
+ i.icon.lemon:before {
8196
+ content: "\f094";
8197
+ }
8198
+
8199
+ i.icon.world:before {
8200
+ content: "\f0ac";
8201
+ }
8202
+
8203
+ i.icon.travel:before {
8204
+ content: "\f0b1";
8205
+ }
8206
+
8207
+ i.icon.shipping:before {
8208
+ content: "\f0d1";
8209
+ }
8210
+
8211
+ i.icon.money:before {
8212
+ content: "\f0d6";
8213
+ }
8214
+
8215
+ i.icon.lightning:before {
8216
+ content: "\f0e7";
8217
+ }
8218
+
8219
+ i.icon.rain:before {
8220
+ content: "\f0e9";
8221
+ }
8222
+
8223
+ i.icon.treatment:before {
8224
+ content: "\f0f1";
8225
+ }
8226
+
8227
+ i.icon.suitcase:before {
8228
+ content: "\f0f2";
8229
+ }
8230
+
8231
+ i.icon.bar:before {
8232
+ content: "\f0fc";
8233
+ }
8234
+
8235
+ i.icon.flag.outline:before {
8236
+ content: "\f11d";
8237
+ }
8238
+
8239
+ i.icon.flag.checkered:before {
8240
+ content: "\f11e";
8241
+ }
8242
+
8243
+ i.icon.puzzle:before {
8244
+ content: "\f12e";
8245
+ }
8246
+
8247
+ i.icon.fire.extinguisher:before {
8248
+ content: "\f134";
8249
+ }
8250
+
8251
+ i.icon.rocket:before {
8252
+ content: "\f135";
8253
+ }
8254
+
8255
+ i.icon.anchor:before {
8256
+ content: "\f13d";
8257
+ }
8258
+
8259
+ i.icon.bullseye:before {
8260
+ content: "\f140";
8261
+ }
8262
+
8263
+ i.icon.sun:before {
8264
+ content: "\f185";
8265
+ }
8266
+
8267
+ i.icon.moon:before {
8268
+ content: "\f186";
8269
+ }
8270
+
8271
+ i.icon.fax:before {
8272
+ content: "\f1ac";
8273
+ }
8274
+
8275
+ i.icon.life.ring:before {
8276
+ content: "\f1cd";
8277
+ }
8278
+
8279
+ i.icon.bomb:before {
8280
+ content: "\f1e2";
8281
+ }
8282
+
8283
+ i.icon.soccer:before {
8284
+ content: "\f1e3";
8285
+ }
8286
+
8287
+ i.icon.calculator:before {
8288
+ content: "\f1ec";
8289
+ }
8290
+
8291
+ i.icon.diamond:before {
8292
+ content: "\f219";
8293
+ }
8294
+
8295
+ /* Shapes */
8296
+
8297
+ i.icon.crosshairs:before {
8298
+ content: "\f05b";
8299
+ }
8300
+
8301
+ i.icon.asterisk:before {
8302
+ content: "\f069";
8303
+ }
8304
+
8305
+ i.icon.certificate:before {
8306
+ content: "\f0a3";
8307
+ }
8308
+
8309
+ i.icon.circle:before {
8310
+ content: "\f111";
8311
+ }
8312
+
8313
+ i.icon.quote.left:before {
8314
+ content: "\f10d";
8315
+ }
8316
+
8317
+ i.icon.quote.right:before {
8318
+ content: "\f10e";
8319
+ }
8320
+
8321
+ i.icon.ellipsis.horizontal:before {
8322
+ content: "\f141";
8323
+ }
8324
+
8325
+ i.icon.ellipsis.vertical:before {
8326
+ content: "\f142";
8327
+ }
8328
+
8329
+ i.icon.cube:before {
8330
+ content: "\f1b2";
8331
+ }
8332
+
8333
+ i.icon.cubes:before {
8334
+ content: "\f1b3";
8335
+ }
8336
+
8337
+ i.icon.circle.notched:before {
8338
+ content: "\f1ce";
8339
+ }
8340
+
8341
+ i.icon.circle.thin:before {
8342
+ content: "\f1db";
8343
+ }
8344
+
8345
+ i.icon.square.outline:before {
8346
+ content: "\f096";
8347
+ }
8348
+
8349
+ i.icon.square:before {
8350
+ content: "\f0c8";
8351
+ }
8352
+
8353
+ /* Item Selection */
8354
+
8355
+ i.icon.checkmark:before {
8356
+ content: "\f00c";
8357
+ }
8358
+
8359
+ i.icon.remove:before {
8360
+ content: "\f00d";
8361
+ }
8362
+
8363
+ i.icon.checkmark.box:before {
8364
+ content: "\f046";
8365
+ }
8366
+
8367
+ i.icon.move:before {
8368
+ content: "\f047";
8369
+ }
8370
+
8371
+ i.icon.add.circle:before {
8372
+ content: "\f055";
8373
+ }
8374
+
8375
+ i.icon.minus.circle:before {
8376
+ content: "\f056";
8377
+ }
8378
+
8379
+ i.icon.remove.circle:before {
8380
+ content: "\f057";
8381
+ }
8382
+
8383
+ i.icon.check.circle:before {
8384
+ content: "\f058";
8385
+ }
8386
+
8387
+ i.icon.remove.circle.outline:before {
8388
+ content: "\f05c";
8389
+ }
8390
+
8391
+ i.icon.check.circle.outline:before {
8392
+ content: "\f05d";
8393
+ }
8394
+
8395
+ i.icon.plus:before {
8396
+ content: "\f067";
8397
+ }
8398
+
8399
+ i.icon.minus:before {
8400
+ content: "\f068";
8401
+ }
8402
+
8403
+ i.icon.add.square:before {
8404
+ content: "\f0fe";
8405
+ }
8406
+
8407
+ i.icon.radio:before {
8408
+ content: "\f10c";
8409
+ }
8410
+
8411
+ i.icon.selected.radio:before {
8412
+ content: "\f192";
8413
+ }
8414
+
8415
+ i.icon.minus.square:before {
8416
+ content: "\f146";
8417
+ }
8418
+
8419
+ i.icon.minus.square.outline:before {
8420
+ content: "\f147";
8421
+ }
8422
+
8423
+ i.icon.check.square:before {
8424
+ content: "\f14a";
8425
+ }
8426
+
8427
+ i.icon.plus.square.outline:before {
8428
+ content: "\f196";
8429
+ }
8430
+
8431
+ i.icon.toggle.off:before {
8432
+ content: "\f204";
8433
+ }
8434
+
8435
+ i.icon.toggle.on:before {
8436
+ content: "\f205";
8437
+ }
8438
+
8439
+ /* Media */
8440
+
8441
+ i.icon.film:before {
8442
+ content: "\f008";
8443
+ }
8444
+
8445
+ i.icon.sound:before {
8446
+ content: "\f025";
8447
+ }
8448
+
8449
+ i.icon.photo:before {
8450
+ content: "\f030";
8451
+ }
8452
+
8453
+ i.icon.bar.chart:before {
8454
+ content: "\f080";
8455
+ }
8456
+
8457
+ i.icon.camera.retro:before {
8458
+ content: "\f083";
8459
+ }
8460
+
8461
+ i.icon.newspaper:before {
8462
+ content: "\f1ea";
8463
+ }
8464
+
8465
+ i.icon.area.chart:before {
8466
+ content: "\f1fe";
8467
+ }
8468
+
8469
+ i.icon.pie.chart:before {
8470
+ content: "\f200";
8471
+ }
8472
+
8473
+ i.icon.line.chart:before {
8474
+ content: "\f201";
8475
+ }
8476
+
8477
+ /* Pointers */
8478
+
8479
+ i.icon.arrow.circle.outline.down:before {
8480
+ content: "\f01a";
8481
+ }
8482
+
8483
+ i.icon.arrow.circle.outline.up:before {
8484
+ content: "\f01b";
8485
+ }
8486
+
8487
+ i.icon.chevron.left:before {
8488
+ content: "\f053";
8489
+ }
8490
+
8491
+ i.icon.chevron.right:before {
8492
+ content: "\f054";
8493
+ }
8494
+
8495
+ i.icon.arrow.left:before {
8496
+ content: "\f060";
8497
+ }
8498
+
8499
+ i.icon.arrow.right:before {
8500
+ content: "\f061";
8501
+ }
8502
+
8503
+ i.icon.arrow.up:before {
8504
+ content: "\f062";
8505
+ }
8506
+
8507
+ i.icon.arrow.down:before {
8508
+ content: "\f063";
8509
+ }
8510
+
8511
+ i.icon.chevron.up:before {
8512
+ content: "\f077";
8513
+ }
8514
+
8515
+ i.icon.chevron.down:before {
8516
+ content: "\f078";
8517
+ }
8518
+
8519
+ i.icon.pointing.right:before {
8520
+ content: "\f0a4";
8521
+ }
8522
+
8523
+ i.icon.pointing.left:before {
8524
+ content: "\f0a5";
8525
+ }
8526
+
8527
+ i.icon.pointing.up:before {
8528
+ content: "\f0a6";
8529
+ }
8530
+
8531
+ i.icon.pointing.down:before {
8532
+ content: "\f0a7";
8533
+ }
8534
+
8535
+ i.icon.arrow.circle.left:before {
8536
+ content: "\f0a8";
8537
+ }
8538
+
8539
+ i.icon.arrow.circle.right:before {
8540
+ content: "\f0a9";
8541
+ }
8542
+
8543
+ i.icon.arrow.circle.up:before {
8544
+ content: "\f0aa";
8545
+ }
8546
+
8547
+ i.icon.arrow.circle.down:before {
8548
+ content: "\f0ab";
8549
+ }
8550
+
8551
+ i.icon.caret.down:before {
8552
+ content: "\f0d7";
8553
+ }
8554
+
8555
+ i.icon.caret.up:before {
8556
+ content: "\f0d8";
8557
+ }
8558
+
8559
+ i.icon.caret.left:before {
8560
+ content: "\f0d9";
8561
+ }
8562
+
8563
+ i.icon.caret.right:before {
8564
+ content: "\f0da";
8565
+ }
8566
+
8567
+ i.icon.angle.double.left:before {
8568
+ content: "\f100";
8569
+ }
8570
+
8571
+ i.icon.angle.double.right:before {
8572
+ content: "\f101";
8573
+ }
8574
+
8575
+ i.icon.angle.double.up:before {
8576
+ content: "\f102";
8577
+ }
8578
+
8579
+ i.icon.angle.double.down:before {
8580
+ content: "\f103";
8581
+ }
8582
+
8583
+ i.icon.angle.left:before {
8584
+ content: "\f104";
8585
+ }
8586
+
8587
+ i.icon.angle.right:before {
8588
+ content: "\f105";
8589
+ }
8590
+
8591
+ i.icon.angle.up:before {
8592
+ content: "\f106";
8593
+ }
8594
+
8595
+ i.icon.angle.down:before {
8596
+ content: "\f107";
8597
+ }
8598
+
8599
+ i.icon.chevron.circle.left:before {
8600
+ content: "\f137";
8601
+ }
8602
+
8603
+ i.icon.chevron.circle.right:before {
8604
+ content: "\f138";
8605
+ }
8606
+
8607
+ i.icon.chevron.circle.up:before {
8608
+ content: "\f139";
8609
+ }
8610
+
8611
+ i.icon.chevron.circle.down:before {
8612
+ content: "\f13a";
8613
+ }
8614
+
8615
+ i.icon.toggle.down:before {
8616
+ content: "\f150";
8617
+ }
8618
+
8619
+ i.icon.toggle.up:before {
8620
+ content: "\f151";
8621
+ }
8622
+
8623
+ i.icon.toggle.right:before {
8624
+ content: "\f152";
8625
+ }
8626
+
8627
+ i.icon.long.arrow.down:before {
8628
+ content: "\f175";
8629
+ }
8630
+
8631
+ i.icon.long.arrow.up:before {
8632
+ content: "\f176";
8633
+ }
8634
+
8635
+ i.icon.long.arrow.left:before {
8636
+ content: "\f177";
8637
+ }
8638
+
8639
+ i.icon.long.arrow.right:before {
8640
+ content: "\f178";
8641
+ }
8642
+
8643
+ i.icon.arrow.circle.outline.right:before {
8644
+ content: "\f18e";
8645
+ }
8646
+
8647
+ i.icon.arrow.circle.outline.left:before {
8648
+ content: "\f190";
8649
+ }
8650
+
8651
+ i.icon.toggle.left:before {
8652
+ content: "\f191";
8653
+ }
8654
+
8655
+ /* Computer */
8656
+
8657
+ i.icon.power:before {
8658
+ content: "\f011";
8659
+ }
8660
+
8661
+ i.icon.trash:before {
8662
+ content: "\f1f8";
8663
+ }
8664
+
8665
+ i.icon.trash.outline:before {
8666
+ content: "\f014";
8667
+ }
8668
+
8669
+ i.icon.disk.outline:before {
8670
+ content: "\f0a0";
8671
+ }
8672
+
8673
+ i.icon.desktop:before {
8674
+ content: "\f108";
8675
+ }
8676
+
8677
+ i.icon.laptop:before {
8678
+ content: "\f109";
8679
+ }
8680
+
8681
+ i.icon.tablet:before {
8682
+ content: "\f10a";
8683
+ }
8684
+
8685
+ i.icon.mobile:before {
8686
+ content: "\f10b";
8687
+ }
8688
+
8689
+ i.icon.game:before {
8690
+ content: "\f11b";
8691
+ }
8692
+
8693
+ i.icon.keyboard:before {
8694
+ content: "\f11c";
8695
+ }
8696
+
8697
+ i.icon.plug:before {
8698
+ content: "\f1e6";
8699
+ }
8700
+
8701
+ /* File System */
8702
+
8703
+ i.icon.folder:before {
8704
+ content: "\f07b";
8705
+ }
8706
+
8707
+ i.icon.folder.open:before {
8708
+ content: "\f07c";
8709
+ }
8710
+
8711
+ i.icon.level.up:before {
8712
+ content: "\f148";
8713
+ }
8714
+
8715
+ i.icon.level.down:before {
8716
+ content: "\f149";
8717
+ }
8718
+
8719
+ i.icon.file:before {
8720
+ content: "\f15b";
8721
+ }
8722
+
8723
+ i.icon.file.outline:before {
8724
+ content: "\f016";
8725
+ }
8726
+
8727
+ i.icon.file.text:before {
8728
+ content: "\f15c";
8729
+ }
8730
+
8731
+ i.icon.file.text.outline:before {
8732
+ content: "\f0f6";
8733
+ }
8734
+
8735
+ i.icon.folder.outline:before {
8736
+ content: "\f114";
8737
+ }
8738
+
8739
+ i.icon.folder.open.outline:before {
8740
+ content: "\f115";
8741
+ }
8742
+
8743
+ i.icon.file.pdf.outline:before {
8744
+ content: "\f1c1";
8745
+ }
8746
+
8747
+ i.icon.file.word.outline:before {
8748
+ content: "\f1c2";
8749
+ }
8750
+
8751
+ i.icon.file.excel.outline:before {
8752
+ content: "\f1c3";
8753
+ }
8754
+
8755
+ i.icon.file.powerpoint.outline:before {
8756
+ content: "\f1c4";
8757
+ }
8758
+
8759
+ i.icon.file.image.outline:before {
8760
+ content: "\f1c5";
8761
+ }
8762
+
8763
+ i.icon.file.archive.outline:before {
8764
+ content: "\f1c6";
8765
+ }
8766
+
8767
+ i.icon.file.audio.outline:before {
8768
+ content: "\f1c7";
8769
+ }
8770
+
8771
+ i.icon.file.video.outline:before {
8772
+ content: "\f1c8";
8773
+ }
8774
+
8775
+ i.icon.file.code.outline:before {
8776
+ content: "\f1c9";
8777
+ }
8778
+
8779
+ /* Technologies */
8780
+
8781
+ i.icon.barcode:before {
8782
+ content: "\f02a";
8783
+ }
8784
+
8785
+ i.icon.qrcode:before {
8786
+ content: "\f029";
8787
+ }
8788
+
8789
+ i.icon.fork:before {
8790
+ content: "\f126";
8791
+ }
8792
+
8793
+ i.icon.html5:before {
8794
+ content: "\f13b";
8795
+ }
8796
+
8797
+ i.icon.css3:before {
8798
+ content: "\f13c";
8799
+ }
8800
+
8801
+ i.icon.rss:before {
8802
+ content: "\f09e";
8803
+ }
8804
+
8805
+ i.icon.rss.square:before {
8806
+ content: "\f143";
8807
+ }
8808
+
8809
+ i.icon.openid:before {
8810
+ content: "\f19b";
8811
+ }
8812
+
8813
+ i.icon.database:before {
8814
+ content: "\f1c0";
8815
+ }
8816
+
8817
+ i.icon.server:before {
8818
+ content: "\f233";
8819
+ }
8820
+
8821
+ /* Rating */
8822
+
8823
+ i.icon.heart:before {
8824
+ content: "\f004";
8825
+ }
8826
+
8827
+ i.icon.star:before {
8828
+ content: "\f005";
8829
+ }
8830
+
8831
+ i.icon.empty.star:before {
8832
+ content: "\f006";
8833
+ }
8834
+
8835
+ i.icon.thumbs.outline.up:before {
8836
+ content: "\f087";
8837
+ }
8838
+
8839
+ i.icon.thumbs.outline.down:before {
8840
+ content: "\f088";
8841
+ }
8842
+
8843
+ i.icon.star.half:before {
8844
+ content: "\f089";
8845
+ }
8846
+
8847
+ i.icon.empty.heart:before {
8848
+ content: "\f08a";
8849
+ }
8850
+
8851
+ i.icon.smile:before {
8852
+ content: "\f118";
8853
+ }
8854
+
8855
+ i.icon.frown:before {
8856
+ content: "\f119";
8857
+ }
8858
+
8859
+ i.icon.meh:before {
8860
+ content: "\f11a";
8861
+ }
8862
+
8863
+ i.icon.star.half.empty:before {
8864
+ content: "\f123";
8865
+ }
8866
+
8867
+ i.icon.thumbs.up:before {
8868
+ content: "\f164";
8869
+ }
8870
+
8871
+ i.icon.thumbs.down:before {
8872
+ content: "\f165";
8873
+ }
8874
+
8875
+ /* Audio */
8876
+
8877
+ i.icon.music:before {
8878
+ content: "\f001";
8879
+ }
8880
+
8881
+ i.icon.video.play.outline:before {
8882
+ content: "\f01d";
8883
+ }
8884
+
8885
+ i.icon.volume.off:before {
8886
+ content: "\f026";
8887
+ }
8888
+
8889
+ i.icon.volume.down:before {
8890
+ content: "\f027";
8891
+ }
8892
+
8893
+ i.icon.volume.up:before {
8894
+ content: "\f028";
8895
+ }
8896
+
8897
+ i.icon.record:before {
8898
+ content: "\f03d";
8899
+ }
8900
+
8901
+ i.icon.step.backward:before {
8902
+ content: "\f048";
8903
+ }
8904
+
8905
+ i.icon.fast.backward:before {
8906
+ content: "\f049";
8907
+ }
8908
+
8909
+ i.icon.backward:before {
8910
+ content: "\f04a";
8911
+ }
8912
+
8913
+ i.icon.play:before {
8914
+ content: "\f04b";
8915
+ }
8916
+
8917
+ i.icon.pause:before {
8918
+ content: "\f04c";
8919
+ }
8920
+
8921
+ i.icon.stop:before {
8922
+ content: "\f04d";
8923
+ }
8924
+
8925
+ i.icon.forward:before {
8926
+ content: "\f04e";
8927
+ }
8928
+
8929
+ i.icon.fast.forward:before {
8930
+ content: "\f050";
8931
+ }
8932
+
8933
+ i.icon.step.forward:before {
8934
+ content: "\f051";
8935
+ }
8936
+
8937
+ i.icon.eject:before {
8938
+ content: "\f052";
8939
+ }
8940
+
8941
+ i.icon.unmute:before {
8942
+ content: "\f130";
8943
+ }
8944
+
8945
+ i.icon.mute:before {
8946
+ content: "\f131";
8947
+ }
8948
+
8949
+ i.icon.video.play:before {
8950
+ content: "\f144";
8951
+ }
8952
+
8953
+ i.icon.closed.captioning:before {
8954
+ content: "\f20a";
8955
+ }
8956
+
8957
+ /* Map, Locations, & Transportation */
8958
+
8959
+ i.icon.marker:before {
8960
+ content: "\f041";
8961
+ }
8962
+
8963
+ i.icon.coffee:before {
8964
+ content: "\f0f4";
8965
+ }
8966
+
8967
+ i.icon.food:before {
8968
+ content: "\f0f5";
8969
+ }
8970
+
8971
+ i.icon.building.outline:before {
8972
+ content: "\f0f7";
8973
+ }
8974
+
8975
+ i.icon.hospital:before {
8976
+ content: "\f0f8";
8977
+ }
8978
+
8979
+ i.icon.emergency:before {
8980
+ content: "\f0f9";
8981
+ }
8982
+
8983
+ i.icon.first.aid:before {
8984
+ content: "\f0fa";
8985
+ }
8986
+
8987
+ i.icon.military:before {
8988
+ content: "\f0fb";
8989
+ }
8990
+
8991
+ i.icon.h:before {
8992
+ content: "\f0fd";
8993
+ }
8994
+
8995
+ i.icon.location.arrow:before {
8996
+ content: "\f124";
8997
+ }
8998
+
8999
+ i.icon.space.shuttle:before {
9000
+ content: "\f197";
9001
+ }
9002
+
9003
+ i.icon.university:before {
9004
+ content: "\f19c";
9005
+ }
9006
+
9007
+ i.icon.building:before {
9008
+ content: "\f1ad";
9009
+ }
9010
+
9011
+ i.icon.paw:before {
9012
+ content: "\f1b0";
9013
+ }
9014
+
9015
+ i.icon.spoon:before {
9016
+ content: "\f1b1";
9017
+ }
9018
+
9019
+ i.icon.car:before {
9020
+ content: "\f1b9";
9021
+ }
9022
+
9023
+ i.icon.taxi:before {
9024
+ content: "\f1ba";
9025
+ }
9026
+
9027
+ i.icon.tree:before {
9028
+ content: "\f1bb";
9029
+ }
9030
+
9031
+ i.icon.bicycle:before {
9032
+ content: "\f206";
9033
+ }
9034
+
9035
+ i.icon.bus:before {
9036
+ content: "\f207";
9037
+ }
9038
+
9039
+ i.icon.ship:before {
9040
+ content: "\f21a";
9041
+ }
9042
+
9043
+ i.icon.motorcycle:before {
9044
+ content: "\f21c";
9045
+ }
9046
+
9047
+ i.icon.street.view:before {
9048
+ content: "\f21d";
9049
+ }
9050
+
9051
+ i.icon.hotel:before {
9052
+ content: "\f236";
9053
+ }
9054
+
9055
+ i.icon.train:before {
9056
+ content: "\f238";
9057
+ }
9058
+
9059
+ i.icon.subway:before {
9060
+ content: "\f239";
9061
+ }
9062
+
9063
+ /* Tables */
9064
+
9065
+ i.icon.table:before {
9066
+ content: "\f0ce";
9067
+ }
9068
+
9069
+ i.icon.columns:before {
9070
+ content: "\f0db";
9071
+ }
9072
+
9073
+ i.icon.sort:before {
9074
+ content: "\f0dc";
9075
+ }
9076
+
9077
+ i.icon.sort.ascending:before {
9078
+ content: "\f0de";
9079
+ }
9080
+
9081
+ i.icon.sort.descending:before {
9082
+ content: "\f0dd";
9083
+ }
9084
+
9085
+ i.icon.sort.alphabet.ascending:before {
9086
+ content: "\f15d";
9087
+ }
9088
+
9089
+ i.icon.sort.alphabet.descending:before {
9090
+ content: "\f15e";
9091
+ }
9092
+
9093
+ i.icon.sort.content.ascending:before {
9094
+ content: "\f160";
9095
+ }
9096
+
9097
+ i.icon.sort.content.descending:before {
9098
+ content: "\f161";
9099
+ }
9100
+
9101
+ i.icon.sort.numeric.ascending:before {
9102
+ content: "\f162";
9103
+ }
9104
+
9105
+ i.icon.sort.numeric.descending:before {
9106
+ content: "\f163";
9107
+ }
9108
+
9109
+ /* Text Editor */
9110
+
9111
+ i.icon.font:before {
9112
+ content: "\f031";
9113
+ }
9114
+
9115
+ i.icon.bold:before {
9116
+ content: "\f032";
9117
+ }
9118
+
9119
+ i.icon.italic:before {
9120
+ content: "\f033";
9121
+ }
9122
+
9123
+ i.icon.text.height:before {
9124
+ content: "\f034";
9125
+ }
9126
+
9127
+ i.icon.text.width:before {
9128
+ content: "\f035";
9129
+ }
9130
+
9131
+ i.icon.align.left:before {
9132
+ content: "\f036";
9133
+ }
9134
+
9135
+ i.icon.align.center:before {
9136
+ content: "\f037";
9137
+ }
9138
+
9139
+ i.icon.align.right:before {
9140
+ content: "\f038";
9141
+ }
9142
+
9143
+ i.icon.align.justify:before {
9144
+ content: "\f039";
9145
+ }
9146
+
9147
+ i.icon.list:before {
9148
+ content: "\f03a";
9149
+ }
9150
+
9151
+ i.icon.outdent:before {
9152
+ content: "\f03b";
9153
+ }
9154
+
9155
+ i.icon.indent:before {
9156
+ content: "\f03c";
9157
+ }
9158
+
9159
+ i.icon.linkify:before {
9160
+ content: "\f0c1";
9161
+ }
9162
+
9163
+ i.icon.cut:before {
9164
+ content: "\f0c4";
9165
+ }
9166
+
9167
+ i.icon.copy:before {
9168
+ content: "\f0c5";
9169
+ }
9170
+
9171
+ i.icon.attach:before {
9172
+ content: "\f0c6";
9173
+ }
9174
+
9175
+ i.icon.save:before {
9176
+ content: "\f0c7";
9177
+ }
9178
+
9179
+ i.icon.content:before {
9180
+ content: "\f0c9";
9181
+ }
9182
+
9183
+ i.icon.unordered.list:before {
9184
+ content: "\f0ca";
9185
+ }
9186
+
9187
+ i.icon.ordered.list:before {
9188
+ content: "\f0cb";
9189
+ }
9190
+
9191
+ i.icon.strikethrough:before {
9192
+ content: "\f0cc";
9193
+ }
9194
+
9195
+ i.icon.underline:before {
9196
+ content: "\f0cd";
9197
+ }
9198
+
9199
+ i.icon.paste:before {
9200
+ content: "\f0ea";
9201
+ }
9202
+
9203
+ i.icon.unlink:before {
9204
+ content: "\f127";
9205
+ }
9206
+
9207
+ i.icon.superscript:before {
9208
+ content: "\f12b";
9209
+ }
9210
+
9211
+ i.icon.subscript:before {
9212
+ content: "\f12c";
9213
+ }
9214
+
9215
+ i.icon.header:before {
9216
+ content: "\f1dc";
9217
+ }
9218
+
9219
+ i.icon.paragraph:before {
9220
+ content: "\f1dd";
9221
+ }
9222
+
9223
+ /* Currency */
9224
+
9225
+ i.icon.euro:before {
9226
+ content: "\f153";
9227
+ }
9228
+
9229
+ i.icon.pound:before {
9230
+ content: "\f154";
9231
+ }
9232
+
9233
+ i.icon.dollar:before {
9234
+ content: "\f155";
9235
+ }
9236
+
9237
+ i.icon.rupee:before {
9238
+ content: "\f156";
9239
+ }
9240
+
9241
+ i.icon.yen:before {
9242
+ content: "\f157";
9243
+ }
9244
+
9245
+ i.icon.ruble:before {
9246
+ content: "\f158";
9247
+ }
9248
+
9249
+ i.icon.won:before {
9250
+ content: "\f159";
9251
+ }
9252
+
9253
+ i.icon.lira:before {
9254
+ content: "\f195";
9255
+ }
9256
+
9257
+ i.icon.shekel:before {
9258
+ content: "\f20b";
9259
+ }
9260
+
9261
+ /* Payment Options */
9262
+
9263
+ i.icon.paypal:before {
9264
+ content: "\f1ed";
9265
+ }
9266
+
9267
+ i.icon.paypal.card:before {
9268
+ content: "\f1f4";
9269
+ }
9270
+
9271
+ i.icon.google.wallet:before {
9272
+ content: "\f1ee";
9273
+ }
9274
+
9275
+ i.icon.visa:before {
9276
+ content: "\f1f0";
9277
+ }
9278
+
9279
+ i.icon.mastercard:before {
9280
+ content: "\f1f1";
9281
+ }
9282
+
9283
+ i.icon.discover:before {
9284
+ content: "\f1f2";
9285
+ }
9286
+
9287
+ i.icon.american.express:before {
9288
+ content: "\f1f3";
9289
+ }
9290
+
9291
+ i.icon.stripe:before {
9292
+ content: "\f1f5";
9293
+ }
9294
+
9295
+ /* Networks and Websites*/
9296
+
9297
+ i.icon.twitter.square:before {
9298
+ content: "\f081";
9299
+ }
9300
+
9301
+ i.icon.facebook.square:before {
9302
+ content: "\f082";
9303
+ }
9304
+
9305
+ i.icon.linkedin.square:before {
9306
+ content: "\f08c";
9307
+ }
9308
+
9309
+ i.icon.github.square:before {
9310
+ content: "\f092";
9311
+ }
9312
+
9313
+ i.icon.twitter:before {
9314
+ content: "\f099";
9315
+ }
9316
+
9317
+ i.icon.facebook:before {
9318
+ content: "\f09a";
9319
+ }
9320
+
9321
+ i.icon.github:before {
9322
+ content: "\f09b";
9323
+ }
9324
+
9325
+ i.icon.pinterest:before {
9326
+ content: "\f0d2";
9327
+ }
9328
+
9329
+ i.icon.pinterest.square:before {
9330
+ content: "\f0d3";
9331
+ }
9332
+
9333
+ i.icon.google.plus.square:before {
9334
+ content: "\f0d4";
9335
+ }
9336
+
9337
+ i.icon.google.plus:before {
9338
+ content: "\f0d5";
9339
+ }
9340
+
9341
+ i.icon.linkedin:before {
9342
+ content: "\f0e1";
9343
+ }
9344
+
9345
+ i.icon.github.alternate:before {
9346
+ content: "\f113";
9347
+ }
9348
+
9349
+ i.icon.maxcdn:before {
9350
+ content: "\f136";
9351
+ }
9352
+
9353
+ i.icon.bitcoin:before {
9354
+ content: "\f15a";
9355
+ }
9356
+
9357
+ i.icon.youtube.square:before {
9358
+ content: "\f166";
9359
+ }
9360
+
9361
+ i.icon.youtube:before {
9362
+ content: "\f167";
9363
+ }
9364
+
9365
+ i.icon.xing:before {
9366
+ content: "\f168";
9367
+ }
9368
+
9369
+ i.icon.xing.square:before {
9370
+ content: "\f169";
9371
+ }
9372
+
9373
+ i.icon.youtube.play:before {
9374
+ content: "\f16a";
9375
+ }
9376
+
9377
+ i.icon.dropbox:before {
9378
+ content: "\f16b";
9379
+ }
9380
+
9381
+ i.icon.stack.overflow:before {
9382
+ content: "\f16c";
9383
+ }
9384
+
9385
+ i.icon.instagram:before {
9386
+ content: "\f16d";
9387
+ }
9388
+
9389
+ i.icon.flickr:before {
9390
+ content: "\f16e";
9391
+ }
9392
+
9393
+ i.icon.adn:before {
9394
+ content: "\f170";
9395
+ }
9396
+
9397
+ i.icon.bitbucket:before {
9398
+ content: "\f171";
9399
+ }
9400
+
9401
+ i.icon.bitbucket.square:before {
9402
+ content: "\f172";
9403
+ }
9404
+
9405
+ i.icon.tumblr:before {
9406
+ content: "\f173";
9407
+ }
9408
+
9409
+ i.icon.tumblr.square:before {
9410
+ content: "\f174";
9411
+ }
9412
+
9413
+ i.icon.apple:before {
9414
+ content: "\f179";
9415
+ }
9416
+
9417
+ i.icon.windows:before {
9418
+ content: "\f17a";
9419
+ }
9420
+
9421
+ i.icon.android:before {
9422
+ content: "\f17b";
9423
+ }
9424
+
9425
+ i.icon.linux:before {
9426
+ content: "\f17c";
9427
+ }
9428
+
9429
+ i.icon.dribbble:before {
9430
+ content: "\f17d";
9431
+ }
9432
+
9433
+ i.icon.skype:before {
9434
+ content: "\f17e";
9435
+ }
9436
+
9437
+ i.icon.foursquare:before {
9438
+ content: "\f180";
9439
+ }
9440
+
9441
+ i.icon.trello:before {
9442
+ content: "\f181";
9443
+ }
9444
+
9445
+ i.icon.gittip:before {
9446
+ content: "\f184";
9447
+ }
9448
+
9449
+ i.icon.vk:before {
9450
+ content: "\f189";
9451
+ }
9452
+
9453
+ i.icon.weibo:before {
9454
+ content: "\f18a";
9455
+ }
9456
+
9457
+ i.icon.renren:before {
9458
+ content: "\f18b";
9459
+ }
9460
+
9461
+ i.icon.pagelines:before {
9462
+ content: "\f18c";
9463
+ }
9464
+
9465
+ i.icon.stack.exchange:before {
9466
+ content: "\f18d";
9467
+ }
9468
+
9469
+ i.icon.vimeo:before {
9470
+ content: "\f194";
9471
+ }
9472
+
9473
+ i.icon.slack:before {
9474
+ content: "\f198";
9475
+ }
9476
+
9477
+ i.icon.wordpress:before {
9478
+ content: "\f19a";
9479
+ }
9480
+
9481
+ i.icon.yahoo:before {
9482
+ content: "\f19e";
9483
+ }
9484
+
9485
+ i.icon.google:before {
9486
+ content: "\f1a0";
9487
+ }
9488
+
9489
+ i.icon.reddit:before {
9490
+ content: "\f1a1";
9491
+ }
9492
+
9493
+ i.icon.reddit.square:before {
9494
+ content: "\f1a2";
9495
+ }
9496
+
9497
+ i.icon.stumbleupon.circle:before {
9498
+ content: "\f1a3";
9499
+ }
9500
+
9501
+ i.icon.stumbleupon:before {
9502
+ content: "\f1a4";
9503
+ }
9504
+
9505
+ i.icon.delicious:before {
9506
+ content: "\f1a5";
9507
+ }
9508
+
9509
+ i.icon.digg:before {
9510
+ content: "\f1a6";
9511
+ }
9512
+
9513
+ i.icon.pied.piper:before {
9514
+ content: "\f1a7";
9515
+ }
9516
+
9517
+ i.icon.pied.piper.alternate:before {
9518
+ content: "\f1a8";
9519
+ }
9520
+
9521
+ i.icon.drupal:before {
9522
+ content: "\f1a9";
9523
+ }
9524
+
9525
+ i.icon.joomla:before {
9526
+ content: "\f1aa";
9527
+ }
9528
+
9529
+ i.icon.behance:before {
9530
+ content: "\f1b4";
9531
+ }
9532
+
9533
+ i.icon.behance.square:before {
9534
+ content: "\f1b5";
9535
+ }
9536
+
9537
+ i.icon.steam:before {
9538
+ content: "\f1b6";
9539
+ }
9540
+
9541
+ i.icon.steam.square:before {
9542
+ content: "\f1b7";
9543
+ }
9544
+
9545
+ i.icon.spotify:before {
9546
+ content: "\f1bc";
9547
+ }
9548
+
9549
+ i.icon.deviantart:before {
9550
+ content: "\f1bd";
9551
+ }
9552
+
9553
+ i.icon.soundcloud:before {
9554
+ content: "\f1be";
9555
+ }
9556
+
9557
+ i.icon.vine:before {
9558
+ content: "\f1ca";
9559
+ }
9560
+
9561
+ i.icon.codepen:before {
9562
+ content: "\f1cb";
9563
+ }
9564
+
9565
+ i.icon.jsfiddle:before {
9566
+ content: "\f1cc";
9567
+ }
9568
+
9569
+ i.icon.rebel:before {
9570
+ content: "\f1d0";
9571
+ }
9572
+
9573
+ i.icon.empire:before {
9574
+ content: "\f1d1";
9575
+ }
9576
+
9577
+ i.icon.git.square:before {
9578
+ content: "\f1d2";
9579
+ }
9580
+
9581
+ i.icon.git:before {
9582
+ content: "\f1d3";
9583
+ }
9584
+
9585
+ i.icon.hacker.news:before {
9586
+ content: "\f1d4";
9587
+ }
9588
+
9589
+ i.icon.tencent.weibo:before {
9590
+ content: "\f1d5";
9591
+ }
9592
+
9593
+ i.icon.qq:before {
9594
+ content: "\f1d6";
9595
+ }
9596
+
9597
+ i.icon.wechat:before {
9598
+ content: "\f1d7";
9599
+ }
9600
+
9601
+ i.icon.slideshare:before {
9602
+ content: "\f1e7";
9603
+ }
9604
+
9605
+ i.icon.twitch:before {
9606
+ content: "\f1e8";
9607
+ }
9608
+
9609
+ i.icon.yelp:before {
9610
+ content: "\f1e9";
9611
+ }
9612
+
9613
+ i.icon.lastfm:before {
9614
+ content: "\f202";
9615
+ }
9616
+
9617
+ i.icon.lastfm.square:before {
9618
+ content: "\f203";
9619
+ }
9620
+
9621
+ i.icon.ioxhost:before {
9622
+ content: "\f208";
9623
+ }
9624
+
9625
+ i.icon.angellist:before {
9626
+ content: "\f209";
9627
+ }
9628
+
9629
+ i.icon.meanpath:before {
9630
+ content: "\f20c";
9631
+ }
9632
+
9633
+ i.icon.buysellads:before {
9634
+ content: "\f20d";
9635
+ }
9636
+
9637
+ i.icon.connectdevelop:before {
9638
+ content: "\f20e";
9639
+ }
9640
+
9641
+ i.icon.dashcube:before {
9642
+ content: "\f210";
9643
+ }
9644
+
9645
+ i.icon.forumbee:before {
9646
+ content: "\f211";
9647
+ }
9648
+
9649
+ i.icon.leanpub:before {
9650
+ content: "\f212";
9651
+ }
9652
+
9653
+ i.icon.sellsy:before {
9654
+ content: "\f213";
9655
+ }
9656
+
9657
+ i.icon.shirtsinbulk:before {
9658
+ content: "\f214";
9659
+ }
9660
+
9661
+ i.icon.simplybuilt:before {
9662
+ content: "\f215";
9663
+ }
9664
+
9665
+ i.icon.skyatlas:before {
9666
+ content: "\f216";
9667
+ }
9668
+
9669
+ i.icon.whatsapp:before {
9670
+ content: "\f232";
9671
+ }
9672
+
9673
+ i.icon.viacoin:before {
9674
+ content: "\f237";
9675
+ }
9676
+
9677
+ i.icon.medium:before {
9678
+ content: "\f23a";
9679
+ }
9680
+
9681
+ /*******************************
9682
+ Aliases
9683
+ *******************************/
9684
+
9685
+ i.icon.like:before {
9686
+ content: "\f004";
9687
+ }
9688
+
9689
+ i.icon.favorite:before {
9690
+ content: "\f005";
9691
+ }
9692
+
9693
+ i.icon.video:before {
9694
+ content: "\f008";
9695
+ }
9696
+
9697
+ i.icon.check:before {
9698
+ content: "\f00c";
9699
+ }
9700
+
9701
+ i.icon.close:before {
9702
+ content: "\f00d";
9703
+ }
9704
+
9705
+ i.icon.cancel:before {
9706
+ content: "\f00d";
9707
+ }
9708
+
9709
+ i.icon.delete:before {
9710
+ content: "\f00d";
9711
+ }
9712
+
9713
+ i.icon.x:before {
9714
+ content: "\f00d";
9715
+ }
9716
+
9717
+ i.icon.user.times:before {
9718
+ content: "\f235";
9719
+ }
9720
+
9721
+ i.icon.user.close:before {
9722
+ content: "\f235";
9723
+ }
9724
+
9725
+ i.icon.user.cancel:before {
9726
+ content: "\f235";
9727
+ }
9728
+
9729
+ i.icon.user.delete:before {
9730
+ content: "\f235";
9731
+ }
9732
+
9733
+ i.icon.user.x:before {
9734
+ content: "\f235";
9735
+ }
9736
+
9737
+ i.icon.zoom.in:before {
9738
+ content: "\f00e";
9739
+ }
9740
+
9741
+ i.icon.magnify:before {
9742
+ content: "\f00e";
9743
+ }
9744
+
9745
+ i.icon.shutdown:before {
9746
+ content: "\f011";
9747
+ }
9748
+
9749
+ i.icon.clock:before {
9750
+ content: "\f017";
9751
+ }
9752
+
9753
+ i.icon.time:before {
9754
+ content: "\f017";
9755
+ }
9756
+
9757
+ i.icon.play.circle.outline:before {
9758
+ content: "\f01d";
9759
+ }
9760
+
9761
+ i.icon.headphone:before {
9762
+ content: "\f025";
9763
+ }
9764
+
9765
+ i.icon.camera:before {
9766
+ content: "\f030";
9767
+ }
9768
+
9769
+ i.icon.video.camera:before {
9770
+ content: "\f03d";
9771
+ }
9772
+
9773
+ i.icon.picture:before {
9774
+ content: "\f03e";
9775
+ }
9776
+
9777
+ i.icon.pencil:before {
9778
+ content: "\f040";
9779
+ }
9780
+
9781
+ i.icon.compose:before {
9782
+ content: "\f040";
9783
+ }
9784
+
9785
+ i.icon.point:before {
9786
+ content: "\f041";
9787
+ }
9788
+
9789
+ i.icon.tint:before {
9790
+ content: "\f043";
9791
+ }
9792
+
9793
+ i.icon.signup:before {
9794
+ content: "\f044";
9795
+ }
9796
+
9797
+ i.icon.plus.circle:before {
9798
+ content: "\f055";
9799
+ }
9800
+
9801
+ i.icon.dont:before {
9802
+ content: "\f05e";
9803
+ }
9804
+
9805
+ i.icon.minimize:before {
9806
+ content: "\f066";
9807
+ }
9808
+
9809
+ i.icon.add:before {
9810
+ content: "\f067";
9811
+ }
9812
+
9813
+ i.icon.eye:before {
9814
+ content: "\f06e";
9815
+ }
9816
+
9817
+ i.icon.attention:before {
9818
+ content: "\f06a";
9819
+ }
9820
+
9821
+ i.icon.cart:before {
9822
+ content: "\f07a";
9823
+ }
9824
+
9825
+ i.icon.shuffle:before {
9826
+ content: "\f074";
9827
+ }
9828
+
9829
+ i.icon.talk:before {
9830
+ content: "\f075";
9831
+ }
9832
+
9833
+ i.icon.chat:before {
9834
+ content: "\f075";
9835
+ }
9836
+
9837
+ i.icon.shopping.cart:before {
9838
+ content: "\f07a";
9839
+ }
9840
+
9841
+ i.icon.bar.graph:before {
9842
+ content: "\f080";
9843
+ }
9844
+
9845
+ i.icon.area.graph:before {
9846
+ content: "\f1fe";
9847
+ }
9848
+
9849
+ i.icon.pie.graph:before {
9850
+ content: "\f200";
9851
+ }
9852
+
9853
+ i.icon.line.graph:before {
9854
+ content: "\f201";
9855
+ }
9856
+
9857
+ i.icon.key:before {
9858
+ content: "\f084";
9859
+ }
9860
+
9861
+ i.icon.cogs:before {
9862
+ content: "\f085";
9863
+ }
9864
+
9865
+ i.icon.discussions:before {
9866
+ content: "\f086";
9867
+ }
9868
+
9869
+ i.icon.like.outline:before {
9870
+ content: "\f087";
9871
+ }
9872
+
9873
+ i.icon.dislike.outline:before {
9874
+ content: "\f088";
9875
+ }
9876
+
9877
+ i.icon.heart.outline:before {
9878
+ content: "\f08a";
9879
+ }
9880
+
9881
+ i.icon.log.out:before {
9882
+ content: "\f08b";
9883
+ }
9884
+
9885
+ i.icon.thumb.tack:before {
9886
+ content: "\f08d";
9887
+ }
9888
+
9889
+ i.icon.winner:before {
9890
+ content: "\f091";
9891
+ }
9892
+
9893
+ i.icon.bookmark.outline:before {
9894
+ content: "\f097";
9895
+ }
9896
+
9897
+ i.icon.phone:before {
9898
+ content: "\f095";
9899
+ }
9900
+
9901
+ i.icon.phone.square:before {
9902
+ content: "\f098";
9903
+ }
9904
+
9905
+ i.icon.credit.card:before {
9906
+ content: "\f09d";
9907
+ }
9908
+
9909
+ i.icon.hdd.outline:before {
9910
+ content: "\f0a0";
9911
+ }
9912
+
9913
+ i.icon.bullhorn:before {
9914
+ content: "\f0a1";
9915
+ }
9916
+
9917
+ i.icon.bell:before {
9918
+ content: "\f0f3";
9919
+ }
9920
+
9921
+ i.icon.bell.outline:before {
9922
+ content: "\f0a2";
9923
+ }
9924
+
9925
+ i.icon.bell.slash:before {
9926
+ content: "\f1f6";
9927
+ }
9928
+
9929
+ i.icon.bell.slash.outline:before {
9930
+ content: "\f1f7";
9931
+ }
9932
+
9933
+ i.icon.hand.outline.right:before {
9934
+ content: "\f0a4";
9935
+ }
9936
+
9937
+ i.icon.hand.outline.left:before {
9938
+ content: "\f0a5";
9939
+ }
9940
+
9941
+ i.icon.hand.outline.up:before {
9942
+ content: "\f0a6";
9943
+ }
9944
+
9945
+ i.icon.hand.outline.down:before {
9946
+ content: "\f0a7";
9947
+ }
9948
+
9949
+ i.icon.globe:before {
9950
+ content: "\f0ac";
9951
+ }
9952
+
9953
+ i.icon.wrench:before {
9954
+ content: "\f0ad";
9955
+ }
9956
+
9957
+ i.icon.briefcase:before {
9958
+ content: "\f0b1";
9959
+ }
9960
+
9961
+ i.icon.group:before {
9962
+ content: "\f0c0";
9963
+ }
9964
+
9965
+ i.icon.flask:before {
9966
+ content: "\f0c3";
9967
+ }
9968
+
9969
+ i.icon.sidebar:before {
9970
+ content: "\f0c9";
9971
+ }
9972
+
9973
+ i.icon.bars:before {
9974
+ content: "\f0c9";
9975
+ }
9976
+
9977
+ i.icon.list.ul:before {
9978
+ content: "\f0ca";
9979
+ }
9980
+
9981
+ i.icon.list.ol:before {
9982
+ content: "\f0cb";
9983
+ }
9984
+
9985
+ i.icon.numbered.list:before {
9986
+ content: "\f0cb";
9987
+ }
9988
+
9989
+ i.icon.magic:before {
9990
+ content: "\f0d0";
9991
+ }
9992
+
9993
+ i.icon.truck:before {
9994
+ content: "\f0d1";
9995
+ }
9996
+
9997
+ i.icon.currency:before {
9998
+ content: "\f0d6";
9999
+ }
10000
+
10001
+ i.icon.triangle.down:before {
10002
+ content: "\f0d7";
10003
+ }
10004
+
10005
+ i.icon.dropdown:before {
10006
+ content: "\f0d7";
10007
+ }
10008
+
10009
+ i.icon.triangle.up:before {
10010
+ content: "\f0d8";
10011
+ }
10012
+
10013
+ i.icon.triangle.left:before {
10014
+ content: "\f0d9";
10015
+ }
10016
+
10017
+ i.icon.triangle.right:before {
10018
+ content: "\f0da";
10019
+ }
10020
+
10021
+ i.icon.envelope:before {
10022
+ content: "\f0e0";
10023
+ }
10024
+
10025
+ i.icon.conversation:before {
10026
+ content: "\f0e6";
10027
+ }
10028
+
10029
+ i.icon.umbrella:before {
10030
+ content: "\f0e9";
10031
+ }
10032
+
10033
+ i.icon.clipboard:before {
10034
+ content: "\f0ea";
10035
+ }
10036
+
10037
+ i.icon.lightbulb:before {
10038
+ content: "\f0eb";
10039
+ }
10040
+
10041
+ i.icon.ambulance:before {
10042
+ content: "\f0f9";
10043
+ }
10044
+
10045
+ i.icon.medkit:before {
10046
+ content: "\f0fa";
10047
+ }
10048
+
10049
+ i.icon.fighter.jet:before {
10050
+ content: "\f0fb";
10051
+ }
10052
+
10053
+ i.icon.beer:before {
10054
+ content: "\f0fc";
10055
+ }
10056
+
10057
+ i.icon.plus.square:before {
10058
+ content: "\f0fe";
10059
+ }
10060
+
10061
+ i.icon.computer:before {
10062
+ content: "\f108";
10063
+ }
10064
+
10065
+ i.icon.circle.outline:before {
10066
+ content: "\f10c";
10067
+ }
10068
+
10069
+ i.icon.intersex:before {
10070
+ content: "\f10c";
10071
+ }
10072
+
10073
+ i.icon.asexual:before {
10074
+ content: "\f10c";
10075
+ }
10076
+
10077
+ i.icon.spinner:before {
10078
+ content: "\f110";
10079
+ }
10080
+
10081
+ i.icon.gamepad:before {
10082
+ content: "\f11b";
10083
+ }
10084
+
10085
+ i.icon.star.half.full:before {
10086
+ content: "\f123";
10087
+ }
10088
+
10089
+ i.icon.question:before {
10090
+ content: "\f128";
10091
+ }
10092
+
10093
+ i.icon.eraser:before {
10094
+ content: "\f12d";
10095
+ }
10096
+
10097
+ i.icon.microphone:before {
10098
+ content: "\f130";
10099
+ }
10100
+
10101
+ i.icon.microphone.slash:before {
10102
+ content: "\f131";
10103
+ }
10104
+
10105
+ i.icon.shield:before {
10106
+ content: "\f132";
10107
+ }
10108
+
10109
+ i.icon.target:before {
10110
+ content: "\f140";
10111
+ }
10112
+
10113
+ i.icon.play.circle:before {
10114
+ content: "\f144";
10115
+ }
10116
+
10117
+ i.icon.pencil.square:before {
10118
+ content: "\f14b";
10119
+ }
10120
+
10121
+ i.icon.compass:before {
10122
+ content: "\f14e";
10123
+ }
10124
+
10125
+ i.icon.amex:before {
10126
+ content: "\f1f3";
10127
+ }
10128
+
10129
+ i.icon.eur:before {
10130
+ content: "\f153";
10131
+ }
10132
+
10133
+ i.icon.gbp:before {
10134
+ content: "\f154";
10135
+ }
10136
+
10137
+ i.icon.usd:before {
10138
+ content: "\f155";
10139
+ }
10140
+
10141
+ i.icon.inr:before {
10142
+ content: "\f156";
10143
+ }
10144
+
10145
+ i.icon.cny:before,
10146
+ i.icon.rmb:before,
10147
+ i.icon.jpy:before {
10148
+ content: "\f157";
10149
+ }
10150
+
10151
+ i.icon.rouble:before,
10152
+ i.icon.rub:before {
10153
+ content: "\f158";
10154
+ }
10155
+
10156
+ i.icon.krw:before {
10157
+ content: "\f159";
10158
+ }
10159
+
10160
+ i.icon.btc:before {
10161
+ content: "\f15a";
10162
+ }
10163
+
10164
+ i.icon.sheqel:before,
10165
+ i.icon.ils:before {
10166
+ content: "\f20b";
10167
+ }
10168
+
10169
+ i.icon.try:before {
10170
+ content: "\f195";
10171
+ }
10172
+
10173
+ i.icon.zip:before {
10174
+ content: "\f187";
10175
+ }
10176
+
10177
+ i.icon.dot.circle.outline:before {
10178
+ content: "\f192";
10179
+ }
10180
+
10181
+ i.icon.sliders:before {
10182
+ content: "\f1de";
10183
+ }
10184
+
10185
+ i.icon.wi-fi:before {
10186
+ content: "\f1eb";
10187
+ }
10188
+
10189
+ i.icon.graduation:before {
10190
+ content: "\f19d";
10191
+ }
10192
+
10193
+ i.icon.weixin:before {
10194
+ content: "\f1d7";
10195
+ }
10196
+
10197
+ i.icon.binoculars:before {
10198
+ content: "\f1e5";
10199
+ }
10200
+
10201
+ i.icon.gratipay:before {
10202
+ content: "\f184";
10203
+ }
10204
+
10205
+ i.icon.genderless:before {
10206
+ content: "\f1db";
10207
+ }
10208
+
10209
+ i.icon.teletype:before {
10210
+ content: "\f1e4";
10211
+ }
10212
+
10213
+ i.icon.power.cord:before {
10214
+ content: "\f1e6";
10215
+ }
10216
+
10217
+ i.icon.tty:before {
10218
+ content: "\f1e4";
10219
+ }
10220
+
10221
+ i.icon.cc:before {
10222
+ content: "\f20a";
10223
+ }
10224
+
10225
+ i.icon.plus.cart:before {
10226
+ content: "\f217";
10227
+ }
10228
+
10229
+ i.icon.arrow.down.cart:before {
10230
+ content: "\f218";
10231
+ }
10232
+
10233
+ i.icon.detective:before {
10234
+ content: "\f21b";
10235
+ }
10236
+
10237
+ i.icon.venus:before {
10238
+ content: "\f221";
10239
+ }
10240
+
10241
+ i.icon.mars:before {
10242
+ content: "\f222";
10243
+ }
10244
+
10245
+ i.icon.mercury:before {
10246
+ content: "\f223";
10247
+ }
10248
+
10249
+ i.icon.venus.double:before {
10250
+ content: "\f226";
10251
+ }
10252
+
10253
+ i.icon.female.homosexual:before {
10254
+ content: "\f226";
10255
+ }
10256
+
10257
+ i.icon.mars.double:before {
10258
+ content: "\f227";
10259
+ }
10260
+
10261
+ i.icon.male.homosexual:before {
10262
+ content: "\f227";
10263
+ }
10264
+
10265
+ i.icon.venus.mars:before {
10266
+ content: "\f228";
10267
+ }
10268
+
10269
+ i.icon.mars.stroke:before {
10270
+ content: "\f229";
10271
+ }
10272
+
10273
+ i.icon.mars.alternate:before {
10274
+ content: "\f229";
10275
+ }
10276
+
10277
+ i.icon.mars.vertical:before {
10278
+ content: "\f22a";
10279
+ }
10280
+
10281
+ i.icon.mars.horizontal:before {
10282
+ content: "\f22b";
10283
+ }
10284
+
10285
+ i.icon.mars.stroke.vertical:before {
10286
+ content: "\f22a";
10287
+ }
10288
+
10289
+ i.icon.mars.stroke.horizontal:before {
10290
+ content: "\f22b";
10291
+ }
10292
+
10293
+ i.icon.facebook.official {
10294
+ content: "\f230";
10295
+ }
10296
+
10297
+ i.icon.pinterest.official {
10298
+ content: "\f231";
10299
+ }
10300
+
10301
+ i.icon.bed:before {
10302
+ content: "\f236";
10303
+ }
10304
+
10305
+ /*******************************
10306
+ Site Overrides
10307
+ *******************************/
10308
+ /*!
10309
+ * # Semantic UI 2.1.7 - Image
10310
+ * http://github.com/semantic-org/semantic-ui/
10311
+ *
10312
+ *
10313
+ * Copyright 2015 Contributors
10314
+ * Released under the MIT license
10315
+ * http://opensource.org/licenses/MIT
10316
+ *
10317
+ */
10318
+
10319
+ /*******************************
10320
+ Image
10321
+ *******************************/
10322
+
10323
+ .ui.image {
10324
+ position: relative;
10325
+ display: inline-block;
10326
+ vertical-align: middle;
10327
+ max-width: 100%;
10328
+ background-color: transparent;
10329
+ }
10330
+
10331
+ img.ui.image {
10332
+ display: block;
10333
+ }
10334
+
10335
+ .ui.image svg,
10336
+ .ui.image img {
10337
+ display: block;
10338
+ max-width: 100%;
10339
+ height: auto;
10340
+ }
10341
+
10342
+ /*******************************
10343
+ States
10344
+ *******************************/
10345
+
10346
+ .ui.hidden.images,
10347
+ .ui.hidden.image {
10348
+ display: none;
10349
+ }
10350
+
10351
+ .ui.disabled.images,
10352
+ .ui.disabled.image {
10353
+ cursor: default;
10354
+ opacity: 0.45;
10355
+ }
10356
+
10357
+ /*******************************
10358
+ Variations
10359
+ *******************************/
10360
+
10361
+ /*--------------
10362
+ Inline
10363
+ ---------------*/
10364
+
10365
+ .ui.inline.image,
10366
+ .ui.inline.image svg,
10367
+ .ui.inline.image img {
10368
+ display: inline-block;
10369
+ }
10370
+
10371
+ /*------------------
10372
+ Vertical Aligned
10373
+ -------------------*/
10374
+
10375
+ .ui.top.aligned.images .image,
10376
+ .ui.top.aligned.image,
10377
+ .ui.top.aligned.image svg,
10378
+ .ui.top.aligned.image img {
10379
+ display: inline-block;
10380
+ vertical-align: top;
10381
+ }
10382
+
10383
+ .ui.middle.aligned.images .image,
10384
+ .ui.middle.aligned.image,
10385
+ .ui.middle.aligned.image svg,
10386
+ .ui.middle.aligned.image img {
10387
+ display: inline-block;
10388
+ vertical-align: middle;
10389
+ }
10390
+
10391
+ .ui.bottom.aligned.images .image,
10392
+ .ui.bottom.aligned.image,
10393
+ .ui.bottom.aligned.image svg,
10394
+ .ui.bottom.aligned.image img {
10395
+ display: inline-block;
10396
+ vertical-align: bottom;
10397
+ }
10398
+
10399
+ /*--------------
10400
+ Rounded
10401
+ ---------------*/
10402
+
10403
+ .ui.rounded.images .image,
10404
+ .ui.rounded.image,
10405
+ .ui.rounded.images .image > *,
10406
+ .ui.rounded.image > * {
10407
+ border-radius: 0.3125em;
10408
+ }
10409
+
10410
+ /*--------------
10411
+ Bordered
10412
+ ---------------*/
10413
+
10414
+ .ui.bordered.images .image,
10415
+ .ui.bordered.images img,
10416
+ .ui.bordered.images svg,
10417
+ .ui.bordered.image img,
10418
+ .ui.bordered.image svg,
10419
+ img.ui.bordered.image {
10420
+ border: 1px solid rgba(0, 0, 0, 0.1);
10421
+ }
10422
+
10423
+ /*--------------
10424
+ Circular
10425
+ ---------------*/
10426
+
10427
+ .ui.circular.images,
10428
+ .ui.circular.image {
10429
+ overflow: hidden;
10430
+ }
10431
+
10432
+ .ui.circular.images .image,
10433
+ .ui.circular.image,
10434
+ .ui.circular.images .image > *,
10435
+ .ui.circular.image > * {
10436
+ border-radius: 500rem;
10437
+ }
10438
+
10439
+ /*--------------
10440
+ Fluid
10441
+ ---------------*/
10442
+
10443
+ .ui.fluid.images,
10444
+ .ui.fluid.image,
10445
+ .ui.fluid.images img,
10446
+ .ui.fluid.images svg,
10447
+ .ui.fluid.image svg,
10448
+ .ui.fluid.image img {
10449
+ display: block;
10450
+ width: 100%;
10451
+ height: auto;
10452
+ }
10453
+
10454
+ /*--------------
10455
+ Avatar
10456
+ ---------------*/
10457
+
10458
+ .ui.avatar.images .image,
10459
+ .ui.avatar.images img,
10460
+ .ui.avatar.images svg,
10461
+ .ui.avatar.image img,
10462
+ .ui.avatar.image svg,
10463
+ .ui.avatar.image {
10464
+ margin-right: 0.25em;
10465
+ display: inline-block;
10466
+ width: 2em;
10467
+ height: 2em;
10468
+ border-radius: 500rem;
10469
+ }
10470
+
10471
+ /*-------------------
10472
+ Spaced
10473
+ --------------------*/
10474
+
10475
+ .ui.spaced.image {
10476
+ display: inline-block !important;
10477
+ margin-left: 0.5em;
10478
+ margin-right: 0.5em;
10479
+ }
10480
+
10481
+ .ui[class*="left spaced"].image {
10482
+ margin-left: 0.5em;
10483
+ margin-right: 0em;
10484
+ }
10485
+
10486
+ .ui[class*="right spaced"].image {
10487
+ margin-left: 0em;
10488
+ margin-right: 0.5em;
10489
+ }
10490
+
10491
+ /*-------------------
10492
+ Floated
10493
+ --------------------*/
10494
+
10495
+ .ui.floated.image,
10496
+ .ui.floated.images {
10497
+ float: left;
10498
+ margin-right: 1em;
10499
+ margin-bottom: 1em;
10500
+ }
10501
+
10502
+ .ui.right.floated.images,
10503
+ .ui.right.floated.image {
10504
+ float: right;
10505
+ margin-right: 0em;
10506
+ margin-bottom: 1em;
10507
+ margin-left: 1em;
10508
+ }
10509
+
10510
+ .ui.floated.images:last-child,
10511
+ .ui.floated.image:last-child {
10512
+ margin-bottom: 0em;
10513
+ }
10514
+
10515
+ .ui.centered.images,
10516
+ .ui.centered.image {
10517
+ margin-left: auto;
10518
+ margin-right: auto;
10519
+ }
10520
+
10521
+ /*--------------
10522
+ Sizes
10523
+ ---------------*/
10524
+
10525
+ .ui.mini.images .image,
10526
+ .ui.mini.images img,
10527
+ .ui.mini.images svg,
10528
+ .ui.mini.image {
10529
+ width: 35px;
10530
+ height: auto;
10531
+ font-size: 0.71428571rem;
10532
+ }
10533
+
10534
+ .ui.tiny.images .image,
10535
+ .ui.tiny.images img,
10536
+ .ui.tiny.images svg,
10537
+ .ui.tiny.image {
10538
+ width: 80px;
10539
+ height: auto;
10540
+ font-size: 0.85714286rem;
10541
+ }
10542
+
10543
+ .ui.small.images .image,
10544
+ .ui.small.images img,
10545
+ .ui.small.images svg,
10546
+ .ui.small.image {
10547
+ width: 150px;
10548
+ height: auto;
10549
+ font-size: 0.92857143rem;
10550
+ }
10551
+
10552
+ .ui.medium.images .image,
10553
+ .ui.medium.images img,
10554
+ .ui.medium.images svg,
10555
+ .ui.medium.image {
10556
+ width: 300px;
10557
+ height: auto;
10558
+ font-size: 1rem;
10559
+ }
10560
+
10561
+ .ui.large.images .image,
10562
+ .ui.large.images img,
10563
+ .ui.large.images svg,
10564
+ .ui.large.image {
10565
+ width: 450px;
10566
+ height: auto;
10567
+ font-size: 1.14285714rem;
10568
+ }
10569
+
10570
+ .ui.big.images .image,
10571
+ .ui.big.images img,
10572
+ .ui.big.images svg,
10573
+ .ui.big.image {
10574
+ width: 600px;
10575
+ height: auto;
10576
+ font-size: 1.28571429rem;
10577
+ }
10578
+
10579
+ .ui.huge.images .image,
10580
+ .ui.huge.images img,
10581
+ .ui.huge.images svg,
10582
+ .ui.huge.image {
10583
+ width: 800px;
10584
+ height: auto;
10585
+ font-size: 1.42857143rem;
10586
+ }
10587
+
10588
+ .ui.massive.images .image,
10589
+ .ui.massive.images img,
10590
+ .ui.massive.images svg,
10591
+ .ui.massive.image {
10592
+ width: 960px;
10593
+ height: auto;
10594
+ font-size: 1.71428571rem;
10595
+ }
10596
+
10597
+ /*******************************
10598
+ Groups
10599
+ *******************************/
10600
+
10601
+ .ui.images {
10602
+ font-size: 0em;
10603
+ margin: 0em -0.25rem 0rem;
10604
+ }
10605
+
10606
+ .ui.images .image,
10607
+ .ui.images img,
10608
+ .ui.images svg {
10609
+ display: inline-block;
10610
+ margin: 0em 0.25rem 0.5rem;
10611
+ }
10612
+
10613
+ /*******************************
10614
+ Theme Overrides
10615
+ *******************************/
10616
+
10617
+ /*******************************
10618
+ Site Overrides
10619
+ *******************************/
10620
+ /*!
10621
+ * # Semantic UI 2.1.7 - Input
10622
+ * http://github.com/semantic-org/semantic-ui/
10623
+ *
10624
+ *
10625
+ * Copyright 2015 Contributors
10626
+ * Released under the MIT license
10627
+ * http://opensource.org/licenses/MIT
10628
+ *
10629
+ */
10630
+
10631
+ /*******************************
10632
+ Standard
10633
+ *******************************/
10634
+
10635
+ /*--------------------
10636
+ Inputs
10637
+ ---------------------*/
10638
+
10639
+ .ui.input {
10640
+ position: relative;
10641
+ font-weight: normal;
10642
+ font-style: normal;
10643
+ display: -webkit-inline-box;
10644
+ display: -webkit-inline-flex;
10645
+ display: -ms-inline-flexbox;
10646
+ display: inline-flex;
10647
+ color: rgba(0, 0, 0, 0.87);
10648
+ }
10649
+
10650
+ .ui.input input {
10651
+ margin: 0em;
10652
+ max-width: 100%;
10653
+ -webkit-box-flex: 1;
10654
+ -webkit-flex: 1 0 auto;
10655
+ -ms-flex: 1 0 auto;
10656
+ flex: 1 0 auto;
10657
+ outline: none;
10658
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
10659
+ text-align: left;
10660
+ line-height: 1.2142em;
10661
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
10662
+ padding: 0.67861429em 1em;
10663
+ background: #ffffff;
10664
+ border: 1px solid rgba(34, 36, 38, 0.15);
10665
+ color: rgba(0, 0, 0, 0.87);
10666
+ border-radius: 0.28571429rem;
10667
+ -webkit-transition: box-shadow 0.1s ease, border-color 0.1s ease;
10668
+ transition: box-shadow 0.1s ease, border-color 0.1s ease;
10669
+ box-shadow: none;
10670
+ }
10671
+
10672
+ /*--------------------
10673
+ Placeholder
10674
+ ---------------------*/
10675
+
10676
+ /* browsers require these rules separate */
10677
+
10678
+ .ui.input input::-webkit-input-placeholder {
10679
+ color: rgba(0, 0, 0, 0.4);
10680
+ }
10681
+
10682
+ .ui.input input::-moz-placeholder {
10683
+ color: rgba(0, 0, 0, 0.4);
10684
+ }
10685
+
10686
+ .ui.input input::-ms-input-placeholder {
10687
+ color: rgba(0, 0, 0, 0.4);
10688
+ }
10689
+
10690
+ /*******************************
10691
+ States
10692
+ *******************************/
10693
+
10694
+ /*--------------------
10695
+ Disabled
10696
+ ---------------------*/
10697
+
10698
+ .ui.disabled.input,
10699
+ .ui.input input[disabled] {
10700
+ opacity: 0.45;
10701
+ }
10702
+
10703
+ .ui.disabled.input input {
10704
+ pointer-events: none;
10705
+ }
10706
+
10707
+ /*--------------------
10708
+ Active
10709
+ ---------------------*/
10710
+
10711
+ .ui.input input:active,
10712
+ .ui.input.down input {
10713
+ border-color: rgba(0, 0, 0, 0.3);
10714
+ background: #fafafa;
10715
+ color: rgba(0, 0, 0, 0.87);
10716
+ box-shadow: none;
10717
+ }
10718
+
10719
+ /*--------------------
10720
+ Loading
10721
+ ---------------------*/
10722
+
10723
+ .ui.loading.loading.input > i.icon:before {
10724
+ position: absolute;
10725
+ content: '';
10726
+ top: 50%;
10727
+ left: 50%;
10728
+ margin: -0.64285714em 0em 0em -0.64285714em;
10729
+ width: 1.28571429em;
10730
+ height: 1.28571429em;
10731
+ border-radius: 500rem;
10732
+ border: 0.2em solid rgba(0, 0, 0, 0.1);
10733
+ }
10734
+
10735
+ .ui.loading.loading.input > i.icon:after {
10736
+ position: absolute;
10737
+ content: '';
10738
+ top: 50%;
10739
+ left: 50%;
10740
+ margin: -0.64285714em 0em 0em -0.64285714em;
10741
+ width: 1.28571429em;
10742
+ height: 1.28571429em;
10743
+ -webkit-animation: button-spin 0.6s linear;
10744
+ animation: button-spin 0.6s linear;
10745
+ -webkit-animation-iteration-count: infinite;
10746
+ animation-iteration-count: infinite;
10747
+ border-radius: 500rem;
10748
+ border-color: #767676 transparent transparent;
10749
+ border-style: solid;
10750
+ border-width: 0.2em;
10751
+ box-shadow: 0px 0px 0px 1px transparent;
10752
+ }
10753
+
10754
+ /*--------------------
10755
+ Focus
10756
+ ---------------------*/
10757
+
10758
+ .ui.input.focus input,
10759
+ .ui.input input:focus {
10760
+ border-color: #85b7d9;
10761
+ background: #ffffff;
10762
+ color: rgba(0, 0, 0, 0.8);
10763
+ box-shadow: none;
10764
+ }
10765
+
10766
+ .ui.input.focus input::-webkit-input-placeholder,
10767
+ .ui.input input:focus::-webkit-input-placeholder {
10768
+ color: rgba(0, 0, 0, 0.87);
10769
+ }
10770
+
10771
+ .ui.input.focus input::-moz-placeholder,
10772
+ .ui.input input:focus::-moz-placeholder {
10773
+ color: rgba(0, 0, 0, 0.87);
10774
+ }
10775
+
10776
+ .ui.input.focus input::-ms-input-placeholder,
10777
+ .ui.input input:focus::-ms-input-placeholder {
10778
+ color: rgba(0, 0, 0, 0.87);
10779
+ }
10780
+
10781
+ /*--------------------
10782
+ Error
10783
+ ---------------------*/
10784
+
10785
+ .ui.input.error input {
10786
+ background-color: #fff6f6;
10787
+ border-color: #e0b4b4;
10788
+ color: #9f3a38;
10789
+ box-shadow: none;
10790
+ }
10791
+
10792
+ /* Error Placeholder */
10793
+
10794
+ .ui.input.error input::-webkit-input-placeholder {
10795
+ color: #e7bdbc;
10796
+ }
10797
+
10798
+ .ui.input.error input::-moz-placeholder {
10799
+ color: #e7bdbc;
10800
+ }
10801
+
10802
+ .ui.input.error input::-ms-input-placeholder {
10803
+ color: #e7bdbc;
10804
+ }
10805
+
10806
+ /* Focused Error Placeholder */
10807
+
10808
+ .ui.input.error input:focus::-webkit-input-placeholder {
10809
+ color: #da9796;
10810
+ }
10811
+
10812
+ .ui.input.error input:focus::-moz-placeholder {
10813
+ color: #da9796;
10814
+ }
10815
+
10816
+ .ui.input.error input:focus::-ms-input-placeholder {
10817
+ color: #da9796;
10818
+ }
10819
+
10820
+ /*******************************
10821
+ Variations
10822
+ *******************************/
10823
+
10824
+ /*--------------------
10825
+ Transparent
10826
+ ---------------------*/
10827
+
10828
+ .ui.transparent.input input {
10829
+ border-color: transparent !important;
10830
+ background-color: transparent !important;
10831
+ padding: 0em !important;
10832
+ box-shadow: none !important;
10833
+ }
10834
+
10835
+ /* Transparent Icon */
10836
+
10837
+ .ui.transparent.icon.input > i.icon {
10838
+ width: 1.1em;
10839
+ }
10840
+
10841
+ .ui.transparent.icon.input > input {
10842
+ padding-left: 0em !important;
10843
+ padding-right: 2em !important;
10844
+ }
10845
+
10846
+ .ui.transparent[class*="left icon"].input > input {
10847
+ padding-left: 2em !important;
10848
+ padding-right: 0em !important;
10849
+ }
10850
+
10851
+ /* Transparent Inverted */
10852
+
10853
+ .ui.transparent.inverted.input {
10854
+ color: #ffffff;
10855
+ }
10856
+
10857
+ .ui.transparent.inverted.input input {
10858
+ color: inherit;
10859
+ }
10860
+
10861
+ .ui.transparent.inverted.input input::-webkit-input-placeholder {
10862
+ color: rgba(255, 255, 255, 0.5);
10863
+ }
10864
+
10865
+ .ui.transparent.inverted.input input::-moz-placeholder {
10866
+ color: rgba(255, 255, 255, 0.5);
10867
+ }
10868
+
10869
+ .ui.transparent.inverted.input input::-ms-input-placeholder {
10870
+ color: rgba(255, 255, 255, 0.5);
10871
+ }
10872
+
10873
+ /*--------------------
10874
+ Icon
10875
+ ---------------------*/
10876
+
10877
+ .ui.icon.input > i.icon {
10878
+ cursor: default;
10879
+ position: absolute;
10880
+ line-height: 1;
10881
+ text-align: center;
10882
+ top: 0px;
10883
+ right: 0px;
10884
+ margin: 0em;
10885
+ height: 100%;
10886
+ width: 2.67142857em;
10887
+ opacity: 0.5;
10888
+ border-radius: 0em 0.28571429rem 0.28571429rem 0em;
10889
+ -webkit-transition: opacity 0.3s ease;
10890
+ transition: opacity 0.3s ease;
10891
+ }
10892
+
10893
+ .ui.icon.input > i.icon:not(.link) {
10894
+ pointer-events: none;
10895
+ }
10896
+
10897
+ .ui.icon.input input {
10898
+ padding-right: 2.67142857em !important;
10899
+ }
10900
+
10901
+ .ui.icon.input > i.icon:before,
10902
+ .ui.icon.input > i.icon:after {
10903
+ left: 0;
10904
+ position: absolute;
10905
+ text-align: center;
10906
+ top: 50%;
10907
+ width: 100%;
10908
+ margin-top: -0.5em;
10909
+ }
10910
+
10911
+ .ui.icon.input > i.link.icon {
10912
+ cursor: pointer;
10913
+ }
10914
+
10915
+ .ui.icon.input > i.circular.icon {
10916
+ top: 0.35em;
10917
+ right: 0.5em;
10918
+ }
10919
+
10920
+ /* Left Icon Input */
10921
+
10922
+ .ui[class*="left icon"].input > i.icon {
10923
+ right: auto;
10924
+ left: 1px;
10925
+ border-radius: 0.28571429rem 0em 0em 0.28571429rem;
10926
+ }
10927
+
10928
+ .ui[class*="left icon"].input > i.circular.icon {
10929
+ right: auto;
10930
+ left: 0.5em;
10931
+ }
10932
+
10933
+ .ui[class*="left icon"].input > input {
10934
+ padding-left: 2.67142857em !important;
10935
+ padding-right: 1em !important;
10936
+ }
10937
+
10938
+ /* Focus */
10939
+
10940
+ .ui.icon.input > input:focus ~ i.icon {
10941
+ opacity: 1;
10942
+ }
10943
+
10944
+ /*--------------------
10945
+ Labeled
10946
+ ---------------------*/
10947
+
10948
+ /* Adjacent Label */
10949
+
10950
+ .ui.labeled.input > .label {
10951
+ -webkit-box-flex: 0;
10952
+ -webkit-flex: 0 0 auto;
10953
+ -ms-flex: 0 0 auto;
10954
+ flex: 0 0 auto;
10955
+ margin: 0;
10956
+ font-size: 1em;
10957
+ }
10958
+
10959
+ .ui.labeled.input > .label:not(.corner) {
10960
+ padding-top: 0.78571429em;
10961
+ padding-bottom: 0.78571429em;
10962
+ }
10963
+
10964
+ /* Regular Label on Left */
10965
+
10966
+ .ui.labeled.input:not([class*="corner labeled"]) .label:first-child {
10967
+ border-top-right-radius: 0px;
10968
+ border-bottom-right-radius: 0px;
10969
+ }
10970
+
10971
+ .ui.labeled.input:not([class*="corner labeled"]) .label:first-child + input {
10972
+ border-top-left-radius: 0px;
10973
+ border-bottom-left-radius: 0px;
10974
+ border-left-color: transparent;
10975
+ }
10976
+
10977
+ .ui.labeled.input:not([class*="corner labeled"]) .label:first-child + input:focus {
10978
+ border-left-color: #85b7d9;
10979
+ }
10980
+
10981
+ /* Regular Label on Right */
10982
+
10983
+ .ui[class*="right labeled"].input input {
10984
+ border-top-right-radius: 0px !important;
10985
+ border-bottom-right-radius: 0px !important;
10986
+ border-right-color: transparent !important;
10987
+ }
10988
+
10989
+ .ui[class*="right labeled"].input input + .label {
10990
+ border-top-left-radius: 0px;
10991
+ border-bottom-left-radius: 0px;
10992
+ }
10993
+
10994
+ .ui[class*="right labeled"].input input:focus {
10995
+ border-right-color: #85b7d9 !important;
10996
+ }
10997
+
10998
+ /* Corner Label */
10999
+
11000
+ .ui.labeled.input .corner.label {
11001
+ top: 1px;
11002
+ right: 1px;
11003
+ font-size: 0.64285714em;
11004
+ border-radius: 0em 0.28571429rem 0em 0em;
11005
+ }
11006
+
11007
+ /* Spacing with corner label */
11008
+
11009
+ .ui[class*="corner labeled"]:not([class*="left corner labeled"]).labeled.input input {
11010
+ padding-right: 2.5em !important;
11011
+ }
11012
+
11013
+ .ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > input {
11014
+ padding-right: 3.25em !important;
11015
+ }
11016
+
11017
+ .ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > .icon {
11018
+ margin-right: 1.25em;
11019
+ }
11020
+
11021
+ /* Left Labeled */
11022
+
11023
+ .ui[class*="left corner labeled"].labeled.input input {
11024
+ padding-left: 2.5em !important;
11025
+ }
11026
+
11027
+ .ui[class*="left corner labeled"].icon.input > input {
11028
+ padding-left: 3.25em !important;
11029
+ }
11030
+
11031
+ .ui[class*="left corner labeled"].icon.input > .icon {
11032
+ margin-left: 1.25em;
11033
+ }
11034
+
11035
+ /* Corner Label Position */
11036
+
11037
+ .ui.input > .ui.corner.label {
11038
+ top: 1px;
11039
+ right: 1px;
11040
+ }
11041
+
11042
+ .ui.input > .ui.left.corner.label {
11043
+ right: auto;
11044
+ left: 1px;
11045
+ }
11046
+
11047
+ /*--------------------
11048
+ Action
11049
+ ---------------------*/
11050
+
11051
+ .ui.action.input > .button,
11052
+ .ui.action.input > .buttons {
11053
+ display: -webkit-box;
11054
+ display: -webkit-flex;
11055
+ display: -ms-flexbox;
11056
+ display: flex;
11057
+ -webkit-box-align: center;
11058
+ -webkit-align-items: center;
11059
+ -ms-flex-align: center;
11060
+ align-items: center;
11061
+ -webkit-box-flex: 0;
11062
+ -webkit-flex: 0 0 auto;
11063
+ -ms-flex: 0 0 auto;
11064
+ flex: 0 0 auto;
11065
+ }
11066
+
11067
+ .ui.action.input > .button,
11068
+ .ui.action.input > .buttons > .button {
11069
+ padding-top: 0.78571429em;
11070
+ padding-bottom: 0.78571429em;
11071
+ margin: 0;
11072
+ }
11073
+
11074
+ /* Button on Right */
11075
+
11076
+ .ui.action.input:not([class*="left action"]) > input {
11077
+ border-top-right-radius: 0px !important;
11078
+ border-bottom-right-radius: 0px !important;
11079
+ border-right-color: transparent !important;
11080
+ }
11081
+
11082
+ .ui.action.input:not([class*="left action"]) > .dropdown,
11083
+ .ui.action.input:not([class*="left action"]) > .button,
11084
+ .ui.action.input:not([class*="left action"]) > .buttons > .button {
11085
+ border-radius: 0px;
11086
+ }
11087
+
11088
+ .ui.action.input:not([class*="left action"]) > .dropdown:last-child,
11089
+ .ui.action.input:not([class*="left action"]) > .button:last-child,
11090
+ .ui.action.input:not([class*="left action"]) > .buttons:last-child > .button {
11091
+ border-radius: 0px 0.28571429rem 0.28571429rem 0px;
11092
+ }
11093
+
11094
+ /* Input Focus */
11095
+
11096
+ .ui.action.input:not([class*="left action"]) input:focus {
11097
+ border-right-color: #85b7d9 !important;
11098
+ }
11099
+
11100
+ /* Button on Left */
11101
+
11102
+ .ui[class*="left action"].input > input {
11103
+ border-top-left-radius: 0px !important;
11104
+ border-bottom-left-radius: 0px !important;
11105
+ border-left-color: transparent !important;
11106
+ }
11107
+
11108
+ .ui[class*="left action"].input > .dropdown,
11109
+ .ui[class*="left action"].input > .button,
11110
+ .ui[class*="left action"].input > .buttons > .button {
11111
+ border-radius: 0px;
11112
+ }
11113
+
11114
+ .ui[class*="left action"].input > .dropdown:first-child,
11115
+ .ui[class*="left action"].input > .button:first-child,
11116
+ .ui[class*="left action"].input > .buttons:first-child > .button {
11117
+ border-radius: 0.28571429rem 0px 0px 0.28571429rem;
11118
+ }
11119
+
11120
+ /* Input Focus */
11121
+
11122
+ .ui[class*="left action"].input > input:focus {
11123
+ border-left-color: #85b7d9 !important;
11124
+ }
11125
+
11126
+ /*--------------------
11127
+ Inverted
11128
+ ---------------------*/
11129
+
11130
+ /* Standard */
11131
+
11132
+ .ui.inverted.input input {
11133
+ border: none;
11134
+ }
11135
+
11136
+ /*--------------------
11137
+ Fluid
11138
+ ---------------------*/
11139
+
11140
+ .ui.fluid.input {
11141
+ display: -webkit-box;
11142
+ display: -webkit-flex;
11143
+ display: -ms-flexbox;
11144
+ display: flex;
11145
+ }
11146
+
11147
+ .ui.fluid.input > input {
11148
+ width: 0px !important;
11149
+ }
11150
+
11151
+ /*--------------------
11152
+ Size
11153
+ ---------------------*/
11154
+
11155
+ .ui.mini.input {
11156
+ font-size: 0.71428571em;
11157
+ }
11158
+
11159
+ .ui.small.input {
11160
+ font-size: 0.92857143em;
11161
+ }
11162
+
11163
+ .ui.input {
11164
+ font-size: 1em;
11165
+ }
11166
+
11167
+ .ui.large.input {
11168
+ font-size: 1.14285714em;
11169
+ }
11170
+
11171
+ .ui.big.input {
11172
+ font-size: 1.28571429em;
11173
+ }
11174
+
11175
+ .ui.huge.input {
11176
+ font-size: 1.42857143em;
11177
+ }
11178
+
11179
+ .ui.massive.input {
11180
+ font-size: 1.71428571em;
11181
+ }
11182
+
11183
+ /*******************************
11184
+ Theme Overrides
11185
+ *******************************/
11186
+
11187
+ /*******************************
11188
+ Site Overrides
11189
+ *******************************/
11190
+ /*!
11191
+ * # Semantic UI 2.1.7 - Label
11192
+ * http://github.com/semantic-org/semantic-ui/
11193
+ *
11194
+ *
11195
+ * Copyright 2015 Contributors
11196
+ * Released under the MIT license
11197
+ * http://opensource.org/licenses/MIT
11198
+ *
11199
+ */
11200
+
11201
+ /*******************************
11202
+ Label
11203
+ *******************************/
11204
+
11205
+ .ui.label {
11206
+ display: inline-block;
11207
+ line-height: 1;
11208
+ vertical-align: baseline;
11209
+ margin: 0em 0.14285714em;
11210
+ background-color: #e8e8e8;
11211
+ background-image: none;
11212
+ padding: 0.5833em 0.833em;
11213
+ color: rgba(0, 0, 0, 0.6);
11214
+ text-transform: none;
11215
+ font-weight: bold;
11216
+ border: 0px solid transparent;
11217
+ border-radius: 0.28571429rem;
11218
+ -webkit-transition: background 0.1s ease;
11219
+ transition: background 0.1s ease;
11220
+ }
11221
+
11222
+ .ui.label:first-child {
11223
+ margin-left: 0em;
11224
+ }
11225
+
11226
+ .ui.label:last-child {
11227
+ margin-right: 0em;
11228
+ }
11229
+
11230
+ /* Link */
11231
+
11232
+ a.ui.label {
11233
+ cursor: pointer;
11234
+ }
11235
+
11236
+ /* Inside Link */
11237
+
11238
+ .ui.label > a {
11239
+ cursor: pointer;
11240
+ color: inherit;
11241
+ opacity: 0.5;
11242
+ -webkit-transition: 0.1s opacity ease;
11243
+ transition: 0.1s opacity ease;
11244
+ }
11245
+
11246
+ .ui.label > a:hover {
11247
+ opacity: 1;
11248
+ }
11249
+
11250
+ /* Image */
11251
+
11252
+ .ui.label > img {
11253
+ width: auto !important;
11254
+ vertical-align: middle;
11255
+ height: 2.1666em !important;
11256
+ }
11257
+
11258
+ /* Icon */
11259
+
11260
+ .ui.label > .icon {
11261
+ width: auto;
11262
+ margin: 0em 0.75em 0em 0em;
11263
+ }
11264
+
11265
+ /* Detail */
11266
+
11267
+ .ui.label > .detail {
11268
+ display: inline-block;
11269
+ vertical-align: top;
11270
+ font-weight: bold;
11271
+ margin-left: 1em;
11272
+ opacity: 0.8;
11273
+ }
11274
+
11275
+ .ui.label > .detail .icon {
11276
+ margin: 0em 0.25em 0em 0em;
11277
+ }
11278
+
11279
+ /* Removable label */
11280
+
11281
+ .ui.label > .close.icon,
11282
+ .ui.label > .delete.icon {
11283
+ cursor: pointer;
11284
+ margin-right: 0em;
11285
+ margin-left: 0.5em;
11286
+ font-size: 0.92857143em;
11287
+ opacity: 0.5;
11288
+ -webkit-transition: background 0.1s ease;
11289
+ transition: background 0.1s ease;
11290
+ }
11291
+
11292
+ .ui.label > .delete.icon:hover {
11293
+ opacity: 1;
11294
+ }
11295
+
11296
+ /*-------------------
11297
+ Group
11298
+ --------------------*/
11299
+
11300
+ .ui.labels > .label {
11301
+ margin: 0em 0.5em 0.5em 0em;
11302
+ }
11303
+
11304
+ /*-------------------
11305
+ Coupling
11306
+ --------------------*/
11307
+
11308
+ .ui.header > .ui.label {
11309
+ margin-top: -0.29165em;
11310
+ }
11311
+
11312
+ /* Remove border radius on attached segment */
11313
+
11314
+ .ui.attached.segment > .ui.top.left.attached.label,
11315
+ .ui.bottom.attached.segment > .ui.top.left.attached.label {
11316
+ border-top-left-radius: 0;
11317
+ }
11318
+
11319
+ .ui.attached.segment > .ui.top.right.attached.label,
11320
+ .ui.bottom.attached.segment > .ui.top.right.attached.label {
11321
+ border-top-right-radius: 0;
11322
+ }
11323
+
11324
+ .ui.top.attached.segment > .ui.bottom.left.attached.label {
11325
+ border-bottom-left-radius: 0;
11326
+ }
11327
+
11328
+ .ui.top.attached.segment > .ui.bottom.right.attached.label {
11329
+ border-bottom-right-radius: 0;
11330
+ }
11331
+
11332
+ /* Padding on next content after a label */
11333
+
11334
+ .ui.top.attached.label:first-child + :not(.attached) {
11335
+ margin-top: 2rem !important;
11336
+ }
11337
+
11338
+ .ui.bottom.attached.label:first-child ~ :last-child:not(.attached) {
11339
+ margin-top: 0em;
11340
+ margin-bottom: 2rem !important;
11341
+ }
11342
+
11343
+ /*******************************
11344
+ Types
11345
+ *******************************/
11346
+
11347
+ .ui.image.label {
11348
+ width: auto !important;
11349
+ margin-top: 0em;
11350
+ margin-bottom: 0em;
11351
+ max-width: 9999px;
11352
+ vertical-align: baseline;
11353
+ text-transform: none;
11354
+ background: #e8e8e8;
11355
+ padding: 0.5833em 0.833em 0.5833em 0.5em;
11356
+ border-radius: 0.28571429rem;
11357
+ box-shadow: none;
11358
+ }
11359
+
11360
+ .ui.image.label img {
11361
+ display: inline-block;
11362
+ vertical-align: top;
11363
+ height: 2.1666em;
11364
+ margin: -0.5833em 0.5em -0.5833em -0.5em;
11365
+ border-radius: 0.28571429rem 0em 0em 0.28571429rem;
11366
+ }
11367
+
11368
+ .ui.image.label .detail {
11369
+ background: rgba(0, 0, 0, 0.1);
11370
+ margin: -0.5833em -0.833em -0.5833em 0.5em;
11371
+ padding: 0.5833em 0.833em;
11372
+ border-radius: 0em 0.28571429rem 0.28571429rem 0em;
11373
+ }
11374
+
11375
+ /*-------------------
11376
+ Tag
11377
+ --------------------*/
11378
+
11379
+ .ui.tag.labels .label,
11380
+ .ui.tag.label {
11381
+ margin-left: 1em;
11382
+ position: relative;
11383
+ padding-left: 1.5em;
11384
+ padding-right: 1.5em;
11385
+ border-radius: 0em 0.28571429rem 0.28571429rem 0em;
11386
+ -webkit-transition: none;
11387
+ transition: none;
11388
+ }
11389
+
11390
+ .ui.tag.labels .label:before,
11391
+ .ui.tag.label:before {
11392
+ position: absolute;
11393
+ -webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg);
11394
+ -ms-transform: translateY(-50%) translateX(50%) rotate(-45deg);
11395
+ transform: translateY(-50%) translateX(50%) rotate(-45deg);
11396
+ top: 50%;
11397
+ right: 100%;
11398
+ content: '';
11399
+ background-color: inherit;
11400
+ background-image: none;
11401
+ width: 1.56em;
11402
+ height: 1.56em;
11403
+ -webkit-transition: none;
11404
+ transition: none;
11405
+ }
11406
+
11407
+ .ui.tag.labels .label:after,
11408
+ .ui.tag.label:after {
11409
+ position: absolute;
11410
+ content: '';
11411
+ top: 50%;
11412
+ left: -0.25em;
11413
+ margin-top: -0.25em;
11414
+ background-color: #ffffff !important;
11415
+ width: 0.5em;
11416
+ height: 0.5em;
11417
+ box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
11418
+ border-radius: 500rem;
11419
+ }
11420
+
11421
+ /*-------------------
11422
+ Corner Label
11423
+ --------------------*/
11424
+
11425
+ .ui.corner.label {
11426
+ position: absolute;
11427
+ top: 0em;
11428
+ right: 0em;
11429
+ margin: 0em;
11430
+ padding: 0em;
11431
+ text-align: center;
11432
+ border-color: #e8e8e8;
11433
+ width: 4em;
11434
+ height: 4em;
11435
+ z-index: 1;
11436
+ -webkit-transition: border-color 0.1s ease;
11437
+ transition: border-color 0.1s ease;
11438
+ }
11439
+
11440
+ /* Icon Label */
11441
+
11442
+ .ui.corner.label {
11443
+ background-color: transparent !important;
11444
+ }
11445
+
11446
+ .ui.corner.label:after {
11447
+ position: absolute;
11448
+ content: "";
11449
+ right: 0em;
11450
+ top: 0em;
11451
+ z-index: -1;
11452
+ width: 0em;
11453
+ height: 0em;
11454
+ background-color: transparent !important;
11455
+ border-top: 0em solid transparent;
11456
+ border-right: 4em solid transparent;
11457
+ border-bottom: 4em solid transparent;
11458
+ border-left: 0em solid transparent;
11459
+ border-right-color: inherit;
11460
+ -webkit-transition: border-color 0.1s ease;
11461
+ transition: border-color 0.1s ease;
11462
+ }
11463
+
11464
+ .ui.corner.label .icon {
11465
+ cursor: default;
11466
+ position: relative;
11467
+ top: 0.64285714em;
11468
+ left: 0.78571429em;
11469
+ font-size: 1.14285714em;
11470
+ margin: 0em;
11471
+ }
11472
+
11473
+ /* Left Corner */
11474
+
11475
+ .ui.left.corner.label,
11476
+ .ui.left.corner.label:after {
11477
+ right: auto;
11478
+ left: 0em;
11479
+ }
11480
+
11481
+ .ui.left.corner.label:after {
11482
+ border-top: 4em solid transparent;
11483
+ border-right: 4em solid transparent;
11484
+ border-bottom: 0em solid transparent;
11485
+ border-left: 0em solid transparent;
11486
+ border-top-color: inherit;
11487
+ }
11488
+
11489
+ .ui.left.corner.label .icon {
11490
+ left: -0.78571429em;
11491
+ }
11492
+
11493
+ /* Segment */
11494
+
11495
+ .ui.segment > .ui.corner.label {
11496
+ top: -1px;
11497
+ right: -1px;
11498
+ }
11499
+
11500
+ .ui.segment > .ui.left.corner.label {
11501
+ right: auto;
11502
+ left: -1px;
11503
+ }
11504
+
11505
+ /*-------------------
11506
+ Ribbon
11507
+ --------------------*/
11508
+
11509
+ .ui.ribbon.label {
11510
+ position: relative;
11511
+ margin: 0em;
11512
+ min-width: -webkit-max-content;
11513
+ min-width: -moz-max-content;
11514
+ min-width: max-content;
11515
+ border-radius: 0em 0.28571429rem 0.28571429rem 0em;
11516
+ border-color: rgba(0, 0, 0, 0.15);
11517
+ }
11518
+
11519
+ .ui.ribbon.label:after {
11520
+ position: absolute;
11521
+ content: '';
11522
+ top: 100%;
11523
+ left: 0%;
11524
+ background-color: transparent !important;
11525
+ border-style: solid;
11526
+ border-width: 0em 1.2em 1.2em 0em;
11527
+ border-color: transparent;
11528
+ border-right-color: inherit;
11529
+ width: 0em;
11530
+ height: 0em;
11531
+ }
11532
+
11533
+ /* Positioning */
11534
+
11535
+ .ui.ribbon.label {
11536
+ left: calc( -1rem - 1.2em );
11537
+ margin-right: -1.2em;
11538
+ padding-left: calc( 1rem + 1.2em );
11539
+ padding-right: 1.2em;
11540
+ }
11541
+
11542
+ .ui[class*="right ribbon"].label {
11543
+ left: calc(100% + 1rem + 1.2em );
11544
+ padding-left: 1.2em;
11545
+ padding-right: calc( 1rem + 1.2em );
11546
+ }
11547
+
11548
+ /* Right Ribbon */
11549
+
11550
+ .ui[class*="right ribbon"].label {
11551
+ text-align: left;
11552
+ -webkit-transform: translateX(-100%);
11553
+ -ms-transform: translateX(-100%);
11554
+ transform: translateX(-100%);
11555
+ border-radius: 0.28571429rem 0em 0em 0.28571429rem;
11556
+ }
11557
+
11558
+ .ui[class*="right ribbon"].label:after {
11559
+ left: auto;
11560
+ right: 0%;
11561
+ border-style: solid;
11562
+ border-width: 1.2em 1.2em 0em 0em;
11563
+ border-color: transparent;
11564
+ border-top-color: inherit;
11565
+ }
11566
+
11567
+ /* Inside Table */
11568
+
11569
+ .ui.image > .ribbon.label,
11570
+ .ui.card .image > .ribbon.label {
11571
+ position: absolute;
11572
+ top: 1rem;
11573
+ }
11574
+
11575
+ .ui.card .image > .ui.ribbon.label,
11576
+ .ui.image > .ui.ribbon.label {
11577
+ left: calc( 0.05rem - 1.2em );
11578
+ }
11579
+
11580
+ .ui.card .image > .ui[class*="right ribbon"].label,
11581
+ .ui.image > .ui[class*="right ribbon"].label {
11582
+ left: calc(100% + -0.05rem + 1.2em );
11583
+ padding-left: 0.833em;
11584
+ }
11585
+
11586
+ /* Inside Table */
11587
+
11588
+ .ui.table td > .ui.ribbon.label {
11589
+ left: calc( -0.71428571em - 1.2em );
11590
+ }
11591
+
11592
+ .ui.table td > .ui[class*="right ribbon"].label {
11593
+ left: calc(100% + 0.71428571em + 1.2em );
11594
+ padding-left: 0.833em;
11595
+ }
11596
+
11597
+ /*-------------------
11598
+ Attached
11599
+ --------------------*/
11600
+
11601
+ .ui[class*="top attached"].label,
11602
+ .ui.attached.label {
11603
+ width: 100%;
11604
+ position: absolute;
11605
+ margin: 0em;
11606
+ top: 0em;
11607
+ left: 0em;
11608
+ padding: 0.75em 1em;
11609
+ border-radius: 0.21428571rem 0.21428571rem 0em 0em;
11610
+ }
11611
+
11612
+ .ui[class*="bottom attached"].label {
11613
+ top: auto;
11614
+ bottom: 0em;
11615
+ border-radius: 0em 0em 0.21428571rem 0.21428571rem;
11616
+ }
11617
+
11618
+ .ui[class*="top left attached"].label {
11619
+ width: auto;
11620
+ margin-top: 0em !important;
11621
+ border-radius: 0.21428571rem 0em 0.28571429rem 0em;
11622
+ }
11623
+
11624
+ .ui[class*="top right attached"].label {
11625
+ width: auto;
11626
+ left: auto;
11627
+ right: 0em;
11628
+ border-radius: 0em 0.21428571rem 0em 0.28571429rem;
11629
+ }
11630
+
11631
+ .ui[class*="bottom left attached"].label {
11632
+ width: auto;
11633
+ top: auto;
11634
+ bottom: 0em;
11635
+ border-radius: 0em 0.28571429rem 0em 0.21428571rem;
11636
+ }
11637
+
11638
+ .ui[class*="bottom right attached"].label {
11639
+ top: auto;
11640
+ bottom: 0em;
11641
+ left: auto;
11642
+ right: 0em;
11643
+ width: auto;
11644
+ border-radius: 0.28571429rem 0em 0.21428571rem 0em;
11645
+ }
11646
+
11647
+ /*******************************
11648
+ States
11649
+ *******************************/
11650
+
11651
+ /*-------------------
11652
+ Disabled
11653
+ --------------------*/
11654
+
11655
+ .ui.label.disabled {
11656
+ opacity: 0.5;
11657
+ }
11658
+
11659
+ /*-------------------
11660
+ Hover
11661
+ --------------------*/
11662
+
11663
+ a.ui.labels .label:hover,
11664
+ a.ui.label:hover {
11665
+ background-color: #e0e0e0;
11666
+ border-color: #e0e0e0;
11667
+ background-image: none;
11668
+ color: rgba(0, 0, 0, 0.8);
11669
+ }
11670
+
11671
+ .ui.labels a.label:hover:before,
11672
+ a.ui.label:hover:before {
11673
+ color: rgba(0, 0, 0, 0.8);
11674
+ }
11675
+
11676
+ /*-------------------
11677
+ Active
11678
+ --------------------*/
11679
+
11680
+ .ui.active.label {
11681
+ background-color: #d0d0d0;
11682
+ border-color: #d0d0d0;
11683
+ background-image: none;
11684
+ color: rgba(0, 0, 0, 0.95);
11685
+ }
11686
+
11687
+ .ui.active.label:before {
11688
+ background-color: #d0d0d0;
11689
+ background-image: none;
11690
+ color: rgba(0, 0, 0, 0.95);
11691
+ }
11692
+
11693
+ /*-------------------
11694
+ Active Hover
11695
+ --------------------*/
11696
+
11697
+ a.ui.labels .active.label:hover,
11698
+ a.ui.active.label:hover {
11699
+ background-color: #c8c8c8;
11700
+ border-color: #c8c8c8;
11701
+ background-image: none;
11702
+ color: rgba(0, 0, 0, 0.95);
11703
+ }
11704
+
11705
+ .ui.labels a.active.label:ActiveHover:before,
11706
+ a.ui.active.label:ActiveHover:before {
11707
+ background-color: #c8c8c8;
11708
+ background-image: none;
11709
+ color: rgba(0, 0, 0, 0.95);
11710
+ }
11711
+
11712
+ /*-------------------
11713
+ Visible
11714
+ --------------------*/
11715
+
11716
+ .ui.labels.visible .label,
11717
+ .ui.label.visible {
11718
+ display: inline-block !important;
11719
+ }
11720
+
11721
+ /*-------------------
11722
+ Hidden
11723
+ --------------------*/
11724
+
11725
+ .ui.labels.hidden .label,
11726
+ .ui.label.hidden {
11727
+ display: none !important;
11728
+ }
11729
+
11730
+ /*******************************
11731
+ Variations
11732
+ *******************************/
11733
+
11734
+ /*-------------------
11735
+ Colors
11736
+ --------------------*/
11737
+
11738
+ /*--- Red ---*/
11739
+
11740
+ .ui.red.labels .label,
11741
+ .ui.red.label {
11742
+ background-color: #db2828 !important;
11743
+ border-color: #db2828 !important;
11744
+ color: #ffffff !important;
11745
+ }
11746
+
11747
+ /* Link */
11748
+
11749
+ .ui.red.labels .label:hover,
11750
+ a.ui.red.label:hover {
11751
+ background-color: #d01919 !important;
11752
+ border-color: #d01919 !important;
11753
+ color: #ffffff !important;
11754
+ }
11755
+
11756
+ /* Corner */
11757
+
11758
+ .ui.red.corner.label,
11759
+ .ui.red.corner.label:hover {
11760
+ background-color: transparent !important;
11761
+ }
11762
+
11763
+ /* Ribbon */
11764
+
11765
+ .ui.red.ribbon.label {
11766
+ border-color: #b21e1e !important;
11767
+ }
11768
+
11769
+ /* Basic */
11770
+
11771
+ .ui.basic.red.label {
11772
+ background-color: #ffffff !important;
11773
+ color: #db2828 !important;
11774
+ border-color: #db2828 !important;
11775
+ }
11776
+
11777
+ .ui.basic.red.labels a.label:hover,
11778
+ a.ui.basic.red.label:hover {
11779
+ background-color: #ffffff !important;
11780
+ color: #d01919 !important;
11781
+ border-color: #d01919 !important;
11782
+ }
11783
+
11784
+ /*--- Orange ---*/
11785
+
11786
+ .ui.orange.labels .label,
11787
+ .ui.orange.label {
11788
+ background-color: #f2711c !important;
11789
+ border-color: #f2711c !important;
11790
+ color: #ffffff !important;
11791
+ }
11792
+
11793
+ /* Link */
11794
+
11795
+ .ui.orange.labels .label:hover,
11796
+ a.ui.orange.label:hover {
11797
+ background-color: #f26202 !important;
11798
+ border-color: #f26202 !important;
11799
+ color: #ffffff !important;
11800
+ }
11801
+
11802
+ /* Corner */
11803
+
11804
+ .ui.orange.corner.label,
11805
+ .ui.orange.corner.label:hover {
11806
+ background-color: transparent !important;
11807
+ }
11808
+
11809
+ /* Ribbon */
11810
+
11811
+ .ui.orange.ribbon.label {
11812
+ border-color: #cf590c !important;
11813
+ }
11814
+
11815
+ /* Basic */
11816
+
11817
+ .ui.basic.orange.label {
11818
+ background-color: #ffffff !important;
11819
+ color: #f2711c !important;
11820
+ border-color: #f2711c !important;
11821
+ }
11822
+
11823
+ .ui.basic.orange.labels a.label:hover,
11824
+ a.ui.basic.orange.label:hover {
11825
+ background-color: #ffffff !important;
11826
+ color: #f26202 !important;
11827
+ border-color: #f26202 !important;
11828
+ }
11829
+
11830
+ /*--- Yellow ---*/
11831
+
11832
+ .ui.yellow.labels .label,
11833
+ .ui.yellow.label {
11834
+ background-color: #fbbd08 !important;
11835
+ border-color: #fbbd08 !important;
11836
+ color: #ffffff !important;
11837
+ }
11838
+
11839
+ /* Link */
11840
+
11841
+ .ui.yellow.labels .label:hover,
11842
+ a.ui.yellow.label:hover {
11843
+ background-color: #eaae00 !important;
11844
+ border-color: #eaae00 !important;
11845
+ color: #ffffff !important;
11846
+ }
11847
+
11848
+ /* Corner */
11849
+
11850
+ .ui.yellow.corner.label,
11851
+ .ui.yellow.corner.label:hover {
11852
+ background-color: transparent !important;
11853
+ }
11854
+
11855
+ /* Ribbon */
11856
+
11857
+ .ui.yellow.ribbon.label {
11858
+ border-color: #cd9903 !important;
11859
+ }
11860
+
11861
+ /* Basic */
11862
+
11863
+ .ui.basic.yellow.label {
11864
+ background-color: #ffffff !important;
11865
+ color: #fbbd08 !important;
11866
+ border-color: #fbbd08 !important;
11867
+ }
11868
+
11869
+ .ui.basic.yellow.labels a.label:hover,
11870
+ a.ui.basic.yellow.label:hover {
11871
+ background-color: #ffffff !important;
11872
+ color: #eaae00 !important;
11873
+ border-color: #eaae00 !important;
11874
+ }
11875
+
11876
+ /*--- Olive ---*/
11877
+
11878
+ .ui.olive.labels .label,
11879
+ .ui.olive.label {
11880
+ background-color: #b5cc18 !important;
11881
+ border-color: #b5cc18 !important;
11882
+ color: #ffffff !important;
11883
+ }
11884
+
11885
+ /* Link */
11886
+
11887
+ .ui.olive.labels .label:hover,
11888
+ a.ui.olive.label:hover {
11889
+ background-color: #a7bd0d !important;
11890
+ border-color: #a7bd0d !important;
11891
+ color: #ffffff !important;
11892
+ }
11893
+
11894
+ /* Corner */
11895
+
11896
+ .ui.olive.corner.label,
11897
+ .ui.olive.corner.label:hover {
11898
+ background-color: transparent !important;
11899
+ }
11900
+
11901
+ /* Ribbon */
11902
+
11903
+ .ui.olive.ribbon.label {
11904
+ border-color: #198f35 !important;
11905
+ }
11906
+
11907
+ /* Basic */
11908
+
11909
+ .ui.basic.olive.label {
11910
+ background-color: #ffffff !important;
11911
+ color: #b5cc18 !important;
11912
+ border-color: #b5cc18 !important;
11913
+ }
11914
+
11915
+ .ui.basic.olive.labels a.label:hover,
11916
+ a.ui.basic.olive.label:hover {
11917
+ background-color: #ffffff !important;
11918
+ color: #a7bd0d !important;
11919
+ border-color: #a7bd0d !important;
11920
+ }
11921
+
11922
+ /*--- Green ---*/
11923
+
11924
+ .ui.green.labels .label,
11925
+ .ui.green.label {
11926
+ background-color: #21ba45 !important;
11927
+ border-color: #21ba45 !important;
11928
+ color: #ffffff !important;
11929
+ }
11930
+
11931
+ /* Link */
11932
+
11933
+ .ui.green.labels .label:hover,
11934
+ a.ui.green.label:hover {
11935
+ background-color: #16ab39 !important;
11936
+ border-color: #16ab39 !important;
11937
+ color: #ffffff !important;
11938
+ }
11939
+
11940
+ /* Corner */
11941
+
11942
+ .ui.green.corner.label,
11943
+ .ui.green.corner.label:hover {
11944
+ background-color: transparent !important;
11945
+ }
11946
+
11947
+ /* Ribbon */
11948
+
11949
+ .ui.green.ribbon.label {
11950
+ border-color: #198f35 !important;
11951
+ }
11952
+
11953
+ /* Basic */
11954
+
11955
+ .ui.basic.green.label {
11956
+ background-color: #ffffff !important;
11957
+ color: #21ba45 !important;
11958
+ border-color: #21ba45 !important;
11959
+ }
11960
+
11961
+ .ui.basic.green.labels a.label:hover,
11962
+ a.ui.basic.green.label:hover {
11963
+ background-color: #ffffff !important;
11964
+ color: #16ab39 !important;
11965
+ border-color: #16ab39 !important;
11966
+ }
11967
+
11968
+ /*--- Teal ---*/
11969
+
11970
+ .ui.teal.labels .label,
11971
+ .ui.teal.label {
11972
+ background-color: #00b5ad !important;
11973
+ border-color: #00b5ad !important;
11974
+ color: #ffffff !important;
11975
+ }
11976
+
11977
+ /* Link */
11978
+
11979
+ .ui.teal.labels .label:hover,
11980
+ a.ui.teal.label:hover {
11981
+ background-color: #009c95 !important;
11982
+ border-color: #009c95 !important;
11983
+ color: #ffffff !important;
11984
+ }
11985
+
11986
+ /* Corner */
11987
+
11988
+ .ui.teal.corner.label,
11989
+ .ui.teal.corner.label:hover {
11990
+ background-color: transparent !important;
11991
+ }
11992
+
11993
+ /* Ribbon */
11994
+
11995
+ .ui.teal.ribbon.label {
11996
+ border-color: #00827c !important;
11997
+ }
11998
+
11999
+ /* Basic */
12000
+
12001
+ .ui.basic.teal.label {
12002
+ background-color: #ffffff !important;
12003
+ color: #00b5ad !important;
12004
+ border-color: #00b5ad !important;
12005
+ }
12006
+
12007
+ .ui.basic.teal.labels a.label:hover,
12008
+ a.ui.basic.teal.label:hover {
12009
+ background-color: #ffffff !important;
12010
+ color: #009c95 !important;
12011
+ border-color: #009c95 !important;
12012
+ }
12013
+
12014
+ /*--- Blue ---*/
12015
+
12016
+ .ui.blue.labels .label,
12017
+ .ui.blue.label {
12018
+ background-color: #2185d0 !important;
12019
+ border-color: #2185d0 !important;
12020
+ color: #ffffff !important;
12021
+ }
12022
+
12023
+ /* Link */
12024
+
12025
+ .ui.blue.labels .label:hover,
12026
+ a.ui.blue.label:hover {
12027
+ background-color: #1678c2 !important;
12028
+ border-color: #1678c2 !important;
12029
+ color: #ffffff !important;
12030
+ }
12031
+
12032
+ /* Corner */
12033
+
12034
+ .ui.blue.corner.label,
12035
+ .ui.blue.corner.label:hover {
12036
+ background-color: transparent !important;
12037
+ }
12038
+
12039
+ /* Ribbon */
12040
+
12041
+ .ui.blue.ribbon.label {
12042
+ border-color: #1a69a4 !important;
12043
+ }
12044
+
12045
+ /* Basic */
12046
+
12047
+ .ui.basic.blue.label {
12048
+ background-color: #ffffff !important;
12049
+ color: #2185d0 !important;
12050
+ border-color: #2185d0 !important;
12051
+ }
12052
+
12053
+ .ui.basic.blue.labels a.label:hover,
12054
+ a.ui.basic.blue.label:hover {
12055
+ background-color: #ffffff !important;
12056
+ color: #1678c2 !important;
12057
+ border-color: #1678c2 !important;
12058
+ }
12059
+
12060
+ /*--- Violet ---*/
12061
+
12062
+ .ui.violet.labels .label,
12063
+ .ui.violet.label {
12064
+ background-color: #6435c9 !important;
12065
+ border-color: #6435c9 !important;
12066
+ color: #ffffff !important;
12067
+ }
12068
+
12069
+ /* Link */
12070
+
12071
+ .ui.violet.labels .label:hover,
12072
+ a.ui.violet.label:hover {
12073
+ background-color: #5829bb !important;
12074
+ border-color: #5829bb !important;
12075
+ color: #ffffff !important;
12076
+ }
12077
+
12078
+ /* Corner */
12079
+
12080
+ .ui.violet.corner.label,
12081
+ .ui.violet.corner.label:hover {
12082
+ background-color: transparent !important;
12083
+ }
12084
+
12085
+ /* Ribbon */
12086
+
12087
+ .ui.violet.ribbon.label {
12088
+ border-color: #502aa1 !important;
12089
+ }
12090
+
12091
+ /* Basic */
12092
+
12093
+ .ui.basic.violet.label {
12094
+ background-color: #ffffff !important;
12095
+ color: #6435c9 !important;
12096
+ border-color: #6435c9 !important;
12097
+ }
12098
+
12099
+ .ui.basic.violet.labels a.label:hover,
12100
+ a.ui.basic.violet.label:hover {
12101
+ background-color: #ffffff !important;
12102
+ color: #5829bb !important;
12103
+ border-color: #5829bb !important;
12104
+ }
12105
+
12106
+ /*--- Purple ---*/
12107
+
12108
+ .ui.purple.labels .label,
12109
+ .ui.purple.label {
12110
+ background-color: #a333c8 !important;
12111
+ border-color: #a333c8 !important;
12112
+ color: #ffffff !important;
12113
+ }
12114
+
12115
+ /* Link */
12116
+
12117
+ .ui.purple.labels .label:hover,
12118
+ a.ui.purple.label:hover {
12119
+ background-color: #9627ba !important;
12120
+ border-color: #9627ba !important;
12121
+ color: #ffffff !important;
12122
+ }
12123
+
12124
+ /* Corner */
12125
+
12126
+ .ui.purple.corner.label,
12127
+ .ui.purple.corner.label:hover {
12128
+ background-color: transparent !important;
12129
+ }
12130
+
12131
+ /* Ribbon */
12132
+
12133
+ .ui.purple.ribbon.label {
12134
+ border-color: #82299f !important;
12135
+ }
12136
+
12137
+ /* Basic */
12138
+
12139
+ .ui.basic.purple.label {
12140
+ background-color: #ffffff !important;
12141
+ color: #a333c8 !important;
12142
+ border-color: #a333c8 !important;
12143
+ }
12144
+
12145
+ .ui.basic.purple.labels a.label:hover,
12146
+ a.ui.basic.purple.label:hover {
12147
+ background-color: #ffffff !important;
12148
+ color: #9627ba !important;
12149
+ border-color: #9627ba !important;
12150
+ }
12151
+
12152
+ /*--- Pink ---*/
12153
+
12154
+ .ui.pink.labels .label,
12155
+ .ui.pink.label {
12156
+ background-color: #e03997 !important;
12157
+ border-color: #e03997 !important;
12158
+ color: #ffffff !important;
12159
+ }
12160
+
12161
+ /* Link */
12162
+
12163
+ .ui.pink.labels .label:hover,
12164
+ a.ui.pink.label:hover {
12165
+ background-color: #e61a8d !important;
12166
+ border-color: #e61a8d !important;
12167
+ color: #ffffff !important;
12168
+ }
12169
+
12170
+ /* Corner */
12171
+
12172
+ .ui.pink.corner.label,
12173
+ .ui.pink.corner.label:hover {
12174
+ background-color: transparent !important;
12175
+ }
12176
+
12177
+ /* Ribbon */
12178
+
12179
+ .ui.pink.ribbon.label {
12180
+ border-color: #c71f7e !important;
12181
+ }
12182
+
12183
+ /* Basic */
12184
+
12185
+ .ui.basic.pink.label {
12186
+ background-color: #ffffff !important;
12187
+ color: #e03997 !important;
12188
+ border-color: #e03997 !important;
12189
+ }
12190
+
12191
+ .ui.basic.pink.labels a.label:hover,
12192
+ a.ui.basic.pink.label:hover {
12193
+ background-color: #ffffff !important;
12194
+ color: #e61a8d !important;
12195
+ border-color: #e61a8d !important;
12196
+ }
12197
+
12198
+ /*--- Brown ---*/
12199
+
12200
+ .ui.brown.labels .label,
12201
+ .ui.brown.label {
12202
+ background-color: #a5673f !important;
12203
+ border-color: #a5673f !important;
12204
+ color: #ffffff !important;
12205
+ }
12206
+
12207
+ /* Link */
12208
+
12209
+ .ui.brown.labels .label:hover,
12210
+ a.ui.brown.label:hover {
12211
+ background-color: #975b33 !important;
12212
+ border-color: #975b33 !important;
12213
+ color: #ffffff !important;
12214
+ }
12215
+
12216
+ /* Corner */
12217
+
12218
+ .ui.brown.corner.label,
12219
+ .ui.brown.corner.label:hover {
12220
+ background-color: transparent !important;
12221
+ }
12222
+
12223
+ /* Ribbon */
12224
+
12225
+ .ui.brown.ribbon.label {
12226
+ border-color: #805031 !important;
12227
+ }
12228
+
12229
+ /* Basic */
12230
+
12231
+ .ui.basic.brown.label {
12232
+ background-color: #ffffff !important;
12233
+ color: #a5673f !important;
12234
+ border-color: #a5673f !important;
12235
+ }
12236
+
12237
+ .ui.basic.brown.labels a.label:hover,
12238
+ a.ui.basic.brown.label:hover {
12239
+ background-color: #ffffff !important;
12240
+ color: #975b33 !important;
12241
+ border-color: #975b33 !important;
12242
+ }
12243
+
12244
+ /*--- Grey ---*/
12245
+
12246
+ .ui.grey.labels .label,
12247
+ .ui.grey.label {
12248
+ background-color: #767676 !important;
12249
+ border-color: #767676 !important;
12250
+ color: #ffffff !important;
12251
+ }
12252
+
12253
+ /* Link */
12254
+
12255
+ .ui.grey.labels .label:hover,
12256
+ a.ui.grey.label:hover {
12257
+ background-color: #838383 !important;
12258
+ border-color: #838383 !important;
12259
+ color: #ffffff !important;
12260
+ }
12261
+
12262
+ /* Corner */
12263
+
12264
+ .ui.grey.corner.label,
12265
+ .ui.grey.corner.label:hover {
12266
+ background-color: transparent !important;
12267
+ }
12268
+
12269
+ /* Ribbon */
12270
+
12271
+ .ui.grey.ribbon.label {
12272
+ border-color: #805031 !important;
12273
+ }
12274
+
12275
+ /* Basic */
12276
+
12277
+ .ui.basic.grey.label {
12278
+ background-color: #ffffff !important;
12279
+ color: #767676 !important;
12280
+ border-color: #767676 !important;
12281
+ }
12282
+
12283
+ .ui.basic.grey.labels a.label:hover,
12284
+ a.ui.basic.grey.label:hover {
12285
+ background-color: #ffffff !important;
12286
+ color: #838383 !important;
12287
+ border-color: #838383 !important;
12288
+ }
12289
+
12290
+ /*--- Black ---*/
12291
+
12292
+ .ui.black.labels .label,
12293
+ .ui.black.label {
12294
+ background-color: #1b1c1d !important;
12295
+ border-color: #1b1c1d !important;
12296
+ color: #ffffff !important;
12297
+ }
12298
+
12299
+ /* Link */
12300
+
12301
+ .ui.black.labels .label:hover,
12302
+ a.ui.black.label:hover {
12303
+ background-color: #27292a !important;
12304
+ border-color: #27292a !important;
12305
+ color: #ffffff !important;
12306
+ }
12307
+
12308
+ /* Corner */
12309
+
12310
+ .ui.black.corner.label,
12311
+ .ui.black.corner.label:hover {
12312
+ background-color: transparent !important;
12313
+ }
12314
+
12315
+ /* Ribbon */
12316
+
12317
+ .ui.black.ribbon.label {
12318
+ border-color: #805031 !important;
12319
+ }
12320
+
12321
+ /* Basic */
12322
+
12323
+ .ui.basic.black.label {
12324
+ background-color: #ffffff !important;
12325
+ color: #1b1c1d !important;
12326
+ border-color: #1b1c1d !important;
12327
+ }
12328
+
12329
+ .ui.basic.black.labels a.label:hover,
12330
+ a.ui.basic.black.label:hover {
12331
+ background-color: #ffffff !important;
12332
+ color: #27292a !important;
12333
+ border-color: #27292a !important;
12334
+ }
12335
+
12336
+ /*-------------------
12337
+ Basic
12338
+ --------------------*/
12339
+
12340
+ .ui.basic.label {
12341
+ background: none #ffffff;
12342
+ border: 1px solid rgba(34, 36, 38, 0.15);
12343
+ color: rgba(0, 0, 0, 0.87);
12344
+ box-shadow: none;
12345
+ }
12346
+
12347
+ /* Link */
12348
+
12349
+ a.ui.basic.label:hover {
12350
+ text-decoration: none;
12351
+ background: none #ffffff;
12352
+ color: #1e70bf;
12353
+ box-shadow: 1px solid rgba(34, 36, 38, 0.15);
12354
+ box-shadow: none;
12355
+ }
12356
+
12357
+ /* Pointing */
12358
+
12359
+ .ui.basic.pointing.label:before {
12360
+ border-color: inherit;
12361
+ }
12362
+
12363
+ /*-------------------
12364
+ Fluid
12365
+ --------------------*/
12366
+
12367
+ .ui.label.fluid,
12368
+ .ui.fluid.labels > .label {
12369
+ width: 100%;
12370
+ box-sizing: border-box;
12371
+ }
12372
+
12373
+ /*-------------------
12374
+ Inverted
12375
+ --------------------*/
12376
+
12377
+ .ui.inverted.labels .label,
12378
+ .ui.inverted.label {
12379
+ color: rgba(255, 255, 255, 0.9) !important;
12380
+ }
12381
+
12382
+ /*-------------------
12383
+ Horizontal
12384
+ --------------------*/
12385
+
12386
+ .ui.horizontal.labels .label,
12387
+ .ui.horizontal.label {
12388
+ margin: 0em 0.5em 0em 0em;
12389
+ padding: 0.4em 0.833em;
12390
+ min-width: 3em;
12391
+ text-align: center;
12392
+ }
12393
+
12394
+ /*-------------------
12395
+ Circular
12396
+ --------------------*/
12397
+
12398
+ .ui.circular.labels .label,
12399
+ .ui.circular.label {
12400
+ min-width: 2em;
12401
+ min-height: 2em;
12402
+ padding: 0.5em !important;
12403
+ line-height: 1em;
12404
+ text-align: center;
12405
+ border-radius: 500rem;
12406
+ }
12407
+
12408
+ .ui.empty.circular.labels .label,
12409
+ .ui.empty.circular.label {
12410
+ min-width: 0em;
12411
+ min-height: 0em;
12412
+ overflow: hidden;
12413
+ width: 0.5em;
12414
+ height: 0.5em;
12415
+ vertical-align: baseline;
12416
+ }
12417
+
12418
+ /*-------------------
12419
+ Pointing
12420
+ --------------------*/
12421
+
12422
+ .ui.pointing.label {
12423
+ position: relative;
12424
+ }
12425
+
12426
+ .ui.attached.pointing.label {
12427
+ position: absolute;
12428
+ }
12429
+
12430
+ .ui.pointing.label:before {
12431
+ background-color: inherit;
12432
+ background-image: inherit;
12433
+ border-width: none;
12434
+ border-style: solid;
12435
+ border-color: inherit;
12436
+ }
12437
+
12438
+ /* Arrow */
12439
+
12440
+ .ui.pointing.label:before {
12441
+ position: absolute;
12442
+ content: '';
12443
+ -webkit-transform: rotate(45deg);
12444
+ -ms-transform: rotate(45deg);
12445
+ transform: rotate(45deg);
12446
+ background-image: none;
12447
+ z-index: 2;
12448
+ width: 0.6666em;
12449
+ height: 0.6666em;
12450
+ -webkit-transition: background 0.1s ease;
12451
+ transition: background 0.1s ease;
12452
+ }
12453
+
12454
+ /*--- Above ---*/
12455
+
12456
+ .ui.pointing.label,
12457
+ .ui[class*="pointing above"].label {
12458
+ margin-top: 1em;
12459
+ }
12460
+
12461
+ .ui.pointing.label:before,
12462
+ .ui[class*="pointing above"].label:before {
12463
+ border-width: 1px 0px 0px 1px;
12464
+ -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
12465
+ -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
12466
+ transform: translateX(-50%) translateY(-50%) rotate(45deg);
12467
+ top: 0%;
12468
+ left: 50%;
12469
+ }
12470
+
12471
+ /*--- Below ---*/
12472
+
12473
+ .ui[class*="bottom pointing"].label,
12474
+ .ui[class*="pointing below"].label {
12475
+ margin-top: 0em;
12476
+ margin-bottom: 1em;
12477
+ }
12478
+
12479
+ .ui[class*="bottom pointing"].label:before,
12480
+ .ui[class*="pointing below"].label:before {
12481
+ border-width: 0px 1px 1px 0px;
12482
+ top: auto;
12483
+ right: auto;
12484
+ -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
12485
+ -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
12486
+ transform: translateX(-50%) translateY(-50%) rotate(45deg);
12487
+ top: 100%;
12488
+ left: 50%;
12489
+ }
12490
+
12491
+ /*--- Left ---*/
12492
+
12493
+ .ui[class*="left pointing"].label {
12494
+ margin-top: 0em;
12495
+ margin-left: 0.6666em;
12496
+ }
12497
+
12498
+ .ui[class*="left pointing"].label:before {
12499
+ border-width: 0px 0px 1px 1px;
12500
+ -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
12501
+ -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
12502
+ transform: translateX(-50%) translateY(-50%) rotate(45deg);
12503
+ bottom: auto;
12504
+ right: auto;
12505
+ top: 50%;
12506
+ left: 0em;
12507
+ }
12508
+
12509
+ /*--- Right ---*/
12510
+
12511
+ .ui[class*="right pointing"].label {
12512
+ margin-top: 0em;
12513
+ margin-right: 0.6666em;
12514
+ }
12515
+
12516
+ .ui[class*="right pointing"].label:before {
12517
+ border-width: 1px 1px 0px 0px;
12518
+ -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
12519
+ -ms-transform: translateX(50%) translateY(-50%) rotate(45deg);
12520
+ transform: translateX(50%) translateY(-50%) rotate(45deg);
12521
+ top: 50%;
12522
+ right: 0%;
12523
+ bottom: auto;
12524
+ left: auto;
12525
+ }
12526
+
12527
+ /* Basic Pointing */
12528
+
12529
+ /*--- Above ---*/
12530
+
12531
+ .ui.basic.pointing.label:before,
12532
+ .ui.basic[class*="pointing above"].label:before {
12533
+ margin-top: -1px;
12534
+ }
12535
+
12536
+ /*--- Below ---*/
12537
+
12538
+ .ui.basic[class*="bottom pointing"].label:before,
12539
+ .ui.basic[class*="pointing below"].label:before {
12540
+ bottom: auto;
12541
+ top: 100%;
12542
+ margin-top: 1px;
12543
+ }
12544
+
12545
+ /*--- Left ---*/
12546
+
12547
+ .ui.basic[class*="left pointing"].label:before {
12548
+ top: 50%;
12549
+ left: -1px;
12550
+ }
12551
+
12552
+ /*--- Right ---*/
12553
+
12554
+ .ui.basic[class*="right pointing"].label:before {
12555
+ top: 50%;
12556
+ right: -1px;
12557
+ }
12558
+
12559
+ /*------------------
12560
+ Floating Label
12561
+ -------------------*/
12562
+
12563
+ .ui.floating.label {
12564
+ position: absolute;
12565
+ z-index: 100;
12566
+ top: -1em;
12567
+ left: 100%;
12568
+ margin: 0em 0em 0em -1.5em !important;
12569
+ }
12570
+
12571
+ /*-------------------
12572
+ Sizes
12573
+ --------------------*/
12574
+
12575
+ .ui.mini.labels .label,
12576
+ .ui.mini.label {
12577
+ font-size: 0.64285714rem;
12578
+ }
12579
+
12580
+ .ui.tiny.labels .label,
12581
+ .ui.tiny.label {
12582
+ font-size: 0.71428571rem;
12583
+ }
12584
+
12585
+ .ui.small.labels .label,
12586
+ .ui.small.label {
12587
+ font-size: 0.78571429rem;
12588
+ }
12589
+
12590
+ .ui.labels .label,
12591
+ .ui.label {
12592
+ font-size: 0.85714286rem;
12593
+ }
12594
+
12595
+ .ui.large.labels .label,
12596
+ .ui.large.label {
12597
+ font-size: 1rem;
12598
+ }
12599
+
12600
+ .ui.big.labels .label,
12601
+ .ui.big.label {
12602
+ font-size: 1.28571429rem;
12603
+ }
12604
+
12605
+ .ui.huge.labels .label,
12606
+ .ui.huge.label {
12607
+ font-size: 1.42857143rem;
12608
+ }
12609
+
12610
+ .ui.massive.labels .label,
12611
+ .ui.massive.label {
12612
+ font-size: 1.71428571rem;
12613
+ }
12614
+
12615
+ /*******************************
12616
+ Theme Overrides
12617
+ *******************************/
12618
+
12619
+ /*******************************
12620
+ Site Overrides
12621
+ *******************************/
12622
+ /*!
12623
+ * # Semantic UI 2.1.7 - List
12624
+ * http://github.com/semantic-org/semantic-ui/
12625
+ *
12626
+ *
12627
+ * Copyright 2015 Contributors
12628
+ * Released under the MIT license
12629
+ * http://opensource.org/licenses/MIT
12630
+ *
12631
+ */
12632
+
12633
+ /*******************************
12634
+ List
12635
+ *******************************/
12636
+
12637
+ ul.ui.list,
12638
+ ol.ui.list,
12639
+ .ui.list {
12640
+ list-style-type: none;
12641
+ margin: 1em 0em;
12642
+ padding: 0em 0em;
12643
+ }
12644
+
12645
+ ul.ui.list:first-child,
12646
+ ol.ui.list:first-child,
12647
+ .ui.list:first-child {
12648
+ margin-top: 0em;
12649
+ padding-top: 0em;
12650
+ }
12651
+
12652
+ ul.ui.list:last-child,
12653
+ ol.ui.list:last-child,
12654
+ .ui.list:last-child {
12655
+ margin-bottom: 0em;
12656
+ padding-bottom: 0em;
12657
+ }
12658
+
12659
+ /*******************************
12660
+ Content
12661
+ *******************************/
12662
+
12663
+ /* List Item */
12664
+
12665
+ ul.ui.list li,
12666
+ ol.ui.list li,
12667
+ .ui.list > .item,
12668
+ .ui.list .list > .item {
12669
+ display: list-item;
12670
+ table-layout: fixed;
12671
+ list-style-type: none;
12672
+ list-style-position: outside;
12673
+ padding: 0.21428571em 0em;
12674
+ line-height: 1.14285714em;
12675
+ }
12676
+
12677
+ ul.ui.list > li:first-child:after,
12678
+ ol.ui.list > li:first-child:after,
12679
+ .ui.list > .list > .item,
12680
+ .ui.list > .item:after {
12681
+ content: '';
12682
+ display: block;
12683
+ height: 0;
12684
+ clear: both;
12685
+ visibility: hidden;
12686
+ }
12687
+
12688
+ ul.ui.list li:first-child,
12689
+ ol.ui.list li:first-child,
12690
+ .ui.list .list > .item:first-child,
12691
+ .ui.list > .item:first-child {
12692
+ padding-top: 0em;
12693
+ }
12694
+
12695
+ ul.ui.list li:last-child,
12696
+ ol.ui.list li:last-child,
12697
+ .ui.list .list > .item:last-child,
12698
+ .ui.list > .item:last-child {
12699
+ padding-bottom: 0em;
12700
+ }
12701
+
12702
+ /* Child List */
12703
+
12704
+ ul.ui.list ul,
12705
+ ol.ui.list ol,
12706
+ .ui.list .list {
12707
+ clear: both;
12708
+ margin: 0em;
12709
+ padding: 0.75em 0em 0.25em 0.5em;
12710
+ }
12711
+
12712
+ /* Child Item */
12713
+
12714
+ ul.ui.list ul li,
12715
+ ol.ui.list ol li,
12716
+ .ui.list .list > .item {
12717
+ padding: 0.14285714em 0em;
12718
+ line-height: inherit;
12719
+ }
12720
+
12721
+ /* Icon */
12722
+
12723
+ .ui.list .list > .item > i.icon,
12724
+ .ui.list > .item > i.icon {
12725
+ display: table-cell;
12726
+ margin: 0em;
12727
+ padding-top: 0.07142857em;
12728
+ padding-right: 0.28571429em;
12729
+ vertical-align: top;
12730
+ -webkit-transition: color 0.1s ease;
12731
+ transition: color 0.1s ease;
12732
+ }
12733
+
12734
+ .ui.list .list > .item > i.icon:only-child,
12735
+ .ui.list > .item > i.icon:only-child {
12736
+ display: inline-block;
12737
+ vertical-align: top;
12738
+ }
12739
+
12740
+ /* Image */
12741
+
12742
+ .ui.list .list > .item > .image,
12743
+ .ui.list > .item > .image {
12744
+ display: table-cell;
12745
+ background-color: transparent;
12746
+ margin: 0em;
12747
+ vertical-align: top;
12748
+ }
12749
+
12750
+ .ui.list .list > .item > .image:not(:only-child):not(img),
12751
+ .ui.list > .item > .image:not(:only-child):not(img) {
12752
+ padding-right: 0.5em;
12753
+ }
12754
+
12755
+ .ui.list .list > .item > .image img,
12756
+ .ui.list > .item > .image img {
12757
+ vertical-align: top;
12758
+ }
12759
+
12760
+ .ui.list .list > .item > img.image,
12761
+ .ui.list .list > .item > .image:only-child,
12762
+ .ui.list > .item > img.image,
12763
+ .ui.list > .item > .image:only-child {
12764
+ display: inline-block;
12765
+ }
12766
+
12767
+ /* Content */
12768
+
12769
+ .ui.list .list > .item > .content,
12770
+ .ui.list > .item > .content {
12771
+ line-height: 1.14285714em;
12772
+ }
12773
+
12774
+ .ui.list .list > .item > .image + .content,
12775
+ .ui.list .list > .item > .icon + .content,
12776
+ .ui.list > .item > .image + .content,
12777
+ .ui.list > .item > .icon + .content {
12778
+ display: table-cell;
12779
+ padding: 0em 0em 0em 0.5em;
12780
+ vertical-align: top;
12781
+ }
12782
+
12783
+ .ui.list .list > .item > img.image + .content,
12784
+ .ui.list > .item > img.image + .content {
12785
+ display: inline-block;
12786
+ }
12787
+
12788
+ .ui.list .list > .item > .content > .list,
12789
+ .ui.list > .item > .content > .list {
12790
+ margin-left: 0em;
12791
+ padding-left: 0em;
12792
+ }
12793
+
12794
+ /* Header */
12795
+
12796
+ .ui.list .list > .item .header,
12797
+ .ui.list > .item .header {
12798
+ display: block;
12799
+ margin: 0em;
12800
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
12801
+ font-weight: bold;
12802
+ color: rgba(0, 0, 0, 0.87);
12803
+ }
12804
+
12805
+ /* Description */
12806
+
12807
+ .ui.list .list > .item .description,
12808
+ .ui.list > .item .description {
12809
+ display: block;
12810
+ color: rgba(0, 0, 0, 0.7);
12811
+ }
12812
+
12813
+ /* Child Link */
12814
+
12815
+ .ui.list > .item a,
12816
+ .ui.list .list > .item a {
12817
+ cursor: pointer;
12818
+ }
12819
+
12820
+ /* Linking Item */
12821
+
12822
+ .ui.list .list > a.item,
12823
+ .ui.list > a.item {
12824
+ cursor: pointer;
12825
+ color: #4183c4;
12826
+ }
12827
+
12828
+ .ui.list .list > a.item:hover,
12829
+ .ui.list > a.item:hover {
12830
+ color: #1e70bf;
12831
+ }
12832
+
12833
+ /* Linked Item Icons */
12834
+
12835
+ .ui.list .list > a.item i.icon,
12836
+ .ui.list > a.item i.icon {
12837
+ color: rgba(0, 0, 0, 0.4);
12838
+ }
12839
+
12840
+ /* Header Link */
12841
+
12842
+ .ui.list .list > .item a.header,
12843
+ .ui.list > .item a.header {
12844
+ cursor: pointer;
12845
+ color: #4183c4 !important;
12846
+ }
12847
+
12848
+ .ui.list .list > .item a.header:hover,
12849
+ .ui.list > .item a.header:hover {
12850
+ color: #1e70bf !important;
12851
+ }
12852
+
12853
+ /* Floated Content */
12854
+
12855
+ .ui[class*="left floated"].list {
12856
+ float: left;
12857
+ }
12858
+
12859
+ .ui[class*="right floated"].list {
12860
+ float: right;
12861
+ }
12862
+
12863
+ .ui.list .list > .item [class*="left floated"],
12864
+ .ui.list > .item [class*="left floated"] {
12865
+ float: left;
12866
+ margin: 0em 1em 0em 0em;
12867
+ }
12868
+
12869
+ .ui.list .list > .item [class*="right floated"],
12870
+ .ui.list > .item [class*="right floated"] {
12871
+ float: right;
12872
+ margin: 0em 0em 0em 1em;
12873
+ }
12874
+
12875
+ /*******************************
12876
+ Coupling
12877
+ *******************************/
12878
+
12879
+ .ui.menu .ui.list > .item,
12880
+ .ui.menu .ui.list .list > .item {
12881
+ display: list-item;
12882
+ table-layout: fixed;
12883
+ background-color: transparent;
12884
+ list-style-type: none;
12885
+ list-style-position: outside;
12886
+ padding: 0.21428571em 0em;
12887
+ line-height: 1.14285714em;
12888
+ }
12889
+
12890
+ .ui.menu .ui.list .list > .item:before,
12891
+ .ui.menu .ui.list > .item:before {
12892
+ border: none;
12893
+ background: none;
12894
+ }
12895
+
12896
+ .ui.menu .ui.list .list > .item:first-child,
12897
+ .ui.menu .ui.list > .item:first-child {
12898
+ padding-top: 0em;
12899
+ }
12900
+
12901
+ .ui.menu .ui.list .list > .item:last-child,
12902
+ .ui.menu .ui.list > .item:last-child {
12903
+ padding-bottom: 0em;
12904
+ }
12905
+
12906
+ /*******************************
12907
+ Types
12908
+ *******************************/
12909
+
12910
+ /*-------------------
12911
+ Horizontal
12912
+ --------------------*/
12913
+
12914
+ .ui.horizontal.list {
12915
+ display: inline-block;
12916
+ font-size: 0em;
12917
+ }
12918
+
12919
+ .ui.horizontal.list > .item {
12920
+ display: inline-block;
12921
+ margin-left: 1em;
12922
+ font-size: 1rem;
12923
+ }
12924
+
12925
+ .ui.horizontal.list:not(.celled) > .item:first-child {
12926
+ margin-left: 0em !important;
12927
+ padding-left: 0em !important;
12928
+ }
12929
+
12930
+ .ui.horizontal.list .list {
12931
+ padding-left: 0em;
12932
+ padding-bottom: 0em;
12933
+ }
12934
+
12935
+ .ui.horizontal.list > .item > .image,
12936
+ .ui.horizontal.list .list > .item > .image,
12937
+ .ui.horizontal.list > .item > .icon,
12938
+ .ui.horizontal.list .list > .item > .icon,
12939
+ .ui.horizontal.list > .item > .content,
12940
+ .ui.horizontal.list .list > .item > .content {
12941
+ vertical-align: middle;
12942
+ }
12943
+
12944
+ /* Padding on all elements */
12945
+
12946
+ .ui.horizontal.list > .item:first-child,
12947
+ .ui.horizontal.list > .item:last-child {
12948
+ padding-top: 0.21428571em;
12949
+ padding-bottom: 0.21428571em;
12950
+ }
12951
+
12952
+ /* Horizontal List */
12953
+
12954
+ .ui.horizontal.list > .item > i.icon {
12955
+ margin: 0em;
12956
+ padding: 0em 0.25em 0em 0em;
12957
+ }
12958
+
12959
+ .ui.horizontal.list > .item > .icon,
12960
+ .ui.horizontal.list > .item > .icon + .content {
12961
+ float: none;
12962
+ display: inline-block;
12963
+ }
12964
+
12965
+ /*******************************
12966
+ States
12967
+ *******************************/
12968
+
12969
+ /*-------------------
12970
+ Disabled
12971
+ --------------------*/
12972
+
12973
+ .ui.list .list > .disabled.item,
12974
+ .ui.list > .disabled.item {
12975
+ pointer-events: none;
12976
+ color: rgba(40, 40, 40, 0.3) !important;
12977
+ }
12978
+
12979
+ .ui.inverted.list .list > .disabled.item,
12980
+ .ui.inverted.list > .disabled.item {
12981
+ color: rgba(225, 225, 225, 0.3) !important;
12982
+ }
12983
+
12984
+ /*-------------------
12985
+ Hover
12986
+ --------------------*/
12987
+
12988
+ .ui.list .list > a.item:hover .icon,
12989
+ .ui.list > a.item:hover .icon {
12990
+ color: rgba(0, 0, 0, 0.87);
12991
+ }
12992
+
12993
+ /*******************************
12994
+ Variations
12995
+ *******************************/
12996
+
12997
+ /*-------------------
12998
+ Inverted
12999
+ --------------------*/
13000
+
13001
+ .ui.inverted.list .list > a.item > .icon,
13002
+ .ui.inverted.list > a.item > .icon {
13003
+ color: rgba(255, 255, 255, 0.7);
13004
+ }
13005
+
13006
+ .ui.inverted.list .list > .item .header,
13007
+ .ui.inverted.list > .item .header {
13008
+ color: rgba(255, 255, 255, 0.9);
13009
+ }
13010
+
13011
+ .ui.inverted.list .list > .item .description,
13012
+ .ui.inverted.list > .item .description {
13013
+ color: rgba(255, 255, 255, 0.7);
13014
+ }
13015
+
13016
+ /* Item Link */
13017
+
13018
+ .ui.inverted.list .list > a.item,
13019
+ .ui.inverted.list > a.item {
13020
+ cursor: pointer;
13021
+ color: rgba(255, 255, 255, 0.9);
13022
+ }
13023
+
13024
+ .ui.inverted.list .list > a.item:hover,
13025
+ .ui.inverted.list > a.item:hover {
13026
+ color: #1e70bf;
13027
+ }
13028
+
13029
+ /* Linking Content */
13030
+
13031
+ .ui.inverted.list .item a:not(.ui) {
13032
+ color: rgba(255, 255, 255, 0.9) !important;
13033
+ }
13034
+
13035
+ .ui.inverted.list .item a:not(.ui):hover {
13036
+ color: #1e70bf !important;
13037
+ }
13038
+
13039
+ /*-------------------
13040
+ Aligned
13041
+ --------------------*/
13042
+
13043
+ .ui.list[class*="top aligned"] .image,
13044
+ .ui.list[class*="top aligned"] .content,
13045
+ .ui.list [class*="top aligned"] {
13046
+ vertical-align: top !important;
13047
+ }
13048
+
13049
+ .ui.list[class*="middle aligned"] .image,
13050
+ .ui.list[class*="middle aligned"] .content,
13051
+ .ui.list [class*="middle aligned"] {
13052
+ vertical-align: middle !important;
13053
+ }
13054
+
13055
+ .ui.list[class*="bottom aligned"] .image,
13056
+ .ui.list[class*="bottom aligned"] .content,
13057
+ .ui.list [class*="bottom aligned"] {
13058
+ vertical-align: bottom !important;
13059
+ }
13060
+
13061
+ /*-------------------
13062
+ Link
13063
+ --------------------*/
13064
+
13065
+ .ui.link.list .item,
13066
+ .ui.link.list a.item,
13067
+ .ui.link.list .item a:not(.ui) {
13068
+ color: rgba(0, 0, 0, 0.4);
13069
+ -webkit-transition: 0.1s color ease;
13070
+ transition: 0.1s color ease;
13071
+ }
13072
+
13073
+ .ui.link.list a.item:hover,
13074
+ .ui.link.list .item a:not(.ui):hover {
13075
+ color: rgba(0, 0, 0, 0.8);
13076
+ }
13077
+
13078
+ .ui.link.list a.item:active,
13079
+ .ui.link.list .item a:not(.ui):active {
13080
+ color: rgba(0, 0, 0, 0.9);
13081
+ }
13082
+
13083
+ .ui.link.list .active.item,
13084
+ .ui.link.list .active.item a:not(.ui) {
13085
+ color: rgba(0, 0, 0, 0.95);
13086
+ }
13087
+
13088
+ /* Inverted */
13089
+
13090
+ .ui.inverted.link.list .item,
13091
+ .ui.inverted.link.list a.item,
13092
+ .ui.inverted.link.list .item a:not(.ui) {
13093
+ color: rgba(255, 255, 255, 0.5);
13094
+ }
13095
+
13096
+ .ui.inverted.link.list a.item:hover,
13097
+ .ui.inverted.link.list .item a:not(.ui):hover {
13098
+ color: #ffffff;
13099
+ }
13100
+
13101
+ .ui.inverted.link.list a.item:active,
13102
+ .ui.inverted.link.list .item a:not(.ui):active {
13103
+ color: #ffffff;
13104
+ }
13105
+
13106
+ .ui.inverted.link.list a.active.item,
13107
+ .ui.inverted.link.list .active.item a:not(.ui) {
13108
+ color: #ffffff;
13109
+ }
13110
+
13111
+ /*-------------------
13112
+ Selection
13113
+ --------------------*/
13114
+
13115
+ .ui.selection.list .list > .item,
13116
+ .ui.selection.list > .item {
13117
+ cursor: pointer;
13118
+ background: transparent;
13119
+ padding: 0.5em 0.5em;
13120
+ margin: 0em;
13121
+ color: rgba(0, 0, 0, 0.4);
13122
+ border-radius: 0.5em;
13123
+ -webkit-transition: 0.1s color ease, 0.1s padding-left ease, 0.1s background-color ease;
13124
+ transition: 0.1s color ease, 0.1s padding-left ease, 0.1s background-color ease;
13125
+ }
13126
+
13127
+ .ui.selection.list .list > .item:last-child,
13128
+ .ui.selection.list > .item:last-child {
13129
+ margin-bottom: 0em;
13130
+ }
13131
+
13132
+ .ui.selection.list.list > .item:hover,
13133
+ .ui.selection.list > .item:hover {
13134
+ background: rgba(0, 0, 0, 0.03);
13135
+ color: rgba(0, 0, 0, 0.8);
13136
+ }
13137
+
13138
+ .ui.selection.list .list > .item:active,
13139
+ .ui.selection.list > .item:active {
13140
+ background: rgba(0, 0, 0, 0.05);
13141
+ color: rgba(0, 0, 0, 0.9);
13142
+ }
13143
+
13144
+ .ui.selection.list .list > .item.active,
13145
+ .ui.selection.list > .item.active {
13146
+ background: rgba(0, 0, 0, 0.05);
13147
+ color: rgba(0, 0, 0, 0.95);
13148
+ }
13149
+
13150
+ /* Inverted */
13151
+
13152
+ .ui.inverted.selection.list > .item,
13153
+ .ui.inverted.selection.list > .item {
13154
+ background: transparent;
13155
+ color: rgba(255, 255, 255, 0.5);
13156
+ }
13157
+
13158
+ .ui.inverted.selection.list > .item:hover,
13159
+ .ui.inverted.selection.list > .item:hover {
13160
+ background: rgba(255, 255, 255, 0.02);
13161
+ color: #ffffff;
13162
+ }
13163
+
13164
+ .ui.inverted.selection.list > .item:active,
13165
+ .ui.inverted.selection.list > .item:active {
13166
+ background: rgba(255, 255, 255, 0.08);
13167
+ color: #ffffff;
13168
+ }
13169
+
13170
+ .ui.inverted.selection.list > .item.active,
13171
+ .ui.inverted.selection.list > .item.active {
13172
+ background: rgba(255, 255, 255, 0.08);
13173
+ color: #ffffff;
13174
+ }
13175
+
13176
+ /* Celled / Divided Selection List */
13177
+
13178
+ .ui.celled.selection.list .list > .item,
13179
+ .ui.divided.selection.list .list > .item,
13180
+ .ui.celled.selection.list > .item,
13181
+ .ui.divided.selection.list > .item {
13182
+ border-radius: 0em;
13183
+ }
13184
+
13185
+ /*-------------------
13186
+ Animated
13187
+ --------------------*/
13188
+
13189
+ .ui.animated.list > .item {
13190
+ -webkit-transition: 0.25s color ease 0.1s, 0.25s padding-left ease 0.1s, 0.25s background-color ease 0.1s;
13191
+ transition: 0.25s color ease 0.1s, 0.25s padding-left ease 0.1s, 0.25s background-color ease 0.1s;
13192
+ }
13193
+
13194
+ .ui.animated.list:not(.horizontal) > .item:hover {
13195
+ padding-left: 1em;
13196
+ }
13197
+
13198
+ /*-------------------
13199
+ Fitted
13200
+ --------------------*/
13201
+
13202
+ .ui.fitted.list:not(.selection) .list > .item,
13203
+ .ui.fitted.list:not(.selection) > .item {
13204
+ padding-left: 0em;
13205
+ padding-right: 0em;
13206
+ }
13207
+
13208
+ .ui.fitted.selection.list .list > .item,
13209
+ .ui.fitted.selection.list > .item {
13210
+ margin-left: -0.5em;
13211
+ margin-right: -0.5em;
13212
+ }
13213
+
13214
+ /*-------------------
13215
+ Bulleted
13216
+ --------------------*/
13217
+
13218
+ ul.ui.list,
13219
+ .ui.bulleted.list {
13220
+ margin-left: 1.25rem;
13221
+ }
13222
+
13223
+ ul.ui.list li,
13224
+ .ui.bulleted.list .list > .item,
13225
+ .ui.bulleted.list > .item {
13226
+ position: relative;
13227
+ }
13228
+
13229
+ ul.ui.list li:before,
13230
+ .ui.bulleted.list .list > .item:before,
13231
+ .ui.bulleted.list > .item:before {
13232
+ -webkit-user-select: none;
13233
+ -moz-user-select: none;
13234
+ -ms-user-select: none;
13235
+ user-select: none;
13236
+ pointer-events: none;
13237
+ position: absolute;
13238
+ top: auto;
13239
+ left: auto;
13240
+ margin-left: -1.25rem;
13241
+ content: '•';
13242
+ opacity: 1;
13243
+ color: inherit;
13244
+ vertical-align: top;
13245
+ }
13246
+
13247
+ ul.ui.list ul,
13248
+ .ui.bulleted.list .list {
13249
+ padding-left: 1.25rem;
13250
+ }
13251
+
13252
+ /* Horizontal Bulleted */
13253
+
13254
+ ul.ui.horizontal.bulleted.list,
13255
+ .ui.horizontal.bulleted.list {
13256
+ margin-left: 0em;
13257
+ }
13258
+
13259
+ ul.ui.horizontal.bulleted.list li,
13260
+ .ui.horizontal.bulleted.list > .item {
13261
+ margin-left: 1.75rem;
13262
+ }
13263
+
13264
+ ul.ui.horizontal.bulleted.list li:first-child,
13265
+ .ui.horizontal.bulleted.list > .item:first-child {
13266
+ margin-left: 0em;
13267
+ }
13268
+
13269
+ ul.ui.horizontal.bulleted.list li::before,
13270
+ .ui.horizontal.bulleted.list > .item::before {
13271
+ color: rgba(0, 0, 0, 0.87);
13272
+ }
13273
+
13274
+ ul.ui.horizontal.bulleted.list li:first-child::before,
13275
+ .ui.horizontal.bulleted.list > .item:first-child::before {
13276
+ display: none;
13277
+ }
13278
+
13279
+ /*-------------------
13280
+ Ordered
13281
+ --------------------*/
13282
+
13283
+ ol.ui.list,
13284
+ .ui.ordered.list,
13285
+ .ui.ordered.list .list,
13286
+ ol.ui.list ol {
13287
+ counter-reset: ordered;
13288
+ margin-left: 1.25rem;
13289
+ list-style-type: none;
13290
+ }
13291
+
13292
+ ol.ui.list li,
13293
+ .ui.ordered.list .list > .item,
13294
+ .ui.ordered.list > .item {
13295
+ list-style-type: none;
13296
+ position: relative;
13297
+ }
13298
+
13299
+ ol.ui.list li:before,
13300
+ .ui.ordered.list .list > .item:before,
13301
+ .ui.ordered.list > .item:before {
13302
+ position: absolute;
13303
+ top: auto;
13304
+ left: auto;
13305
+ -webkit-user-select: none;
13306
+ -moz-user-select: none;
13307
+ -ms-user-select: none;
13308
+ user-select: none;
13309
+ pointer-events: none;
13310
+ margin-left: -1.25rem;
13311
+ counter-increment: ordered;
13312
+ content: counters(ordered, ".") " ";
13313
+ text-align: right;
13314
+ color: rgba(0, 0, 0, 0.87);
13315
+ vertical-align: middle;
13316
+ opacity: 0.8;
13317
+ }
13318
+
13319
+ ol.ui.inverted.list li:before,
13320
+ .ui.ordered.inverted.list .list > .item:before,
13321
+ .ui.ordered.inverted.list > .item:before {
13322
+ color: rgba(255, 255, 255, 0.7);
13323
+ }
13324
+
13325
+ /* Value */
13326
+
13327
+ .ui.ordered.list > .list > .item[data-value],
13328
+ .ui.ordered.list > .item[data-value] {
13329
+ content: attr(data-value);
13330
+ }
13331
+
13332
+ ol.ui.list li[value]:before {
13333
+ content: attr(value);
13334
+ }
13335
+
13336
+ /* Child Lists */
13337
+
13338
+ ol.ui.list ol,
13339
+ .ui.ordered.list .list {
13340
+ margin-left: 1em;
13341
+ }
13342
+
13343
+ ol.ui.list ol li:before,
13344
+ .ui.ordered.list .list > .item:before {
13345
+ margin-left: -2em;
13346
+ }
13347
+
13348
+ /* Horizontal Ordered */
13349
+
13350
+ ol.ui.horizontal.list,
13351
+ .ui.ordered.horizontal.list {
13352
+ margin-left: 0em;
13353
+ }
13354
+
13355
+ ol.ui.horizontal.list li:before,
13356
+ .ui.ordered.horizontal.list .list > .item:before,
13357
+ .ui.ordered.horizontal.list > .item:before {
13358
+ position: static;
13359
+ margin: 0em 0.5em 0em 0em;
13360
+ }
13361
+
13362
+ /*-------------------
13363
+ Divided
13364
+ --------------------*/
13365
+
13366
+ .ui.divided.list > .item {
13367
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
13368
+ }
13369
+
13370
+ .ui.divided.list .list > .item {
13371
+ border-top: none;
13372
+ }
13373
+
13374
+ .ui.divided.list .item .list > .item {
13375
+ border-top: none;
13376
+ }
13377
+
13378
+ .ui.divided.list .list > .item:first-child,
13379
+ .ui.divided.list > .item:first-child {
13380
+ border-top: none;
13381
+ }
13382
+
13383
+ /* Sub Menu */
13384
+
13385
+ .ui.divided.list:not(.horizontal) .list > .item:first-child {
13386
+ border-top-width: 1px;
13387
+ }
13388
+
13389
+ /* Divided bulleted */
13390
+
13391
+ .ui.divided.bulleted.list:not(.horizontal),
13392
+ .ui.divided.bulleted.list .list {
13393
+ margin-left: 0em;
13394
+ padding-left: 0em;
13395
+ }
13396
+
13397
+ .ui.divided.bulleted.list > .item:not(.horizontal) {
13398
+ padding-left: 1.25rem;
13399
+ }
13400
+
13401
+ /* Divided Ordered */
13402
+
13403
+ .ui.divided.ordered.list {
13404
+ margin-left: 0em;
13405
+ }
13406
+
13407
+ .ui.divided.ordered.list .list > .item,
13408
+ .ui.divided.ordered.list > .item {
13409
+ padding-left: 1.25rem;
13410
+ }
13411
+
13412
+ .ui.divided.ordered.list .item .list {
13413
+ margin-left: 0em;
13414
+ margin-right: 0em;
13415
+ padding-bottom: 0.21428571em;
13416
+ }
13417
+
13418
+ .ui.divided.ordered.list .item .list > .item {
13419
+ padding-left: 1em;
13420
+ }
13421
+
13422
+ /* Divided Selection */
13423
+
13424
+ .ui.divided.selection.list .list > .item,
13425
+ .ui.divided.selection.list > .item {
13426
+ margin: 0em;
13427
+ border-radius: 0em;
13428
+ }
13429
+
13430
+ /* Divided horizontal */
13431
+
13432
+ .ui.divided.horizontal.list {
13433
+ margin-left: 0em;
13434
+ }
13435
+
13436
+ .ui.divided.horizontal.list > .item {
13437
+ border-top: none;
13438
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
13439
+ margin: 0em;
13440
+ padding-left: 0.5em;
13441
+ padding-right: 0.5em;
13442
+ line-height: 0.6;
13443
+ }
13444
+
13445
+ .ui.horizontal.divided.list > .item:first-child {
13446
+ border-left: none;
13447
+ }
13448
+
13449
+ /* Inverted */
13450
+
13451
+ .ui.divided.inverted.list > .item,
13452
+ .ui.divided.inverted.list > .list,
13453
+ .ui.divided.inverted.horizontal.list > .item {
13454
+ border-color: rgba(255, 255, 255, 0.1);
13455
+ }
13456
+
13457
+ /*-------------------
13458
+ Celled
13459
+ --------------------*/
13460
+
13461
+ .ui.celled.list > .item,
13462
+ .ui.celled.list > .list {
13463
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
13464
+ padding-left: 0.5em;
13465
+ padding-right: 0.5em;
13466
+ }
13467
+
13468
+ .ui.celled.list > .item:last-child {
13469
+ border-bottom: 1px solid rgba(34, 36, 38, 0.15);
13470
+ }
13471
+
13472
+ /* Padding on all elements */
13473
+
13474
+ .ui.celled.list > .item:first-child,
13475
+ .ui.celled.list > .item:last-child {
13476
+ padding-top: 0.21428571em;
13477
+ padding-bottom: 0.21428571em;
13478
+ }
13479
+
13480
+ /* Sub Menu */
13481
+
13482
+ .ui.celled.list .item .list > .item {
13483
+ border-width: 0px;
13484
+ }
13485
+
13486
+ .ui.celled.list .list > .item:first-child {
13487
+ border-top-width: 0px;
13488
+ }
13489
+
13490
+ /* Celled Bulleted */
13491
+
13492
+ .ui.celled.bulleted.list {
13493
+ margin-left: 0em;
13494
+ }
13495
+
13496
+ .ui.celled.bulleted.list .list > .item,
13497
+ .ui.celled.bulleted.list > .item {
13498
+ padding-left: 1.25rem;
13499
+ }
13500
+
13501
+ .ui.celled.bulleted.list .item .list {
13502
+ margin-left: -1.25rem;
13503
+ margin-right: -1.25rem;
13504
+ padding-bottom: 0.21428571em;
13505
+ }
13506
+
13507
+ /* Celled Ordered */
13508
+
13509
+ .ui.celled.ordered.list {
13510
+ margin-left: 0em;
13511
+ }
13512
+
13513
+ .ui.celled.ordered.list .list > .item,
13514
+ .ui.celled.ordered.list > .item {
13515
+ padding-left: 1.25rem;
13516
+ }
13517
+
13518
+ .ui.celled.ordered.list .item .list {
13519
+ margin-left: 0em;
13520
+ margin-right: 0em;
13521
+ padding-bottom: 0.21428571em;
13522
+ }
13523
+
13524
+ .ui.celled.ordered.list .list > .item {
13525
+ padding-left: 1em;
13526
+ }
13527
+
13528
+ /* Celled Horizontal */
13529
+
13530
+ .ui.horizontal.celled.list {
13531
+ margin-left: 0em;
13532
+ }
13533
+
13534
+ .ui.horizontal.celled.list .list > .item,
13535
+ .ui.horizontal.celled.list > .item {
13536
+ border-top: none;
13537
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
13538
+ margin: 0em;
13539
+ padding-left: 0.5em;
13540
+ padding-right: 0.5em;
13541
+ line-height: 0.6;
13542
+ }
13543
+
13544
+ .ui.horizontal.celled.list .list > .item:last-child,
13545
+ .ui.horizontal.celled.list > .item:last-child {
13546
+ border-bottom: none;
13547
+ border-right: 1px solid rgba(34, 36, 38, 0.15);
13548
+ }
13549
+
13550
+ /* Inverted */
13551
+
13552
+ .ui.celled.inverted.list > .item,
13553
+ .ui.celled.inverted.list > .list {
13554
+ border-color: 1px solid rgba(255, 255, 255, 0.1);
13555
+ }
13556
+
13557
+ .ui.celled.inverted.horizontal.list .list > .item,
13558
+ .ui.celled.inverted.horizontal.list > .item {
13559
+ border-color: 1px solid rgba(255, 255, 255, 0.1);
13560
+ }
13561
+
13562
+ /*-------------------
13563
+ Relaxed
13564
+ --------------------*/
13565
+
13566
+ .ui.relaxed.list:not(.horizontal) > .item {
13567
+ padding-top: 0.42857143em;
13568
+ padding-bottom: 0.42857143em;
13569
+ }
13570
+
13571
+ .ui.relaxed.list:not(.horizontal) .list > .item {
13572
+ padding-top: 0.21428571em;
13573
+ padding-bottom: 0.21428571em;
13574
+ }
13575
+
13576
+ .ui.horizontal.relaxed.list > .item {
13577
+ padding-left: 1rem;
13578
+ padding-right: 1rem;
13579
+ }
13580
+
13581
+ /* Very Relaxed */
13582
+
13583
+ .ui[class*="very relaxed"].list:not(.horizontal) > .item {
13584
+ padding-top: 0.85714286em;
13585
+ padding-bottom: 0.85714286em;
13586
+ }
13587
+
13588
+ .ui[class*="very relaxed"].list:not(.horizontal) .list > .item {
13589
+ padding-top: 0.28571429em;
13590
+ padding-bottom: 0.28571429em;
13591
+ }
13592
+
13593
+ .ui.horizontal[class*="very relaxed"].list .list > .item,
13594
+ .ui.horizontal[class*="very relaxed"].list > .item {
13595
+ padding-left: 1.5rem;
13596
+ padding-right: 1.5rem;
13597
+ }
13598
+
13599
+ /*-------------------
13600
+ Sizes
13601
+ --------------------*/
13602
+
13603
+ .ui.mini.list {
13604
+ font-size: 0.71428571em;
13605
+ }
13606
+
13607
+ .ui.tiny.list {
13608
+ font-size: 0.85714286em;
13609
+ }
13610
+
13611
+ .ui.small.list {
13612
+ font-size: 0.92857143em;
13613
+ }
13614
+
13615
+ .ui.list {
13616
+ font-size: 1em;
13617
+ }
13618
+
13619
+ .ui.large.list {
13620
+ font-size: 1.14285714em;
13621
+ }
13622
+
13623
+ .ui.big.list {
13624
+ font-size: 1.28571429em;
13625
+ }
13626
+
13627
+ .ui.huge.list {
13628
+ font-size: 1.42857143em;
13629
+ }
13630
+
13631
+ .ui.massive.list {
13632
+ font-size: 1.71428571em;
13633
+ }
13634
+
13635
+ .ui.mini.horizontal.list .list > .item,
13636
+ .ui.mini.horizontal.list > .item {
13637
+ font-size: 0.71428571rem;
13638
+ }
13639
+
13640
+ .ui.tiny.horizontal.list .list > .item,
13641
+ .ui.tiny.horizontal.list > .item {
13642
+ font-size: 0.85714286rem;
13643
+ }
13644
+
13645
+ .ui.small.horizontal.list .list > .item,
13646
+ .ui.small.horizontal.list > .item {
13647
+ font-size: 0.92857143rem;
13648
+ }
13649
+
13650
+ .ui.horizontal.list .list > .item,
13651
+ .ui.horizontal.list > .item {
13652
+ font-size: 1rem;
13653
+ }
13654
+
13655
+ .ui.large.horizontal.list .list > .item,
13656
+ .ui.large.horizontal.list > .item {
13657
+ font-size: 1.14285714rem;
13658
+ }
13659
+
13660
+ .ui.big.horizontal.list .list > .item,
13661
+ .ui.big.horizontal.list > .item {
13662
+ font-size: 1.28571429rem;
13663
+ }
13664
+
13665
+ .ui.huge.horizontal.list .list > .item,
13666
+ .ui.huge.horizontal.list > .item {
13667
+ font-size: 1.42857143rem;
13668
+ }
13669
+
13670
+ .ui.massive.horizontal.list .list > .item,
13671
+ .ui.massive.horizontal.list > .item {
13672
+ font-size: 1.71428571rem;
13673
+ }
13674
+
13675
+ /*******************************
13676
+ Theme Overrides
13677
+ *******************************/
13678
+
13679
+ /*******************************
13680
+ User Variable Overrides
13681
+ *******************************/
13682
+ /*!
13683
+ * # Semantic UI 2.1.7 - Loader
13684
+ * http://github.com/semantic-org/semantic-ui/
13685
+ *
13686
+ *
13687
+ * Copyright 2015 Contributors
13688
+ * Released under the MIT license
13689
+ * http://opensource.org/licenses/MIT
13690
+ *
13691
+ */
13692
+
13693
+ /*******************************
13694
+ Loader
13695
+ *******************************/
13696
+
13697
+ /* Standard Size */
13698
+
13699
+ .ui.loader {
13700
+ display: none;
13701
+ position: absolute;
13702
+ top: 50%;
13703
+ left: 50%;
13704
+ margin: 0px;
13705
+ text-align: center;
13706
+ z-index: 1000;
13707
+ -webkit-transform: translateX(-50%) translateY(-50%);
13708
+ -ms-transform: translateX(-50%) translateY(-50%);
13709
+ transform: translateX(-50%) translateY(-50%);
13710
+ }
13711
+
13712
+ /* Static Shape */
13713
+
13714
+ .ui.loader:before {
13715
+ position: absolute;
13716
+ content: '';
13717
+ top: 0%;
13718
+ left: 50%;
13719
+ width: 100%;
13720
+ height: 100%;
13721
+ border-radius: 500rem;
13722
+ border: 0.2em solid rgba(0, 0, 0, 0.1);
13723
+ }
13724
+
13725
+ /* Active Shape */
13726
+
13727
+ .ui.loader:after {
13728
+ position: absolute;
13729
+ content: '';
13730
+ top: 0%;
13731
+ left: 50%;
13732
+ width: 100%;
13733
+ height: 100%;
13734
+ -webkit-animation: loader 0.6s linear;
13735
+ animation: loader 0.6s linear;
13736
+ -webkit-animation-iteration-count: infinite;
13737
+ animation-iteration-count: infinite;
13738
+ border-radius: 500rem;
13739
+ border-color: #767676 transparent transparent;
13740
+ border-style: solid;
13741
+ border-width: 0.2em;
13742
+ box-shadow: 0px 0px 0px 1px transparent;
13743
+ }
13744
+
13745
+ /* Active Animation */
13746
+
13747
+ @-webkit-keyframes loader {
13748
+ from {
13749
+ -webkit-transform: rotate(0deg);
13750
+ transform: rotate(0deg);
13751
+ }
13752
+
13753
+ to {
13754
+ -webkit-transform: rotate(360deg);
13755
+ transform: rotate(360deg);
13756
+ }
13757
+ }
13758
+
13759
+ @keyframes loader {
13760
+ from {
13761
+ -webkit-transform: rotate(0deg);
13762
+ transform: rotate(0deg);
13763
+ }
13764
+
13765
+ to {
13766
+ -webkit-transform: rotate(360deg);
13767
+ transform: rotate(360deg);
13768
+ }
13769
+ }
13770
+
13771
+ /* Sizes */
13772
+
13773
+ .ui.loader:before,
13774
+ .ui.loader:after {
13775
+ width: 2.2585em;
13776
+ height: 2.2585em;
13777
+ margin: 0em 0em 0em -1.12925em;
13778
+ }
13779
+
13780
+ .ui.mini.loader:before,
13781
+ .ui.mini.loader:after {
13782
+ width: 1.2857em;
13783
+ height: 1.2857em;
13784
+ margin: 0em 0em 0em -0.64285em;
13785
+ }
13786
+
13787
+ .ui.small.loader:before,
13788
+ .ui.small.loader:after {
13789
+ width: 1.7142em;
13790
+ height: 1.7142em;
13791
+ margin: 0em 0em 0em -0.8571em;
13792
+ }
13793
+
13794
+ .ui.large.loader:before,
13795
+ .ui.large.loader:after {
13796
+ width: 4.5714em;
13797
+ height: 4.5714em;
13798
+ margin: 0em 0em 0em -2.2857em;
13799
+ }
13800
+
13801
+ /*-------------------
13802
+ Coupling
13803
+ --------------------*/
13804
+
13805
+ /* Show inside active dimmer */
13806
+
13807
+ .ui.dimmer .loader {
13808
+ display: block;
13809
+ }
13810
+
13811
+ /* Black Dimmer */
13812
+
13813
+ .ui.dimmer .ui.loader {
13814
+ color: rgba(255, 255, 255, 0.9);
13815
+ }
13816
+
13817
+ .ui.dimmer .ui.loader:before {
13818
+ border-color: rgba(255, 255, 255, 0.15);
13819
+ }
13820
+
13821
+ .ui.dimmer .ui.loader:after {
13822
+ border-color: #ffffff transparent transparent;
13823
+ }
13824
+
13825
+ /* White Dimmer (Inverted) */
13826
+
13827
+ .ui.inverted.dimmer .ui.loader {
13828
+ color: rgba(0, 0, 0, 0.87);
13829
+ }
13830
+
13831
+ .ui.inverted.dimmer .ui.loader:before {
13832
+ border-color: rgba(0, 0, 0, 0.1);
13833
+ }
13834
+
13835
+ .ui.inverted.dimmer .ui.loader:after {
13836
+ border-color: #767676 transparent transparent;
13837
+ }
13838
+
13839
+ /*******************************
13840
+ Types
13841
+ *******************************/
13842
+
13843
+ /*-------------------
13844
+ Text
13845
+ --------------------*/
13846
+
13847
+ .ui.text.loader {
13848
+ width: auto !important;
13849
+ height: auto !important;
13850
+ text-align: center;
13851
+ font-style: normal;
13852
+ }
13853
+
13854
+ /*******************************
13855
+ States
13856
+ *******************************/
13857
+
13858
+ .ui.indeterminate.loader:after {
13859
+ -webkit-animation-direction: reverse;
13860
+ animation-direction: reverse;
13861
+ -webkit-animation-duration: 1.2s;
13862
+ animation-duration: 1.2s;
13863
+ }
13864
+
13865
+ .ui.loader.active,
13866
+ .ui.loader.visible {
13867
+ display: block;
13868
+ }
13869
+
13870
+ .ui.loader.disabled,
13871
+ .ui.loader.hidden {
13872
+ display: none;
13873
+ }
13874
+
13875
+ /*******************************
13876
+ Variations
13877
+ *******************************/
13878
+
13879
+ /*-------------------
13880
+ Sizes
13881
+ --------------------*/
13882
+
13883
+ /* Loader */
13884
+
13885
+ .ui.inverted.dimmer .ui.mini.loader,
13886
+ .ui.mini.loader {
13887
+ width: 1.2857em;
13888
+ height: 1.2857em;
13889
+ font-size: 0.71428571em;
13890
+ }
13891
+
13892
+ .ui.inverted.dimmer .ui.small.loader,
13893
+ .ui.small.loader {
13894
+ width: 1.7142em;
13895
+ height: 1.7142em;
13896
+ font-size: 0.92857143em;
13897
+ }
13898
+
13899
+ .ui.inverted.dimmer .ui.loader,
13900
+ .ui.loader {
13901
+ width: 2.2585em;
13902
+ height: 2.2585em;
13903
+ font-size: 1em;
13904
+ }
13905
+
13906
+ .ui.inverted.dimmer .ui.loader.large,
13907
+ .ui.loader.large {
13908
+ width: 4.5714em;
13909
+ height: 4.5714em;
13910
+ font-size: 1.14285714em;
13911
+ }
13912
+
13913
+ /* Text Loader */
13914
+
13915
+ .ui.mini.text.loader {
13916
+ min-width: 1.2857em;
13917
+ padding-top: 1.99998571em;
13918
+ }
13919
+
13920
+ .ui.small.text.loader {
13921
+ min-width: 1.7142em;
13922
+ padding-top: 2.42848571em;
13923
+ }
13924
+
13925
+ .ui.text.loader {
13926
+ min-width: 2.2585em;
13927
+ padding-top: 2.97278571em;
13928
+ }
13929
+
13930
+ .ui.large.text.loader {
13931
+ min-width: 4.5714em;
13932
+ padding-top: 5.28568571em;
13933
+ }
13934
+
13935
+ /*-------------------
13936
+ Inverted
13937
+ --------------------*/
13938
+
13939
+ .ui.inverted.loader {
13940
+ color: rgba(255, 255, 255, 0.9);
13941
+ }
13942
+
13943
+ .ui.inverted.loader:before {
13944
+ border-color: rgba(255, 255, 255, 0.15);
13945
+ }
13946
+
13947
+ .ui.inverted.loader:after {
13948
+ border-top-color: #ffffff;
13949
+ }
13950
+
13951
+ /*-------------------
13952
+ Inline
13953
+ --------------------*/
13954
+
13955
+ .ui.inline.loader {
13956
+ position: relative;
13957
+ vertical-align: middle;
13958
+ margin: 0em;
13959
+ left: 0em;
13960
+ top: 0em;
13961
+ -webkit-transform: none;
13962
+ -ms-transform: none;
13963
+ transform: none;
13964
+ }
13965
+
13966
+ .ui.inline.loader.active,
13967
+ .ui.inline.loader.visible {
13968
+ display: inline-block;
13969
+ }
13970
+
13971
+ /* Centered Inline */
13972
+
13973
+ .ui.centered.inline.loader.active,
13974
+ .ui.centered.inline.loader.visible {
13975
+ display: block;
13976
+ margin-left: auto;
13977
+ margin-right: auto;
13978
+ }
13979
+
13980
+ /*******************************
13981
+ Theme Overrides
13982
+ *******************************/
13983
+
13984
+ /*******************************
13985
+ Site Overrides
13986
+ *******************************/
13987
+ /*!
13988
+ * # Semantic UI 2.1.7 - Rail
13989
+ * http://github.com/semantic-org/semantic-ui/
13990
+ *
13991
+ *
13992
+ * Copyright 2015 Contributors
13993
+ * Released under the MIT license
13994
+ * http://opensource.org/licenses/MIT
13995
+ *
13996
+ */
13997
+
13998
+ /*******************************
13999
+ Rails
14000
+ *******************************/
14001
+
14002
+ .ui.rail {
14003
+ position: absolute;
14004
+ top: 0%;
14005
+ width: 300px;
14006
+ height: 100%;
14007
+ }
14008
+
14009
+ .ui.left.rail {
14010
+ left: auto;
14011
+ right: 100%;
14012
+ padding: 0em 2rem 0em 0em;
14013
+ margin: 0em 2rem 0em 0em;
14014
+ }
14015
+
14016
+ .ui.right.rail {
14017
+ left: 100%;
14018
+ right: auto;
14019
+ padding: 0em 0em 0em 2rem;
14020
+ margin: 0em 0em 0em 2rem;
14021
+ }
14022
+
14023
+ /*******************************
14024
+ Variations
14025
+ *******************************/
14026
+
14027
+ /*--------------
14028
+ Internal
14029
+ ---------------*/
14030
+
14031
+ .ui.left.internal.rail {
14032
+ left: 0%;
14033
+ right: auto;
14034
+ padding: 0em 0em 0em 2rem;
14035
+ margin: 0em 0em 0em 2rem;
14036
+ }
14037
+
14038
+ .ui.right.internal.rail {
14039
+ left: auto;
14040
+ right: 0%;
14041
+ padding: 0em 2rem 0em 0em;
14042
+ margin: 0em 2rem 0em 0em;
14043
+ }
14044
+
14045
+ /*--------------
14046
+ Dividing
14047
+ ---------------*/
14048
+
14049
+ .ui.dividing.rail {
14050
+ width: 302.5px;
14051
+ }
14052
+
14053
+ .ui.left.dividing.rail {
14054
+ padding: 0em 2.5rem 0em 0em;
14055
+ margin: 0em 2.5rem 0em 0em;
14056
+ border-right: 1px solid rgba(34, 36, 38, 0.15);
14057
+ }
14058
+
14059
+ .ui.right.dividing.rail {
14060
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
14061
+ padding: 0em 0em 0em 2.5rem;
14062
+ margin: 0em 0em 0em 2.5rem;
14063
+ }
14064
+
14065
+ /*--------------
14066
+ Distance
14067
+ ---------------*/
14068
+
14069
+ .ui.close.rail {
14070
+ width: 301px;
14071
+ }
14072
+
14073
+ .ui.close.left.rail {
14074
+ padding: 0em 1em 0em 0em;
14075
+ margin: 0em 1em 0em 0em;
14076
+ }
14077
+
14078
+ .ui.close.right.rail {
14079
+ padding: 0em 0em 0em 1em;
14080
+ margin: 0em 0em 0em 1em;
14081
+ }
14082
+
14083
+ .ui.very.close.rail {
14084
+ width: 300.5px;
14085
+ }
14086
+
14087
+ .ui.very.close.left.rail {
14088
+ padding: 0em 0.5em 0em 0em;
14089
+ margin: 0em 0.5em 0em 0em;
14090
+ }
14091
+
14092
+ .ui.very.close.right.rail {
14093
+ padding: 0em 0em 0em 0.5em;
14094
+ margin: 0em 0em 0em 0.5em;
14095
+ }
14096
+
14097
+ /*--------------
14098
+ Attached
14099
+ ---------------*/
14100
+
14101
+ .ui.attached.left.rail,
14102
+ .ui.attached.right.rail {
14103
+ padding: 0em;
14104
+ margin: 0em;
14105
+ }
14106
+
14107
+ /*--------------
14108
+ Sizing
14109
+ ---------------*/
14110
+
14111
+ .ui.rail {
14112
+ font-size: 1rem;
14113
+ }
14114
+
14115
+ /*******************************
14116
+ Theme Overrides
14117
+ *******************************/
14118
+
14119
+ /*******************************
14120
+ Site Overrides
14121
+ *******************************/
14122
+ /*!
14123
+ * # Semantic UI 2.1.7 - Reveal
14124
+ * http://github.com/semantic-org/semantic-ui/
14125
+ *
14126
+ *
14127
+ * Copyright 2015 Contributors
14128
+ * Released under the MIT license
14129
+ * http://opensource.org/licenses/MIT
14130
+ *
14131
+ */
14132
+
14133
+ /*******************************
14134
+ Reveal
14135
+ *******************************/
14136
+
14137
+ .ui.reveal {
14138
+ display: inherit;
14139
+ position: relative !important;
14140
+ font-size: 0em !important;
14141
+ }
14142
+
14143
+ .ui.reveal > .visible.content {
14144
+ position: absolute !important;
14145
+ top: 0em !important;
14146
+ left: 0em !important;
14147
+ z-index: 3 !important;
14148
+ -webkit-transition: all 0.5s ease 0.1s;
14149
+ transition: all 0.5s ease 0.1s;
14150
+ }
14151
+
14152
+ .ui.reveal > .hidden.content {
14153
+ position: relative !important;
14154
+ z-index: 2 !important;
14155
+ }
14156
+
14157
+ /* Make sure hovered element is on top of other reveal */
14158
+
14159
+ .ui.active.reveal .visible.content,
14160
+ .ui.reveal:hover .visible.content {
14161
+ z-index: 4 !important;
14162
+ }
14163
+
14164
+ /*******************************
14165
+ Types
14166
+ *******************************/
14167
+
14168
+ /*--------------
14169
+ Slide
14170
+ ---------------*/
14171
+
14172
+ .ui.slide.reveal {
14173
+ position: relative !important;
14174
+ overflow: hidden !important;
14175
+ white-space: nowrap;
14176
+ }
14177
+
14178
+ .ui.slide.reveal > .content {
14179
+ display: block;
14180
+ width: 100%;
14181
+ float: left;
14182
+ margin: 0em;
14183
+ -webkit-transition: -webkit-transform 0.5s ease 0.1s;
14184
+ transition: transform 0.5s ease 0.1s;
14185
+ }
14186
+
14187
+ .ui.slide.reveal > .visible.content {
14188
+ position: relative !important;
14189
+ }
14190
+
14191
+ .ui.slide.reveal > .hidden.content {
14192
+ position: absolute !important;
14193
+ left: 0% !important;
14194
+ width: 100% !important;
14195
+ -webkit-transform: translateX(100%) !important;
14196
+ -ms-transform: translateX(100%) !important;
14197
+ transform: translateX(100%) !important;
14198
+ }
14199
+
14200
+ .ui.slide.active.reveal > .visible.content,
14201
+ .ui.slide.reveal:hover > .visible.content {
14202
+ -webkit-transform: translateX(-100%) !important;
14203
+ -ms-transform: translateX(-100%) !important;
14204
+ transform: translateX(-100%) !important;
14205
+ }
14206
+
14207
+ .ui.slide.active.reveal > .hidden.content,
14208
+ .ui.slide.reveal:hover > .hidden.content {
14209
+ -webkit-transform: translateX(0%) !important;
14210
+ -ms-transform: translateX(0%) !important;
14211
+ transform: translateX(0%) !important;
14212
+ }
14213
+
14214
+ .ui.slide.right.reveal > .visible.content {
14215
+ -webkit-transform: translateX(0%) !important;
14216
+ -ms-transform: translateX(0%) !important;
14217
+ transform: translateX(0%) !important;
14218
+ }
14219
+
14220
+ .ui.slide.right.reveal > .hidden.content {
14221
+ -webkit-transform: translateX(-100%) !important;
14222
+ -ms-transform: translateX(-100%) !important;
14223
+ transform: translateX(-100%) !important;
14224
+ }
14225
+
14226
+ .ui.slide.right.active.reveal > .visible.content,
14227
+ .ui.slide.right.reveal:hover > .visible.content {
14228
+ -webkit-transform: translateX(100%) !important;
14229
+ -ms-transform: translateX(100%) !important;
14230
+ transform: translateX(100%) !important;
14231
+ }
14232
+
14233
+ .ui.slide.right.active.reveal > .hidden.content,
14234
+ .ui.slide.right.reveal:hover > .hidden.content {
14235
+ -webkit-transform: translateX(0%) !important;
14236
+ -ms-transform: translateX(0%) !important;
14237
+ transform: translateX(0%) !important;
14238
+ }
14239
+
14240
+ .ui.slide.up.reveal > .hidden.content {
14241
+ -webkit-transform: translateY(100%) !important;
14242
+ -ms-transform: translateY(100%) !important;
14243
+ transform: translateY(100%) !important;
14244
+ }
14245
+
14246
+ .ui.slide.up.active.reveal > .visible.content,
14247
+ .ui.slide.up.reveal:hover > .visible.content {
14248
+ -webkit-transform: translateY(-100%) !important;
14249
+ -ms-transform: translateY(-100%) !important;
14250
+ transform: translateY(-100%) !important;
14251
+ }
14252
+
14253
+ .ui.slide.up.active.reveal > .hidden.content,
14254
+ .ui.slide.up.reveal:hover > .hidden.content {
14255
+ -webkit-transform: translateY(0%) !important;
14256
+ -ms-transform: translateY(0%) !important;
14257
+ transform: translateY(0%) !important;
14258
+ }
14259
+
14260
+ .ui.slide.down.reveal > .hidden.content {
14261
+ -webkit-transform: translateY(-100%) !important;
14262
+ -ms-transform: translateY(-100%) !important;
14263
+ transform: translateY(-100%) !important;
14264
+ }
14265
+
14266
+ .ui.slide.down.active.reveal > .visible.content,
14267
+ .ui.slide.down.reveal:hover > .visible.content {
14268
+ -webkit-transform: translateY(100%) !important;
14269
+ -ms-transform: translateY(100%) !important;
14270
+ transform: translateY(100%) !important;
14271
+ }
14272
+
14273
+ .ui.slide.down.active.reveal > .hidden.content,
14274
+ .ui.slide.down.reveal:hover > .hidden.content {
14275
+ -webkit-transform: translateY(0%) !important;
14276
+ -ms-transform: translateY(0%) !important;
14277
+ transform: translateY(0%) !important;
14278
+ }
14279
+
14280
+ /*--------------
14281
+ Fade
14282
+ ---------------*/
14283
+
14284
+ .ui.fade.reveal > .visible.content {
14285
+ opacity: 1;
14286
+ }
14287
+
14288
+ .ui.fade.active.reveal > .visible.content,
14289
+ .ui.fade.reveal:hover > .visible.content {
14290
+ opacity: 0;
14291
+ }
14292
+
14293
+ /*--------------
14294
+ Move
14295
+ ---------------*/
14296
+
14297
+ .ui.move.reveal {
14298
+ position: relative !important;
14299
+ overflow: hidden !important;
14300
+ white-space: nowrap;
14301
+ }
14302
+
14303
+ .ui.move.reveal > .content {
14304
+ display: block;
14305
+ float: left;
14306
+ margin: 0em;
14307
+ -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s;
14308
+ transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s;
14309
+ }
14310
+
14311
+ .ui.move.reveal > .visible.content {
14312
+ position: relative !important;
14313
+ }
14314
+
14315
+ .ui.move.reveal > .hidden.content {
14316
+ position: absolute !important;
14317
+ left: 0% !important;
14318
+ width: 100% !important;
14319
+ }
14320
+
14321
+ .ui.move.active.reveal > .visible.content,
14322
+ .ui.move.reveal:hover > .visible.content {
14323
+ -webkit-transform: translateX(-100%) !important;
14324
+ -ms-transform: translateX(-100%) !important;
14325
+ transform: translateX(-100%) !important;
14326
+ }
14327
+
14328
+ .ui.move.right.active.reveal > .visible.content,
14329
+ .ui.move.right.reveal:hover > .visible.content {
14330
+ -webkit-transform: translateX(100%) !important;
14331
+ -ms-transform: translateX(100%) !important;
14332
+ transform: translateX(100%) !important;
14333
+ }
14334
+
14335
+ .ui.move.up.active.reveal > .visible.content,
14336
+ .ui.move.up.reveal:hover > .visible.content {
14337
+ -webkit-transform: translateY(-100%) !important;
14338
+ -ms-transform: translateY(-100%) !important;
14339
+ transform: translateY(-100%) !important;
14340
+ }
14341
+
14342
+ .ui.move.down.active.reveal > .visible.content,
14343
+ .ui.move.down.reveal:hover > .visible.content {
14344
+ -webkit-transform: translateY(100%) !important;
14345
+ -ms-transform: translateY(100%) !important;
14346
+ transform: translateY(100%) !important;
14347
+ }
14348
+
14349
+ /*--------------
14350
+ Rotate
14351
+ ---------------*/
14352
+
14353
+ .ui.rotate.reveal > .visible.content {
14354
+ -webkit-transition-duration: 0.5s;
14355
+ transition-duration: 0.5s;
14356
+ -webkit-transform: rotate(0deg);
14357
+ -ms-transform: rotate(0deg);
14358
+ transform: rotate(0deg);
14359
+ }
14360
+
14361
+ .ui.rotate.reveal > .visible.content,
14362
+ .ui.rotate.right.reveal > .visible.content {
14363
+ -webkit-transform-origin: bottom right;
14364
+ -ms-transform-origin: bottom right;
14365
+ transform-origin: bottom right;
14366
+ }
14367
+
14368
+ .ui.rotate.active.reveal > .visible.conten,
14369
+ .ui.rotate.reveal:hover > .visible.content,
14370
+ .ui.rotate.right.active.reveal > .visible.content,
14371
+ .ui.rotate.right.reveal:hover > .visible.content {
14372
+ -webkit-transform: rotate(110deg);
14373
+ -ms-transform: rotate(110deg);
14374
+ transform: rotate(110deg);
14375
+ }
14376
+
14377
+ .ui.rotate.left.reveal > .visible.content {
14378
+ -webkit-transform-origin: bottom left;
14379
+ -ms-transform-origin: bottom left;
14380
+ transform-origin: bottom left;
14381
+ }
14382
+
14383
+ .ui.rotate.left.active.reveal > .visible.content,
14384
+ .ui.rotate.left.reveal:hover > .visible.content {
14385
+ -webkit-transform: rotate(-110deg);
14386
+ -ms-transform: rotate(-110deg);
14387
+ transform: rotate(-110deg);
14388
+ }
14389
+
14390
+ /*******************************
14391
+ States
14392
+ *******************************/
14393
+
14394
+ .ui.disabled.reveal:hover > .visible.visible.content {
14395
+ position: static !important;
14396
+ display: block !important;
14397
+ opacity: 1 !important;
14398
+ top: 0 !important;
14399
+ left: 0 !important;
14400
+ right: auto !important;
14401
+ bottom: auto !important;
14402
+ -webkit-transform: none !important;
14403
+ -ms-transform: none !important;
14404
+ transform: none !important;
14405
+ }
14406
+
14407
+ .ui.disabled.reveal:hover > .hidden.hidden.content {
14408
+ display: none !important;
14409
+ }
14410
+
14411
+ /*******************************
14412
+ Variations
14413
+ *******************************/
14414
+
14415
+ /*--------------
14416
+ Visible
14417
+ ---------------*/
14418
+
14419
+ .ui.visible.reveal {
14420
+ overflow: visible;
14421
+ }
14422
+
14423
+ /*--------------
14424
+ Instant
14425
+ ---------------*/
14426
+
14427
+ .ui.instant.reveal > .content {
14428
+ -webkit-transition-delay: 0s !important;
14429
+ transition-delay: 0s !important;
14430
+ }
14431
+
14432
+ /*--------------
14433
+ Sizing
14434
+ ---------------*/
14435
+
14436
+ .ui.reveal > .content {
14437
+ font-size: 1rem !important;
14438
+ }
14439
+
14440
+ /*******************************
14441
+ Theme Overrides
14442
+ *******************************/
14443
+
14444
+ /*******************************
14445
+ Site Overrides
14446
+ *******************************/
14447
+ /*!
14448
+ * # Semantic UI 2.1.7 - Segment
14449
+ * http://github.com/semantic-org/semantic-ui/
14450
+ *
14451
+ *
14452
+ * Copyright 2015 Contributors
14453
+ * Released under the MIT license
14454
+ * http://opensource.org/licenses/MIT
14455
+ *
14456
+ */
14457
+
14458
+ /*******************************
14459
+ Segment
14460
+ *******************************/
14461
+
14462
+ .ui.segment {
14463
+ position: relative;
14464
+ background: #ffffff;
14465
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
14466
+ margin: 1rem 0em;
14467
+ padding: 1em 1em;
14468
+ border-radius: 0.28571429rem;
14469
+ border: 1px solid rgba(34, 36, 38, 0.15);
14470
+ }
14471
+
14472
+ .ui.segment:first-child {
14473
+ margin-top: 0em;
14474
+ }
14475
+
14476
+ .ui.segment:last-child {
14477
+ margin-bottom: 0em;
14478
+ }
14479
+
14480
+ /* Vertical */
14481
+
14482
+ .ui.vertical.segment {
14483
+ margin: 0em;
14484
+ padding-left: 0em;
14485
+ padding-right: 0em;
14486
+ background: none transparent;
14487
+ border-radius: 0px;
14488
+ box-shadow: none;
14489
+ border: none;
14490
+ border-bottom: 1px solid rgba(34, 36, 38, 0.15);
14491
+ }
14492
+
14493
+ .ui.vertical.segment:last-child {
14494
+ border-bottom: none;
14495
+ }
14496
+
14497
+ /*-------------------
14498
+ Loose Coupling
14499
+ --------------------*/
14500
+
14501
+ /* Header */
14502
+
14503
+ .ui.inverted.segment > .ui.header {
14504
+ color: #ffffff;
14505
+ }
14506
+
14507
+ /* Label */
14508
+
14509
+ .ui[class*="bottom attached"].segment > [class*="top attached"].label {
14510
+ border-top-left-radius: 0em;
14511
+ border-top-right-radius: 0em;
14512
+ }
14513
+
14514
+ .ui[class*="top attached"].segment > [class*="bottom attached"].label {
14515
+ border-bottom-left-radius: 0em;
14516
+ border-bottom-right-radius: 0em;
14517
+ }
14518
+
14519
+ .ui.attached.segment:not(.top):not(.bottom) > [class*="top attached"].label {
14520
+ border-top-left-radius: 0em;
14521
+ border-top-right-radius: 0em;
14522
+ }
14523
+
14524
+ .ui.attached.segment:not(.top):not(.bottom) > [class*="bottom attached"].label {
14525
+ border-bottom-left-radius: 0em;
14526
+ border-bottom-right-radius: 0em;
14527
+ }
14528
+
14529
+ /* Grid */
14530
+
14531
+ .ui.page.grid.segment,
14532
+ .ui.grid > .row > .ui.segment.column,
14533
+ .ui.grid > .ui.segment.column {
14534
+ padding-top: 2em;
14535
+ padding-bottom: 2em;
14536
+ }
14537
+
14538
+ .ui.grid.segment {
14539
+ margin: 1rem 0em;
14540
+ border-radius: 0.28571429rem;
14541
+ }
14542
+
14543
+ /* Table */
14544
+
14545
+ .ui.basic.table.segment {
14546
+ background: #ffffff;
14547
+ border: 1px solid rgba(34, 36, 38, 0.15);
14548
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
14549
+ }
14550
+
14551
+ .ui[class*="very basic"].table.segment {
14552
+ padding: 1em 1em;
14553
+ }
14554
+
14555
+ /*******************************
14556
+ Types
14557
+ *******************************/
14558
+
14559
+ /*-------------------
14560
+ Piled
14561
+ --------------------*/
14562
+
14563
+ .ui.piled.segments,
14564
+ .ui.piled.segment {
14565
+ margin: 3em 0em;
14566
+ box-shadow: '';
14567
+ z-index: auto;
14568
+ }
14569
+
14570
+ .ui.piled.segment:first-child {
14571
+ margin-top: 0em;
14572
+ }
14573
+
14574
+ .ui.piled.segment:last-child {
14575
+ margin-bottom: 0em;
14576
+ }
14577
+
14578
+ .ui.piled.segments:after,
14579
+ .ui.piled.segments:before,
14580
+ .ui.piled.segment:after,
14581
+ .ui.piled.segment:before {
14582
+ background-color: #ffffff;
14583
+ visibility: visible;
14584
+ content: '';
14585
+ display: block;
14586
+ height: 100%;
14587
+ left: 0px;
14588
+ position: absolute;
14589
+ width: 100%;
14590
+ border: 1px solid rgba(34, 36, 38, 0.15);
14591
+ box-shadow: '';
14592
+ }
14593
+
14594
+ .ui.piled.segments:before,
14595
+ .ui.piled.segment:before {
14596
+ -webkit-transform: rotate(-1.2deg);
14597
+ -ms-transform: rotate(-1.2deg);
14598
+ transform: rotate(-1.2deg);
14599
+ top: 0;
14600
+ z-index: -2;
14601
+ }
14602
+
14603
+ .ui.piled.segments:after,
14604
+ .ui.piled.segment:after {
14605
+ -webkit-transform: rotate(1.2deg);
14606
+ -ms-transform: rotate(1.2deg);
14607
+ transform: rotate(1.2deg);
14608
+ top: 0;
14609
+ z-index: -1;
14610
+ }
14611
+
14612
+ /* Piled Attached */
14613
+
14614
+ .ui[class*="top attached"].piled.segment {
14615
+ margin-top: 3em;
14616
+ margin-bottom: 0em;
14617
+ }
14618
+
14619
+ .ui.piled.segment[class*="top attached"]:first-child {
14620
+ margin-top: 0em;
14621
+ }
14622
+
14623
+ .ui.piled.segment[class*="bottom attached"] {
14624
+ margin-top: 0em;
14625
+ margin-bottom: 3em;
14626
+ }
14627
+
14628
+ .ui.piled.segment[class*="bottom attached"]:last-child {
14629
+ margin-bottom: 0em;
14630
+ }
14631
+
14632
+ /*-------------------
14633
+ Stacked
14634
+ --------------------*/
14635
+
14636
+ .ui.stacked.segment {
14637
+ padding-bottom: 1.4em;
14638
+ }
14639
+
14640
+ .ui.stacked.segments:before,
14641
+ .ui.stacked.segments:after,
14642
+ .ui.stacked.segment:before,
14643
+ .ui.stacked.segment:after {
14644
+ content: '';
14645
+ position: absolute;
14646
+ bottom: -3px;
14647
+ left: 0%;
14648
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
14649
+ background: rgba(0, 0, 0, 0.03);
14650
+ width: 100%;
14651
+ height: 6px;
14652
+ visibility: visible;
14653
+ }
14654
+
14655
+ .ui.stacked.segments:before,
14656
+ .ui.stacked.segment:before {
14657
+ display: none;
14658
+ }
14659
+
14660
+ /* Add additional page */
14661
+
14662
+ .ui.tall.stacked.segments:before,
14663
+ .ui.tall.stacked.segment:before {
14664
+ display: block;
14665
+ bottom: 0px;
14666
+ }
14667
+
14668
+ /* Inverted */
14669
+
14670
+ .ui.stacked.inverted.segments:before,
14671
+ .ui.stacked.inverted.segments:after,
14672
+ .ui.stacked.inverted.segment:before,
14673
+ .ui.stacked.inverted.segment:after {
14674
+ background-color: rgba(0, 0, 0, 0.03);
14675
+ border-top: 1px solid rgba(34, 36, 38, 0.35);
14676
+ }
14677
+
14678
+ /*-------------------
14679
+ Padded
14680
+ --------------------*/
14681
+
14682
+ .ui.padded.segment {
14683
+ padding: 1.5em;
14684
+ }
14685
+
14686
+ .ui[class*="very padded"].segment {
14687
+ padding: 3em;
14688
+ }
14689
+
14690
+ /*-------------------
14691
+ Compact
14692
+ --------------------*/
14693
+
14694
+ .ui.compact.segment {
14695
+ display: table;
14696
+ }
14697
+
14698
+ /* Compact Group */
14699
+
14700
+ .ui.compact.segments {
14701
+ display: -webkit-inline-box;
14702
+ display: -webkit-inline-flex;
14703
+ display: -ms-inline-flexbox;
14704
+ display: inline-flex;
14705
+ }
14706
+
14707
+ .ui.compact.segments .segment,
14708
+ .ui.segments .compact.segment {
14709
+ display: block;
14710
+ -webkit-box-flex: 0;
14711
+ -webkit-flex: 0 1 auto;
14712
+ -ms-flex: 0 1 auto;
14713
+ flex: 0 1 auto;
14714
+ }
14715
+
14716
+ /*-------------------
14717
+ Circular
14718
+ --------------------*/
14719
+
14720
+ .ui.circular.segment {
14721
+ display: table-cell;
14722
+ padding: 2em;
14723
+ text-align: center;
14724
+ vertical-align: middle;
14725
+ border-radius: 500em;
14726
+ }
14727
+
14728
+ /*-------------------
14729
+ Raised
14730
+ --------------------*/
14731
+
14732
+ .ui.raised.segments,
14733
+ .ui.raised.segment {
14734
+ box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.08);
14735
+ }
14736
+
14737
+ /*******************************
14738
+ Groups
14739
+ *******************************/
14740
+
14741
+ /* Group */
14742
+
14743
+ .ui.segments {
14744
+ -webkit-box-orient: vertical;
14745
+ -webkit-box-direction: normal;
14746
+ -webkit-flex-direction: column;
14747
+ -ms-flex-direction: column;
14748
+ flex-direction: column;
14749
+ position: relative;
14750
+ margin: 1rem 0em;
14751
+ border: 1px solid rgba(34, 36, 38, 0.15);
14752
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
14753
+ border-radius: 0.28571429rem;
14754
+ }
14755
+
14756
+ .ui.segments:first-child {
14757
+ margin-top: 0em;
14758
+ }
14759
+
14760
+ .ui.segments:last-child {
14761
+ margin-bottom: 0em;
14762
+ }
14763
+
14764
+ /* Nested Segment */
14765
+
14766
+ .ui.segments > .segment {
14767
+ top: 0px;
14768
+ bottom: 0px;
14769
+ border-radius: 0px;
14770
+ margin: 0em;
14771
+ width: auto;
14772
+ box-shadow: none;
14773
+ border: none;
14774
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
14775
+ }
14776
+
14777
+ .ui.segments:not(.horizontal) > .segment:first-child {
14778
+ border-top: none;
14779
+ margin-top: 0em;
14780
+ bottom: 0px;
14781
+ margin-bottom: 0em;
14782
+ top: 0px;
14783
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
14784
+ }
14785
+
14786
+ /* Bottom */
14787
+
14788
+ .ui.segments:not(.horizontal) > .segment:last-child {
14789
+ top: 0px;
14790
+ bottom: 0px;
14791
+ margin-top: 0em;
14792
+ margin-bottom: 0em;
14793
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none;
14794
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
14795
+ }
14796
+
14797
+ /* Nested Group */
14798
+
14799
+ .ui.segments > .ui.segments {
14800
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
14801
+ margin: 1rem 1rem;
14802
+ }
14803
+
14804
+ .ui.segments > .segments:first-child {
14805
+ border-top: none;
14806
+ }
14807
+
14808
+ .ui.segments > .segment + .segments:not(.horizontal) {
14809
+ margin-top: 0em;
14810
+ }
14811
+
14812
+ /* Horizontal Group */
14813
+
14814
+ .ui.horizontal.segments {
14815
+ display: -webkit-box;
14816
+ display: -webkit-flex;
14817
+ display: -ms-flexbox;
14818
+ display: flex;
14819
+ -webkit-box-orient: horizontal;
14820
+ -webkit-box-direction: normal;
14821
+ -webkit-flex-direction: row;
14822
+ -ms-flex-direction: row;
14823
+ flex-direction: row;
14824
+ background-color: transparent;
14825
+ border-radius: 0px;
14826
+ padding: 0em;
14827
+ background-color: #ffffff;
14828
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
14829
+ margin: 1rem 0em;
14830
+ border-radius: 0.28571429rem;
14831
+ border: 1px solid rgba(34, 36, 38, 0.15);
14832
+ }
14833
+
14834
+ /* Nested Horizontal Group */
14835
+
14836
+ .ui.segments > .horizontal.segments {
14837
+ margin: 0em;
14838
+ background-color: transparent;
14839
+ border-radius: 0px;
14840
+ border: none;
14841
+ box-shadow: none;
14842
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
14843
+ }
14844
+
14845
+ /* Horizontal Segment */
14846
+
14847
+ .ui.horizontal.segments > .segment {
14848
+ -webkit-box-flex: 1;
14849
+ -webkit-flex: 1 1 auto;
14850
+ flex: 1 1 auto;
14851
+ -ms-flex: 1 1 0px;
14852
+ /* Solves #2550 MS Flex */
14853
+ margin: 0em;
14854
+ min-width: 0px;
14855
+ background-color: transparent;
14856
+ border-radius: 0px;
14857
+ border: none;
14858
+ box-shadow: none;
14859
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
14860
+ }
14861
+
14862
+ /* Border Fixes */
14863
+
14864
+ .ui.segments > .horizontal.segments:first-child {
14865
+ border-top: none;
14866
+ }
14867
+
14868
+ .ui.horizontal.segments > .segment:first-child {
14869
+ border-left: none;
14870
+ }
14871
+
14872
+ /*******************************
14873
+ States
14874
+ *******************************/
14875
+
14876
+ /*--------------
14877
+ Disabled
14878
+ ---------------*/
14879
+
14880
+ .ui.disabled.segment {
14881
+ opacity: 0.45;
14882
+ color: rgba(40, 40, 40, 0.3);
14883
+ }
14884
+
14885
+ /*--------------
14886
+ Loading
14887
+ ---------------*/
14888
+
14889
+ .ui.loading.segment {
14890
+ position: relative;
14891
+ cursor: default;
14892
+ point-events: none;
14893
+ text-shadow: none !important;
14894
+ color: transparent !important;
14895
+ -webkit-transition: all 0s linear;
14896
+ transition: all 0s linear;
14897
+ }
14898
+
14899
+ .ui.loading.segment:before {
14900
+ position: absolute;
14901
+ content: '';
14902
+ top: 0%;
14903
+ left: 0%;
14904
+ background: rgba(255, 255, 255, 0.8);
14905
+ width: 100%;
14906
+ height: 100%;
14907
+ border-radius: 0.28571429rem;
14908
+ z-index: 100;
14909
+ }
14910
+
14911
+ .ui.loading.segment:after {
14912
+ position: absolute;
14913
+ content: '';
14914
+ top: 50%;
14915
+ left: 50%;
14916
+ margin: -1.5em 0em 0em -1.5em;
14917
+ width: 3em;
14918
+ height: 3em;
14919
+ -webkit-animation: segment-spin 0.6s linear;
14920
+ animation: segment-spin 0.6s linear;
14921
+ -webkit-animation-iteration-count: infinite;
14922
+ animation-iteration-count: infinite;
14923
+ border-radius: 500rem;
14924
+ border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1);
14925
+ border-style: solid;
14926
+ border-width: 0.2em;
14927
+ box-shadow: 0px 0px 0px 1px transparent;
14928
+ visibility: visible;
14929
+ z-index: 101;
14930
+ }
14931
+
14932
+ @-webkit-keyframes segment-spin {
14933
+ from {
14934
+ -webkit-transform: rotate(0deg);
14935
+ transform: rotate(0deg);
14936
+ }
14937
+
14938
+ to {
14939
+ -webkit-transform: rotate(360deg);
14940
+ transform: rotate(360deg);
14941
+ }
14942
+ }
14943
+
14944
+ @keyframes segment-spin {
14945
+ from {
14946
+ -webkit-transform: rotate(0deg);
14947
+ transform: rotate(0deg);
14948
+ }
14949
+
14950
+ to {
14951
+ -webkit-transform: rotate(360deg);
14952
+ transform: rotate(360deg);
14953
+ }
14954
+ }
14955
+
14956
+ /*******************************
14957
+ Variations
14958
+ *******************************/
14959
+
14960
+ /*-------------------
14961
+ Basic
14962
+ --------------------*/
14963
+
14964
+ .ui.basic.segment {
14965
+ background: none transparent;
14966
+ box-shadow: none;
14967
+ border: none;
14968
+ border-radius: 0px;
14969
+ }
14970
+
14971
+ /*-------------------
14972
+ Clearing
14973
+ --------------------*/
14974
+
14975
+ .ui.clearing.segment:after {
14976
+ content: ".";
14977
+ display: block;
14978
+ height: 0;
14979
+ clear: both;
14980
+ visibility: hidden;
14981
+ }
14982
+
14983
+ /*-------------------
14984
+ Colors
14985
+ --------------------*/
14986
+
14987
+ /* Red */
14988
+
14989
+ .ui.red.segment:not(.inverted) {
14990
+ border-top: 2px solid #db2828;
14991
+ }
14992
+
14993
+ .ui.inverted.red.segment {
14994
+ background-color: #db2828 !important;
14995
+ color: #ffffff !important;
14996
+ }
14997
+
14998
+ /* Orange */
14999
+
15000
+ .ui.orange.segment:not(.inverted) {
15001
+ border-top: 2px solid #f2711c;
15002
+ }
15003
+
15004
+ .ui.inverted.orange.segment {
15005
+ background-color: #f2711c !important;
15006
+ color: #ffffff !important;
15007
+ }
15008
+
15009
+ /* Yellow */
15010
+
15011
+ .ui.yellow.segment:not(.inverted) {
15012
+ border-top: 2px solid #fbbd08;
15013
+ }
15014
+
15015
+ .ui.inverted.yellow.segment {
15016
+ background-color: #fbbd08 !important;
15017
+ color: #ffffff !important;
15018
+ }
15019
+
15020
+ /* Olive */
15021
+
15022
+ .ui.olive.segment:not(.inverted) {
15023
+ border-top: 2px solid #b5cc18;
15024
+ }
15025
+
15026
+ .ui.inverted.olive.segment {
15027
+ background-color: #b5cc18 !important;
15028
+ color: #ffffff !important;
15029
+ }
15030
+
15031
+ /* Green */
15032
+
15033
+ .ui.green.segment:not(.inverted) {
15034
+ border-top: 2px solid #21ba45;
15035
+ }
15036
+
15037
+ .ui.inverted.green.segment {
15038
+ background-color: #21ba45 !important;
15039
+ color: #ffffff !important;
15040
+ }
15041
+
15042
+ /* Teal */
15043
+
15044
+ .ui.teal.segment:not(.inverted) {
15045
+ border-top: 2px solid #00b5ad;
15046
+ }
15047
+
15048
+ .ui.inverted.teal.segment {
15049
+ background-color: #00b5ad !important;
15050
+ color: #ffffff !important;
15051
+ }
15052
+
15053
+ /* Blue */
15054
+
15055
+ .ui.blue.segment:not(.inverted) {
15056
+ border-top: 2px solid #2185d0;
15057
+ }
15058
+
15059
+ .ui.inverted.blue.segment {
15060
+ background-color: #2185d0 !important;
15061
+ color: #ffffff !important;
15062
+ }
15063
+
15064
+ /* Violet */
15065
+
15066
+ .ui.violet.segment:not(.inverted) {
15067
+ border-top: 2px solid #6435c9;
15068
+ }
15069
+
15070
+ .ui.inverted.violet.segment {
15071
+ background-color: #6435c9 !important;
15072
+ color: #ffffff !important;
15073
+ }
15074
+
15075
+ /* Purple */
15076
+
15077
+ .ui.purple.segment:not(.inverted) {
15078
+ border-top: 2px solid #a333c8;
15079
+ }
15080
+
15081
+ .ui.inverted.purple.segment {
15082
+ background-color: #a333c8 !important;
15083
+ color: #ffffff !important;
15084
+ }
15085
+
15086
+ /* Pink */
15087
+
15088
+ .ui.pink.segment:not(.inverted) {
15089
+ border-top: 2px solid #e03997;
15090
+ }
15091
+
15092
+ .ui.inverted.pink.segment {
15093
+ background-color: #e03997 !important;
15094
+ color: #ffffff !important;
15095
+ }
15096
+
15097
+ /* Brown */
15098
+
15099
+ .ui.brown.segment:not(.inverted) {
15100
+ border-top: 2px solid #a5673f;
15101
+ }
15102
+
15103
+ .ui.inverted.brown.segment {
15104
+ background-color: #a5673f !important;
15105
+ color: #ffffff !important;
15106
+ }
15107
+
15108
+ /* Grey */
15109
+
15110
+ .ui.grey.segment:not(.inverted) {
15111
+ border-top: 2px solid #767676;
15112
+ }
15113
+
15114
+ .ui.inverted.grey.segment {
15115
+ background-color: #767676 !important;
15116
+ color: #ffffff !important;
15117
+ }
15118
+
15119
+ /* Black */
15120
+
15121
+ .ui.black.segment:not(.inverted) {
15122
+ border-top: 2px solid #1b1c1d;
15123
+ }
15124
+
15125
+ .ui.inverted.black.segment {
15126
+ background-color: #1b1c1d !important;
15127
+ color: #ffffff !important;
15128
+ }
15129
+
15130
+ /*-------------------
15131
+ Aligned
15132
+ --------------------*/
15133
+
15134
+ .ui[class*="left aligned"].segment {
15135
+ text-align: left;
15136
+ }
15137
+
15138
+ .ui[class*="right aligned"].segment {
15139
+ text-align: right;
15140
+ }
15141
+
15142
+ .ui[class*="center aligned"].segment {
15143
+ text-align: center;
15144
+ }
15145
+
15146
+ /*-------------------
15147
+ Floated
15148
+ --------------------*/
15149
+
15150
+ .ui.floated.segment,
15151
+ .ui[class*="left floated"].segment {
15152
+ float: left;
15153
+ margin-right: 1em;
15154
+ }
15155
+
15156
+ .ui[class*="right floated"].segment {
15157
+ float: right;
15158
+ margin-left: 1em;
15159
+ }
15160
+
15161
+ /*-------------------
15162
+ Inverted
15163
+ --------------------*/
15164
+
15165
+ .ui.inverted.segment {
15166
+ border: none;
15167
+ box-shadow: none;
15168
+ }
15169
+
15170
+ .ui.inverted.segment,
15171
+ .ui.primary.inverted.segment {
15172
+ background: #1b1c1d;
15173
+ color: rgba(255, 255, 255, 0.9);
15174
+ }
15175
+
15176
+ /* Nested */
15177
+
15178
+ .ui.inverted.segment .segment {
15179
+ color: rgba(0, 0, 0, 0.87);
15180
+ }
15181
+
15182
+ .ui.inverted.segment .inverted.segment {
15183
+ color: rgba(255, 255, 255, 0.9);
15184
+ }
15185
+
15186
+ /* Attached */
15187
+
15188
+ .ui.inverted.attached.segment {
15189
+ border-color: #555555;
15190
+ }
15191
+
15192
+ /*-------------------
15193
+ Emphasis
15194
+ --------------------*/
15195
+
15196
+ /* Secondary */
15197
+
15198
+ .ui.secondary.segment {
15199
+ background: #f3f4f5;
15200
+ color: rgba(0, 0, 0, 0.6);
15201
+ }
15202
+
15203
+ .ui.secondary.inverted.segment {
15204
+ background: #4c4f52 -webkit-linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
15205
+ background: #4c4f52 linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
15206
+ color: rgba(255, 255, 255, 0.8);
15207
+ }
15208
+
15209
+ /* Tertiary */
15210
+
15211
+ .ui.tertiary.segment {
15212
+ background: #dcddde;
15213
+ color: rgba(0, 0, 0, 0.6);
15214
+ }
15215
+
15216
+ .ui.tertiary.inverted.segment {
15217
+ background: #717579 -webkit-linear-gradient(rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.35) 100%);
15218
+ background: #717579 linear-gradient(rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.35) 100%);
15219
+ color: rgba(255, 255, 255, 0.8);
15220
+ }
15221
+
15222
+ /*-------------------
15223
+ Attached
15224
+ --------------------*/
15225
+
15226
+ /* Middle */
15227
+
15228
+ .ui.attached.segment {
15229
+ top: 0px;
15230
+ bottom: 0px;
15231
+ border-radius: 0px;
15232
+ margin: 0em -1px;
15233
+ width: calc(100% + 2px );
15234
+ max-width: calc(100% + 2px );
15235
+ box-shadow: none;
15236
+ border: 1px solid #d4d4d5;
15237
+ }
15238
+
15239
+ .ui.attached + .ui.attached.segment:not(.top) {
15240
+ border-top: none;
15241
+ }
15242
+
15243
+ /* Top */
15244
+
15245
+ .ui[class*="top attached"].segment {
15246
+ bottom: 0px;
15247
+ margin-bottom: 0em;
15248
+ top: 0px;
15249
+ margin-top: 1rem;
15250
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
15251
+ }
15252
+
15253
+ .ui.segment[class*="top attached"]:first-child {
15254
+ margin-top: 0em;
15255
+ }
15256
+
15257
+ /* Bottom */
15258
+
15259
+ .ui.segment[class*="bottom attached"] {
15260
+ bottom: 0px;
15261
+ margin-top: 0em;
15262
+ top: 0px;
15263
+ margin-bottom: 1rem;
15264
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none;
15265
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
15266
+ }
15267
+
15268
+ .ui.segment[class*="bottom attached"]:last-child {
15269
+ margin-bottom: 0em;
15270
+ }
15271
+
15272
+ /*******************************
15273
+ Theme Overrides
15274
+ *******************************/
15275
+
15276
+ /*******************************
15277
+ Site Overrides
15278
+ *******************************/
15279
+ /*!
15280
+ * # Semantic UI 2.1.7 - Step
15281
+ * http://github.com/semantic-org/semantic-ui/
15282
+ *
15283
+ *
15284
+ * Copyright 2015 Contributors
15285
+ * Released under the MIT license
15286
+ * http://opensource.org/licenses/MIT
15287
+ *
15288
+ */
15289
+
15290
+ /*******************************
15291
+ Plural
15292
+ *******************************/
15293
+
15294
+ .ui.steps {
15295
+ display: -webkit-inline-box;
15296
+ display: -webkit-inline-flex;
15297
+ display: -ms-inline-flexbox;
15298
+ display: inline-flex;
15299
+ -webkit-box-orient: horizontal;
15300
+ -webkit-box-direction: normal;
15301
+ -webkit-flex-direction: row;
15302
+ -ms-flex-direction: row;
15303
+ flex-direction: row;
15304
+ -webkit-box-align: stretch;
15305
+ -webkit-align-items: stretch;
15306
+ -ms-flex-align: stretch;
15307
+ align-items: stretch;
15308
+ margin: 1em 0em;
15309
+ background: '';
15310
+ box-shadow: none;
15311
+ line-height: 1.14285714em;
15312
+ border-radius: 0.28571429rem;
15313
+ border: 1px solid rgba(34, 36, 38, 0.15);
15314
+ }
15315
+
15316
+ /* First Steps */
15317
+
15318
+ .ui.steps:first-child {
15319
+ margin-top: 0em;
15320
+ }
15321
+
15322
+ /* Last Steps */
15323
+
15324
+ .ui.steps:last-child {
15325
+ margin-bottom: 0em;
15326
+ }
15327
+
15328
+ /*******************************
15329
+ Singular
15330
+ *******************************/
15331
+
15332
+ .ui.steps .step {
15333
+ position: relative;
15334
+ display: -webkit-box;
15335
+ display: -webkit-flex;
15336
+ display: -ms-flexbox;
15337
+ display: flex;
15338
+ -webkit-box-flex: 1;
15339
+ -webkit-flex: 1 0 auto;
15340
+ -ms-flex: 1 0 auto;
15341
+ flex: 1 0 auto;
15342
+ -webkit-flex-wrap: wrap;
15343
+ -ms-flex-wrap: wrap;
15344
+ flex-wrap: wrap;
15345
+ -webkit-box-orient: horizontal;
15346
+ -webkit-box-direction: normal;
15347
+ -webkit-flex-direction: row;
15348
+ -ms-flex-direction: row;
15349
+ flex-direction: row;
15350
+ vertical-align: middle;
15351
+ -webkit-box-align: center;
15352
+ -webkit-align-items: center;
15353
+ -ms-flex-align: center;
15354
+ align-items: center;
15355
+ -webkit-box-pack: center;
15356
+ -webkit-justify-content: center;
15357
+ -ms-flex-pack: center;
15358
+ justify-content: center;
15359
+ margin: 0em 0em;
15360
+ padding: 1.14285714em 2em;
15361
+ background: #ffffff;
15362
+ color: rgba(0, 0, 0, 0.87);
15363
+ box-shadow: none;
15364
+ border-radius: 0em;
15365
+ border: none;
15366
+ border-right: 1px solid rgba(34, 36, 38, 0.15);
15367
+ -webkit-transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
15368
+ transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
15369
+ }
15370
+
15371
+ /* Arrow */
15372
+
15373
+ .ui.steps .step:after {
15374
+ display: none;
15375
+ position: absolute;
15376
+ z-index: 2;
15377
+ content: '';
15378
+ top: 50%;
15379
+ right: 0%;
15380
+ border: medium none;
15381
+ background-color: #ffffff;
15382
+ width: 1.14285714em;
15383
+ height: 1.14285714em;
15384
+ border-style: solid;
15385
+ border-color: rgba(34, 36, 38, 0.15);
15386
+ border-width: 0px 1px 1px 0px;
15387
+ -webkit-transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
15388
+ transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
15389
+ -webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg);
15390
+ -ms-transform: translateY(-50%) translateX(50%) rotate(-45deg);
15391
+ transform: translateY(-50%) translateX(50%) rotate(-45deg);
15392
+ }
15393
+
15394
+ /* First Step */
15395
+
15396
+ .ui.steps .step:first-child {
15397
+ padding-left: 2em;
15398
+ border-radius: 0.28571429rem 0em 0em 0.28571429rem;
15399
+ }
15400
+
15401
+ /* Last Step */
15402
+
15403
+ .ui.steps .step:last-child {
15404
+ border-radius: 0em 0.28571429rem 0.28571429rem 0em;
15405
+ }
15406
+
15407
+ .ui.steps .step:last-child {
15408
+ border-right: none;
15409
+ margin-right: 0em;
15410
+ }
15411
+
15412
+ /* Only Step */
15413
+
15414
+ .ui.steps .step:only-child {
15415
+ border-radius: 0.28571429rem;
15416
+ }
15417
+
15418
+ /*******************************
15419
+ Content
15420
+ *******************************/
15421
+
15422
+ /* Title */
15423
+
15424
+ .ui.steps .step .title {
15425
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
15426
+ font-size: 1.14285714em;
15427
+ font-weight: bold;
15428
+ }
15429
+
15430
+ .ui.steps .step > .title {
15431
+ width: 100%;
15432
+ }
15433
+
15434
+ /* Description */
15435
+
15436
+ .ui.steps .step .description {
15437
+ font-weight: normal;
15438
+ font-size: 0.92857143em;
15439
+ color: rgba(0, 0, 0, 0.87);
15440
+ }
15441
+
15442
+ .ui.steps .step > .description {
15443
+ width: 100%;
15444
+ }
15445
+
15446
+ .ui.steps .step .title ~ .description {
15447
+ margin-top: 0.25em;
15448
+ }
15449
+
15450
+ /* Icon */
15451
+
15452
+ .ui.steps .step > .icon {
15453
+ line-height: 1;
15454
+ font-size: 2.5em;
15455
+ margin: 0em 1rem 0em 0em;
15456
+ }
15457
+
15458
+ .ui.steps .step > .icon,
15459
+ .ui.steps .step > .icon ~ .content {
15460
+ display: block;
15461
+ -webkit-box-flex: 0;
15462
+ -webkit-flex: 0 1 auto;
15463
+ -ms-flex: 0 1 auto;
15464
+ flex: 0 1 auto;
15465
+ -webkit-align-self: middle;
15466
+ -ms-flex-item-align: middle;
15467
+ align-self: middle;
15468
+ }
15469
+
15470
+ .ui.steps .step > .icon ~ .content {
15471
+ -webkit-box-flex: 1 0 auto;
15472
+ -webkit-flex-grow: 1 0 auto;
15473
+ -ms-flex-positive: 1 0 auto;
15474
+ flex-grow: 1 0 auto;
15475
+ }
15476
+
15477
+ /* Horizontal Icon */
15478
+
15479
+ .ui.steps:not(.vertical) .step > .icon {
15480
+ width: auto;
15481
+ }
15482
+
15483
+ /* Link */
15484
+
15485
+ .ui.steps .link.step,
15486
+ .ui.steps a.step {
15487
+ cursor: pointer;
15488
+ }
15489
+
15490
+ /*******************************
15491
+ Types
15492
+ *******************************/
15493
+
15494
+ /*--------------
15495
+ Ordered
15496
+ ---------------*/
15497
+
15498
+ .ui.ordered.steps {
15499
+ counter-reset: ordered;
15500
+ }
15501
+
15502
+ .ui.ordered.steps .step:before {
15503
+ display: block;
15504
+ position: static;
15505
+ text-align: center;
15506
+ content: counters(ordered, ".");
15507
+ -webkit-align-self: middle;
15508
+ -ms-flex-item-align: middle;
15509
+ align-self: middle;
15510
+ margin-right: 1rem;
15511
+ font-size: 2.5em;
15512
+ counter-increment: ordered;
15513
+ font-family: inherit;
15514
+ font-weight: bold;
15515
+ }
15516
+
15517
+ .ui.ordered.steps .step > * {
15518
+ display: block;
15519
+ -webkit-align-self: middle;
15520
+ -ms-flex-item-align: middle;
15521
+ align-self: middle;
15522
+ }
15523
+
15524
+ /*--------------
15525
+ Vertical
15526
+ ---------------*/
15527
+
15528
+ .ui.vertical.steps {
15529
+ display: -webkit-inline-box;
15530
+ display: -webkit-inline-flex;
15531
+ display: -ms-inline-flexbox;
15532
+ display: inline-flex;
15533
+ -webkit-box-orient: vertical;
15534
+ -webkit-box-direction: normal;
15535
+ -webkit-flex-direction: column;
15536
+ -ms-flex-direction: column;
15537
+ flex-direction: column;
15538
+ overflow: visible;
15539
+ }
15540
+
15541
+ .ui.vertical.steps .step {
15542
+ -webkit-box-pack: start;
15543
+ -webkit-justify-content: flex-start;
15544
+ -ms-flex-pack: start;
15545
+ justify-content: flex-start;
15546
+ border-radius: 0em;
15547
+ padding: 1.14285714em 2em;
15548
+ border-right: none;
15549
+ border-bottom: 1px solid rgba(34, 36, 38, 0.15);
15550
+ }
15551
+
15552
+ .ui.vertical.steps .step:first-child {
15553
+ padding: 1.14285714em 2em;
15554
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
15555
+ }
15556
+
15557
+ .ui.vertical.steps .step:last-child {
15558
+ border-bottom: none;
15559
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
15560
+ }
15561
+
15562
+ .ui.vertical.steps .step:only-child {
15563
+ border-radius: 0.28571429rem;
15564
+ }
15565
+
15566
+ /* Arrow */
15567
+
15568
+ .ui.vertical.steps .step:after {
15569
+ display: none;
15570
+ }
15571
+
15572
+ .ui.vertical.steps .step:after {
15573
+ top: 50%;
15574
+ right: 0%;
15575
+ border-width: 0px 1px 1px 0px;
15576
+ }
15577
+
15578
+ .ui.vertical.steps .step:after {
15579
+ display: none;
15580
+ }
15581
+
15582
+ .ui.vertical.steps .active.step:after {
15583
+ display: block;
15584
+ }
15585
+
15586
+ .ui.vertical.steps .step:last-child:after {
15587
+ display: none;
15588
+ }
15589
+
15590
+ .ui.vertical.steps .active.step:last-child:after {
15591
+ display: block;
15592
+ }
15593
+
15594
+ /*---------------
15595
+ Responsive
15596
+ ----------------*/
15597
+
15598
+ /* Mobile (Default) */
15599
+
15600
+ @media only screen and (max-width: 767px) {
15601
+ .ui.steps {
15602
+ display: -webkit-inline-box;
15603
+ display: -webkit-inline-flex;
15604
+ display: -ms-inline-flexbox;
15605
+ display: inline-flex;
15606
+ overflow: visible;
15607
+ -webkit-box-orient: vertical;
15608
+ -webkit-box-direction: normal;
15609
+ -webkit-flex-direction: column;
15610
+ -ms-flex-direction: column;
15611
+ flex-direction: column;
15612
+ }
15613
+
15614
+ .ui.steps .step {
15615
+ width: 100% !important;
15616
+ -webkit-box-orient: vertical;
15617
+ -webkit-box-direction: normal;
15618
+ -webkit-flex-direction: column;
15619
+ -ms-flex-direction: column;
15620
+ flex-direction: column;
15621
+ border-radius: 0em;
15622
+ padding: 1.14285714em 2em;
15623
+ }
15624
+
15625
+ .ui.steps .step:first-child {
15626
+ padding: 1.14285714em 2em;
15627
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
15628
+ }
15629
+
15630
+ .ui.steps .step:last-child {
15631
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
15632
+ }
15633
+
15634
+ /* Arrow */
15635
+
15636
+ .ui.steps .step:after {
15637
+ display: none !important;
15638
+ }
15639
+
15640
+ /* Content */
15641
+
15642
+ .ui.steps .step .content {
15643
+ text-align: center;
15644
+ }
15645
+
15646
+ /* Icon */
15647
+
15648
+ .ui.steps .step > .icon,
15649
+ .ui.ordered.steps .step:before {
15650
+ margin: 0em 0em 1rem 0em;
15651
+ }
15652
+ }
15653
+
15654
+ /*******************************
15655
+ States
15656
+ *******************************/
15657
+
15658
+ /* Link Hover */
15659
+
15660
+ .ui.steps .link.step:hover::after,
15661
+ .ui.steps .link.step:hover,
15662
+ .ui.steps a.step:hover::after,
15663
+ .ui.steps a.step:hover {
15664
+ background: #f9fafb;
15665
+ color: rgba(0, 0, 0, 0.8);
15666
+ }
15667
+
15668
+ /* Link Down */
15669
+
15670
+ .ui.steps .link.step:active::after,
15671
+ .ui.steps .link.step:active,
15672
+ .ui.steps a.step:active::after,
15673
+ .ui.steps a.step:active {
15674
+ background: #f3f4f5;
15675
+ color: rgba(0, 0, 0, 0.9);
15676
+ }
15677
+
15678
+ /* Active */
15679
+
15680
+ .ui.steps .step.active {
15681
+ cursor: auto;
15682
+ background: #f3f4f5;
15683
+ }
15684
+
15685
+ .ui.steps .step.active:after {
15686
+ background: #f3f4f5;
15687
+ }
15688
+
15689
+ .ui.steps .step.active .title {
15690
+ color: #4183c4;
15691
+ }
15692
+
15693
+ .ui.ordered.steps .step.active:before,
15694
+ .ui.steps .active.step .icon {
15695
+ color: rgba(0, 0, 0, 0.85);
15696
+ }
15697
+
15698
+ /* Active Arrow */
15699
+
15700
+ .ui.steps .step:after {
15701
+ display: block;
15702
+ }
15703
+
15704
+ .ui.steps .active.step:after {
15705
+ display: block;
15706
+ }
15707
+
15708
+ .ui.steps .step:last-child:after {
15709
+ display: none;
15710
+ }
15711
+
15712
+ .ui.steps .active.step:last-child:after {
15713
+ display: none;
15714
+ }
15715
+
15716
+ /* Active Hover */
15717
+
15718
+ .ui.steps .link.active.step:hover::after,
15719
+ .ui.steps .link.active.step:hover,
15720
+ .ui.steps a.active.step:hover::after,
15721
+ .ui.steps a.active.step:hover {
15722
+ cursor: pointer;
15723
+ background: #dcddde;
15724
+ color: rgba(0, 0, 0, 0.87);
15725
+ }
15726
+
15727
+ /* Completed */
15728
+
15729
+ .ui.steps .step.completed > .icon:before,
15730
+ .ui.ordered.steps .step.completed:before {
15731
+ color: #21ba45;
15732
+ }
15733
+
15734
+ /* Disabled */
15735
+
15736
+ .ui.steps .disabled.step {
15737
+ cursor: auto;
15738
+ background: #ffffff;
15739
+ pointer-events: none;
15740
+ }
15741
+
15742
+ .ui.steps .disabled.step,
15743
+ .ui.steps .disabled.step .title,
15744
+ .ui.steps .disabled.step .description {
15745
+ color: rgba(40, 40, 40, 0.3);
15746
+ }
15747
+
15748
+ .ui.steps .disabled.step:after {
15749
+ background: #ffffff;
15750
+ }
15751
+
15752
+ /*******************************
15753
+ Variations
15754
+ *******************************/
15755
+
15756
+ /*--------------
15757
+ Stackable
15758
+ ---------------*/
15759
+
15760
+ /* Tablet Or Below */
15761
+
15762
+ @media only screen and (max-width: 991px) {
15763
+ .ui[class*="tablet stackable"].steps {
15764
+ display: -webkit-inline-box;
15765
+ display: -webkit-inline-flex;
15766
+ display: -ms-inline-flexbox;
15767
+ display: inline-flex;
15768
+ overflow: visible;
15769
+ -webkit-box-orient: vertical;
15770
+ -webkit-box-direction: normal;
15771
+ -webkit-flex-direction: column;
15772
+ -ms-flex-direction: column;
15773
+ flex-direction: column;
15774
+ }
15775
+
15776
+ /* Steps */
15777
+
15778
+ .ui[class*="tablet stackable"].steps .step {
15779
+ -webkit-box-orient: vertical;
15780
+ -webkit-box-direction: normal;
15781
+ -webkit-flex-direction: column;
15782
+ -ms-flex-direction: column;
15783
+ flex-direction: column;
15784
+ border-radius: 0em;
15785
+ padding: 1.14285714em 2em;
15786
+ }
15787
+
15788
+ .ui[class*="tablet stackable"].steps .step:first-child {
15789
+ padding: 1.14285714em 2em;
15790
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
15791
+ }
15792
+
15793
+ .ui[class*="tablet stackable"].steps .step:last-child {
15794
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
15795
+ }
15796
+
15797
+ /* Arrow */
15798
+
15799
+ .ui[class*="tablet stackable"].steps .step:after {
15800
+ display: none !important;
15801
+ }
15802
+
15803
+ /* Content */
15804
+
15805
+ .ui[class*="tablet stackable"].steps .step .content {
15806
+ text-align: center;
15807
+ }
15808
+
15809
+ /* Icon */
15810
+
15811
+ .ui[class*="tablet stackable"].steps .step > .icon,
15812
+ .ui[class*="tablet stackable"].ordered.steps .step:before {
15813
+ margin: 0em 0em 1rem 0em;
15814
+ }
15815
+ }
15816
+
15817
+ /*--------------
15818
+ Fluid
15819
+ ---------------*/
15820
+
15821
+ /* Fluid */
15822
+
15823
+ .ui.fluid.steps {
15824
+ display: -webkit-box;
15825
+ display: -webkit-flex;
15826
+ display: -ms-flexbox;
15827
+ display: flex;
15828
+ width: 100%;
15829
+ }
15830
+
15831
+ /*--------------
15832
+ Attached
15833
+ ---------------*/
15834
+
15835
+ /* Top */
15836
+
15837
+ .ui.attached.steps {
15838
+ width: calc(100% + 2px ) !important;
15839
+ margin: 0em -1px -1px;
15840
+ max-width: calc(100% + 2px );
15841
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
15842
+ }
15843
+
15844
+ .ui.attached.steps .step:first-child {
15845
+ border-radius: 0.28571429rem 0em 0em 0em;
15846
+ }
15847
+
15848
+ .ui.attached.steps .step:last-child {
15849
+ border-radius: 0em 0.28571429rem 0em 0em;
15850
+ }
15851
+
15852
+ /* Bottom */
15853
+
15854
+ .ui.bottom.attached.steps {
15855
+ margin: -1px -1px 0em;
15856
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
15857
+ }
15858
+
15859
+ .ui.bottom.attached.steps .step:first-child {
15860
+ border-radius: 0em 0em 0em 0.28571429rem;
15861
+ }
15862
+
15863
+ .ui.bottom.attached.steps .step:last-child {
15864
+ border-radius: 0em 0em 0.28571429rem 0em;
15865
+ }
15866
+
15867
+ /*-------------------
15868
+ Evenly Divided
15869
+ --------------------*/
15870
+
15871
+ .ui.one.steps,
15872
+ .ui.two.steps,
15873
+ .ui.three.steps,
15874
+ .ui.four.steps,
15875
+ .ui.five.steps,
15876
+ .ui.six.steps,
15877
+ .ui.seven.steps,
15878
+ .ui.eight.steps {
15879
+ width: 100%;
15880
+ }
15881
+
15882
+ .ui.one.steps > .step,
15883
+ .ui.two.steps > .step,
15884
+ .ui.three.steps > .step,
15885
+ .ui.four.steps > .step,
15886
+ .ui.five.steps > .step,
15887
+ .ui.six.steps > .step,
15888
+ .ui.seven.steps > .step,
15889
+ .ui.eight.steps > .step {
15890
+ -webkit-flex-wrap: nowrap;
15891
+ -ms-flex-wrap: nowrap;
15892
+ flex-wrap: nowrap;
15893
+ }
15894
+
15895
+ .ui.one.steps > .step {
15896
+ width: 100%;
15897
+ }
15898
+
15899
+ .ui.two.steps > .step {
15900
+ width: 50%;
15901
+ }
15902
+
15903
+ .ui.three.steps > .step {
15904
+ width: 33.333%;
15905
+ }
15906
+
15907
+ .ui.four.steps > .step {
15908
+ width: 25%;
15909
+ }
15910
+
15911
+ .ui.five.steps > .step {
15912
+ width: 20%;
15913
+ }
15914
+
15915
+ .ui.six.steps > .step {
15916
+ width: 16.666%;
15917
+ }
15918
+
15919
+ .ui.seven.steps > .step {
15920
+ width: 14.285%;
15921
+ }
15922
+
15923
+ .ui.eight.steps > .step {
15924
+ width: 12.500%;
15925
+ }
15926
+
15927
+ /*-------------------
15928
+ Sizes
15929
+ --------------------*/
15930
+
15931
+ .ui.small.step,
15932
+ .ui.small.steps .step {
15933
+ font-size: 0.92857143rem;
15934
+ }
15935
+
15936
+ .ui.step,
15937
+ .ui.steps .step {
15938
+ font-size: 1rem;
15939
+ }
15940
+
15941
+ .ui.large.step,
15942
+ .ui.large.steps .step {
15943
+ font-size: 1.14285714rem;
15944
+ }
15945
+
15946
+ /*******************************
15947
+ Theme Overrides
15948
+ *******************************/
15949
+
15950
+ @font-face {
15951
+ font-family: 'Step';
15952
+ src: url("data:application/x-font-ttf;charset=utf-8;;base64,AAEAAAAOAIAAAwBgT1MvMj3hSQEAAADsAAAAVmNtYXDQEhm3AAABRAAAAUpjdnQgBkn/lAAABuwAAAAcZnBnbYoKeDsAAAcIAAAJkWdhc3AAAAAQAAAG5AAAAAhnbHlm32cEdgAAApAAAAC2aGVhZAErPHsAAANIAAAANmhoZWEHUwNNAAADgAAAACRobXR4CykAAAAAA6QAAAAMbG9jYQA4AFsAAAOwAAAACG1heHAApgm8AAADuAAAACBuYW1lzJ0aHAAAA9gAAALNcG9zdK69QJgAAAaoAAAAO3ByZXCSoZr/AAAQnAAAAFYAAQO4AZAABQAIAnoCvAAAAIwCegK8AAAB4AAxAQIAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA6ADoAQNS/2oAWgMLAE8AAAABAAAAAAAAAAAAAwAAAAMAAAAcAAEAAAAAAEQAAwABAAAAHAAEACgAAAAGAAQAAQACAADoAf//AAAAAOgA//8AABgBAAEAAAAAAAAAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADpAKYABUAHEAZDwEAAQFCAAIBAmoAAQABagAAAGEUFxQDEisBFAcBBiInASY0PwE2Mh8BATYyHwEWA6QP/iAQLBD+6g8PTBAsEKQBbhAsEEwPAhYWEP4gDw8BFhAsEEwQEKUBbxAQTBAAAAH//f+xA18DCwAMABJADwABAQpDAAAACwBEFRMCESsBFA4BIi4CPgEyHgEDWXLG6MhuBnq89Lp+AV51xHR0xOrEdHTEAAAAAAEAAAABAADDeRpdXw889QALA+gAAAAAzzWYjQAAAADPNWBN//3/sQOkAwsAAAAIAAIAAAAAAAAAAQAAA1L/agBaA+gAAP/3A6QAAQAAAAAAAAAAAAAAAAAAAAMD6AAAA+gAAANZAAAAAAAAADgAWwABAAAAAwAWAAEAAAAAAAIABgATAG4AAAAtCZEAAAAAAAAAEgDeAAEAAAAAAAAANQAAAAEAAAAAAAEACAA1AAEAAAAAAAIABwA9AAEAAAAAAAMACABEAAEAAAAAAAQACABMAAEAAAAAAAUACwBUAAEAAAAAAAYACABfAAEAAAAAAAoAKwBnAAEAAAAAAAsAEwCSAAMAAQQJAAAAagClAAMAAQQJAAEAEAEPAAMAAQQJAAIADgEfAAMAAQQJAAMAEAEtAAMAAQQJAAQAEAE9AAMAAQQJAAUAFgFNAAMAAQQJAAYAEAFjAAMAAQQJAAoAVgFzAAMAAQQJAAsAJgHJQ29weXJpZ2h0IChDKSAyMDE0IGJ5IG9yaWdpbmFsIGF1dGhvcnMgQCBmb250ZWxsby5jb21mb250ZWxsb1JlZ3VsYXJmb250ZWxsb2ZvbnRlbGxvVmVyc2lvbiAxLjBmb250ZWxsb0dlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAEMAbwBwAHkAcgBpAGcAaAB0ACAAKABDACkAIAAyADAAMQA0ACAAYgB5ACAAbwByAGkAZwBpAG4AYQBsACAAYQB1AHQAaABvAHIAcwAgAEAAIABmAG8AbgB0AGUAbABsAG8ALgBjAG8AbQBmAG8AbgB0AGUAbABsAG8AUgBlAGcAdQBsAGEAcgBmAG8AbgB0AGUAbABsAG8AZgBvAG4AdABlAGwAbABvAFYAZQByAHMAaQBvAG4AIAAxAC4AMABmAG8AbgB0AGUAbABsAG8ARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABzAHYAZwAyAHQAdABmACAAZgByAG8AbQAgAEYAbwBuAHQAZQBsAGwAbwAgAHAAcgBvAGoAZQBjAHQALgBoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAAAAAAIAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAQIBAwljaGVja21hcmsGY2lyY2xlAAAAAAEAAf//AA8AAAAAAAAAAAAAAAAAAAAAADIAMgML/7EDC/+xsAAssCBgZi2wASwgZCCwwFCwBCZasARFW1ghIyEbilggsFBQWCGwQFkbILA4UFghsDhZWSCwCkVhZLAoUFghsApFILAwUFghsDBZGyCwwFBYIGYgiophILAKUFhgGyCwIFBYIbAKYBsgsDZQWCGwNmAbYFlZWRuwACtZWSOwAFBYZVlZLbACLCBFILAEJWFkILAFQ1BYsAUjQrAGI0IbISFZsAFgLbADLCMhIyEgZLEFYkIgsAYjQrIKAAIqISCwBkMgiiCKsAArsTAFJYpRWGBQG2FSWVgjWSEgsEBTWLAAKxshsEBZI7AAUFhlWS2wBCywB0MrsgACAENgQi2wBSywByNCIyCwACNCYbCAYrABYLAEKi2wBiwgIEUgsAJFY7ABRWJgRLABYC2wBywgIEUgsAArI7ECBCVgIEWKI2EgZCCwIFBYIbAAG7AwUFiwIBuwQFlZI7AAUFhlWbADJSNhRESwAWAtsAgssQUFRbABYUQtsAkssAFgICCwCUNKsABQWCCwCSNCWbAKQ0qwAFJYILAKI0JZLbAKLCC4BABiILgEAGOKI2GwC0NgIIpgILALI0IjLbALLEtUWLEHAURZJLANZSN4LbAMLEtRWEtTWLEHAURZGyFZJLATZSN4LbANLLEADENVWLEMDEOwAWFCsAorWbAAQ7ACJUKxCQIlQrEKAiVCsAEWIyCwAyVQWLEBAENgsAQlQoqKIIojYbAJKiEjsAFhIIojYbAJKiEbsQEAQ2CwAiVCsAIlYbAJKiFZsAlDR7AKQ0dgsIBiILACRWOwAUViYLEAABMjRLABQ7AAPrIBAQFDYEItsA4ssQAFRVRYALAMI0IgYLABYbUNDQEACwBCQopgsQ0FK7BtKxsiWS2wDyyxAA4rLbAQLLEBDistsBEssQIOKy2wEiyxAw4rLbATLLEEDistsBQssQUOKy2wFSyxBg4rLbAWLLEHDistsBcssQgOKy2wGCyxCQ4rLbAZLLAIK7EABUVUWACwDCNCIGCwAWG1DQ0BAAsAQkKKYLENBSuwbSsbIlktsBossQAZKy2wGyyxARkrLbAcLLECGSstsB0ssQMZKy2wHiyxBBkrLbAfLLEFGSstsCAssQYZKy2wISyxBxkrLbAiLLEIGSstsCMssQkZKy2wJCwgPLABYC2wJSwgYLANYCBDI7ABYEOwAiVhsAFgsCQqIS2wJiywJSuwJSotsCcsICBHICCwAkVjsAFFYmAjYTgjIIpVWCBHICCwAkVjsAFFYmAjYTgbIVktsCgssQAFRVRYALABFrAnKrABFTAbIlktsCkssAgrsQAFRVRYALABFrAnKrABFTAbIlktsCosIDWwAWAtsCssALADRWOwAUVisAArsAJFY7ABRWKwACuwABa0AAAAAABEPiM4sSoBFSotsCwsIDwgRyCwAkVjsAFFYmCwAENhOC2wLSwuFzwtsC4sIDwgRyCwAkVjsAFFYmCwAENhsAFDYzgtsC8ssQIAFiUgLiBHsAAjQrACJUmKikcjRyNhIFhiGyFZsAEjQrIuAQEVFCotsDAssAAWsAQlsAQlRyNHI2GwBkUrZYouIyAgPIo4LbAxLLAAFrAEJbAEJSAuRyNHI2EgsAQjQrAGRSsgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjILAIQyCKI0cjRyNhI0ZgsARDsIBiYCCwACsgiophILACQ2BkI7ADQ2FkUFiwAkNhG7ADQ2BZsAMlsIBiYSMgILAEJiNGYTgbI7AIQ0awAiWwCENHI0cjYWAgsARDsIBiYCMgsAArI7AEQ2CwACuwBSVhsAUlsIBisAQmYSCwBCVgZCOwAyVgZFBYIRsjIVkjICCwBCYjRmE4WS2wMiywABYgICCwBSYgLkcjRyNhIzw4LbAzLLAAFiCwCCNCICAgRiNHsAArI2E4LbA0LLAAFrADJbACJUcjRyNhsABUWC4gPCMhG7ACJbACJUcjRyNhILAFJbAEJUcjRyNhsAYlsAUlSbACJWGwAUVjIyBYYhshWWOwAUViYCMuIyAgPIo4IyFZLbA1LLAAFiCwCEMgLkcjRyNhIGCwIGBmsIBiIyAgPIo4LbA2LCMgLkawAiVGUlggPFkusSYBFCstsDcsIyAuRrACJUZQWCA8WS6xJgEUKy2wOCwjIC5GsAIlRlJYIDxZIyAuRrACJUZQWCA8WS6xJgEUKy2wOSywMCsjIC5GsAIlRlJYIDxZLrEmARQrLbA6LLAxK4ogIDywBCNCijgjIC5GsAIlRlJYIDxZLrEmARQrsARDLrAmKy2wOyywABawBCWwBCYgLkcjRyNhsAZFKyMgPCAuIzixJgEUKy2wPCyxCAQlQrAAFrAEJbAEJSAuRyNHI2EgsAQjQrAGRSsgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjIEewBEOwgGJgILAAKyCKimEgsAJDYGQjsANDYWRQWLACQ2EbsANDYFmwAyWwgGJhsAIlRmE4IyA8IzgbISAgRiNHsAArI2E4IVmxJgEUKy2wPSywMCsusSYBFCstsD4ssDErISMgIDywBCNCIzixJgEUK7AEQy6wJistsD8ssAAVIEewACNCsgABARUUEy6wLCotsEAssAAVIEewACNCsgABARUUEy6wLCotsEEssQABFBOwLSotsEIssC8qLbBDLLAAFkUjIC4gRoojYTixJgEUKy2wRCywCCNCsEMrLbBFLLIAADwrLbBGLLIAATwrLbBHLLIBADwrLbBILLIBATwrLbBJLLIAAD0rLbBKLLIAAT0rLbBLLLIBAD0rLbBMLLIBAT0rLbBNLLIAADkrLbBOLLIAATkrLbBPLLIBADkrLbBQLLIBATkrLbBRLLIAADsrLbBSLLIAATsrLbBTLLIBADsrLbBULLIBATsrLbBVLLIAAD4rLbBWLLIAAT4rLbBXLLIBAD4rLbBYLLIBAT4rLbBZLLIAADorLbBaLLIAATorLbBbLLIBADorLbBcLLIBATorLbBdLLAyKy6xJgEUKy2wXiywMiuwNistsF8ssDIrsDcrLbBgLLAAFrAyK7A4Ky2wYSywMysusSYBFCstsGIssDMrsDYrLbBjLLAzK7A3Ky2wZCywMyuwOCstsGUssDQrLrEmARQrLbBmLLA0K7A2Ky2wZyywNCuwNystsGgssDQrsDgrLbBpLLA1Ky6xJgEUKy2waiywNSuwNistsGsssDUrsDcrLbBsLLA1K7A4Ky2wbSwrsAhlsAMkUHiwARUwLQAAAEu4AMhSWLEBAY5ZuQgACABjILABI0SwAyNwsgQoCUVSRLIKAgcqsQYBRLEkAYhRWLBAiFixBgNEsSYBiFFYuAQAiFixBgFEWVlZWbgB/4WwBI2xBQBEAAA=") format('truetype'), url("data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAoUAA4AAAAAEPQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABRAAAAEQAAABWPeFJAWNtYXAAAAGIAAAAOgAAAUrQEhm3Y3Z0IAAAAcQAAAAUAAAAHAZJ/5RmcGdtAAAB2AAABPkAAAmRigp4O2dhc3AAAAbUAAAACAAAAAgAAAAQZ2x5ZgAABtwAAACuAAAAtt9nBHZoZWFkAAAHjAAAADUAAAA2ASs8e2hoZWEAAAfEAAAAIAAAACQHUwNNaG10eAAAB+QAAAAMAAAADAspAABsb2NhAAAH8AAAAAgAAAAIADgAW21heHAAAAf4AAAAIAAAACAApgm8bmFtZQAACBgAAAF3AAACzcydGhxwb3N0AAAJkAAAACoAAAA7rr1AmHByZXAAAAm8AAAAVgAAAFaSoZr/eJxjYGTewTiBgZWBg6mKaQ8DA0MPhGZ8wGDIyMTAwMTAysyAFQSkuaYwOLxgeMHIHPQ/iyGKmZvBHyjMCJIDAPe9C2B4nGNgYGBmgGAZBkYGEHAB8hjBfBYGDSDNBqQZGZgYGF4w/v8PUvCCAURLMELVAwEjG8OIBwBk5AavAAB4nGNgQANGDEbM3P83gjAAELQD4XicnVXZdtNWFJU8ZHASOmSgoA7X3DhQ68qEKRgwaSrFdiEdHAitBB2kDHTkncc+62uOQrtWH/m07n09JLR0rbYsls++R1tn2DrnRhwjKn0aiGvUoZKXA6msPZZK90lc13Uvj5UMBnFdthJPSZuonSRKat3sUC7xWOsqWSdYJ+PlIFZPVZ5noAziFB5lSUQbRBuplyZJ4onjJ4kWZxAfJUkgJaMQp9LIUEI1GsRS1aFM6dCr1xNx00DKRqMedVhU90PFJ8c1p9SsA0YqVznCFevVRr4bpwMve5DEOsGzrYcxHnisfpQqkIqR6cg/dkpOlIaBVHHUoVbi6DCTX/eRTCrNQKaMYkWl7oG43f102xYxPXQ6vi5KlUaqurnOKJrt0fGogygP2cbppNzQ2fbw5RlTVKtdcbPtQGYNXErJbHSfRAAdJlLj6QFONZwCqRn1R8XZ588BEslclKo8VTKHegOZMzt7cTHtbiersnCknwcyb3Z2452HQ6dXh3/R+hdM4cxHj+Jifj5C+lBqfiJOJKVGWMzyp4YfcVcgQrkxiAsXyuBThDl0RdrZZl3jtTH2hs/5SqlhPQna6KP4fgr9TiQrHGdRo/VInM1j13Wt3GdQS7W7Fzsyr0OVIu7vCwuuM+eEYZ4WC1VfnvneBTT/Bohn/EDeNIVL+5YpSrRvm6JMu2iKCu0SVKVdNsUU7YoppmnPmmKG9h1TzNKeMzLj/8vc55H7HN7xkJv2XeSmfQ+5ad9HbtoPkJtWITdtHblpLyA3rUZu2lWjOnYEGgZpF1IVQdA0svph3Fab9UDWjDR8aWDyLmLI+upER521tcofxX914gsHcmmip7siF5viLq/bFj483e6rj5pG3bDV+MaR8jAeRnocmtBZ+c3hv+1N3S6a7jKqMugBFUwKwABl7UAC0zrbCaT1mqf48gdgXIZ4zkpDtVSfO4am7+V5X/exOfG+x+3GLrdcd3kJWdYNcmP28N9SZKrrH+UtrVQnR6wrJ49VaxhDKrwour6SlHu0tRu/KKmy8l6U1srnk5CbPYMbQlu27mGwI0xpyiUeXlOlKD3UUo6yQyxvKco84JSLC1qGxLgOdQ9qa8TpoXoYGwshhqG0vRBwSCldFd+0ynfxHqtr2Oj4xRXh6XpyEhGf4ir7UfBU10b96A7avGbdMoMpVaqn+4xPsa/b9lFZaaSOsxe3VAfXNOsaORXTT+Rr4HRvOGjdAz1UfDRBI1U1x+jGKGM0ljXl3wR0MVZ+w2jVYvs93E+dpFWsuUuY7JsT9+C0u/0q+7WcW0bW/dcGvW3kip8jMb8tCvw7B2K3ZA3UO5OBGAvIWdAYxhYmdxiug23EbfY/Jqf/34aFRXJXOxq7eerD1ZNRJXfZ8rjLTXZZ16M2R9VOGvsIjS0PN+bY4XIstsRgQbb+wf8x7gF3aVEC4NDIZZiI2nShnurh6h6rsW04VxIBds2x43QAegAuQd8cu9bzCYD13CPnLsB9cgh2yCH4lByCz8i5BfA5OQRfkEMwIIdgl5w7AA/IIXhIDsEeOQSPyNkE+JIcgq/IIYjJIUjIuQ3wmByCJ+QQfE0OwTdGrk5k/pYH2QD6zqKbQKmdGhzaOGRGrk3Y+zxY9oFFZB9aROqRkesT6lMeLPV7i0j9wSJSfzRyY0L9iQdL/dkiUn+xiNRnxpeZIymvDp7zjg7+BJfqrV4AAAAAAQAB//8AD3icY2BkAALmJUwzGEQZZBwk+RkZGBmdGJgYmbIYgMwsoGSiiLgIs5A2owg7I5uSOqOaiT2jmZE8I5gQY17C/09BQEfg3yt+fh8gvYQxD0j68DOJiQn8U+DnZxQDcQUEljLmCwBpBgbG/3//b2SOZ+Zm4GEQcuAH2sblDLSEm8FFVJhJEGgLH6OSHpMdo5EcI3Nk0bEXJ/LYqvZ82VXHGFd6pKTkyCsQwQAAq+QkqAAAeJxjYGRgYADiw5VSsfH8Nl8ZuJlfAEUYzpvO6IXQCb7///7fyLyEmRvI5WBgAokCAFb/DJAAAAB4nGNgZGBgDvqfxRDF/IKB4f935iUMQBEUwAwAi5YFpgPoAAAD6AAAA1kAAAAAAAAAOABbAAEAAAADABYAAQAAAAAAAgAGABMAbgAAAC0JkQAAAAB4nHWQy2rCQBSG//HSi0JbWui2sypKabxgN4IgWHTTbqS4LTHGJBIzMhkFX6Pv0IfpS/RZ+puMpShNmMx3vjlz5mQAXOMbAvnzxJGzwBmjnAs4Rc9ykf7Zcon8YrmMKt4sn9C/W67gAYHlKm7wwQqidM5ogU/LAlfi0nIBF+LOcpH+0XKJ3LNcxq14tXxC71muYCJSy1Xci6+BWm11FIRG1gZ12W62OnK6lYoqStxYumsTKp3KvpyrxPhxrBxPLfc89oN17Op9uJ8nvk4jlciW09yrkZ/42jX+bFc93QRtY+ZyrtVSDm2GXGm18D3jhMasuo3G3/MwgMIKW2hEvKoQBhI12jrnNppooUOaMkMyM8+KkMBFTONizR1htpIy7nPMGSW0PjNisgOP3+WRH5MC7o9ZRR+tHsYT0u6MKPOSfTns7jBrREqyTDezs9/eU2x4WpvWcNeuS511JTE8qCF5H7u1BY1H72S3Ymi7aPD95/9+AN1fhEsAeJxjYGKAAC4G7ICZgYGRiZGZMzkjNTk7N7Eomy05syg5J5WBAQBE1QZBAABLuADIUlixAQGOWbkIAAgAYyCwASNEsAMjcLIEKAlFUkSyCgIHKrEGAUSxJAGIUViwQIhYsQYDRLEmAYhRWLgEAIhYsQYBRFlZWVm4Af+FsASNsQUARAAA") format('woff');
15953
+ }
15954
+
15955
+ .ui.steps .step.completed > .icon:before,
15956
+ .ui.ordered.steps .step.completed:before {
15957
+ font-family: 'Step';
15958
+ content: '\e800';
15959
+ /* '' */
15960
+ }
15961
+
15962
+ /*******************************
15963
+ Site Overrides
15964
+ *******************************/
15965
+ /*!
15966
+ * # Semantic UI 2.1.7 - Breadcrumb
15967
+ * http://github.com/semantic-org/semantic-ui/
15968
+ *
15969
+ *
15970
+ * Copyright 2015 Contributors
15971
+ * Released under the MIT license
15972
+ * http://opensource.org/licenses/MIT
15973
+ *
15974
+ */
15975
+
15976
+ /*******************************
15977
+ Breadcrumb
15978
+ *******************************/
15979
+
15980
+ .ui.breadcrumb {
15981
+ line-height: 1;
15982
+ display: inline-block;
15983
+ margin: 0em 0em;
15984
+ vertical-align: middle;
15985
+ }
15986
+
15987
+ .ui.breadcrumb:first-child {
15988
+ margin-top: 0em;
15989
+ }
15990
+
15991
+ .ui.breadcrumb:last-child {
15992
+ margin-bottom: 0em;
15993
+ }
15994
+
15995
+ /*******************************
15996
+ Content
15997
+ *******************************/
15998
+
15999
+ /* Divider */
16000
+
16001
+ .ui.breadcrumb .divider {
16002
+ display: inline-block;
16003
+ opacity: 0.7;
16004
+ margin: 0em 0.21428571rem 0em;
16005
+ font-size: 0.92857143em;
16006
+ color: rgba(0, 0, 0, 0.4);
16007
+ vertical-align: baseline;
16008
+ }
16009
+
16010
+ /* Link */
16011
+
16012
+ .ui.breadcrumb a {
16013
+ color: #4183c4;
16014
+ }
16015
+
16016
+ .ui.breadcrumb a:hover {
16017
+ color: #1e70bf;
16018
+ }
16019
+
16020
+ /* Icon Divider */
16021
+
16022
+ .ui.breadcrumb .icon.divider {
16023
+ font-size: 0.85714286em;
16024
+ vertical-align: baseline;
16025
+ }
16026
+
16027
+ /* Section */
16028
+
16029
+ .ui.breadcrumb a.section {
16030
+ cursor: pointer;
16031
+ }
16032
+
16033
+ .ui.breadcrumb .section {
16034
+ display: inline-block;
16035
+ margin: 0em;
16036
+ padding: 0em;
16037
+ }
16038
+
16039
+ /* Loose Coupling */
16040
+
16041
+ .ui.breadcrumb.segment {
16042
+ display: inline-block;
16043
+ padding: 0.71428571em 1em;
16044
+ }
16045
+
16046
+ /*******************************
16047
+ States
16048
+ *******************************/
16049
+
16050
+ .ui.breadcrumb .active.section {
16051
+ font-weight: bold;
16052
+ }
16053
+
16054
+ /*******************************
16055
+ Variations
16056
+ *******************************/
16057
+
16058
+ .ui.mini.breadcrumb {
16059
+ font-size: 0.71428571rem;
16060
+ }
16061
+
16062
+ .ui.tiny.breadcrumb {
16063
+ font-size: 0.85714286rem;
16064
+ }
16065
+
16066
+ .ui.small.breadcrumb {
16067
+ font-size: 0.92857143rem;
16068
+ }
16069
+
16070
+ .ui.breadcrumb {
16071
+ font-size: 1rem;
16072
+ }
16073
+
16074
+ .ui.large.breadcrumb {
16075
+ font-size: 1.14285714rem;
16076
+ }
16077
+
16078
+ .ui.big.breadcrumb {
16079
+ font-size: 1.28571429rem;
16080
+ }
16081
+
16082
+ .ui.huge.breadcrumb {
16083
+ font-size: 1.42857143rem;
16084
+ }
16085
+
16086
+ .ui.massive.breadcrumb {
16087
+ font-size: 1.71428571rem;
16088
+ }
16089
+
16090
+ /*******************************
16091
+ Theme Overrides
16092
+ *******************************/
16093
+
16094
+ /*******************************
16095
+ Site Overrides
16096
+ *******************************/
16097
+ /*!
16098
+ * # Semantic UI 2.1.7 - Form
16099
+ * http://github.com/semantic-org/semantic-ui/
16100
+ *
16101
+ *
16102
+ * Copyright 2015 Contributors
16103
+ * Released under the MIT license
16104
+ * http://opensource.org/licenses/MIT
16105
+ *
16106
+ */
16107
+
16108
+ /*******************************
16109
+ Elements
16110
+ *******************************/
16111
+
16112
+ /*--------------------
16113
+ Form
16114
+ ---------------------*/
16115
+
16116
+ .ui.form {
16117
+ position: relative;
16118
+ max-width: 100%;
16119
+ }
16120
+
16121
+ /*--------------------
16122
+ Content
16123
+ ---------------------*/
16124
+
16125
+ .ui.form > p {
16126
+ margin: 1em 0em;
16127
+ }
16128
+
16129
+ /*--------------------
16130
+ Field
16131
+ ---------------------*/
16132
+
16133
+ .ui.form .field {
16134
+ clear: both;
16135
+ margin: 0em 0em 1em;
16136
+ }
16137
+
16138
+ .ui.form .field:last-child,
16139
+ .ui.form .fields:last-child .field {
16140
+ margin-bottom: 0em;
16141
+ }
16142
+
16143
+ .ui.form .fields .field {
16144
+ clear: both;
16145
+ margin: 0em 0em 1em;
16146
+ }
16147
+
16148
+ /*--------------------
16149
+ Labels
16150
+ ---------------------*/
16151
+
16152
+ .ui.form .field > label {
16153
+ display: block;
16154
+ margin: 0em 0em 0.28571429rem 0em;
16155
+ color: rgba(0, 0, 0, 0.87);
16156
+ font-size: 0.92857143em;
16157
+ font-weight: bold;
16158
+ text-transform: none;
16159
+ }
16160
+
16161
+ /*--------------------
16162
+ Standard Inputs
16163
+ ---------------------*/
16164
+
16165
+ .ui.form textarea,
16166
+ .ui.form input:not([type]),
16167
+ .ui.form input[type="date"],
16168
+ .ui.form input[type="datetime-local"],
16169
+ .ui.form input[type="email"],
16170
+ .ui.form input[type="number"],
16171
+ .ui.form input[type="password"],
16172
+ .ui.form input[type="search"],
16173
+ .ui.form input[type="tel"],
16174
+ .ui.form input[type="time"],
16175
+ .ui.form input[type="text"],
16176
+ .ui.form input[type="url"] {
16177
+ width: 100%;
16178
+ vertical-align: top;
16179
+ }
16180
+
16181
+ /* Set max height on unusual input */
16182
+
16183
+ .ui.form ::-webkit-datetime-edit,
16184
+ .ui.form ::-webkit-inner-spin-button {
16185
+ height: 1.2142em;
16186
+ }
16187
+
16188
+ .ui.form input:not([type]),
16189
+ .ui.form input[type="date"],
16190
+ .ui.form input[type="datetime-local"],
16191
+ .ui.form input[type="email"],
16192
+ .ui.form input[type="number"],
16193
+ .ui.form input[type="password"],
16194
+ .ui.form input[type="search"],
16195
+ .ui.form input[type="tel"],
16196
+ .ui.form input[type="time"],
16197
+ .ui.form input[type="text"],
16198
+ .ui.form input[type="url"] {
16199
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
16200
+ margin: 0em;
16201
+ outline: none;
16202
+ -webkit-appearance: none;
16203
+ tap-highlight-color: rgba(255, 255, 255, 0);
16204
+ line-height: 1.2142em;
16205
+ padding: 0.67861429em 1em;
16206
+ font-size: 1em;
16207
+ background: #ffffff;
16208
+ border: 1px solid rgba(34, 36, 38, 0.15);
16209
+ color: rgba(0, 0, 0, 0.87);
16210
+ border-radius: 0.28571429rem;
16211
+ box-shadow: 0em 0em 0em 0em transparent inset;
16212
+ -webkit-transition: color 0.1s ease, border-color 0.1s ease;
16213
+ transition: color 0.1s ease, border-color 0.1s ease;
16214
+ }
16215
+
16216
+ /* Text Area */
16217
+
16218
+ .ui.form textarea {
16219
+ margin: 0em;
16220
+ -webkit-appearance: none;
16221
+ tap-highlight-color: rgba(255, 255, 255, 0);
16222
+ padding: 0.78571429em 1em;
16223
+ background: #ffffff;
16224
+ border: 1px solid rgba(34, 36, 38, 0.15);
16225
+ outline: none;
16226
+ color: rgba(0, 0, 0, 0.87);
16227
+ border-radius: 0.28571429rem;
16228
+ box-shadow: 0em 0em 0em 0em transparent inset;
16229
+ -webkit-transition: color 0.1s ease, border-color 0.1s ease;
16230
+ transition: color 0.1s ease, border-color 0.1s ease;
16231
+ font-size: 1em;
16232
+ line-height: 1.2857;
16233
+ resize: vertical;
16234
+ }
16235
+
16236
+ .ui.form textarea:not([rows]) {
16237
+ height: 12em;
16238
+ min-height: 8em;
16239
+ max-height: 24em;
16240
+ }
16241
+
16242
+ .ui.form textarea,
16243
+ .ui.form input[type="checkbox"] {
16244
+ vertical-align: top;
16245
+ }
16246
+
16247
+ /*--------------------------
16248
+ Input w/ attached Button
16249
+ ---------------------------*/
16250
+
16251
+ .ui.form input.attached {
16252
+ width: auto;
16253
+ }
16254
+
16255
+ /*--------------------
16256
+ Basic Select
16257
+ ---------------------*/
16258
+
16259
+ .ui.form select {
16260
+ display: block;
16261
+ height: auto;
16262
+ width: 100%;
16263
+ background: #ffffff;
16264
+ border: 1px solid rgba(34, 36, 38, 0.15);
16265
+ border-radius: 0.28571429rem;
16266
+ box-shadow: 0em 0em 0em 0em transparent inset;
16267
+ padding: 0.62em 1em;
16268
+ color: rgba(0, 0, 0, 0.87);
16269
+ -webkit-transition: color 0.1s ease, border-color 0.1s ease;
16270
+ transition: color 0.1s ease, border-color 0.1s ease;
16271
+ }
16272
+
16273
+ /*--------------------
16274
+ Dropdown
16275
+ ---------------------*/
16276
+
16277
+ /* Block */
16278
+
16279
+ .ui.form .field > .selection.dropdown {
16280
+ width: 100%;
16281
+ }
16282
+
16283
+ .ui.form .field > .selection.dropdown > .dropdown.icon {
16284
+ float: right;
16285
+ }
16286
+
16287
+ /* Inline */
16288
+
16289
+ .ui.form .inline.fields .field > .selection.dropdown,
16290
+ .ui.form .inline.field > .selection.dropdown {
16291
+ width: auto;
16292
+ }
16293
+
16294
+ .ui.form .inline.fields .field > .selection.dropdown > .dropdown.icon,
16295
+ .ui.form .inline.field > .selection.dropdown > .dropdown.icon {
16296
+ float: none;
16297
+ }
16298
+
16299
+ /*--------------------
16300
+ UI Input
16301
+ ---------------------*/
16302
+
16303
+ /* Block */
16304
+
16305
+ .ui.form .field .ui.input,
16306
+ .ui.form .fields .field .ui.input,
16307
+ .ui.form .wide.field .ui.input {
16308
+ width: 100%;
16309
+ }
16310
+
16311
+ /* Inline */
16312
+
16313
+ .ui.form .inline.fields .field:not(.wide) .ui.input,
16314
+ .ui.form .inline.field:not(.wide) .ui.input {
16315
+ width: auto;
16316
+ vertical-align: middle;
16317
+ }
16318
+
16319
+ /* Auto Input */
16320
+
16321
+ .ui.form .fields .field .ui.input input,
16322
+ .ui.form .field .ui.input input {
16323
+ width: auto;
16324
+ }
16325
+
16326
+ /* Full Width Input */
16327
+
16328
+ .ui.form .ten.fields .ui.input input,
16329
+ .ui.form .nine.fields .ui.input input,
16330
+ .ui.form .eight.fields .ui.input input,
16331
+ .ui.form .seven.fields .ui.input input,
16332
+ .ui.form .six.fields .ui.input input,
16333
+ .ui.form .five.fields .ui.input input,
16334
+ .ui.form .four.fields .ui.input input,
16335
+ .ui.form .three.fields .ui.input input,
16336
+ .ui.form .two.fields .ui.input input,
16337
+ .ui.form .wide.field .ui.input input {
16338
+ -webkit-box-flex: 1;
16339
+ -webkit-flex: 1 0 auto;
16340
+ -ms-flex: 1 0 auto;
16341
+ flex: 1 0 auto;
16342
+ width: 0px;
16343
+ }
16344
+
16345
+ /*--------------------
16346
+ Types of Messages
16347
+ ---------------------*/
16348
+
16349
+ .ui.form .success.message,
16350
+ .ui.form .warning.message,
16351
+ .ui.form .error.message {
16352
+ display: none;
16353
+ }
16354
+
16355
+ /* Assumptions */
16356
+
16357
+ .ui.form .message:first-child {
16358
+ margin-top: 0px;
16359
+ }
16360
+
16361
+ /*--------------------
16362
+ Validation Prompt
16363
+ ---------------------*/
16364
+
16365
+ .ui.form .field .prompt.label {
16366
+ white-space: normal;
16367
+ background: #ffffff !important;
16368
+ border: 1px solid #e0b4b4 !important;
16369
+ color: #9f3a38 !important;
16370
+ }
16371
+
16372
+ .ui.form .inline.fields .field .prompt,
16373
+ .ui.form .inline.field .prompt {
16374
+ vertical-align: top;
16375
+ margin: -0.25em 0em -0.5em 0.5em;
16376
+ }
16377
+
16378
+ .ui.form .inline.fields .field .prompt:before,
16379
+ .ui.form .inline.field .prompt:before {
16380
+ border-width: 0px 0px 1px 1px;
16381
+ bottom: auto;
16382
+ right: auto;
16383
+ top: 50%;
16384
+ left: 0em;
16385
+ }
16386
+
16387
+ /*******************************
16388
+ States
16389
+ *******************************/
16390
+
16391
+ /*--------------------
16392
+ Autofilled
16393
+ ---------------------*/
16394
+
16395
+ .ui.form .field.field input:-webkit-autofill {
16396
+ box-shadow: 0px 0px 0px 100px #fffff0 inset !important;
16397
+ border-color: #e5dfa1 !important;
16398
+ }
16399
+
16400
+ /* Focus */
16401
+
16402
+ .ui.form .field.field input:-webkit-autofill:focus {
16403
+ box-shadow: 0px 0px 0px 100px #fffff0 inset !important;
16404
+ border-color: #d5c315 !important;
16405
+ }
16406
+
16407
+ /* Error */
16408
+
16409
+ .ui.form .error.error input:-webkit-autofill {
16410
+ box-shadow: 0px 0px 0px 100px #fffaf0 inset !important;
16411
+ border-color: #e0b4b4 !important;
16412
+ }
16413
+
16414
+ /*--------------------
16415
+ Placeholder
16416
+ ---------------------*/
16417
+
16418
+ /* browsers require these rules separate */
16419
+
16420
+ .ui.form ::-webkit-input-placeholder {
16421
+ color: rgba(140, 140, 140, 0.87);
16422
+ }
16423
+
16424
+ .ui.form ::-ms-input-placeholder {
16425
+ color: rgba(140, 140, 140, 0.87);
16426
+ }
16427
+
16428
+ .ui.form ::-moz-placeholder {
16429
+ color: rgba(140, 140, 140, 0.87);
16430
+ }
16431
+
16432
+ .ui.form :focus::-webkit-input-placeholder {
16433
+ color: rgba(89, 89, 89, 0.87);
16434
+ }
16435
+
16436
+ .ui.form :focus::-ms-input-placeholder {
16437
+ color: rgba(89, 89, 89, 0.87);
16438
+ }
16439
+
16440
+ .ui.form :focus::-moz-placeholder {
16441
+ color: rgba(89, 89, 89, 0.87);
16442
+ }
16443
+
16444
+ /* Error Placeholder */
16445
+
16446
+ .ui.form .error ::-webkit-input-placeholder {
16447
+ color: #e7bdbc;
16448
+ }
16449
+
16450
+ .ui.form .error ::-ms-input-placeholder {
16451
+ color: #e7bdbc;
16452
+ }
16453
+
16454
+ .ui.form .error ::-moz-placeholder {
16455
+ color: #e7bdbc;
16456
+ }
16457
+
16458
+ .ui.form .error :focus::-webkit-input-placeholder {
16459
+ color: #da9796;
16460
+ }
16461
+
16462
+ .ui.form .error :focus::-ms-input-placeholder {
16463
+ color: #da9796;
16464
+ }
16465
+
16466
+ .ui.form .error :focus::-moz-placeholder {
16467
+ color: #da9796;
16468
+ }
16469
+
16470
+ /*--------------------
16471
+ Focus
16472
+ ---------------------*/
16473
+
16474
+ .ui.form input:not([type]):focus,
16475
+ .ui.form input[type="date"]:focus,
16476
+ .ui.form input[type="datetime-local"]:focus,
16477
+ .ui.form input[type="email"]:focus,
16478
+ .ui.form input[type="number"]:focus,
16479
+ .ui.form input[type="password"]:focus,
16480
+ .ui.form input[type="search"]:focus,
16481
+ .ui.form input[type="tel"]:focus,
16482
+ .ui.form input[type="time"]:focus,
16483
+ .ui.form input[type="text"]:focus,
16484
+ .ui.form input[type="url"]:focus {
16485
+ color: rgba(0, 0, 0, 0.95);
16486
+ border-color: #85b7d9;
16487
+ border-radius: 0.28571429rem;
16488
+ background: #ffffff;
16489
+ box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset;
16490
+ }
16491
+
16492
+ .ui.form textarea:focus {
16493
+ color: rgba(0, 0, 0, 0.95);
16494
+ border-color: #85b7d9;
16495
+ border-radius: 0.28571429rem;
16496
+ background: #ffffff;
16497
+ box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset;
16498
+ -webkit-appearance: none;
16499
+ }
16500
+
16501
+ /*--------------------
16502
+ Success
16503
+ ---------------------*/
16504
+
16505
+ /* On Form */
16506
+
16507
+ .ui.form.success .success.message:not(:empty) {
16508
+ display: block;
16509
+ }
16510
+
16511
+ .ui.form.success .icon.success.message:not(:empty) {
16512
+ display: -webkit-box;
16513
+ display: -webkit-flex;
16514
+ display: -ms-flexbox;
16515
+ display: flex;
16516
+ }
16517
+
16518
+ /*--------------------
16519
+ Warning
16520
+ ---------------------*/
16521
+
16522
+ /* On Form */
16523
+
16524
+ .ui.form.warning .warning.message:not(:empty) {
16525
+ display: block;
16526
+ }
16527
+
16528
+ .ui.form.warning .icon.warning.message:not(:empty) {
16529
+ display: -webkit-box;
16530
+ display: -webkit-flex;
16531
+ display: -ms-flexbox;
16532
+ display: flex;
16533
+ }
16534
+
16535
+ /*--------------------
16536
+ Error
16537
+ ---------------------*/
16538
+
16539
+ /* On Form */
16540
+
16541
+ .ui.form.error .error.message:not(:empty) {
16542
+ display: block;
16543
+ }
16544
+
16545
+ .ui.form.error .icon.error.message:not(:empty) {
16546
+ display: -webkit-box;
16547
+ display: -webkit-flex;
16548
+ display: -ms-flexbox;
16549
+ display: flex;
16550
+ }
16551
+
16552
+ /* On Field(s) */
16553
+
16554
+ .ui.form .fields.error .field label,
16555
+ .ui.form .field.error label,
16556
+ .ui.form .fields.error .field .input,
16557
+ .ui.form .field.error .input {
16558
+ color: #9f3a38;
16559
+ }
16560
+
16561
+ .ui.form .fields.error .field .corner.label,
16562
+ .ui.form .field.error .corner.label {
16563
+ border-color: #9f3a38;
16564
+ color: #ffffff;
16565
+ }
16566
+
16567
+ .ui.form .fields.error .field textarea,
16568
+ .ui.form .fields.error .field select,
16569
+ .ui.form .fields.error .field input:not([type]),
16570
+ .ui.form .fields.error .field input[type="date"],
16571
+ .ui.form .fields.error .field input[type="datetime-local"],
16572
+ .ui.form .fields.error .field input[type="email"],
16573
+ .ui.form .fields.error .field input[type="number"],
16574
+ .ui.form .fields.error .field input[type="password"],
16575
+ .ui.form .fields.error .field input[type="search"],
16576
+ .ui.form .fields.error .field input[type="tel"],
16577
+ .ui.form .fields.error .field input[type="time"],
16578
+ .ui.form .fields.error .field input[type="text"],
16579
+ .ui.form .fields.error .field input[type="url"],
16580
+ .ui.form .field.error textarea,
16581
+ .ui.form .field.error select,
16582
+ .ui.form .field.error input:not([type]),
16583
+ .ui.form .field.error input[type="date"],
16584
+ .ui.form .field.error input[type="datetime-local"],
16585
+ .ui.form .field.error input[type="email"],
16586
+ .ui.form .field.error input[type="number"],
16587
+ .ui.form .field.error input[type="password"],
16588
+ .ui.form .field.error input[type="search"],
16589
+ .ui.form .field.error input[type="tel"],
16590
+ .ui.form .field.error input[type="time"],
16591
+ .ui.form .field.error input[type="text"],
16592
+ .ui.form .field.error input[type="url"] {
16593
+ background: #fff6f6;
16594
+ border-color: #e0b4b4;
16595
+ color: #9f3a38;
16596
+ border-radius: '';
16597
+ box-shadow: none;
16598
+ }
16599
+
16600
+ .ui.form .field.error textarea:focus,
16601
+ .ui.form .field.error select:focus,
16602
+ .ui.form .field.error input:not([type]):focus,
16603
+ .ui.form .field.error input[type="date"]:focus,
16604
+ .ui.form .field.error input[type="datetime-local"]:focus,
16605
+ .ui.form .field.error input[type="email"]:focus,
16606
+ .ui.form .field.error input[type="number"]:focus,
16607
+ .ui.form .field.error input[type="password"]:focus,
16608
+ .ui.form .field.error input[type="search"]:focus,
16609
+ .ui.form .field.error input[type="tel"]:focus,
16610
+ .ui.form .field.error input[type="time"]:focus,
16611
+ .ui.form .field.error input[type="text"]:focus,
16612
+ .ui.form .field.error input[type="url"]:focus {
16613
+ background: #fff6f6;
16614
+ border-color: #e0b4b4;
16615
+ color: #9f3a38;
16616
+ -webkit-appearance: none;
16617
+ box-shadow: none;
16618
+ }
16619
+
16620
+ /* Preserve Native Select Stylings */
16621
+
16622
+ .ui.form .field.error select {
16623
+ -webkit-appearance: menulist-button;
16624
+ }
16625
+
16626
+ /*------------------
16627
+ Dropdown Error
16628
+ --------------------*/
16629
+
16630
+ .ui.form .fields.error .field .ui.dropdown,
16631
+ .ui.form .fields.error .field .ui.dropdown .item,
16632
+ .ui.form .field.error .ui.dropdown,
16633
+ .ui.form .field.error .ui.dropdown .text,
16634
+ .ui.form .field.error .ui.dropdown .item {
16635
+ background: #fff6f6;
16636
+ color: #9f3a38;
16637
+ }
16638
+
16639
+ .ui.form .fields.error .field .ui.dropdown,
16640
+ .ui.form .field.error .ui.dropdown {
16641
+ border-color: #e0b4b4 !important;
16642
+ }
16643
+
16644
+ .ui.form .fields.error .field .ui.dropdown:hover,
16645
+ .ui.form .field.error .ui.dropdown:hover {
16646
+ border-color: #e0b4b4 !important;
16647
+ }
16648
+
16649
+ .ui.form .fields.error .field .ui.dropdown:hover .menu,
16650
+ .ui.form .field.error .ui.dropdown:hover .menu {
16651
+ border-color: #e0b4b4;
16652
+ }
16653
+
16654
+ .ui.form .fields.error .field .ui.multiple.selection.dropdown > .label,
16655
+ .ui.form .field.error .ui.multiple.selection.dropdown > .label {
16656
+ background-color: #eacbcb;
16657
+ color: #9f3a38;
16658
+ }
16659
+
16660
+ /* Hover */
16661
+
16662
+ .ui.form .fields.error .field .ui.dropdown .menu .item:hover,
16663
+ .ui.form .field.error .ui.dropdown .menu .item:hover {
16664
+ background-color: #fbe7e7;
16665
+ }
16666
+
16667
+ /* Selected */
16668
+
16669
+ .ui.form .fields.error .field .ui.dropdown .menu .selected.item,
16670
+ .ui.form .field.error .ui.dropdown .menu .selected.item {
16671
+ background-color: #fbe7e7;
16672
+ }
16673
+
16674
+ /* Active */
16675
+
16676
+ .ui.form .fields.error .field .ui.dropdown .menu .active.item,
16677
+ .ui.form .field.error .ui.dropdown .menu .active.item {
16678
+ background-color: #fdcfcf !important;
16679
+ }
16680
+
16681
+ /*--------------------
16682
+ Checkbox Error
16683
+ ---------------------*/
16684
+
16685
+ .ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label,
16686
+ .ui.form .field.error .checkbox:not(.toggle):not(.slider) label,
16687
+ .ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box,
16688
+ .ui.form .field.error .checkbox:not(.toggle):not(.slider) .box {
16689
+ color: #9f3a38;
16690
+ }
16691
+
16692
+ .ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label:before,
16693
+ .ui.form .field.error .checkbox:not(.toggle):not(.slider) label:before,
16694
+ .ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box:before,
16695
+ .ui.form .field.error .checkbox:not(.toggle):not(.slider) .box:before {
16696
+ background: #fff6f6;
16697
+ border-color: #e0b4b4;
16698
+ }
16699
+
16700
+ .ui.form .fields.error .field .checkbox label:after,
16701
+ .ui.form .field.error .checkbox label:after,
16702
+ .ui.form .fields.error .field .checkbox .box:after,
16703
+ .ui.form .field.error .checkbox .box:after {
16704
+ color: #9f3a38;
16705
+ }
16706
+
16707
+ /*--------------------
16708
+ Disabled
16709
+ ---------------------*/
16710
+
16711
+ .ui.form .disabled.fields .field,
16712
+ .ui.form .disabled.field,
16713
+ .ui.form .field :disabled {
16714
+ pointer-events: none;
16715
+ opacity: 0.45;
16716
+ }
16717
+
16718
+ .ui.form .field.disabled label {
16719
+ opacity: 0.45;
16720
+ }
16721
+
16722
+ .ui.form .field.disabled :disabled {
16723
+ opacity: 1;
16724
+ }
16725
+
16726
+ /*--------------
16727
+ Loading
16728
+ ---------------*/
16729
+
16730
+ .ui.loading.form {
16731
+ position: relative;
16732
+ cursor: default;
16733
+ point-events: none;
16734
+ }
16735
+
16736
+ .ui.loading.form:before {
16737
+ position: absolute;
16738
+ content: '';
16739
+ top: 0%;
16740
+ left: 0%;
16741
+ background: rgba(255, 255, 255, 0.8);
16742
+ width: 100%;
16743
+ height: 100%;
16744
+ z-index: 100;
16745
+ }
16746
+
16747
+ .ui.loading.form:after {
16748
+ position: absolute;
16749
+ content: '';
16750
+ top: 50%;
16751
+ left: 50%;
16752
+ margin: -1.5em 0em 0em -1.5em;
16753
+ width: 3em;
16754
+ height: 3em;
16755
+ -webkit-animation: form-spin 0.6s linear;
16756
+ animation: form-spin 0.6s linear;
16757
+ -webkit-animation-iteration-count: infinite;
16758
+ animation-iteration-count: infinite;
16759
+ border-radius: 500rem;
16760
+ border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1);
16761
+ border-style: solid;
16762
+ border-width: 0.2em;
16763
+ box-shadow: 0px 0px 0px 1px transparent;
16764
+ visibility: visible;
16765
+ z-index: 101;
16766
+ }
16767
+
16768
+ @-webkit-keyframes form-spin {
16769
+ from {
16770
+ -webkit-transform: rotate(0deg);
16771
+ transform: rotate(0deg);
16772
+ }
16773
+
16774
+ to {
16775
+ -webkit-transform: rotate(360deg);
16776
+ transform: rotate(360deg);
16777
+ }
16778
+ }
16779
+
16780
+ @keyframes form-spin {
16781
+ from {
16782
+ -webkit-transform: rotate(0deg);
16783
+ transform: rotate(0deg);
16784
+ }
16785
+
16786
+ to {
16787
+ -webkit-transform: rotate(360deg);
16788
+ transform: rotate(360deg);
16789
+ }
16790
+ }
16791
+
16792
+ /*******************************
16793
+ Element Types
16794
+ *******************************/
16795
+
16796
+ /*--------------------
16797
+ Required Field
16798
+ ---------------------*/
16799
+
16800
+ .ui.form .required.fields:not(.grouped) > .field > label:after,
16801
+ .ui.form .required.fields.grouped > label:after,
16802
+ .ui.form .required.field > label:after,
16803
+ .ui.form .required.fields:not(.grouped) > .field > .checkbox:after,
16804
+ .ui.form .required.field > .checkbox:after {
16805
+ margin: -0.2em 0em 0em 0.2em;
16806
+ content: '*';
16807
+ color: #db2828;
16808
+ }
16809
+
16810
+ .ui.form .required.fields:not(.grouped) > .field > label:after,
16811
+ .ui.form .required.fields.grouped > label:after,
16812
+ .ui.form .required.field > label:after {
16813
+ display: inline-block;
16814
+ vertical-align: top;
16815
+ }
16816
+
16817
+ .ui.form .required.fields:not(.grouped) > .field > .checkbox:after,
16818
+ .ui.form .required.field > .checkbox:after {
16819
+ position: absolute;
16820
+ top: 0%;
16821
+ left: 100%;
16822
+ }
16823
+
16824
+ /*******************************
16825
+ Variations
16826
+ *******************************/
16827
+
16828
+ /*--------------------
16829
+ Inverted Colors
16830
+ ---------------------*/
16831
+
16832
+ .ui.inverted.form label,
16833
+ .ui.form .inverted.segment label,
16834
+ .ui.form .inverted.segment .ui.checkbox label,
16835
+ .ui.form .inverted.segment .ui.checkbox .box,
16836
+ .ui.inverted.form .ui.checkbox label,
16837
+ .ui.inverted.form .ui.checkbox .box {
16838
+ color: rgba(255, 255, 255, 0.9);
16839
+ }
16840
+
16841
+ /* Inverted Field */
16842
+
16843
+ .ui.inverted.form input:not([type]),
16844
+ .ui.inverted.form input[type="date"],
16845
+ .ui.inverted.form input[type="datetime-local"],
16846
+ .ui.inverted.form input[type="email"],
16847
+ .ui.inverted.form input[type="number"],
16848
+ .ui.inverted.form input[type="password"],
16849
+ .ui.inverted.form input[type="search"],
16850
+ .ui.inverted.form input[type="tel"],
16851
+ .ui.inverted.form input[type="time"],
16852
+ .ui.inverted.form input[type="text"],
16853
+ .ui.inverted.form input[type="url"] {
16854
+ background: #ffffff;
16855
+ border-color: rgba(255, 255, 255, 0.1);
16856
+ color: rgba(0, 0, 0, 0.87);
16857
+ box-shadow: none;
16858
+ }
16859
+
16860
+ /*--------------------
16861
+ Field Groups
16862
+ ---------------------*/
16863
+
16864
+ /* Grouped Vertically */
16865
+
16866
+ .ui.form .grouped.fields {
16867
+ display: block;
16868
+ margin: 0em 0em 1em;
16869
+ }
16870
+
16871
+ .ui.form .grouped.fields:last-child {
16872
+ margin-bottom: 0em;
16873
+ }
16874
+
16875
+ .ui.form .grouped.fields > label {
16876
+ margin: 0em 0em 0.28571429rem 0em;
16877
+ color: rgba(0, 0, 0, 0.87);
16878
+ font-size: 0.92857143em;
16879
+ font-weight: bold;
16880
+ text-transform: none;
16881
+ }
16882
+
16883
+ .ui.form .grouped.fields .field,
16884
+ .ui.form .grouped.inline.fields .field {
16885
+ display: block;
16886
+ margin: 0.5em 0em;
16887
+ padding: 0em;
16888
+ }
16889
+
16890
+ /*--------------------
16891
+ Fields
16892
+ ---------------------*/
16893
+
16894
+ /* Split fields */
16895
+
16896
+ .ui.form .fields {
16897
+ display: -webkit-box;
16898
+ display: -webkit-flex;
16899
+ display: -ms-flexbox;
16900
+ display: flex;
16901
+ -webkit-box-orient: horizontal;
16902
+ -webkit-box-direction: normal;
16903
+ -webkit-flex-direction: row;
16904
+ -ms-flex-direction: row;
16905
+ flex-direction: row;
16906
+ }
16907
+
16908
+ .ui.form .fields > .field {
16909
+ -webkit-box-flex: 0;
16910
+ -webkit-flex: 0 1 auto;
16911
+ -ms-flex: 0 1 auto;
16912
+ flex: 0 1 auto;
16913
+ padding-left: 0.5em;
16914
+ padding-right: 0.5em;
16915
+ }
16916
+
16917
+ .ui.form .fields > .field:first-child {
16918
+ border-left: none;
16919
+ box-shadow: none;
16920
+ }
16921
+
16922
+ /* Other Combinations */
16923
+
16924
+ .ui.form .two.fields > .fields,
16925
+ .ui.form .two.fields > .field {
16926
+ width: 50%;
16927
+ }
16928
+
16929
+ .ui.form .three.fields > .fields,
16930
+ .ui.form .three.fields > .field {
16931
+ width: 33.33333333%;
16932
+ }
16933
+
16934
+ .ui.form .four.fields > .fields,
16935
+ .ui.form .four.fields > .field {
16936
+ width: 25%;
16937
+ }
16938
+
16939
+ .ui.form .five.fields > .fields,
16940
+ .ui.form .five.fields > .field {
16941
+ width: 20%;
16942
+ }
16943
+
16944
+ .ui.form .six.fields > .fields,
16945
+ .ui.form .six.fields > .field {
16946
+ width: 16.66666667%;
16947
+ }
16948
+
16949
+ .ui.form .seven.fields > .fields,
16950
+ .ui.form .seven.fields > .field {
16951
+ width: 14.28571429%;
16952
+ }
16953
+
16954
+ .ui.form .eight.fields > .fields,
16955
+ .ui.form .eight.fields > .field {
16956
+ width: 12.5%;
16957
+ }
16958
+
16959
+ .ui.form .nine.fields > .fields,
16960
+ .ui.form .nine.fields > .field {
16961
+ width: 11.11111111%;
16962
+ }
16963
+
16964
+ .ui.form .ten.fields > .fields,
16965
+ .ui.form .ten.fields > .field {
16966
+ width: 10%;
16967
+ }
16968
+
16969
+ /* Swap to full width on mobile */
16970
+
16971
+ @media only screen and (max-width: 767px) {
16972
+ .ui.form .fields {
16973
+ -webkit-flex-wrap: wrap;
16974
+ -ms-flex-wrap: wrap;
16975
+ flex-wrap: wrap;
16976
+ }
16977
+
16978
+ .ui.form .two.fields > .fields,
16979
+ .ui.form .two.fields > .field,
16980
+ .ui.form .three.fields > .fields,
16981
+ .ui.form .three.fields > .field,
16982
+ .ui.form .four.fields > .fields,
16983
+ .ui.form .four.fields > .field,
16984
+ .ui.form .five.fields > .fields,
16985
+ .ui.form .five.fields > .field,
16986
+ .ui.form .six.fields > .fields,
16987
+ .ui.form .six.fields > .field,
16988
+ .ui.form .seven.fields > .fields,
16989
+ .ui.form .seven.fields > .field,
16990
+ .ui.form .eight.fields > .fields,
16991
+ .ui.form .eight.fields > .field,
16992
+ .ui.form .nine.fields > .fields,
16993
+ .ui.form .nine.fields > .field,
16994
+ .ui.form .ten.fields > .fields,
16995
+ .ui.form .ten.fields > .field {
16996
+ width: 100% !important;
16997
+ margin: 0em 0em 1em;
16998
+ padding-left: 0%;
16999
+ padding-right: 0%;
17000
+ }
17001
+ }
17002
+
17003
+ .ui.form .fields .field:first-child {
17004
+ padding-left: 0%;
17005
+ }
17006
+
17007
+ .ui.form .fields .field:last-child {
17008
+ padding-right: 0%;
17009
+ }
17010
+
17011
+ /* Sizing Combinations */
17012
+
17013
+ .ui.form .fields .wide.field {
17014
+ width: 6.25%;
17015
+ padding-left: 0.5em;
17016
+ padding-right: 0.5em;
17017
+ }
17018
+
17019
+ .ui.form .fields .wide.field:first-child {
17020
+ padding-left: 0%;
17021
+ }
17022
+
17023
+ .ui.form .fields .wide.field:last-child {
17024
+ padding-right: 0%;
17025
+ }
17026
+
17027
+ .ui.form .one.wide.field {
17028
+ width: 6.25% !important;
17029
+ }
17030
+
17031
+ .ui.form .two.wide.field {
17032
+ width: 12.5% !important;
17033
+ }
17034
+
17035
+ .ui.form .three.wide.field {
17036
+ width: 18.75% !important;
17037
+ }
17038
+
17039
+ .ui.form .four.wide.field {
17040
+ width: 25% !important;
17041
+ }
17042
+
17043
+ .ui.form .five.wide.field {
17044
+ width: 31.25% !important;
17045
+ }
17046
+
17047
+ .ui.form .six.wide.field {
17048
+ width: 37.5% !important;
17049
+ }
17050
+
17051
+ .ui.form .seven.wide.field {
17052
+ width: 43.75% !important;
17053
+ }
17054
+
17055
+ .ui.form .eight.wide.field {
17056
+ width: 50% !important;
17057
+ }
17058
+
17059
+ .ui.form .nine.wide.field {
17060
+ width: 56.25% !important;
17061
+ }
17062
+
17063
+ .ui.form .ten.wide.field {
17064
+ width: 62.5% !important;
17065
+ }
17066
+
17067
+ .ui.form .eleven.wide.field {
17068
+ width: 68.75% !important;
17069
+ }
17070
+
17071
+ .ui.form .twelve.wide.field {
17072
+ width: 75% !important;
17073
+ }
17074
+
17075
+ .ui.form .thirteen.wide.field {
17076
+ width: 81.25% !important;
17077
+ }
17078
+
17079
+ .ui.form .fourteen.wide.field {
17080
+ width: 87.5% !important;
17081
+ }
17082
+
17083
+ .ui.form .fifteen.wide.field {
17084
+ width: 93.75% !important;
17085
+ }
17086
+
17087
+ .ui.form .sixteen.wide.field {
17088
+ width: 100% !important;
17089
+ }
17090
+
17091
+ /* Swap to full width on mobile */
17092
+
17093
+ @media only screen and (max-width: 767px) {
17094
+ .ui.form .two.fields > .fields,
17095
+ .ui.form .two.fields > .field,
17096
+ .ui.form .three.fields > .fields,
17097
+ .ui.form .three.fields > .field,
17098
+ .ui.form .four.fields > .fields,
17099
+ .ui.form .four.fields > .field,
17100
+ .ui.form .five.fields > .fields,
17101
+ .ui.form .five.fields > .field,
17102
+ .ui.form .fields > .two.wide.field,
17103
+ .ui.form .fields > .three.wide.field,
17104
+ .ui.form .fields > .four.wide.field,
17105
+ .ui.form .fields > .five.wide.field,
17106
+ .ui.form .fields > .six.wide.field,
17107
+ .ui.form .fields > .seven.wide.field,
17108
+ .ui.form .fields > .eight.wide.field,
17109
+ .ui.form .fields > .nine.wide.field,
17110
+ .ui.form .fields > .ten.wide.field,
17111
+ .ui.form .fields > .eleven.wide.field,
17112
+ .ui.form .fields > .twelve.wide.field,
17113
+ .ui.form .fields > .thirteen.wide.field,
17114
+ .ui.form .fields > .fourteen.wide.field,
17115
+ .ui.form .fields > .fifteen.wide.field,
17116
+ .ui.form .fields > .sixteen.wide.field {
17117
+ width: 100% !important;
17118
+ margin: 0em 0em 1em;
17119
+ padding-left: 0%;
17120
+ padding-right: 0%;
17121
+ }
17122
+ }
17123
+
17124
+ /*--------------------
17125
+ Equal Width
17126
+ ---------------------*/
17127
+
17128
+ .ui[class*="equal width"].form .fields > .field,
17129
+ .ui.form [class*="equal width"].fields > .field {
17130
+ width: 100%;
17131
+ -webkit-box-flex: 1;
17132
+ -webkit-flex: 1 1 auto;
17133
+ -ms-flex: 1 1 auto;
17134
+ flex: 1 1 auto;
17135
+ }
17136
+
17137
+ /*--------------------
17138
+ Inline Fields
17139
+ ---------------------*/
17140
+
17141
+ .ui.form .inline.fields {
17142
+ margin: 0em 0em 1em;
17143
+ -webkit-box-align: center;
17144
+ -webkit-align-items: center;
17145
+ -ms-flex-align: center;
17146
+ align-items: center;
17147
+ }
17148
+
17149
+ .ui.form .inline.fields .field {
17150
+ margin: 0em;
17151
+ padding: 0em 1em 0em 0em;
17152
+ }
17153
+
17154
+ /* Inline Label */
17155
+
17156
+ .ui.form .inline.fields > label,
17157
+ .ui.form .inline.fields .field > label,
17158
+ .ui.form .inline.fields .field > p,
17159
+ .ui.form .inline.field > label,
17160
+ .ui.form .inline.field > p {
17161
+ display: inline-block;
17162
+ width: auto;
17163
+ margin-top: 0em;
17164
+ margin-bottom: 0em;
17165
+ vertical-align: baseline;
17166
+ font-size: 0.92857143em;
17167
+ font-weight: bold;
17168
+ color: rgba(0, 0, 0, 0.87);
17169
+ text-transform: none;
17170
+ }
17171
+
17172
+ /* Grouped Inline Label */
17173
+
17174
+ .ui.form .inline.fields > label {
17175
+ margin: 0.035714em 1em 0em 0em;
17176
+ }
17177
+
17178
+ /* Inline Input */
17179
+
17180
+ .ui.form .inline.fields .field > input,
17181
+ .ui.form .inline.fields .field > select,
17182
+ .ui.form .inline.field > input,
17183
+ .ui.form .inline.field > select {
17184
+ display: inline-block;
17185
+ width: auto;
17186
+ margin-top: 0em;
17187
+ margin-bottom: 0em;
17188
+ vertical-align: middle;
17189
+ font-size: 1em;
17190
+ }
17191
+
17192
+ /* Label */
17193
+
17194
+ .ui.form .inline.fields .field > :first-child,
17195
+ .ui.form .inline.field > :first-child {
17196
+ margin: 0em 0.85714286em 0em 0em;
17197
+ }
17198
+
17199
+ .ui.form .inline.fields .field > :only-child,
17200
+ .ui.form .inline.field > :only-child {
17201
+ margin: 0em;
17202
+ }
17203
+
17204
+ /* Wide */
17205
+
17206
+ .ui.form .inline.fields .wide.field {
17207
+ display: -webkit-box;
17208
+ display: -webkit-flex;
17209
+ display: -ms-flexbox;
17210
+ display: flex;
17211
+ -webkit-box-align: center;
17212
+ -webkit-align-items: center;
17213
+ -ms-flex-align: center;
17214
+ align-items: center;
17215
+ }
17216
+
17217
+ .ui.form .inline.fields .wide.field > input,
17218
+ .ui.form .inline.fields .wide.field > select {
17219
+ width: 100%;
17220
+ }
17221
+
17222
+ /*--------------------
17223
+ Sizes
17224
+ ---------------------*/
17225
+
17226
+ /* Standard */
17227
+
17228
+ .ui.small.form {
17229
+ font-size: 0.92857143rem;
17230
+ }
17231
+
17232
+ /* Medium */
17233
+
17234
+ .ui.form {
17235
+ font-size: 1rem;
17236
+ }
17237
+
17238
+ /* Large */
17239
+
17240
+ .ui.large.form {
17241
+ font-size: 1.14285714rem;
17242
+ }
17243
+
17244
+ /* Huge */
17245
+
17246
+ .ui.huge.form {
17247
+ font-size: 1.42857143rem;
17248
+ }
17249
+
17250
+ /*******************************
17251
+ Theme Overrides
17252
+ *******************************/
17253
+
17254
+ /*******************************
17255
+ Site Overrides
17256
+ *******************************/
17257
+ /*!
17258
+ * # Semantic UI 2.1.7 - Grid
17259
+ * http://github.com/semantic-org/semantic-ui/
17260
+ *
17261
+ *
17262
+ * Copyright 2015 Contributors
17263
+ * Released under the MIT license
17264
+ * http://opensource.org/licenses/MIT
17265
+ *
17266
+ */
17267
+
17268
+ /*******************************
17269
+ Standard
17270
+ *******************************/
17271
+
17272
+ .ui.grid {
17273
+ display: -webkit-box;
17274
+ display: -webkit-flex;
17275
+ display: -ms-flexbox;
17276
+ display: flex;
17277
+ -webkit-box-orient: horizontal;
17278
+ -webkit-box-direction: normal;
17279
+ -webkit-flex-direction: row;
17280
+ -ms-flex-direction: row;
17281
+ flex-direction: row;
17282
+ -webkit-flex-wrap: wrap;
17283
+ -ms-flex-wrap: wrap;
17284
+ flex-wrap: wrap;
17285
+ -webkit-box-align: stretch;
17286
+ -webkit-align-items: stretch;
17287
+ -ms-flex-align: stretch;
17288
+ align-items: stretch;
17289
+ padding: 0em;
17290
+ }
17291
+
17292
+ /*----------------------
17293
+ Remove Gutters
17294
+ -----------------------*/
17295
+
17296
+ .ui.grid {
17297
+ margin-top: -1rem;
17298
+ margin-bottom: -1rem;
17299
+ margin-left: -1rem;
17300
+ margin-right: -1rem;
17301
+ }
17302
+
17303
+ .ui.relaxed.grid {
17304
+ margin-left: -1.5rem;
17305
+ margin-right: -1.5rem;
17306
+ }
17307
+
17308
+ .ui[class*="very relaxed"].grid {
17309
+ margin-left: -2.5rem;
17310
+ margin-right: -2.5rem;
17311
+ }
17312
+
17313
+ /* Preserve Rows Spacing on Consecutive Grids */
17314
+
17315
+ .ui.grid + .grid {
17316
+ margin-top: 1rem;
17317
+ }
17318
+
17319
+ /*-------------------
17320
+ Columns
17321
+ --------------------*/
17322
+
17323
+ /* Standard 16 column */
17324
+
17325
+ .ui.grid > .column:not(.row),
17326
+ .ui.grid > .row > .column {
17327
+ position: relative;
17328
+ display: inline-block;
17329
+ width: 6.25%;
17330
+ padding-left: 1rem;
17331
+ padding-right: 1rem;
17332
+ vertical-align: top;
17333
+ }
17334
+
17335
+ .ui.grid > * {
17336
+ padding-left: 1rem;
17337
+ padding-right: 1rem;
17338
+ }
17339
+
17340
+ /*-------------------
17341
+ Rows
17342
+ --------------------*/
17343
+
17344
+ .ui.grid > .row {
17345
+ position: relative;
17346
+ display: -webkit-box;
17347
+ display: -webkit-flex;
17348
+ display: -ms-flexbox;
17349
+ display: flex;
17350
+ -webkit-box-orient: horizontal;
17351
+ -webkit-box-direction: normal;
17352
+ -webkit-flex-direction: row;
17353
+ -ms-flex-direction: row;
17354
+ flex-direction: row;
17355
+ -webkit-flex-wrap: wrap;
17356
+ -ms-flex-wrap: wrap;
17357
+ flex-wrap: wrap;
17358
+ -webkit-box-pack: inherit;
17359
+ -webkit-justify-content: inherit;
17360
+ -ms-flex-pack: inherit;
17361
+ justify-content: inherit;
17362
+ -webkit-box-align: stretch;
17363
+ -webkit-align-items: stretch;
17364
+ -ms-flex-align: stretch;
17365
+ align-items: stretch;
17366
+ width: 100% !important;
17367
+ padding: 0rem;
17368
+ padding-top: 1rem;
17369
+ padding-bottom: 1rem;
17370
+ }
17371
+
17372
+ /*-------------------
17373
+ Columns
17374
+ --------------------*/
17375
+
17376
+ /* Vertical padding when no rows */
17377
+
17378
+ .ui.grid > .column:not(.row) {
17379
+ padding-top: 1rem;
17380
+ padding-bottom: 1rem;
17381
+ }
17382
+
17383
+ .ui.grid > .row > .column {
17384
+ margin-top: 0em;
17385
+ margin-bottom: 0em;
17386
+ }
17387
+
17388
+ /*-------------------
17389
+ Content
17390
+ --------------------*/
17391
+
17392
+ .ui.grid > .row > img,
17393
+ .ui.grid > .row > .column > img {
17394
+ max-width: 100%;
17395
+ }
17396
+
17397
+ /*-------------------
17398
+ Loose Coupling
17399
+ --------------------*/
17400
+
17401
+ /* Collapse Margin on Consecutive Grid */
17402
+
17403
+ .ui.grid > .ui.grid:first-child {
17404
+ margin-top: 0em;
17405
+ }
17406
+
17407
+ .ui.grid > .ui.grid:last-child {
17408
+ margin-bottom: 0em;
17409
+ }
17410
+
17411
+ /* Segment inside Aligned Grid */
17412
+
17413
+ .ui.grid .aligned.row > .column > .segment:not(.compact):not(.attached),
17414
+ .ui.aligned.grid .column > .segment:not(.compact):not(.attached) {
17415
+ width: 100%;
17416
+ }
17417
+
17418
+ /* Align Dividers with Gutter */
17419
+
17420
+ .ui.grid .row + .ui.divider {
17421
+ -webkit-box-flex: 1;
17422
+ -webkit-flex-grow: 1;
17423
+ -ms-flex-positive: 1;
17424
+ flex-grow: 1;
17425
+ margin: 1rem 1rem;
17426
+ }
17427
+
17428
+ .ui.grid .column + .ui.vertical.divider {
17429
+ height: calc(50% - 1rem );
17430
+ }
17431
+
17432
+ /* Remove Border on Last Horizontal Segment */
17433
+
17434
+ .ui.grid > .row > .column:last-child > .horizontal.segment,
17435
+ .ui.grid > .column:last-child > .horizontal.segment {
17436
+ box-shadow: none;
17437
+ }
17438
+
17439
+ /*******************************
17440
+ Variations
17441
+ *******************************/
17442
+
17443
+ /*-----------------------
17444
+ Page Grid
17445
+ -------------------------*/
17446
+
17447
+ @media only screen and (max-width: 767px) {
17448
+ .ui.page.grid {
17449
+ width: auto;
17450
+ padding-left: 0em;
17451
+ padding-right: 0em;
17452
+ margin-left: 0em;
17453
+ margin-right: 0em;
17454
+ }
17455
+ }
17456
+
17457
+ @media only screen and (min-width: 768px) and (max-width: 991px) {
17458
+ .ui.page.grid {
17459
+ width: auto;
17460
+ margin-left: 0em;
17461
+ margin-right: 0em;
17462
+ padding-left: 2em;
17463
+ padding-right: 2em;
17464
+ }
17465
+ }
17466
+
17467
+ @media only screen and (min-width: 992px) and (max-width: 1199px) {
17468
+ .ui.page.grid {
17469
+ width: auto;
17470
+ margin-left: 0em;
17471
+ margin-right: 0em;
17472
+ padding-left: 3%;
17473
+ padding-right: 3%;
17474
+ }
17475
+ }
17476
+
17477
+ @media only screen and (min-width: 1200px) and (max-width: 1919px) {
17478
+ .ui.page.grid {
17479
+ width: auto;
17480
+ margin-left: 0em;
17481
+ margin-right: 0em;
17482
+ padding-left: 15%;
17483
+ padding-right: 15%;
17484
+ }
17485
+ }
17486
+
17487
+ @media only screen and (min-width: 1920px) {
17488
+ .ui.page.grid {
17489
+ width: auto;
17490
+ margin-left: 0em;
17491
+ margin-right: 0em;
17492
+ padding-left: 23%;
17493
+ padding-right: 23%;
17494
+ }
17495
+ }
17496
+
17497
+ /*-------------------
17498
+ Column Count
17499
+ --------------------*/
17500
+
17501
+ /* Assume full width with one column */
17502
+
17503
+ .ui.grid > .column:only-child,
17504
+ .ui.grid > .row > .column:only-child {
17505
+ width: 100%;
17506
+ }
17507
+
17508
+ /* Grid Based */
17509
+
17510
+ .ui[class*="one column"].grid > .row > .column,
17511
+ .ui[class*="one column"].grid > .column:not(.row) {
17512
+ width: 100%;
17513
+ }
17514
+
17515
+ .ui[class*="two column"].grid > .row > .column,
17516
+ .ui[class*="two column"].grid > .column:not(.row) {
17517
+ width: 50%;
17518
+ }
17519
+
17520
+ .ui[class*="three column"].grid > .row > .column,
17521
+ .ui[class*="three column"].grid > .column:not(.row) {
17522
+ width: 33.33333333%;
17523
+ }
17524
+
17525
+ .ui[class*="four column"].grid > .row > .column,
17526
+ .ui[class*="four column"].grid > .column:not(.row) {
17527
+ width: 25%;
17528
+ }
17529
+
17530
+ .ui[class*="five column"].grid > .row > .column,
17531
+ .ui[class*="five column"].grid > .column:not(.row) {
17532
+ width: 20%;
17533
+ }
17534
+
17535
+ .ui[class*="six column"].grid > .row > .column,
17536
+ .ui[class*="six column"].grid > .column:not(.row) {
17537
+ width: 16.66666667%;
17538
+ }
17539
+
17540
+ .ui[class*="seven column"].grid > .row > .column,
17541
+ .ui[class*="seven column"].grid > .column:not(.row) {
17542
+ width: 14.28571429%;
17543
+ }
17544
+
17545
+ .ui[class*="eight column"].grid > .row > .column,
17546
+ .ui[class*="eight column"].grid > .column:not(.row) {
17547
+ width: 12.5%;
17548
+ }
17549
+
17550
+ .ui[class*="nine column"].grid > .row > .column,
17551
+ .ui[class*="nine column"].grid > .column:not(.row) {
17552
+ width: 11.11111111%;
17553
+ }
17554
+
17555
+ .ui[class*="ten column"].grid > .row > .column,
17556
+ .ui[class*="ten column"].grid > .column:not(.row) {
17557
+ width: 10%;
17558
+ }
17559
+
17560
+ .ui[class*="eleven column"].grid > .row > .column,
17561
+ .ui[class*="eleven column"].grid > .column:not(.row) {
17562
+ width: 9.09090909%;
17563
+ }
17564
+
17565
+ .ui[class*="twelve column"].grid > .row > .column,
17566
+ .ui[class*="twelve column"].grid > .column:not(.row) {
17567
+ width: 8.33333333%;
17568
+ }
17569
+
17570
+ .ui[class*="thirteen column"].grid > .row > .column,
17571
+ .ui[class*="thirteen column"].grid > .column:not(.row) {
17572
+ width: 7.69230769%;
17573
+ }
17574
+
17575
+ .ui[class*="fourteen column"].grid > .row > .column,
17576
+ .ui[class*="fourteen column"].grid > .column:not(.row) {
17577
+ width: 7.14285714%;
17578
+ }
17579
+
17580
+ .ui[class*="fifteen column"].grid > .row > .column,
17581
+ .ui[class*="fifteen column"].grid > .column:not(.row) {
17582
+ width: 6.66666667%;
17583
+ }
17584
+
17585
+ .ui[class*="sixteen column"].grid > .row > .column,
17586
+ .ui[class*="sixteen column"].grid > .column:not(.row) {
17587
+ width: 6.25%;
17588
+ }
17589
+
17590
+ /* Row Based Overrides */
17591
+
17592
+ .ui.grid > [class*="one column"].row > .column {
17593
+ width: 100% !important;
17594
+ }
17595
+
17596
+ .ui.grid > [class*="two column"].row > .column {
17597
+ width: 50% !important;
17598
+ }
17599
+
17600
+ .ui.grid > [class*="three column"].row > .column {
17601
+ width: 33.33333333% !important;
17602
+ }
17603
+
17604
+ .ui.grid > [class*="four column"].row > .column {
17605
+ width: 25% !important;
17606
+ }
17607
+
17608
+ .ui.grid > [class*="five column"].row > .column {
17609
+ width: 20% !important;
17610
+ }
17611
+
17612
+ .ui.grid > [class*="six column"].row > .column {
17613
+ width: 16.66666667% !important;
17614
+ }
17615
+
17616
+ .ui.grid > [class*="seven column"].row > .column {
17617
+ width: 14.28571429% !important;
17618
+ }
17619
+
17620
+ .ui.grid > [class*="eight column"].row > .column {
17621
+ width: 12.5% !important;
17622
+ }
17623
+
17624
+ .ui.grid > [class*="nine column"].row > .column {
17625
+ width: 11.11111111% !important;
17626
+ }
17627
+
17628
+ .ui.grid > [class*="ten column"].row > .column {
17629
+ width: 10% !important;
17630
+ }
17631
+
17632
+ .ui.grid > [class*="eleven column"].row > .column {
17633
+ width: 9.09090909% !important;
17634
+ }
17635
+
17636
+ .ui.grid > [class*="twelve column"].row > .column {
17637
+ width: 8.33333333% !important;
17638
+ }
17639
+
17640
+ .ui.grid > [class*="thirteen column"].row > .column {
17641
+ width: 7.69230769% !important;
17642
+ }
17643
+
17644
+ .ui.grid > [class*="fourteen column"].row > .column {
17645
+ width: 7.14285714% !important;
17646
+ }
17647
+
17648
+ .ui.grid > [class*="fifteen column"].row > .column {
17649
+ width: 6.66666667% !important;
17650
+ }
17651
+
17652
+ .ui.grid > [class*="sixteen column"].row > .column {
17653
+ width: 6.25% !important;
17654
+ }
17655
+
17656
+ /* Celled Page */
17657
+
17658
+ .ui.celled.page.grid {
17659
+ box-shadow: none;
17660
+ }
17661
+
17662
+ /*-------------------
17663
+ Column Width
17664
+ --------------------*/
17665
+
17666
+ /* Sizing Combinations */
17667
+
17668
+ .ui.grid > .row > [class*="one wide"].column,
17669
+ .ui.grid > .column.row > [class*="one wide"].column,
17670
+ .ui.grid > [class*="one wide"].column,
17671
+ .ui.column.grid > [class*="one wide"].column {
17672
+ width: 6.25% !important;
17673
+ }
17674
+
17675
+ .ui.grid > .row > [class*="two wide"].column,
17676
+ .ui.grid > .column.row > [class*="two wide"].column,
17677
+ .ui.grid > [class*="two wide"].column,
17678
+ .ui.column.grid > [class*="two wide"].column {
17679
+ width: 12.5% !important;
17680
+ }
17681
+
17682
+ .ui.grid > .row > [class*="three wide"].column,
17683
+ .ui.grid > .column.row > [class*="three wide"].column,
17684
+ .ui.grid > [class*="three wide"].column,
17685
+ .ui.column.grid > [class*="three wide"].column {
17686
+ width: 18.75% !important;
17687
+ }
17688
+
17689
+ .ui.grid > .row > [class*="four wide"].column,
17690
+ .ui.grid > .column.row > [class*="four wide"].column,
17691
+ .ui.grid > [class*="four wide"].column,
17692
+ .ui.column.grid > [class*="four wide"].column {
17693
+ width: 25% !important;
17694
+ }
17695
+
17696
+ .ui.grid > .row > [class*="five wide"].column,
17697
+ .ui.grid > .column.row > [class*="five wide"].column,
17698
+ .ui.grid > [class*="five wide"].column,
17699
+ .ui.column.grid > [class*="five wide"].column {
17700
+ width: 31.25% !important;
17701
+ }
17702
+
17703
+ .ui.grid > .row > [class*="six wide"].column,
17704
+ .ui.grid > .column.row > [class*="six wide"].column,
17705
+ .ui.grid > [class*="six wide"].column,
17706
+ .ui.column.grid > [class*="six wide"].column {
17707
+ width: 37.5% !important;
17708
+ }
17709
+
17710
+ .ui.grid > .row > [class*="seven wide"].column,
17711
+ .ui.grid > .column.row > [class*="seven wide"].column,
17712
+ .ui.grid > [class*="seven wide"].column,
17713
+ .ui.column.grid > [class*="seven wide"].column {
17714
+ width: 43.75% !important;
17715
+ }
17716
+
17717
+ .ui.grid > .row > [class*="eight wide"].column,
17718
+ .ui.grid > .column.row > [class*="eight wide"].column,
17719
+ .ui.grid > [class*="eight wide"].column,
17720
+ .ui.column.grid > [class*="eight wide"].column {
17721
+ width: 50% !important;
17722
+ }
17723
+
17724
+ .ui.grid > .row > [class*="nine wide"].column,
17725
+ .ui.grid > .column.row > [class*="nine wide"].column,
17726
+ .ui.grid > [class*="nine wide"].column,
17727
+ .ui.column.grid > [class*="nine wide"].column {
17728
+ width: 56.25% !important;
17729
+ }
17730
+
17731
+ .ui.grid > .row > [class*="ten wide"].column,
17732
+ .ui.grid > .column.row > [class*="ten wide"].column,
17733
+ .ui.grid > [class*="ten wide"].column,
17734
+ .ui.column.grid > [class*="ten wide"].column {
17735
+ width: 62.5% !important;
17736
+ }
17737
+
17738
+ .ui.grid > .row > [class*="eleven wide"].column,
17739
+ .ui.grid > .column.row > [class*="eleven wide"].column,
17740
+ .ui.grid > [class*="eleven wide"].column,
17741
+ .ui.column.grid > [class*="eleven wide"].column {
17742
+ width: 68.75% !important;
17743
+ }
17744
+
17745
+ .ui.grid > .row > [class*="twelve wide"].column,
17746
+ .ui.grid > .column.row > [class*="twelve wide"].column,
17747
+ .ui.grid > [class*="twelve wide"].column,
17748
+ .ui.column.grid > [class*="twelve wide"].column {
17749
+ width: 75% !important;
17750
+ }
17751
+
17752
+ .ui.grid > .row > [class*="thirteen wide"].column,
17753
+ .ui.grid > .column.row > [class*="thirteen wide"].column,
17754
+ .ui.grid > [class*="thirteen wide"].column,
17755
+ .ui.column.grid > [class*="thirteen wide"].column {
17756
+ width: 81.25% !important;
17757
+ }
17758
+
17759
+ .ui.grid > .row > [class*="fourteen wide"].column,
17760
+ .ui.grid > .column.row > [class*="fourteen wide"].column,
17761
+ .ui.grid > [class*="fourteen wide"].column,
17762
+ .ui.column.grid > [class*="fourteen wide"].column {
17763
+ width: 87.5% !important;
17764
+ }
17765
+
17766
+ .ui.grid > .row > [class*="fifteen wide"].column,
17767
+ .ui.grid > .column.row > [class*="fifteen wide"].column,
17768
+ .ui.grid > [class*="fifteen wide"].column,
17769
+ .ui.column.grid > [class*="fifteen wide"].column {
17770
+ width: 93.75% !important;
17771
+ }
17772
+
17773
+ .ui.grid > .row > [class*="sixteen wide"].column,
17774
+ .ui.grid > .column.row > [class*="sixteen wide"].column,
17775
+ .ui.grid > [class*="sixteen wide"].column,
17776
+ .ui.column.grid > [class*="sixteen wide"].column {
17777
+ width: 100% !important;
17778
+ }
17779
+
17780
+ /*----------------------
17781
+ Width per Device
17782
+ -----------------------*/
17783
+
17784
+ /* Mobile Sizing Combinations */
17785
+
17786
+ @media only screen and (min-width: 320px) and (max-width: 767px) {
17787
+ .ui.grid > .row > [class*="one wide mobile"].column,
17788
+ .ui.grid > .column.row > [class*="one wide mobile"].column,
17789
+ .ui.grid > [class*="one wide mobile"].column,
17790
+ .ui.column.grid > [class*="one wide mobile"].column {
17791
+ width: 6.25% !important;
17792
+ }
17793
+
17794
+ .ui.grid > .row > [class*="two wide mobile"].column,
17795
+ .ui.grid > .column.row > [class*="two wide mobile"].column,
17796
+ .ui.grid > [class*="two wide mobile"].column,
17797
+ .ui.column.grid > [class*="two wide mobile"].column {
17798
+ width: 12.5% !important;
17799
+ }
17800
+
17801
+ .ui.grid > .row > [class*="three wide mobile"].column,
17802
+ .ui.grid > .column.row > [class*="three wide mobile"].column,
17803
+ .ui.grid > [class*="three wide mobile"].column,
17804
+ .ui.column.grid > [class*="three wide mobile"].column {
17805
+ width: 18.75% !important;
17806
+ }
17807
+
17808
+ .ui.grid > .row > [class*="four wide mobile"].column,
17809
+ .ui.grid > .column.row > [class*="four wide mobile"].column,
17810
+ .ui.grid > [class*="four wide mobile"].column,
17811
+ .ui.column.grid > [class*="four wide mobile"].column {
17812
+ width: 25% !important;
17813
+ }
17814
+
17815
+ .ui.grid > .row > [class*="five wide mobile"].column,
17816
+ .ui.grid > .column.row > [class*="five wide mobile"].column,
17817
+ .ui.grid > [class*="five wide mobile"].column,
17818
+ .ui.column.grid > [class*="five wide mobile"].column {
17819
+ width: 31.25% !important;
17820
+ }
17821
+
17822
+ .ui.grid > .row > [class*="six wide mobile"].column,
17823
+ .ui.grid > .column.row > [class*="six wide mobile"].column,
17824
+ .ui.grid > [class*="six wide mobile"].column,
17825
+ .ui.column.grid > [class*="six wide mobile"].column {
17826
+ width: 37.5% !important;
17827
+ }
17828
+
17829
+ .ui.grid > .row > [class*="seven wide mobile"].column,
17830
+ .ui.grid > .column.row > [class*="seven wide mobile"].column,
17831
+ .ui.grid > [class*="seven wide mobile"].column,
17832
+ .ui.column.grid > [class*="seven wide mobile"].column {
17833
+ width: 43.75% !important;
17834
+ }
17835
+
17836
+ .ui.grid > .row > [class*="eight wide mobile"].column,
17837
+ .ui.grid > .column.row > [class*="eight wide mobile"].column,
17838
+ .ui.grid > [class*="eight wide mobile"].column,
17839
+ .ui.column.grid > [class*="eight wide mobile"].column {
17840
+ width: 50% !important;
17841
+ }
17842
+
17843
+ .ui.grid > .row > [class*="nine wide mobile"].column,
17844
+ .ui.grid > .column.row > [class*="nine wide mobile"].column,
17845
+ .ui.grid > [class*="nine wide mobile"].column,
17846
+ .ui.column.grid > [class*="nine wide mobile"].column {
17847
+ width: 56.25% !important;
17848
+ }
17849
+
17850
+ .ui.grid > .row > [class*="ten wide mobile"].column,
17851
+ .ui.grid > .column.row > [class*="ten wide mobile"].column,
17852
+ .ui.grid > [class*="ten wide mobile"].column,
17853
+ .ui.column.grid > [class*="ten wide mobile"].column {
17854
+ width: 62.5% !important;
17855
+ }
17856
+
17857
+ .ui.grid > .row > [class*="eleven wide mobile"].column,
17858
+ .ui.grid > .column.row > [class*="eleven wide mobile"].column,
17859
+ .ui.grid > [class*="eleven wide mobile"].column,
17860
+ .ui.column.grid > [class*="eleven wide mobile"].column {
17861
+ width: 68.75% !important;
17862
+ }
17863
+
17864
+ .ui.grid > .row > [class*="twelve wide mobile"].column,
17865
+ .ui.grid > .column.row > [class*="twelve wide mobile"].column,
17866
+ .ui.grid > [class*="twelve wide mobile"].column,
17867
+ .ui.column.grid > [class*="twelve wide mobile"].column {
17868
+ width: 75% !important;
17869
+ }
17870
+
17871
+ .ui.grid > .row > [class*="thirteen wide mobile"].column,
17872
+ .ui.grid > .column.row > [class*="thirteen wide mobile"].column,
17873
+ .ui.grid > [class*="thirteen wide mobile"].column,
17874
+ .ui.column.grid > [class*="thirteen wide mobile"].column {
17875
+ width: 81.25% !important;
17876
+ }
17877
+
17878
+ .ui.grid > .row > [class*="fourteen wide mobile"].column,
17879
+ .ui.grid > .column.row > [class*="fourteen wide mobile"].column,
17880
+ .ui.grid > [class*="fourteen wide mobile"].column,
17881
+ .ui.column.grid > [class*="fourteen wide mobile"].column {
17882
+ width: 87.5% !important;
17883
+ }
17884
+
17885
+ .ui.grid > .row > [class*="fifteen wide mobile"].column,
17886
+ .ui.grid > .column.row > [class*="fifteen wide mobile"].column,
17887
+ .ui.grid > [class*="fifteen wide mobile"].column,
17888
+ .ui.column.grid > [class*="fifteen wide mobile"].column {
17889
+ width: 93.75% !important;
17890
+ }
17891
+
17892
+ .ui.grid > .row > [class*="sixteen wide mobile"].column,
17893
+ .ui.grid > .column.row > [class*="sixteen wide mobile"].column,
17894
+ .ui.grid > [class*="sixteen wide mobile"].column,
17895
+ .ui.column.grid > [class*="sixteen wide mobile"].column {
17896
+ width: 100% !important;
17897
+ }
17898
+ }
17899
+
17900
+ /* Tablet Sizing Combinations */
17901
+
17902
+ @media only screen and (min-width: 768px) and (max-width: 991px) {
17903
+ .ui.grid > .row > [class*="one wide tablet"].column,
17904
+ .ui.grid > .column.row > [class*="one wide tablet"].column,
17905
+ .ui.grid > [class*="one wide tablet"].column,
17906
+ .ui.column.grid > [class*="one wide tablet"].column {
17907
+ width: 6.25% !important;
17908
+ }
17909
+
17910
+ .ui.grid > .row > [class*="two wide tablet"].column,
17911
+ .ui.grid > .column.row > [class*="two wide tablet"].column,
17912
+ .ui.grid > [class*="two wide tablet"].column,
17913
+ .ui.column.grid > [class*="two wide tablet"].column {
17914
+ width: 12.5% !important;
17915
+ }
17916
+
17917
+ .ui.grid > .row > [class*="three wide tablet"].column,
17918
+ .ui.grid > .column.row > [class*="three wide tablet"].column,
17919
+ .ui.grid > [class*="three wide tablet"].column,
17920
+ .ui.column.grid > [class*="three wide tablet"].column {
17921
+ width: 18.75% !important;
17922
+ }
17923
+
17924
+ .ui.grid > .row > [class*="four wide tablet"].column,
17925
+ .ui.grid > .column.row > [class*="four wide tablet"].column,
17926
+ .ui.grid > [class*="four wide tablet"].column,
17927
+ .ui.column.grid > [class*="four wide tablet"].column {
17928
+ width: 25% !important;
17929
+ }
17930
+
17931
+ .ui.grid > .row > [class*="five wide tablet"].column,
17932
+ .ui.grid > .column.row > [class*="five wide tablet"].column,
17933
+ .ui.grid > [class*="five wide tablet"].column,
17934
+ .ui.column.grid > [class*="five wide tablet"].column {
17935
+ width: 31.25% !important;
17936
+ }
17937
+
17938
+ .ui.grid > .row > [class*="six wide tablet"].column,
17939
+ .ui.grid > .column.row > [class*="six wide tablet"].column,
17940
+ .ui.grid > [class*="six wide tablet"].column,
17941
+ .ui.column.grid > [class*="six wide tablet"].column {
17942
+ width: 37.5% !important;
17943
+ }
17944
+
17945
+ .ui.grid > .row > [class*="seven wide tablet"].column,
17946
+ .ui.grid > .column.row > [class*="seven wide tablet"].column,
17947
+ .ui.grid > [class*="seven wide tablet"].column,
17948
+ .ui.column.grid > [class*="seven wide tablet"].column {
17949
+ width: 43.75% !important;
17950
+ }
17951
+
17952
+ .ui.grid > .row > [class*="eight wide tablet"].column,
17953
+ .ui.grid > .column.row > [class*="eight wide tablet"].column,
17954
+ .ui.grid > [class*="eight wide tablet"].column,
17955
+ .ui.column.grid > [class*="eight wide tablet"].column {
17956
+ width: 50% !important;
17957
+ }
17958
+
17959
+ .ui.grid > .row > [class*="nine wide tablet"].column,
17960
+ .ui.grid > .column.row > [class*="nine wide tablet"].column,
17961
+ .ui.grid > [class*="nine wide tablet"].column,
17962
+ .ui.column.grid > [class*="nine wide tablet"].column {
17963
+ width: 56.25% !important;
17964
+ }
17965
+
17966
+ .ui.grid > .row > [class*="ten wide tablet"].column,
17967
+ .ui.grid > .column.row > [class*="ten wide tablet"].column,
17968
+ .ui.grid > [class*="ten wide tablet"].column,
17969
+ .ui.column.grid > [class*="ten wide tablet"].column {
17970
+ width: 62.5% !important;
17971
+ }
17972
+
17973
+ .ui.grid > .row > [class*="eleven wide tablet"].column,
17974
+ .ui.grid > .column.row > [class*="eleven wide tablet"].column,
17975
+ .ui.grid > [class*="eleven wide tablet"].column,
17976
+ .ui.column.grid > [class*="eleven wide tablet"].column {
17977
+ width: 68.75% !important;
17978
+ }
17979
+
17980
+ .ui.grid > .row > [class*="twelve wide tablet"].column,
17981
+ .ui.grid > .column.row > [class*="twelve wide tablet"].column,
17982
+ .ui.grid > [class*="twelve wide tablet"].column,
17983
+ .ui.column.grid > [class*="twelve wide tablet"].column {
17984
+ width: 75% !important;
17985
+ }
17986
+
17987
+ .ui.grid > .row > [class*="thirteen wide tablet"].column,
17988
+ .ui.grid > .column.row > [class*="thirteen wide tablet"].column,
17989
+ .ui.grid > [class*="thirteen wide tablet"].column,
17990
+ .ui.column.grid > [class*="thirteen wide tablet"].column {
17991
+ width: 81.25% !important;
17992
+ }
17993
+
17994
+ .ui.grid > .row > [class*="fourteen wide tablet"].column,
17995
+ .ui.grid > .column.row > [class*="fourteen wide tablet"].column,
17996
+ .ui.grid > [class*="fourteen wide tablet"].column,
17997
+ .ui.column.grid > [class*="fourteen wide tablet"].column {
17998
+ width: 87.5% !important;
17999
+ }
18000
+
18001
+ .ui.grid > .row > [class*="fifteen wide tablet"].column,
18002
+ .ui.grid > .column.row > [class*="fifteen wide tablet"].column,
18003
+ .ui.grid > [class*="fifteen wide tablet"].column,
18004
+ .ui.column.grid > [class*="fifteen wide tablet"].column {
18005
+ width: 93.75% !important;
18006
+ }
18007
+
18008
+ .ui.grid > .row > [class*="sixteen wide tablet"].column,
18009
+ .ui.grid > .column.row > [class*="sixteen wide tablet"].column,
18010
+ .ui.grid > [class*="sixteen wide tablet"].column,
18011
+ .ui.column.grid > [class*="sixteen wide tablet"].column {
18012
+ width: 100% !important;
18013
+ }
18014
+ }
18015
+
18016
+ /* Computer/Desktop Sizing Combinations */
18017
+
18018
+ @media only screen and (min-width: 992px) {
18019
+ .ui.grid > .row > [class*="one wide computer"].column,
18020
+ .ui.grid > .column.row > [class*="one wide computer"].column,
18021
+ .ui.grid > [class*="one wide computer"].column,
18022
+ .ui.column.grid > [class*="one wide computer"].column {
18023
+ width: 6.25% !important;
18024
+ }
18025
+
18026
+ .ui.grid > .row > [class*="two wide computer"].column,
18027
+ .ui.grid > .column.row > [class*="two wide computer"].column,
18028
+ .ui.grid > [class*="two wide computer"].column,
18029
+ .ui.column.grid > [class*="two wide computer"].column {
18030
+ width: 12.5% !important;
18031
+ }
18032
+
18033
+ .ui.grid > .row > [class*="three wide computer"].column,
18034
+ .ui.grid > .column.row > [class*="three wide computer"].column,
18035
+ .ui.grid > [class*="three wide computer"].column,
18036
+ .ui.column.grid > [class*="three wide computer"].column {
18037
+ width: 18.75% !important;
18038
+ }
18039
+
18040
+ .ui.grid > .row > [class*="four wide computer"].column,
18041
+ .ui.grid > .column.row > [class*="four wide computer"].column,
18042
+ .ui.grid > [class*="four wide computer"].column,
18043
+ .ui.column.grid > [class*="four wide computer"].column {
18044
+ width: 25% !important;
18045
+ }
18046
+
18047
+ .ui.grid > .row > [class*="five wide computer"].column,
18048
+ .ui.grid > .column.row > [class*="five wide computer"].column,
18049
+ .ui.grid > [class*="five wide computer"].column,
18050
+ .ui.column.grid > [class*="five wide computer"].column {
18051
+ width: 31.25% !important;
18052
+ }
18053
+
18054
+ .ui.grid > .row > [class*="six wide computer"].column,
18055
+ .ui.grid > .column.row > [class*="six wide computer"].column,
18056
+ .ui.grid > [class*="six wide computer"].column,
18057
+ .ui.column.grid > [class*="six wide computer"].column {
18058
+ width: 37.5% !important;
18059
+ }
18060
+
18061
+ .ui.grid > .row > [class*="seven wide computer"].column,
18062
+ .ui.grid > .column.row > [class*="seven wide computer"].column,
18063
+ .ui.grid > [class*="seven wide computer"].column,
18064
+ .ui.column.grid > [class*="seven wide computer"].column {
18065
+ width: 43.75% !important;
18066
+ }
18067
+
18068
+ .ui.grid > .row > [class*="eight wide computer"].column,
18069
+ .ui.grid > .column.row > [class*="eight wide computer"].column,
18070
+ .ui.grid > [class*="eight wide computer"].column,
18071
+ .ui.column.grid > [class*="eight wide computer"].column {
18072
+ width: 50% !important;
18073
+ }
18074
+
18075
+ .ui.grid > .row > [class*="nine wide computer"].column,
18076
+ .ui.grid > .column.row > [class*="nine wide computer"].column,
18077
+ .ui.grid > [class*="nine wide computer"].column,
18078
+ .ui.column.grid > [class*="nine wide computer"].column {
18079
+ width: 56.25% !important;
18080
+ }
18081
+
18082
+ .ui.grid > .row > [class*="ten wide computer"].column,
18083
+ .ui.grid > .column.row > [class*="ten wide computer"].column,
18084
+ .ui.grid > [class*="ten wide computer"].column,
18085
+ .ui.column.grid > [class*="ten wide computer"].column {
18086
+ width: 62.5% !important;
18087
+ }
18088
+
18089
+ .ui.grid > .row > [class*="eleven wide computer"].column,
18090
+ .ui.grid > .column.row > [class*="eleven wide computer"].column,
18091
+ .ui.grid > [class*="eleven wide computer"].column,
18092
+ .ui.column.grid > [class*="eleven wide computer"].column {
18093
+ width: 68.75% !important;
18094
+ }
18095
+
18096
+ .ui.grid > .row > [class*="twelve wide computer"].column,
18097
+ .ui.grid > .column.row > [class*="twelve wide computer"].column,
18098
+ .ui.grid > [class*="twelve wide computer"].column,
18099
+ .ui.column.grid > [class*="twelve wide computer"].column {
18100
+ width: 75% !important;
18101
+ }
18102
+
18103
+ .ui.grid > .row > [class*="thirteen wide computer"].column,
18104
+ .ui.grid > .column.row > [class*="thirteen wide computer"].column,
18105
+ .ui.grid > [class*="thirteen wide computer"].column,
18106
+ .ui.column.grid > [class*="thirteen wide computer"].column {
18107
+ width: 81.25% !important;
18108
+ }
18109
+
18110
+ .ui.grid > .row > [class*="fourteen wide computer"].column,
18111
+ .ui.grid > .column.row > [class*="fourteen wide computer"].column,
18112
+ .ui.grid > [class*="fourteen wide computer"].column,
18113
+ .ui.column.grid > [class*="fourteen wide computer"].column {
18114
+ width: 87.5% !important;
18115
+ }
18116
+
18117
+ .ui.grid > .row > [class*="fifteen wide computer"].column,
18118
+ .ui.grid > .column.row > [class*="fifteen wide computer"].column,
18119
+ .ui.grid > [class*="fifteen wide computer"].column,
18120
+ .ui.column.grid > [class*="fifteen wide computer"].column {
18121
+ width: 93.75% !important;
18122
+ }
18123
+
18124
+ .ui.grid > .row > [class*="sixteen wide computer"].column,
18125
+ .ui.grid > .column.row > [class*="sixteen wide computer"].column,
18126
+ .ui.grid > [class*="sixteen wide computer"].column,
18127
+ .ui.column.grid > [class*="sixteen wide computer"].column {
18128
+ width: 100% !important;
18129
+ }
18130
+ }
18131
+
18132
+ /* Large Monitor Sizing Combinations */
18133
+
18134
+ @media only screen and (min-width: 1200px) and (max-width: 1919px) {
18135
+ .ui.grid > .row > [class*="one wide large screen"].column,
18136
+ .ui.grid > .column.row > [class*="one wide large screen"].column,
18137
+ .ui.grid > [class*="one wide large screen"].column,
18138
+ .ui.column.grid > [class*="one wide large screen"].column {
18139
+ width: 6.25% !important;
18140
+ }
18141
+
18142
+ .ui.grid > .row > [class*="two wide large screen"].column,
18143
+ .ui.grid > .column.row > [class*="two wide large screen"].column,
18144
+ .ui.grid > [class*="two wide large screen"].column,
18145
+ .ui.column.grid > [class*="two wide large screen"].column {
18146
+ width: 12.5% !important;
18147
+ }
18148
+
18149
+ .ui.grid > .row > [class*="three wide large screen"].column,
18150
+ .ui.grid > .column.row > [class*="three wide large screen"].column,
18151
+ .ui.grid > [class*="three wide large screen"].column,
18152
+ .ui.column.grid > [class*="three wide large screen"].column {
18153
+ width: 18.75% !important;
18154
+ }
18155
+
18156
+ .ui.grid > .row > [class*="four wide large screen"].column,
18157
+ .ui.grid > .column.row > [class*="four wide large screen"].column,
18158
+ .ui.grid > [class*="four wide large screen"].column,
18159
+ .ui.column.grid > [class*="four wide large screen"].column {
18160
+ width: 25% !important;
18161
+ }
18162
+
18163
+ .ui.grid > .row > [class*="five wide large screen"].column,
18164
+ .ui.grid > .column.row > [class*="five wide large screen"].column,
18165
+ .ui.grid > [class*="five wide large screen"].column,
18166
+ .ui.column.grid > [class*="five wide large screen"].column {
18167
+ width: 31.25% !important;
18168
+ }
18169
+
18170
+ .ui.grid > .row > [class*="six wide large screen"].column,
18171
+ .ui.grid > .column.row > [class*="six wide large screen"].column,
18172
+ .ui.grid > [class*="six wide large screen"].column,
18173
+ .ui.column.grid > [class*="six wide large screen"].column {
18174
+ width: 37.5% !important;
18175
+ }
18176
+
18177
+ .ui.grid > .row > [class*="seven wide large screen"].column,
18178
+ .ui.grid > .column.row > [class*="seven wide large screen"].column,
18179
+ .ui.grid > [class*="seven wide large screen"].column,
18180
+ .ui.column.grid > [class*="seven wide large screen"].column {
18181
+ width: 43.75% !important;
18182
+ }
18183
+
18184
+ .ui.grid > .row > [class*="eight wide large screen"].column,
18185
+ .ui.grid > .column.row > [class*="eight wide large screen"].column,
18186
+ .ui.grid > [class*="eight wide large screen"].column,
18187
+ .ui.column.grid > [class*="eight wide large screen"].column {
18188
+ width: 50% !important;
18189
+ }
18190
+
18191
+ .ui.grid > .row > [class*="nine wide large screen"].column,
18192
+ .ui.grid > .column.row > [class*="nine wide large screen"].column,
18193
+ .ui.grid > [class*="nine wide large screen"].column,
18194
+ .ui.column.grid > [class*="nine wide large screen"].column {
18195
+ width: 56.25% !important;
18196
+ }
18197
+
18198
+ .ui.grid > .row > [class*="ten wide large screen"].column,
18199
+ .ui.grid > .column.row > [class*="ten wide large screen"].column,
18200
+ .ui.grid > [class*="ten wide large screen"].column,
18201
+ .ui.column.grid > [class*="ten wide large screen"].column {
18202
+ width: 62.5% !important;
18203
+ }
18204
+
18205
+ .ui.grid > .row > [class*="eleven wide large screen"].column,
18206
+ .ui.grid > .column.row > [class*="eleven wide large screen"].column,
18207
+ .ui.grid > [class*="eleven wide large screen"].column,
18208
+ .ui.column.grid > [class*="eleven wide large screen"].column {
18209
+ width: 68.75% !important;
18210
+ }
18211
+
18212
+ .ui.grid > .row > [class*="twelve wide large screen"].column,
18213
+ .ui.grid > .column.row > [class*="twelve wide large screen"].column,
18214
+ .ui.grid > [class*="twelve wide large screen"].column,
18215
+ .ui.column.grid > [class*="twelve wide large screen"].column {
18216
+ width: 75% !important;
18217
+ }
18218
+
18219
+ .ui.grid > .row > [class*="thirteen wide large screen"].column,
18220
+ .ui.grid > .column.row > [class*="thirteen wide large screen"].column,
18221
+ .ui.grid > [class*="thirteen wide large screen"].column,
18222
+ .ui.column.grid > [class*="thirteen wide large screen"].column {
18223
+ width: 81.25% !important;
18224
+ }
18225
+
18226
+ .ui.grid > .row > [class*="fourteen wide large screen"].column,
18227
+ .ui.grid > .column.row > [class*="fourteen wide large screen"].column,
18228
+ .ui.grid > [class*="fourteen wide large screen"].column,
18229
+ .ui.column.grid > [class*="fourteen wide large screen"].column {
18230
+ width: 87.5% !important;
18231
+ }
18232
+
18233
+ .ui.grid > .row > [class*="fifteen wide large screen"].column,
18234
+ .ui.grid > .column.row > [class*="fifteen wide large screen"].column,
18235
+ .ui.grid > [class*="fifteen wide large screen"].column,
18236
+ .ui.column.grid > [class*="fifteen wide large screen"].column {
18237
+ width: 93.75% !important;
18238
+ }
18239
+
18240
+ .ui.grid > .row > [class*="sixteen wide large screen"].column,
18241
+ .ui.grid > .column.row > [class*="sixteen wide large screen"].column,
18242
+ .ui.grid > [class*="sixteen wide large screen"].column,
18243
+ .ui.column.grid > [class*="sixteen wide large screen"].column {
18244
+ width: 100% !important;
18245
+ }
18246
+ }
18247
+
18248
+ /* Widescreen Sizing Combinations */
18249
+
18250
+ @media only screen and (min-width: 1920px) {
18251
+ .ui.grid > .row > [class*="one wide widescreen"].column,
18252
+ .ui.grid > .column.row > [class*="one wide widescreen"].column,
18253
+ .ui.grid > [class*="one wide widescreen"].column,
18254
+ .ui.column.grid > [class*="one wide widescreen"].column {
18255
+ width: 6.25% !important;
18256
+ }
18257
+
18258
+ .ui.grid > .row > [class*="two wide widescreen"].column,
18259
+ .ui.grid > .column.row > [class*="two wide widescreen"].column,
18260
+ .ui.grid > [class*="two wide widescreen"].column,
18261
+ .ui.column.grid > [class*="two wide widescreen"].column {
18262
+ width: 12.5% !important;
18263
+ }
18264
+
18265
+ .ui.grid > .row > [class*="three wide widescreen"].column,
18266
+ .ui.grid > .column.row > [class*="three wide widescreen"].column,
18267
+ .ui.grid > [class*="three wide widescreen"].column,
18268
+ .ui.column.grid > [class*="three wide widescreen"].column {
18269
+ width: 18.75% !important;
18270
+ }
18271
+
18272
+ .ui.grid > .row > [class*="four wide widescreen"].column,
18273
+ .ui.grid > .column.row > [class*="four wide widescreen"].column,
18274
+ .ui.grid > [class*="four wide widescreen"].column,
18275
+ .ui.column.grid > [class*="four wide widescreen"].column {
18276
+ width: 25% !important;
18277
+ }
18278
+
18279
+ .ui.grid > .row > [class*="five wide widescreen"].column,
18280
+ .ui.grid > .column.row > [class*="five wide widescreen"].column,
18281
+ .ui.grid > [class*="five wide widescreen"].column,
18282
+ .ui.column.grid > [class*="five wide widescreen"].column {
18283
+ width: 31.25% !important;
18284
+ }
18285
+
18286
+ .ui.grid > .row > [class*="six wide widescreen"].column,
18287
+ .ui.grid > .column.row > [class*="six wide widescreen"].column,
18288
+ .ui.grid > [class*="six wide widescreen"].column,
18289
+ .ui.column.grid > [class*="six wide widescreen"].column {
18290
+ width: 37.5% !important;
18291
+ }
18292
+
18293
+ .ui.grid > .row > [class*="seven wide widescreen"].column,
18294
+ .ui.grid > .column.row > [class*="seven wide widescreen"].column,
18295
+ .ui.grid > [class*="seven wide widescreen"].column,
18296
+ .ui.column.grid > [class*="seven wide widescreen"].column {
18297
+ width: 43.75% !important;
18298
+ }
18299
+
18300
+ .ui.grid > .row > [class*="eight wide widescreen"].column,
18301
+ .ui.grid > .column.row > [class*="eight wide widescreen"].column,
18302
+ .ui.grid > [class*="eight wide widescreen"].column,
18303
+ .ui.column.grid > [class*="eight wide widescreen"].column {
18304
+ width: 50% !important;
18305
+ }
18306
+
18307
+ .ui.grid > .row > [class*="nine wide widescreen"].column,
18308
+ .ui.grid > .column.row > [class*="nine wide widescreen"].column,
18309
+ .ui.grid > [class*="nine wide widescreen"].column,
18310
+ .ui.column.grid > [class*="nine wide widescreen"].column {
18311
+ width: 56.25% !important;
18312
+ }
18313
+
18314
+ .ui.grid > .row > [class*="ten wide widescreen"].column,
18315
+ .ui.grid > .column.row > [class*="ten wide widescreen"].column,
18316
+ .ui.grid > [class*="ten wide widescreen"].column,
18317
+ .ui.column.grid > [class*="ten wide widescreen"].column {
18318
+ width: 62.5% !important;
18319
+ }
18320
+
18321
+ .ui.grid > .row > [class*="eleven wide widescreen"].column,
18322
+ .ui.grid > .column.row > [class*="eleven wide widescreen"].column,
18323
+ .ui.grid > [class*="eleven wide widescreen"].column,
18324
+ .ui.column.grid > [class*="eleven wide widescreen"].column {
18325
+ width: 68.75% !important;
18326
+ }
18327
+
18328
+ .ui.grid > .row > [class*="twelve wide widescreen"].column,
18329
+ .ui.grid > .column.row > [class*="twelve wide widescreen"].column,
18330
+ .ui.grid > [class*="twelve wide widescreen"].column,
18331
+ .ui.column.grid > [class*="twelve wide widescreen"].column {
18332
+ width: 75% !important;
18333
+ }
18334
+
18335
+ .ui.grid > .row > [class*="thirteen wide widescreen"].column,
18336
+ .ui.grid > .column.row > [class*="thirteen wide widescreen"].column,
18337
+ .ui.grid > [class*="thirteen wide widescreen"].column,
18338
+ .ui.column.grid > [class*="thirteen wide widescreen"].column {
18339
+ width: 81.25% !important;
18340
+ }
18341
+
18342
+ .ui.grid > .row > [class*="fourteen wide widescreen"].column,
18343
+ .ui.grid > .column.row > [class*="fourteen wide widescreen"].column,
18344
+ .ui.grid > [class*="fourteen wide widescreen"].column,
18345
+ .ui.column.grid > [class*="fourteen wide widescreen"].column {
18346
+ width: 87.5% !important;
18347
+ }
18348
+
18349
+ .ui.grid > .row > [class*="fifteen wide widescreen"].column,
18350
+ .ui.grid > .column.row > [class*="fifteen wide widescreen"].column,
18351
+ .ui.grid > [class*="fifteen wide widescreen"].column,
18352
+ .ui.column.grid > [class*="fifteen wide widescreen"].column {
18353
+ width: 93.75% !important;
18354
+ }
18355
+
18356
+ .ui.grid > .row > [class*="sixteen wide widescreen"].column,
18357
+ .ui.grid > .column.row > [class*="sixteen wide widescreen"].column,
18358
+ .ui.grid > [class*="sixteen wide widescreen"].column,
18359
+ .ui.column.grid > [class*="sixteen wide widescreen"].column {
18360
+ width: 100% !important;
18361
+ }
18362
+ }
18363
+
18364
+ /*----------------------
18365
+ Centered
18366
+ -----------------------*/
18367
+
18368
+ .ui.centered.grid,
18369
+ .ui.centered.grid > .row,
18370
+ .ui.grid > .centered.row {
18371
+ text-align: center;
18372
+ -webkit-box-pack: center;
18373
+ -webkit-justify-content: center;
18374
+ -ms-flex-pack: center;
18375
+ justify-content: center;
18376
+ }
18377
+
18378
+ .ui.centered.grid > .column:not(.aligned):not(.row),
18379
+ .ui.centered.grid > .row > .column:not(.aligned),
18380
+ .ui.grid .centered.row > .column:not(.aligned) {
18381
+ text-align: left;
18382
+ }
18383
+
18384
+ .ui.grid > .centered.column,
18385
+ .ui.grid > .row > .centered.column {
18386
+ display: block;
18387
+ margin-left: auto;
18388
+ margin-right: auto;
18389
+ }
18390
+
18391
+ /*----------------------
18392
+ Relaxed
18393
+ -----------------------*/
18394
+
18395
+ .ui.relaxed.grid > .column:not(.row),
18396
+ .ui.relaxed.grid > .row > .column,
18397
+ .ui.grid > .relaxed.row > .column {
18398
+ padding-left: 1.5rem;
18399
+ padding-right: 1.5rem;
18400
+ }
18401
+
18402
+ .ui[class*="very relaxed"].grid > .column:not(.row),
18403
+ .ui[class*="very relaxed"].grid > .row > .column,
18404
+ .ui.grid > [class*="very relaxed"].row > .column {
18405
+ padding-left: 2.5rem;
18406
+ padding-right: 2.5rem;
18407
+ }
18408
+
18409
+ /* Coupling with UI Divider */
18410
+
18411
+ .ui.relaxed.grid .row + .ui.divider,
18412
+ .ui.grid .relaxed.row + .ui.divider {
18413
+ margin-left: 1.5rem;
18414
+ margin-right: 1.5rem;
18415
+ }
18416
+
18417
+ .ui[class*="very relaxed"].grid .row + .ui.divider,
18418
+ .ui.grid [class*="very relaxed"].row + .ui.divider {
18419
+ margin-left: 2.5rem;
18420
+ margin-right: 2.5rem;
18421
+ }
18422
+
18423
+ /*----------------------
18424
+ Padded
18425
+ -----------------------*/
18426
+
18427
+ .ui.padded.grid:not(.vertically):not(.horizontally) {
18428
+ margin: 0em !important;
18429
+ }
18430
+
18431
+ [class*="horizontally padded"].ui.grid {
18432
+ margin-left: 0em !important;
18433
+ margin-right: 0em !important;
18434
+ }
18435
+
18436
+ [class*="vertically padded"].ui.grid {
18437
+ margin-top: 0em !important;
18438
+ margin-bottom: 0em !important;
18439
+ }
18440
+
18441
+ /*----------------------
18442
+ "Floated"
18443
+ -----------------------*/
18444
+
18445
+ .ui.grid [class*="left floated"].column {
18446
+ margin-right: auto;
18447
+ }
18448
+
18449
+ .ui.grid [class*="right floated"].column {
18450
+ margin-left: auto;
18451
+ }
18452
+
18453
+ /*----------------------
18454
+ Divided
18455
+ -----------------------*/
18456
+
18457
+ .ui.divided.grid:not([class*="vertically divided"]) > .column:not(.row),
18458
+ .ui.divided.grid:not([class*="vertically divided"]) > .row > .column {
18459
+ box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15);
18460
+ }
18461
+
18462
+ /* Swap from padding to margin on columns to have dividers align */
18463
+
18464
+ .ui[class*="vertically divided"].grid > .column:not(.row),
18465
+ .ui[class*="vertically divided"].grid > .row > .column {
18466
+ margin-top: 1rem;
18467
+ margin-bottom: 1rem;
18468
+ padding-top: 0rem;
18469
+ padding-bottom: 0rem;
18470
+ }
18471
+
18472
+ .ui[class*="vertically divided"].grid > .row {
18473
+ margin-top: 0em;
18474
+ margin-bottom: 0em;
18475
+ }
18476
+
18477
+ /* No divider on first column on row */
18478
+
18479
+ .ui.divided.grid:not([class*="vertically divided"]) > .column:first-child,
18480
+ .ui.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
18481
+ box-shadow: none;
18482
+ }
18483
+
18484
+ /* Divided Row */
18485
+
18486
+ .ui.grid > .divided.row > .column {
18487
+ box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15);
18488
+ }
18489
+
18490
+ .ui.grid > .divided.row > .column:first-child {
18491
+ box-shadow: none;
18492
+ }
18493
+
18494
+ /* Vertically Divided */
18495
+
18496
+ .ui[class*="vertically divided"].grid > .row {
18497
+ position: relative;
18498
+ }
18499
+
18500
+ .ui[class*="vertically divided"].grid > .row:before {
18501
+ position: absolute;
18502
+ content: "";
18503
+ top: 0em;
18504
+ left: 0px;
18505
+ width: calc(100% - 2rem );
18506
+ height: 1px;
18507
+ margin: 0% 1rem;
18508
+ box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15);
18509
+ }
18510
+
18511
+ /* Padded Horizontally Divided */
18512
+
18513
+ [class*="horizontally padded"].ui.divided.grid,
18514
+ .ui.padded.divided.grid:not(.vertically):not(.horizontally) {
18515
+ width: 100%;
18516
+ }
18517
+
18518
+ /* First Row Vertically Divided */
18519
+
18520
+ .ui[class*="vertically divided"].grid > .row:first-child:before {
18521
+ box-shadow: none;
18522
+ }
18523
+
18524
+ /* Inverted Divided */
18525
+
18526
+ .ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row),
18527
+ .ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column {
18528
+ box-shadow: -1px 0px 0px 0px rgba(255, 255, 255, 0.1);
18529
+ }
18530
+
18531
+ .ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row):first-child,
18532
+ .ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
18533
+ box-shadow: none;
18534
+ }
18535
+
18536
+ .ui.inverted[class*="vertically divided"].grid > .row:before {
18537
+ box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.1);
18538
+ }
18539
+
18540
+ /* Relaxed */
18541
+
18542
+ .ui.relaxed[class*="vertically divided"].grid > .row:before {
18543
+ margin-left: 1.5rem;
18544
+ margin-right: 1.5rem;
18545
+ width: calc(100% - 3rem );
18546
+ }
18547
+
18548
+ .ui[class*="very relaxed"][class*="vertically divided"].grid > .row:before {
18549
+ margin-left: 5rem;
18550
+ margin-right: 5rem;
18551
+ width: calc(100% - 5rem );
18552
+ }
18553
+
18554
+ /*----------------------
18555
+ Celled
18556
+ -----------------------*/
18557
+
18558
+ .ui.celled.grid {
18559
+ width: 100%;
18560
+ margin: 1em 0em;
18561
+ box-shadow: 0px 0px 0px 1px #d4d4d5;
18562
+ }
18563
+
18564
+ .ui.celled.grid > .row {
18565
+ width: 100% !important;
18566
+ margin: 0em;
18567
+ padding: 0em;
18568
+ box-shadow: 0px -1px 0px 0px #d4d4d5;
18569
+ }
18570
+
18571
+ .ui.celled.grid > .column:not(.row),
18572
+ .ui.celled.grid > .row > .column {
18573
+ box-shadow: -1px 0px 0px 0px #d4d4d5;
18574
+ }
18575
+
18576
+ .ui.celled.grid > .column:first-child,
18577
+ .ui.celled.grid > .row > .column:first-child {
18578
+ box-shadow: none;
18579
+ }
18580
+
18581
+ .ui.celled.grid > .column:not(.row),
18582
+ .ui.celled.grid > .row > .column {
18583
+ padding: 1em;
18584
+ }
18585
+
18586
+ .ui.relaxed.celled.grid > .column:not(.row),
18587
+ .ui.relaxed.celled.grid > .row > .column {
18588
+ padding: 1.5em;
18589
+ }
18590
+
18591
+ .ui[class*="very relaxed"].celled.grid > .column:not(.row),
18592
+ .ui[class*="very relaxed"].celled.grid > .row > .column {
18593
+ padding: 2em;
18594
+ }
18595
+
18596
+ /* Internally Celled */
18597
+
18598
+ .ui[class*="internally celled"].grid {
18599
+ box-shadow: none;
18600
+ margin: 0em;
18601
+ }
18602
+
18603
+ .ui[class*="internally celled"].grid > .row:first-child {
18604
+ box-shadow: none;
18605
+ }
18606
+
18607
+ .ui[class*="internally celled"].grid > .row > .column:first-child {
18608
+ box-shadow: none;
18609
+ }
18610
+
18611
+ /*----------------------
18612
+ Vertically Aligned
18613
+ -----------------------*/
18614
+
18615
+ /* Top Aligned */
18616
+
18617
+ .ui[class*="top aligned"].grid > .column:not(.row),
18618
+ .ui[class*="top aligned"].grid > .row > .column,
18619
+ .ui.grid > [class*="top aligned"].row > .column,
18620
+ .ui.grid > [class*="top aligned"].column:not(.row),
18621
+ .ui.grid > .row > [class*="top aligned"].column {
18622
+ -webkit-box-orient: vertical;
18623
+ -webkit-box-direction: normal;
18624
+ -webkit-flex-direction: column;
18625
+ -ms-flex-direction: column;
18626
+ flex-direction: column;
18627
+ vertical-align: top;
18628
+ -webkit-align-self: flex-start !important;
18629
+ -ms-flex-item-align: start !important;
18630
+ align-self: flex-start !important;
18631
+ }
18632
+
18633
+ /* Middle Aligned */
18634
+
18635
+ .ui[class*="middle aligned"].grid > .column:not(.row),
18636
+ .ui[class*="middle aligned"].grid > .row > .column,
18637
+ .ui.grid > [class*="middle aligned"].row > .column,
18638
+ .ui.grid > [class*="middle aligned"].column:not(.row),
18639
+ .ui.grid > .row > [class*="middle aligned"].column {
18640
+ -webkit-box-orient: vertical;
18641
+ -webkit-box-direction: normal;
18642
+ -webkit-flex-direction: column;
18643
+ -ms-flex-direction: column;
18644
+ flex-direction: column;
18645
+ vertical-align: middle;
18646
+ -webkit-align-self: center !important;
18647
+ -ms-flex-item-align: center !important;
18648
+ align-self: center !important;
18649
+ }
18650
+
18651
+ /* Bottom Aligned */
18652
+
18653
+ .ui[class*="bottom aligned"].grid > .column:not(.row),
18654
+ .ui[class*="bottom aligned"].grid > .row > .column,
18655
+ .ui.grid > [class*="bottom aligned"].row > .column,
18656
+ .ui.grid > [class*="bottom aligned"].column:not(.row),
18657
+ .ui.grid > .row > [class*="bottom aligned"].column {
18658
+ -webkit-box-orient: vertical;
18659
+ -webkit-box-direction: normal;
18660
+ -webkit-flex-direction: column;
18661
+ -ms-flex-direction: column;
18662
+ flex-direction: column;
18663
+ vertical-align: bottom;
18664
+ -webkit-align-self: flex-end !important;
18665
+ -ms-flex-item-align: end !important;
18666
+ align-self: flex-end !important;
18667
+ }
18668
+
18669
+ /* Stretched */
18670
+
18671
+ .ui.stretched.grid > .row > .column,
18672
+ .ui.stretched.grid > .column,
18673
+ .ui.grid > .stretched.row > .column,
18674
+ .ui.grid > .stretched.column:not(.row),
18675
+ .ui.grid > .row > .stretched.column {
18676
+ display: -webkit-inline-box !important;
18677
+ display: -webkit-inline-flex !important;
18678
+ display: -ms-inline-flexbox !important;
18679
+ display: inline-flex !important;
18680
+ -webkit-align-self: stretch;
18681
+ -ms-flex-item-align: stretch;
18682
+ align-self: stretch;
18683
+ -webkit-box-orient: vertical;
18684
+ -webkit-box-direction: normal;
18685
+ -webkit-flex-direction: column;
18686
+ -ms-flex-direction: column;
18687
+ flex-direction: column;
18688
+ }
18689
+
18690
+ .ui.stretched.grid > .row > .column > *,
18691
+ .ui.stretched.grid > .column > *,
18692
+ .ui.grid > .stretched.row > .column > *,
18693
+ .ui.grid > .stretched.column:not(.row) > *,
18694
+ .ui.grid > .row > .stretched.column > * {
18695
+ -webkit-box-flex: 1;
18696
+ -webkit-flex-grow: 1;
18697
+ -ms-flex-positive: 1;
18698
+ flex-grow: 1;
18699
+ }
18700
+
18701
+ /*----------------------
18702
+ Horizontally Centered
18703
+ -----------------------*/
18704
+
18705
+ /* Left Aligned */
18706
+
18707
+ .ui[class*="left aligned"].grid > .column,
18708
+ .ui[class*="left aligned"].grid > .row > .column,
18709
+ .ui.grid > [class*="left aligned"].row > .column,
18710
+ .ui.grid > [class*="left aligned"].column.column,
18711
+ .ui.grid > .row > [class*="left aligned"].column {
18712
+ text-align: left;
18713
+ -webkit-align-self: inherit;
18714
+ -ms-flex-item-align: inherit;
18715
+ align-self: inherit;
18716
+ }
18717
+
18718
+ /* Center Aligned */
18719
+
18720
+ .ui[class*="center aligned"].grid > .column,
18721
+ .ui[class*="center aligned"].grid > .row > .column,
18722
+ .ui.grid > [class*="center aligned"].row > .column,
18723
+ .ui.grid > [class*="center aligned"].column.column,
18724
+ .ui.grid > .row > [class*="center aligned"].column {
18725
+ text-align: center;
18726
+ -webkit-align-self: inherit;
18727
+ -ms-flex-item-align: inherit;
18728
+ align-self: inherit;
18729
+ }
18730
+
18731
+ .ui[class*="center aligned"].grid {
18732
+ -webkit-box-pack: center;
18733
+ -webkit-justify-content: center;
18734
+ -ms-flex-pack: center;
18735
+ justify-content: center;
18736
+ }
18737
+
18738
+ /* Right Aligned */
18739
+
18740
+ .ui[class*="right aligned"].grid > .column,
18741
+ .ui[class*="right aligned"].grid > .row > .column,
18742
+ .ui.grid > [class*="right aligned"].row > .column,
18743
+ .ui.grid > [class*="right aligned"].column.column,
18744
+ .ui.grid > .row > [class*="right aligned"].column {
18745
+ text-align: right;
18746
+ -webkit-align-self: inherit;
18747
+ -ms-flex-item-align: inherit;
18748
+ align-self: inherit;
18749
+ }
18750
+
18751
+ /* Justified */
18752
+
18753
+ .ui.justified.grid > .column,
18754
+ .ui.justified.grid > .row > .column,
18755
+ .ui.grid > .justified.row > .column,
18756
+ .ui.grid > .justified.column.column,
18757
+ .ui.grid > .row > .justified.column {
18758
+ text-align: justify;
18759
+ -webkit-hyphens: auto;
18760
+ -moz-hyphens: auto;
18761
+ -ms-hyphens: auto;
18762
+ hyphens: auto;
18763
+ }
18764
+
18765
+ /*----------------------
18766
+ Colored
18767
+ -----------------------*/
18768
+
18769
+ .ui.grid > .row > .red.column,
18770
+ .ui.grid > .row > .orange.column,
18771
+ .ui.grid > .row > .yellow.column,
18772
+ .ui.grid > .row > .olive.column,
18773
+ .ui.grid > .row > .green.column,
18774
+ .ui.grid > .row > .teal.column,
18775
+ .ui.grid > .row > .blue.column,
18776
+ .ui.grid > .row > .violet.column,
18777
+ .ui.grid > .row > .purple.column,
18778
+ .ui.grid > .row > .pink.column,
18779
+ .ui.grid > .row > .brown.column,
18780
+ .ui.grid > .row > .grey.column,
18781
+ .ui.grid > .row > .black.column {
18782
+ margin-top: -1rem;
18783
+ margin-bottom: -1rem;
18784
+ padding-top: 1rem;
18785
+ padding-bottom: 1rem;
18786
+ }
18787
+
18788
+ /* Red */
18789
+
18790
+ .ui.grid > .red.row,
18791
+ .ui.grid > .red.column,
18792
+ .ui.grid > .row > .red.column {
18793
+ background-color: #db2828 !important;
18794
+ color: #ffffff;
18795
+ }
18796
+
18797
+ /* Orange */
18798
+
18799
+ .ui.grid > .orange.row,
18800
+ .ui.grid > .orange.column,
18801
+ .ui.grid > .row > .orange.column {
18802
+ background-color: #f2711c !important;
18803
+ color: #ffffff;
18804
+ }
18805
+
18806
+ /* Yellow */
18807
+
18808
+ .ui.grid > .yellow.row,
18809
+ .ui.grid > .yellow.column,
18810
+ .ui.grid > .row > .yellow.column {
18811
+ background-color: #fbbd08 !important;
18812
+ color: #ffffff;
18813
+ }
18814
+
18815
+ /* Olive */
18816
+
18817
+ .ui.grid > .olive.row,
18818
+ .ui.grid > .olive.column,
18819
+ .ui.grid > .row > .olive.column {
18820
+ background-color: #b5cc18 !important;
18821
+ color: #ffffff;
18822
+ }
18823
+
18824
+ /* Green */
18825
+
18826
+ .ui.grid > .green.row,
18827
+ .ui.grid > .green.column,
18828
+ .ui.grid > .row > .green.column {
18829
+ background-color: #21ba45 !important;
18830
+ color: #ffffff;
18831
+ }
18832
+
18833
+ /* Teal */
18834
+
18835
+ .ui.grid > .teal.row,
18836
+ .ui.grid > .teal.column,
18837
+ .ui.grid > .row > .teal.column {
18838
+ background-color: #00b5ad !important;
18839
+ color: #ffffff;
18840
+ }
18841
+
18842
+ /* Blue */
18843
+
18844
+ .ui.grid > .blue.row,
18845
+ .ui.grid > .blue.column,
18846
+ .ui.grid > .row > .blue.column {
18847
+ background-color: #2185d0 !important;
18848
+ color: #ffffff;
18849
+ }
18850
+
18851
+ /* Violet */
18852
+
18853
+ .ui.grid > .violet.row,
18854
+ .ui.grid > .violet.column,
18855
+ .ui.grid > .row > .violet.column {
18856
+ background-color: #6435c9 !important;
18857
+ color: #ffffff;
18858
+ }
18859
+
18860
+ /* Purple */
18861
+
18862
+ .ui.grid > .purple.row,
18863
+ .ui.grid > .purple.column,
18864
+ .ui.grid > .row > .purple.column {
18865
+ background-color: #a333c8 !important;
18866
+ color: #ffffff;
18867
+ }
18868
+
18869
+ /* Pink */
18870
+
18871
+ .ui.grid > .pink.row,
18872
+ .ui.grid > .pink.column,
18873
+ .ui.grid > .row > .pink.column {
18874
+ background-color: #e03997 !important;
18875
+ color: #ffffff;
18876
+ }
18877
+
18878
+ /* Brown */
18879
+
18880
+ .ui.grid > .brown.row,
18881
+ .ui.grid > .brown.column,
18882
+ .ui.grid > .row > .brown.column {
18883
+ background-color: #a5673f !important;
18884
+ color: #ffffff;
18885
+ }
18886
+
18887
+ /* Grey */
18888
+
18889
+ .ui.grid > .grey.row,
18890
+ .ui.grid > .grey.column,
18891
+ .ui.grid > .row > .grey.column {
18892
+ background-color: #767676 !important;
18893
+ color: #ffffff;
18894
+ }
18895
+
18896
+ /* Black */
18897
+
18898
+ .ui.grid > .black.row,
18899
+ .ui.grid > .black.column,
18900
+ .ui.grid > .row > .black.column {
18901
+ background-color: #1b1c1d !important;
18902
+ color: #ffffff;
18903
+ }
18904
+
18905
+ /*----------------------
18906
+ Equal Width
18907
+ -----------------------*/
18908
+
18909
+ .ui[class*="equal width"].grid > .column:not(.row),
18910
+ .ui[class*="equal width"].grid > .row > .column,
18911
+ .ui.grid > [class*="equal width"].row > .column {
18912
+ display: inline-block;
18913
+ -webkit-box-flex: 1;
18914
+ -webkit-flex-grow: 1;
18915
+ -ms-flex-positive: 1;
18916
+ flex-grow: 1;
18917
+ }
18918
+
18919
+ .ui[class*="equal width"].grid > .wide.column,
18920
+ .ui[class*="equal width"].grid > .row > .wide.column,
18921
+ .ui.grid > [class*="equal width"].row > .wide.column {
18922
+ -webkit-box-flex: 0;
18923
+ -webkit-flex-grow: 0;
18924
+ -ms-flex-positive: 0;
18925
+ flex-grow: 0;
18926
+ }
18927
+
18928
+ /*----------------------
18929
+ Reverse
18930
+ -----------------------*/
18931
+
18932
+ /* Mobile */
18933
+
18934
+ @media only screen and (max-width: 767px) {
18935
+ .ui[class*="mobile reversed"].grid,
18936
+ .ui[class*="mobile reversed"].grid > .row,
18937
+ .ui.grid > [class*="mobile reversed"].row {
18938
+ -webkit-box-orient: horizontal;
18939
+ -webkit-box-direction: reverse;
18940
+ -webkit-flex-direction: row-reverse;
18941
+ -ms-flex-direction: row-reverse;
18942
+ flex-direction: row-reverse;
18943
+ }
18944
+
18945
+ .ui[class*="mobile vertically reversed"].grid,
18946
+ .ui.stackable[class*="mobile reversed"] {
18947
+ -webkit-box-orient: vertical;
18948
+ -webkit-box-direction: reverse;
18949
+ -webkit-flex-direction: column-reverse;
18950
+ -ms-flex-direction: column-reverse;
18951
+ flex-direction: column-reverse;
18952
+ }
18953
+
18954
+ /* Divided Reversed */
18955
+
18956
+ .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child,
18957
+ .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
18958
+ box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15);
18959
+ }
18960
+
18961
+ .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child,
18962
+ .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child {
18963
+ box-shadow: none;
18964
+ }
18965
+
18966
+ /* Vertically Divided Reversed */
18967
+
18968
+ .ui.grid[class*="vertically divided"][class*="mobile vertically reversed"] > .row:first-child:before {
18969
+ box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15);
18970
+ }
18971
+
18972
+ .ui.grid[class*="vertically divided"][class*="mobile vertically reversed"] > .row:last-child:before {
18973
+ box-shadow: none;
18974
+ }
18975
+
18976
+ /* Celled Reversed */
18977
+
18978
+ .ui[class*="mobile reversed"].celled.grid > .row > .column:first-child {
18979
+ box-shadow: -1px 0px 0px 0px #d4d4d5;
18980
+ }
18981
+
18982
+ .ui[class*="mobile reversed"].celled.grid > .row > .column:last-child {
18983
+ box-shadow: none;
18984
+ }
18985
+ }
18986
+
18987
+ /* Tablet */
18988
+
18989
+ @media only screen and (min-width: 768px) and (max-width: 991px) {
18990
+ .ui[class*="tablet reversed"].grid,
18991
+ .ui[class*="tablet reversed"].grid > .row,
18992
+ .ui.grid > [class*="tablet reversed"].row {
18993
+ -webkit-box-orient: horizontal;
18994
+ -webkit-box-direction: reverse;
18995
+ -webkit-flex-direction: row-reverse;
18996
+ -ms-flex-direction: row-reverse;
18997
+ flex-direction: row-reverse;
18998
+ }
18999
+
19000
+ .ui[class*="tablet vertically reversed"].grid {
19001
+ -webkit-box-orient: vertical;
19002
+ -webkit-box-direction: reverse;
19003
+ -webkit-flex-direction: column-reverse;
19004
+ -ms-flex-direction: column-reverse;
19005
+ flex-direction: column-reverse;
19006
+ }
19007
+
19008
+ /* Divided Reversed */
19009
+
19010
+ .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child,
19011
+ .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
19012
+ box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15);
19013
+ }
19014
+
19015
+ .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child,
19016
+ .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child {
19017
+ box-shadow: none;
19018
+ }
19019
+
19020
+ /* Vertically Divided Reversed */
19021
+
19022
+ .ui.grid[class*="vertically divided"][class*="tablet vertically reversed"] > .row:first-child:before {
19023
+ box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15);
19024
+ }
19025
+
19026
+ .ui.grid[class*="vertically divided"][class*="tablet vertically reversed"] > .row:last-child:before {
19027
+ box-shadow: none;
19028
+ }
19029
+
19030
+ /* Celled Reversed */
19031
+
19032
+ .ui[class*="tablet reversed"].celled.grid > .row > .column:first-child {
19033
+ box-shadow: -1px 0px 0px 0px #d4d4d5;
19034
+ }
19035
+
19036
+ .ui[class*="tablet reversed"].celled.grid > .row > .column:last-child {
19037
+ box-shadow: none;
19038
+ }
19039
+ }
19040
+
19041
+ /* Computer */
19042
+
19043
+ @media only screen and (min-width: 992px) {
19044
+ .ui[class*="computer reversed"].grid,
19045
+ .ui[class*="computer reversed"].grid > .row,
19046
+ .ui.grid > [class*="computer reversed"].row {
19047
+ -webkit-box-orient: horizontal;
19048
+ -webkit-box-direction: reverse;
19049
+ -webkit-flex-direction: row-reverse;
19050
+ -ms-flex-direction: row-reverse;
19051
+ flex-direction: row-reverse;
19052
+ }
19053
+
19054
+ .ui[class*="computer vertically reversed"].grid {
19055
+ -webkit-box-orient: vertical;
19056
+ -webkit-box-direction: reverse;
19057
+ -webkit-flex-direction: column-reverse;
19058
+ -ms-flex-direction: column-reverse;
19059
+ flex-direction: column-reverse;
19060
+ }
19061
+
19062
+ /* Divided Reversed */
19063
+
19064
+ .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child,
19065
+ .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
19066
+ box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15);
19067
+ }
19068
+
19069
+ .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child,
19070
+ .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child {
19071
+ box-shadow: none;
19072
+ }
19073
+
19074
+ /* Vertically Divided Reversed */
19075
+
19076
+ .ui.grid[class*="vertically divided"][class*="computer vertically reversed"] > .row:first-child:before {
19077
+ box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15);
19078
+ }
19079
+
19080
+ .ui.grid[class*="vertically divided"][class*="computer vertically reversed"] > .row:last-child:before {
19081
+ box-shadow: none;
19082
+ }
19083
+
19084
+ /* Celled Reversed */
19085
+
19086
+ .ui[class*="computer reversed"].celled.grid > .row > .column:first-child {
19087
+ box-shadow: -1px 0px 0px 0px #d4d4d5;
19088
+ }
19089
+
19090
+ .ui[class*="computer reversed"].celled.grid > .row > .column:last-child {
19091
+ box-shadow: none;
19092
+ }
19093
+ }
19094
+
19095
+ /*-------------------
19096
+ Doubling
19097
+ --------------------*/
19098
+
19099
+ /* Tablet Only */
19100
+
19101
+ @media only screen and (min-width: 768px) and (max-width: 991px) {
19102
+ .ui.doubling.grid {
19103
+ width: auto;
19104
+ }
19105
+
19106
+ .ui.grid > .doubling.row,
19107
+ .ui.doubling.grid > .row {
19108
+ margin: 0em !important;
19109
+ padding: 0em !important;
19110
+ }
19111
+
19112
+ .ui.grid > .doubling.row > .column,
19113
+ .ui.doubling.grid > .row > .column {
19114
+ display: inline-block !important;
19115
+ padding-top: 1rem !important;
19116
+ padding-bottom: 1rem !important;
19117
+ box-shadow: none !important;
19118
+ margin: 0em;
19119
+ }
19120
+
19121
+ .ui[class*="two column"].doubling.grid > .row > .column,
19122
+ .ui[class*="two column"].doubling.grid > .column:not(.row),
19123
+ .ui.grid > [class*="two column"].doubling.row.row > .column {
19124
+ width: 100% !important;
19125
+ }
19126
+
19127
+ .ui[class*="three column"].doubling.grid > .row > .column,
19128
+ .ui[class*="three column"].doubling.grid > .column:not(.row),
19129
+ .ui.grid > [class*="three column"].doubling.row.row > .column {
19130
+ width: 50% !important;
19131
+ }
19132
+
19133
+ .ui[class*="four column"].doubling.grid > .row > .column,
19134
+ .ui[class*="four column"].doubling.grid > .column:not(.row),
19135
+ .ui.grid > [class*="four column"].doubling.row.row > .column {
19136
+ width: 50% !important;
19137
+ }
19138
+
19139
+ .ui[class*="five column"].doubling.grid > .row > .column,
19140
+ .ui[class*="five column"].doubling.grid > .column:not(.row),
19141
+ .ui.grid > [class*="five column"].doubling.row.row > .column {
19142
+ width: 33.33333333% !important;
19143
+ }
19144
+
19145
+ .ui[class*="six column"].doubling.grid > .row > .column,
19146
+ .ui[class*="six column"].doubling.grid > .column:not(.row),
19147
+ .ui.grid > [class*="six column"].doubling.row.row > .column {
19148
+ width: 33.33333333% !important;
19149
+ }
19150
+
19151
+ .ui[class*="seven column"].doubling.grid > .row > .column,
19152
+ .ui[class*="seven column"].doubling.grid > .column:not(.row),
19153
+ .ui.grid > [class*="seven column"].doubling.row.row > .column {
19154
+ width: 33.33333333% !important;
19155
+ }
19156
+
19157
+ .ui[class*="eight column"].doubling.grid > .row > .column,
19158
+ .ui[class*="eight column"].doubling.grid > .column:not(.row),
19159
+ .ui.grid > [class*="eight column"].doubling.row.row > .column {
19160
+ width: 25% !important;
19161
+ }
19162
+
19163
+ .ui[class*="nine column"].doubling.grid > .row > .column,
19164
+ .ui[class*="nine column"].doubling.grid > .column:not(.row),
19165
+ .ui.grid > [class*="nine column"].doubling.row.row > .column {
19166
+ width: 25% !important;
19167
+ }
19168
+
19169
+ .ui[class*="ten column"].doubling.grid > .row > .column,
19170
+ .ui[class*="ten column"].doubling.grid > .column:not(.row),
19171
+ .ui.grid > [class*="ten column"].doubling.row.row > .column {
19172
+ width: 20% !important;
19173
+ }
19174
+
19175
+ .ui[class*="eleven column"].doubling.grid > .row > .column,
19176
+ .ui[class*="eleven column"].doubling.grid > .column:not(.row),
19177
+ .ui.grid > [class*="eleven column"].doubling.row.row > .column {
19178
+ width: 20% !important;
19179
+ }
19180
+
19181
+ .ui[class*="twelve column"].doubling.grid > .row > .column,
19182
+ .ui[class*="twelve column"].doubling.grid > .column:not(.row),
19183
+ .ui.grid > [class*="twelve column"].doubling.row.row > .column {
19184
+ width: 16.66666667% !important;
19185
+ }
19186
+
19187
+ .ui[class*="thirteen column"].doubling.grid > .row > .column,
19188
+ .ui[class*="thirteen column"].doubling.grid > .column:not(.row),
19189
+ .ui.grid > [class*="thirteen column"].doubling.row.row > .column {
19190
+ width: 16.66666667% !important;
19191
+ }
19192
+
19193
+ .ui[class*="fourteen column"].doubling.grid > .row > .column,
19194
+ .ui[class*="fourteen column"].doubling.grid > .column:not(.row),
19195
+ .ui.grid > [class*="fourteen column"].doubling.row.row > .column {
19196
+ width: 14.28571429% !important;
19197
+ }
19198
+
19199
+ .ui[class*="fifteen column"].doubling.grid > .row > .column,
19200
+ .ui[class*="fifteen column"].doubling.grid > .column:not(.row),
19201
+ .ui.grid > [class*="fifteen column"].doubling.row.row > .column {
19202
+ width: 14.28571429% !important;
19203
+ }
19204
+
19205
+ .ui[class*="sixteen column"].doubling.grid > .row > .column,
19206
+ .ui[class*="sixteen column"].doubling.grid > .column:not(.row),
19207
+ .ui.grid > [class*="sixteen column"].doubling.row.row > .column {
19208
+ width: 12.5% !important;
19209
+ }
19210
+ }
19211
+
19212
+ /* Mobily Only */
19213
+
19214
+ @media only screen and (max-width: 767px) {
19215
+ .ui.grid > .doubling.row,
19216
+ .ui.doubling.grid > .row {
19217
+ margin: 0em !important;
19218
+ padding: 0em !important;
19219
+ }
19220
+
19221
+ .ui.grid > .doubling.row > .column,
19222
+ .ui.doubling.grid > .row > .column {
19223
+ padding-top: 1rem !important;
19224
+ padding-bottom: 1rem !important;
19225
+ margin: 0em !important;
19226
+ box-shadow: none !important;
19227
+ }
19228
+
19229
+ .ui[class*="two column"].doubling:not(.stackable).grid > .row > .column,
19230
+ .ui[class*="two column"].doubling:not(.stackable).grid > .column:not(.row),
19231
+ .ui.grid > [class*="two column"].doubling:not(.stackable).row.row > .column {
19232
+ width: 100% !important;
19233
+ }
19234
+
19235
+ .ui[class*="three column"].doubling:not(.stackable).grid > .row > .column,
19236
+ .ui[class*="three column"].doubling:not(.stackable).grid > .column:not(.row),
19237
+ .ui.grid > [class*="three column"].doubling:not(.stackable).row.row > .column {
19238
+ width: 50% !important;
19239
+ }
19240
+
19241
+ .ui[class*="four column"].doubling:not(.stackable).grid > .row > .column,
19242
+ .ui[class*="four column"].doubling:not(.stackable).grid > .column:not(.row),
19243
+ .ui.grid > [class*="four column"].doubling:not(.stackable).row.row > .column {
19244
+ width: 50% !important;
19245
+ }
19246
+
19247
+ .ui[class*="five column"].doubling:not(.stackable).grid > .row > .column,
19248
+ .ui[class*="five column"].doubling:not(.stackable).grid > .column:not(.row),
19249
+ .ui.grid > [class*="five column"].doubling:not(.stackable).row.row > .column {
19250
+ width: 50% !important;
19251
+ }
19252
+
19253
+ .ui[class*="six column"].doubling:not(.stackable).grid > .row > .column,
19254
+ .ui[class*="six column"].doubling:not(.stackable).grid > .column:not(.row),
19255
+ .ui.grid > [class*="six column"].doubling:not(.stackable).row.row > .column {
19256
+ width: 50% !important;
19257
+ }
19258
+
19259
+ .ui[class*="seven column"].doubling:not(.stackable).grid > .row > .column,
19260
+ .ui[class*="seven column"].doubling:not(.stackable).grid > .column:not(.row),
19261
+ .ui.grid > [class*="seven column"].doubling:not(.stackable).row.row > .column {
19262
+ width: 50% !important;
19263
+ }
19264
+
19265
+ .ui[class*="eight column"].doubling:not(.stackable).grid > .row > .column,
19266
+ .ui[class*="eight column"].doubling:not(.stackable).grid > .column:not(.row),
19267
+ .ui.grid > [class*="eight column"].doubling:not(.stackable).row.row > .column {
19268
+ width: 50% !important;
19269
+ }
19270
+
19271
+ .ui[class*="nine column"].doubling:not(.stackable).grid > .row > .column,
19272
+ .ui[class*="nine column"].doubling:not(.stackable).grid > .column:not(.row),
19273
+ .ui.grid > [class*="nine column"].doubling:not(.stackable).row.row > .column {
19274
+ width: 33.33333333% !important;
19275
+ }
19276
+
19277
+ .ui[class*="ten column"].doubling:not(.stackable).grid > .row > .column,
19278
+ .ui[class*="ten column"].doubling:not(.stackable).grid > .column:not(.row),
19279
+ .ui.grid > [class*="ten column"].doubling:not(.stackable).row.row > .column {
19280
+ width: 33.33333333% !important;
19281
+ }
19282
+
19283
+ .ui[class*="eleven column"].doubling:not(.stackable).grid > .row > .column,
19284
+ .ui[class*="eleven column"].doubling:not(.stackable).grid > .column:not(.row),
19285
+ .ui.grid > [class*="eleven column"].doubling:not(.stackable).row.row > .column {
19286
+ width: 33.33333333% !important;
19287
+ }
19288
+
19289
+ .ui[class*="twelve column"].doubling:not(.stackable).grid > .row > .column,
19290
+ .ui[class*="twelve column"].doubling:not(.stackable).grid > .column:not(.row),
19291
+ .ui.grid > [class*="twelve column"].doubling:not(.stackable).row.row > .column {
19292
+ width: 33.33333333% !important;
19293
+ }
19294
+
19295
+ .ui[class*="thirteen column"].doubling:not(.stackable).grid > .row > .column,
19296
+ .ui[class*="thirteen column"].doubling:not(.stackable).grid > .column:not(.row),
19297
+ .ui.grid > [class*="thirteen column"].doubling:not(.stackable).row.row > .column {
19298
+ width: 33.33333333% !important;
19299
+ }
19300
+
19301
+ .ui[class*="fourteen column"].doubling:not(.stackable).grid > .row > .column,
19302
+ .ui[class*="fourteen column"].doubling:not(.stackable).grid > .column:not(.row),
19303
+ .ui.grid > [class*="fourteen column"].doubling:not(.stackable).row.row > .column {
19304
+ width: 25% !important;
19305
+ }
19306
+
19307
+ .ui[class*="fifteen column"].doubling:not(.stackable).grid > .row > .column,
19308
+ .ui[class*="fifteen column"].doubling:not(.stackable).grid > .column:not(.row),
19309
+ .ui.grid > [class*="fifteen column"].doubling:not(.stackable).row.row > .column {
19310
+ width: 25% !important;
19311
+ }
19312
+
19313
+ .ui[class*="sixteen column"].doubling:not(.stackable).grid > .row > .column,
19314
+ .ui[class*="sixteen column"].doubling:not(.stackable).grid > .column:not(.row),
19315
+ .ui.grid > [class*="sixteen column"].doubling:not(.stackable).row.row > .column {
19316
+ width: 25% !important;
19317
+ }
19318
+ }
19319
+
19320
+ /*-------------------
19321
+ Stackable
19322
+ --------------------*/
19323
+
19324
+ @media only screen and (max-width: 767px) {
19325
+ .ui.stackable.grid {
19326
+ width: auto;
19327
+ margin-left: 0em !important;
19328
+ margin-right: 0em !important;
19329
+ }
19330
+
19331
+ .ui.stackable.grid > .row > .wide.column,
19332
+ .ui.stackable.grid > .wide.column,
19333
+ .ui.stackable.grid > .column.grid > .column,
19334
+ .ui.stackable.grid > .column.row > .column,
19335
+ .ui.stackable.grid > .row > .column,
19336
+ .ui.stackable.grid > .column:not(.row),
19337
+ .ui.grid > .stackable.stackable.row > .column {
19338
+ width: 100% !important;
19339
+ margin: 0em 0em !important;
19340
+ box-shadow: none !important;
19341
+ padding: 1rem 1rem !important;
19342
+ }
19343
+
19344
+ .ui.stackable.grid:not(.vertically) > .row {
19345
+ margin: 0em;
19346
+ padding: 0em;
19347
+ }
19348
+
19349
+ /* Coupling */
19350
+
19351
+ .ui.container > .ui.stackable.grid > .column,
19352
+ .ui.container > .ui.stackable.grid > .row > .column {
19353
+ padding-left: 0em !important;
19354
+ padding-right: 0em !important;
19355
+ }
19356
+
19357
+ /* Don't pad inside segment or nested grid */
19358
+
19359
+ .ui.grid .ui.stackable.grid,
19360
+ .ui.segment:not(.vertical) .ui.stackable.page.grid {
19361
+ margin-left: -1rem !important;
19362
+ margin-right: -1rem !important;
19363
+ }
19364
+
19365
+ /* Divided Stackable */
19366
+
19367
+ .ui.stackable.divided.grid > .row:first-child > .column:first-child,
19368
+ .ui.stackable.celled.grid > .row:first-child > .column:first-child,
19369
+ .ui.stackable.divided.grid > .column:not(.row):first-child,
19370
+ .ui.stackable.celled.grid > .column:not(.row):first-child {
19371
+ border-top: none !important;
19372
+ }
19373
+
19374
+ .ui.inverted.stackable.celled.grid > .column:not(.row),
19375
+ .ui.inverted.stackable.divided.grid > .column:not(.row),
19376
+ .ui.inverted.stackable.celled.grid > .row > .column,
19377
+ .ui.inverted.stackable.divided.grid > .row > .column {
19378
+ border-top: 1px solid rgba(255, 255, 255, 0.1);
19379
+ }
19380
+
19381
+ .ui.stackable.celled.grid > .column:not(.row),
19382
+ .ui.stackable.divided:not(.vertically).grid > .column:not(.row),
19383
+ .ui.stackable.celled.grid > .row > .column,
19384
+ .ui.stackable.divided:not(.vertically).grid > .row > .column {
19385
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
19386
+ box-shadow: none !important;
19387
+ padding-top: 2rem !important;
19388
+ padding-bottom: 2rem !important;
19389
+ }
19390
+
19391
+ .ui.stackable.celled.grid > .row {
19392
+ box-shadow: none !important;
19393
+ }
19394
+
19395
+ .ui.stackable.divided:not(.vertically).grid > .column:not(.row),
19396
+ .ui.stackable.divided:not(.vertically).grid > .row > .column {
19397
+ padding-left: 0em !important;
19398
+ padding-right: 0em !important;
19399
+ }
19400
+ }
19401
+
19402
+ /*----------------------
19403
+ Only (Device)
19404
+ -----------------------*/
19405
+
19406
+ /* These include arbitrary class repetitions for forced specificity */
19407
+
19408
+ /* Mobile Only Hide */
19409
+
19410
+ @media only screen and (max-width: 767px) {
19411
+ .ui[class*="tablet only"].grid.grid.grid:not(.mobile),
19412
+ .ui.grid.grid.grid > [class*="tablet only"].row:not(.mobile),
19413
+ .ui.grid.grid.grid > [class*="tablet only"].column:not(.mobile),
19414
+ .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.mobile) {
19415
+ display: none !important;
19416
+ }
19417
+
19418
+ .ui[class*="computer only"].grid.grid.grid:not(.mobile),
19419
+ .ui.grid.grid.grid > [class*="computer only"].row:not(.mobile),
19420
+ .ui.grid.grid.grid > [class*="computer only"].column:not(.mobile),
19421
+ .ui.grid.grid.grid > .row > [class*="computer only"].column:not(.mobile) {
19422
+ display: none !important;
19423
+ }
19424
+
19425
+ .ui[class*="large screen only"].grid.grid.grid:not(.mobile),
19426
+ .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile),
19427
+ .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile),
19428
+ .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) {
19429
+ display: none !important;
19430
+ }
19431
+
19432
+ .ui[class*="widescreen only"].grid.grid.grid:not(.mobile),
19433
+ .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile),
19434
+ .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile),
19435
+ .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) {
19436
+ display: none !important;
19437
+ }
19438
+ }
19439
+
19440
+ /* Tablet Only Hide */
19441
+
19442
+ @media only screen and (min-width: 768px) and (max-width: 991px) {
19443
+ .ui[class*="mobile only"].grid.grid.grid:not(.tablet),
19444
+ .ui.grid.grid.grid > [class*="mobile only"].row:not(.tablet),
19445
+ .ui.grid.grid.grid > [class*="mobile only"].column:not(.tablet),
19446
+ .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.tablet) {
19447
+ display: none !important;
19448
+ }
19449
+
19450
+ .ui[class*="computer only"].grid.grid.grid:not(.tablet),
19451
+ .ui.grid.grid.grid > [class*="computer only"].row:not(.tablet),
19452
+ .ui.grid.grid.grid > [class*="computer only"].column:not(.tablet),
19453
+ .ui.grid.grid.grid > .row > [class*="computer only"].column:not(.tablet) {
19454
+ display: none !important;
19455
+ }
19456
+
19457
+ .ui[class*="large screen only"].grid.grid.grid:not(.mobile),
19458
+ .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile),
19459
+ .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile),
19460
+ .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) {
19461
+ display: none !important;
19462
+ }
19463
+
19464
+ .ui[class*="widescreen only"].grid.grid.grid:not(.mobile),
19465
+ .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile),
19466
+ .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile),
19467
+ .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) {
19468
+ display: none !important;
19469
+ }
19470
+ }
19471
+
19472
+ /* Computer Only Hide */
19473
+
19474
+ @media only screen and (min-width: 992px) and (max-width: 1199px) {
19475
+ .ui[class*="mobile only"].grid.grid.grid:not(.computer),
19476
+ .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer),
19477
+ .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer),
19478
+ .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) {
19479
+ display: none !important;
19480
+ }
19481
+
19482
+ .ui[class*="tablet only"].grid.grid.grid:not(.computer),
19483
+ .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer),
19484
+ .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer),
19485
+ .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) {
19486
+ display: none !important;
19487
+ }
19488
+
19489
+ .ui[class*="large screen only"].grid.grid.grid:not(.mobile),
19490
+ .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile),
19491
+ .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile),
19492
+ .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) {
19493
+ display: none !important;
19494
+ }
19495
+
19496
+ .ui[class*="widescreen only"].grid.grid.grid:not(.mobile),
19497
+ .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile),
19498
+ .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile),
19499
+ .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) {
19500
+ display: none !important;
19501
+ }
19502
+ }
19503
+
19504
+ /* Large Screen Only Hide */
19505
+
19506
+ @media only screen and (min-width: 1200px) and (max-width: 1919px) {
19507
+ .ui[class*="mobile only"].grid.grid.grid:not(.computer),
19508
+ .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer),
19509
+ .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer),
19510
+ .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) {
19511
+ display: none !important;
19512
+ }
19513
+
19514
+ .ui[class*="tablet only"].grid.grid.grid:not(.computer),
19515
+ .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer),
19516
+ .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer),
19517
+ .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) {
19518
+ display: none !important;
19519
+ }
19520
+
19521
+ .ui[class*="widescreen only"].grid.grid.grid:not(.mobile),
19522
+ .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile),
19523
+ .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile),
19524
+ .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) {
19525
+ display: none !important;
19526
+ }
19527
+ }
19528
+
19529
+ /* Widescreen Only Hide */
19530
+
19531
+ @media only screen and (min-width: 1920px) {
19532
+ .ui[class*="mobile only"].grid.grid.grid:not(.computer),
19533
+ .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer),
19534
+ .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer),
19535
+ .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) {
19536
+ display: none !important;
19537
+ }
19538
+
19539
+ .ui[class*="tablet only"].grid.grid.grid:not(.computer),
19540
+ .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer),
19541
+ .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer),
19542
+ .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) {
19543
+ display: none !important;
19544
+ }
19545
+ }
19546
+
19547
+ /*******************************
19548
+ Theme Overrides
19549
+ *******************************/
19550
+
19551
+ /*******************************
19552
+ Site Overrides
19553
+ *******************************/
19554
+ /*
19555
+ * # Semantic - Menu
19556
+ * http://github.com/semantic-org/semantic-ui/
19557
+ *
19558
+ *
19559
+ * Copyright 2015 Contributor
19560
+ * Released under the MIT license
19561
+ * http://opensource.org/licenses/MIT
19562
+ *
19563
+ */
19564
+
19565
+ /*******************************
19566
+ Standard
19567
+ *******************************/
19568
+
19569
+ /*--------------
19570
+ Menu
19571
+ ---------------*/
19572
+
19573
+ .ui.menu {
19574
+ display: -webkit-box;
19575
+ display: -webkit-flex;
19576
+ display: -ms-flexbox;
19577
+ display: flex;
19578
+ margin: 1rem 0em;
19579
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
19580
+ background: #ffffff;
19581
+ font-weight: normal;
19582
+ border: 1px solid rgba(34, 36, 38, 0.15);
19583
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
19584
+ border-radius: 0.28571429rem;
19585
+ min-height: 2.85714286em;
19586
+ }
19587
+
19588
+ .ui.menu:after {
19589
+ content: '';
19590
+ display: block;
19591
+ height: 0px;
19592
+ clear: both;
19593
+ visibility: hidden;
19594
+ }
19595
+
19596
+ .ui.menu:first-child {
19597
+ margin-top: 0rem;
19598
+ }
19599
+
19600
+ .ui.menu:last-child {
19601
+ margin-bottom: 0rem;
19602
+ }
19603
+
19604
+ /*--------------
19605
+ Sub-Menu
19606
+ ---------------*/
19607
+
19608
+ .ui.menu .menu {
19609
+ margin: 0em;
19610
+ }
19611
+
19612
+ .ui.menu:not(.vertical) > .menu {
19613
+ display: -webkit-box;
19614
+ display: -webkit-flex;
19615
+ display: -ms-flexbox;
19616
+ display: flex;
19617
+ }
19618
+
19619
+ /*--------------
19620
+ Item
19621
+ ---------------*/
19622
+
19623
+ .ui.menu:not(.vertical) .item {
19624
+ display: -webkit-box;
19625
+ display: -webkit-flex;
19626
+ display: -ms-flexbox;
19627
+ display: flex;
19628
+ -webkit-box-align: center;
19629
+ -webkit-align-items: center;
19630
+ -ms-flex-align: center;
19631
+ align-items: center;
19632
+ }
19633
+
19634
+ .ui.menu .item {
19635
+ position: relative;
19636
+ vertical-align: middle;
19637
+ line-height: 1;
19638
+ text-decoration: none;
19639
+ -webkit-tap-highlight-color: transparent;
19640
+ -webkit-box-flex: 0;
19641
+ -webkit-flex: 0 0 auto;
19642
+ -ms-flex: 0 0 auto;
19643
+ flex: 0 0 auto;
19644
+ -webkit-user-select: none;
19645
+ -moz-user-select: none;
19646
+ -ms-user-select: none;
19647
+ user-select: none;
19648
+ background: none;
19649
+ padding: 0.92857143em 1.14285714em;
19650
+ text-transform: none;
19651
+ color: rgba(0, 0, 0, 0.87);
19652
+ font-weight: normal;
19653
+ -webkit-transition: background 0.1s ease, box-shadow 0.1s ease, color 0.1s ease;
19654
+ transition: background 0.1s ease, box-shadow 0.1s ease, color 0.1s ease;
19655
+ }
19656
+
19657
+ .ui.menu > .item:first-child {
19658
+ border-radius: 0.28571429rem 0px 0px 0.28571429rem;
19659
+ }
19660
+
19661
+ /* Border */
19662
+
19663
+ .ui.menu .item:before {
19664
+ position: absolute;
19665
+ content: '';
19666
+ top: 0%;
19667
+ right: 0px;
19668
+ height: 100%;
19669
+ width: 1px;
19670
+ background: rgba(34, 36, 38, 0.1);
19671
+ }
19672
+
19673
+ /*--------------
19674
+ Text Content
19675
+ ---------------*/
19676
+
19677
+ .ui.menu .text.item > *,
19678
+ .ui.menu .item > a:not(.ui),
19679
+ .ui.menu .item > p:only-child {
19680
+ -webkit-user-select: text;
19681
+ -moz-user-select: text;
19682
+ -ms-user-select: text;
19683
+ user-select: text;
19684
+ line-height: 1.3;
19685
+ }
19686
+
19687
+ .ui.menu .item > p:first-child {
19688
+ margin-top: 0;
19689
+ }
19690
+
19691
+ .ui.menu .item > p:last-child {
19692
+ margin-bottom: 0;
19693
+ }
19694
+
19695
+ /*--------------
19696
+ Icons
19697
+ ---------------*/
19698
+
19699
+ .ui.menu .item > i.icon {
19700
+ opacity: 0.9;
19701
+ float: none;
19702
+ margin: 0em 0.35714286em 0em 0em;
19703
+ }
19704
+
19705
+ /*--------------
19706
+ Button
19707
+ ---------------*/
19708
+
19709
+ .ui.menu:not(.vertical) .item > .button {
19710
+ position: relative;
19711
+ top: 0em;
19712
+ margin: -0.5em 0em;
19713
+ padding-bottom: 0.71428571em;
19714
+ padding-top: 0.71428571em;
19715
+ font-size: 1em;
19716
+ }
19717
+
19718
+ /*----------------
19719
+ Grid / Container
19720
+ -----------------*/
19721
+
19722
+ .ui.menu > .grid,
19723
+ .ui.menu > .container {
19724
+ display: -webkit-box;
19725
+ display: -webkit-flex;
19726
+ display: -ms-flexbox;
19727
+ display: flex;
19728
+ -webkit-box-align: inherit;
19729
+ -webkit-align-items: inherit;
19730
+ -ms-flex-align: inherit;
19731
+ align-items: inherit;
19732
+ -webkit-box-orient: vertical;
19733
+ -webkit-box-direction: normal;
19734
+ -webkit-flex-direction: inherit;
19735
+ -ms-flex-direction: inherit;
19736
+ flex-direction: inherit;
19737
+ }
19738
+
19739
+ /*--------------
19740
+ Inputs
19741
+ ---------------*/
19742
+
19743
+ .ui.menu .item > .input {
19744
+ width: 100%;
19745
+ }
19746
+
19747
+ .ui.menu:not(.vertical) .item > .input {
19748
+ position: relative;
19749
+ top: 0em;
19750
+ margin: -0.5em 0em;
19751
+ }
19752
+
19753
+ .ui.menu .item > .input input {
19754
+ font-size: 1em;
19755
+ padding-top: 0.57142857em;
19756
+ padding-bottom: 0.57142857em;
19757
+ }
19758
+
19759
+ /*--------------
19760
+ Header
19761
+ ---------------*/
19762
+
19763
+ .ui.menu .header.item,
19764
+ .ui.vertical.menu .header.item {
19765
+ margin: 0em;
19766
+ background: '';
19767
+ text-transform: normal;
19768
+ font-weight: bold;
19769
+ }
19770
+
19771
+ .ui.vertical.menu .item > .header:not(.ui) {
19772
+ margin: 0em 0em 0.5em;
19773
+ font-size: 1em;
19774
+ font-weight: bold;
19775
+ }
19776
+
19777
+ /*--------------
19778
+ Popup
19779
+ ---------------*/
19780
+
19781
+ .ui.menu .ui.popup {
19782
+ display: none;
19783
+ }
19784
+
19785
+ .ui.menu .ui.visible.popup {
19786
+ display: block;
19787
+ }
19788
+
19789
+ /*--------------
19790
+ Dropdowns
19791
+ ---------------*/
19792
+
19793
+ /* Dropdown Icon */
19794
+
19795
+ .ui.menu .item > i.dropdown.icon {
19796
+ padding: 0em;
19797
+ float: right;
19798
+ margin: 0em 0em 0em 1em;
19799
+ }
19800
+
19801
+ /* Menu */
19802
+
19803
+ .ui.menu .dropdown.item .menu {
19804
+ left: 0px;
19805
+ min-width: calc(100% - 1px);
19806
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
19807
+ background: #ffffff;
19808
+ margin: 0em 0px 0px;
19809
+ box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
19810
+ -webkit-box-orient: vertical !important;
19811
+ -webkit-box-direction: normal !important;
19812
+ -webkit-flex-direction: column !important;
19813
+ -ms-flex-direction: column !important;
19814
+ flex-direction: column !important;
19815
+ }
19816
+
19817
+ /* Menu Items */
19818
+
19819
+ .ui.menu .ui.dropdown .menu > .item {
19820
+ margin: 0;
19821
+ text-align: left;
19822
+ font-size: 1em !important;
19823
+ padding: 0.71428571em 1.14285714em !important;
19824
+ background: transparent !important;
19825
+ color: rgba(0, 0, 0, 0.87) !important;
19826
+ text-transform: none !important;
19827
+ font-weight: normal !important;
19828
+ box-shadow: none !important;
19829
+ -webkit-transition: none !important;
19830
+ transition: none !important;
19831
+ }
19832
+
19833
+ .ui.menu .ui.dropdown .menu > .item:hover {
19834
+ background: rgba(0, 0, 0, 0.05) !important;
19835
+ color: rgba(0, 0, 0, 0.95) !important;
19836
+ }
19837
+
19838
+ .ui.menu .ui.dropdown .menu > .selected.item {
19839
+ background: rgba(0, 0, 0, 0.05) !important;
19840
+ color: rgba(0, 0, 0, 0.95) !important;
19841
+ }
19842
+
19843
+ .ui.menu .ui.dropdown .menu > .active.item {
19844
+ background: rgba(0, 0, 0, 0.03) !important;
19845
+ font-weight: bold !important;
19846
+ color: rgba(0, 0, 0, 0.95) !important;
19847
+ }
19848
+
19849
+ .ui.menu .ui.dropdown.item .menu .item:not(.filtered) {
19850
+ display: block;
19851
+ }
19852
+
19853
+ .ui.menu .ui.dropdown .menu > .item .icon:not(.dropdown) {
19854
+ display: inline-block;
19855
+ font-size: 1em !important;
19856
+ float: none;
19857
+ margin: 0em 0.75em 0em 0em;
19858
+ }
19859
+
19860
+ /* Secondary */
19861
+
19862
+ .ui.secondary.menu .dropdown.item > .menu,
19863
+ .ui.text.menu .dropdown.item > .menu {
19864
+ border-radius: 0.28571429rem;
19865
+ margin-top: 0.35714286em;
19866
+ }
19867
+
19868
+ /* Pointing */
19869
+
19870
+ .ui.menu .pointing.dropdown.item .menu {
19871
+ margin-top: 0.75em;
19872
+ }
19873
+
19874
+ /* Inverted */
19875
+
19876
+ .ui.inverted.menu .search.dropdown.item > .search,
19877
+ .ui.inverted.menu .search.dropdown.item > .text {
19878
+ color: rgba(255, 255, 255, 0.9);
19879
+ }
19880
+
19881
+ /* Vertical */
19882
+
19883
+ .ui.vertical.menu .dropdown.item > .icon {
19884
+ float: right;
19885
+ content: "\f0da";
19886
+ margin-left: 1em;
19887
+ }
19888
+
19889
+ .ui.vertical.menu .dropdown.item .menu {
19890
+ top: 0% !important;
19891
+ left: 100%;
19892
+ min-width: 0;
19893
+ margin: 0em 0em 0em 0em;
19894
+ box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.08);
19895
+ border-radius: 0em 0.28571429rem 0.28571429rem 0.28571429rem;
19896
+ }
19897
+
19898
+ .ui.vertical.menu .active.dropdown.item {
19899
+ border-top-right-radius: 0em;
19900
+ border-bottom-right-radius: 0em;
19901
+ }
19902
+
19903
+ .ui.vertical.menu .dropdown.active.item {
19904
+ box-shadow: none;
19905
+ }
19906
+
19907
+ /* Evenly Divided */
19908
+
19909
+ .ui.item.menu .dropdown .menu .item {
19910
+ width: 100%;
19911
+ }
19912
+
19913
+ /*--------------
19914
+ Labels
19915
+ ---------------*/
19916
+
19917
+ .ui.menu .item > .label {
19918
+ background: #999999;
19919
+ color: #ffffff;
19920
+ margin-left: 1em;
19921
+ padding: 0.3em 0.71428571em;
19922
+ }
19923
+
19924
+ .ui.vertical.menu .item > .label {
19925
+ background: #999999;
19926
+ color: #ffffff;
19927
+ margin-top: -0.15em;
19928
+ margin-bottom: -0.15em;
19929
+ padding: 0.3em 0.71428571em;
19930
+ }
19931
+
19932
+ .ui.menu .item > .floating.label {
19933
+ padding: 0.3em 0.71428571em;
19934
+ }
19935
+
19936
+ /*--------------
19937
+ Images
19938
+ ---------------*/
19939
+
19940
+ .ui.menu .item > img:not(.ui) {
19941
+ display: inline-block;
19942
+ vertical-align: middle;
19943
+ margin: -0.3em 0em;
19944
+ width: 2.5em;
19945
+ }
19946
+
19947
+ .ui.vertical.menu .item > img:not(.ui):only-child {
19948
+ display: block;
19949
+ max-width: 100%;
19950
+ width: auto;
19951
+ }
19952
+
19953
+ /*******************************
19954
+ Coupling
19955
+ *******************************/
19956
+
19957
+ /*--------------
19958
+ Sidebar
19959
+ ---------------*/
19960
+
19961
+ /* Show vertical dividers below last */
19962
+
19963
+ .ui.vertical.sidebar.menu > .item:first-child:before {
19964
+ display: block !important;
19965
+ }
19966
+
19967
+ .ui.vertical.sidebar.menu > .item::before {
19968
+ top: auto;
19969
+ bottom: 0px;
19970
+ }
19971
+
19972
+ /*--------------
19973
+ Container
19974
+ ---------------*/
19975
+
19976
+ @media only screen and (max-width: 767px) {
19977
+ .ui.menu > .ui.container {
19978
+ width: 100% !important;
19979
+ margin-left: 0em !important;
19980
+ margin-right: 0em !important;
19981
+ }
19982
+ }
19983
+
19984
+ @media only screen and (min-width: 768px) {
19985
+ .ui.menu:not(.secondary):not(.text):not(.tabular):not(.borderless) > .container > .item:not(.right):not(.borderless):first-child {
19986
+ border-left: 1px solid rgba(34, 36, 38, 0.1);
19987
+ }
19988
+ }
19989
+
19990
+ /*******************************
19991
+ States
19992
+ *******************************/
19993
+
19994
+ /*--------------
19995
+ Hover
19996
+ ---------------*/
19997
+
19998
+ .ui.link.menu .item:hover,
19999
+ .ui.menu .dropdown.item:hover,
20000
+ .ui.menu .link.item:hover,
20001
+ .ui.menu a.item:hover {
20002
+ cursor: pointer;
20003
+ background: rgba(0, 0, 0, 0.03);
20004
+ color: rgba(0, 0, 0, 0.95);
20005
+ }
20006
+
20007
+ /*--------------
20008
+ Pressed
20009
+ ---------------*/
20010
+
20011
+ .ui.link.menu .item:active,
20012
+ .ui.menu .link.item:active,
20013
+ .ui.menu a.item:active {
20014
+ background: rgba(0, 0, 0, 0.03);
20015
+ color: rgba(0, 0, 0, 0.95);
20016
+ }
20017
+
20018
+ /*--------------
20019
+ Active
20020
+ ---------------*/
20021
+
20022
+ .ui.menu .active.item {
20023
+ background: rgba(0, 0, 0, 0.05);
20024
+ color: rgba(0, 0, 0, 0.95);
20025
+ font-weight: normal;
20026
+ box-shadow: none;
20027
+ }
20028
+
20029
+ .ui.menu .active.item > i.icon {
20030
+ opacity: 1;
20031
+ }
20032
+
20033
+ /*--------------
20034
+ Active Hover
20035
+ ---------------*/
20036
+
20037
+ .ui.menu .active.item:hover,
20038
+ .ui.vertical.menu .active.item:hover {
20039
+ background-color: rgba(0, 0, 0, 0.05);
20040
+ color: rgba(0, 0, 0, 0.95);
20041
+ }
20042
+
20043
+ /*--------------
20044
+ Disabled
20045
+ ---------------*/
20046
+
20047
+ .ui.menu .item.disabled,
20048
+ .ui.menu .item.disabled:hover {
20049
+ cursor: default;
20050
+ background-color: transparent !important;
20051
+ color: rgba(40, 40, 40, 0.3);
20052
+ }
20053
+
20054
+ /*******************************
20055
+ Types
20056
+ *******************************/
20057
+
20058
+ /*------------------
20059
+ Floated Menu / Item
20060
+ -------------------*/
20061
+
20062
+ /* Left Floated */
20063
+
20064
+ .ui.menu:not(.vertical) .left.item,
20065
+ .ui.menu:not(.vertical) .left.menu {
20066
+ display: -webkit-box;
20067
+ display: -webkit-flex;
20068
+ display: -ms-flexbox;
20069
+ display: flex;
20070
+ margin-right: auto !important;
20071
+ }
20072
+
20073
+ /* Right Floated */
20074
+
20075
+ .ui.menu:not(.vertical) .right.item,
20076
+ .ui.menu:not(.vertical) .right.menu {
20077
+ display: -webkit-box;
20078
+ display: -webkit-flex;
20079
+ display: -ms-flexbox;
20080
+ display: flex;
20081
+ margin-left: auto !important;
20082
+ }
20083
+
20084
+ /* Swapped Borders */
20085
+
20086
+ .ui.menu .right.item::before,
20087
+ .ui.menu .right.menu > .item::before {
20088
+ right: auto;
20089
+ left: 0;
20090
+ }
20091
+
20092
+ /*--------------
20093
+ Vertical
20094
+ ---------------*/
20095
+
20096
+ .ui.vertical.menu {
20097
+ display: block;
20098
+ -webkit-box-orient: vertical;
20099
+ -webkit-box-direction: normal;
20100
+ -webkit-flex-direction: column;
20101
+ -ms-flex-direction: column;
20102
+ flex-direction: column;
20103
+ background: #ffffff;
20104
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
20105
+ }
20106
+
20107
+ /*--- Item ---*/
20108
+
20109
+ .ui.vertical.menu .item {
20110
+ display: block;
20111
+ background: none;
20112
+ border-top: none;
20113
+ border-right: none;
20114
+ }
20115
+
20116
+ .ui.vertical.menu > .item:first-child {
20117
+ border-radius: 0.28571429rem 0.28571429rem 0px 0px;
20118
+ }
20119
+
20120
+ .ui.vertical.menu > .item:last-child {
20121
+ border-radius: 0px 0px 0.28571429rem 0.28571429rem;
20122
+ }
20123
+
20124
+ /*--- Label ---*/
20125
+
20126
+ .ui.vertical.menu .item > .label {
20127
+ float: right;
20128
+ text-align: center;
20129
+ }
20130
+
20131
+ /*--- Icon ---*/
20132
+
20133
+ .ui.vertical.menu .item > i.icon {
20134
+ width: 1.18em;
20135
+ float: right;
20136
+ margin: 0em 0em 0em 0.5em;
20137
+ }
20138
+
20139
+ .ui.vertical.menu .item > .label + i.icon {
20140
+ float: none;
20141
+ margin: 0em 0.5em 0em 0em;
20142
+ }
20143
+
20144
+ /*--- Border ---*/
20145
+
20146
+ .ui.vertical.menu .item:before {
20147
+ position: absolute;
20148
+ content: '';
20149
+ top: 0%;
20150
+ left: 0px;
20151
+ width: 100%;
20152
+ background: rgba(34, 36, 38, 0.1);
20153
+ height: 1px;
20154
+ }
20155
+
20156
+ .ui.vertical.menu .item:first-child:before {
20157
+ display: none !important;
20158
+ }
20159
+
20160
+ /*--- Sub Menu ---*/
20161
+
20162
+ .ui.vertical.menu .item > .menu {
20163
+ margin: 0.5em -1.14285714em 0em;
20164
+ }
20165
+
20166
+ .ui.vertical.menu .menu .item {
20167
+ background: none;
20168
+ padding: 0.5em 1.33333333em;
20169
+ font-size: 0.85714286em;
20170
+ color: rgba(0, 0, 0, 0.5);
20171
+ }
20172
+
20173
+ .ui.vertical.menu .item .menu a.item:hover,
20174
+ .ui.vertical.menu .item .menu .link.item:hover {
20175
+ color: rgba(0, 0, 0, 0.85);
20176
+ }
20177
+
20178
+ .ui.vertical.menu .menu .item:before {
20179
+ display: none;
20180
+ }
20181
+
20182
+ /* Vertical Active */
20183
+
20184
+ .ui.vertical.menu .active.item {
20185
+ background: rgba(0, 0, 0, 0.05);
20186
+ border-radius: 0em;
20187
+ box-shadow: none;
20188
+ }
20189
+
20190
+ .ui.vertical.menu > .active.item:first-child {
20191
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
20192
+ }
20193
+
20194
+ .ui.vertical.menu > .active.item:last-child {
20195
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
20196
+ }
20197
+
20198
+ .ui.vertical.menu > .active.item:only-child {
20199
+ border-radius: 0.28571429rem;
20200
+ }
20201
+
20202
+ .ui.vertical.menu .active.item .menu .active.item {
20203
+ border-left: none;
20204
+ }
20205
+
20206
+ .ui.vertical.menu .item .menu .active.item {
20207
+ background-color: transparent;
20208
+ font-weight: bold;
20209
+ color: rgba(0, 0, 0, 0.95);
20210
+ }
20211
+
20212
+ /*--------------
20213
+ Tabular
20214
+ ---------------*/
20215
+
20216
+ .ui.tabular.menu {
20217
+ border-radius: 0em;
20218
+ box-shadow: none !important;
20219
+ border: none;
20220
+ background: none transparent;
20221
+ border-bottom: 1px solid #d4d4d5;
20222
+ }
20223
+
20224
+ .ui.tabular.fluid.menu {
20225
+ width: calc(100% + 2px ) !important;
20226
+ }
20227
+
20228
+ .ui.tabular.menu .item {
20229
+ background: transparent;
20230
+ border-bottom: none;
20231
+ border-left: 1px solid transparent;
20232
+ border-right: 1px solid transparent;
20233
+ border-top: 2px solid transparent;
20234
+ padding: 0.92857143em 1.42857143em;
20235
+ color: rgba(0, 0, 0, 0.87);
20236
+ }
20237
+
20238
+ .ui.tabular.menu .item:before {
20239
+ display: none;
20240
+ }
20241
+
20242
+ /* Hover */
20243
+
20244
+ .ui.tabular.menu .item:hover {
20245
+ background-color: transparent;
20246
+ color: rgba(0, 0, 0, 0.8);
20247
+ }
20248
+
20249
+ /* Active */
20250
+
20251
+ .ui.tabular.menu .active.item {
20252
+ background: none #ffffff;
20253
+ color: rgba(0, 0, 0, 0.95);
20254
+ border-top-width: 1px;
20255
+ border-color: #d4d4d5;
20256
+ font-weight: bold;
20257
+ margin-bottom: -1px;
20258
+ box-shadow: none;
20259
+ border-radius: 0.28571429rem 0.28571429rem 0px 0px !important;
20260
+ }
20261
+
20262
+ /* Coupling with segment for attachment */
20263
+
20264
+ .ui.tabular.menu + .attached:not(.top).segment,
20265
+ .ui.tabular.menu + .attached:not(.top).segment + .attached:not(.top).segment {
20266
+ border-top: none;
20267
+ margin: 0px;
20268
+ width: 100%;
20269
+ }
20270
+
20271
+ .top.attached.segment + .ui.bottom.tabular.menu {
20272
+ position: relative;
20273
+ width: calc(100% + 2px );
20274
+ left: -1px;
20275
+ }
20276
+
20277
+ /* Bottom Vertical Tabular */
20278
+
20279
+ .ui.bottom.tabular.menu {
20280
+ background: none transparent;
20281
+ border-radius: 0em;
20282
+ box-shadow: none !important;
20283
+ border-bottom: none;
20284
+ border-top: 1px solid #d4d4d5;
20285
+ }
20286
+
20287
+ .ui.bottom.tabular.menu .item {
20288
+ background: none;
20289
+ border-left: 1px solid transparent;
20290
+ border-right: 1px solid transparent;
20291
+ border-bottom: 1px solid transparent;
20292
+ border-top: none;
20293
+ }
20294
+
20295
+ .ui.bottom.tabular.menu .active.item {
20296
+ background: none #ffffff;
20297
+ color: rgba(0, 0, 0, 0.95);
20298
+ border-color: #d4d4d5;
20299
+ margin: -1px 0px 0px 0px;
20300
+ border-radius: 0px 0px 0.28571429rem 0.28571429rem !important;
20301
+ }
20302
+
20303
+ /* Vertical Tabular (Left) */
20304
+
20305
+ .ui.vertical.tabular.menu {
20306
+ background: none transparent;
20307
+ border-radius: 0em;
20308
+ box-shadow: none !important;
20309
+ border-bottom: none;
20310
+ border-right: 1px solid #d4d4d5;
20311
+ }
20312
+
20313
+ .ui.vertical.tabular.menu .item {
20314
+ background: none;
20315
+ border-left: 1px solid transparent;
20316
+ border-bottom: 1px solid transparent;
20317
+ border-top: 1px solid transparent;
20318
+ border-right: none;
20319
+ }
20320
+
20321
+ .ui.vertical.tabular.menu .active.item {
20322
+ background: none #ffffff;
20323
+ color: rgba(0, 0, 0, 0.95);
20324
+ border-color: #d4d4d5;
20325
+ margin: 0px -1px 0px 0px;
20326
+ border-radius: 0.28571429rem 0px 0px 0.28571429rem !important;
20327
+ }
20328
+
20329
+ /* Vertical Right Tabular */
20330
+
20331
+ .ui.vertical.right.tabular.menu {
20332
+ background: none transparent;
20333
+ border-radius: 0em;
20334
+ box-shadow: none !important;
20335
+ border-bottom: none;
20336
+ border-right: none;
20337
+ border-left: 1px solid #d4d4d5;
20338
+ }
20339
+
20340
+ .ui.vertical.right.tabular.menu .item {
20341
+ background: none;
20342
+ border-right: 1px solid transparent;
20343
+ border-bottom: 1px solid transparent;
20344
+ border-top: 1px solid transparent;
20345
+ border-left: none;
20346
+ }
20347
+
20348
+ .ui.vertical.right.tabular.menu .active.item {
20349
+ background: none #ffffff;
20350
+ color: rgba(0, 0, 0, 0.95);
20351
+ border-color: #d4d4d5;
20352
+ margin: 0px 0px 0px -1px;
20353
+ border-radius: 0px 0.28571429rem 0.28571429rem 0px !important;
20354
+ }
20355
+
20356
+ /* Dropdown */
20357
+
20358
+ .ui.tabular.menu .active.dropdown.item {
20359
+ margin-bottom: 0px;
20360
+ border-left: 1px solid transparent;
20361
+ border-right: 1px solid transparent;
20362
+ border-top: 2px solid transparent;
20363
+ border-bottom: none;
20364
+ }
20365
+
20366
+ /*--------------
20367
+ Pagination
20368
+ ---------------*/
20369
+
20370
+ .ui.pagination.menu {
20371
+ margin: 0em;
20372
+ display: -webkit-inline-box;
20373
+ display: -webkit-inline-flex;
20374
+ display: -ms-inline-flexbox;
20375
+ display: inline-flex;
20376
+ vertical-align: middle;
20377
+ }
20378
+
20379
+ .ui.pagination.menu .item:last-child {
20380
+ border-radius: 0em 0.28571429rem 0.28571429rem 0em;
20381
+ }
20382
+
20383
+ .ui.compact.menu .item:last-child {
20384
+ border-radius: 0em 0.28571429rem 0.28571429rem 0em;
20385
+ }
20386
+
20387
+ .ui.pagination.menu .item:last-child:before {
20388
+ display: none;
20389
+ }
20390
+
20391
+ .ui.pagination.menu .item {
20392
+ min-width: 3em;
20393
+ text-align: center;
20394
+ }
20395
+
20396
+ .ui.pagination.menu .icon.item i.icon {
20397
+ vertical-align: top;
20398
+ }
20399
+
20400
+ /* Active */
20401
+
20402
+ .ui.pagination.menu .active.item {
20403
+ border-top: none;
20404
+ padding-top: 0.92857143em;
20405
+ background-color: rgba(0, 0, 0, 0.05);
20406
+ color: rgba(0, 0, 0, 0.95);
20407
+ box-shadow: none;
20408
+ }
20409
+
20410
+ /*--------------
20411
+ Secondary
20412
+ ---------------*/
20413
+
20414
+ .ui.secondary.menu {
20415
+ background: none;
20416
+ margin-left: -0.35714286em;
20417
+ margin-right: -0.35714286em;
20418
+ border-radius: 0em;
20419
+ border: none;
20420
+ box-shadow: none;
20421
+ }
20422
+
20423
+ /* Item */
20424
+
20425
+ .ui.secondary.menu .item {
20426
+ -webkit-align-self: center;
20427
+ -ms-flex-item-align: center;
20428
+ align-self: center;
20429
+ box-shadow: none;
20430
+ border: none;
20431
+ padding: 0.71428571em 0.92857143em;
20432
+ margin: 0em 0.35714286em;
20433
+ background: none;
20434
+ -webkit-transition: color 0.1s ease;
20435
+ transition: color 0.1s ease;
20436
+ border-radius: 0.28571429rem;
20437
+ }
20438
+
20439
+ /* No Divider */
20440
+
20441
+ .ui.secondary.menu .item:before {
20442
+ display: none !important;
20443
+ }
20444
+
20445
+ /* Header */
20446
+
20447
+ .ui.secondary.menu .header.item {
20448
+ border-radius: 0em;
20449
+ border-right: none;
20450
+ background: none transparent;
20451
+ }
20452
+
20453
+ /* Image */
20454
+
20455
+ .ui.secondary.menu .item > img:not(.ui) {
20456
+ margin: 0em;
20457
+ }
20458
+
20459
+ /* Hover */
20460
+
20461
+ .ui.secondary.menu .dropdown.item:hover,
20462
+ .ui.secondary.menu .link.item:hover,
20463
+ .ui.secondary.menu a.item:hover {
20464
+ background: rgba(0, 0, 0, 0.05);
20465
+ color: rgba(0, 0, 0, 0.95);
20466
+ }
20467
+
20468
+ /* Active */
20469
+
20470
+ .ui.secondary.menu .active.item {
20471
+ box-shadow: none;
20472
+ background: rgba(0, 0, 0, 0.05);
20473
+ color: rgba(0, 0, 0, 0.95);
20474
+ border-radius: 0.28571429rem;
20475
+ }
20476
+
20477
+ /* Active Hover */
20478
+
20479
+ .ui.secondary.menu .active.item:hover {
20480
+ box-shadow: none;
20481
+ background: rgba(0, 0, 0, 0.05);
20482
+ color: rgba(0, 0, 0, 0.95);
20483
+ }
20484
+
20485
+ /* Inverted */
20486
+
20487
+ .ui.secondary.inverted.menu .link.item,
20488
+ .ui.secondary.inverted.menu a.item {
20489
+ color: rgba(255, 255, 255, 0.7) !important;
20490
+ }
20491
+
20492
+ .ui.secondary.inverted.menu .dropdown.item:hover,
20493
+ .ui.secondary.inverted.menu .link.item:hover,
20494
+ .ui.secondary.inverted.menu a.item:hover {
20495
+ background: rgba(255, 255, 255, 0.08);
20496
+ color: #ffffff !important;
20497
+ }
20498
+
20499
+ .ui.secondary.inverted.menu .active.item {
20500
+ background: rgba(255, 255, 255, 0.15);
20501
+ color: #ffffff !important;
20502
+ }
20503
+
20504
+ /* Fix item margins */
20505
+
20506
+ .ui.secondary.item.menu {
20507
+ margin-left: 0em;
20508
+ margin-right: 0em;
20509
+ }
20510
+
20511
+ .ui.secondary.item.menu .item:last-child {
20512
+ margin-right: 0em;
20513
+ }
20514
+
20515
+ .ui.secondary.attached.menu {
20516
+ box-shadow: none;
20517
+ }
20518
+
20519
+ /* Sub Menu */
20520
+
20521
+ .ui.vertical.secondary.menu .item:not(.dropdown) > .menu {
20522
+ margin: 0em -0.92857143em;
20523
+ }
20524
+
20525
+ .ui.vertical.secondary.menu .item:not(.dropdown) > .menu > .item {
20526
+ margin: 0em;
20527
+ padding: 0.5em 1.33333333em;
20528
+ }
20529
+
20530
+ /*---------------------
20531
+ Secondary Vertical
20532
+ -----------------------*/
20533
+
20534
+ .ui.secondary.vertical.menu > .item {
20535
+ border: none;
20536
+ margin: 0em 0em 0.35714286em;
20537
+ border-radius: 0.28571429rem !important;
20538
+ }
20539
+
20540
+ .ui.secondary.vertical.menu > .header.item {
20541
+ border-radius: 0em;
20542
+ }
20543
+
20544
+ /* Sub Menu */
20545
+
20546
+ .ui.vertical.secondary.menu .item > .menu .item {
20547
+ background-color: transparent;
20548
+ }
20549
+
20550
+ /* Inverted */
20551
+
20552
+ .ui.secondary.inverted.menu {
20553
+ background-color: transparent;
20554
+ }
20555
+
20556
+ /*---------------------
20557
+ Secondary Pointing
20558
+ -----------------------*/
20559
+
20560
+ .ui.secondary.pointing.menu {
20561
+ margin-left: 0em;
20562
+ margin-right: 0em;
20563
+ border-bottom: 2px solid rgba(34, 36, 38, 0.15);
20564
+ }
20565
+
20566
+ .ui.secondary.pointing.menu .item {
20567
+ border-bottom-color: transparent;
20568
+ border-bottom-style: solid;
20569
+ border-radius: 0em;
20570
+ -webkit-align-self: flex-end;
20571
+ -ms-flex-item-align: end;
20572
+ align-self: flex-end;
20573
+ margin: 0em 0em -2px;
20574
+ padding: 0.85714286em 1.14285714em;
20575
+ border-bottom-width: 2px;
20576
+ -webkit-transition: color 0.1s ease;
20577
+ transition: color 0.1s ease;
20578
+ }
20579
+
20580
+ /* Item Types */
20581
+
20582
+ .ui.secondary.pointing.menu .header.item {
20583
+ color: rgba(0, 0, 0, 0.85) !important;
20584
+ }
20585
+
20586
+ .ui.secondary.pointing.menu .text.item {
20587
+ box-shadow: none !important;
20588
+ }
20589
+
20590
+ .ui.secondary.pointing.menu .item:after {
20591
+ display: none;
20592
+ }
20593
+
20594
+ /* Hover */
20595
+
20596
+ .ui.secondary.pointing.menu .dropdown.item:hover,
20597
+ .ui.secondary.pointing.menu .link.item:hover,
20598
+ .ui.secondary.pointing.menu a.item:hover {
20599
+ background-color: transparent;
20600
+ color: rgba(0, 0, 0, 0.87);
20601
+ }
20602
+
20603
+ /* Pressed */
20604
+
20605
+ .ui.secondary.pointing.menu .dropdown.item:active,
20606
+ .ui.secondary.pointing.menu .link.item:active,
20607
+ .ui.secondary.pointing.menu a.item:active {
20608
+ background-color: transparent;
20609
+ border-color: rgba(34, 36, 38, 0.15);
20610
+ }
20611
+
20612
+ /* Active */
20613
+
20614
+ .ui.secondary.pointing.menu .active.item {
20615
+ background-color: transparent;
20616
+ box-shadow: none;
20617
+ border-color: #1b1c1d;
20618
+ font-weight: bold;
20619
+ color: rgba(0, 0, 0, 0.95);
20620
+ }
20621
+
20622
+ /* Active Hover */
20623
+
20624
+ .ui.secondary.pointing.menu .active.item:hover {
20625
+ border-color: #1b1c1d;
20626
+ color: rgba(0, 0, 0, 0.95);
20627
+ }
20628
+
20629
+ /* Active Dropdown */
20630
+
20631
+ .ui.secondary.pointing.menu .active.dropdown.item {
20632
+ border-color: transparent;
20633
+ }
20634
+
20635
+ /* Vertical Pointing */
20636
+
20637
+ .ui.secondary.vertical.pointing.menu {
20638
+ border-bottom-width: 0px;
20639
+ border-right-width: 2px;
20640
+ border-right-style: solid;
20641
+ border-right-color: rgba(34, 36, 38, 0.15);
20642
+ }
20643
+
20644
+ .ui.secondary.vertical.pointing.menu .item {
20645
+ border-bottom: none;
20646
+ border-right-style: solid;
20647
+ border-right-color: transparent;
20648
+ border-radius: 0em !important;
20649
+ margin: 0em -2px 0em 0em;
20650
+ border-right-width: 2px;
20651
+ }
20652
+
20653
+ /* Vertical Active */
20654
+
20655
+ .ui.secondary.vertical.pointing.menu .active.item {
20656
+ border-color: #1b1c1d;
20657
+ }
20658
+
20659
+ /* Inverted */
20660
+
20661
+ .ui.secondary.inverted.pointing.menu {
20662
+ border-color: rgba(255, 255, 255, 0.1);
20663
+ }
20664
+
20665
+ .ui.secondary.inverted.pointing.menu {
20666
+ border-width: 2px;
20667
+ border-color: rgba(34, 36, 38, 0.15);
20668
+ }
20669
+
20670
+ .ui.secondary.inverted.pointing.menu .item {
20671
+ color: rgba(255, 255, 255, 0.9);
20672
+ }
20673
+
20674
+ .ui.secondary.inverted.pointing.menu .header.item {
20675
+ color: #ffffff !important;
20676
+ }
20677
+
20678
+ /* Hover */
20679
+
20680
+ .ui.secondary.inverted.pointing.menu .item:hover {
20681
+ color: rgba(0, 0, 0, 0.95);
20682
+ }
20683
+
20684
+ /* Active */
20685
+
20686
+ .ui.secondary.inverted.pointing.menu .active.item {
20687
+ border-color: #ffffff;
20688
+ color: #ffffff;
20689
+ }
20690
+
20691
+ /*--------------
20692
+ Text Menu
20693
+ ---------------*/
20694
+
20695
+ .ui.text.menu {
20696
+ background: none transparent;
20697
+ border-radius: 0px;
20698
+ box-shadow: none;
20699
+ border: none;
20700
+ margin: 1em -0.5em;
20701
+ }
20702
+
20703
+ .ui.text.menu .item {
20704
+ border-radius: 0px;
20705
+ box-shadow: none;
20706
+ -webkit-align-self: center;
20707
+ -ms-flex-item-align: center;
20708
+ align-self: center;
20709
+ margin: 0em 0em;
20710
+ padding: 0.35714286em 0.5em;
20711
+ font-weight: normal;
20712
+ color: rgba(0, 0, 0, 0.6);
20713
+ -webkit-transition: opacity 0.1s ease;
20714
+ transition: opacity 0.1s ease;
20715
+ }
20716
+
20717
+ /* Border */
20718
+
20719
+ .ui.text.menu .item:before,
20720
+ .ui.text.menu .menu .item:before {
20721
+ display: none !important;
20722
+ }
20723
+
20724
+ /* Header */
20725
+
20726
+ .ui.text.menu .header.item {
20727
+ background-color: transparent;
20728
+ opacity: 1;
20729
+ color: rgba(0, 0, 0, 0.85);
20730
+ font-size: 0.92857143em;
20731
+ text-transform: uppercase;
20732
+ font-weight: bold;
20733
+ }
20734
+
20735
+ /* Image */
20736
+
20737
+ .ui.text.menu .item > img:not(.ui) {
20738
+ margin: 0em;
20739
+ }
20740
+
20741
+ /*--- fluid text ---*/
20742
+
20743
+ .ui.text.item.menu .item {
20744
+ margin: 0em;
20745
+ }
20746
+
20747
+ /*--- vertical text ---*/
20748
+
20749
+ .ui.vertical.text.menu {
20750
+ margin: 1em 0em;
20751
+ }
20752
+
20753
+ .ui.vertical.text.menu:first-child {
20754
+ margin-top: 0rem;
20755
+ }
20756
+
20757
+ .ui.vertical.text.menu:last-child {
20758
+ margin-bottom: 0rem;
20759
+ }
20760
+
20761
+ .ui.vertical.text.menu .item {
20762
+ margin: 0.57142857em 0em;
20763
+ }
20764
+
20765
+ .ui.vertical.text.menu .item > i.icon {
20766
+ float: none;
20767
+ margin: 0em 0.35714286em 0em 0em;
20768
+ }
20769
+
20770
+ .ui.vertical.text.menu .header.item {
20771
+ margin: 0.57142857em 0em 0.71428571em;
20772
+ }
20773
+
20774
+ /* Vertical Sub Menu */
20775
+
20776
+ .ui.vertical.text.menu .item:not(.dropdown) > .menu {
20777
+ margin: 0em;
20778
+ }
20779
+
20780
+ .ui.vertical.text.menu .item:not(.dropdown) > .menu > .item {
20781
+ margin: 0em;
20782
+ padding: 0.5em 0em;
20783
+ }
20784
+
20785
+ /*--- hover ---*/
20786
+
20787
+ .ui.text.menu .item:hover {
20788
+ opacity: 1;
20789
+ background-color: transparent;
20790
+ }
20791
+
20792
+ /*--- active ---*/
20793
+
20794
+ .ui.text.menu .active.item {
20795
+ background-color: transparent;
20796
+ border: none;
20797
+ box-shadow: none;
20798
+ font-weight: normal;
20799
+ color: rgba(0, 0, 0, 0.95);
20800
+ }
20801
+
20802
+ /*--- active hover ---*/
20803
+
20804
+ .ui.text.menu .active.item:hover {
20805
+ background-color: transparent;
20806
+ }
20807
+
20808
+ /* Disable Bariations */
20809
+
20810
+ .ui.text.pointing.menu .active.item:after {
20811
+ box-shadow: none;
20812
+ }
20813
+
20814
+ .ui.text.attached.menu {
20815
+ box-shadow: none;
20816
+ }
20817
+
20818
+ /* Inverted */
20819
+
20820
+ .ui.inverted.text.menu,
20821
+ .ui.inverted.text.menu .item,
20822
+ .ui.inverted.text.menu .item:hover,
20823
+ .ui.inverted.text.menu .active.item {
20824
+ background-color: transparent !important;
20825
+ }
20826
+
20827
+ /* Fluid */
20828
+
20829
+ .ui.fluid.text.menu {
20830
+ margin-left: 0em;
20831
+ margin-right: 0em;
20832
+ }
20833
+
20834
+ /*--------------
20835
+ Icon Only
20836
+ ---------------*/
20837
+
20838
+ /* Vertical Menu */
20839
+
20840
+ .ui.vertical.icon.menu {
20841
+ display: inline-block;
20842
+ width: auto;
20843
+ }
20844
+
20845
+ /* Item */
20846
+
20847
+ .ui.icon.menu .item {
20848
+ height: auto;
20849
+ text-align: center;
20850
+ color: #1b1c1d;
20851
+ }
20852
+
20853
+ /* Icon */
20854
+
20855
+ .ui.icon.menu .item > .icon:not(.dropdown) {
20856
+ margin: 0;
20857
+ opacity: 1;
20858
+ }
20859
+
20860
+ /* Icon Gylph */
20861
+
20862
+ .ui.icon.menu .icon:before {
20863
+ opacity: 1;
20864
+ }
20865
+
20866
+ /* (x) Item Icon */
20867
+
20868
+ .ui.menu .icon.item > .icon {
20869
+ width: auto;
20870
+ margin: 0em auto;
20871
+ }
20872
+
20873
+ /* Vertical Icon */
20874
+
20875
+ .ui.vertical.icon.menu .item > .icon:not(.dropdown) {
20876
+ display: block;
20877
+ opacity: 1;
20878
+ margin: 0em auto;
20879
+ float: none;
20880
+ }
20881
+
20882
+ /* Inverted */
20883
+
20884
+ .ui.inverted.icon.menu .item {
20885
+ color: #ffffff;
20886
+ }
20887
+
20888
+ /*--------------
20889
+ Labeled Icon
20890
+ ---------------*/
20891
+
20892
+ /* Menu */
20893
+
20894
+ .ui.labeled.icon.menu {
20895
+ text-align: center;
20896
+ }
20897
+
20898
+ /* Item */
20899
+
20900
+ .ui.labeled.icon.menu .item {
20901
+ min-width: 6em;
20902
+ -webkit-box-orient: vertical;
20903
+ -webkit-box-direction: normal;
20904
+ -webkit-flex-direction: column;
20905
+ -ms-flex-direction: column;
20906
+ flex-direction: column;
20907
+ }
20908
+
20909
+ /* Icon */
20910
+
20911
+ .ui.labeled.icon.menu .item > .icon:not(.dropdown) {
20912
+ height: 1em;
20913
+ display: block;
20914
+ font-size: 1.71428571em !important;
20915
+ margin: 0em auto 0.5rem !important;
20916
+ }
20917
+
20918
+ /* Fluid */
20919
+
20920
+ .ui.fluid.labeled.icon.menu > .item {
20921
+ min-width: 0em;
20922
+ }
20923
+
20924
+ /*******************************
20925
+ Variations
20926
+ *******************************/
20927
+
20928
+ /*--------------
20929
+ Stackable
20930
+ ---------------*/
20931
+
20932
+ @media only screen and (max-width: 767px) {
20933
+ .ui.stackable.menu {
20934
+ -webkit-box-orient: vertical;
20935
+ -webkit-box-direction: normal;
20936
+ -webkit-flex-direction: column;
20937
+ -ms-flex-direction: column;
20938
+ flex-direction: column;
20939
+ }
20940
+
20941
+ .ui.stackable.menu .item {
20942
+ width: 100% !important;
20943
+ }
20944
+
20945
+ .ui.stackable.menu .item:before {
20946
+ position: absolute;
20947
+ content: '';
20948
+ top: auto;
20949
+ bottom: 0px;
20950
+ left: 0px;
20951
+ width: 100%;
20952
+ background: rgba(34, 36, 38, 0.1);
20953
+ height: 1px;
20954
+ }
20955
+ }
20956
+
20957
+ /*--------------
20958
+ Colors
20959
+ ---------------*/
20960
+
20961
+ /*--- Standard Colors ---*/
20962
+
20963
+ .ui.menu .red.active.item,
20964
+ .ui.red.menu .active.item {
20965
+ border-color: #db2828 !important;
20966
+ color: #db2828 !important;
20967
+ }
20968
+
20969
+ .ui.menu .orange.active.item,
20970
+ .ui.orange.menu .active.item {
20971
+ border-color: #f2711c !important;
20972
+ color: #f2711c !important;
20973
+ }
20974
+
20975
+ .ui.menu .yellow.active.item,
20976
+ .ui.yellow.menu .active.item {
20977
+ border-color: #fbbd08 !important;
20978
+ color: #fbbd08 !important;
20979
+ }
20980
+
20981
+ .ui.menu .olive.active.item,
20982
+ .ui.olive.menu .active.item {
20983
+ border-color: #b5cc18 !important;
20984
+ color: #b5cc18 !important;
20985
+ }
20986
+
20987
+ .ui.menu .green.active.item,
20988
+ .ui.green.menu .active.item {
20989
+ border-color: #21ba45 !important;
20990
+ color: #21ba45 !important;
20991
+ }
20992
+
20993
+ .ui.menu .teal.active.item,
20994
+ .ui.teal.menu .active.item {
20995
+ border-color: #00b5ad !important;
20996
+ color: #00b5ad !important;
20997
+ }
20998
+
20999
+ .ui.menu .blue.active.item,
21000
+ .ui.blue.menu .active.item {
21001
+ border-color: #2185d0 !important;
21002
+ color: #2185d0 !important;
21003
+ }
21004
+
21005
+ .ui.menu .violet.active.item,
21006
+ .ui.violet.menu .active.item {
21007
+ border-color: #6435c9 !important;
21008
+ color: #6435c9 !important;
21009
+ }
21010
+
21011
+ .ui.menu .purple.active.item,
21012
+ .ui.purple.menu .active.item {
21013
+ border-color: #a333c8 !important;
21014
+ color: #a333c8 !important;
21015
+ }
21016
+
21017
+ .ui.menu .pink.active.item,
21018
+ .ui.pink.menu .active.item {
21019
+ border-color: #e03997 !important;
21020
+ color: #e03997 !important;
21021
+ }
21022
+
21023
+ .ui.menu .brown.active.item,
21024
+ .ui.brown.menu .active.item {
21025
+ border-color: #a5673f !important;
21026
+ color: #a5673f !important;
21027
+ }
21028
+
21029
+ .ui.menu .grey.active.item,
21030
+ .ui.grey.menu .active.item {
21031
+ border-color: #767676 !important;
21032
+ color: #767676 !important;
21033
+ }
21034
+
21035
+ /*--------------
21036
+ Inverted
21037
+ ---------------*/
21038
+
21039
+ .ui.inverted.menu {
21040
+ border: 0px solid transparent;
21041
+ background: #1b1c1d;
21042
+ box-shadow: none;
21043
+ }
21044
+
21045
+ /* Menu Item */
21046
+
21047
+ .ui.inverted.menu .item,
21048
+ .ui.inverted.menu .item > a:not(.ui) {
21049
+ background: transparent;
21050
+ color: rgba(255, 255, 255, 0.9);
21051
+ }
21052
+
21053
+ .ui.inverted.menu .item.menu {
21054
+ background: transparent;
21055
+ }
21056
+
21057
+ /*--- Border ---*/
21058
+
21059
+ .ui.inverted.menu .item:before {
21060
+ background: rgba(255, 255, 255, 0.08);
21061
+ }
21062
+
21063
+ .ui.vertical.inverted.menu .item:before {
21064
+ background: rgba(255, 255, 255, 0.08);
21065
+ }
21066
+
21067
+ /* Sub Menu */
21068
+
21069
+ .ui.vertical.inverted.menu .menu .item,
21070
+ .ui.vertical.inverted.menu .menu .item a:not(.ui) {
21071
+ color: rgba(255, 255, 255, 0.5);
21072
+ }
21073
+
21074
+ /* Header */
21075
+
21076
+ .ui.inverted.menu .header.item {
21077
+ margin: 0em;
21078
+ background: transparent;
21079
+ box-shadow: none;
21080
+ }
21081
+
21082
+ /* Disabled */
21083
+
21084
+ .ui.inverted.menu .item.disabled,
21085
+ .ui.inverted.menu .item.disabled:hover {
21086
+ color: rgba(225, 225, 225, 0.3);
21087
+ }
21088
+
21089
+ /*--- Hover ---*/
21090
+
21091
+ .ui.link.inverted.menu .item:hover,
21092
+ .ui.inverted.menu .dropdown.item:hover,
21093
+ .ui.inverted.menu .link.item:hover,
21094
+ .ui.inverted.menu a.item:hover {
21095
+ background: rgba(255, 255, 255, 0.08);
21096
+ color: #ffffff;
21097
+ }
21098
+
21099
+ .ui.vertical.inverted.menu .item .menu a.item:hover,
21100
+ .ui.vertical.inverted.menu .item .menu .link.item:hover {
21101
+ background: transparent;
21102
+ color: #ffffff;
21103
+ }
21104
+
21105
+ /*--- Pressed ---*/
21106
+
21107
+ .ui.inverted.menu a.item:active,
21108
+ .ui.inverted.menu .link.item:active,
21109
+ .ui.inverted.menu a.item:active {
21110
+ background: rgba(255, 255, 255, 0.08);
21111
+ color: #ffffff;
21112
+ }
21113
+
21114
+ /*--- Active ---*/
21115
+
21116
+ .ui.inverted.menu .active.item {
21117
+ background: rgba(255, 255, 255, 0.15);
21118
+ color: #ffffff !important;
21119
+ }
21120
+
21121
+ .ui.inverted.vertical.menu .item .menu .active.item {
21122
+ background: transparent;
21123
+ color: #ffffff;
21124
+ }
21125
+
21126
+ .ui.inverted.pointing.menu .active.item:after {
21127
+ background: #3d3e3f !important;
21128
+ margin: 0em !important;
21129
+ box-shadow: none !important;
21130
+ border: none !important;
21131
+ }
21132
+
21133
+ /*--- Active Hover ---*/
21134
+
21135
+ .ui.inverted.menu .active.item:hover {
21136
+ background: rgba(255, 255, 255, 0.15);
21137
+ color: #ffffff !important;
21138
+ }
21139
+
21140
+ .ui.inverted.pointing.menu .active.item:hover:after {
21141
+ background: #3d3e3f !important;
21142
+ }
21143
+
21144
+ /*--------------
21145
+ Floated
21146
+ ---------------*/
21147
+
21148
+ .ui.floated.menu {
21149
+ float: left;
21150
+ margin: 0rem 0.5rem 0rem 0rem;
21151
+ }
21152
+
21153
+ .ui.floated.menu .item:last-child:before {
21154
+ display: none;
21155
+ }
21156
+
21157
+ .ui.right.floated.menu {
21158
+ float: right;
21159
+ margin: 0rem 0rem 0rem 0.5rem;
21160
+ }
21161
+
21162
+ /*--------------
21163
+ Inverted
21164
+ ---------------*/
21165
+
21166
+ /* Red */
21167
+
21168
+ .ui.inverted.menu .red.active.item,
21169
+ .ui.inverted.red.menu {
21170
+ background-color: #db2828;
21171
+ }
21172
+
21173
+ .ui.inverted.red.menu .item:before {
21174
+ background-color: rgba(34, 36, 38, 0.1);
21175
+ }
21176
+
21177
+ .ui.inverted.red.menu .active.item {
21178
+ background-color: rgba(0, 0, 0, 0.1) !important;
21179
+ }
21180
+
21181
+ /* Orange */
21182
+
21183
+ .ui.inverted.menu .orange.active.item,
21184
+ .ui.inverted.orange.menu {
21185
+ background-color: #f2711c;
21186
+ }
21187
+
21188
+ .ui.inverted.orange.menu .item:before {
21189
+ background-color: rgba(34, 36, 38, 0.1);
21190
+ }
21191
+
21192
+ .ui.inverted.orange.menu .active.item {
21193
+ background-color: rgba(0, 0, 0, 0.1) !important;
21194
+ }
21195
+
21196
+ /* Yellow */
21197
+
21198
+ .ui.inverted.menu .yellow.active.item,
21199
+ .ui.inverted.yellow.menu {
21200
+ background-color: #fbbd08;
21201
+ }
21202
+
21203
+ .ui.inverted.yellow.menu .item:before {
21204
+ background-color: rgba(34, 36, 38, 0.1);
21205
+ }
21206
+
21207
+ .ui.inverted.yellow.menu .active.item {
21208
+ background-color: rgba(0, 0, 0, 0.1) !important;
21209
+ }
21210
+
21211
+ /* Olive */
21212
+
21213
+ .ui.inverted.menu .olive.active.item,
21214
+ .ui.inverted.olive.menu {
21215
+ background-color: #b5cc18;
21216
+ }
21217
+
21218
+ .ui.inverted.olive.menu .item:before {
21219
+ background-color: rgba(34, 36, 38, 0.1);
21220
+ }
21221
+
21222
+ .ui.inverted.olive.menu .active.item {
21223
+ background-color: rgba(0, 0, 0, 0.1) !important;
21224
+ }
21225
+
21226
+ /* Green */
21227
+
21228
+ .ui.inverted.menu .green.active.item,
21229
+ .ui.inverted.green.menu {
21230
+ background-color: #21ba45;
21231
+ }
21232
+
21233
+ .ui.inverted.green.menu .item:before {
21234
+ background-color: rgba(34, 36, 38, 0.1);
21235
+ }
21236
+
21237
+ .ui.inverted.green.menu .active.item {
21238
+ background-color: rgba(0, 0, 0, 0.1) !important;
21239
+ }
21240
+
21241
+ /* Teal */
21242
+
21243
+ .ui.inverted.menu .teal.active.item,
21244
+ .ui.inverted.teal.menu {
21245
+ background-color: #00b5ad;
21246
+ }
21247
+
21248
+ .ui.inverted.teal.menu .item:before {
21249
+ background-color: rgba(34, 36, 38, 0.1);
21250
+ }
21251
+
21252
+ .ui.inverted.teal.menu .active.item {
21253
+ background-color: rgba(0, 0, 0, 0.1) !important;
21254
+ }
21255
+
21256
+ /* Blue */
21257
+
21258
+ .ui.inverted.menu .blue.active.item,
21259
+ .ui.inverted.blue.menu {
21260
+ background-color: #2185d0;
21261
+ }
21262
+
21263
+ .ui.inverted.blue.menu .item:before {
21264
+ background-color: rgba(34, 36, 38, 0.1);
21265
+ }
21266
+
21267
+ .ui.inverted.blue.menu .active.item {
21268
+ background-color: rgba(0, 0, 0, 0.1) !important;
21269
+ }
21270
+
21271
+ /* Violet */
21272
+
21273
+ .ui.inverted.menu .violet.active.item,
21274
+ .ui.inverted.violet.menu {
21275
+ background-color: #6435c9;
21276
+ }
21277
+
21278
+ .ui.inverted.violet.menu .item:before {
21279
+ background-color: rgba(34, 36, 38, 0.1);
21280
+ }
21281
+
21282
+ .ui.inverted.violet.menu .active.item {
21283
+ background-color: rgba(0, 0, 0, 0.1) !important;
21284
+ }
21285
+
21286
+ /* Purple */
21287
+
21288
+ .ui.inverted.menu .purple.active.item,
21289
+ .ui.inverted.purple.menu {
21290
+ background-color: #a333c8;
21291
+ }
21292
+
21293
+ .ui.inverted.purple.menu .item:before {
21294
+ background-color: rgba(34, 36, 38, 0.1);
21295
+ }
21296
+
21297
+ .ui.inverted.purple.menu .active.item {
21298
+ background-color: rgba(0, 0, 0, 0.1) !important;
21299
+ }
21300
+
21301
+ /* Pink */
21302
+
21303
+ .ui.inverted.menu .pink.active.item,
21304
+ .ui.inverted.pink.menu {
21305
+ background-color: #e03997;
21306
+ }
21307
+
21308
+ .ui.inverted.pink.menu .item:before {
21309
+ background-color: rgba(34, 36, 38, 0.1);
21310
+ }
21311
+
21312
+ .ui.inverted.pink.menu .active.item {
21313
+ background-color: rgba(0, 0, 0, 0.1) !important;
21314
+ }
21315
+
21316
+ /* Brown */
21317
+
21318
+ .ui.inverted.menu .brown.active.item,
21319
+ .ui.inverted.brown.menu {
21320
+ background-color: #a5673f;
21321
+ }
21322
+
21323
+ .ui.inverted.brown.menu .item:before {
21324
+ background-color: rgba(34, 36, 38, 0.1);
21325
+ }
21326
+
21327
+ .ui.inverted.brown.menu .active.item {
21328
+ background-color: rgba(0, 0, 0, 0.1) !important;
21329
+ }
21330
+
21331
+ /* Grey */
21332
+
21333
+ .ui.inverted.menu .grey.active.item,
21334
+ .ui.inverted.grey.menu {
21335
+ background-color: #767676;
21336
+ }
21337
+
21338
+ .ui.inverted.grey.menu .item:before {
21339
+ background-color: rgba(34, 36, 38, 0.1);
21340
+ }
21341
+
21342
+ .ui.inverted.grey.menu .active.item {
21343
+ background-color: rgba(0, 0, 0, 0.1) !important;
21344
+ }
21345
+
21346
+ /*--------------
21347
+ Fitted
21348
+ ---------------*/
21349
+
21350
+ .ui.fitted.menu .item,
21351
+ .ui.fitted.menu .item .menu .item,
21352
+ .ui.menu .fitted.item {
21353
+ padding: 0em;
21354
+ }
21355
+
21356
+ .ui.horizontally.fitted.menu .item,
21357
+ .ui.horizontally.fitted.menu .item .menu .item,
21358
+ .ui.menu .horizontally.fitted.item {
21359
+ padding-top: 0.92857143em;
21360
+ padding-bottom: 0.92857143em;
21361
+ }
21362
+
21363
+ .ui.vertically.fitted.menu .item,
21364
+ .ui.vertically.fitted.menu .item .menu .item,
21365
+ .ui.menu .vertically.fitted.item {
21366
+ padding-left: 1.14285714em;
21367
+ padding-right: 1.14285714em;
21368
+ }
21369
+
21370
+ /*--------------
21371
+ Borderless
21372
+ ---------------*/
21373
+
21374
+ .ui.borderless.menu .item:before,
21375
+ .ui.borderless.menu .item .menu .item:before,
21376
+ .ui.menu .borderless.item:before {
21377
+ background: none !important;
21378
+ }
21379
+
21380
+ /*-------------------
21381
+ Compact
21382
+ --------------------*/
21383
+
21384
+ .ui.compact.menu {
21385
+ display: -webkit-inline-box;
21386
+ display: -webkit-inline-flex;
21387
+ display: -ms-inline-flexbox;
21388
+ display: inline-flex;
21389
+ margin: 0em;
21390
+ vertical-align: middle;
21391
+ }
21392
+
21393
+ .ui.compact.vertical.menu {
21394
+ display: inline-block;
21395
+ }
21396
+
21397
+ .ui.compact.menu .item:last-child {
21398
+ border-radius: 0em 0.28571429rem 0.28571429rem 0em;
21399
+ }
21400
+
21401
+ .ui.compact.menu .item:last-child:before {
21402
+ display: none;
21403
+ }
21404
+
21405
+ .ui.compact.vertical.menu {
21406
+ width: auto !important;
21407
+ }
21408
+
21409
+ .ui.compact.vertical.menu .item:last-child::before {
21410
+ display: block;
21411
+ }
21412
+
21413
+ /*-------------------
21414
+ Fluid
21415
+ --------------------*/
21416
+
21417
+ .ui.menu.fluid,
21418
+ .ui.vertical.menu.fluid {
21419
+ width: 100% !important;
21420
+ }
21421
+
21422
+ /*-------------------
21423
+ Evenly Sized
21424
+ --------------------*/
21425
+
21426
+ .ui.item.menu,
21427
+ .ui.item.menu .item {
21428
+ width: 100%;
21429
+ padding-left: 0em !important;
21430
+ padding-right: 0em !important;
21431
+ margin-left: 0em !important;
21432
+ margin-right: 0em !important;
21433
+ text-align: center;
21434
+ -webkit-box-pack: center;
21435
+ -webkit-justify-content: center;
21436
+ -ms-flex-pack: center;
21437
+ justify-content: center;
21438
+ }
21439
+
21440
+ .ui.item.menu .item:last-child:before {
21441
+ display: none;
21442
+ }
21443
+
21444
+ .ui.menu.two.item .item {
21445
+ width: 50%;
21446
+ }
21447
+
21448
+ .ui.menu.three.item .item {
21449
+ width: 33.333%;
21450
+ }
21451
+
21452
+ .ui.menu.four.item .item {
21453
+ width: 25%;
21454
+ }
21455
+
21456
+ .ui.menu.five.item .item {
21457
+ width: 20%;
21458
+ }
21459
+
21460
+ .ui.menu.six.item .item {
21461
+ width: 16.666%;
21462
+ }
21463
+
21464
+ .ui.menu.seven.item .item {
21465
+ width: 14.285%;
21466
+ }
21467
+
21468
+ .ui.menu.eight.item .item {
21469
+ width: 12.500%;
21470
+ }
21471
+
21472
+ .ui.menu.nine.item .item {
21473
+ width: 11.11%;
21474
+ }
21475
+
21476
+ .ui.menu.ten.item .item {
21477
+ width: 10.0%;
21478
+ }
21479
+
21480
+ .ui.menu.eleven.item .item {
21481
+ width: 9.09%;
21482
+ }
21483
+
21484
+ .ui.menu.twelve.item .item {
21485
+ width: 8.333%;
21486
+ }
21487
+
21488
+ /*--------------
21489
+ Fixed
21490
+ ---------------*/
21491
+
21492
+ .ui.menu.fixed {
21493
+ position: fixed;
21494
+ z-index: 101;
21495
+ margin: 0em;
21496
+ width: 100%;
21497
+ }
21498
+
21499
+ .ui.menu.fixed,
21500
+ .ui.menu.fixed .item:first-child,
21501
+ .ui.menu.fixed .item:last-child {
21502
+ border-radius: 0px !important;
21503
+ }
21504
+
21505
+ .ui.fixed.menu,
21506
+ .ui[class*="top fixed"].menu {
21507
+ top: 0px;
21508
+ left: 0px;
21509
+ right: auto;
21510
+ bottom: auto;
21511
+ }
21512
+
21513
+ .ui[class*="top fixed"].menu {
21514
+ border-top: none;
21515
+ border-left: none;
21516
+ border-right: none;
21517
+ }
21518
+
21519
+ .ui[class*="right fixed"].menu {
21520
+ border-top: none;
21521
+ border-bottom: none;
21522
+ border-right: none;
21523
+ top: 0px;
21524
+ right: 0px;
21525
+ left: auto;
21526
+ bottom: auto;
21527
+ width: auto;
21528
+ height: 100%;
21529
+ }
21530
+
21531
+ .ui[class*="bottom fixed"].menu {
21532
+ border-bottom: none;
21533
+ border-left: none;
21534
+ border-right: none;
21535
+ bottom: 0px;
21536
+ left: 0px;
21537
+ top: auto;
21538
+ right: auto;
21539
+ }
21540
+
21541
+ .ui[class*="left fixed"].menu {
21542
+ border-top: none;
21543
+ border-bottom: none;
21544
+ border-left: none;
21545
+ top: 0px;
21546
+ left: 0px;
21547
+ right: auto;
21548
+ bottom: auto;
21549
+ width: auto;
21550
+ height: 100%;
21551
+ }
21552
+
21553
+ /* Coupling with Grid */
21554
+
21555
+ .ui.fixed.menu + .ui.grid {
21556
+ padding-top: 2.75rem;
21557
+ }
21558
+
21559
+ /*-------------------
21560
+ Pointing
21561
+ --------------------*/
21562
+
21563
+ .ui.pointing.menu .item:after {
21564
+ visibility: hidden;
21565
+ position: absolute;
21566
+ content: '';
21567
+ top: 100%;
21568
+ left: 50%;
21569
+ -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
21570
+ -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
21571
+ transform: translateX(-50%) translateY(-50%) rotate(45deg);
21572
+ background: none;
21573
+ margin: 0.5px 0em 0em;
21574
+ width: 0.57142857em;
21575
+ height: 0.57142857em;
21576
+ border: none;
21577
+ border-bottom: 1px solid #d4d4d5;
21578
+ border-right: 1px solid #d4d4d5;
21579
+ z-index: 2;
21580
+ -webkit-transition: background 0.1s ease;
21581
+ transition: background 0.1s ease;
21582
+ }
21583
+
21584
+ .ui.vertical.pointing.menu .item:after {
21585
+ position: absolute;
21586
+ top: 50%;
21587
+ right: 0%;
21588
+ bottom: auto;
21589
+ left: auto;
21590
+ -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
21591
+ -ms-transform: translateX(50%) translateY(-50%) rotate(45deg);
21592
+ transform: translateX(50%) translateY(-50%) rotate(45deg);
21593
+ margin: 0em -0.5px 0em 0em;
21594
+ border: none;
21595
+ border-top: 1px solid #d4d4d5;
21596
+ border-right: 1px solid #d4d4d5;
21597
+ }
21598
+
21599
+ /* Active */
21600
+
21601
+ .ui.pointing.menu .active.item:after {
21602
+ visibility: visible;
21603
+ }
21604
+
21605
+ .ui.pointing.menu .active.dropdown.item:after {
21606
+ visibility: hidden;
21607
+ }
21608
+
21609
+ /* Don't double up pointers */
21610
+
21611
+ .ui.pointing.menu .dropdown.active.item:after,
21612
+ .ui.pointing.menu .active.item .menu .active.item:after {
21613
+ display: none;
21614
+ }
21615
+
21616
+ /* Colors */
21617
+
21618
+ .ui.pointing.menu .active.item:hover:after {
21619
+ background-color: #f2f2f2;
21620
+ }
21621
+
21622
+ .ui.pointing.menu .active.item:after {
21623
+ background-color: #f2f2f2;
21624
+ }
21625
+
21626
+ .ui.pointing.menu .active.item:hover:after {
21627
+ background-color: #f2f2f2;
21628
+ }
21629
+
21630
+ .ui.vertical.pointing.menu .active.item:hover:after {
21631
+ background-color: #f2f2f2;
21632
+ }
21633
+
21634
+ .ui.vertical.pointing.menu .active.item:after {
21635
+ background-color: #f2f2f2;
21636
+ }
21637
+
21638
+ .ui.vertical.pointing.menu .menu .active.item:after {
21639
+ background-color: #ffffff;
21640
+ }
21641
+
21642
+ /*--------------
21643
+ Attached
21644
+ ---------------*/
21645
+
21646
+ /* Middle */
21647
+
21648
+ .ui.attached.menu {
21649
+ top: 0px;
21650
+ bottom: 0px;
21651
+ border-radius: 0px;
21652
+ margin: 0em -1px;
21653
+ width: calc(100% + 2px );
21654
+ max-width: calc(100% + 2px );
21655
+ box-shadow: none;
21656
+ }
21657
+
21658
+ .ui.attached + .ui.attached.menu:not(.top) {
21659
+ border-top: none;
21660
+ }
21661
+
21662
+ /* Top */
21663
+
21664
+ .ui[class*="top attached"].menu {
21665
+ bottom: 0px;
21666
+ margin-bottom: 0em;
21667
+ top: 0px;
21668
+ margin-top: 1rem;
21669
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
21670
+ }
21671
+
21672
+ .ui.menu[class*="top attached"]:first-child {
21673
+ margin-top: 0em;
21674
+ }
21675
+
21676
+ /* Bottom */
21677
+
21678
+ .ui[class*="bottom attached"].menu {
21679
+ bottom: 0px;
21680
+ margin-top: 0em;
21681
+ top: 0px;
21682
+ margin-bottom: 1rem;
21683
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none;
21684
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
21685
+ }
21686
+
21687
+ .ui[class*="bottom attached"].menu:last-child {
21688
+ margin-bottom: 0em;
21689
+ }
21690
+
21691
+ /* Attached Menu Item */
21692
+
21693
+ .ui.top.attached.menu > .item:first-child {
21694
+ border-radius: 0.28571429rem 0em 0em 0em;
21695
+ }
21696
+
21697
+ .ui.bottom.attached.menu > .item:first-child {
21698
+ border-radius: 0em 0em 0em 0.28571429rem;
21699
+ }
21700
+
21701
+ /* Tabular Attached */
21702
+
21703
+ .ui.attached.menu:not(.tabular) {
21704
+ border: 1px solid #d4d4d5;
21705
+ }
21706
+
21707
+ .ui.attached.inverted.menu {
21708
+ border: none;
21709
+ }
21710
+
21711
+ .ui.attached.tabular.menu {
21712
+ margin-left: 0;
21713
+ margin-right: 0;
21714
+ width: 100%;
21715
+ }
21716
+
21717
+ /*--------------
21718
+ Sizes
21719
+ ---------------*/
21720
+
21721
+ /* Small */
21722
+
21723
+ .ui.small.menu {
21724
+ font-size: 0.92857143rem;
21725
+ }
21726
+
21727
+ .ui.small.vertical.menu {
21728
+ width: 13rem;
21729
+ }
21730
+
21731
+ /* Medium */
21732
+
21733
+ .ui.menu {
21734
+ font-size: 1rem;
21735
+ }
21736
+
21737
+ .ui.vertical.menu {
21738
+ width: 15rem;
21739
+ }
21740
+
21741
+ /* Large */
21742
+
21743
+ .ui.large.menu {
21744
+ font-size: 1.14285714rem;
21745
+ }
21746
+
21747
+ .ui.large.vertical.menu {
21748
+ width: 18rem;
21749
+ }
21750
+
21751
+ /* Huge */
21752
+
21753
+ .ui.huge.menu {
21754
+ font-size: 1.42857143rem;
21755
+ }
21756
+
21757
+ .ui.huge.vertical.menu {
21758
+ width: 20rem;
21759
+ }
21760
+
21761
+ /*******************************
21762
+ Theme Overrides
21763
+ *******************************/
21764
+
21765
+ /*******************************
21766
+ Site Overrides
21767
+ *******************************/
21768
+ /*!
21769
+ * # Semantic UI 2.1.7 - Message
21770
+ * http://github.com/semantic-org/semantic-ui/
21771
+ *
21772
+ *
21773
+ * Copyright 2015 Contributors
21774
+ * Released under the MIT license
21775
+ * http://opensource.org/licenses/MIT
21776
+ *
21777
+ */
21778
+
21779
+ /*******************************
21780
+ Message
21781
+ *******************************/
21782
+
21783
+ .ui.message {
21784
+ position: relative;
21785
+ min-height: 1em;
21786
+ margin: 1em 0em;
21787
+ background: #f8f8f9;
21788
+ padding: 1em 1.5em;
21789
+ line-height: 1.4285em;
21790
+ color: rgba(0, 0, 0, 0.87);
21791
+ -webkit-transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease;
21792
+ transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease;
21793
+ border-radius: 0.28571429rem;
21794
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.22) inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
21795
+ }
21796
+
21797
+ .ui.message:first-child {
21798
+ margin-top: 0em;
21799
+ }
21800
+
21801
+ .ui.message:last-child {
21802
+ margin-bottom: 0em;
21803
+ }
21804
+
21805
+ /*--------------
21806
+ Content
21807
+ ---------------*/
21808
+
21809
+ /* Header */
21810
+
21811
+ .ui.message .header {
21812
+ display: block;
21813
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
21814
+ font-weight: bold;
21815
+ margin: -0.14285em 0em 0rem 0em;
21816
+ }
21817
+
21818
+ /* Default font size */
21819
+
21820
+ .ui.message .header:not(.ui) {
21821
+ font-size: 1.14285714em;
21822
+ }
21823
+
21824
+ /* Paragraph */
21825
+
21826
+ .ui.message p {
21827
+ opacity: 0.85;
21828
+ margin: 0.75em 0em;
21829
+ }
21830
+
21831
+ .ui.message p:first-child {
21832
+ margin-top: 0em;
21833
+ }
21834
+
21835
+ .ui.message p:last-child {
21836
+ margin-bottom: 0em;
21837
+ }
21838
+
21839
+ .ui.message .header + p {
21840
+ margin-top: 0.25em;
21841
+ }
21842
+
21843
+ /* List */
21844
+
21845
+ .ui.message .list:not(.ui) {
21846
+ text-align: left;
21847
+ padding: 0em;
21848
+ opacity: 0.85;
21849
+ list-style-position: inside;
21850
+ margin: 0.5em 0em 0em;
21851
+ }
21852
+
21853
+ .ui.message .list:not(.ui):first-child {
21854
+ margin-top: 0em;
21855
+ }
21856
+
21857
+ .ui.message .list:not(.ui):last-child {
21858
+ margin-bottom: 0em;
21859
+ }
21860
+
21861
+ .ui.message .list:not(.ui) li {
21862
+ position: relative;
21863
+ list-style-type: none;
21864
+ margin: 0em 0em 0.3em 1em;
21865
+ padding: 0em;
21866
+ }
21867
+
21868
+ .ui.message .list:not(.ui) li:before {
21869
+ position: absolute;
21870
+ content: '•';
21871
+ left: -1em;
21872
+ height: 100%;
21873
+ vertical-align: baseline;
21874
+ }
21875
+
21876
+ .ui.message .list:not(.ui) li:last-child {
21877
+ margin-bottom: 0em;
21878
+ }
21879
+
21880
+ /* Icon */
21881
+
21882
+ .ui.message > .icon {
21883
+ margin-right: 0.6em;
21884
+ }
21885
+
21886
+ /* Close Icon */
21887
+
21888
+ .ui.message > .close.icon {
21889
+ cursor: pointer;
21890
+ position: absolute;
21891
+ margin: 0em;
21892
+ top: 0.78575em;
21893
+ right: 0.5em;
21894
+ opacity: 0.7;
21895
+ -webkit-transition: opacity 0.1s ease;
21896
+ transition: opacity 0.1s ease;
21897
+ }
21898
+
21899
+ .ui.message > .close.icon:hover {
21900
+ opacity: 1;
21901
+ }
21902
+
21903
+ /* First / Last Element */
21904
+
21905
+ .ui.message > :first-child {
21906
+ margin-top: 0em;
21907
+ }
21908
+
21909
+ .ui.message > :last-child {
21910
+ margin-bottom: 0em;
21911
+ }
21912
+
21913
+ /*******************************
21914
+ Coupling
21915
+ *******************************/
21916
+
21917
+ .ui.dropdown .menu > .message {
21918
+ margin: 0px -1px;
21919
+ }
21920
+
21921
+ /*******************************
21922
+ States
21923
+ *******************************/
21924
+
21925
+ /*--------------
21926
+ Visible
21927
+ ---------------*/
21928
+
21929
+ .ui.visible.visible.visible.visible.message {
21930
+ display: block;
21931
+ }
21932
+
21933
+ .ui.icon.visible.visible.visible.visible.message {
21934
+ display: -webkit-box;
21935
+ display: -webkit-flex;
21936
+ display: -ms-flexbox;
21937
+ display: flex;
21938
+ }
21939
+
21940
+ /*--------------
21941
+ Hidden
21942
+ ---------------*/
21943
+
21944
+ .ui.hidden.hidden.hidden.hidden.message {
21945
+ display: none;
21946
+ }
21947
+
21948
+ /*******************************
21949
+ Variations
21950
+ *******************************/
21951
+
21952
+ /*--------------
21953
+ Compact
21954
+ ---------------*/
21955
+
21956
+ .ui.compact.message {
21957
+ display: inline-block;
21958
+ }
21959
+
21960
+ /*--------------
21961
+ Attached
21962
+ ---------------*/
21963
+
21964
+ .ui.attached.message {
21965
+ margin-bottom: -1px;
21966
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
21967
+ box-shadow: 0em 0em 0em 1px rgba(34, 36, 38, 0.15) inset;
21968
+ margin-left: -1px;
21969
+ margin-right: -1px;
21970
+ }
21971
+
21972
+ .ui.attached + .ui.attached.message:not(.top):not(.bottom) {
21973
+ margin-top: -1px;
21974
+ border-radius: 0em;
21975
+ }
21976
+
21977
+ .ui.bottom.attached.message {
21978
+ margin-top: -1px;
21979
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
21980
+ box-shadow: 0em 0em 0em 1px rgba(34, 36, 38, 0.15) inset, 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
21981
+ }
21982
+
21983
+ .ui.bottom.attached.message:not(:last-child) {
21984
+ margin-bottom: 1em;
21985
+ }
21986
+
21987
+ .ui.attached.icon.message {
21988
+ width: auto;
21989
+ }
21990
+
21991
+ /*--------------
21992
+ Icon
21993
+ ---------------*/
21994
+
21995
+ .ui.icon.message {
21996
+ display: -webkit-box;
21997
+ display: -webkit-flex;
21998
+ display: -ms-flexbox;
21999
+ display: flex;
22000
+ width: 100%;
22001
+ -webkit-box-align: center;
22002
+ -webkit-align-items: center;
22003
+ -ms-flex-align: center;
22004
+ align-items: center;
22005
+ }
22006
+
22007
+ .ui.icon.message > .icon:not(.close) {
22008
+ display: block;
22009
+ -webkit-box-flex: 0;
22010
+ -webkit-flex: 0 0 auto;
22011
+ -ms-flex: 0 0 auto;
22012
+ flex: 0 0 auto;
22013
+ width: auto;
22014
+ line-height: 1;
22015
+ vertical-align: middle;
22016
+ font-size: 3em;
22017
+ opacity: 0.8;
22018
+ }
22019
+
22020
+ .ui.icon.message > .content {
22021
+ display: block;
22022
+ -webkit-box-flex: 1;
22023
+ -webkit-flex: 1 1 auto;
22024
+ -ms-flex: 1 1 auto;
22025
+ flex: 1 1 auto;
22026
+ vertical-align: middle;
22027
+ }
22028
+
22029
+ .ui.icon.message .icon:not(.close) + .content {
22030
+ padding-left: 0rem;
22031
+ }
22032
+
22033
+ .ui.icon.message .circular.icon {
22034
+ width: 1em;
22035
+ }
22036
+
22037
+ /*--------------
22038
+ Floating
22039
+ ---------------*/
22040
+
22041
+ .ui.floating.message {
22042
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.22) inset, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.08);
22043
+ }
22044
+
22045
+ /*--------------
22046
+ Colors
22047
+ ---------------*/
22048
+
22049
+ .ui.black.message {
22050
+ background-color: #1b1c1d;
22051
+ color: rgba(255, 255, 255, 0.9);
22052
+ }
22053
+
22054
+ /*--------------
22055
+ Types
22056
+ ---------------*/
22057
+
22058
+ /* Positive */
22059
+
22060
+ .ui.positive.message {
22061
+ background-color: #fcfff5;
22062
+ color: #2c662d;
22063
+ }
22064
+
22065
+ .ui.positive.message,
22066
+ .ui.attached.positive.message {
22067
+ box-shadow: 0px 0px 0px 1px #a3c293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
22068
+ }
22069
+
22070
+ .ui.positive.message .header {
22071
+ color: #1a531b;
22072
+ }
22073
+
22074
+ /* Negative */
22075
+
22076
+ .ui.negative.message {
22077
+ background-color: #fff6f6;
22078
+ color: #9f3a38;
22079
+ }
22080
+
22081
+ .ui.negative.message,
22082
+ .ui.attached.negative.message {
22083
+ box-shadow: 0px 0px 0px 1px #e0b4b4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
22084
+ }
22085
+
22086
+ .ui.negative.message .header {
22087
+ color: #912d2b;
22088
+ }
22089
+
22090
+ /* Info */
22091
+
22092
+ .ui.info.message {
22093
+ background-color: #f8ffff;
22094
+ color: #276f86;
22095
+ }
22096
+
22097
+ .ui.info.message,
22098
+ .ui.attached.info.message {
22099
+ box-shadow: 0px 0px 0px 1px #a9d5de inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
22100
+ }
22101
+
22102
+ .ui.info.message .header {
22103
+ color: #0e566c;
22104
+ }
22105
+
22106
+ /* Warning */
22107
+
22108
+ .ui.warning.message {
22109
+ background-color: #fffaf3;
22110
+ color: #573a08;
22111
+ }
22112
+
22113
+ .ui.warning.message,
22114
+ .ui.attached.warning.message {
22115
+ box-shadow: 0px 0px 0px 1px #c9ba9b inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
22116
+ }
22117
+
22118
+ .ui.warning.message .header {
22119
+ color: #794b02;
22120
+ }
22121
+
22122
+ /* Error */
22123
+
22124
+ .ui.error.message {
22125
+ background-color: #fff6f6;
22126
+ color: #9f3a38;
22127
+ }
22128
+
22129
+ .ui.error.message,
22130
+ .ui.attached.error.message {
22131
+ box-shadow: 0px 0px 0px 1px #e0b4b4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
22132
+ }
22133
+
22134
+ .ui.error.message .header {
22135
+ color: #912d2b;
22136
+ }
22137
+
22138
+ /* Success */
22139
+
22140
+ .ui.success.message {
22141
+ background-color: #fcfff5;
22142
+ color: #2c662d;
22143
+ }
22144
+
22145
+ .ui.success.message,
22146
+ .ui.attached.success.message {
22147
+ box-shadow: 0px 0px 0px 1px #a3c293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
22148
+ }
22149
+
22150
+ .ui.success.message .header {
22151
+ color: #1a531b;
22152
+ }
22153
+
22154
+ /* Colors */
22155
+
22156
+ .ui.inverted.message,
22157
+ .ui.black.message {
22158
+ background-color: #1b1c1d;
22159
+ color: rgba(255, 255, 255, 0.9);
22160
+ }
22161
+
22162
+ .ui.red.message {
22163
+ background-color: #ffe8e6;
22164
+ color: #db2828;
22165
+ }
22166
+
22167
+ .ui.red.message .header {
22168
+ color: #c82121;
22169
+ }
22170
+
22171
+ .ui.orange.message {
22172
+ background-color: #ffedde;
22173
+ color: #f2711c;
22174
+ }
22175
+
22176
+ .ui.orange.message .header {
22177
+ color: #e7640d;
22178
+ }
22179
+
22180
+ .ui.yellow.message {
22181
+ background-color: #fff8db;
22182
+ color: #b58105;
22183
+ }
22184
+
22185
+ .ui.yellow.message .header {
22186
+ color: #9c6f04;
22187
+ }
22188
+
22189
+ .ui.olive.message {
22190
+ background-color: #fbfdef;
22191
+ color: #8abc1e;
22192
+ }
22193
+
22194
+ .ui.olive.message .header {
22195
+ color: #7aa61a;
22196
+ }
22197
+
22198
+ .ui.green.message {
22199
+ background-color: #e5f9e7;
22200
+ color: #1ebc30;
22201
+ }
22202
+
22203
+ .ui.green.message .header {
22204
+ color: #1aa62a;
22205
+ }
22206
+
22207
+ .ui.teal.message {
22208
+ background-color: #e1f7f7;
22209
+ color: #10a3a3;
22210
+ }
22211
+
22212
+ .ui.teal.message .header {
22213
+ color: #0e8c8c;
22214
+ }
22215
+
22216
+ .ui.blue.message {
22217
+ background-color: #dff0ff;
22218
+ color: #2185d0;
22219
+ }
22220
+
22221
+ .ui.blue.message .header {
22222
+ color: #1e77ba;
22223
+ }
22224
+
22225
+ .ui.violet.message {
22226
+ background-color: #eae7ff;
22227
+ color: #6435c9;
22228
+ }
22229
+
22230
+ .ui.violet.message .header {
22231
+ color: #5a30b5;
22232
+ }
22233
+
22234
+ .ui.purple.message {
22235
+ background-color: #f6e7ff;
22236
+ color: #a333c8;
22237
+ }
22238
+
22239
+ .ui.purple.message .header {
22240
+ color: #922eb4;
22241
+ }
22242
+
22243
+ .ui.pink.message {
22244
+ background-color: #ffe3fb;
22245
+ color: #e03997;
22246
+ }
22247
+
22248
+ .ui.pink.message .header {
22249
+ color: #dd238b;
22250
+ }
22251
+
22252
+ .ui.brown.message {
22253
+ background-color: #f1e2d3;
22254
+ color: #a5673f;
22255
+ }
22256
+
22257
+ .ui.brown.message .header {
22258
+ color: #935b38;
22259
+ }
22260
+
22261
+ /*--------------
22262
+ Sizes
22263
+ ---------------*/
22264
+
22265
+ .ui.small.message {
22266
+ font-size: 0.92857143em;
22267
+ }
22268
+
22269
+ .ui.message {
22270
+ font-size: 1em;
22271
+ }
22272
+
22273
+ .ui.large.message {
22274
+ font-size: 1.14285714em;
22275
+ }
22276
+
22277
+ .ui.huge.message {
22278
+ font-size: 1.42857143em;
22279
+ }
22280
+
22281
+ .ui.massive.message {
22282
+ font-size: 1.71428571em;
22283
+ }
22284
+
22285
+ /*******************************
22286
+ Theme Overrides
22287
+ *******************************/
22288
+
22289
+ /*******************************
22290
+ Site Overrides
22291
+ *******************************/
22292
+ /*!
22293
+ * # Semantic UI 2.1.7 - Table
22294
+ * http://github.com/semantic-org/semantic-ui/
22295
+ *
22296
+ *
22297
+ * Copyright 2015 Contributors
22298
+ * Released under the MIT license
22299
+ * http://opensource.org/licenses/MIT
22300
+ *
22301
+ */
22302
+
22303
+ /*******************************
22304
+ Table
22305
+ *******************************/
22306
+
22307
+ /* Prototype */
22308
+
22309
+ .ui.table {
22310
+ width: 100%;
22311
+ background: #ffffff;
22312
+ margin: 1em 0em;
22313
+ border: 1px solid rgba(34, 36, 38, 0.15);
22314
+ box-shadow: none;
22315
+ border-radius: 0.28571429rem;
22316
+ text-align: left;
22317
+ color: rgba(0, 0, 0, 0.87);
22318
+ border-collapse: separate;
22319
+ border-spacing: 0px;
22320
+ }
22321
+
22322
+ .ui.table:first-child {
22323
+ margin-top: 0em;
22324
+ }
22325
+
22326
+ .ui.table:last-child {
22327
+ margin-bottom: 0em;
22328
+ }
22329
+
22330
+ /*******************************
22331
+ Parts
22332
+ *******************************/
22333
+
22334
+ /* Table Content */
22335
+
22336
+ .ui.table th,
22337
+ .ui.table td {
22338
+ -webkit-transition: background 0.1s ease, color 0.1s ease;
22339
+ transition: background 0.1s ease, color 0.1s ease;
22340
+ }
22341
+
22342
+ /* Headers */
22343
+
22344
+ .ui.table thead {
22345
+ box-shadow: none;
22346
+ }
22347
+
22348
+ .ui.table thead th {
22349
+ cursor: auto;
22350
+ background: #f9fafb;
22351
+ text-align: inherit;
22352
+ color: rgba(0, 0, 0, 0.87);
22353
+ padding: 0.92857143em 0.71428571em;
22354
+ vertical-align: inherit;
22355
+ font-style: none;
22356
+ font-weight: bold;
22357
+ text-transform: none;
22358
+ border-bottom: 1px solid rgba(34, 36, 38, 0.1);
22359
+ border-left: none;
22360
+ }
22361
+
22362
+ .ui.table thead tr > th:first-child {
22363
+ border-left: none;
22364
+ }
22365
+
22366
+ .ui.table thead tr:first-child > th:first-child {
22367
+ border-radius: 0.28571429rem 0em 0em 0em;
22368
+ }
22369
+
22370
+ .ui.table thead tr:first-child > th:last-child {
22371
+ border-radius: 0em 0.28571429rem 0em 0em;
22372
+ }
22373
+
22374
+ .ui.table thead tr:first-child > th:only-child {
22375
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
22376
+ }
22377
+
22378
+ /* Footer */
22379
+
22380
+ .ui.table tfoot {
22381
+ box-shadow: none;
22382
+ }
22383
+
22384
+ .ui.table tfoot th {
22385
+ cursor: auto;
22386
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
22387
+ background: #f9fafb;
22388
+ text-align: inherit;
22389
+ color: rgba(0, 0, 0, 0.87);
22390
+ padding: 0.71428571em 0.71428571em;
22391
+ vertical-align: middle;
22392
+ font-style: normal;
22393
+ font-weight: normal;
22394
+ text-transform: none;
22395
+ }
22396
+
22397
+ .ui.table tfoot tr > th:first-child {
22398
+ border-left: none;
22399
+ }
22400
+
22401
+ .ui.table tfoot tr:first-child > th:first-child {
22402
+ border-radius: 0em 0em 0em 0.28571429rem;
22403
+ }
22404
+
22405
+ .ui.table tfoot tr:first-child > th:last-child {
22406
+ border-radius: 0em 0em 0.28571429rem 0em;
22407
+ }
22408
+
22409
+ .ui.table tfoot tr:first-child > th:only-child {
22410
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
22411
+ }
22412
+
22413
+ /* Table Row */
22414
+
22415
+ .ui.table tr td {
22416
+ border-top: 1px solid rgba(34, 36, 38, 0.1);
22417
+ }
22418
+
22419
+ .ui.table tr:first-child td {
22420
+ border-top: none;
22421
+ }
22422
+
22423
+ /* Table Cells */
22424
+
22425
+ .ui.table td {
22426
+ padding: 0.71428571em 0.71428571em;
22427
+ text-align: inherit;
22428
+ }
22429
+
22430
+ /* Icons */
22431
+
22432
+ .ui.table > .icon {
22433
+ vertical-align: baseline;
22434
+ }
22435
+
22436
+ .ui.table > .icon:only-child {
22437
+ margin: 0em;
22438
+ }
22439
+
22440
+ /* Table Segment */
22441
+
22442
+ .ui.table.segment {
22443
+ padding: 0em;
22444
+ }
22445
+
22446
+ .ui.table.segment:after {
22447
+ display: none;
22448
+ }
22449
+
22450
+ .ui.table.segment.stacked:after {
22451
+ display: block;
22452
+ }
22453
+
22454
+ /* Responsive */
22455
+
22456
+ @media only screen and (max-width: 767px) {
22457
+ .ui.table:not(.unstackable) {
22458
+ width: 100%;
22459
+ }
22460
+
22461
+ .ui.table:not(.unstackable) tbody,
22462
+ .ui.table:not(.unstackable) tr,
22463
+ .ui.table:not(.unstackable) tr > th,
22464
+ .ui.table:not(.unstackable) tr > td {
22465
+ width: auto !important;
22466
+ display: block !important;
22467
+ }
22468
+
22469
+ .ui.table:not(.unstackable) {
22470
+ padding: 0em;
22471
+ }
22472
+
22473
+ .ui.table:not(.unstackable) thead {
22474
+ display: block;
22475
+ }
22476
+
22477
+ .ui.table:not(.unstackable) tfoot {
22478
+ display: block;
22479
+ }
22480
+
22481
+ .ui.table:not(.unstackable) tr {
22482
+ padding-top: 1em;
22483
+ padding-bottom: 1em;
22484
+ box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important;
22485
+ }
22486
+
22487
+ .ui.table:not(.unstackable) tr > th,
22488
+ .ui.table:not(.unstackable) tr > td {
22489
+ background: none;
22490
+ border: none !important;
22491
+ padding: 0.25em 0.75em !important;
22492
+ box-shadow: none !important;
22493
+ }
22494
+
22495
+ .ui.table:not(.unstackable) th:first-child,
22496
+ .ui.table:not(.unstackable) td:first-child {
22497
+ font-weight: bold;
22498
+ }
22499
+
22500
+ /* Definition Table */
22501
+
22502
+ .ui.definition.table:not(.unstackable) thead th:first-child {
22503
+ box-shadow: none !important;
22504
+ }
22505
+ }
22506
+
22507
+ /*******************************
22508
+ Coupling
22509
+ *******************************/
22510
+
22511
+ /* UI Image */
22512
+
22513
+ .ui.table th .image,
22514
+ .ui.table th .image img,
22515
+ .ui.table td .image,
22516
+ .ui.table td .image img {
22517
+ max-width: none;
22518
+ }
22519
+
22520
+ /*******************************
22521
+ Types
22522
+ *******************************/
22523
+
22524
+ /*--------------
22525
+ Complex
22526
+ ---------------*/
22527
+
22528
+ .ui.structured.table {
22529
+ border-collapse: collapse;
22530
+ }
22531
+
22532
+ .ui.structured.table thead th {
22533
+ border-left: none;
22534
+ border-right: none;
22535
+ }
22536
+
22537
+ .ui.structured.sortable.table thead th {
22538
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
22539
+ border-right: 1px solid rgba(34, 36, 38, 0.15);
22540
+ }
22541
+
22542
+ .ui.structured.basic.table th {
22543
+ border-left: none;
22544
+ border-right: none;
22545
+ }
22546
+
22547
+ .ui.structured.celled.table tr th,
22548
+ .ui.structured.celled.table tr td {
22549
+ border-left: 1px solid rgba(34, 36, 38, 0.1);
22550
+ border-right: 1px solid rgba(34, 36, 38, 0.1);
22551
+ }
22552
+
22553
+ /*--------------
22554
+ Definition
22555
+ ---------------*/
22556
+
22557
+ .ui.definition.table thead:not(.full-width) th:first-child {
22558
+ pointer-events: none;
22559
+ background: transparent;
22560
+ font-weight: normal;
22561
+ color: rgba(0, 0, 0, 0.4);
22562
+ box-shadow: -1px -1px 0px 1px #ffffff;
22563
+ }
22564
+
22565
+ .ui.definition.table tfoot:not(.full-width) th:first-child {
22566
+ pointer-events: none;
22567
+ background: transparent;
22568
+ font-weight: rgba(0, 0, 0, 0.4);
22569
+ color: normal;
22570
+ box-shadow: 1px 1px 0px 1px #ffffff;
22571
+ }
22572
+
22573
+ /* Remove Border */
22574
+
22575
+ .ui.celled.definition.table thead:not(.full-width) th:first-child {
22576
+ box-shadow: 0px -1px 0px 1px #ffffff;
22577
+ }
22578
+
22579
+ .ui.celled.definition.table tfoot:not(.full-width) th:first-child {
22580
+ box-shadow: 0px 1px 0px 1px #ffffff;
22581
+ }
22582
+
22583
+ /* Highlight Defining Column */
22584
+
22585
+ .ui.definition.table tr td:first-child {
22586
+ background: rgba(0, 0, 0, 0.03);
22587
+ font-weight: bold;
22588
+ color: rgba(0, 0, 0, 0.95);
22589
+ }
22590
+
22591
+ /* Fix 2nd Column */
22592
+
22593
+ .ui.definition.table thead:not(.full-width) th:nth-child(2) {
22594
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
22595
+ }
22596
+
22597
+ .ui.definition.table tfoot:not(.full-width) th:nth-child(2) {
22598
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
22599
+ }
22600
+
22601
+ .ui.definition.table td:nth-child(2) {
22602
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
22603
+ }
22604
+
22605
+ /*******************************
22606
+ States
22607
+ *******************************/
22608
+
22609
+ /*--------------
22610
+ Positive
22611
+ ---------------*/
22612
+
22613
+ .ui.table tr.positive,
22614
+ .ui.table td.positive {
22615
+ box-shadow: 0px 0px 0px #a3c293 inset;
22616
+ }
22617
+
22618
+ .ui.table tr.positive,
22619
+ .ui.table td.positive {
22620
+ background: #fcfff5 !important;
22621
+ color: #2c662d !important;
22622
+ }
22623
+
22624
+ /*--------------
22625
+ Negative
22626
+ ---------------*/
22627
+
22628
+ .ui.table tr.negative,
22629
+ .ui.table td.negative {
22630
+ box-shadow: 0px 0px 0px #e0b4b4 inset;
22631
+ }
22632
+
22633
+ .ui.table tr.negative,
22634
+ .ui.table td.negative {
22635
+ background: #fff6f6 !important;
22636
+ color: #9f3a38 !important;
22637
+ }
22638
+
22639
+ /*--------------
22640
+ Error
22641
+ ---------------*/
22642
+
22643
+ .ui.table tr.error,
22644
+ .ui.table td.error {
22645
+ box-shadow: 0px 0px 0px #e0b4b4 inset;
22646
+ }
22647
+
22648
+ .ui.table tr.error,
22649
+ .ui.table td.error {
22650
+ background: #fff6f6 !important;
22651
+ color: #9f3a38 !important;
22652
+ }
22653
+
22654
+ /*--------------
22655
+ Warning
22656
+ ---------------*/
22657
+
22658
+ .ui.table tr.warning,
22659
+ .ui.table td.warning {
22660
+ box-shadow: 0px 0px 0px #c9ba9b inset;
22661
+ }
22662
+
22663
+ .ui.table tr.warning,
22664
+ .ui.table td.warning {
22665
+ background: #fffaf3 !important;
22666
+ color: #573a08 !important;
22667
+ }
22668
+
22669
+ /*--------------
22670
+ Active
22671
+ ---------------*/
22672
+
22673
+ .ui.table tr.active,
22674
+ .ui.table td.active {
22675
+ box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.87) inset;
22676
+ }
22677
+
22678
+ .ui.table tr.active,
22679
+ .ui.table td.active {
22680
+ background: #e0e0e0 !important;
22681
+ color: rgba(0, 0, 0, 0.87) !important;
22682
+ }
22683
+
22684
+ /*--------------
22685
+ Disabled
22686
+ ---------------*/
22687
+
22688
+ .ui.table tr.disabled td,
22689
+ .ui.table tr td.disabled,
22690
+ .ui.table tr.disabled:hover,
22691
+ .ui.table tr:hover td.disabled {
22692
+ pointer-events: none;
22693
+ color: rgba(40, 40, 40, 0.3);
22694
+ }
22695
+
22696
+ /*******************************
22697
+ Variations
22698
+ *******************************/
22699
+
22700
+ /*--------------
22701
+ Stackable
22702
+ ---------------*/
22703
+
22704
+ @media only screen and (max-width: 991px) {
22705
+ .ui[class*="tablet stackable"].table,
22706
+ .ui[class*="tablet stackable"].table tbody,
22707
+ .ui[class*="tablet stackable"].table tr,
22708
+ .ui[class*="tablet stackable"].table tr > th,
22709
+ .ui[class*="tablet stackable"].table tr > td {
22710
+ width: 100% !important;
22711
+ display: block !important;
22712
+ }
22713
+
22714
+ .ui[class*="tablet stackable"].table {
22715
+ padding: 0em;
22716
+ }
22717
+
22718
+ .ui[class*="tablet stackable"].table thead {
22719
+ display: block;
22720
+ }
22721
+
22722
+ .ui[class*="tablet stackable"].table tfoot {
22723
+ display: block;
22724
+ }
22725
+
22726
+ .ui[class*="tablet stackable"].table tr {
22727
+ padding-top: 1em;
22728
+ padding-bottom: 1em;
22729
+ box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important;
22730
+ }
22731
+
22732
+ .ui[class*="tablet stackable"].table tr > th,
22733
+ .ui[class*="tablet stackable"].table tr > td {
22734
+ background: none;
22735
+ border: none !important;
22736
+ padding: 0.25em 0.75em;
22737
+ box-shadow: none !important;
22738
+ }
22739
+
22740
+ /* Definition Table */
22741
+
22742
+ .ui.definition[class*="tablet stackable"].table thead th:first-child {
22743
+ box-shadow: none !important;
22744
+ }
22745
+ }
22746
+
22747
+ /*--------------
22748
+ Text Alignment
22749
+ ---------------*/
22750
+
22751
+ .ui.table[class*="left aligned"],
22752
+ .ui.table [class*="left aligned"] {
22753
+ text-align: left;
22754
+ }
22755
+
22756
+ .ui.table[class*="center aligned"],
22757
+ .ui.table [class*="center aligned"] {
22758
+ text-align: center;
22759
+ }
22760
+
22761
+ .ui.table[class*="right aligned"],
22762
+ .ui.table [class*="right aligned"] {
22763
+ text-align: right;
22764
+ }
22765
+
22766
+ /*------------------
22767
+ Vertical Alignment
22768
+ ------------------*/
22769
+
22770
+ .ui.table[class*="top aligned"],
22771
+ .ui.table [class*="top aligned"] {
22772
+ vertical-align: top;
22773
+ }
22774
+
22775
+ .ui.table[class*="middle aligned"],
22776
+ .ui.table [class*="middle aligned"] {
22777
+ vertical-align: middle;
22778
+ }
22779
+
22780
+ .ui.table[class*="bottom aligned"],
22781
+ .ui.table [class*="bottom aligned"] {
22782
+ vertical-align: bottom;
22783
+ }
22784
+
22785
+ /*--------------
22786
+ Collapsing
22787
+ ---------------*/
22788
+
22789
+ .ui.table th.collapsing,
22790
+ .ui.table td.collapsing {
22791
+ width: 1px;
22792
+ white-space: nowrap;
22793
+ }
22794
+
22795
+ /*--------------
22796
+ Fixed
22797
+ ---------------*/
22798
+
22799
+ .ui.fixed.table {
22800
+ table-layout: fixed;
22801
+ }
22802
+
22803
+ .ui.fixed.table th,
22804
+ .ui.fixed.table td {
22805
+ overflow: hidden;
22806
+ text-overflow: ellipsis;
22807
+ }
22808
+
22809
+ /*--------------
22810
+ Selectable
22811
+ ---------------*/
22812
+
22813
+ .ui.selectable.table tbody tr:hover,
22814
+ .ui.table tbody tr td.selectable:hover {
22815
+ background: rgba(0, 0, 0, 0.05) !important;
22816
+ color: rgba(0, 0, 0, 0.95) !important;
22817
+ }
22818
+
22819
+ .ui.selectable.inverted.table tbody tr:hover,
22820
+ .ui.inverted.table tbody tr td.selectable:hover {
22821
+ background: rgba(255, 255, 255, 0.08) !important;
22822
+ color: #ffffff !important;
22823
+ }
22824
+
22825
+ /* Selectable Cell Link */
22826
+
22827
+ .ui.table tbody tr td.selectable {
22828
+ padding: 0em;
22829
+ }
22830
+
22831
+ .ui.table tbody tr td.selectable > a:not(.ui) {
22832
+ display: block;
22833
+ color: inherit;
22834
+ padding: 0.71428571em 0.71428571em;
22835
+ }
22836
+
22837
+ /* Other States */
22838
+
22839
+ .ui.selectable.table tr.error:hover,
22840
+ .ui.table tr td.selectable.error:hover,
22841
+ .ui.selectable.table tr:hover td.error {
22842
+ background: #ffe7e7 !important;
22843
+ color: #943634 !important;
22844
+ }
22845
+
22846
+ .ui.selectable.table tr.warning:hover,
22847
+ .ui.table tr td.selectable.warning:hover,
22848
+ .ui.selectable.table tr:hover td.warning {
22849
+ background: #fff4e4 !important;
22850
+ color: #493107 !important;
22851
+ }
22852
+
22853
+ .ui.selectable.table tr.active:hover,
22854
+ .ui.table tr td.selectable.active:hover,
22855
+ .ui.selectable.table tr:hover td.active {
22856
+ background: #e0e0e0 !important;
22857
+ color: rgba(0, 0, 0, 0.87) !important;
22858
+ }
22859
+
22860
+ .ui.selectable.table tr.positive:hover,
22861
+ .ui.table tr td.selectable.positive:hover,
22862
+ .ui.selectable.table tr:hover td.positive {
22863
+ background: #f7ffe6 !important;
22864
+ color: #275b28 !important;
22865
+ }
22866
+
22867
+ .ui.selectable.table tr.negative:hover,
22868
+ .ui.table tr td.selectable.negative:hover,
22869
+ .ui.selectable.table tr:hover td.negative {
22870
+ background: #ffe7e7 !important;
22871
+ color: #943634 !important;
22872
+ }
22873
+
22874
+ /*-------------------
22875
+ Attached
22876
+ --------------------*/
22877
+
22878
+ /* Middle */
22879
+
22880
+ .ui.attached.table {
22881
+ top: 0px;
22882
+ bottom: 0px;
22883
+ border-radius: 0px;
22884
+ margin: 0em -1px;
22885
+ width: calc(100% + 2px );
22886
+ max-width: calc(100% + 2px );
22887
+ box-shadow: none;
22888
+ border: 1px solid #d4d4d5;
22889
+ }
22890
+
22891
+ .ui.attached + .ui.attached.table:not(.top) {
22892
+ border-top: none;
22893
+ }
22894
+
22895
+ /* Top */
22896
+
22897
+ .ui[class*="top attached"].table {
22898
+ bottom: 0px;
22899
+ margin-bottom: 0em;
22900
+ top: 0px;
22901
+ margin-top: 1em;
22902
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
22903
+ }
22904
+
22905
+ .ui.table[class*="top attached"]:first-child {
22906
+ margin-top: 0em;
22907
+ }
22908
+
22909
+ /* Bottom */
22910
+
22911
+ .ui[class*="bottom attached"].table {
22912
+ bottom: 0px;
22913
+ margin-top: 0em;
22914
+ top: 0px;
22915
+ margin-bottom: 1em;
22916
+ box-shadow: none, none;
22917
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
22918
+ }
22919
+
22920
+ .ui[class*="bottom attached"].table:last-child {
22921
+ margin-bottom: 0em;
22922
+ }
22923
+
22924
+ /*--------------
22925
+ Striped
22926
+ ---------------*/
22927
+
22928
+ /* Table Striping */
22929
+
22930
+ .ui.striped.table > tr:nth-child(2n),
22931
+ .ui.striped.table tbody tr:nth-child(2n) {
22932
+ background-color: rgba(0, 0, 50, 0.02);
22933
+ }
22934
+
22935
+ /* Stripes */
22936
+
22937
+ .ui.inverted.striped.table > tr:nth-child(2n),
22938
+ .ui.inverted.striped.table tbody tr:nth-child(2n) {
22939
+ background-color: rgba(255, 255, 255, 0.05);
22940
+ }
22941
+
22942
+ /*--------------
22943
+ Single Line
22944
+ ---------------*/
22945
+
22946
+ .ui.table[class*="single line"],
22947
+ .ui.table [class*="single line"] {
22948
+ white-space: nowrap;
22949
+ }
22950
+
22951
+ .ui.table[class*="single line"],
22952
+ .ui.table [class*="single line"] {
22953
+ white-space: nowrap;
22954
+ }
22955
+
22956
+ /*-------------------
22957
+ Colors
22958
+ --------------------*/
22959
+
22960
+ /* Red */
22961
+
22962
+ .ui.red.table {
22963
+ border-top: 0.2em solid #db2828;
22964
+ }
22965
+
22966
+ .ui.inverted.red.table {
22967
+ background-color: #db2828 !important;
22968
+ color: #ffffff !important;
22969
+ }
22970
+
22971
+ /* Orange */
22972
+
22973
+ .ui.orange.table {
22974
+ border-top: 0.2em solid #f2711c;
22975
+ }
22976
+
22977
+ .ui.inverted.orange.table {
22978
+ background-color: #f2711c !important;
22979
+ color: #ffffff !important;
22980
+ }
22981
+
22982
+ /* Yellow */
22983
+
22984
+ .ui.yellow.table {
22985
+ border-top: 0.2em solid #fbbd08;
22986
+ }
22987
+
22988
+ .ui.inverted.yellow.table {
22989
+ background-color: #fbbd08 !important;
22990
+ color: #ffffff !important;
22991
+ }
22992
+
22993
+ /* Olive */
22994
+
22995
+ .ui.olive.table {
22996
+ border-top: 0.2em solid #b5cc18;
22997
+ }
22998
+
22999
+ .ui.inverted.olive.table {
23000
+ background-color: #b5cc18 !important;
23001
+ color: #ffffff !important;
23002
+ }
23003
+
23004
+ /* Green */
23005
+
23006
+ .ui.green.table {
23007
+ border-top: 0.2em solid #21ba45;
23008
+ }
23009
+
23010
+ .ui.inverted.green.table {
23011
+ background-color: #21ba45 !important;
23012
+ color: #ffffff !important;
23013
+ }
23014
+
23015
+ /* Teal */
23016
+
23017
+ .ui.teal.table {
23018
+ border-top: 0.2em solid #00b5ad;
23019
+ }
23020
+
23021
+ .ui.inverted.teal.table {
23022
+ background-color: #00b5ad !important;
23023
+ color: #ffffff !important;
23024
+ }
23025
+
23026
+ /* Blue */
23027
+
23028
+ .ui.blue.table {
23029
+ border-top: 0.2em solid #2185d0;
23030
+ }
23031
+
23032
+ .ui.inverted.blue.table {
23033
+ background-color: #2185d0 !important;
23034
+ color: #ffffff !important;
23035
+ }
23036
+
23037
+ /* Violet */
23038
+
23039
+ .ui.violet.table {
23040
+ border-top: 0.2em solid #6435c9;
23041
+ }
23042
+
23043
+ .ui.inverted.violet.table {
23044
+ background-color: #6435c9 !important;
23045
+ color: #ffffff !important;
23046
+ }
23047
+
23048
+ /* Purple */
23049
+
23050
+ .ui.purple.table {
23051
+ border-top: 0.2em solid #a333c8;
23052
+ }
23053
+
23054
+ .ui.inverted.purple.table {
23055
+ background-color: #a333c8 !important;
23056
+ color: #ffffff !important;
23057
+ }
23058
+
23059
+ /* Pink */
23060
+
23061
+ .ui.pink.table {
23062
+ border-top: 0.2em solid #e03997;
23063
+ }
23064
+
23065
+ .ui.inverted.pink.table {
23066
+ background-color: #e03997 !important;
23067
+ color: #ffffff !important;
23068
+ }
23069
+
23070
+ /* Brown */
23071
+
23072
+ .ui.brown.table {
23073
+ border-top: 0.2em solid #a5673f;
23074
+ }
23075
+
23076
+ .ui.inverted.brown.table {
23077
+ background-color: #a5673f !important;
23078
+ color: #ffffff !important;
23079
+ }
23080
+
23081
+ /* Grey */
23082
+
23083
+ .ui.grey.table {
23084
+ border-top: 0.2em solid #767676;
23085
+ }
23086
+
23087
+ .ui.inverted.grey.table {
23088
+ background-color: #767676 !important;
23089
+ color: #ffffff !important;
23090
+ }
23091
+
23092
+ /* Black */
23093
+
23094
+ .ui.black.table {
23095
+ border-top: 0.2em solid #1b1c1d;
23096
+ }
23097
+
23098
+ .ui.inverted.black.table {
23099
+ background-color: #1b1c1d !important;
23100
+ color: #ffffff !important;
23101
+ }
23102
+
23103
+ /*--------------
23104
+ Column Count
23105
+ ---------------*/
23106
+
23107
+ /* Grid Based */
23108
+
23109
+ .ui.one.column.table td {
23110
+ width: 100%;
23111
+ }
23112
+
23113
+ .ui.two.column.table td {
23114
+ width: 50%;
23115
+ }
23116
+
23117
+ .ui.three.column.table td {
23118
+ width: 33.33333333%;
23119
+ }
23120
+
23121
+ .ui.four.column.table td {
23122
+ width: 25%;
23123
+ }
23124
+
23125
+ .ui.five.column.table td {
23126
+ width: 20%;
23127
+ }
23128
+
23129
+ .ui.six.column.table td {
23130
+ width: 16.66666667%;
23131
+ }
23132
+
23133
+ .ui.seven.column.table td {
23134
+ width: 14.28571429%;
23135
+ }
23136
+
23137
+ .ui.eight.column.table td {
23138
+ width: 12.5%;
23139
+ }
23140
+
23141
+ .ui.nine.column.table td {
23142
+ width: 11.11111111%;
23143
+ }
23144
+
23145
+ .ui.ten.column.table td {
23146
+ width: 10%;
23147
+ }
23148
+
23149
+ .ui.eleven.column.table td {
23150
+ width: 9.09090909%;
23151
+ }
23152
+
23153
+ .ui.twelve.column.table td {
23154
+ width: 8.33333333%;
23155
+ }
23156
+
23157
+ .ui.thirteen.column.table td {
23158
+ width: 7.69230769%;
23159
+ }
23160
+
23161
+ .ui.fourteen.column.table td {
23162
+ width: 7.14285714%;
23163
+ }
23164
+
23165
+ .ui.fifteen.column.table td {
23166
+ width: 6.66666667%;
23167
+ }
23168
+
23169
+ .ui.sixteen.column.table td {
23170
+ width: 6.25%;
23171
+ }
23172
+
23173
+ /* Column Width */
23174
+
23175
+ .ui.table th.one.wide,
23176
+ .ui.table td.one.wide {
23177
+ width: 6.25%;
23178
+ }
23179
+
23180
+ .ui.table th.two.wide,
23181
+ .ui.table td.two.wide {
23182
+ width: 12.5%;
23183
+ }
23184
+
23185
+ .ui.table th.three.wide,
23186
+ .ui.table td.three.wide {
23187
+ width: 18.75%;
23188
+ }
23189
+
23190
+ .ui.table th.four.wide,
23191
+ .ui.table td.four.wide {
23192
+ width: 25%;
23193
+ }
23194
+
23195
+ .ui.table th.five.wide,
23196
+ .ui.table td.five.wide {
23197
+ width: 31.25%;
23198
+ }
23199
+
23200
+ .ui.table th.six.wide,
23201
+ .ui.table td.six.wide {
23202
+ width: 37.5%;
23203
+ }
23204
+
23205
+ .ui.table th.seven.wide,
23206
+ .ui.table td.seven.wide {
23207
+ width: 43.75%;
23208
+ }
23209
+
23210
+ .ui.table th.eight.wide,
23211
+ .ui.table td.eight.wide {
23212
+ width: 50%;
23213
+ }
23214
+
23215
+ .ui.table th.nine.wide,
23216
+ .ui.table td.nine.wide {
23217
+ width: 56.25%;
23218
+ }
23219
+
23220
+ .ui.table th.ten.wide,
23221
+ .ui.table td.ten.wide {
23222
+ width: 62.5%;
23223
+ }
23224
+
23225
+ .ui.table th.eleven.wide,
23226
+ .ui.table td.eleven.wide {
23227
+ width: 68.75%;
23228
+ }
23229
+
23230
+ .ui.table th.twelve.wide,
23231
+ .ui.table td.twelve.wide {
23232
+ width: 75%;
23233
+ }
23234
+
23235
+ .ui.table th.thirteen.wide,
23236
+ .ui.table td.thirteen.wide {
23237
+ width: 81.25%;
23238
+ }
23239
+
23240
+ .ui.table th.fourteen.wide,
23241
+ .ui.table td.fourteen.wide {
23242
+ width: 87.5%;
23243
+ }
23244
+
23245
+ .ui.table th.fifteen.wide,
23246
+ .ui.table td.fifteen.wide {
23247
+ width: 93.75%;
23248
+ }
23249
+
23250
+ .ui.table th.sixteen.wide,
23251
+ .ui.table td.sixteen.wide {
23252
+ width: 100%;
23253
+ }
23254
+
23255
+ /*--------------
23256
+ Sortable
23257
+ ---------------*/
23258
+
23259
+ .ui.sortable.table thead th {
23260
+ cursor: pointer;
23261
+ white-space: nowrap;
23262
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
23263
+ color: rgba(0, 0, 0, 0.87);
23264
+ }
23265
+
23266
+ .ui.sortable.table thead th:first-child {
23267
+ border-left: none;
23268
+ }
23269
+
23270
+ .ui.sortable.table thead th.sorted,
23271
+ .ui.sortable.table thead th.sorted:hover {
23272
+ -webkit-user-select: none;
23273
+ -moz-user-select: none;
23274
+ -ms-user-select: none;
23275
+ user-select: none;
23276
+ }
23277
+
23278
+ .ui.sortable.table thead th:after {
23279
+ display: none;
23280
+ font-style: normal;
23281
+ font-weight: normal;
23282
+ text-decoration: inherit;
23283
+ content: '';
23284
+ height: 1em;
23285
+ width: auto;
23286
+ opacity: 0.8;
23287
+ margin: 0em 0em 0em 0.5em;
23288
+ font-family: 'Icons';
23289
+ }
23290
+
23291
+ .ui.sortable.table thead th.ascending:after {
23292
+ content: '\f0d8';
23293
+ }
23294
+
23295
+ .ui.sortable.table thead th.descending:after {
23296
+ content: '\f0d7';
23297
+ }
23298
+
23299
+ /* Hover */
23300
+
23301
+ .ui.sortable.table th.disabled:hover {
23302
+ cursor: auto;
23303
+ color: rgba(40, 40, 40, 0.3);
23304
+ }
23305
+
23306
+ .ui.sortable.table thead th:hover {
23307
+ background: rgba(0, 0, 0, 0.05);
23308
+ color: rgba(0, 0, 0, 0.8);
23309
+ }
23310
+
23311
+ /* Sorted */
23312
+
23313
+ .ui.sortable.table thead th.sorted {
23314
+ background: rgba(0, 0, 0, 0.05);
23315
+ color: rgba(0, 0, 0, 0.95);
23316
+ }
23317
+
23318
+ .ui.sortable.table thead th.sorted:after {
23319
+ display: inline-block;
23320
+ }
23321
+
23322
+ /* Sorted Hover */
23323
+
23324
+ .ui.sortable.table thead th.sorted:hover {
23325
+ background: rgba(0, 0, 0, 0.05);
23326
+ color: rgba(0, 0, 0, 0.95);
23327
+ }
23328
+
23329
+ /* Inverted */
23330
+
23331
+ .ui.inverted.sortable.table thead th.sorted {
23332
+ background: rgba(255, 255, 255, 0.15) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
23333
+ background: rgba(255, 255, 255, 0.15) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
23334
+ color: #ffffff;
23335
+ }
23336
+
23337
+ .ui.inverted.sortable.table thead th:hover {
23338
+ background: rgba(255, 255, 255, 0.08) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
23339
+ background: rgba(255, 255, 255, 0.08) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
23340
+ color: #ffffff;
23341
+ }
23342
+
23343
+ .ui.inverted.sortable.table thead th {
23344
+ border-left-color: transparent;
23345
+ border-right-color: transparent;
23346
+ }
23347
+
23348
+ /*--------------
23349
+ Inverted
23350
+ ---------------*/
23351
+
23352
+ /* Text Color */
23353
+
23354
+ .ui.inverted.table {
23355
+ background: #333333;
23356
+ color: rgba(255, 255, 255, 0.9);
23357
+ border: none;
23358
+ }
23359
+
23360
+ .ui.inverted.table th {
23361
+ background-color: rgba(0, 0, 0, 0.15);
23362
+ border-color: rgba(255, 255, 255, 0.1) !important;
23363
+ color: rgba(255, 255, 255, 0.9);
23364
+ }
23365
+
23366
+ .ui.inverted.table tr td {
23367
+ border-color: rgba(255, 255, 255, 0.1) !important;
23368
+ }
23369
+
23370
+ .ui.inverted.table tr.disabled td,
23371
+ .ui.inverted.table tr td.disabled,
23372
+ .ui.inverted.table tr.disabled:hover td,
23373
+ .ui.inverted.table tr:hover td.disabled {
23374
+ pointer-events: none;
23375
+ color: rgba(225, 225, 225, 0.3);
23376
+ }
23377
+
23378
+ /* Definition */
23379
+
23380
+ .ui.inverted.definition.table tfoot:not(.full-width) th:first-child,
23381
+ .ui.inverted.definition.table thead:not(.full-width) th:first-child {
23382
+ background: #ffffff;
23383
+ }
23384
+
23385
+ .ui.inverted.definition.table tr td:first-child {
23386
+ background: rgba(255, 255, 255, 0.02);
23387
+ color: #ffffff;
23388
+ }
23389
+
23390
+ /*--------------
23391
+ Collapsing
23392
+ ---------------*/
23393
+
23394
+ .ui.collapsing.table {
23395
+ width: auto;
23396
+ }
23397
+
23398
+ /*--------------
23399
+ Basic
23400
+ ---------------*/
23401
+
23402
+ .ui.basic.table {
23403
+ background: transparent;
23404
+ border: 1px solid rgba(34, 36, 38, 0.15);
23405
+ box-shadow: none;
23406
+ }
23407
+
23408
+ .ui.basic.table thead,
23409
+ .ui.basic.table tfoot {
23410
+ box-shadow: none;
23411
+ }
23412
+
23413
+ .ui.basic.table th {
23414
+ background: transparent;
23415
+ border-left: none;
23416
+ }
23417
+
23418
+ .ui.basic.table tbody tr {
23419
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
23420
+ }
23421
+
23422
+ .ui.basic.table td {
23423
+ background: transparent;
23424
+ }
23425
+
23426
+ .ui.basic.striped.table tbody tr:nth-child(2n) {
23427
+ background-color: rgba(0, 0, 0, 0.05) !important;
23428
+ }
23429
+
23430
+ /* Very Basic */
23431
+
23432
+ .ui[class*="very basic"].table {
23433
+ border: none;
23434
+ }
23435
+
23436
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) th,
23437
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) td {
23438
+ padding: '';
23439
+ }
23440
+
23441
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child,
23442
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child {
23443
+ padding-left: 0em;
23444
+ }
23445
+
23446
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child,
23447
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child {
23448
+ padding-right: 0em;
23449
+ }
23450
+
23451
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th {
23452
+ padding-top: 0em;
23453
+ }
23454
+
23455
+ /*--------------
23456
+ Celled
23457
+ ---------------*/
23458
+
23459
+ .ui.celled.table tr th,
23460
+ .ui.celled.table tr td {
23461
+ border-left: 1px solid rgba(34, 36, 38, 0.1);
23462
+ }
23463
+
23464
+ .ui.celled.table tr th:first-child,
23465
+ .ui.celled.table tr td:first-child {
23466
+ border-left: none;
23467
+ }
23468
+
23469
+ /*--------------
23470
+ Padded
23471
+ ---------------*/
23472
+
23473
+ .ui.padded.table th {
23474
+ padding-left: 1em;
23475
+ padding-right: 1em;
23476
+ }
23477
+
23478
+ .ui.padded.table th,
23479
+ .ui.padded.table td {
23480
+ padding: 1em 1em;
23481
+ }
23482
+
23483
+ /* Very */
23484
+
23485
+ .ui[class*="very padded"].table th {
23486
+ padding-left: 1.5em;
23487
+ padding-right: 1.5em;
23488
+ }
23489
+
23490
+ .ui[class*="very padded"].table td {
23491
+ padding: 1.5em 1.5em;
23492
+ }
23493
+
23494
+ /*--------------
23495
+ Compact
23496
+ ---------------*/
23497
+
23498
+ .ui.compact.table th {
23499
+ padding-left: 0.7em;
23500
+ padding-right: 0.7em;
23501
+ }
23502
+
23503
+ .ui.compact.table td {
23504
+ padding: 0.5em 0.7em;
23505
+ }
23506
+
23507
+ /* Very */
23508
+
23509
+ .ui[class*="very compact"].table th {
23510
+ padding-left: 0.6em;
23511
+ padding-right: 0.6em;
23512
+ }
23513
+
23514
+ .ui[class*="very compact"].table td {
23515
+ padding: 0.4em 0.6em;
23516
+ }
23517
+
23518
+ /*--------------
23519
+ Sizes
23520
+ ---------------*/
23521
+
23522
+ /* Small */
23523
+
23524
+ .ui.small.table {
23525
+ font-size: 0.9em;
23526
+ }
23527
+
23528
+ /* Standard */
23529
+
23530
+ .ui.table {
23531
+ font-size: 1em;
23532
+ }
23533
+
23534
+ /* Large */
23535
+
23536
+ .ui.large.table {
23537
+ font-size: 1.1em;
23538
+ }
23539
+
23540
+ /*******************************
23541
+ Site Overrides
23542
+ *******************************/
23543
+ /*!
23544
+ * # Semantic UI 2.1.7 - Ad
23545
+ * http://github.com/semantic-org/semantic-ui/
23546
+ *
23547
+ *
23548
+ * Copyright 2013 Contributors
23549
+ * Released under the MIT license
23550
+ * http://opensource.org/licenses/MIT
23551
+ *
23552
+ */
23553
+
23554
+ /*******************************
23555
+ Advertisement
23556
+ *******************************/
23557
+
23558
+ .ui.ad {
23559
+ display: block;
23560
+ overflow: hidden;
23561
+ margin: 1em 0em;
23562
+ }
23563
+
23564
+ .ui.ad:first-child {
23565
+ margin: 0em;
23566
+ }
23567
+
23568
+ .ui.ad:last-child {
23569
+ margin: 0em;
23570
+ }
23571
+
23572
+ .ui.ad iframe {
23573
+ margin: 0em;
23574
+ padding: 0em;
23575
+ border: none;
23576
+ overflow: hidden;
23577
+ }
23578
+
23579
+ /*--------------
23580
+ Common
23581
+ ---------------*/
23582
+
23583
+ /* Leaderboard */
23584
+
23585
+ .ui.leaderboard.ad {
23586
+ width: 728px;
23587
+ height: 90px;
23588
+ }
23589
+
23590
+ /* Medium Rectangle */
23591
+
23592
+ .ui[class*="medium rectangle"].ad {
23593
+ width: 300px;
23594
+ height: 250px;
23595
+ }
23596
+
23597
+ /* Large Rectangle */
23598
+
23599
+ .ui[class*="large rectangle"].ad {
23600
+ width: 336px;
23601
+ height: 280px;
23602
+ }
23603
+
23604
+ /* Half Page */
23605
+
23606
+ .ui[class*="half page"].ad {
23607
+ width: 300px;
23608
+ height: 600px;
23609
+ }
23610
+
23611
+ /*--------------
23612
+ Square
23613
+ ---------------*/
23614
+
23615
+ /* Square */
23616
+
23617
+ .ui.square.ad {
23618
+ width: 250px;
23619
+ height: 250px;
23620
+ }
23621
+
23622
+ /* Small Square */
23623
+
23624
+ .ui[class*="small square"].ad {
23625
+ width: 200px;
23626
+ height: 200px;
23627
+ }
23628
+
23629
+ /*--------------
23630
+ Rectangle
23631
+ ---------------*/
23632
+
23633
+ /* Small Rectangle */
23634
+
23635
+ .ui[class*="small rectangle"].ad {
23636
+ width: 180px;
23637
+ height: 150px;
23638
+ }
23639
+
23640
+ /* Vertical Rectangle */
23641
+
23642
+ .ui[class*="vertical rectangle"].ad {
23643
+ width: 240px;
23644
+ height: 400px;
23645
+ }
23646
+
23647
+ /*--------------
23648
+ Button
23649
+ ---------------*/
23650
+
23651
+ .ui.button.ad {
23652
+ width: 120px;
23653
+ height: 90px;
23654
+ }
23655
+
23656
+ .ui[class*="square button"].ad {
23657
+ width: 125px;
23658
+ height: 125px;
23659
+ }
23660
+
23661
+ .ui[class*="small button"].ad {
23662
+ width: 120px;
23663
+ height: 60px;
23664
+ }
23665
+
23666
+ /*--------------
23667
+ Skyscrapers
23668
+ ---------------*/
23669
+
23670
+ /* Skyscraper */
23671
+
23672
+ .ui.skyscraper.ad {
23673
+ width: 120px;
23674
+ height: 600px;
23675
+ }
23676
+
23677
+ /* Wide Skyscraper */
23678
+
23679
+ .ui[class*="wide skyscraper"].ad {
23680
+ width: 160px;
23681
+ }
23682
+
23683
+ /*--------------
23684
+ Banners
23685
+ ---------------*/
23686
+
23687
+ /* Banner */
23688
+
23689
+ .ui.banner.ad {
23690
+ width: 468px;
23691
+ height: 60px;
23692
+ }
23693
+
23694
+ /* Vertical Banner */
23695
+
23696
+ .ui[class*="vertical banner"].ad {
23697
+ width: 120px;
23698
+ height: 240px;
23699
+ }
23700
+
23701
+ /* Top Banner */
23702
+
23703
+ .ui[class*="top banner"].ad {
23704
+ width: 930px;
23705
+ height: 180px;
23706
+ }
23707
+
23708
+ /* Half Banner */
23709
+
23710
+ .ui[class*="half banner"].ad {
23711
+ width: 234px;
23712
+ height: 60px;
23713
+ }
23714
+
23715
+ /*--------------
23716
+ Boards
23717
+ ---------------*/
23718
+
23719
+ /* Leaderboard */
23720
+
23721
+ .ui[class*="large leaderboard"].ad {
23722
+ width: 970px;
23723
+ height: 90px;
23724
+ }
23725
+
23726
+ /* Billboard */
23727
+
23728
+ .ui.billboard.ad {
23729
+ width: 970px;
23730
+ height: 250px;
23731
+ }
23732
+
23733
+ /*--------------
23734
+ Panorama
23735
+ ---------------*/
23736
+
23737
+ /* Panorama */
23738
+
23739
+ .ui.panorama.ad {
23740
+ width: 980px;
23741
+ height: 120px;
23742
+ }
23743
+
23744
+ /*--------------
23745
+ Netboard
23746
+ ---------------*/
23747
+
23748
+ /* Netboard */
23749
+
23750
+ .ui.netboard.ad {
23751
+ width: 580px;
23752
+ height: 400px;
23753
+ }
23754
+
23755
+ /*--------------
23756
+ Mobile
23757
+ ---------------*/
23758
+
23759
+ /* Large Mobile Banner */
23760
+
23761
+ .ui[class*="large mobile banner"].ad {
23762
+ width: 320px;
23763
+ height: 100px;
23764
+ }
23765
+
23766
+ /* Mobile Leaderboard */
23767
+
23768
+ .ui[class*="mobile leaderboard"].ad {
23769
+ width: 320px;
23770
+ height: 50px;
23771
+ }
23772
+
23773
+ /*******************************
23774
+ Types
23775
+ *******************************/
23776
+
23777
+ /* Mobile Sizes */
23778
+
23779
+ .ui.mobile.ad {
23780
+ display: none;
23781
+ }
23782
+
23783
+ @media only screen and (max-width: 767px) {
23784
+ .ui.mobile.ad {
23785
+ display: block;
23786
+ }
23787
+ }
23788
+
23789
+ /*******************************
23790
+ Variations
23791
+ *******************************/
23792
+
23793
+ .ui.centered.ad {
23794
+ margin-left: auto;
23795
+ margin-right: auto;
23796
+ }
23797
+
23798
+ .ui.test.ad {
23799
+ position: relative;
23800
+ background: #545454;
23801
+ }
23802
+
23803
+ .ui.test.ad:after {
23804
+ position: absolute;
23805
+ top: 50%;
23806
+ left: 50%;
23807
+ width: 100%;
23808
+ text-align: center;
23809
+ -webkit-transform: translateX(-50%) translateY(-50%);
23810
+ -ms-transform: translateX(-50%) translateY(-50%);
23811
+ transform: translateX(-50%) translateY(-50%);
23812
+ content: 'Ad';
23813
+ color: #ffffff;
23814
+ font-size: 1em;
23815
+ font-weight: bold;
23816
+ }
23817
+
23818
+ .ui.mobile.test.ad:after {
23819
+ font-size: 0.85714286em;
23820
+ }
23821
+
23822
+ .ui.test.ad[data-text]:after {
23823
+ content: attr(data-text);
23824
+ }
23825
+
23826
+ /*******************************
23827
+ Theme Overrides
23828
+ *******************************/
23829
+
23830
+ /*******************************
23831
+ User Variable Overrides
23832
+ *******************************/
23833
+ /*!
23834
+ * # Semantic UI 2.1.7 - Item
23835
+ * http://github.com/semantic-org/semantic-ui/
23836
+ *
23837
+ *
23838
+ * Copyright 2015 Contributors
23839
+ * Released under the MIT license
23840
+ * http://opensource.org/licenses/MIT
23841
+ *
23842
+ */
23843
+
23844
+ /*******************************
23845
+ Standard
23846
+ *******************************/
23847
+
23848
+ /*--------------
23849
+ Card
23850
+ ---------------*/
23851
+
23852
+ .ui.cards > .card,
23853
+ .ui.card {
23854
+ max-width: 100%;
23855
+ position: relative;
23856
+ display: -webkit-box;
23857
+ display: -webkit-flex;
23858
+ display: -ms-flexbox;
23859
+ display: flex;
23860
+ -webkit-box-orient: vertical;
23861
+ -webkit-box-direction: normal;
23862
+ -webkit-flex-direction: column;
23863
+ -ms-flex-direction: column;
23864
+ flex-direction: column;
23865
+ width: 290px;
23866
+ min-height: 0px;
23867
+ background: #ffffff;
23868
+ padding: 0em;
23869
+ border: none;
23870
+ border-radius: 0.28571429rem;
23871
+ box-shadow: 0px 1px 3px 0px #d4d4d5, 0px 0px 0px 1px #d4d4d5;
23872
+ -webkit-transition: box-shadow 0.1s ease, -webkit-transform 0.1s ease;
23873
+ transition: box-shadow 0.1s ease, transform 0.1s ease;
23874
+ z-index: '';
23875
+ }
23876
+
23877
+ .ui.card {
23878
+ margin: 1em 0em;
23879
+ }
23880
+
23881
+ .ui.cards > .card a,
23882
+ .ui.card a {
23883
+ cursor: pointer;
23884
+ }
23885
+
23886
+ .ui.card:first-child {
23887
+ margin-top: 0em;
23888
+ }
23889
+
23890
+ .ui.card:last-child {
23891
+ margin-bottom: 0em;
23892
+ }
23893
+
23894
+ /*--------------
23895
+ Cards
23896
+ ---------------*/
23897
+
23898
+ .ui.cards {
23899
+ display: -webkit-box;
23900
+ display: -webkit-flex;
23901
+ display: -ms-flexbox;
23902
+ display: flex;
23903
+ margin: -0.875em -0.5em;
23904
+ -webkit-flex-wrap: wrap;
23905
+ -ms-flex-wrap: wrap;
23906
+ flex-wrap: wrap;
23907
+ }
23908
+
23909
+ .ui.cards > .card {
23910
+ display: -webkit-box;
23911
+ display: -webkit-flex;
23912
+ display: -ms-flexbox;
23913
+ display: flex;
23914
+ margin: 0.875em 0.5em;
23915
+ float: none;
23916
+ }
23917
+
23918
+ /* Clearing */
23919
+
23920
+ .ui.cards:after,
23921
+ .ui.card:after {
23922
+ display: block;
23923
+ content: ' ';
23924
+ height: 0px;
23925
+ clear: both;
23926
+ overflow: hidden;
23927
+ visibility: hidden;
23928
+ }
23929
+
23930
+ /* Consecutive Card Groups Preserve Row Spacing */
23931
+
23932
+ .ui.cards ~ .ui.cards {
23933
+ margin-top: 0.875em;
23934
+ }
23935
+
23936
+ /*--------------
23937
+ Rounded Edges
23938
+ ---------------*/
23939
+
23940
+ .ui.cards > .card > :first-child,
23941
+ .ui.card > :first-child {
23942
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em !important;
23943
+ border-top: none !important;
23944
+ }
23945
+
23946
+ .ui.cards > .card > :last-child,
23947
+ .ui.card > :last-child {
23948
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem !important;
23949
+ }
23950
+
23951
+ .ui.cards > .card > :only-child,
23952
+ .ui.card > :only-child {
23953
+ border-radius: 0.28571429rem !important;
23954
+ }
23955
+
23956
+ /*--------------
23957
+ Images
23958
+ ---------------*/
23959
+
23960
+ .ui.cards > .card > .image,
23961
+ .ui.card > .image {
23962
+ position: relative;
23963
+ display: block;
23964
+ -webkit-box-flex: 0;
23965
+ -webkit-flex: 0 0 auto;
23966
+ -ms-flex: 0 0 auto;
23967
+ flex: 0 0 auto;
23968
+ padding: 0em;
23969
+ background: rgba(0, 0, 0, 0.05);
23970
+ }
23971
+
23972
+ .ui.cards > .card > .image > img,
23973
+ .ui.card > .image > img {
23974
+ display: block;
23975
+ width: 100%;
23976
+ height: auto;
23977
+ border-radius: inherit;
23978
+ }
23979
+
23980
+ .ui.cards > .card > .image:not(.ui) > img,
23981
+ .ui.card > .image:not(.ui) > img {
23982
+ border: none;
23983
+ }
23984
+
23985
+ /*--------------
23986
+ Content
23987
+ ---------------*/
23988
+
23989
+ .ui.cards > .card > .content,
23990
+ .ui.card > .content {
23991
+ -webkit-box-flex: 1;
23992
+ -webkit-flex-grow: 1;
23993
+ -ms-flex-positive: 1;
23994
+ flex-grow: 1;
23995
+ border: none;
23996
+ border-top: 1px solid rgba(34, 36, 38, 0.1);
23997
+ background: none;
23998
+ margin: 0em;
23999
+ padding: 1em 1em;
24000
+ box-shadow: none;
24001
+ font-size: 1em;
24002
+ border-radius: 0em;
24003
+ }
24004
+
24005
+ .ui.cards > .card > .content:after,
24006
+ .ui.card > .content:after {
24007
+ display: block;
24008
+ content: ' ';
24009
+ height: 0px;
24010
+ clear: both;
24011
+ overflow: hidden;
24012
+ visibility: hidden;
24013
+ }
24014
+
24015
+ .ui.cards > .card > .content > .header,
24016
+ .ui.card > .content > .header {
24017
+ display: block;
24018
+ margin: '';
24019
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
24020
+ color: rgba(0, 0, 0, 0.85);
24021
+ }
24022
+
24023
+ /* Default Header Size */
24024
+
24025
+ .ui.cards > .card > .content > .header:not(.ui),
24026
+ .ui.card > .content > .header:not(.ui) {
24027
+ font-weight: bold;
24028
+ font-size: 1.28571429em;
24029
+ margin-top: -0.21425em;
24030
+ line-height: 1.2857em;
24031
+ }
24032
+
24033
+ .ui.cards > .card > .content > .meta + .description,
24034
+ .ui.cards > .card > .content > .header + .description,
24035
+ .ui.card > .content > .meta + .description,
24036
+ .ui.card > .content > .header + .description {
24037
+ margin-top: 0.5em;
24038
+ }
24039
+
24040
+ /*----------------
24041
+ Floated Content
24042
+ -----------------*/
24043
+
24044
+ .ui.cards > .card [class*="left floated"],
24045
+ .ui.card [class*="left floated"] {
24046
+ float: left;
24047
+ }
24048
+
24049
+ .ui.cards > .card [class*="right floated"],
24050
+ .ui.card [class*="right floated"] {
24051
+ float: right;
24052
+ }
24053
+
24054
+ /*--------------
24055
+ Aligned
24056
+ ---------------*/
24057
+
24058
+ .ui.cards > .card [class*="left aligned"],
24059
+ .ui.card [class*="left aligned"] {
24060
+ text-align: left;
24061
+ }
24062
+
24063
+ .ui.cards > .card [class*="center aligned"],
24064
+ .ui.card [class*="center aligned"] {
24065
+ text-align: center;
24066
+ }
24067
+
24068
+ .ui.cards > .card [class*="right aligned"],
24069
+ .ui.card [class*="right aligned"] {
24070
+ text-align: right;
24071
+ }
24072
+
24073
+ /*--------------
24074
+ Content Image
24075
+ ---------------*/
24076
+
24077
+ .ui.cards > .card .content img,
24078
+ .ui.card .content img {
24079
+ display: inline-block;
24080
+ vertical-align: middle;
24081
+ width: '';
24082
+ }
24083
+
24084
+ .ui.cards > .card img.avatar,
24085
+ .ui.cards > .card .avatar img,
24086
+ .ui.card img.avatar,
24087
+ .ui.card .avatar img {
24088
+ width: 2em;
24089
+ height: 2em;
24090
+ border-radius: 500rem;
24091
+ }
24092
+
24093
+ /*--------------
24094
+ Description
24095
+ ---------------*/
24096
+
24097
+ .ui.cards > .card > .content > .description,
24098
+ .ui.card > .content > .description {
24099
+ clear: both;
24100
+ color: rgba(0, 0, 0, 0.68);
24101
+ }
24102
+
24103
+ /*--------------
24104
+ Paragraph
24105
+ ---------------*/
24106
+
24107
+ .ui.cards > .card > .content p,
24108
+ .ui.card > .content p {
24109
+ margin: 0em 0em 0.5em;
24110
+ }
24111
+
24112
+ .ui.cards > .card > .content p:last-child,
24113
+ .ui.card > .content p:last-child {
24114
+ margin-bottom: 0em;
24115
+ }
24116
+
24117
+ /*--------------
24118
+ Meta
24119
+ ---------------*/
24120
+
24121
+ .ui.cards > .card .meta,
24122
+ .ui.card .meta {
24123
+ font-size: 1em;
24124
+ color: rgba(0, 0, 0, 0.4);
24125
+ }
24126
+
24127
+ .ui.cards > .card .meta *,
24128
+ .ui.card .meta * {
24129
+ margin-right: 0.3em;
24130
+ }
24131
+
24132
+ .ui.cards > .card .meta :last-child,
24133
+ .ui.card .meta :last-child {
24134
+ margin-right: 0em;
24135
+ }
24136
+
24137
+ .ui.cards > .card .meta [class*="right floated"],
24138
+ .ui.card .meta [class*="right floated"] {
24139
+ margin-right: 0em;
24140
+ margin-left: 0.3em;
24141
+ }
24142
+
24143
+ /*--------------
24144
+ Links
24145
+ ---------------*/
24146
+
24147
+ /* Generic */
24148
+
24149
+ .ui.cards > .card > .content a:not(.ui),
24150
+ .ui.card > .content a:not(.ui) {
24151
+ color: '';
24152
+ -webkit-transition: color 0.1s ease;
24153
+ transition: color 0.1s ease;
24154
+ }
24155
+
24156
+ .ui.cards > .card > .content a:not(.ui):hover,
24157
+ .ui.card > .content a:not(.ui):hover {
24158
+ color: '';
24159
+ }
24160
+
24161
+ /* Header */
24162
+
24163
+ .ui.cards > .card > .content > a.header,
24164
+ .ui.card > .content > a.header {
24165
+ color: rgba(0, 0, 0, 0.85);
24166
+ }
24167
+
24168
+ .ui.cards > .card > .content > a.header:hover,
24169
+ .ui.card > .content > a.header:hover {
24170
+ color: #1e70bf;
24171
+ }
24172
+
24173
+ /* Meta */
24174
+
24175
+ .ui.cards > .card .meta > a:not(.ui),
24176
+ .ui.card .meta > a:not(.ui) {
24177
+ color: rgba(0, 0, 0, 0.4);
24178
+ }
24179
+
24180
+ .ui.cards > .card .meta > a:not(.ui):hover,
24181
+ .ui.card .meta > a:not(.ui):hover {
24182
+ color: rgba(0, 0, 0, 0.87);
24183
+ }
24184
+
24185
+ /*--------------
24186
+ Buttons
24187
+ ---------------*/
24188
+
24189
+ .ui.cards > .card > .buttons,
24190
+ .ui.card > .buttons,
24191
+ .ui.cards > .card > .button,
24192
+ .ui.card > .button {
24193
+ margin: 0px -1px;
24194
+ width: calc(100% + 2px );
24195
+ }
24196
+
24197
+ /*--------------
24198
+ Dimmer
24199
+ ---------------*/
24200
+
24201
+ .ui.cards > .card .dimmer,
24202
+ .ui.card .dimmer {
24203
+ background-color: '';
24204
+ z-index: 10;
24205
+ }
24206
+
24207
+ /*--------------
24208
+ Labels
24209
+ ---------------*/
24210
+
24211
+ /*-----Star----- */
24212
+
24213
+ /* Icon */
24214
+
24215
+ .ui.cards > .card > .content .star.icon,
24216
+ .ui.card > .content .star.icon {
24217
+ cursor: pointer;
24218
+ opacity: 0.75;
24219
+ -webkit-transition: color 0.1s ease;
24220
+ transition: color 0.1s ease;
24221
+ }
24222
+
24223
+ .ui.cards > .card > .content .star.icon:hover,
24224
+ .ui.card > .content .star.icon:hover {
24225
+ opacity: 1;
24226
+ color: #ffb70a;
24227
+ }
24228
+
24229
+ .ui.cards > .card > .content .active.star.icon,
24230
+ .ui.card > .content .active.star.icon {
24231
+ color: #ffe623;
24232
+ }
24233
+
24234
+ /*-----Like----- */
24235
+
24236
+ /* Icon */
24237
+
24238
+ .ui.cards > .card > .content .like.icon,
24239
+ .ui.card > .content .like.icon {
24240
+ cursor: pointer;
24241
+ opacity: 0.75;
24242
+ -webkit-transition: color 0.1s ease;
24243
+ transition: color 0.1s ease;
24244
+ }
24245
+
24246
+ .ui.cards > .card > .content .like.icon:hover,
24247
+ .ui.card > .content .like.icon:hover {
24248
+ opacity: 1;
24249
+ color: #ff2733;
24250
+ }
24251
+
24252
+ .ui.cards > .card > .content .active.like.icon,
24253
+ .ui.card > .content .active.like.icon {
24254
+ color: #ff2733;
24255
+ }
24256
+
24257
+ /*----------------
24258
+ Extra Content
24259
+ -----------------*/
24260
+
24261
+ .ui.cards > .card > .extra,
24262
+ .ui.card > .extra {
24263
+ max-width: 100%;
24264
+ min-height: 0em !important;
24265
+ -webkit-box-flex: 0;
24266
+ -webkit-flex-grow: 0;
24267
+ -ms-flex-positive: 0;
24268
+ flex-grow: 0;
24269
+ border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
24270
+ position: static;
24271
+ background: none;
24272
+ width: auto;
24273
+ margin: 0em 0em;
24274
+ padding: 0.75em 1em;
24275
+ top: 0em;
24276
+ left: 0em;
24277
+ color: rgba(0, 0, 0, 0.4);
24278
+ box-shadow: none;
24279
+ -webkit-transition: color 0.1s ease;
24280
+ transition: color 0.1s ease;
24281
+ }
24282
+
24283
+ .ui.cards > .card > .extra a:not(.ui),
24284
+ .ui.card > .extra a:not(.ui) {
24285
+ color: rgba(0, 0, 0, 0.4);
24286
+ }
24287
+
24288
+ .ui.cards > .card > .extra a:not(.ui):hover,
24289
+ .ui.card > .extra a:not(.ui):hover {
24290
+ color: #1e70bf;
24291
+ }
24292
+
24293
+ /*******************************
24294
+ Variations
24295
+ *******************************/
24296
+
24297
+ /*-------------------
24298
+ Centered
24299
+ --------------------*/
24300
+
24301
+ .ui.centered.cards {
24302
+ -webkit-box-pack: center;
24303
+ -webkit-justify-content: center;
24304
+ -ms-flex-pack: center;
24305
+ justify-content: center;
24306
+ }
24307
+
24308
+ .ui.centered.card {
24309
+ margin-left: auto;
24310
+ margin-right: auto;
24311
+ }
24312
+
24313
+ /*-------------------
24314
+ Fluid
24315
+ --------------------*/
24316
+
24317
+ .ui.fluid.card {
24318
+ width: 100%;
24319
+ max-width: 9999px;
24320
+ }
24321
+
24322
+ /*-------------------
24323
+ Link
24324
+ --------------------*/
24325
+
24326
+ .ui.cards a.card,
24327
+ .ui.link.cards .card,
24328
+ a.ui.card,
24329
+ .ui.link.card {
24330
+ -webkit-transform: none;
24331
+ -ms-transform: none;
24332
+ transform: none;
24333
+ }
24334
+
24335
+ .ui.cards a.card:hover,
24336
+ .ui.link.cards .card:hover,
24337
+ a.ui.card:hover,
24338
+ .ui.link.card:hover {
24339
+ cursor: pointer;
24340
+ z-index: 5;
24341
+ background: #ffffff;
24342
+ border: none;
24343
+ box-shadow: 0px 1px 3px 0px #bcbdbd, 0px 0px 0px 1px #d4d4d5;
24344
+ -webkit-transform: translateY(-3px);
24345
+ -ms-transform: translateY(-3px);
24346
+ transform: translateY(-3px);
24347
+ }
24348
+
24349
+ /*-------------------
24350
+ Colors
24351
+ --------------------*/
24352
+
24353
+ /* Red */
24354
+
24355
+ .ui.red.cards > .card,
24356
+ .ui.cards > .red.card,
24357
+ .ui.red.card {
24358
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #db2828, 0px 1px 3px 0px #d4d4d5;
24359
+ }
24360
+
24361
+ .ui.red.cards > .card:hover,
24362
+ .ui.cards > .red.card:hover,
24363
+ .ui.red.card:hover {
24364
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #d01919, 0px 1px 3px 0px #bcbdbd;
24365
+ }
24366
+
24367
+ /* Orange */
24368
+
24369
+ .ui.orange.cards > .card,
24370
+ .ui.cards > .orange.card,
24371
+ .ui.orange.card {
24372
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #f2711c, 0px 1px 3px 0px #d4d4d5;
24373
+ }
24374
+
24375
+ .ui.orange.cards > .card:hover,
24376
+ .ui.cards > .orange.card:hover,
24377
+ .ui.orange.card:hover {
24378
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #f26202, 0px 1px 3px 0px #bcbdbd;
24379
+ }
24380
+
24381
+ /* Yellow */
24382
+
24383
+ .ui.yellow.cards > .card,
24384
+ .ui.cards > .yellow.card,
24385
+ .ui.yellow.card {
24386
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #fbbd08, 0px 1px 3px 0px #d4d4d5;
24387
+ }
24388
+
24389
+ .ui.yellow.cards > .card:hover,
24390
+ .ui.cards > .yellow.card:hover,
24391
+ .ui.yellow.card:hover {
24392
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #eaae00, 0px 1px 3px 0px #bcbdbd;
24393
+ }
24394
+
24395
+ /* Olive */
24396
+
24397
+ .ui.olive.cards > .card,
24398
+ .ui.cards > .olive.card,
24399
+ .ui.olive.card {
24400
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #b5cc18, 0px 1px 3px 0px #d4d4d5;
24401
+ }
24402
+
24403
+ .ui.olive.cards > .card:hover,
24404
+ .ui.cards > .olive.card:hover,
24405
+ .ui.olive.card:hover {
24406
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #a7bd0d, 0px 1px 3px 0px #bcbdbd;
24407
+ }
24408
+
24409
+ /* Green */
24410
+
24411
+ .ui.green.cards > .card,
24412
+ .ui.cards > .green.card,
24413
+ .ui.green.card {
24414
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #21ba45, 0px 1px 3px 0px #d4d4d5;
24415
+ }
24416
+
24417
+ .ui.green.cards > .card:hover,
24418
+ .ui.cards > .green.card:hover,
24419
+ .ui.green.card:hover {
24420
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #16ab39, 0px 1px 3px 0px #bcbdbd;
24421
+ }
24422
+
24423
+ /* Teal */
24424
+
24425
+ .ui.teal.cards > .card,
24426
+ .ui.cards > .teal.card,
24427
+ .ui.teal.card {
24428
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #00b5ad, 0px 1px 3px 0px #d4d4d5;
24429
+ }
24430
+
24431
+ .ui.teal.cards > .card:hover,
24432
+ .ui.cards > .teal.card:hover,
24433
+ .ui.teal.card:hover {
24434
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #009c95, 0px 1px 3px 0px #bcbdbd;
24435
+ }
24436
+
24437
+ /* Blue */
24438
+
24439
+ .ui.blue.cards > .card,
24440
+ .ui.cards > .blue.card,
24441
+ .ui.blue.card {
24442
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #2185d0, 0px 1px 3px 0px #d4d4d5;
24443
+ }
24444
+
24445
+ .ui.blue.cards > .card:hover,
24446
+ .ui.cards > .blue.card:hover,
24447
+ .ui.blue.card:hover {
24448
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #1678c2, 0px 1px 3px 0px #bcbdbd;
24449
+ }
24450
+
24451
+ /* Violet */
24452
+
24453
+ .ui.violet.cards > .card,
24454
+ .ui.cards > .violet.card,
24455
+ .ui.violet.card {
24456
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #6435c9, 0px 1px 3px 0px #d4d4d5;
24457
+ }
24458
+
24459
+ .ui.violet.cards > .card:hover,
24460
+ .ui.cards > .violet.card:hover,
24461
+ .ui.violet.card:hover {
24462
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #5829bb, 0px 1px 3px 0px #bcbdbd;
24463
+ }
24464
+
24465
+ /* Purple */
24466
+
24467
+ .ui.purple.cards > .card,
24468
+ .ui.cards > .purple.card,
24469
+ .ui.purple.card {
24470
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #a333c8, 0px 1px 3px 0px #d4d4d5;
24471
+ }
24472
+
24473
+ .ui.purple.cards > .card:hover,
24474
+ .ui.cards > .purple.card:hover,
24475
+ .ui.purple.card:hover {
24476
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #9627ba, 0px 1px 3px 0px #bcbdbd;
24477
+ }
24478
+
24479
+ /* Pink */
24480
+
24481
+ .ui.pink.cards > .card,
24482
+ .ui.cards > .pink.card,
24483
+ .ui.pink.card {
24484
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #e03997, 0px 1px 3px 0px #d4d4d5;
24485
+ }
24486
+
24487
+ .ui.pink.cards > .card:hover,
24488
+ .ui.cards > .pink.card:hover,
24489
+ .ui.pink.card:hover {
24490
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #e61a8d, 0px 1px 3px 0px #bcbdbd;
24491
+ }
24492
+
24493
+ /* Brown */
24494
+
24495
+ .ui.brown.cards > .card,
24496
+ .ui.cards > .brown.card,
24497
+ .ui.brown.card {
24498
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #a5673f, 0px 1px 3px 0px #d4d4d5;
24499
+ }
24500
+
24501
+ .ui.brown.cards > .card:hover,
24502
+ .ui.cards > .brown.card:hover,
24503
+ .ui.brown.card:hover {
24504
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #975b33, 0px 1px 3px 0px #bcbdbd;
24505
+ }
24506
+
24507
+ /* Grey */
24508
+
24509
+ .ui.grey.cards > .card,
24510
+ .ui.cards > .grey.card,
24511
+ .ui.grey.card {
24512
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #767676, 0px 1px 3px 0px #d4d4d5;
24513
+ }
24514
+
24515
+ .ui.grey.cards > .card:hover,
24516
+ .ui.cards > .grey.card:hover,
24517
+ .ui.grey.card:hover {
24518
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #838383, 0px 1px 3px 0px #bcbdbd;
24519
+ }
24520
+
24521
+ /* Black */
24522
+
24523
+ .ui.black.cards > .card,
24524
+ .ui.cards > .black.card,
24525
+ .ui.black.card {
24526
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #1b1c1d, 0px 1px 3px 0px #d4d4d5;
24527
+ }
24528
+
24529
+ .ui.black.cards > .card:hover,
24530
+ .ui.cards > .black.card:hover,
24531
+ .ui.black.card:hover {
24532
+ box-shadow: 0px 0px 0px 1px #d4d4d5, 0px 2px 0px 0px #27292a, 0px 1px 3px 0px #bcbdbd;
24533
+ }
24534
+
24535
+ /*--------------
24536
+ Card Count
24537
+ ---------------*/
24538
+
24539
+ .ui.one.cards {
24540
+ margin-left: 0em;
24541
+ margin-right: 0em;
24542
+ }
24543
+
24544
+ .ui.one.cards > .card {
24545
+ width: 100%;
24546
+ }
24547
+
24548
+ .ui.two.cards {
24549
+ margin-left: -1em;
24550
+ margin-right: -1em;
24551
+ }
24552
+
24553
+ .ui.two.cards > .card {
24554
+ width: calc( 50% - 2em );
24555
+ margin-left: 1em;
24556
+ margin-right: 1em;
24557
+ }
24558
+
24559
+ .ui.three.cards {
24560
+ margin-left: -1em;
24561
+ margin-right: -1em;
24562
+ }
24563
+
24564
+ .ui.three.cards > .card {
24565
+ width: calc( 33.33333333% - 2em );
24566
+ margin-left: 1em;
24567
+ margin-right: 1em;
24568
+ }
24569
+
24570
+ .ui.four.cards {
24571
+ margin-left: -0.75em;
24572
+ margin-right: -0.75em;
24573
+ }
24574
+
24575
+ .ui.four.cards > .card {
24576
+ width: calc( 25% - 1.5em );
24577
+ margin-left: 0.75em;
24578
+ margin-right: 0.75em;
24579
+ }
24580
+
24581
+ .ui.five.cards {
24582
+ margin-left: -0.75em;
24583
+ margin-right: -0.75em;
24584
+ }
24585
+
24586
+ .ui.five.cards > .card {
24587
+ width: calc( 20% - 1.5em );
24588
+ margin-left: 0.75em;
24589
+ margin-right: 0.75em;
24590
+ }
24591
+
24592
+ .ui.six.cards {
24593
+ margin-left: -0.75em;
24594
+ margin-right: -0.75em;
24595
+ }
24596
+
24597
+ .ui.six.cards > .card {
24598
+ width: calc( 16.66666667% - 1.5em );
24599
+ margin-left: 0.75em;
24600
+ margin-right: 0.75em;
24601
+ }
24602
+
24603
+ .ui.seven.cards {
24604
+ margin-left: -0.5em;
24605
+ margin-right: -0.5em;
24606
+ }
24607
+
24608
+ .ui.seven.cards > .card {
24609
+ width: calc( 14.28571429% - 1em );
24610
+ margin-left: 0.5em;
24611
+ margin-right: 0.5em;
24612
+ }
24613
+
24614
+ .ui.eight.cards {
24615
+ margin-left: -0.5em;
24616
+ margin-right: -0.5em;
24617
+ }
24618
+
24619
+ .ui.eight.cards > .card {
24620
+ width: calc( 12.5% - 1em );
24621
+ margin-left: 0.5em;
24622
+ margin-right: 0.5em;
24623
+ font-size: 11px;
24624
+ }
24625
+
24626
+ .ui.nine.cards {
24627
+ margin-left: -0.5em;
24628
+ margin-right: -0.5em;
24629
+ }
24630
+
24631
+ .ui.nine.cards > .card {
24632
+ width: calc( 11.11111111% - 1em );
24633
+ margin-left: 0.5em;
24634
+ margin-right: 0.5em;
24635
+ font-size: 10px;
24636
+ }
24637
+
24638
+ .ui.ten.cards {
24639
+ margin-left: -0.5em;
24640
+ margin-right: -0.5em;
24641
+ }
24642
+
24643
+ .ui.ten.cards > .card {
24644
+ width: calc( 10% - 1em );
24645
+ margin-left: 0.5em;
24646
+ margin-right: 0.5em;
24647
+ }
24648
+
24649
+ /*-------------------
24650
+ Doubling
24651
+ --------------------*/
24652
+
24653
+ /* Mobily Only */
24654
+
24655
+ @media only screen and (max-width: 767px) {
24656
+ .ui.two.doubling.cards {
24657
+ margin-left: 0em;
24658
+ margin-right: 0em;
24659
+ }
24660
+
24661
+ .ui.two.doubling.cards .card {
24662
+ width: 100%;
24663
+ margin-left: 0em;
24664
+ margin-right: 0em;
24665
+ }
24666
+
24667
+ .ui.three.doubling.cards {
24668
+ margin-left: -1em;
24669
+ margin-right: -1em;
24670
+ }
24671
+
24672
+ .ui.three.doubling.cards .card {
24673
+ width: calc( 50% - 2em );
24674
+ margin-left: 1em;
24675
+ margin-right: 1em;
24676
+ }
24677
+
24678
+ .ui.four.doubling.cards {
24679
+ margin-left: -1em;
24680
+ margin-right: -1em;
24681
+ }
24682
+
24683
+ .ui.four.doubling.cards .card {
24684
+ width: calc( 50% - 2em );
24685
+ margin-left: 1em;
24686
+ margin-right: 1em;
24687
+ }
24688
+
24689
+ .ui.five.doubling.cards {
24690
+ margin-left: -1em;
24691
+ margin-right: -1em;
24692
+ }
24693
+
24694
+ .ui.five.doubling.cards .card {
24695
+ width: calc( 50% - 2em );
24696
+ margin-left: 1em;
24697
+ margin-right: 1em;
24698
+ }
24699
+
24700
+ .ui.six.doubling.cards {
24701
+ margin-left: -1em;
24702
+ margin-right: -1em;
24703
+ }
24704
+
24705
+ .ui.six.doubling.cards .card {
24706
+ width: calc( 50% - 2em );
24707
+ margin-left: 1em;
24708
+ margin-right: 1em;
24709
+ }
24710
+
24711
+ .ui.seven.doubling.cards {
24712
+ margin-left: -1em;
24713
+ margin-right: -1em;
24714
+ }
24715
+
24716
+ .ui.seven.doubling.cards .card {
24717
+ width: calc( 33.33333333% - 2em );
24718
+ margin-left: 1em;
24719
+ margin-right: 1em;
24720
+ }
24721
+
24722
+ .ui.eight.doubling.cards {
24723
+ margin-left: -1em;
24724
+ margin-right: -1em;
24725
+ }
24726
+
24727
+ .ui.eight.doubling.cards .card {
24728
+ width: calc( 33.33333333% - 2em );
24729
+ margin-left: 1em;
24730
+ margin-right: 1em;
24731
+ }
24732
+
24733
+ .ui.nine.doubling.cards {
24734
+ margin-left: -1em;
24735
+ margin-right: -1em;
24736
+ }
24737
+
24738
+ .ui.nine.doubling.cards .card {
24739
+ width: calc( 33.33333333% - 2em );
24740
+ margin-left: 1em;
24741
+ margin-right: 1em;
24742
+ }
24743
+
24744
+ .ui.ten.doubling.cards {
24745
+ margin-left: -1em;
24746
+ margin-right: -1em;
24747
+ }
24748
+
24749
+ .ui.ten.doubling.cards .card {
24750
+ width: calc( 33.33333333% - 2em );
24751
+ margin-left: 1em;
24752
+ margin-right: 1em;
24753
+ }
24754
+ }
24755
+
24756
+ /* Tablet Only */
24757
+
24758
+ @media only screen and (min-width: 768px) and (max-width: 991px) {
24759
+ .ui.two.doubling.cards {
24760
+ margin-left: 0em;
24761
+ margin-right: 0em;
24762
+ }
24763
+
24764
+ .ui.two.doubling.cards .card {
24765
+ width: 100%;
24766
+ margin-left: 0em;
24767
+ margin-right: 0em;
24768
+ }
24769
+
24770
+ .ui.three.doubling.cards {
24771
+ margin-left: -1em;
24772
+ margin-right: -1em;
24773
+ }
24774
+
24775
+ .ui.three.doubling.cards .card {
24776
+ width: calc( 50% - 2em );
24777
+ margin-left: 1em;
24778
+ margin-right: 1em;
24779
+ }
24780
+
24781
+ .ui.four.doubling.cards {
24782
+ margin-left: -1em;
24783
+ margin-right: -1em;
24784
+ }
24785
+
24786
+ .ui.four.doubling.cards .card {
24787
+ width: calc( 50% - 2em );
24788
+ margin-left: 1em;
24789
+ margin-right: 1em;
24790
+ }
24791
+
24792
+ .ui.five.doubling.cards {
24793
+ margin-left: -1em;
24794
+ margin-right: -1em;
24795
+ }
24796
+
24797
+ .ui.five.doubling.cards .card {
24798
+ width: calc( 33.33333333% - 2em );
24799
+ margin-left: 1em;
24800
+ margin-right: 1em;
24801
+ }
24802
+
24803
+ .ui.six.doubling.cards {
24804
+ margin-left: -1em;
24805
+ margin-right: -1em;
24806
+ }
24807
+
24808
+ .ui.six.doubling.cards .card {
24809
+ width: calc( 33.33333333% - 2em );
24810
+ margin-left: 1em;
24811
+ margin-right: 1em;
24812
+ }
24813
+
24814
+ .ui.eight.doubling.cards {
24815
+ margin-left: -1em;
24816
+ margin-right: -1em;
24817
+ }
24818
+
24819
+ .ui.eight.doubling.cards .card {
24820
+ width: calc( 33.33333333% - 2em );
24821
+ margin-left: 1em;
24822
+ margin-right: 1em;
24823
+ }
24824
+
24825
+ .ui.eight.doubling.cards {
24826
+ margin-left: -0.75em;
24827
+ margin-right: -0.75em;
24828
+ }
24829
+
24830
+ .ui.eight.doubling.cards .card {
24831
+ width: calc( 25% - 1.5em );
24832
+ margin-left: 0.75em;
24833
+ margin-right: 0.75em;
24834
+ }
24835
+
24836
+ .ui.nine.doubling.cards {
24837
+ margin-left: -0.75em;
24838
+ margin-right: -0.75em;
24839
+ }
24840
+
24841
+ .ui.nine.doubling.cards .card {
24842
+ width: calc( 25% - 1.5em );
24843
+ margin-left: 0.75em;
24844
+ margin-right: 0.75em;
24845
+ }
24846
+
24847
+ .ui.ten.doubling.cards {
24848
+ margin-left: -0.75em;
24849
+ margin-right: -0.75em;
24850
+ }
24851
+
24852
+ .ui.ten.doubling.cards .card {
24853
+ width: calc( 20% - 1.5em );
24854
+ margin-left: 0.75em;
24855
+ margin-right: 0.75em;
24856
+ }
24857
+ }
24858
+
24859
+ /*-------------------
24860
+ Stackable
24861
+ --------------------*/
24862
+
24863
+ @media only screen and (max-width: 767px) {
24864
+ .ui.stackable.cards {
24865
+ display: block !important;
24866
+ }
24867
+
24868
+ .ui.stackable.cards .card:first-child {
24869
+ margin-top: 0em !important;
24870
+ }
24871
+
24872
+ .ui.stackable.cards > .card {
24873
+ display: block !important;
24874
+ height: auto !important;
24875
+ margin: 1em 1em;
24876
+ padding: 0 !important;
24877
+ width: calc( 100% - 2em ) !important;
24878
+ }
24879
+ }
24880
+
24881
+ /*--------------
24882
+ Size
24883
+ ---------------*/
24884
+
24885
+ .ui.cards > .card {
24886
+ font-size: 1em;
24887
+ }
24888
+
24889
+ /*******************************
24890
+ Theme Overrides
24891
+ *******************************/
24892
+
24893
+ /*******************************
24894
+ User Variable Overrides
24895
+ *******************************/
24896
+ /*!
24897
+ * # Semantic UI 2.1.7 - Comment
24898
+ * http://github.com/semantic-org/semantic-ui/
24899
+ *
24900
+ *
24901
+ * Copyright 2015 Contributors
24902
+ * Released under the MIT license
24903
+ * http://opensource.org/licenses/MIT
24904
+ *
24905
+ */
24906
+
24907
+ /*******************************
24908
+ Standard
24909
+ *******************************/
24910
+
24911
+ /*--------------
24912
+ Comments
24913
+ ---------------*/
24914
+
24915
+ .ui.comments {
24916
+ margin: 1.5em 0em;
24917
+ max-width: 650px;
24918
+ }
24919
+
24920
+ .ui.comments:first-child {
24921
+ margin-top: 0em;
24922
+ }
24923
+
24924
+ .ui.comments:last-child {
24925
+ margin-bottom: 0em;
24926
+ }
24927
+
24928
+ /*--------------
24929
+ Comment
24930
+ ---------------*/
24931
+
24932
+ .ui.comments .comment {
24933
+ position: relative;
24934
+ background: none;
24935
+ margin: 0.5em 0em 0em;
24936
+ padding: 0.5em 0em 0em;
24937
+ border: none;
24938
+ border-top: none;
24939
+ line-height: 1.2;
24940
+ }
24941
+
24942
+ .ui.comments .comment:first-child {
24943
+ margin-top: 0em;
24944
+ padding-top: 0em;
24945
+ }
24946
+
24947
+ /*--------------------
24948
+ Nested Comments
24949
+ ---------------------*/
24950
+
24951
+ .ui.comments .comment .comments {
24952
+ margin: 0em 0em 0.5em 0.5em;
24953
+ padding: 1em 0em 1em 1em;
24954
+ }
24955
+
24956
+ .ui.comments .comment .comments:before {
24957
+ position: absolute;
24958
+ top: 0px;
24959
+ left: 0px;
24960
+ }
24961
+
24962
+ .ui.comments .comment .comments .comment {
24963
+ border: none;
24964
+ border-top: none;
24965
+ background: none;
24966
+ }
24967
+
24968
+ /*--------------
24969
+ Avatar
24970
+ ---------------*/
24971
+
24972
+ .ui.comments .comment .avatar {
24973
+ display: block;
24974
+ width: 2.5em;
24975
+ height: auto;
24976
+ float: left;
24977
+ margin: 0.2em 0em 0em;
24978
+ }
24979
+
24980
+ .ui.comments .comment img.avatar,
24981
+ .ui.comments .comment .avatar img {
24982
+ display: block;
24983
+ margin: 0em auto;
24984
+ width: 100%;
24985
+ height: 100%;
24986
+ border-radius: 0.25rem;
24987
+ }
24988
+
24989
+ /*--------------
24990
+ Content
24991
+ ---------------*/
24992
+
24993
+ .ui.comments .comment > .content {
24994
+ display: block;
24995
+ }
24996
+
24997
+ /* If there is an avatar move content over */
24998
+
24999
+ .ui.comments .comment > .avatar ~ .content {
25000
+ margin-left: 3.5em;
25001
+ }
25002
+
25003
+ /*--------------
25004
+ Author
25005
+ ---------------*/
25006
+
25007
+ .ui.comments .comment .author {
25008
+ font-size: 1em;
25009
+ color: rgba(0, 0, 0, 0.87);
25010
+ font-weight: bold;
25011
+ }
25012
+
25013
+ .ui.comments .comment a.author {
25014
+ cursor: pointer;
25015
+ }
25016
+
25017
+ .ui.comments .comment a.author:hover {
25018
+ color: #1e70bf;
25019
+ }
25020
+
25021
+ /*--------------
25022
+ Metadata
25023
+ ---------------*/
25024
+
25025
+ .ui.comments .comment .metadata {
25026
+ display: inline-block;
25027
+ margin-left: 0.5em;
25028
+ color: rgba(0, 0, 0, 0.4);
25029
+ font-size: 0.875em;
25030
+ }
25031
+
25032
+ .ui.comments .comment .metadata > * {
25033
+ display: inline-block;
25034
+ margin: 0em 0.5em 0em 0em;
25035
+ }
25036
+
25037
+ .ui.comments .comment .metadata > :last-child {
25038
+ margin-right: 0em;
25039
+ }
25040
+
25041
+ /*--------------------
25042
+ Comment Text
25043
+ ---------------------*/
25044
+
25045
+ .ui.comments .comment .text {
25046
+ margin: 0.25em 0em 0.5em;
25047
+ font-size: 1em;
25048
+ word-wrap: break-word;
25049
+ color: rgba(0, 0, 0, 0.87);
25050
+ line-height: 1.3;
25051
+ }
25052
+
25053
+ /*--------------------
25054
+ User Actions
25055
+ ---------------------*/
25056
+
25057
+ .ui.comments .comment .actions {
25058
+ font-size: 0.875em;
25059
+ }
25060
+
25061
+ .ui.comments .comment .actions a {
25062
+ cursor: pointer;
25063
+ display: inline-block;
25064
+ margin: 0em 0.75em 0em 0em;
25065
+ color: rgba(0, 0, 0, 0.4);
25066
+ }
25067
+
25068
+ .ui.comments .comment .actions a:last-child {
25069
+ margin-right: 0em;
25070
+ }
25071
+
25072
+ .ui.comments .comment .actions a.active,
25073
+ .ui.comments .comment .actions a:hover {
25074
+ color: rgba(0, 0, 0, 0.8);
25075
+ }
25076
+
25077
+ /*--------------------
25078
+ Reply Form
25079
+ ---------------------*/
25080
+
25081
+ .ui.comments > .reply.form {
25082
+ margin-top: 1em;
25083
+ }
25084
+
25085
+ .ui.comments .comment .reply.form {
25086
+ width: 100%;
25087
+ margin-top: 1em;
25088
+ }
25089
+
25090
+ .ui.comments .reply.form textarea {
25091
+ font-size: 1em;
25092
+ height: 12em;
25093
+ }
25094
+
25095
+ /*******************************
25096
+ State
25097
+ *******************************/
25098
+
25099
+ .ui.collapsed.comments,
25100
+ .ui.comments .collapsed.comments,
25101
+ .ui.comments .collapsed.comment {
25102
+ display: none;
25103
+ }
25104
+
25105
+ /*******************************
25106
+ Variations
25107
+ *******************************/
25108
+
25109
+ /*--------------------
25110
+ Threaded
25111
+ ---------------------*/
25112
+
25113
+ .ui.threaded.comments .comment .comments {
25114
+ margin: -1.5em 0 -1em 1.25em;
25115
+ padding: 3em 0em 2em 2.25em;
25116
+ box-shadow: -1px 0px 0px rgba(34, 36, 38, 0.15);
25117
+ }
25118
+
25119
+ /*--------------------
25120
+ Minimal
25121
+ ---------------------*/
25122
+
25123
+ .ui.minimal.comments .comment .actions {
25124
+ opacity: 0;
25125
+ position: absolute;
25126
+ top: 0px;
25127
+ right: 0px;
25128
+ left: auto;
25129
+ -webkit-transition: opacity 0.2s ease;
25130
+ transition: opacity 0.2s ease;
25131
+ -webkit-transition-delay: 0.1s;
25132
+ transition-delay: 0.1s;
25133
+ }
25134
+
25135
+ .ui.minimal.comments .comment > .content:hover > .actions {
25136
+ opacity: 1;
25137
+ }
25138
+
25139
+ /*--------------------
25140
+ Sizes
25141
+ ---------------------*/
25142
+
25143
+ .ui.small.comments {
25144
+ font-size: 0.9em;
25145
+ }
25146
+
25147
+ .ui.comments {
25148
+ font-size: 1em;
25149
+ }
25150
+
25151
+ .ui.large.comments {
25152
+ font-size: 1.1em;
25153
+ }
25154
+
25155
+ .ui.huge.comments {
25156
+ font-size: 1.2em;
25157
+ }
25158
+
25159
+ /*******************************
25160
+ Theme Overrides
25161
+ *******************************/
25162
+
25163
+ /*******************************
25164
+ User Variable Overrides
25165
+ *******************************/
25166
+ /*!
25167
+ * # Semantic UI 2.1.7 - Feed
25168
+ * http://github.com/semantic-org/semantic-ui/
25169
+ *
25170
+ *
25171
+ * Copyright 2015 Contributors
25172
+ * Released under the MIT license
25173
+ * http://opensource.org/licenses/MIT
25174
+ *
25175
+ */
25176
+
25177
+ /*******************************
25178
+ Activity Feed
25179
+ *******************************/
25180
+
25181
+ .ui.feed {
25182
+ margin: 1em 0em;
25183
+ }
25184
+
25185
+ .ui.feed:first-child {
25186
+ margin-top: 0em;
25187
+ }
25188
+
25189
+ .ui.feed:last-child {
25190
+ margin-bottom: 0em;
25191
+ }
25192
+
25193
+ /*******************************
25194
+ Content
25195
+ *******************************/
25196
+
25197
+ /* Event */
25198
+
25199
+ .ui.feed > .event {
25200
+ display: -webkit-box;
25201
+ display: -webkit-flex;
25202
+ display: -ms-flexbox;
25203
+ display: flex;
25204
+ -webkit-box-orient: horizontal;
25205
+ -webkit-box-direction: normal;
25206
+ -webkit-flex-direction: row;
25207
+ -ms-flex-direction: row;
25208
+ flex-direction: row;
25209
+ width: 100%;
25210
+ padding: 0.21428571rem 0em;
25211
+ margin: 0em;
25212
+ background: none;
25213
+ border-top: none;
25214
+ }
25215
+
25216
+ .ui.feed > .event:first-child {
25217
+ border-top: 0px;
25218
+ padding-top: 0em;
25219
+ }
25220
+
25221
+ .ui.feed > .event:last-child {
25222
+ padding-bottom: 0em;
25223
+ }
25224
+
25225
+ /* Event Label */
25226
+
25227
+ .ui.feed > .event > .label {
25228
+ display: block;
25229
+ -webkit-box-flex: 0;
25230
+ -webkit-flex: 0 0 auto;
25231
+ -ms-flex: 0 0 auto;
25232
+ flex: 0 0 auto;
25233
+ width: 2.5em;
25234
+ height: auto;
25235
+ -webkit-align-self: stretch;
25236
+ -ms-flex-item-align: stretch;
25237
+ align-self: stretch;
25238
+ text-align: left;
25239
+ }
25240
+
25241
+ .ui.feed > .event > .label .icon {
25242
+ opacity: 1;
25243
+ font-size: 1.5em;
25244
+ width: 100%;
25245
+ padding: 0.25em;
25246
+ background: none;
25247
+ border: none;
25248
+ border-radius: none;
25249
+ color: rgba(0, 0, 0, 0.6);
25250
+ }
25251
+
25252
+ .ui.feed > .event > .label img {
25253
+ width: 100%;
25254
+ height: auto;
25255
+ border-radius: 500rem;
25256
+ }
25257
+
25258
+ .ui.feed > .event > .label + .content {
25259
+ margin: 0.5em 0em 0.35714286em 1.14285714em;
25260
+ }
25261
+
25262
+ /*--------------
25263
+ Content
25264
+ ---------------*/
25265
+
25266
+ /* Content */
25267
+
25268
+ .ui.feed > .event > .content {
25269
+ display: block;
25270
+ -webkit-box-flex: 1;
25271
+ -webkit-flex: 1 1 auto;
25272
+ -ms-flex: 1 1 auto;
25273
+ flex: 1 1 auto;
25274
+ -webkit-align-self: stretch;
25275
+ -ms-flex-item-align: stretch;
25276
+ align-self: stretch;
25277
+ text-align: left;
25278
+ word-wrap: break-word;
25279
+ }
25280
+
25281
+ .ui.feed > .event:last-child > .content {
25282
+ padding-bottom: 0em;
25283
+ }
25284
+
25285
+ /* Link */
25286
+
25287
+ .ui.feed > .event > .content a {
25288
+ cursor: pointer;
25289
+ }
25290
+
25291
+ /*--------------
25292
+ Date
25293
+ ---------------*/
25294
+
25295
+ .ui.feed > .event > .content .date {
25296
+ margin: -0.5rem 0em 0em;
25297
+ padding: 0em;
25298
+ font-weight: normal;
25299
+ font-size: 1em;
25300
+ font-style: normal;
25301
+ color: rgba(0, 0, 0, 0.4);
25302
+ }
25303
+
25304
+ /*--------------
25305
+ Summary
25306
+ ---------------*/
25307
+
25308
+ .ui.feed > .event > .content .summary {
25309
+ margin: 0em;
25310
+ font-size: 1em;
25311
+ font-weight: bold;
25312
+ color: rgba(0, 0, 0, 0.87);
25313
+ }
25314
+
25315
+ /* Summary Image */
25316
+
25317
+ .ui.feed > .event > .content .summary img {
25318
+ display: inline-block;
25319
+ width: auto;
25320
+ height: 10em;
25321
+ margin: -0.25em 0.25em 0em 0em;
25322
+ border-radius: 0.25em;
25323
+ vertical-align: middle;
25324
+ }
25325
+
25326
+ /*--------------
25327
+ User
25328
+ ---------------*/
25329
+
25330
+ .ui.feed > .event > .content .user {
25331
+ display: inline-block;
25332
+ font-weight: bold;
25333
+ margin-right: 0em;
25334
+ vertical-align: baseline;
25335
+ }
25336
+
25337
+ .ui.feed > .event > .content .user img {
25338
+ margin: -0.25em 0.25em 0em 0em;
25339
+ width: auto;
25340
+ height: 10em;
25341
+ vertical-align: middle;
25342
+ }
25343
+
25344
+ /*--------------
25345
+ Inline Date
25346
+ ---------------*/
25347
+
25348
+ /* Date inside Summary */
25349
+
25350
+ .ui.feed > .event > .content .summary > .date {
25351
+ display: inline-block;
25352
+ float: none;
25353
+ font-weight: normal;
25354
+ font-size: 0.85714286em;
25355
+ font-style: normal;
25356
+ margin: 0em 0em 0em 0.5em;
25357
+ padding: 0em;
25358
+ color: rgba(0, 0, 0, 0.4);
25359
+ }
25360
+
25361
+ /*--------------
25362
+ Extra Summary
25363
+ ---------------*/
25364
+
25365
+ .ui.feed > .event > .content .extra {
25366
+ margin: 0.5em 0em 0em;
25367
+ background: none;
25368
+ padding: 0em;
25369
+ color: rgba(0, 0, 0, 0.87);
25370
+ }
25371
+
25372
+ /* Images */
25373
+
25374
+ .ui.feed > .event > .content .extra.images img {
25375
+ display: inline-block;
25376
+ margin: 0em 0.25em 0em 0em;
25377
+ width: 6em;
25378
+ }
25379
+
25380
+ /* Text */
25381
+
25382
+ .ui.feed > .event > .content .extra.text {
25383
+ padding: 0em;
25384
+ border-left: none;
25385
+ font-size: 1em;
25386
+ max-width: 500px;
25387
+ line-height: 1.4285em;
25388
+ }
25389
+
25390
+ /*--------------
25391
+ Meta
25392
+ ---------------*/
25393
+
25394
+ .ui.feed > .event > .content .meta {
25395
+ display: inline-block;
25396
+ font-size: 0.85714286em;
25397
+ margin: 0.5em 0em 0em;
25398
+ background: none;
25399
+ border: none;
25400
+ border-radius: 0;
25401
+ box-shadow: none;
25402
+ padding: 0em;
25403
+ color: rgba(0, 0, 0, 0.6);
25404
+ }
25405
+
25406
+ .ui.feed > .event > .content .meta > * {
25407
+ position: relative;
25408
+ margin-left: 0.75em;
25409
+ }
25410
+
25411
+ .ui.feed > .event > .content .meta > *:after {
25412
+ content: '';
25413
+ color: rgba(0, 0, 0, 0.2);
25414
+ top: 0em;
25415
+ left: -1em;
25416
+ opacity: 1;
25417
+ position: absolute;
25418
+ vertical-align: top;
25419
+ }
25420
+
25421
+ .ui.feed > .event > .content .meta .like {
25422
+ color: '';
25423
+ -webkit-transition: 0.2s color ease;
25424
+ transition: 0.2s color ease;
25425
+ }
25426
+
25427
+ .ui.feed > .event > .content .meta .like:hover .icon {
25428
+ color: #ff2733;
25429
+ }
25430
+
25431
+ .ui.feed > .event > .content .meta .active.like .icon {
25432
+ color: #ef404a;
25433
+ }
25434
+
25435
+ /* First element */
25436
+
25437
+ .ui.feed > .event > .content .meta > :first-child {
25438
+ margin-left: 0em;
25439
+ }
25440
+
25441
+ .ui.feed > .event > .content .meta > :first-child::after {
25442
+ display: none;
25443
+ }
25444
+
25445
+ /* Action */
25446
+
25447
+ .ui.feed > .event > .content .meta a,
25448
+ .ui.feed > .event > .content .meta > .icon {
25449
+ cursor: pointer;
25450
+ opacity: 1;
25451
+ color: rgba(0, 0, 0, 0.5);
25452
+ -webkit-transition: color 0.1s ease;
25453
+ transition: color 0.1s ease;
25454
+ }
25455
+
25456
+ .ui.feed > .event > .content .meta a:hover,
25457
+ .ui.feed > .event > .content .meta a:hover .icon,
25458
+ .ui.feed > .event > .content .meta > .icon:hover {
25459
+ color: rgba(0, 0, 0, 0.95);
25460
+ }
25461
+
25462
+ /*******************************
25463
+ Variations
25464
+ *******************************/
25465
+
25466
+ .ui.small.feed {
25467
+ font-size: 0.92857143rem;
25468
+ }
25469
+
25470
+ .ui.feed {
25471
+ font-size: 1rem;
25472
+ }
25473
+
25474
+ .ui.large.feed {
25475
+ font-size: 1.14285714rem;
25476
+ }
25477
+
25478
+ /*******************************
25479
+ Theme Overrides
25480
+ *******************************/
25481
+
25482
+ /*******************************
25483
+ User Variable Overrides
25484
+ *******************************/
25485
+ /*!
25486
+ * # Semantic UI 2.1.7 - Item
25487
+ * http://github.com/semantic-org/semantic-ui/
25488
+ *
25489
+ *
25490
+ * Copyright 2015 Contributors
25491
+ * Released under the MIT license
25492
+ * http://opensource.org/licenses/MIT
25493
+ *
25494
+ */
25495
+
25496
+ /*******************************
25497
+ Standard
25498
+ *******************************/
25499
+
25500
+ /*--------------
25501
+ Item
25502
+ ---------------*/
25503
+
25504
+ .ui.items > .item {
25505
+ display: -webkit-box;
25506
+ display: -webkit-flex;
25507
+ display: -ms-flexbox;
25508
+ display: flex;
25509
+ margin: 1em 0em;
25510
+ width: 100%;
25511
+ min-height: 0px;
25512
+ background: transparent;
25513
+ padding: 0em;
25514
+ border: none;
25515
+ border-radius: 0rem;
25516
+ box-shadow: none;
25517
+ -webkit-transition: box-shadow 0.1s ease;
25518
+ transition: box-shadow 0.1s ease;
25519
+ z-index: '';
25520
+ }
25521
+
25522
+ .ui.items > .item a {
25523
+ cursor: pointer;
25524
+ }
25525
+
25526
+ /*--------------
25527
+ Items
25528
+ ---------------*/
25529
+
25530
+ .ui.items {
25531
+ margin: 1.5em 0em;
25532
+ }
25533
+
25534
+ .ui.items:first-child {
25535
+ margin-top: 0em !important;
25536
+ }
25537
+
25538
+ .ui.items:last-child {
25539
+ margin-bottom: 0em !important;
25540
+ }
25541
+
25542
+ /*--------------
25543
+ Item
25544
+ ---------------*/
25545
+
25546
+ .ui.items > .item:after {
25547
+ display: block;
25548
+ content: ' ';
25549
+ height: 0px;
25550
+ clear: both;
25551
+ overflow: hidden;
25552
+ visibility: hidden;
25553
+ }
25554
+
25555
+ .ui.items > .item:first-child {
25556
+ margin-top: 0em;
25557
+ }
25558
+
25559
+ .ui.items > .item:last-child {
25560
+ margin-bottom: 0em;
25561
+ }
25562
+
25563
+ /*--------------
25564
+ Images
25565
+ ---------------*/
25566
+
25567
+ .ui.items > .item > .image {
25568
+ position: relative;
25569
+ -webkit-box-flex: 0;
25570
+ -webkit-flex: 0 0 auto;
25571
+ -ms-flex: 0 0 auto;
25572
+ flex: 0 0 auto;
25573
+ display: block;
25574
+ float: none;
25575
+ margin: 0em;
25576
+ padding: 0em;
25577
+ max-height: '';
25578
+ -webkit-align-self: top;
25579
+ -ms-flex-item-align: top;
25580
+ align-self: top;
25581
+ }
25582
+
25583
+ .ui.items > .item > .image > img {
25584
+ display: block;
25585
+ width: 100%;
25586
+ height: auto;
25587
+ border-radius: 0.125rem;
25588
+ border: none;
25589
+ }
25590
+
25591
+ .ui.items > .item > .image:only-child > img {
25592
+ border-radius: 0rem;
25593
+ }
25594
+
25595
+ /*--------------
25596
+ Content
25597
+ ---------------*/
25598
+
25599
+ .ui.items > .item > .content {
25600
+ display: block;
25601
+ -webkit-box-flex: 1;
25602
+ -webkit-flex: 1 1 auto;
25603
+ -ms-flex: 1 1 auto;
25604
+ flex: 1 1 auto;
25605
+ background: none;
25606
+ margin: 0em;
25607
+ padding: 0em;
25608
+ box-shadow: none;
25609
+ font-size: 1em;
25610
+ border: none;
25611
+ border-radius: 0em;
25612
+ }
25613
+
25614
+ .ui.items > .item > .content:after {
25615
+ display: block;
25616
+ content: ' ';
25617
+ height: 0px;
25618
+ clear: both;
25619
+ overflow: hidden;
25620
+ visibility: hidden;
25621
+ }
25622
+
25623
+ .ui.items > .item > .image + .content {
25624
+ min-width: 0;
25625
+ width: auto;
25626
+ display: block;
25627
+ margin-left: 0em;
25628
+ -webkit-align-self: top;
25629
+ -ms-flex-item-align: top;
25630
+ align-self: top;
25631
+ padding-left: 1.5em;
25632
+ }
25633
+
25634
+ .ui.items > .item > .content > .header {
25635
+ display: inline-block;
25636
+ margin: -0.21425em 0em 0em;
25637
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
25638
+ font-weight: bold;
25639
+ color: rgba(0, 0, 0, 0.85);
25640
+ }
25641
+
25642
+ /* Default Header Size */
25643
+
25644
+ .ui.items > .item > .content > .header:not(.ui) {
25645
+ font-size: 1.28571429em;
25646
+ }
25647
+
25648
+ /*--------------
25649
+ Floated
25650
+ ---------------*/
25651
+
25652
+ .ui.items > .item [class*="left floated"] {
25653
+ float: left;
25654
+ }
25655
+
25656
+ .ui.items > .item [class*="right floated"] {
25657
+ float: right;
25658
+ }
25659
+
25660
+ /*--------------
25661
+ Content Image
25662
+ ---------------*/
25663
+
25664
+ .ui.items > .item .content img {
25665
+ -webkit-align-self: middle;
25666
+ -ms-flex-item-align: middle;
25667
+ align-self: middle;
25668
+ width: '';
25669
+ }
25670
+
25671
+ .ui.items > .item img.avatar,
25672
+ .ui.items > .item .avatar img {
25673
+ width: '';
25674
+ height: '';
25675
+ border-radius: 500rem;
25676
+ }
25677
+
25678
+ /*--------------
25679
+ Description
25680
+ ---------------*/
25681
+
25682
+ .ui.items > .item > .content > .description {
25683
+ margin-top: 0.6em;
25684
+ max-width: auto;
25685
+ font-size: 1em;
25686
+ line-height: 1.4285em;
25687
+ color: rgba(0, 0, 0, 0.87);
25688
+ }
25689
+
25690
+ /*--------------
25691
+ Paragraph
25692
+ ---------------*/
25693
+
25694
+ .ui.items > .item > .content p {
25695
+ margin: 0em 0em 0.5em;
25696
+ }
25697
+
25698
+ .ui.items > .item > .content p:last-child {
25699
+ margin-bottom: 0em;
25700
+ }
25701
+
25702
+ /*--------------
25703
+ Meta
25704
+ ---------------*/
25705
+
25706
+ .ui.items > .item .meta {
25707
+ margin: 0.5em 0em 0.5em;
25708
+ font-size: 1em;
25709
+ line-height: 1em;
25710
+ color: rgba(0, 0, 0, 0.6);
25711
+ }
25712
+
25713
+ .ui.items > .item .meta * {
25714
+ margin-right: 0.3em;
25715
+ }
25716
+
25717
+ .ui.items > .item .meta :last-child {
25718
+ margin-right: 0em;
25719
+ }
25720
+
25721
+ .ui.items > .item .meta [class*="right floated"] {
25722
+ margin-right: 0em;
25723
+ margin-left: 0.3em;
25724
+ }
25725
+
25726
+ /*--------------
25727
+ Links
25728
+ ---------------*/
25729
+
25730
+ /* Generic */
25731
+
25732
+ .ui.items > .item > .content a:not(.ui) {
25733
+ color: '';
25734
+ -webkit-transition: color 0.1s ease;
25735
+ transition: color 0.1s ease;
25736
+ }
25737
+
25738
+ .ui.items > .item > .content a:not(.ui):hover {
25739
+ color: '';
25740
+ }
25741
+
25742
+ /* Header */
25743
+
25744
+ .ui.items > .item > .content > a.header {
25745
+ color: rgba(0, 0, 0, 0.85);
25746
+ }
25747
+
25748
+ .ui.items > .item > .content > a.header:hover {
25749
+ color: #1e70bf;
25750
+ }
25751
+
25752
+ /* Meta */
25753
+
25754
+ .ui.items > .item .meta > a:not(.ui) {
25755
+ color: rgba(0, 0, 0, 0.4);
25756
+ }
25757
+
25758
+ .ui.items > .item .meta > a:not(.ui):hover {
25759
+ color: rgba(0, 0, 0, 0.87);
25760
+ }
25761
+
25762
+ /*--------------
25763
+ Labels
25764
+ ---------------*/
25765
+
25766
+ /*-----Star----- */
25767
+
25768
+ /* Icon */
25769
+
25770
+ .ui.items > .item > .content .favorite.icon {
25771
+ cursor: pointer;
25772
+ opacity: 0.75;
25773
+ -webkit-transition: color 0.1s ease;
25774
+ transition: color 0.1s ease;
25775
+ }
25776
+
25777
+ .ui.items > .item > .content .favorite.icon:hover {
25778
+ opacity: 1;
25779
+ color: #ffb70a;
25780
+ }
25781
+
25782
+ .ui.items > .item > .content .active.favorite.icon {
25783
+ color: #ffe623;
25784
+ }
25785
+
25786
+ /*-----Like----- */
25787
+
25788
+ /* Icon */
25789
+
25790
+ .ui.items > .item > .content .like.icon {
25791
+ cursor: pointer;
25792
+ opacity: 0.75;
25793
+ -webkit-transition: color 0.1s ease;
25794
+ transition: color 0.1s ease;
25795
+ }
25796
+
25797
+ .ui.items > .item > .content .like.icon:hover {
25798
+ opacity: 1;
25799
+ color: #ff2733;
25800
+ }
25801
+
25802
+ .ui.items > .item > .content .active.like.icon {
25803
+ color: #ff2733;
25804
+ }
25805
+
25806
+ /*----------------
25807
+ Extra Content
25808
+ -----------------*/
25809
+
25810
+ .ui.items > .item .extra {
25811
+ display: block;
25812
+ position: relative;
25813
+ background: none;
25814
+ margin: 0.5rem 0em 0em;
25815
+ width: 100%;
25816
+ padding: 0em 0em 0em;
25817
+ top: 0em;
25818
+ left: 0em;
25819
+ color: rgba(0, 0, 0, 0.4);
25820
+ box-shadow: none;
25821
+ -webkit-transition: color 0.1s ease;
25822
+ transition: color 0.1s ease;
25823
+ border-top: none;
25824
+ }
25825
+
25826
+ .ui.items > .item .extra > * {
25827
+ margin: 0.25rem 0.5rem 0.25rem 0em;
25828
+ }
25829
+
25830
+ .ui.items > .item .extra > [class*="right floated"] {
25831
+ margin: 0.25rem 0em 0.25rem 0.5rem;
25832
+ }
25833
+
25834
+ .ui.items > .item .extra:after {
25835
+ display: block;
25836
+ content: ' ';
25837
+ height: 0px;
25838
+ clear: both;
25839
+ overflow: hidden;
25840
+ visibility: hidden;
25841
+ }
25842
+
25843
+ /*******************************
25844
+ Responsive
25845
+ *******************************/
25846
+
25847
+ /* Default Image Width */
25848
+
25849
+ .ui.items > .item > .image:not(.ui) {
25850
+ width: 175px;
25851
+ }
25852
+
25853
+ /* Tablet Only */
25854
+
25855
+ @media only screen and (min-width: 768px) and (max-width: 991px) {
25856
+ .ui.items > .item {
25857
+ margin: 1em 0em;
25858
+ }
25859
+
25860
+ .ui.items > .item > .image:not(.ui) {
25861
+ width: 150px;
25862
+ }
25863
+
25864
+ .ui.items > .item > .image + .content {
25865
+ display: block;
25866
+ padding: 0em 0em 0em 1em;
25867
+ }
25868
+ }
25869
+
25870
+ /* Mobily Only */
25871
+
25872
+ @media only screen and (max-width: 767px) {
25873
+ .ui.items > .item {
25874
+ -webkit-box-orient: vertical;
25875
+ -webkit-box-direction: normal;
25876
+ -webkit-flex-direction: column;
25877
+ -ms-flex-direction: column;
25878
+ flex-direction: column;
25879
+ margin: 2em 0em;
25880
+ }
25881
+
25882
+ .ui.items > .item > .image {
25883
+ display: block;
25884
+ margin-left: auto;
25885
+ margin-right: auto;
25886
+ }
25887
+
25888
+ .ui.items > .item > .image,
25889
+ .ui.items > .item > .image > img {
25890
+ max-width: 100% !important;
25891
+ width: auto !important;
25892
+ max-height: 250px !important;
25893
+ }
25894
+
25895
+ .ui.items > .item > .image + .content {
25896
+ display: block;
25897
+ padding: 1.5em 0em 0em;
25898
+ }
25899
+ }
25900
+
25901
+ /*******************************
25902
+ Variations
25903
+ *******************************/
25904
+
25905
+ /*-------------------
25906
+ Aligned
25907
+ --------------------*/
25908
+
25909
+ .ui.items > .item > .image + [class*="top aligned"].content {
25910
+ -webkit-align-self: flex-start;
25911
+ -ms-flex-item-align: start;
25912
+ align-self: flex-start;
25913
+ }
25914
+
25915
+ .ui.items > .item > .image + [class*="middle aligned"].content {
25916
+ -webkit-align-self: center;
25917
+ -ms-flex-item-align: center;
25918
+ align-self: center;
25919
+ }
25920
+
25921
+ .ui.items > .item > .image + [class*="bottom aligned"].content {
25922
+ -webkit-align-self: flex-end;
25923
+ -ms-flex-item-align: end;
25924
+ align-self: flex-end;
25925
+ }
25926
+
25927
+ /*--------------
25928
+ Relaxed
25929
+ ---------------*/
25930
+
25931
+ .ui.relaxed.items > .item {
25932
+ margin: 1.5em 0em;
25933
+ }
25934
+
25935
+ .ui[class*="very relaxed"].items > .item {
25936
+ margin: 2em 0em;
25937
+ }
25938
+
25939
+ /*-------------------
25940
+ Divided
25941
+ --------------------*/
25942
+
25943
+ .ui.divided.items > .item {
25944
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
25945
+ margin: 0em;
25946
+ padding: 1em 0em;
25947
+ }
25948
+
25949
+ .ui.divided.items > .item:first-child {
25950
+ border-top: none;
25951
+ margin-top: 0em !important;
25952
+ padding-top: 0em !important;
25953
+ }
25954
+
25955
+ .ui.divided.items > .item:last-child {
25956
+ margin-bottom: 0em !important;
25957
+ padding-bottom: 0em !important;
25958
+ }
25959
+
25960
+ /* Relaxed Divided */
25961
+
25962
+ .ui.relaxed.divided.items > .item {
25963
+ margin: 0em;
25964
+ padding: 1.5em 0em;
25965
+ }
25966
+
25967
+ .ui[class*="very relaxed"].divided.items > .item {
25968
+ margin: 0em;
25969
+ padding: 2em 0em;
25970
+ }
25971
+
25972
+ /*-------------------
25973
+ Link
25974
+ --------------------*/
25975
+
25976
+ .ui.items a.item:hover,
25977
+ .ui.link.items > .item:hover {
25978
+ cursor: pointer;
25979
+ }
25980
+
25981
+ .ui.items a.item:hover .content .header,
25982
+ .ui.link.items > .item:hover .content .header {
25983
+ color: #1e70bf;
25984
+ }
25985
+
25986
+ /*--------------
25987
+ Size
25988
+ ---------------*/
25989
+
25990
+ .ui.items > .item {
25991
+ font-size: 1em;
25992
+ }
25993
+
25994
+ /*******************************
25995
+ Theme Overrides
25996
+ *******************************/
25997
+
25998
+ /*******************************
25999
+ User Variable Overrides
26000
+ *******************************/
26001
+ /*!
26002
+ * # Semantic UI 2.1.7 - Statistic
26003
+ * http://github.com/semantic-org/semantic-ui/
26004
+ *
26005
+ *
26006
+ * Copyright 2015 Contributors
26007
+ * Released under the MIT license
26008
+ * http://opensource.org/licenses/MIT
26009
+ *
26010
+ */
26011
+
26012
+ /*******************************
26013
+ Statistic
26014
+ *******************************/
26015
+
26016
+ /* Standalone */
26017
+
26018
+ .ui.statistic {
26019
+ display: -webkit-inline-box;
26020
+ display: -webkit-inline-flex;
26021
+ display: -ms-inline-flexbox;
26022
+ display: inline-flex;
26023
+ -webkit-box-orient: vertical;
26024
+ -webkit-box-direction: normal;
26025
+ -webkit-flex-direction: column;
26026
+ -ms-flex-direction: column;
26027
+ flex-direction: column;
26028
+ margin: 1em 0em;
26029
+ max-width: auto;
26030
+ }
26031
+
26032
+ .ui.statistic + .ui.statistic {
26033
+ margin: 0em 0em 0em 1.5em;
26034
+ }
26035
+
26036
+ .ui.statistic:first-child {
26037
+ margin-top: 0em;
26038
+ }
26039
+
26040
+ .ui.statistic:last-child {
26041
+ margin-bottom: 0em;
26042
+ }
26043
+
26044
+ /*******************************
26045
+ Group
26046
+ *******************************/
26047
+
26048
+ /* Grouped */
26049
+
26050
+ .ui.statistics {
26051
+ display: -webkit-box;
26052
+ display: -webkit-flex;
26053
+ display: -ms-flexbox;
26054
+ display: flex;
26055
+ -webkit-box-align: start;
26056
+ -webkit-align-items: flex-start;
26057
+ -ms-flex-align: start;
26058
+ align-items: flex-start;
26059
+ -webkit-flex-wrap: wrap;
26060
+ -ms-flex-wrap: wrap;
26061
+ flex-wrap: wrap;
26062
+ }
26063
+
26064
+ .ui.statistics > .statistic {
26065
+ display: -webkit-inline-box;
26066
+ display: -webkit-inline-flex;
26067
+ display: -ms-inline-flexbox;
26068
+ display: inline-flex;
26069
+ -webkit-box-flex: 0;
26070
+ -webkit-flex: 0 1 auto;
26071
+ -ms-flex: 0 1 auto;
26072
+ flex: 0 1 auto;
26073
+ -webkit-box-orient: vertical;
26074
+ -webkit-box-direction: normal;
26075
+ -webkit-flex-direction: column;
26076
+ -ms-flex-direction: column;
26077
+ flex-direction: column;
26078
+ margin: 0em 1.5em 2em;
26079
+ max-width: auto;
26080
+ }
26081
+
26082
+ .ui.statistics {
26083
+ display: -webkit-box;
26084
+ display: -webkit-flex;
26085
+ display: -ms-flexbox;
26086
+ display: flex;
26087
+ margin: 1em -1.5em -2em;
26088
+ }
26089
+
26090
+ /* Clearing */
26091
+
26092
+ .ui.statistics:after {
26093
+ display: block;
26094
+ content: ' ';
26095
+ height: 0px;
26096
+ clear: both;
26097
+ overflow: hidden;
26098
+ visibility: hidden;
26099
+ }
26100
+
26101
+ .ui.statistics:first-child {
26102
+ margin-top: 0em;
26103
+ }
26104
+
26105
+ .ui.statistics:last-child {
26106
+ margin-bottom: 0em;
26107
+ }
26108
+
26109
+ /*******************************
26110
+ Content
26111
+ *******************************/
26112
+
26113
+ /*--------------
26114
+ Value
26115
+ ---------------*/
26116
+
26117
+ .ui.statistics .statistic > .value,
26118
+ .ui.statistic > .value {
26119
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
26120
+ font-size: 4rem;
26121
+ font-weight: normal;
26122
+ line-height: 1em;
26123
+ color: #1b1c1d;
26124
+ text-transform: uppercase;
26125
+ text-align: center;
26126
+ }
26127
+
26128
+ /*--------------
26129
+ Label
26130
+ ---------------*/
26131
+
26132
+ .ui.statistics .statistic > .label,
26133
+ .ui.statistic > .label {
26134
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
26135
+ font-size: 1em;
26136
+ font-weight: bold;
26137
+ color: rgba(0, 0, 0, 0.87);
26138
+ text-transform: uppercase;
26139
+ text-align: center;
26140
+ }
26141
+
26142
+ /* Top Label */
26143
+
26144
+ .ui.statistics .statistic > .label ~ .value,
26145
+ .ui.statistic > .label ~ .value {
26146
+ margin-top: 0rem;
26147
+ }
26148
+
26149
+ /* Bottom Label */
26150
+
26151
+ .ui.statistics .statistic > .value ~ .label,
26152
+ .ui.statistic > .value ~ .label {
26153
+ margin-top: 0rem;
26154
+ }
26155
+
26156
+ /*******************************
26157
+ Types
26158
+ *******************************/
26159
+
26160
+ /*--------------
26161
+ Icon Value
26162
+ ---------------*/
26163
+
26164
+ .ui.statistics .statistic > .value .icon,
26165
+ .ui.statistic > .value .icon {
26166
+ opacity: 1;
26167
+ width: auto;
26168
+ margin: 0em;
26169
+ }
26170
+
26171
+ /*--------------
26172
+ Text Value
26173
+ ---------------*/
26174
+
26175
+ .ui.statistics .statistic > .text.value,
26176
+ .ui.statistic > .text.value {
26177
+ line-height: 1em;
26178
+ min-height: 2em;
26179
+ font-weight: bold;
26180
+ text-align: center;
26181
+ }
26182
+
26183
+ .ui.statistics .statistic > .text.value + .label,
26184
+ .ui.statistic > .text.value + .label {
26185
+ text-align: center;
26186
+ }
26187
+
26188
+ /*--------------
26189
+ Image Value
26190
+ ---------------*/
26191
+
26192
+ .ui.statistics .statistic > .value img,
26193
+ .ui.statistic > .value img {
26194
+ max-height: 3rem;
26195
+ vertical-align: baseline;
26196
+ }
26197
+
26198
+ /*******************************
26199
+ Variations
26200
+ *******************************/
26201
+
26202
+ /*--------------
26203
+ Count
26204
+ ---------------*/
26205
+
26206
+ .ui.ten.statistics {
26207
+ margin: 0em 0em -2em;
26208
+ }
26209
+
26210
+ .ui.ten.statistics .statistic {
26211
+ min-width: 10%;
26212
+ margin: 0em 0em 2em;
26213
+ }
26214
+
26215
+ .ui.nine.statistics {
26216
+ margin: 0em 0em -2em;
26217
+ }
26218
+
26219
+ .ui.nine.statistics .statistic {
26220
+ min-width: 11.11111111%;
26221
+ margin: 0em 0em 2em;
26222
+ }
26223
+
26224
+ .ui.eight.statistics {
26225
+ margin: 0em 0em -2em;
26226
+ }
26227
+
26228
+ .ui.eight.statistics .statistic {
26229
+ min-width: 12.5%;
26230
+ margin: 0em 0em 2em;
26231
+ }
26232
+
26233
+ .ui.seven.statistics {
26234
+ margin: 0em 0em -2em;
26235
+ }
26236
+
26237
+ .ui.seven.statistics .statistic {
26238
+ min-width: 14.28571429%;
26239
+ margin: 0em 0em 2em;
26240
+ }
26241
+
26242
+ .ui.six.statistics {
26243
+ margin: 0em 0em -2em;
26244
+ }
26245
+
26246
+ .ui.six.statistics .statistic {
26247
+ min-width: 16.66666667%;
26248
+ margin: 0em 0em 2em;
26249
+ }
26250
+
26251
+ .ui.five.statistics {
26252
+ margin: 0em 0em -2em;
26253
+ }
26254
+
26255
+ .ui.five.statistics .statistic {
26256
+ min-width: 20%;
26257
+ margin: 0em 0em 2em;
26258
+ }
26259
+
26260
+ .ui.four.statistics {
26261
+ margin: 0em 0em -2em;
26262
+ }
26263
+
26264
+ .ui.four.statistics .statistic {
26265
+ min-width: 25%;
26266
+ margin: 0em 0em 2em;
26267
+ }
26268
+
26269
+ .ui.three.statistics {
26270
+ margin: 0em 0em -2em;
26271
+ }
26272
+
26273
+ .ui.three.statistics .statistic {
26274
+ min-width: 33.33333333%;
26275
+ margin: 0em 0em 2em;
26276
+ }
26277
+
26278
+ .ui.two.statistics {
26279
+ margin: 0em 0em -2em;
26280
+ }
26281
+
26282
+ .ui.two.statistics .statistic {
26283
+ min-width: 50%;
26284
+ margin: 0em 0em 2em;
26285
+ }
26286
+
26287
+ .ui.one.statistics {
26288
+ margin: 0em 0em -2em;
26289
+ }
26290
+
26291
+ .ui.one.statistics .statistic {
26292
+ min-width: 100%;
26293
+ margin: 0em 0em 2em;
26294
+ }
26295
+
26296
+ /*--------------
26297
+ Horizontal
26298
+ ---------------*/
26299
+
26300
+ .ui.horizontal.statistic {
26301
+ -webkit-box-orient: horizontal;
26302
+ -webkit-box-direction: normal;
26303
+ -webkit-flex-direction: row;
26304
+ -ms-flex-direction: row;
26305
+ flex-direction: row;
26306
+ -webkit-box-align: center;
26307
+ -webkit-align-items: center;
26308
+ -ms-flex-align: center;
26309
+ align-items: center;
26310
+ }
26311
+
26312
+ .ui.horizontal.statistics {
26313
+ -webkit-box-orient: vertical;
26314
+ -webkit-box-direction: normal;
26315
+ -webkit-flex-direction: column;
26316
+ -ms-flex-direction: column;
26317
+ flex-direction: column;
26318
+ margin: 0em;
26319
+ max-width: none;
26320
+ }
26321
+
26322
+ .ui.horizontal.statistics .statistic {
26323
+ -webkit-box-orient: horizontal;
26324
+ -webkit-box-direction: normal;
26325
+ -webkit-flex-direction: row;
26326
+ -ms-flex-direction: row;
26327
+ flex-direction: row;
26328
+ -webkit-box-align: center;
26329
+ -webkit-align-items: center;
26330
+ -ms-flex-align: center;
26331
+ align-items: center;
26332
+ max-width: none;
26333
+ margin: 1em 0em;
26334
+ }
26335
+
26336
+ .ui.horizontal.statistic > .text.value,
26337
+ .ui.horizontal.statistics > .statistic > .text.value {
26338
+ min-height: 0em !important;
26339
+ }
26340
+
26341
+ .ui.horizontal.statistics .statistic > .value .icon,
26342
+ .ui.horizontal.statistic > .value .icon {
26343
+ width: 1.18em;
26344
+ }
26345
+
26346
+ .ui.horizontal.statistics .statistic > .value,
26347
+ .ui.horizontal.statistic > .value {
26348
+ display: inline-block;
26349
+ vertical-align: middle;
26350
+ }
26351
+
26352
+ .ui.horizontal.statistics .statistic > .label,
26353
+ .ui.horizontal.statistic > .label {
26354
+ display: inline-block;
26355
+ vertical-align: middle;
26356
+ margin: 0em 0em 0em 0.75em;
26357
+ }
26358
+
26359
+ /*--------------
26360
+ Colors
26361
+ ---------------*/
26362
+
26363
+ .ui.red.statistics .statistic > .value,
26364
+ .ui.statistics .red.statistic > .value,
26365
+ .ui.red.statistic > .value {
26366
+ color: #db2828;
26367
+ }
26368
+
26369
+ .ui.orange.statistics .statistic > .value,
26370
+ .ui.statistics .orange.statistic > .value,
26371
+ .ui.orange.statistic > .value {
26372
+ color: #f2711c;
26373
+ }
26374
+
26375
+ .ui.yellow.statistics .statistic > .value,
26376
+ .ui.statistics .yellow.statistic > .value,
26377
+ .ui.yellow.statistic > .value {
26378
+ color: #fbbd08;
26379
+ }
26380
+
26381
+ .ui.olive.statistics .statistic > .value,
26382
+ .ui.statistics .olive.statistic > .value,
26383
+ .ui.olive.statistic > .value {
26384
+ color: #b5cc18;
26385
+ }
26386
+
26387
+ .ui.green.statistics .statistic > .value,
26388
+ .ui.statistics .green.statistic > .value,
26389
+ .ui.green.statistic > .value {
26390
+ color: #21ba45;
26391
+ }
26392
+
26393
+ .ui.teal.statistics .statistic > .value,
26394
+ .ui.statistics .teal.statistic > .value,
26395
+ .ui.teal.statistic > .value {
26396
+ color: #00b5ad;
26397
+ }
26398
+
26399
+ .ui.blue.statistics .statistic > .value,
26400
+ .ui.statistics .blue.statistic > .value,
26401
+ .ui.blue.statistic > .value {
26402
+ color: #2185d0;
26403
+ }
26404
+
26405
+ .ui.violet.statistics .statistic > .value,
26406
+ .ui.statistics .violet.statistic > .value,
26407
+ .ui.violet.statistic > .value {
26408
+ color: #6435c9;
26409
+ }
26410
+
26411
+ .ui.purple.statistics .statistic > .value,
26412
+ .ui.statistics .purple.statistic > .value,
26413
+ .ui.purple.statistic > .value {
26414
+ color: #a333c8;
26415
+ }
26416
+
26417
+ .ui.pink.statistics .statistic > .value,
26418
+ .ui.statistics .pink.statistic > .value,
26419
+ .ui.pink.statistic > .value {
26420
+ color: #e03997;
26421
+ }
26422
+
26423
+ .ui.brown.statistics .statistic > .value,
26424
+ .ui.statistics .brown.statistic > .value,
26425
+ .ui.brown.statistic > .value {
26426
+ color: #a5673f;
26427
+ }
26428
+
26429
+ .ui.grey.statistics .statistic > .value,
26430
+ .ui.statistics .grey.statistic > .value,
26431
+ .ui.grey.statistic > .value {
26432
+ color: #767676;
26433
+ }
26434
+
26435
+ /*--------------
26436
+ Inverted
26437
+ ---------------*/
26438
+
26439
+ .ui.inverted.statistics .statistic > .value,
26440
+ .ui.inverted.statistic .value {
26441
+ color: #ffffff;
26442
+ }
26443
+
26444
+ .ui.inverted.statistics .statistic > .label,
26445
+ .ui.inverted.statistic .label {
26446
+ color: rgba(255, 255, 255, 0.9);
26447
+ }
26448
+
26449
+ .ui.inverted.red.statistics .statistic > .value,
26450
+ .ui.statistics .inverted.red.statistic > .value,
26451
+ .ui.inverted.red.statistic > .value {
26452
+ color: #ff695e;
26453
+ }
26454
+
26455
+ .ui.inverted.orange.statistics .statistic > .value,
26456
+ .ui.statistics .inverted.orange.statistic > .value,
26457
+ .ui.inverted.orange.statistic > .value {
26458
+ color: #ff851b;
26459
+ }
26460
+
26461
+ .ui.inverted.yellow.statistics .statistic > .value,
26462
+ .ui.statistics .inverted.yellow.statistic > .value,
26463
+ .ui.inverted.yellow.statistic > .value {
26464
+ color: #ffe21f;
26465
+ }
26466
+
26467
+ .ui.inverted.olive.statistics .statistic > .value,
26468
+ .ui.statistics .inverted.olive.statistic > .value,
26469
+ .ui.inverted.olive.statistic > .value {
26470
+ color: #d9e778;
26471
+ }
26472
+
26473
+ .ui.inverted.green.statistics .statistic > .value,
26474
+ .ui.statistics .inverted.green.statistic > .value,
26475
+ .ui.inverted.green.statistic > .value {
26476
+ color: #2ecc40;
26477
+ }
26478
+
26479
+ .ui.inverted.teal.statistics .statistic > .value,
26480
+ .ui.statistics .inverted.teal.statistic > .value,
26481
+ .ui.inverted.teal.statistic > .value {
26482
+ color: #6dffff;
26483
+ }
26484
+
26485
+ .ui.inverted.blue.statistics .statistic > .value,
26486
+ .ui.statistics .inverted.blue.statistic > .value,
26487
+ .ui.inverted.blue.statistic > .value {
26488
+ color: #54c8ff;
26489
+ }
26490
+
26491
+ .ui.inverted.violet.statistics .statistic > .value,
26492
+ .ui.statistics .inverted.violet.statistic > .value,
26493
+ .ui.inverted.violet.statistic > .value {
26494
+ color: #a291fb;
26495
+ }
26496
+
26497
+ .ui.inverted.purple.statistics .statistic > .value,
26498
+ .ui.statistics .inverted.purple.statistic > .value,
26499
+ .ui.inverted.purple.statistic > .value {
26500
+ color: #dc73ff;
26501
+ }
26502
+
26503
+ .ui.inverted.pink.statistics .statistic > .value,
26504
+ .ui.statistics .inverted.pink.statistic > .value,
26505
+ .ui.inverted.pink.statistic > .value {
26506
+ color: #ff8edf;
26507
+ }
26508
+
26509
+ .ui.inverted.brown.statistics .statistic > .value,
26510
+ .ui.statistics .inverted.brown.statistic > .value,
26511
+ .ui.inverted.brown.statistic > .value {
26512
+ color: #d67c1c;
26513
+ }
26514
+
26515
+ .ui.inverted.grey.statistics .statistic > .value,
26516
+ .ui.statistics .inverted.grey.statistic > .value,
26517
+ .ui.inverted.grey.statistic > .value {
26518
+ color: #dcddde;
26519
+ }
26520
+
26521
+ /*--------------
26522
+ Floated
26523
+ ---------------*/
26524
+
26525
+ .ui[class*="left floated"].statistic {
26526
+ float: left;
26527
+ margin: 0em 2em 1em 0em;
26528
+ }
26529
+
26530
+ .ui[class*="right floated"].statistic {
26531
+ float: right;
26532
+ margin: 0em 0em 1em 2em;
26533
+ }
26534
+
26535
+ .ui.floated.statistic:last-child {
26536
+ margin-bottom: 0em;
26537
+ }
26538
+
26539
+ /*--------------
26540
+ Sizes
26541
+ ---------------*/
26542
+
26543
+ /* Mini */
26544
+
26545
+ .ui.mini.statistics .statistic > .value,
26546
+ .ui.mini.statistic > .value {
26547
+ font-size: 1.5rem;
26548
+ }
26549
+
26550
+ .ui.mini.horizontal.statistics .statistic > .value,
26551
+ .ui.mini.horizontal.statistic > .value {
26552
+ font-size: 1.5rem;
26553
+ }
26554
+
26555
+ .ui.mini.statistics .statistic > .text.value,
26556
+ .ui.mini.statistic > .text.value {
26557
+ font-size: 1rem;
26558
+ }
26559
+
26560
+ /* Tiny */
26561
+
26562
+ .ui.tiny.statistics .statistic > .value,
26563
+ .ui.tiny.statistic > .value {
26564
+ font-size: 2rem;
26565
+ }
26566
+
26567
+ .ui.tiny.horizontal.statistics .statistic > .value,
26568
+ .ui.tiny.horizontal.statistic > .value {
26569
+ font-size: 2rem;
26570
+ }
26571
+
26572
+ .ui.tiny.statistics .statistic > .text.value,
26573
+ .ui.tiny.statistic > .text.value {
26574
+ font-size: 1rem;
26575
+ }
26576
+
26577
+ /* Small */
26578
+
26579
+ .ui.small.statistics .statistic > .value,
26580
+ .ui.small.statistic > .value {
26581
+ font-size: 3rem;
26582
+ }
26583
+
26584
+ .ui.small.horizontal.statistics .statistic > .value,
26585
+ .ui.small.horizontal.statistic > .value {
26586
+ font-size: 2rem;
26587
+ }
26588
+
26589
+ .ui.small.statistics .statistic > .text.value,
26590
+ .ui.small.statistic > .text.value {
26591
+ font-size: 1rem;
26592
+ }
26593
+
26594
+ /* Medium */
26595
+
26596
+ .ui.statistics .statistic > .value,
26597
+ .ui.statistic > .value {
26598
+ font-size: 4rem;
26599
+ }
26600
+
26601
+ .ui.horizontal.statistics .statistic > .value,
26602
+ .ui.horizontal.statistic > .value {
26603
+ font-size: 3rem;
26604
+ }
26605
+
26606
+ .ui.statistics .statistic > .text.value,
26607
+ .ui.statistic > .text.value {
26608
+ font-size: 2rem;
26609
+ }
26610
+
26611
+ /* Large */
26612
+
26613
+ .ui.large.statistics .statistic > .value,
26614
+ .ui.large.statistic > .value {
26615
+ font-size: 5rem;
26616
+ }
26617
+
26618
+ .ui.large.horizontal.statistics .statistic > .value,
26619
+ .ui.large.horizontal.statistic > .value {
26620
+ font-size: 4rem;
26621
+ }
26622
+
26623
+ .ui.large.statistics .statistic > .text.value,
26624
+ .ui.large.statistic > .text.value {
26625
+ font-size: 2.5rem;
26626
+ }
26627
+
26628
+ /* Huge */
26629
+
26630
+ .ui.huge.statistics .statistic > .value,
26631
+ .ui.huge.statistic > .value {
26632
+ font-size: 6rem;
26633
+ }
26634
+
26635
+ .ui.huge.horizontal.statistics .statistic > .value,
26636
+ .ui.huge.horizontal.statistic > .value {
26637
+ font-size: 5rem;
26638
+ }
26639
+
26640
+ .ui.huge.statistics .statistic > .text.value,
26641
+ .ui.huge.statistic > .text.value {
26642
+ font-size: 2.5rem;
26643
+ }
26644
+
26645
+ /*******************************
26646
+ Theme Overrides
26647
+ *******************************/
26648
+
26649
+ /*******************************
26650
+ User Variable Overrides
26651
+ *******************************/
26652
+ /*!
26653
+ * # Semantic UI 2.1.7 - Accordion
26654
+ * http://github.com/semantic-org/semantic-ui/
26655
+ *
26656
+ *
26657
+ * Copyright 2015 Contributors
26658
+ * Released under the MIT license
26659
+ * http://opensource.org/licenses/MIT
26660
+ *
26661
+ */
26662
+
26663
+ /*******************************
26664
+ Accordion
26665
+ *******************************/
26666
+
26667
+ .ui.accordion,
26668
+ .ui.accordion .accordion {
26669
+ max-width: 100%;
26670
+ }
26671
+
26672
+ .ui.accordion .accordion {
26673
+ margin: 1em 0em 0em;
26674
+ padding: 0em;
26675
+ }
26676
+
26677
+ /* Title */
26678
+
26679
+ .ui.accordion .title,
26680
+ .ui.accordion .accordion .title {
26681
+ cursor: pointer;
26682
+ }
26683
+
26684
+ /* Default Styling */
26685
+
26686
+ .ui.accordion .title:not(.ui) {
26687
+ padding: 0.5em 0em;
26688
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
26689
+ font-size: 1em;
26690
+ color: rgba(0, 0, 0, 0.87);
26691
+ }
26692
+
26693
+ /* Content */
26694
+
26695
+ .ui.accordion .title ~ .content,
26696
+ .ui.accordion .accordion .title ~ .content {
26697
+ display: none;
26698
+ }
26699
+
26700
+ /* Default Styling */
26701
+
26702
+ .ui.accordion:not(.styled) .title ~ .content:not(.ui),
26703
+ .ui.accordion:not(.styled) .accordion .title ~ .content:not(.ui) {
26704
+ margin: '';
26705
+ padding: 0.5em 0em 1em;
26706
+ }
26707
+
26708
+ .ui.accordion:not(.styled) .title ~ .content:not(.ui):last-child {
26709
+ padding-bottom: 0em;
26710
+ }
26711
+
26712
+ /* Arrow */
26713
+
26714
+ .ui.accordion .title .dropdown.icon,
26715
+ .ui.accordion .accordion .title .dropdown.icon {
26716
+ display: inline-block;
26717
+ float: none;
26718
+ opacity: 1;
26719
+ width: 1.25em;
26720
+ height: 1em;
26721
+ margin: 0em 0.25rem 0em 0rem;
26722
+ padding: 0em;
26723
+ font-size: 1em;
26724
+ -webkit-transition: -webkit-transform 0.1s ease, opacity 0.1s ease;
26725
+ transition: transform 0.1s ease, opacity 0.1s ease;
26726
+ vertical-align: baseline;
26727
+ -webkit-transform: none;
26728
+ -ms-transform: none;
26729
+ transform: none;
26730
+ }
26731
+
26732
+ /*--------------
26733
+ Coupling
26734
+ ---------------*/
26735
+
26736
+ /* Menu */
26737
+
26738
+ .ui.accordion.menu .item .title {
26739
+ display: block;
26740
+ padding: 0em;
26741
+ }
26742
+
26743
+ .ui.accordion.menu .item .title > .dropdown.icon {
26744
+ float: right;
26745
+ margin: 0.21425em 0em 0em 1em;
26746
+ -webkit-transform: rotate(180deg);
26747
+ -ms-transform: rotate(180deg);
26748
+ transform: rotate(180deg);
26749
+ }
26750
+
26751
+ /* Header */
26752
+
26753
+ .ui.accordion .ui.header .dropdown.icon {
26754
+ font-size: 1em;
26755
+ margin: 0em 0.25rem 0em 0rem;
26756
+ }
26757
+
26758
+ /*******************************
26759
+ States
26760
+ *******************************/
26761
+
26762
+ .ui.accordion .active.title .dropdown.icon,
26763
+ .ui.accordion .accordion .active.title .dropdown.icon {
26764
+ -webkit-transform: rotate(90deg);
26765
+ -ms-transform: rotate(90deg);
26766
+ transform: rotate(90deg);
26767
+ }
26768
+
26769
+ .ui.accordion.menu .item .active.title > .dropdown.icon {
26770
+ -webkit-transform: rotate(90deg);
26771
+ -ms-transform: rotate(90deg);
26772
+ transform: rotate(90deg);
26773
+ }
26774
+
26775
+ /*******************************
26776
+ Types
26777
+ *******************************/
26778
+
26779
+ /*--------------
26780
+ Styled
26781
+ ---------------*/
26782
+
26783
+ .ui.styled.accordion {
26784
+ width: 600px;
26785
+ }
26786
+
26787
+ .ui.styled.accordion,
26788
+ .ui.styled.accordion .accordion {
26789
+ border-radius: 0.28571429rem;
26790
+ background: #ffffff;
26791
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15);
26792
+ }
26793
+
26794
+ .ui.styled.accordion .title,
26795
+ .ui.styled.accordion .accordion .title {
26796
+ margin: 0em;
26797
+ padding: 0.75em 1em;
26798
+ color: rgba(0, 0, 0, 0.4);
26799
+ font-weight: bold;
26800
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
26801
+ -webkit-transition: background 0.1s ease, color 0.1s ease;
26802
+ transition: background 0.1s ease, color 0.1s ease;
26803
+ }
26804
+
26805
+ .ui.styled.accordion > .title:first-child,
26806
+ .ui.styled.accordion .accordion .title:first-child {
26807
+ border-top: none;
26808
+ }
26809
+
26810
+ /* Content */
26811
+
26812
+ .ui.styled.accordion .content,
26813
+ .ui.styled.accordion .accordion .content {
26814
+ margin: 0em;
26815
+ padding: 0.5em 1em 1.5em;
26816
+ }
26817
+
26818
+ .ui.styled.accordion .accordion .content {
26819
+ padding: 0em;
26820
+ padding: 0.5em 1em 1.5em;
26821
+ }
26822
+
26823
+ /* Hover */
26824
+
26825
+ .ui.styled.accordion .title:hover,
26826
+ .ui.styled.accordion .active.title,
26827
+ .ui.styled.accordion .accordion .title:hover,
26828
+ .ui.styled.accordion .accordion .active.title {
26829
+ background: transparent;
26830
+ color: rgba(0, 0, 0, 0.87);
26831
+ }
26832
+
26833
+ .ui.styled.accordion .accordion .title:hover,
26834
+ .ui.styled.accordion .accordion .active.title {
26835
+ background: transparent;
26836
+ color: rgba(0, 0, 0, 0.87);
26837
+ }
26838
+
26839
+ /* Active */
26840
+
26841
+ .ui.styled.accordion .active.title {
26842
+ background: transparent;
26843
+ color: rgba(0, 0, 0, 0.95);
26844
+ }
26845
+
26846
+ .ui.styled.accordion .accordion .active.title {
26847
+ background: transparent;
26848
+ color: rgba(0, 0, 0, 0.95);
26849
+ }
26850
+
26851
+ /*******************************
26852
+ States
26853
+ *******************************/
26854
+
26855
+ /*--------------
26856
+ Active
26857
+ ---------------*/
26858
+
26859
+ .ui.accordion .active.content,
26860
+ .ui.accordion .accordion .active.content {
26861
+ display: block;
26862
+ }
26863
+
26864
+ /*******************************
26865
+ Variations
26866
+ *******************************/
26867
+
26868
+ /*--------------
26869
+ Fluid
26870
+ ---------------*/
26871
+
26872
+ .ui.fluid.accordion,
26873
+ .ui.fluid.accordion .accordion {
26874
+ width: 100%;
26875
+ }
26876
+
26877
+ /*--------------
26878
+ Inverted
26879
+ ---------------*/
26880
+
26881
+ .ui.inverted.accordion .title:not(.ui) {
26882
+ color: rgba(255, 255, 255, 0.9);
26883
+ }
26884
+
26885
+ /*******************************
26886
+ Theme Overrides
26887
+ *******************************/
26888
+
26889
+ @font-face {
26890
+ font-family: 'Accordion';
26891
+ src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfOIKAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zryj6HgAAAFwAAAAyGhlYWT/0IhHAAACOAAAADZoaGVhApkB5wAAAnAAAAAkaG10eAJuABIAAAKUAAAAGGxvY2EAjABWAAACrAAAAA5tYXhwAAgAFgAAArwAAAAgbmFtZfC1n04AAALcAAABPHBvc3QAAwAAAAAEGAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQASAEkAtwFuABMAADc0PwE2FzYXFh0BFAcGJwYvASY1EgaABQgHBQYGBQcIBYAG2wcGfwcBAQcECf8IBAcBAQd/BgYAAAAAAQAAAEkApQFuABMAADcRNDc2MzIfARYVFA8BBiMiJyY1AAUGBwgFgAYGgAUIBwYFWwEACAUGBoAFCAcFgAYGBQcAAAABAAAAAQAAqWYls18PPPUACwIAAAAAAM/9o+4AAAAAz/2j7gAAAAAAtwFuAAAACAACAAAAAAAAAAEAAAHg/+AAAAIAAAAAAAC3AAEAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAQAAAAC3ABIAtwAAAAAAAAAKABQAHgBCAGQAAAABAAAABgAUAAEAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA") format('truetype'), url("data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAASwAAoAAAAABGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAS0AAAEtFpovuE9TLzIAAAIkAAAAYAAAAGAIIweQY21hcAAAAoQAAABMAAAATA984gpnYXNwAAAC0AAAAAgAAAAIAAAAEGhlYWQAAALYAAAANgAAADb/0IhHaGhlYQAAAxAAAAAkAAAAJAKZAedobXR4AAADNAAAABgAAAAYAm4AEm1heHAAAANMAAAABgAAAAYABlAAbmFtZQAAA1QAAAE8AAABPPC1n05wb3N0AAAEkAAAACAAAAAgAAMAAAEABAQAAQEBB3JhdGluZwABAgABADr4HAL4GwP4GAQeCgAZU/+Lix4KABlT/4uLDAeLa/iU+HQFHQAAAHkPHQAAAH4RHQAAAAkdAAABJBIABwEBBw0PERQZHnJhdGluZ3JhdGluZ3UwdTF1MjB1RjBEOXVGMERBAAACAYkABAAGAQEEBwoNVp38lA78lA78lA77lA773Z33bxWLkI2Qj44I9xT3FAWOj5CNkIuQi4+JjoePiI2Gi4YIi/uUBYuGiYeHiIiHh4mGi4aLho2Ijwj7FPcUBYeOiY+LkAgO+92L5hWL95QFi5CNkI6Oj4+PjZCLkIuQiY6HCPcU+xQFj4iNhouGi4aJh4eICPsU+xQFiIeGiYaLhouHjYePiI6Jj4uQCA74lBT4lBWLDAoAAAAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAEAADfYOJZfDzz1AAsCAAAAAADP/aPuAAAAAM/9o+4AAAAAALcBbgAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAAAtwABAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAEAAAAAtwASALcAAAAAUAAABgAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA") format('woff');
26892
+ font-weight: normal;
26893
+ font-style: normal;
26894
+ }
26895
+
26896
+ /* Dropdown Icon */
26897
+
26898
+ .ui.accordion .title .dropdown.icon,
26899
+ .ui.accordion .accordion .title .dropdown.icon {
26900
+ font-family: Accordion;
26901
+ line-height: 1;
26902
+ -webkit-backface-visibility: hidden;
26903
+ backface-visibility: hidden;
26904
+ font-weight: normal;
26905
+ font-style: normal;
26906
+ text-align: center;
26907
+ }
26908
+
26909
+ .ui.accordion .title .dropdown.icon:before,
26910
+ .ui.accordion .accordion .title .dropdown.icon:before {
26911
+ content: '\f0da' ;
26912
+ }
26913
+
26914
+ /*******************************
26915
+ User Overrides
26916
+ *******************************/
26917
+ /*!
26918
+ * # Semantic UI 2.1.7 - Checkbox
26919
+ * http://github.com/semantic-org/semantic-ui/
26920
+ *
26921
+ *
26922
+ * Copyright 2015 Contributors
26923
+ * Released under the MIT license
26924
+ * http://opensource.org/licenses/MIT
26925
+ *
26926
+ */
26927
+
26928
+ /*******************************
26929
+ Checkbox
26930
+ *******************************/
26931
+
26932
+ /*--------------
26933
+ Content
26934
+ ---------------*/
26935
+
26936
+ .ui.checkbox {
26937
+ position: relative;
26938
+ display: inline-block;
26939
+ -webkit-backface-visibility: hidden;
26940
+ backface-visibility: hidden;
26941
+ outline: none;
26942
+ vertical-align: baseline;
26943
+ font-style: normal;
26944
+ min-height: 17px;
26945
+ font-size: 1rem;
26946
+ line-height: 17px;
26947
+ min-width: 17px;
26948
+ }
26949
+
26950
+ /* HTML Checkbox */
26951
+
26952
+ .ui.checkbox input[type="checkbox"],
26953
+ .ui.checkbox input[type="radio"] {
26954
+ cursor: pointer;
26955
+ position: absolute;
26956
+ top: 0px;
26957
+ left: 0px;
26958
+ opacity: 0 !important;
26959
+ outline: none;
26960
+ z-index: 3;
26961
+ width: 17px;
26962
+ height: 17px;
26963
+ }
26964
+
26965
+ /*--------------
26966
+ Box
26967
+ ---------------*/
26968
+
26969
+ .ui.checkbox .box,
26970
+ .ui.checkbox label {
26971
+ cursor: auto;
26972
+ position: relative;
26973
+ display: block;
26974
+ padding-left: 1.85714em;
26975
+ outline: none;
26976
+ font-size: 1em;
26977
+ }
26978
+
26979
+ .ui.checkbox .box:before,
26980
+ .ui.checkbox label:before {
26981
+ position: absolute;
26982
+ top: 0px;
26983
+ left: 0px;
26984
+ width: 17px;
26985
+ height: 17px;
26986
+ content: '';
26987
+ background: #ffffff;
26988
+ border-radius: 0.21428571rem;
26989
+ -webkit-transition: border 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease, box-shadow 0.1s ease;
26990
+ transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease;
26991
+ border: 1px solid #d4d4d5;
26992
+ }
26993
+
26994
+ /*--------------
26995
+ Checkmark
26996
+ ---------------*/
26997
+
26998
+ .ui.checkbox .box:after,
26999
+ .ui.checkbox label:after {
27000
+ position: absolute;
27001
+ font-size: 14px;
27002
+ top: 0px;
27003
+ left: 0px;
27004
+ width: 17px;
27005
+ height: 17px;
27006
+ text-align: center;
27007
+ opacity: 0;
27008
+ color: rgba(0, 0, 0, 0.87);
27009
+ -webkit-transition: border 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease, box-shadow 0.1s ease;
27010
+ transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease;
27011
+ }
27012
+
27013
+ /*--------------
27014
+ Label
27015
+ ---------------*/
27016
+
27017
+ /* Inside */
27018
+
27019
+ .ui.checkbox label,
27020
+ .ui.checkbox + label {
27021
+ color: rgba(0, 0, 0, 0.87);
27022
+ -webkit-transition: color 0.1s ease;
27023
+ transition: color 0.1s ease;
27024
+ }
27025
+
27026
+ /* Outside */
27027
+
27028
+ .ui.checkbox + label {
27029
+ vertical-align: middle;
27030
+ }
27031
+
27032
+ /*******************************
27033
+ States
27034
+ *******************************/
27035
+
27036
+ /*--------------
27037
+ Hover
27038
+ ---------------*/
27039
+
27040
+ .ui.checkbox .box:hover::before,
27041
+ .ui.checkbox label:hover::before {
27042
+ background: #ffffff;
27043
+ border-color: rgba(34, 36, 38, 0.35);
27044
+ }
27045
+
27046
+ .ui.checkbox label:hover,
27047
+ .ui.checkbox + label:hover {
27048
+ color: rgba(0, 0, 0, 0.8);
27049
+ }
27050
+
27051
+ /*--------------
27052
+ Down
27053
+ ---------------*/
27054
+
27055
+ .ui.checkbox .box:active::before,
27056
+ .ui.checkbox label:active::before {
27057
+ background: #f9fafb;
27058
+ border-color: rgba(34, 36, 38, 0.35);
27059
+ }
27060
+
27061
+ .ui.checkbox .box:active::after,
27062
+ .ui.checkbox label:active::after {
27063
+ color: rgba(0, 0, 0, 0.95);
27064
+ }
27065
+
27066
+ .ui.checkbox input:active ~ label {
27067
+ color: rgba(0, 0, 0, 0.95);
27068
+ }
27069
+
27070
+ /*--------------
27071
+ Focus
27072
+ ---------------*/
27073
+
27074
+ .ui.checkbox input:focus ~ .box:before,
27075
+ .ui.checkbox input:focus ~ label:before {
27076
+ background: #ffffff;
27077
+ border-color: #96c8da;
27078
+ }
27079
+
27080
+ .ui.checkbox input:focus ~ .box:after,
27081
+ .ui.checkbox input:focus ~ label:after {
27082
+ color: rgba(0, 0, 0, 0.95);
27083
+ }
27084
+
27085
+ .ui.checkbox input:focus ~ label {
27086
+ color: rgba(0, 0, 0, 0.95);
27087
+ }
27088
+
27089
+ /*--------------
27090
+ Active
27091
+ ---------------*/
27092
+
27093
+ .ui.checkbox input:checked ~ .box:before,
27094
+ .ui.checkbox input:checked ~ label:before {
27095
+ background: #ffffff;
27096
+ border-color: rgba(34, 36, 38, 0.35);
27097
+ }
27098
+
27099
+ .ui.checkbox input:checked ~ .box:after,
27100
+ .ui.checkbox input:checked ~ label:after {
27101
+ opacity: 1;
27102
+ color: rgba(0, 0, 0, 0.95);
27103
+ }
27104
+
27105
+ /*--------------
27106
+ Indeterminate
27107
+ ---------------*/
27108
+
27109
+ .ui.checkbox input:indeterminate ~ .box:before,
27110
+ .ui.checkbox input:indeterminate ~ label:before {
27111
+ background: #ffffff;
27112
+ border-color: rgba(34, 36, 38, 0.35);
27113
+ }
27114
+
27115
+ .ui.checkbox input:indeterminate ~ .box:after,
27116
+ .ui.checkbox input:indeterminate ~ label:after {
27117
+ opacity: 1;
27118
+ color: rgba(0, 0, 0, 0.95);
27119
+ }
27120
+
27121
+ /*--------------
27122
+ Active Focus
27123
+ ---------------*/
27124
+
27125
+ .ui.checkbox input:indeterminate:focus ~ .box:before,
27126
+ .ui.checkbox input:indeterminate:focus ~ label:before,
27127
+ .ui.checkbox input:checked:focus ~ .box:before,
27128
+ .ui.checkbox input:checked:focus ~ label:before {
27129
+ background: #ffffff;
27130
+ border-color: #96c8da;
27131
+ }
27132
+
27133
+ .ui.checkbox input:indeterminate:focus ~ .box:after,
27134
+ .ui.checkbox input:indeterminate:focus ~ label:after,
27135
+ .ui.checkbox input:checked:focus ~ .box:after,
27136
+ .ui.checkbox input:checked:focus ~ label:after {
27137
+ color: rgba(0, 0, 0, 0.95);
27138
+ }
27139
+
27140
+ /*--------------
27141
+ Read-Only
27142
+ ---------------*/
27143
+
27144
+ .ui.read-only.checkbox,
27145
+ .ui.read-only.checkbox label {
27146
+ cursor: default;
27147
+ }
27148
+
27149
+ /*--------------
27150
+ Disabled
27151
+ ---------------*/
27152
+
27153
+ .ui.disabled.checkbox .box:after,
27154
+ .ui.disabled.checkbox label,
27155
+ .ui.checkbox input[disabled] ~ .box:after,
27156
+ .ui.checkbox input[disabled] ~ label {
27157
+ cursor: default;
27158
+ opacity: 0.5;
27159
+ color: #000000;
27160
+ }
27161
+
27162
+ /*--------------
27163
+ Hidden
27164
+ ---------------*/
27165
+
27166
+ /* Initialized checkbox moves input below element
27167
+ to prevent manually triggering */
27168
+
27169
+ .ui.checkbox input.hidden {
27170
+ z-index: -1;
27171
+ }
27172
+
27173
+ /* Selectable Label */
27174
+
27175
+ .ui.checkbox input.hidden + label {
27176
+ cursor: pointer;
27177
+ -webkit-user-select: none;
27178
+ -moz-user-select: none;
27179
+ -ms-user-select: none;
27180
+ user-select: none;
27181
+ }
27182
+
27183
+ /*******************************
27184
+ Types
27185
+ *******************************/
27186
+
27187
+ /*--------------
27188
+ Radio
27189
+ ---------------*/
27190
+
27191
+ .ui.radio.checkbox {
27192
+ min-height: 15px;
27193
+ }
27194
+
27195
+ .ui.radio.checkbox .box,
27196
+ .ui.radio.checkbox label {
27197
+ padding-left: 1.85714em;
27198
+ }
27199
+
27200
+ /* Box */
27201
+
27202
+ .ui.radio.checkbox .box:before,
27203
+ .ui.radio.checkbox label:before {
27204
+ content: '';
27205
+ -webkit-transform: none;
27206
+ -ms-transform: none;
27207
+ transform: none;
27208
+ width: 15px;
27209
+ height: 15px;
27210
+ border-radius: 500rem;
27211
+ top: 1px;
27212
+ left: 0px;
27213
+ }
27214
+
27215
+ /* Bullet */
27216
+
27217
+ .ui.radio.checkbox .box:after,
27218
+ .ui.radio.checkbox label:after {
27219
+ border: none;
27220
+ content: '' !important;
27221
+ width: 15px;
27222
+ height: 15px;
27223
+ line-height: 15px;
27224
+ }
27225
+
27226
+ /* Radio Checkbox */
27227
+
27228
+ .ui.radio.checkbox .box:after,
27229
+ .ui.radio.checkbox label:after {
27230
+ top: 1px;
27231
+ left: 0px;
27232
+ width: 15px;
27233
+ height: 15px;
27234
+ border-radius: 500rem;
27235
+ -webkit-transform: scale(0.46666667);
27236
+ -ms-transform: scale(0.46666667);
27237
+ transform: scale(0.46666667);
27238
+ background-color: rgba(0, 0, 0, 0.87);
27239
+ }
27240
+
27241
+ /* Focus */
27242
+
27243
+ .ui.radio.checkbox input:focus ~ .box:before,
27244
+ .ui.radio.checkbox input:focus ~ label:before {
27245
+ background-color: #ffffff;
27246
+ }
27247
+
27248
+ .ui.radio.checkbox input:focus ~ .box:after,
27249
+ .ui.radio.checkbox input:focus ~ label:after {
27250
+ background-color: rgba(0, 0, 0, 0.95);
27251
+ }
27252
+
27253
+ /* Indeterminate */
27254
+
27255
+ .ui.radio.checkbox input:indeterminate ~ .box:after,
27256
+ .ui.radio.checkbox input:indeterminate ~ label:after {
27257
+ opacity: 0;
27258
+ }
27259
+
27260
+ /* Active */
27261
+
27262
+ .ui.radio.checkbox input:checked ~ .box:before,
27263
+ .ui.radio.checkbox input:checked ~ label:before {
27264
+ background-color: #ffffff;
27265
+ }
27266
+
27267
+ .ui.radio.checkbox input:checked ~ .box:after,
27268
+ .ui.radio.checkbox input:checked ~ label:after {
27269
+ background-color: rgba(0, 0, 0, 0.95);
27270
+ }
27271
+
27272
+ /* Active Focus */
27273
+
27274
+ .ui.radio.checkbox input:focus:checked ~ .box:before,
27275
+ .ui.radio.checkbox input:focus:checked ~ label:before {
27276
+ background-color: #ffffff;
27277
+ }
27278
+
27279
+ .ui.radio.checkbox input:focus:checked ~ .box:after,
27280
+ .ui.radio.checkbox input:focus:checked ~ label:after {
27281
+ background-color: rgba(0, 0, 0, 0.95);
27282
+ }
27283
+
27284
+ /*--------------
27285
+ Slider
27286
+ ---------------*/
27287
+
27288
+ .ui.slider.checkbox {
27289
+ min-height: 1.25rem;
27290
+ }
27291
+
27292
+ /* Input */
27293
+
27294
+ .ui.slider.checkbox input {
27295
+ width: 3.5rem;
27296
+ height: 1.25rem;
27297
+ }
27298
+
27299
+ /* Label */
27300
+
27301
+ .ui.slider.checkbox .box,
27302
+ .ui.slider.checkbox label {
27303
+ padding-left: 4.5rem;
27304
+ line-height: 1rem;
27305
+ color: rgba(0, 0, 0, 0.4);
27306
+ }
27307
+
27308
+ /* Line */
27309
+
27310
+ .ui.slider.checkbox .box:before,
27311
+ .ui.slider.checkbox label:before {
27312
+ display: block;
27313
+ position: absolute;
27314
+ content: '';
27315
+ border: none !important;
27316
+ left: 0em;
27317
+ z-index: 1;
27318
+ top: 0.4rem;
27319
+ background-color: rgba(0, 0, 0, 0.05);
27320
+ width: 3.5rem;
27321
+ height: 0.21428571rem;
27322
+ -webkit-transform: none;
27323
+ -ms-transform: none;
27324
+ transform: none;
27325
+ border-radius: 500rem;
27326
+ -webkit-transition: background 0.3s ease;
27327
+ transition: background 0.3s ease;
27328
+ }
27329
+
27330
+ /* Handle */
27331
+
27332
+ .ui.slider.checkbox .box:after,
27333
+ .ui.slider.checkbox label:after {
27334
+ background: #ffffff -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
27335
+ background: #ffffff linear-gradient(transparent, rgba(0, 0, 0, 0.05));
27336
+ position: absolute;
27337
+ content: '' !important;
27338
+ opacity: 1;
27339
+ z-index: 2;
27340
+ border: none;
27341
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
27342
+ width: 1.5rem;
27343
+ height: 1.5rem;
27344
+ top: -0.25rem;
27345
+ left: 0em;
27346
+ -webkit-transform: none;
27347
+ -ms-transform: none;
27348
+ transform: none;
27349
+ border-radius: 500rem;
27350
+ -webkit-transition: left 0.3s ease;
27351
+ transition: left 0.3s ease;
27352
+ }
27353
+
27354
+ /* Focus */
27355
+
27356
+ .ui.slider.checkbox input:focus ~ .box:before,
27357
+ .ui.slider.checkbox input:focus ~ label:before {
27358
+ background-color: rgba(0, 0, 0, 0.15);
27359
+ border: none;
27360
+ }
27361
+
27362
+ /* Hover */
27363
+
27364
+ .ui.slider.checkbox .box:hover,
27365
+ .ui.slider.checkbox label:hover {
27366
+ color: rgba(0, 0, 0, 0.8);
27367
+ }
27368
+
27369
+ .ui.slider.checkbox .box:hover::before,
27370
+ .ui.slider.checkbox label:hover::before {
27371
+ background: rgba(0, 0, 0, 0.15);
27372
+ }
27373
+
27374
+ /* Active */
27375
+
27376
+ .ui.slider.checkbox input:checked ~ .box,
27377
+ .ui.slider.checkbox input:checked ~ label {
27378
+ color: rgba(0, 0, 0, 0.95) !important;
27379
+ }
27380
+
27381
+ .ui.slider.checkbox input:checked ~ .box:before,
27382
+ .ui.slider.checkbox input:checked ~ label:before {
27383
+ background-color: #545454 !important;
27384
+ }
27385
+
27386
+ .ui.slider.checkbox input:checked ~ .box:after,
27387
+ .ui.slider.checkbox input:checked ~ label:after {
27388
+ left: 2rem;
27389
+ }
27390
+
27391
+ /* Active Focus */
27392
+
27393
+ .ui.slider.checkbox input:focus:checked ~ .box,
27394
+ .ui.slider.checkbox input:focus:checked ~ label {
27395
+ color: rgba(0, 0, 0, 0.95) !important;
27396
+ }
27397
+
27398
+ .ui.slider.checkbox input:focus:checked ~ .box:before,
27399
+ .ui.slider.checkbox input:focus:checked ~ label:before {
27400
+ background-color: #000000 !important;
27401
+ }
27402
+
27403
+ /*--------------
27404
+ Toggle
27405
+ ---------------*/
27406
+
27407
+ .ui.toggle.checkbox {
27408
+ min-height: 1.5rem;
27409
+ }
27410
+
27411
+ /* Input */
27412
+
27413
+ .ui.toggle.checkbox input {
27414
+ width: 3.5rem;
27415
+ height: 1.5rem;
27416
+ }
27417
+
27418
+ /* Label */
27419
+
27420
+ .ui.toggle.checkbox .box,
27421
+ .ui.toggle.checkbox label {
27422
+ min-height: 1.5rem;
27423
+ padding-left: 4.5rem;
27424
+ color: rgba(0, 0, 0, 0.87);
27425
+ }
27426
+
27427
+ .ui.toggle.checkbox label {
27428
+ padding-top: 0.15em;
27429
+ }
27430
+
27431
+ /* Switch */
27432
+
27433
+ .ui.toggle.checkbox .box:before,
27434
+ .ui.toggle.checkbox label:before {
27435
+ display: block;
27436
+ position: absolute;
27437
+ content: '';
27438
+ z-index: 1;
27439
+ -webkit-transform: none;
27440
+ -ms-transform: none;
27441
+ transform: none;
27442
+ border: none;
27443
+ top: 0rem;
27444
+ background: rgba(0, 0, 0, 0.05);
27445
+ width: 3.5rem;
27446
+ height: 1.5rem;
27447
+ border-radius: 500rem;
27448
+ }
27449
+
27450
+ /* Handle */
27451
+
27452
+ .ui.toggle.checkbox .box:after,
27453
+ .ui.toggle.checkbox label:after {
27454
+ background: #ffffff -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
27455
+ background: #ffffff linear-gradient(transparent, rgba(0, 0, 0, 0.05));
27456
+ position: absolute;
27457
+ content: '' !important;
27458
+ opacity: 1;
27459
+ z-index: 2;
27460
+ border: none;
27461
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
27462
+ width: 1.5rem;
27463
+ height: 1.5rem;
27464
+ top: 0rem;
27465
+ left: 0em;
27466
+ border-radius: 500rem;
27467
+ -webkit-transition: background 0.3s ease, left 0.3s ease;
27468
+ transition: background 0.3s ease, left 0.3s ease;
27469
+ }
27470
+
27471
+ .ui.toggle.checkbox input ~ .box:after,
27472
+ .ui.toggle.checkbox input ~ label:after {
27473
+ left: -0.05rem;
27474
+ }
27475
+
27476
+ /* Focus */
27477
+
27478
+ .ui.toggle.checkbox input:focus ~ .box:before,
27479
+ .ui.toggle.checkbox input:focus ~ label:before {
27480
+ background-color: rgba(0, 0, 0, 0.15);
27481
+ border: none;
27482
+ }
27483
+
27484
+ /* Hover */
27485
+
27486
+ .ui.toggle.checkbox .box:hover::before,
27487
+ .ui.toggle.checkbox label:hover::before {
27488
+ background-color: rgba(0, 0, 0, 0.15);
27489
+ border: none;
27490
+ }
27491
+
27492
+ /* Active */
27493
+
27494
+ .ui.toggle.checkbox input:checked ~ .box,
27495
+ .ui.toggle.checkbox input:checked ~ label {
27496
+ color: rgba(0, 0, 0, 0.95) !important;
27497
+ }
27498
+
27499
+ .ui.toggle.checkbox input:checked ~ .box:before,
27500
+ .ui.toggle.checkbox input:checked ~ label:before {
27501
+ background-color: #2185d0 !important;
27502
+ }
27503
+
27504
+ .ui.toggle.checkbox input:checked ~ .box:after,
27505
+ .ui.toggle.checkbox input:checked ~ label:after {
27506
+ left: 2.15rem;
27507
+ }
27508
+
27509
+ /* Active Focus */
27510
+
27511
+ .ui.toggle.checkbox input:focus:checked ~ .box,
27512
+ .ui.toggle.checkbox input:focus:checked ~ label {
27513
+ color: rgba(0, 0, 0, 0.95) !important;
27514
+ }
27515
+
27516
+ .ui.toggle.checkbox input:focus:checked ~ .box:before,
27517
+ .ui.toggle.checkbox input:focus:checked ~ label:before {
27518
+ background-color: #0d71bb !important;
27519
+ }
27520
+
27521
+ /*******************************
27522
+ Variations
27523
+ *******************************/
27524
+
27525
+ /*--------------
27526
+ Fitted
27527
+ ---------------*/
27528
+
27529
+ .ui.fitted.checkbox .box,
27530
+ .ui.fitted.checkbox label {
27531
+ padding-left: 0em !important;
27532
+ }
27533
+
27534
+ .ui.fitted.toggle.checkbox,
27535
+ .ui.fitted.toggle.checkbox {
27536
+ width: 3.5rem;
27537
+ }
27538
+
27539
+ .ui.fitted.slider.checkbox,
27540
+ .ui.fitted.slider.checkbox {
27541
+ width: 3.5rem;
27542
+ }
27543
+
27544
+ /*******************************
27545
+ Theme Overrides
27546
+ *******************************/
27547
+
27548
+ @font-face {
27549
+ font-family: 'Checkbox';
27550
+ src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBD8AAAC8AAAAYGNtYXAYVtCJAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5Zn4huwUAAAF4AAABYGhlYWQGPe1ZAAAC2AAAADZoaGVhB30DyAAAAxAAAAAkaG10eBBKAEUAAAM0AAAAHGxvY2EAmgESAAADUAAAABBtYXhwAAkALwAAA2AAAAAgbmFtZSC8IugAAAOAAAABknBvc3QAAwAAAAAFFAAAACAAAwMTAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADoAgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6AL//f//AAAAAAAg6AD//f//AAH/4xgEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAEUAUQO7AvgAGgAAARQHAQYjIicBJjU0PwE2MzIfAQE2MzIfARYVA7sQ/hQQFhcQ/uMQEE4QFxcQqAF2EBcXEE4QAnMWEP4UEBABHRAXFhBOEBCoAXcQEE4QFwAAAAABAAABbgMlAkkAFAAAARUUBwYjISInJj0BNDc2MyEyFxYVAyUQEBf9SRcQEBAQFwK3FxAQAhJtFxAQEBAXbRcQEBAQFwAAAAABAAAASQMlA24ALAAAARUUBwYrARUUBwYrASInJj0BIyInJj0BNDc2OwE1NDc2OwEyFxYdATMyFxYVAyUQEBfuEBAXbhYQEO4XEBAQEBfuEBAWbhcQEO4XEBACEm0XEBDuFxAQEBAX7hAQF20XEBDuFxAQEBAX7hAQFwAAAQAAAAIAAHRSzT9fDzz1AAsEAAAAAADRsdR3AAAAANGx1HcAAAAAA7sDbgAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAADuwABAAAAAAAAAAAAAAAAAAAABwQAAAAAAAAAAAAAAAIAAAAEAABFAyUAAAMlAAAAAAAAAAoAFAAeAE4AcgCwAAEAAAAHAC0AAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAIAAAAAQAAAAAAAgAHAGkAAQAAAAAAAwAIADkAAQAAAAAABAAIAH4AAQAAAAAABQALABgAAQAAAAAABgAIAFEAAQAAAAAACgAaAJYAAwABBAkAAQAQAAgAAwABBAkAAgAOAHAAAwABBAkAAwAQAEEAAwABBAkABAAQAIYAAwABBAkABQAWACMAAwABBAkABgAQAFkAAwABBAkACgA0ALBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhWZXJzaW9uIDIuMABWAGUAcgBzAGkAbwBuACAAMgAuADBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhDaGVja2JveABDAGgAZQBjAGsAYgBvAHhSZWd1bGFyAFIAZQBnAHUAbABhAHJDaGVja2JveABDAGgAZQBjAGsAYgBvAHhGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA") format('truetype');
27551
+ }
27552
+
27553
+ /* Checkmark */
27554
+
27555
+ .ui.checkbox label:after,
27556
+ .ui.checkbox .box:after {
27557
+ font-family: 'Checkbox';
27558
+ }
27559
+
27560
+ /* Checked */
27561
+
27562
+ .ui.checkbox input:checked ~ .box:after,
27563
+ .ui.checkbox input:checked ~ label:after {
27564
+ content: '\e800';
27565
+ }
27566
+
27567
+ /* Indeterminate */
27568
+
27569
+ .ui.checkbox input:indeterminate ~ .box:after,
27570
+ .ui.checkbox input:indeterminate ~ label:after {
27571
+ font-size: 12px;
27572
+ content: '\e801';
27573
+ }
27574
+
27575
+ /* UTF Reference
27576
+ .check:before { content: '\e800'; }
27577
+ .dash:before { content: '\e801'; }
27578
+ .plus:before { content: '\e802'; }
27579
+ */
27580
+
27581
+ /*******************************
27582
+ Site Overrides
27583
+ *******************************/
27584
+ /*!
27585
+ * # Semantic UI 2.1.7 - Dimmer
27586
+ * http://github.com/semantic-org/semantic-ui/
27587
+ *
27588
+ *
27589
+ * Copyright 2015 Contributors
27590
+ * Released under the MIT license
27591
+ * http://opensource.org/licenses/MIT
27592
+ *
27593
+ */
27594
+
27595
+ /*******************************
27596
+ Dimmer
27597
+ *******************************/
27598
+
27599
+ .dimmable {
27600
+ position: relative;
27601
+ }
27602
+
27603
+ .ui.dimmer {
27604
+ display: none;
27605
+ position: absolute;
27606
+ top: 0em !important;
27607
+ left: 0em !important;
27608
+ width: 100%;
27609
+ height: 100%;
27610
+ text-align: center;
27611
+ vertical-align: middle;
27612
+ background-color: rgba(0, 0, 0, 0.85);
27613
+ opacity: 0;
27614
+ line-height: 1;
27615
+ -webkit-animation-fill-mode: both;
27616
+ animation-fill-mode: both;
27617
+ -webkit-animation-duration: 0.5s;
27618
+ animation-duration: 0.5s;
27619
+ -webkit-transition: background-color 0.5s linear;
27620
+ transition: background-color 0.5s linear;
27621
+ -webkit-user-select: none;
27622
+ -moz-user-select: none;
27623
+ -ms-user-select: none;
27624
+ user-select: none;
27625
+ will-change: opacity;
27626
+ z-index: 1000;
27627
+ }
27628
+
27629
+ /* Dimmer Content */
27630
+
27631
+ .ui.dimmer > .content {
27632
+ width: 100%;
27633
+ height: 100%;
27634
+ display: table;
27635
+ -webkit-user-select: text;
27636
+ -moz-user-select: text;
27637
+ -ms-user-select: text;
27638
+ user-select: text;
27639
+ }
27640
+
27641
+ .ui.dimmer > .content > * {
27642
+ display: table-cell;
27643
+ vertical-align: middle;
27644
+ color: #ffffff;
27645
+ }
27646
+
27647
+ /* Loose Coupling */
27648
+
27649
+ .ui.segment > .ui.dimmer {
27650
+ border-radius: inherit !important;
27651
+ }
27652
+
27653
+ /*******************************
27654
+ States
27655
+ *******************************/
27656
+
27657
+ .animating.dimmable:not(body),
27658
+ .dimmed.dimmable:not(body) {
27659
+ overflow: hidden;
27660
+ }
27661
+
27662
+ .dimmed.dimmable > .ui.animating.dimmer,
27663
+ .dimmed.dimmable > .ui.visible.dimmer,
27664
+ .ui.active.dimmer {
27665
+ display: block;
27666
+ opacity: 1;
27667
+ }
27668
+
27669
+ .ui.disabled.dimmer {
27670
+ width: 0 !important;
27671
+ height: 0 !important;
27672
+ }
27673
+
27674
+ /*******************************
27675
+ Variations
27676
+ *******************************/
27677
+
27678
+ /*--------------
27679
+ Page
27680
+ ---------------*/
27681
+
27682
+ .ui.page.dimmer {
27683
+ position: fixed;
27684
+ -webkit-transform-style: '';
27685
+ transform-style: '';
27686
+ -webkit-perspective: 2000px;
27687
+ perspective: 2000px;
27688
+ -webkit-transform-origin: center center;
27689
+ -ms-transform-origin: center center;
27690
+ transform-origin: center center;
27691
+ }
27692
+
27693
+ body.animating.in.dimmable,
27694
+ body.dimmed.dimmable {
27695
+ overflow: hidden;
27696
+ }
27697
+
27698
+ body.dimmable > .dimmer {
27699
+ position: fixed;
27700
+ }
27701
+
27702
+ /*--------------
27703
+ Blurring
27704
+ ---------------*/
27705
+
27706
+ .blurring.dimmable > :not(.dimmer) {
27707
+ -webkit-filter: blur(0px) grayscale(0);
27708
+ filter: blur(0px) grayscale(0);
27709
+ -webkit-transition: 800ms -webkit-filter ease, 800ms filter ease;
27710
+ transition: 800ms filter ease;
27711
+ }
27712
+
27713
+ .blurring.dimmed.dimmable > :not(.dimmer) {
27714
+ -webkit-filter: blur(5px) grayscale(0.7);
27715
+ filter: blur(5px) grayscale(0.7);
27716
+ }
27717
+
27718
+ /* Dimmer Color */
27719
+
27720
+ .blurring.dimmable > .dimmer {
27721
+ background-color: rgba(0, 0, 0, 0.6);
27722
+ }
27723
+
27724
+ .blurring.dimmable > .inverted.dimmer {
27725
+ background-color: rgba(255, 255, 255, 0.6);
27726
+ }
27727
+
27728
+ /*--------------
27729
+ Aligned
27730
+ ---------------*/
27731
+
27732
+ .ui.dimmer > .top.aligned.content > * {
27733
+ vertical-align: top;
27734
+ }
27735
+
27736
+ .ui.dimmer > .bottom.aligned.content > * {
27737
+ vertical-align: bottom;
27738
+ }
27739
+
27740
+ /*--------------
27741
+ Inverted
27742
+ ---------------*/
27743
+
27744
+ .ui.inverted.dimmer {
27745
+ background-color: rgba(255, 255, 255, 0.85);
27746
+ }
27747
+
27748
+ .ui.inverted.dimmer > .content > * {
27749
+ color: #ffffff;
27750
+ }
27751
+
27752
+ /*--------------
27753
+ Simple
27754
+ ---------------*/
27755
+
27756
+ /* Displays without javascript */
27757
+
27758
+ .ui.simple.dimmer {
27759
+ display: block;
27760
+ overflow: hidden;
27761
+ opacity: 1;
27762
+ width: 0%;
27763
+ height: 0%;
27764
+ z-index: -100;
27765
+ background-color: rgba(0, 0, 0, 0);
27766
+ }
27767
+
27768
+ .dimmed.dimmable > .ui.simple.dimmer {
27769
+ overflow: visible;
27770
+ opacity: 1;
27771
+ width: 100%;
27772
+ height: 100%;
27773
+ background-color: rgba(0, 0, 0, 0.85);
27774
+ z-index: 1;
27775
+ }
27776
+
27777
+ .ui.simple.inverted.dimmer {
27778
+ background-color: rgba(255, 255, 255, 0);
27779
+ }
27780
+
27781
+ .dimmed.dimmable > .ui.simple.inverted.dimmer {
27782
+ background-color: rgba(255, 255, 255, 0.85);
27783
+ }
27784
+
27785
+ /*******************************
27786
+ Theme Overrides
27787
+ *******************************/
27788
+
27789
+ /*******************************
27790
+ User Overrides
27791
+ *******************************/
27792
+ /*!
27793
+ * # Semantic UI 2.1.7 - Dropdown
27794
+ * http://github.com/semantic-org/semantic-ui/
27795
+ *
27796
+ *
27797
+ * Copyright 2015 Contributors
27798
+ * Released under the MIT license
27799
+ * http://opensource.org/licenses/MIT
27800
+ *
27801
+ */
27802
+
27803
+ /*******************************
27804
+ Dropdown
27805
+ *******************************/
27806
+
27807
+ .ui.dropdown {
27808
+ cursor: pointer;
27809
+ position: relative;
27810
+ display: inline-block;
27811
+ outline: none;
27812
+ text-align: left;
27813
+ -webkit-transition: box-shadow 0.1s ease, width 0.1s ease;
27814
+ transition: box-shadow 0.1s ease, width 0.1s ease;
27815
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
27816
+ }
27817
+
27818
+ /*******************************
27819
+ Content
27820
+ *******************************/
27821
+
27822
+ /*--------------
27823
+ Menu
27824
+ ---------------*/
27825
+
27826
+ .ui.dropdown .menu {
27827
+ cursor: auto;
27828
+ position: absolute;
27829
+ display: none;
27830
+ outline: none;
27831
+ top: 100%;
27832
+ min-width: -webkit-max-content;
27833
+ min-width: -moz-max-content;
27834
+ min-width: max-content;
27835
+ margin: 0em;
27836
+ padding: 0em 0em;
27837
+ background: #ffffff;
27838
+ font-size: 1em;
27839
+ text-shadow: none;
27840
+ text-align: left;
27841
+ box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
27842
+ border: 1px solid rgba(34, 36, 38, 0.15);
27843
+ border-radius: 0.28571429rem;
27844
+ -webkit-transition: opacity 0.1s ease;
27845
+ transition: opacity 0.1s ease;
27846
+ z-index: 11;
27847
+ will-change: transform, opacity;
27848
+ }
27849
+
27850
+ .ui.dropdown .menu > * {
27851
+ white-space: nowrap;
27852
+ }
27853
+
27854
+ /*--------------
27855
+ Hidden Input
27856
+ ---------------*/
27857
+
27858
+ .ui.dropdown > input:not(.search):first-child,
27859
+ .ui.dropdown > select {
27860
+ display: none !important;
27861
+ }
27862
+
27863
+ /*--------------
27864
+ Dropdown Icon
27865
+ ---------------*/
27866
+
27867
+ .ui.dropdown > .dropdown.icon {
27868
+ position: relative;
27869
+ width: auto;
27870
+ font-size: 0.85714286em;
27871
+ margin: 0em 0em 0em 1em;
27872
+ }
27873
+
27874
+ .ui.dropdown .menu > .item .dropdown.icon {
27875
+ width: auto;
27876
+ float: right;
27877
+ margin: 0em 0em 0em 1em;
27878
+ }
27879
+
27880
+ .ui.dropdown .menu > .item .dropdown.icon + .text {
27881
+ margin-right: 1em;
27882
+ }
27883
+
27884
+ /*--------------
27885
+ Text
27886
+ ---------------*/
27887
+
27888
+ .ui.dropdown > .text {
27889
+ display: inline-block;
27890
+ -webkit-transition: none;
27891
+ transition: none;
27892
+ }
27893
+
27894
+ /*--------------
27895
+ Menu Item
27896
+ ---------------*/
27897
+
27898
+ .ui.dropdown .menu > .item {
27899
+ position: relative;
27900
+ cursor: pointer;
27901
+ display: block;
27902
+ border: none;
27903
+ height: auto;
27904
+ text-align: left;
27905
+ border-top: none;
27906
+ line-height: 1em;
27907
+ color: rgba(0, 0, 0, 0.87);
27908
+ padding: 0.71428571rem 1.14285714rem !important;
27909
+ font-size: 1rem;
27910
+ text-transform: none;
27911
+ font-weight: normal;
27912
+ box-shadow: none;
27913
+ -webkit-touch-callout: none;
27914
+ }
27915
+
27916
+ .ui.dropdown .menu > .item:first-child {
27917
+ border-top-width: 0px;
27918
+ }
27919
+
27920
+ /*--------------
27921
+ Floated Content
27922
+ ---------------*/
27923
+
27924
+ .ui.dropdown > .text > [class*="right floated"],
27925
+ .ui.dropdown .menu .item > [class*="right floated"] {
27926
+ float: right !important;
27927
+ margin-right: 0em !important;
27928
+ margin-left: 1em !important;
27929
+ }
27930
+
27931
+ .ui.dropdown > .text > [class*="left floated"],
27932
+ .ui.dropdown .menu .item > [class*="left floated"] {
27933
+ float: left !important;
27934
+ margin-left: 0em !important;
27935
+ margin-right: 1em !important;
27936
+ }
27937
+
27938
+ .ui.dropdown .menu .item > .icon.floated,
27939
+ .ui.dropdown .menu .item > .flag.floated,
27940
+ .ui.dropdown .menu .item > .image.floated,
27941
+ .ui.dropdown .menu .item > img.floated {
27942
+ margin-top: 0em;
27943
+ }
27944
+
27945
+ /*--------------
27946
+ Menu Divider
27947
+ ---------------*/
27948
+
27949
+ .ui.dropdown .menu > .header {
27950
+ margin: 1rem 0rem 0.75rem;
27951
+ padding: 0em 1.14285714rem;
27952
+ color: rgba(0, 0, 0, 0.85);
27953
+ font-size: 0.78571429em;
27954
+ font-weight: bold;
27955
+ text-transform: uppercase;
27956
+ }
27957
+
27958
+ .ui.dropdown .menu > .divider {
27959
+ border-top: 1px solid rgba(34, 36, 38, 0.1);
27960
+ height: 0em;
27961
+ margin: 0.5em 0em;
27962
+ }
27963
+
27964
+ .ui.dropdown .menu > .input {
27965
+ width: auto;
27966
+ display: -webkit-box;
27967
+ display: -webkit-flex;
27968
+ display: -ms-flexbox;
27969
+ display: flex;
27970
+ margin: 1.14285714rem 0.71428571rem;
27971
+ min-width: 10rem;
27972
+ }
27973
+
27974
+ .ui.dropdown .menu > .header + .input {
27975
+ margin-top: 0em;
27976
+ }
27977
+
27978
+ .ui.dropdown .menu > .input:not(.transparent) input {
27979
+ padding: 0.5em 1em;
27980
+ }
27981
+
27982
+ .ui.dropdown .menu > .input:not(.transparent) .button,
27983
+ .ui.dropdown .menu > .input:not(.transparent) .icon,
27984
+ .ui.dropdown .menu > .input:not(.transparent) .label {
27985
+ padding-top: 0.5em;
27986
+ padding-bottom: 0.5em;
27987
+ }
27988
+
27989
+ /*-----------------
27990
+ Item Description
27991
+ -------------------*/
27992
+
27993
+ .ui.dropdown > .text > .description,
27994
+ .ui.dropdown .menu > .item > .description {
27995
+ float: right;
27996
+ margin: 0em 0em 0em 1em;
27997
+ color: rgba(0, 0, 0, 0.4);
27998
+ }
27999
+
28000
+ /*-----------------
28001
+ Message
28002
+ -------------------*/
28003
+
28004
+ .ui.dropdown .menu > .message {
28005
+ padding: 0.71428571rem 1.14285714rem;
28006
+ font-weight: normal;
28007
+ }
28008
+
28009
+ .ui.dropdown .menu > .message:not(.ui) {
28010
+ color: rgba(0, 0, 0, 0.4);
28011
+ }
28012
+
28013
+ /*--------------
28014
+ Sub Menu
28015
+ ---------------*/
28016
+
28017
+ .ui.dropdown .menu .menu {
28018
+ top: 0% !important;
28019
+ left: 100% !important;
28020
+ right: auto !important;
28021
+ margin: 0em 0em 0em -0.5em !important;
28022
+ border-radius: 0.28571429rem !important;
28023
+ z-index: 21 !important;
28024
+ }
28025
+
28026
+ /* Hide Arrow */
28027
+
28028
+ .ui.dropdown .menu .menu:after {
28029
+ display: none;
28030
+ }
28031
+
28032
+ /*--------------
28033
+ Sub Elements
28034
+ ---------------*/
28035
+
28036
+ /* Icons / Flags / Labels / Image */
28037
+
28038
+ .ui.dropdown > .text > .icon,
28039
+ .ui.dropdown > .text > .label,
28040
+ .ui.dropdown > .text > .flag,
28041
+ .ui.dropdown > .text > img,
28042
+ .ui.dropdown > .text > .image {
28043
+ margin-top: 0em;
28044
+ }
28045
+
28046
+ .ui.dropdown .menu > .item > .icon,
28047
+ .ui.dropdown .menu > .item > .label,
28048
+ .ui.dropdown .menu > .item > .flag,
28049
+ .ui.dropdown .menu > .item > .image,
28050
+ .ui.dropdown .menu > .item > img {
28051
+ margin-top: 0em;
28052
+ }
28053
+
28054
+ .ui.dropdown > .text > .icon,
28055
+ .ui.dropdown > .text > .label,
28056
+ .ui.dropdown > .text > .flag,
28057
+ .ui.dropdown > .text > img,
28058
+ .ui.dropdown > .text > .image,
28059
+ .ui.dropdown .menu > .item > .icon,
28060
+ .ui.dropdown .menu > .item > .label,
28061
+ .ui.dropdown .menu > .item > .flag,
28062
+ .ui.dropdown .menu > .item > .image,
28063
+ .ui.dropdown .menu > .item > img {
28064
+ margin-left: 0em;
28065
+ float: none;
28066
+ margin-right: 0.71428571rem;
28067
+ }
28068
+
28069
+ /*--------------
28070
+ Image
28071
+ ---------------*/
28072
+
28073
+ .ui.dropdown > .text > img,
28074
+ .ui.dropdown > .text > .image,
28075
+ .ui.dropdown .menu > .item > .image,
28076
+ .ui.dropdown .menu > .item > img {
28077
+ display: inline-block;
28078
+ vertical-align: middle;
28079
+ width: auto;
28080
+ max-height: 2em;
28081
+ }
28082
+
28083
+ /*******************************
28084
+ Coupling
28085
+ *******************************/
28086
+
28087
+ /*--------------
28088
+ Menu
28089
+ ---------------*/
28090
+
28091
+ /* Remove Menu Item Divider */
28092
+
28093
+ .ui.dropdown .ui.menu > .item:before,
28094
+ .ui.menu .ui.dropdown .menu > .item:before {
28095
+ display: none;
28096
+ }
28097
+
28098
+ /* Prevent Menu Item Border */
28099
+
28100
+ .ui.menu .ui.dropdown .menu .active.item {
28101
+ border-left: none;
28102
+ }
28103
+
28104
+ /* Automatically float dropdown menu right on last menu item */
28105
+
28106
+ .ui.menu .right.menu .dropdown:last-child .menu,
28107
+ .ui.menu .right.dropdown.item .menu,
28108
+ .ui.buttons > .ui.dropdown:last-child .menu {
28109
+ left: auto;
28110
+ right: 0em;
28111
+ }
28112
+
28113
+ /*--------------
28114
+ Label
28115
+ ---------------*/
28116
+
28117
+ /* Dropdown Menu */
28118
+
28119
+ .ui.label.dropdown .menu {
28120
+ min-width: 100%;
28121
+ }
28122
+
28123
+ /*--------------
28124
+ Button
28125
+ ---------------*/
28126
+
28127
+ /* No Margin On Icon Button */
28128
+
28129
+ .ui.dropdown.icon.button > .dropdown.icon {
28130
+ margin: 0em;
28131
+ }
28132
+
28133
+ .ui.button.dropdown .menu {
28134
+ min-width: 100%;
28135
+ }
28136
+
28137
+ /*******************************
28138
+ Types
28139
+ *******************************/
28140
+
28141
+ /*--------------
28142
+ Selection
28143
+ ---------------*/
28144
+
28145
+ /* Displays like a select box */
28146
+
28147
+ .ui.selection.dropdown {
28148
+ cursor: pointer;
28149
+ word-wrap: break-word;
28150
+ line-height: 1em;
28151
+ white-space: normal;
28152
+ outline: 0;
28153
+ -webkit-transform: rotateZ(0deg);
28154
+ transform: rotateZ(0deg);
28155
+ min-width: 14em;
28156
+ min-height: 2.7142em;
28157
+ background: #ffffff;
28158
+ display: inline-block;
28159
+ padding: 0.78571429em 2.6em 0.78571429em 1em;
28160
+ color: rgba(0, 0, 0, 0.87);
28161
+ box-shadow: none;
28162
+ border: 1px solid rgba(34, 36, 38, 0.15);
28163
+ border-radius: 0.28571429rem;
28164
+ -webkit-transition: box-shadow 0.1s ease, width 0.1s ease;
28165
+ transition: box-shadow 0.1s ease, width 0.1s ease;
28166
+ }
28167
+
28168
+ .ui.selection.dropdown.visible,
28169
+ .ui.selection.dropdown.active {
28170
+ z-index: 10;
28171
+ }
28172
+
28173
+ select.ui.dropdown {
28174
+ height: 38px;
28175
+ padding: 0.5em;
28176
+ border: 1px solid rgba(34, 36, 38, 0.15);
28177
+ visibility: visible;
28178
+ }
28179
+
28180
+ .ui.selection.dropdown > .search.icon,
28181
+ .ui.selection.dropdown > .delete.icon,
28182
+ .ui.selection.dropdown > .dropdown.icon {
28183
+ cursor: pointer;
28184
+ position: absolute;
28185
+ top: auto;
28186
+ width: auto;
28187
+ z-index: 3;
28188
+ margin: -0.78571429em;
28189
+ padding: 0.78571429em;
28190
+ right: 1em;
28191
+ opacity: 0.8;
28192
+ -webkit-transition: opacity 0.1s ease;
28193
+ transition: opacity 0.1s ease;
28194
+ }
28195
+
28196
+ /* Compact */
28197
+
28198
+ .ui.compact.selection.dropdown {
28199
+ min-width: 0px;
28200
+ }
28201
+
28202
+ /* Selection Menu */
28203
+
28204
+ .ui.selection.dropdown .menu {
28205
+ overflow-x: hidden;
28206
+ overflow-y: auto;
28207
+ -webkit-backface-visibility: hidden;
28208
+ backface-visibility: hidden;
28209
+ -webkit-overflow-scrolling: touch;
28210
+ border-top-width: 0px !important;
28211
+ width: auto;
28212
+ outline: none;
28213
+ margin: 0px -1px;
28214
+ min-width: calc(100% + 2px );
28215
+ width: calc(100% + 2px );
28216
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
28217
+ box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
28218
+ -webkit-transition: opacity 0.1s ease;
28219
+ transition: opacity 0.1s ease;
28220
+ }
28221
+
28222
+ .ui.selection.dropdown .menu:after,
28223
+ .ui.selection.dropdown .menu:before {
28224
+ display: none;
28225
+ }
28226
+
28227
+ /*--------------
28228
+ Message
28229
+ ---------------*/
28230
+
28231
+ .ui.selection.dropdown .menu > .message {
28232
+ padding: 0.71428571rem 1.14285714rem;
28233
+ }
28234
+
28235
+ @media only screen and (max-width: 767px) {
28236
+ .ui.selection.dropdown .menu {
28237
+ max-height: 7.58571429rem;
28238
+ }
28239
+ }
28240
+
28241
+ @media only screen and (min-width: 768px) {
28242
+ .ui.selection.dropdown .menu {
28243
+ max-height: 10.11428571rem;
28244
+ }
28245
+ }
28246
+
28247
+ @media only screen and (min-width: 992px) {
28248
+ .ui.selection.dropdown .menu {
28249
+ max-height: 15.17142857rem;
28250
+ }
28251
+ }
28252
+
28253
+ @media only screen and (min-width: 1920px) {
28254
+ .ui.selection.dropdown .menu {
28255
+ max-height: 20.22857143rem;
28256
+ }
28257
+ }
28258
+
28259
+ /* Menu Item */
28260
+
28261
+ .ui.selection.dropdown .menu > .item {
28262
+ border-top: 1px solid #fafafa;
28263
+ padding: 0.71428571rem 1.14285714rem !important;
28264
+ white-space: normal;
28265
+ word-wrap: normal;
28266
+ }
28267
+
28268
+ /* Hover */
28269
+
28270
+ .ui.selection.dropdown:hover {
28271
+ border-color: rgba(34, 36, 38, 0.35);
28272
+ box-shadow: none;
28273
+ }
28274
+
28275
+ /* Active */
28276
+
28277
+ .ui.selection.active.dropdown {
28278
+ border-color: #96c8da;
28279
+ box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
28280
+ }
28281
+
28282
+ .ui.selection.active.dropdown .menu {
28283
+ border-color: #96c8da;
28284
+ box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
28285
+ }
28286
+
28287
+ /* Focus */
28288
+
28289
+ .ui.selection.dropdown:focus {
28290
+ border-color: #96c8da;
28291
+ box-shadow: none;
28292
+ }
28293
+
28294
+ .ui.selection.dropdown:focus .menu {
28295
+ border-color: #96c8da;
28296
+ box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
28297
+ }
28298
+
28299
+ /* Visible */
28300
+
28301
+ .ui.selection.visible.dropdown > .text:not(.default) {
28302
+ font-weight: normal;
28303
+ color: rgba(0, 0, 0, 0.8);
28304
+ }
28305
+
28306
+ /* Visible Hover */
28307
+
28308
+ .ui.selection.active.dropdown:hover {
28309
+ border-color: #96c8da;
28310
+ box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
28311
+ }
28312
+
28313
+ .ui.selection.active.dropdown:hover .menu {
28314
+ border-color: #96c8da;
28315
+ box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
28316
+ }
28317
+
28318
+ /* Dropdown Icon */
28319
+
28320
+ .ui.active.selection.dropdown > .dropdown.icon,
28321
+ .ui.visible.selection.dropdown > .dropdown.icon {
28322
+ opacity: 1;
28323
+ z-index: 3;
28324
+ }
28325
+
28326
+ /* Connecting Border */
28327
+
28328
+ .ui.active.selection.dropdown {
28329
+ border-bottom-left-radius: 0em !important;
28330
+ border-bottom-right-radius: 0em !important;
28331
+ }
28332
+
28333
+ /*--------------
28334
+ Searchable
28335
+ ---------------*/
28336
+
28337
+ /* Search Selection */
28338
+
28339
+ .ui.search.dropdown {
28340
+ min-width: '';
28341
+ }
28342
+
28343
+ /* Search Dropdown */
28344
+
28345
+ .ui.search.dropdown > input.search {
28346
+ background: none transparent !important;
28347
+ border: none !important;
28348
+ box-shadow: none !important;
28349
+ cursor: pointer;
28350
+ top: 0em;
28351
+ left: 0em;
28352
+ width: 100%;
28353
+ outline: none;
28354
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
28355
+ padding: inherit;
28356
+ }
28357
+
28358
+ /* Text Layering */
28359
+
28360
+ .ui.search.dropdown > input.search {
28361
+ position: absolute;
28362
+ z-index: 2;
28363
+ }
28364
+
28365
+ .ui.search.dropdown > .text {
28366
+ cursor: text;
28367
+ position: relative;
28368
+ z-index: 3;
28369
+ }
28370
+
28371
+ /* Search Selection */
28372
+
28373
+ .ui.search.selection.dropdown > input.search {
28374
+ line-height: 1.2142em;
28375
+ padding: 0.67861429em 2.6em 0.67861429em 1em;
28376
+ }
28377
+
28378
+ /* Active/Visible Search */
28379
+
28380
+ .ui.search.dropdown.active > input.search,
28381
+ .ui.search.dropdown.visible > input.search {
28382
+ cursor: auto;
28383
+ }
28384
+
28385
+ .ui.search.dropdown.active > .text,
28386
+ .ui.search.dropdown.visible > .text {
28387
+ pointer-events: none;
28388
+ }
28389
+
28390
+ /* Filtered Text */
28391
+
28392
+ .ui.active.search.dropdown input.search:focus + .text .icon,
28393
+ .ui.active.search.dropdown input.search:focus + .text .flag {
28394
+ opacity: 0.45;
28395
+ }
28396
+
28397
+ .ui.active.search.dropdown input.search:focus + .text {
28398
+ color: rgba(0, 0, 0, 0.4) !important;
28399
+ }
28400
+
28401
+ /* Search Menu */
28402
+
28403
+ .ui.search.dropdown .menu {
28404
+ overflow-x: hidden;
28405
+ overflow-y: auto;
28406
+ -webkit-backface-visibility: hidden;
28407
+ backface-visibility: hidden;
28408
+ -webkit-overflow-scrolling: touch;
28409
+ }
28410
+
28411
+ @media only screen and (max-width: 767px) {
28412
+ .ui.search.dropdown .menu {
28413
+ max-height: 7.58571429rem;
28414
+ }
28415
+ }
28416
+
28417
+ @media only screen and (min-width: 768px) {
28418
+ .ui.search.dropdown .menu {
28419
+ max-height: 10.11428571rem;
28420
+ }
28421
+ }
28422
+
28423
+ @media only screen and (min-width: 992px) {
28424
+ .ui.search.dropdown .menu {
28425
+ max-height: 15.17142857rem;
28426
+ }
28427
+ }
28428
+
28429
+ @media only screen and (min-width: 1920px) {
28430
+ .ui.search.dropdown .menu {
28431
+ max-height: 20.22857143rem;
28432
+ }
28433
+ }
28434
+
28435
+ /*--------------
28436
+ Multiple
28437
+ ---------------*/
28438
+
28439
+ /* Multiple Selection */
28440
+
28441
+ .ui.multiple.dropdown {
28442
+ padding: 0.22620476em 2.6em 0.22620476em 0.28571429em;
28443
+ }
28444
+
28445
+ .ui.multiple.dropdown .menu {
28446
+ cursor: auto;
28447
+ }
28448
+
28449
+ /* Multiple Search Selection */
28450
+
28451
+ .ui.multiple.search.dropdown,
28452
+ .ui.multiple.search.dropdown > input.search {
28453
+ cursor: text;
28454
+ }
28455
+
28456
+ /* Selection Label */
28457
+
28458
+ .ui.multiple.dropdown > .label {
28459
+ -webkit-user-select: none;
28460
+ -moz-user-select: none;
28461
+ -ms-user-select: none;
28462
+ user-select: none;
28463
+ display: inline-block;
28464
+ vertical-align: top;
28465
+ white-space: normal;
28466
+ font-size: 1em;
28467
+ padding: 0.35714286em 0.71428571em;
28468
+ margin: 0.21428571em 0.28571429rem 0.21428571em 0em;
28469
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
28470
+ }
28471
+
28472
+ /* Dropdown Icon */
28473
+
28474
+ .ui.multiple.dropdown .dropdown.icon {
28475
+ margin: 0em -0.71428571em 0em 0em;
28476
+ padding: 0.5em;
28477
+ }
28478
+
28479
+ /* Text */
28480
+
28481
+ .ui.multiple.dropdown > .text {
28482
+ position: static;
28483
+ padding: 0;
28484
+ max-width: 100%;
28485
+ margin: 0.45240952em 0em 0.45240952em 0.71428571em;
28486
+ line-height: 1.2142em;
28487
+ }
28488
+
28489
+ .ui.multiple.dropdown > .label ~ .text {
28490
+ display: none;
28491
+ }
28492
+
28493
+ /*-----------------
28494
+ Multiple Search
28495
+ -----------------*/
28496
+
28497
+ /* Prompt Text */
28498
+
28499
+ .ui.multiple.search.dropdown > .text {
28500
+ display: inline-block;
28501
+ position: absolute;
28502
+ top: 0;
28503
+ left: 0;
28504
+ padding: inherit;
28505
+ margin: 0.45240952em 0em 0.45240952em 0.71428571em;
28506
+ line-height: 1.2142em;
28507
+ }
28508
+
28509
+ .ui.multiple.search.dropdown > .label ~ .text {
28510
+ display: none;
28511
+ }
28512
+
28513
+ /* Search */
28514
+
28515
+ .ui.multiple.search.dropdown > input.search {
28516
+ position: static;
28517
+ padding: 0;
28518
+ max-width: 100%;
28519
+ margin: 0.45240952em 0em 0.45240952em 0.71428571em;
28520
+ width: 2.2em;
28521
+ line-height: 1.2142em;
28522
+ }
28523
+
28524
+ /*--------------
28525
+ Inline
28526
+ ---------------*/
28527
+
28528
+ .ui.inline.dropdown {
28529
+ cursor: pointer;
28530
+ display: inline-block;
28531
+ color: inherit;
28532
+ }
28533
+
28534
+ .ui.inline.dropdown .dropdown.icon {
28535
+ margin: 0em 0.5em 0em 0.25em;
28536
+ vertical-align: baseline;
28537
+ }
28538
+
28539
+ .ui.inline.dropdown > .text {
28540
+ font-weight: bold;
28541
+ }
28542
+
28543
+ .ui.inline.dropdown .menu {
28544
+ cursor: auto;
28545
+ margin-top: 0.25em;
28546
+ border-radius: 0.28571429rem;
28547
+ }
28548
+
28549
+ /*******************************
28550
+ States
28551
+ *******************************/
28552
+
28553
+ /*--------------------
28554
+ Active
28555
+ ----------------------*/
28556
+
28557
+ /* Menu Item Active */
28558
+
28559
+ .ui.dropdown .menu .active.item {
28560
+ background: transparent;
28561
+ font-weight: bold;
28562
+ color: rgba(0, 0, 0, 0.95);
28563
+ box-shadow: none;
28564
+ z-index: 12;
28565
+ }
28566
+
28567
+ /*--------------------
28568
+ Hover
28569
+ ----------------------*/
28570
+
28571
+ /* Menu Item Hover */
28572
+
28573
+ .ui.dropdown .menu > .item:hover {
28574
+ background: rgba(0, 0, 0, 0.05);
28575
+ color: rgba(0, 0, 0, 0.95);
28576
+ z-index: 13;
28577
+ }
28578
+
28579
+ /*--------------------
28580
+ Loading
28581
+ ---------------------*/
28582
+
28583
+ /* Positioning */
28584
+
28585
+ .ui.loading.dropdown > i.icon:before,
28586
+ .ui.loading.dropdown > i.icon:after {
28587
+ left: 30% !important;
28588
+ }
28589
+
28590
+ .ui.loading.dropdown > i.icon {
28591
+ top: 50% !important;
28592
+ }
28593
+
28594
+ .ui.multiple.loading.dropdown > i.icon:before,
28595
+ .ui.multiple.loading.dropdown > i.icon:after {
28596
+ top: 0% !important;
28597
+ left: 0% !important;
28598
+ }
28599
+
28600
+ .ui.loading.dropdown > i.icon:before {
28601
+ position: absolute;
28602
+ content: '';
28603
+ top: 50%;
28604
+ left: 50%;
28605
+ margin: -0.64285714em 0em 0em -0.64285714em;
28606
+ width: 1.28571429em;
28607
+ height: 1.28571429em;
28608
+ border-radius: 500rem;
28609
+ border: 0.2em solid rgba(0, 0, 0, 0.1);
28610
+ }
28611
+
28612
+ .ui.loading.dropdown > i.icon:after {
28613
+ position: absolute;
28614
+ content: '';
28615
+ top: 50%;
28616
+ left: 50%;
28617
+ box-shadow: 0px 0px 0px 1px transparent;
28618
+ margin: -0.64285714em 0em 0em -0.64285714em;
28619
+ width: 1.28571429em;
28620
+ height: 1.28571429em;
28621
+ -webkit-animation: dropdown-spin 0.6s linear;
28622
+ animation: dropdown-spin 0.6s linear;
28623
+ -webkit-animation-iteration-count: infinite;
28624
+ animation-iteration-count: infinite;
28625
+ border-radius: 500rem;
28626
+ border-color: #767676 transparent transparent;
28627
+ border-style: solid;
28628
+ border-width: 0.2em;
28629
+ }
28630
+
28631
+ /* Coupling */
28632
+
28633
+ .ui.loading.dropdown.button > i.icon:before,
28634
+ .ui.loading.dropdown.button > i.icon:after {
28635
+ display: none;
28636
+ }
28637
+
28638
+ @-webkit-keyframes dropdown-spin {
28639
+ from {
28640
+ -webkit-transform: rotate(0deg);
28641
+ transform: rotate(0deg);
28642
+ }
28643
+
28644
+ to {
28645
+ -webkit-transform: rotate(360deg);
28646
+ transform: rotate(360deg);
28647
+ }
28648
+ }
28649
+
28650
+ @keyframes dropdown-spin {
28651
+ from {
28652
+ -webkit-transform: rotate(0deg);
28653
+ transform: rotate(0deg);
28654
+ }
28655
+
28656
+ to {
28657
+ -webkit-transform: rotate(360deg);
28658
+ transform: rotate(360deg);
28659
+ }
28660
+ }
28661
+
28662
+ /*--------------------
28663
+ Default Text
28664
+ ----------------------*/
28665
+
28666
+ .ui.dropdown > .default.text,
28667
+ .ui.default.dropdown > .text {
28668
+ color: rgba(179, 179, 179, 0.7);
28669
+ }
28670
+
28671
+ .ui.dropdown:hover > .default.text,
28672
+ .ui.default.dropdown:hover > .text {
28673
+ color: rgba(179, 179, 179, 0.7);
28674
+ }
28675
+
28676
+ /*--------------------
28677
+ Loading
28678
+ ----------------------*/
28679
+
28680
+ .ui.loading.dropdown > .text {
28681
+ -webkit-transition: none;
28682
+ transition: none;
28683
+ }
28684
+
28685
+ /* Used To Check Position */
28686
+
28687
+ .ui.dropdown .loading.menu {
28688
+ display: block;
28689
+ visibility: hidden;
28690
+ z-index: -1;
28691
+ }
28692
+
28693
+ /*--------------------
28694
+ Keyboard Select
28695
+ ----------------------*/
28696
+
28697
+ /* Selected Item */
28698
+
28699
+ .ui.dropdown.selected,
28700
+ .ui.dropdown .menu .selected.item {
28701
+ background: rgba(0, 0, 0, 0.03);
28702
+ color: rgba(0, 0, 0, 0.95);
28703
+ }
28704
+
28705
+ /*--------------------
28706
+ Search Filtered
28707
+ ----------------------*/
28708
+
28709
+ /* Filtered Item */
28710
+
28711
+ .ui.dropdown > .filtered.text {
28712
+ visibility: hidden;
28713
+ }
28714
+
28715
+ .ui.dropdown .filtered.item {
28716
+ display: none !important;
28717
+ }
28718
+
28719
+ /*--------------------
28720
+ Error
28721
+ ----------------------*/
28722
+
28723
+ .ui.dropdown.error,
28724
+ .ui.dropdown.error > .text,
28725
+ .ui.dropdown.error > .default.text {
28726
+ color: #9f3a38;
28727
+ }
28728
+
28729
+ .ui.selection.dropdown.error {
28730
+ background: #fff6f6;
28731
+ border-color: #e0b4b4;
28732
+ }
28733
+
28734
+ .ui.selection.dropdown.error:hover {
28735
+ border-color: #e0b4b4;
28736
+ }
28737
+
28738
+ .ui.dropdown.error > .menu,
28739
+ .ui.dropdown.error > .menu .menu {
28740
+ border-color: #e0b4b4;
28741
+ }
28742
+
28743
+ .ui.dropdown.error > .menu > .item {
28744
+ color: #9f3a38;
28745
+ }
28746
+
28747
+ .ui.multiple.selection.error.dropdown > .label {
28748
+ border-color: #e0b4b4;
28749
+ }
28750
+
28751
+ /* Item Hover */
28752
+
28753
+ .ui.dropdown.error > .menu > .item:hover {
28754
+ background-color: #fff2f2;
28755
+ }
28756
+
28757
+ /* Item Active */
28758
+
28759
+ .ui.dropdown.error > .menu .active.item {
28760
+ background-color: #fdcfcf;
28761
+ }
28762
+
28763
+ /*--------------------
28764
+ Disabled
28765
+ ----------------------*/
28766
+
28767
+ /* Disabled */
28768
+
28769
+ .ui.disabled.dropdown,
28770
+ .ui.dropdown .menu > .disabled.item {
28771
+ cursor: default;
28772
+ pointer-events: none;
28773
+ opacity: 0.45;
28774
+ }
28775
+
28776
+ /*******************************
28777
+ Variations
28778
+ *******************************/
28779
+
28780
+ /*--------------
28781
+ Direction
28782
+ ---------------*/
28783
+
28784
+ /* Flyout Direction */
28785
+
28786
+ .ui.dropdown .menu {
28787
+ left: 0px;
28788
+ }
28789
+
28790
+ /* Default Side (Right) */
28791
+
28792
+ .ui.dropdown .right.menu > .menu,
28793
+ .ui.dropdown .menu .right.menu {
28794
+ left: 100% !important;
28795
+ right: auto !important;
28796
+ border-radius: 0.28571429rem !important;
28797
+ }
28798
+
28799
+ /* Left Flyout Menu */
28800
+
28801
+ .ui.dropdown > .left.menu .menu,
28802
+ .ui.dropdown .menu .left.menu {
28803
+ left: auto !important;
28804
+ right: 100% !important;
28805
+ border-radius: 0.28571429rem !important;
28806
+ }
28807
+
28808
+ .ui.dropdown .item .left.dropdown.icon,
28809
+ .ui.dropdown .left.menu .item .dropdown.icon {
28810
+ width: auto;
28811
+ float: left;
28812
+ margin: 0em 0.71428571rem 0em 0em;
28813
+ }
28814
+
28815
+ .ui.dropdown .item .left.dropdown.icon,
28816
+ .ui.dropdown .left.menu .item .dropdown.icon {
28817
+ width: auto;
28818
+ float: left;
28819
+ margin: 0em 0.71428571rem 0em 0em;
28820
+ }
28821
+
28822
+ .ui.dropdown .item .left.dropdown.icon + .text,
28823
+ .ui.dropdown .left.menu .item .dropdown.icon + .text {
28824
+ margin-left: 1em;
28825
+ }
28826
+
28827
+ /*--------------
28828
+ Upward
28829
+ ---------------*/
28830
+
28831
+ /* Upward Main Menu */
28832
+
28833
+ .ui.upward.dropdown > .menu {
28834
+ top: auto;
28835
+ bottom: 100%;
28836
+ box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
28837
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
28838
+ }
28839
+
28840
+ /* Upward Sub Menu */
28841
+
28842
+ .ui.dropdown .upward.menu {
28843
+ top: auto !important;
28844
+ bottom: 0 !important;
28845
+ }
28846
+
28847
+ /* Active Upward */
28848
+
28849
+ .ui.simple.upward.active.dropdown,
28850
+ .ui.simple.upward.dropdown:hover {
28851
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em !important;
28852
+ }
28853
+
28854
+ .ui.upward.dropdown.button:not(.pointing):not(.floating).active {
28855
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
28856
+ }
28857
+
28858
+ /* Selection */
28859
+
28860
+ .ui.upward.selection.dropdown .menu {
28861
+ border-top-width: 1px !important;
28862
+ border-bottom-width: 0px !important;
28863
+ box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08);
28864
+ }
28865
+
28866
+ .ui.upward.selection.dropdown:hover {
28867
+ box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
28868
+ }
28869
+
28870
+ /* Active Upward */
28871
+
28872
+ .ui.active.upward.selection.dropdown {
28873
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem !important;
28874
+ }
28875
+
28876
+ /* Visible Upward */
28877
+
28878
+ .ui.upward.selection.dropdown.visible {
28879
+ box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
28880
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem !important;
28881
+ }
28882
+
28883
+ /* Visible Hover Upward */
28884
+
28885
+ .ui.upward.active.selection.dropdown:hover {
28886
+ box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.05);
28887
+ }
28888
+
28889
+ .ui.upward.active.selection.dropdown:hover .menu {
28890
+ box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08);
28891
+ }
28892
+
28893
+ /*--------------
28894
+ Simple
28895
+ ---------------*/
28896
+
28897
+ /* Selection Menu */
28898
+
28899
+ .ui.scrolling.dropdown .menu,
28900
+ .ui.dropdown .scrolling.menu {
28901
+ overflow-x: hidden;
28902
+ overflow-y: auto;
28903
+ }
28904
+
28905
+ .ui.scrolling.dropdown .menu {
28906
+ overflow-x: hidden;
28907
+ overflow-y: auto;
28908
+ -webkit-backface-visibility: hidden;
28909
+ backface-visibility: hidden;
28910
+ -webkit-overflow-scrolling: touch;
28911
+ min-width: 100% !important;
28912
+ width: auto !important;
28913
+ }
28914
+
28915
+ .ui.dropdown .scrolling.menu {
28916
+ position: static;
28917
+ overflow-y: auto;
28918
+ border: none;
28919
+ box-shadow: none !important;
28920
+ border-radius: 0 !important;
28921
+ margin: 0 !important;
28922
+ min-width: 100% !important;
28923
+ width: auto !important;
28924
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
28925
+ }
28926
+
28927
+ .ui.scrolling.dropdown .menu .item.item.item,
28928
+ .ui.dropdown .scrolling.menu > .item.item.item {
28929
+ border-top: none;
28930
+ padding-right: calc( 1.14285714rem + 17px ) !important;
28931
+ }
28932
+
28933
+ .ui.scrolling.dropdown .menu .item:first-child,
28934
+ .ui.dropdown .scrolling.menu .item:first-child {
28935
+ border-top: none;
28936
+ }
28937
+
28938
+ .ui.dropdown > .animating.menu .scrolling.menu,
28939
+ .ui.dropdown > .visible.menu .scrolling.menu {
28940
+ display: block;
28941
+ }
28942
+
28943
+ /* Scrollbar in IE */
28944
+
28945
+ @media all and (-ms-high-contrast: none) {
28946
+ .ui.scrolling.dropdown .menu,
28947
+ .ui.dropdown .scrolling.menu {
28948
+ min-width: calc(100% - 17px );
28949
+ }
28950
+ }
28951
+
28952
+ @media only screen and (max-width: 767px) {
28953
+ .ui.scrolling.dropdown .menu,
28954
+ .ui.dropdown .scrolling.menu {
28955
+ max-height: 9.71428571rem;
28956
+ }
28957
+ }
28958
+
28959
+ @media only screen and (min-width: 768px) {
28960
+ .ui.scrolling.dropdown .menu,
28961
+ .ui.dropdown .scrolling.menu {
28962
+ max-height: 14.57142857rem;
28963
+ }
28964
+ }
28965
+
28966
+ @media only screen and (min-width: 992px) {
28967
+ .ui.scrolling.dropdown .menu,
28968
+ .ui.dropdown .scrolling.menu {
28969
+ max-height: 19.42857143rem;
28970
+ }
28971
+ }
28972
+
28973
+ @media only screen and (min-width: 1920px) {
28974
+ .ui.scrolling.dropdown .menu,
28975
+ .ui.dropdown .scrolling.menu {
28976
+ max-height: 19.42857143rem;
28977
+ }
28978
+ }
28979
+
28980
+ /*--------------
28981
+ Simple
28982
+ ---------------*/
28983
+
28984
+ /* Displays without javascript */
28985
+
28986
+ .ui.simple.dropdown .menu:before,
28987
+ .ui.simple.dropdown .menu:after {
28988
+ display: none;
28989
+ }
28990
+
28991
+ .ui.simple.dropdown .menu {
28992
+ position: absolute;
28993
+ display: block;
28994
+ overflow: hidden;
28995
+ top: -9999px !important;
28996
+ opacity: 0;
28997
+ width: 0;
28998
+ height: 0;
28999
+ -webkit-transition: opacity 0.1s ease;
29000
+ transition: opacity 0.1s ease;
29001
+ }
29002
+
29003
+ .ui.simple.active.dropdown,
29004
+ .ui.simple.dropdown:hover {
29005
+ border-bottom-left-radius: 0em !important;
29006
+ border-bottom-right-radius: 0em !important;
29007
+ }
29008
+
29009
+ .ui.simple.active.dropdown > .menu,
29010
+ .ui.simple.dropdown:hover > .menu {
29011
+ overflow: visible;
29012
+ width: auto;
29013
+ height: auto;
29014
+ top: 100% !important;
29015
+ opacity: 1;
29016
+ }
29017
+
29018
+ .ui.simple.dropdown > .menu > .item:active > .menu,
29019
+ .ui.simple.dropdown:hover > .menu > .item:hover > .menu {
29020
+ overflow: visible;
29021
+ width: auto;
29022
+ height: auto;
29023
+ top: 0% !important;
29024
+ left: 100% !important;
29025
+ opacity: 1;
29026
+ }
29027
+
29028
+ .ui.simple.disabled.dropdown:hover .menu {
29029
+ display: none;
29030
+ height: 0px;
29031
+ width: 0px;
29032
+ overflow: hidden;
29033
+ }
29034
+
29035
+ /* Visible */
29036
+
29037
+ .ui.simple.visible.dropdown > .menu {
29038
+ display: block;
29039
+ }
29040
+
29041
+ /*--------------
29042
+ Fluid
29043
+ ---------------*/
29044
+
29045
+ .ui.fluid.dropdown {
29046
+ display: block;
29047
+ width: 100%;
29048
+ min-width: 0em;
29049
+ }
29050
+
29051
+ .ui.fluid.dropdown > .dropdown.icon {
29052
+ float: right;
29053
+ }
29054
+
29055
+ /*--------------
29056
+ Floating
29057
+ ---------------*/
29058
+
29059
+ .ui.floating.dropdown .menu {
29060
+ left: 0;
29061
+ right: auto;
29062
+ box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.08) !important;
29063
+ border-radius: 0.28571429rem !important;
29064
+ }
29065
+
29066
+ .ui.floating.dropdown > .menu {
29067
+ margin-top: 0.5em !important;
29068
+ border-radius: 0.28571429rem !important;
29069
+ }
29070
+
29071
+ /*--------------
29072
+ Pointing
29073
+ ---------------*/
29074
+
29075
+ .ui.pointing.dropdown > .menu {
29076
+ top: 100%;
29077
+ margin-top: 0.71428571rem;
29078
+ border-radius: 0.28571429rem;
29079
+ }
29080
+
29081
+ .ui.pointing.dropdown > .menu:after {
29082
+ display: block;
29083
+ position: absolute;
29084
+ pointer-events: none;
29085
+ content: '';
29086
+ visibility: visible;
29087
+ -webkit-transform: rotate(45deg);
29088
+ -ms-transform: rotate(45deg);
29089
+ transform: rotate(45deg);
29090
+ width: 0.5em;
29091
+ height: 0.5em;
29092
+ box-shadow: -1px -1px 0px 1px rgba(34, 36, 38, 0.15);
29093
+ background: #ffffff;
29094
+ z-index: 2;
29095
+ }
29096
+
29097
+ .ui.pointing.dropdown > .menu:after {
29098
+ top: -0.25em;
29099
+ left: 50%;
29100
+ margin: 0em 0em 0em -0.25em;
29101
+ }
29102
+
29103
+ /* Top Left Pointing */
29104
+
29105
+ .ui.top.left.pointing.dropdown > .menu {
29106
+ top: 100%;
29107
+ bottom: auto;
29108
+ left: 0%;
29109
+ right: auto;
29110
+ margin: 1em 0em 0em;
29111
+ }
29112
+
29113
+ .ui.top.left.pointing.dropdown > .menu {
29114
+ top: 100%;
29115
+ bottom: auto;
29116
+ left: 0%;
29117
+ right: auto;
29118
+ margin: 1em 0em 0em;
29119
+ }
29120
+
29121
+ .ui.top.left.pointing.dropdown > .menu:after {
29122
+ top: -0.25em;
29123
+ left: 1em;
29124
+ right: auto;
29125
+ margin: 0em;
29126
+ -webkit-transform: rotate(45deg);
29127
+ -ms-transform: rotate(45deg);
29128
+ transform: rotate(45deg);
29129
+ }
29130
+
29131
+ /* Top Right Pointing */
29132
+
29133
+ .ui.top.right.pointing.dropdown > .menu {
29134
+ top: 100%;
29135
+ bottom: auto;
29136
+ right: 0%;
29137
+ left: auto;
29138
+ margin: 1em 0em 0em;
29139
+ }
29140
+
29141
+ .ui.top.right.pointing.dropdown > .menu:after {
29142
+ top: -0.25em;
29143
+ left: auto;
29144
+ right: 1em;
29145
+ margin: 0em;
29146
+ -webkit-transform: rotate(45deg);
29147
+ -ms-transform: rotate(45deg);
29148
+ transform: rotate(45deg);
29149
+ }
29150
+
29151
+ /* Left Pointing */
29152
+
29153
+ .ui.left.pointing.dropdown > .menu {
29154
+ top: 0%;
29155
+ left: 100%;
29156
+ right: auto;
29157
+ margin: 0em 0em 0em 1em;
29158
+ }
29159
+
29160
+ .ui.left.pointing.dropdown > .menu:after {
29161
+ top: 1em;
29162
+ left: -0.25em;
29163
+ margin: 0em 0em 0em 0em;
29164
+ -webkit-transform: rotate(-45deg);
29165
+ -ms-transform: rotate(-45deg);
29166
+ transform: rotate(-45deg);
29167
+ }
29168
+
29169
+ /* Right Pointing */
29170
+
29171
+ .ui.right.pointing.dropdown > .menu {
29172
+ top: 0%;
29173
+ left: auto;
29174
+ right: 100%;
29175
+ margin: 0em 1em 0em 0em;
29176
+ }
29177
+
29178
+ .ui.right.pointing.dropdown > .menu:after {
29179
+ top: 1em;
29180
+ left: auto;
29181
+ right: -0.25em;
29182
+ margin: 0em 0em 0em 0em;
29183
+ -webkit-transform: rotate(135deg);
29184
+ -ms-transform: rotate(135deg);
29185
+ transform: rotate(135deg);
29186
+ }
29187
+
29188
+ /* Bottom Pointing */
29189
+
29190
+ .ui.bottom.pointing.dropdown > .menu {
29191
+ top: auto;
29192
+ bottom: 100%;
29193
+ left: 0%;
29194
+ right: auto;
29195
+ margin: 0em 0em 1em;
29196
+ }
29197
+
29198
+ .ui.bottom.pointing.dropdown > .menu:after {
29199
+ top: auto;
29200
+ bottom: -0.25em;
29201
+ right: auto;
29202
+ margin: 0em;
29203
+ -webkit-transform: rotate(-135deg);
29204
+ -ms-transform: rotate(-135deg);
29205
+ transform: rotate(-135deg);
29206
+ }
29207
+
29208
+ /* Reverse Sub-Menu Direction */
29209
+
29210
+ .ui.bottom.pointing.dropdown > .menu .menu {
29211
+ top: auto !important;
29212
+ bottom: 0px !important;
29213
+ }
29214
+
29215
+ /* Bottom Left */
29216
+
29217
+ .ui.bottom.left.pointing.dropdown > .menu {
29218
+ left: 0%;
29219
+ right: auto;
29220
+ }
29221
+
29222
+ .ui.bottom.left.pointing.dropdown > .menu:after {
29223
+ left: 1em;
29224
+ right: auto;
29225
+ }
29226
+
29227
+ /* Bottom Right */
29228
+
29229
+ .ui.bottom.right.pointing.dropdown > .menu {
29230
+ right: 0%;
29231
+ left: auto;
29232
+ }
29233
+
29234
+ .ui.bottom.right.pointing.dropdown > .menu:after {
29235
+ left: auto;
29236
+ right: 1em;
29237
+ }
29238
+
29239
+ /* Upward pointing */
29240
+
29241
+ .ui.upward.pointing.dropdown > .menu,
29242
+ .ui.upward.top.pointing.dropdown > .menu {
29243
+ top: auto;
29244
+ bottom: 100%;
29245
+ margin: 0em 0em 0.71428571rem;
29246
+ border-radius: 0.28571429rem;
29247
+ }
29248
+
29249
+ .ui.upward.pointing.dropdown > .menu:after,
29250
+ .ui.upward.top.pointing.dropdown > .menu:after {
29251
+ top: 100%;
29252
+ bottom: auto;
29253
+ box-shadow: 1px 1px 0px 1px rgba(34, 36, 38, 0.15);
29254
+ margin: -0.25em 0em 0em;
29255
+ }
29256
+
29257
+ /*******************************
29258
+ Theme Overrides
29259
+ *******************************/
29260
+
29261
+ /* Dropdown Carets */
29262
+
29263
+ @font-face {
29264
+ font-family: 'Dropdown';
29265
+ src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfuIIAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zjo82LgAAAFwAAABVGhlYWQAQ88bAAACxAAAADZoaGVhAwcB6QAAAvwAAAAkaG10eAS4ABIAAAMgAAAAIGxvY2EBNgDeAAADQAAAABJtYXhwAAoAFgAAA1QAAAAgbmFtZVcZpu4AAAN0AAABRXBvc3QAAwAAAAAEvAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDX//3//wAB/+MPLQADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAIABJQElABMAABM0NzY3BTYXFhUUDwEGJwYvASY1AAUGBwEACAUGBoAFCAcGgAUBEgcGBQEBAQcECQYHfwYBAQZ/BwYAAQAAAG4BJQESABMAADc0PwE2MzIfARYVFAcGIyEiJyY1AAWABgcIBYAGBgUI/wAHBgWABwaABQWABgcHBgUFBgcAAAABABIASQC3AW4AEwAANzQ/ATYXNhcWHQEUBwYnBi8BJjUSBoAFCAcFBgYFBwgFgAbbBwZ/BwEBBwQJ/wgEBwEBB38GBgAAAAABAAAASQClAW4AEwAANxE0NzYzMh8BFhUUDwEGIyInJjUABQYHCAWABgaABQgHBgVbAQAIBQYGgAUIBwWABgYFBwAAAAEAAAABAADZuaKOXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAAAAACgAUAB4AQgBkAIgAqgAAAAEAAAAIABQAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAOAAAAAQAAAAAAAgAOAEcAAQAAAAAAAwAOACQAAQAAAAAABAAOAFUAAQAAAAAABQAWAA4AAQAAAAAABgAHADIAAQAAAAAACgA0AGMAAwABBAkAAQAOAAAAAwABBAkAAgAOAEcAAwABBAkAAwAOACQAAwABBAkABAAOAFUAAwABBAkABQAWAA4AAwABBAkABgAOADkAAwABBAkACgA0AGMAaQBjAG8AbQBvAG8AbgBWAGUAcgBzAGkAbwBuACAAMQAuADAAaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AbgBSAGUAZwB1AGwAYQByAGkAYwBvAG0AbwBvAG4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=") format('truetype'), url("data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVwAAoAAAAABSgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAdkAAAHZLDXE/09TLzIAAALQAAAAYAAAAGAIIweQY21hcAAAAzAAAABMAAAATA9+4ghnYXNwAAADfAAAAAgAAAAIAAAAEGhlYWQAAAOEAAAANgAAADYAQ88baGhlYQAAA7wAAAAkAAAAJAMHAelobXR4AAAD4AAAACAAAAAgBLgAEm1heHAAAAQAAAAABgAAAAYACFAAbmFtZQAABAgAAAFFAAABRVcZpu5wb3N0AAAFUAAAACAAAAAgAAMAAAEABAQAAQEBCGljb21vb24AAQIAAQA6+BwC+BsD+BgEHgoAGVP/i4seCgAZU/+LiwwHi2v4lPh0BR0AAACIDx0AAACNER0AAAAJHQAAAdASAAkBAQgPERMWGyAlKmljb21vb25pY29tb29udTB1MXUyMHVGMEQ3dUYwRDh1RjBEOXVGMERBAAACAYkABgAIAgABAAQABwAKAA0AVgCfAOgBL/yUDvyUDvyUDvuUDvtvi/emFYuQjZCOjo+Pj42Qiwj3lIsFkIuQiY6Hj4iNhouGi4aJh4eHCPsU+xQFiIiGiYaLhouHjYeOCPsU9xQFiI+Jj4uQCA77b4v3FBWLkI2Pjo8I9xT3FAWPjo+NkIuQi5CJjogI9xT7FAWPh42Hi4aLhomHh4eIiIaJhosI+5SLBYaLh42HjoiPiY+LkAgO+92d928Vi5CNkI+OCPcU9xQFjo+QjZCLkIuPiY6Hj4iNhouGCIv7lAWLhomHh4iIh4eJhouGi4aNiI8I+xT3FAWHjomPi5AIDvvdi+YVi/eUBYuQjZCOjo+Pj42Qi5CLkImOhwj3FPsUBY+IjYaLhouGiYeHiAj7FPsUBYiHhomGi4aLh42Hj4iOiY+LkAgO+JQU+JQViwwKAAAAAAMCAAGQAAUAAAFMAWYAAABHAUwBZgAAAPUAGQCEAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA8NoB4P/g/+AB4AAgAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDw2v/9//8AAAAAACDw1//9//8AAf/jDy0AAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAA5emozXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAUAAACAAAAAAADgCuAAEAAAAAAAEADgAAAAEAAAAAAAIADgBHAAEAAAAAAAMADgAkAAEAAAAAAAQADgBVAAEAAAAAAAUAFgAOAAEAAAAAAAYABwAyAAEAAAAAAAoANABjAAMAAQQJAAEADgAAAAMAAQQJAAIADgBHAAMAAQQJAAMADgAkAAMAAQQJAAQADgBVAAMAAQQJAAUAFgAOAAMAAQQJAAYADgA5AAMAAQQJAAoANABjAGkAYwBvAG0AbwBvAG4AVgBlAHIAcwBpAG8AbgAgADEALgAwAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG4AUgBlAGcAdQBsAGEAcgBpAGMAbwBtAG8AbwBuAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA") format('woff');
29266
+ font-weight: normal;
29267
+ font-style: normal;
29268
+ }
29269
+
29270
+ .ui.dropdown > .dropdown.icon {
29271
+ font-family: 'Dropdown';
29272
+ line-height: 1;
29273
+ height: 1em;
29274
+ width: 1.23em;
29275
+ -webkit-backface-visibility: hidden;
29276
+ backface-visibility: hidden;
29277
+ font-weight: normal;
29278
+ font-style: normal;
29279
+ text-align: center;
29280
+ }
29281
+
29282
+ .ui.dropdown > .dropdown.icon {
29283
+ width: auto;
29284
+ }
29285
+
29286
+ .ui.dropdown > .dropdown.icon:before {
29287
+ content: '\f0d7';
29288
+ }
29289
+
29290
+ /* Sub Menu */
29291
+
29292
+ .ui.dropdown .menu .item .dropdown.icon:before {
29293
+ content: '\f0da' ;
29294
+ }
29295
+
29296
+ .ui.dropdown .item .left.dropdown.icon:before,
29297
+ .ui.dropdown .left.menu .item .dropdown.icon:before {
29298
+ content: "\f0d9" ;
29299
+ }
29300
+
29301
+ /* Vertical Menu Dropdown */
29302
+
29303
+ .ui.vertical.menu .dropdown.item > .dropdown.icon:before {
29304
+ content: "\f0da" ;
29305
+ }
29306
+
29307
+ /* Icons for Reference
29308
+ .dropdown.down.icon {
29309
+ content: "\f0d7";
29310
+ }
29311
+ .dropdown.up.icon {
29312
+ content: "\f0d8";
29313
+ }
29314
+ .dropdown.left.icon {
29315
+ content: "\f0d9";
29316
+ }
29317
+ .dropdown.icon.icon {
29318
+ content: "\f0da";
29319
+ }
29320
+ */
29321
+
29322
+ /*******************************
29323
+ User Overrides
29324
+ *******************************/
29325
+ /*!
29326
+ * # Semantic UI 2.1.7 - Video
29327
+ * http://github.com/semantic-org/semantic-ui/
29328
+ *
29329
+ *
29330
+ * Copyright 2015 Contributors
29331
+ * Released under the MIT license
29332
+ * http://opensource.org/licenses/MIT
29333
+ *
29334
+ */
29335
+
29336
+ /*******************************
29337
+ Types
29338
+ *******************************/
29339
+
29340
+ .ui.embed {
29341
+ position: relative;
29342
+ max-width: 100%;
29343
+ height: 0px;
29344
+ overflow: hidden;
29345
+ background: #dcddde;
29346
+ padding-bottom: 56.25%;
29347
+ }
29348
+
29349
+ /*-----------------
29350
+ Embedded Content
29351
+ ------------------*/
29352
+
29353
+ .ui.embed iframe,
29354
+ .ui.embed embed,
29355
+ .ui.embed object {
29356
+ position: absolute;
29357
+ border: none;
29358
+ width: 100%;
29359
+ height: 100%;
29360
+ top: 0px;
29361
+ left: 0px;
29362
+ margin: 0em;
29363
+ padding: 0em;
29364
+ }
29365
+
29366
+ /*-----------------
29367
+ Embed
29368
+ ------------------*/
29369
+
29370
+ .ui.embed > .embed {
29371
+ display: none;
29372
+ }
29373
+
29374
+ /*--------------
29375
+ Placeholder
29376
+ ---------------*/
29377
+
29378
+ .ui.embed > .placeholder {
29379
+ position: absolute;
29380
+ cursor: pointer;
29381
+ top: 0px;
29382
+ left: 0px;
29383
+ display: block;
29384
+ width: 100%;
29385
+ height: 100%;
29386
+ background-color: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
29387
+ }
29388
+
29389
+ /*--------------
29390
+ Icon
29391
+ ---------------*/
29392
+
29393
+ .ui.embed > .icon {
29394
+ cursor: pointer;
29395
+ position: absolute;
29396
+ top: 0px;
29397
+ left: 0px;
29398
+ width: 100%;
29399
+ height: 100%;
29400
+ z-index: 2;
29401
+ }
29402
+
29403
+ .ui.embed > .icon:after {
29404
+ position: absolute;
29405
+ top: 0%;
29406
+ left: 0%;
29407
+ width: 100%;
29408
+ height: 100%;
29409
+ z-index: 3;
29410
+ content: '';
29411
+ background: -webkit-radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
29412
+ background: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
29413
+ opacity: 0.5;
29414
+ -webkit-transition: opacity 0.5s ease;
29415
+ transition: opacity 0.5s ease;
29416
+ }
29417
+
29418
+ .ui.embed > .icon:before {
29419
+ position: absolute;
29420
+ top: 50%;
29421
+ left: 50%;
29422
+ z-index: 4;
29423
+ -webkit-transform: translateX(-50%) translateY(-50%);
29424
+ -ms-transform: translateX(-50%) translateY(-50%);
29425
+ transform: translateX(-50%) translateY(-50%);
29426
+ color: #ffffff;
29427
+ font-size: 6rem;
29428
+ text-shadow: 0px 2px 10px rgba(34, 36, 38, 0.2);
29429
+ -webkit-transition: opacity 0.5s ease, color 0.5s ease;
29430
+ transition: opacity 0.5s ease, color 0.5s ease;
29431
+ z-index: 10;
29432
+ }
29433
+
29434
+ /*******************************
29435
+ States
29436
+ *******************************/
29437
+
29438
+ /*--------------
29439
+ Hover
29440
+ ---------------*/
29441
+
29442
+ .ui.embed .icon:hover:after {
29443
+ background: -webkit-radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
29444
+ background: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
29445
+ opacity: 1;
29446
+ }
29447
+
29448
+ .ui.embed .icon:hover:before {
29449
+ color: #ffffff;
29450
+ }
29451
+
29452
+ /*--------------
29453
+ Active
29454
+ ---------------*/
29455
+
29456
+ .ui.active.embed > .icon,
29457
+ .ui.active.embed > .placeholder {
29458
+ display: none;
29459
+ }
29460
+
29461
+ .ui.active.embed > .embed {
29462
+ display: block;
29463
+ }
29464
+
29465
+ /*******************************
29466
+ Video Overrides
29467
+ *******************************/
29468
+
29469
+ /*******************************
29470
+ Site Overrides
29471
+ *******************************/
29472
+
29473
+ /*******************************
29474
+ Variations
29475
+ *******************************/
29476
+
29477
+ .ui.square.embed {
29478
+ padding-bottom: 100%;
29479
+ }
29480
+
29481
+ .ui[class*="4:3"].embed {
29482
+ padding-bottom: 75%;
29483
+ }
29484
+
29485
+ .ui[class*="16:9"].embed {
29486
+ padding-bottom: 56.25%;
29487
+ }
29488
+
29489
+ .ui[class*="21:9"].embed {
29490
+ padding-bottom: 42.85714286%;
29491
+ }
29492
+ /*!
29493
+ * # Semantic UI 2.1.7 - Modal
29494
+ * http://github.com/semantic-org/semantic-ui/
29495
+ *
29496
+ *
29497
+ * Copyright 2015 Contributors
29498
+ * Released under the MIT license
29499
+ * http://opensource.org/licenses/MIT
29500
+ *
29501
+ */
29502
+
29503
+ /*******************************
29504
+ Modal
29505
+ *******************************/
29506
+
29507
+ .ui.modal {
29508
+ display: none;
29509
+ position: fixed;
29510
+ z-index: 1001;
29511
+ top: 50%;
29512
+ left: 50%;
29513
+ text-align: left;
29514
+ background: #ffffff;
29515
+ border: none;
29516
+ box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2);
29517
+ -webkit-transform-origin: 50% 25%;
29518
+ -ms-transform-origin: 50% 25%;
29519
+ transform-origin: 50% 25%;
29520
+ border-radius: 0.28571429rem;
29521
+ -webkit-user-select: text;
29522
+ -moz-user-select: text;
29523
+ -ms-user-select: text;
29524
+ user-select: text;
29525
+ will-change: top, left, margin, transform, opacity;
29526
+ }
29527
+
29528
+ .ui.modal > :first-child:not(.icon),
29529
+ .ui.modal > .icon:first-child + * {
29530
+ border-top-left-radius: 0.28571429rem;
29531
+ border-top-right-radius: 0.28571429rem;
29532
+ }
29533
+
29534
+ .ui.modal > :last-child {
29535
+ border-bottom-left-radius: 0.28571429rem;
29536
+ border-bottom-right-radius: 0.28571429rem;
29537
+ }
29538
+
29539
+ /*******************************
29540
+ Content
29541
+ *******************************/
29542
+
29543
+ /*--------------
29544
+ Close
29545
+ ---------------*/
29546
+
29547
+ .ui.modal > .close {
29548
+ cursor: pointer;
29549
+ position: absolute;
29550
+ top: -2.5rem;
29551
+ right: -2.5rem;
29552
+ z-index: 1;
29553
+ opacity: 0.8;
29554
+ font-size: 1.25em;
29555
+ color: #ffffff;
29556
+ width: 2.25rem;
29557
+ height: 2.25rem;
29558
+ padding: 0.625rem 0rem 0rem 0rem;
29559
+ }
29560
+
29561
+ .ui.modal > .close:hover {
29562
+ opacity: 1;
29563
+ }
29564
+
29565
+ /*--------------
29566
+ Header
29567
+ ---------------*/
29568
+
29569
+ .ui.modal > .header {
29570
+ display: block;
29571
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
29572
+ background: #ffffff;
29573
+ margin: 0em;
29574
+ padding: 1.25rem 1.5rem;
29575
+ box-shadow: none;
29576
+ color: rgba(0, 0, 0, 0.85);
29577
+ border-bottom: 1px solid rgba(34, 36, 38, 0.15);
29578
+ }
29579
+
29580
+ .ui.modal > .header:not(.ui) {
29581
+ font-size: 1.42857143rem;
29582
+ line-height: 1.2857em;
29583
+ font-weight: bold;
29584
+ }
29585
+
29586
+ /*--------------
29587
+ Content
29588
+ ---------------*/
29589
+
29590
+ .ui.modal > .content {
29591
+ display: block;
29592
+ width: 100%;
29593
+ font-size: 1em;
29594
+ line-height: 1.4;
29595
+ padding: 1.5rem;
29596
+ background: #ffffff;
29597
+ }
29598
+
29599
+ .ui.modal > .image.content {
29600
+ display: -webkit-box;
29601
+ display: -webkit-flex;
29602
+ display: -ms-flexbox;
29603
+ display: flex;
29604
+ -webkit-box-orient: horizontal;
29605
+ -webkit-box-direction: normal;
29606
+ -webkit-flex-direction: row;
29607
+ -ms-flex-direction: row;
29608
+ flex-direction: row;
29609
+ }
29610
+
29611
+ /* Image */
29612
+
29613
+ .ui.modal > .content > .image {
29614
+ display: block;
29615
+ -webkit-box-flex: 0;
29616
+ -webkit-flex: 0 1 auto;
29617
+ -ms-flex: 0 1 auto;
29618
+ flex: 0 1 auto;
29619
+ width: '';
29620
+ -webkit-align-self: top;
29621
+ -ms-flex-item-align: top;
29622
+ align-self: top;
29623
+ }
29624
+
29625
+ .ui.modal > [class*="top aligned"] {
29626
+ -webkit-align-self: top;
29627
+ -ms-flex-item-align: top;
29628
+ align-self: top;
29629
+ }
29630
+
29631
+ .ui.modal > [class*="middle aligned"] {
29632
+ -webkit-align-self: middle;
29633
+ -ms-flex-item-align: middle;
29634
+ align-self: middle;
29635
+ }
29636
+
29637
+ .ui.modal > [class*="stretched"] {
29638
+ -webkit-align-self: stretch;
29639
+ -ms-flex-item-align: stretch;
29640
+ align-self: stretch;
29641
+ }
29642
+
29643
+ /* Description */
29644
+
29645
+ .ui.modal > .content > .description {
29646
+ display: block;
29647
+ -webkit-box-flex: 1;
29648
+ -webkit-flex: 1 0 auto;
29649
+ -ms-flex: 1 0 auto;
29650
+ flex: 1 0 auto;
29651
+ min-width: 0px;
29652
+ -webkit-align-self: top;
29653
+ -ms-flex-item-align: top;
29654
+ align-self: top;
29655
+ }
29656
+
29657
+ .ui.modal > .content > .icon + .description,
29658
+ .ui.modal > .content > .image + .description {
29659
+ -webkit-box-flex: 0;
29660
+ -webkit-flex: 0 1 auto;
29661
+ -ms-flex: 0 1 auto;
29662
+ flex: 0 1 auto;
29663
+ min-width: '';
29664
+ width: auto;
29665
+ padding-left: 2em;
29666
+ }
29667
+
29668
+ /*rtl:ignore*/
29669
+
29670
+ .ui.modal > .content > .image > i.icon {
29671
+ margin: 0em;
29672
+ opacity: 1;
29673
+ width: auto;
29674
+ line-height: 1;
29675
+ font-size: 8rem;
29676
+ }
29677
+
29678
+ /*--------------
29679
+ Actions
29680
+ ---------------*/
29681
+
29682
+ .ui.modal > .actions {
29683
+ background: #f9fafb;
29684
+ padding: 1rem 1rem;
29685
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
29686
+ text-align: right;
29687
+ }
29688
+
29689
+ .ui.modal .actions > .button {
29690
+ margin-left: 0.75em;
29691
+ }
29692
+
29693
+ /*-------------------
29694
+ Responsive
29695
+ --------------------*/
29696
+
29697
+ /* Modal Width */
29698
+
29699
+ @media only screen and (max-width: 767px) {
29700
+ .ui.modal {
29701
+ width: 95%;
29702
+ margin: 0em 0em 0em -47.5%;
29703
+ }
29704
+ }
29705
+
29706
+ @media only screen and (min-width: 768px) {
29707
+ .ui.modal {
29708
+ width: 88%;
29709
+ margin: 0em 0em 0em -44%;
29710
+ }
29711
+ }
29712
+
29713
+ @media only screen and (min-width: 992px) {
29714
+ .ui.modal {
29715
+ width: 850px;
29716
+ margin: 0em 0em 0em -425px;
29717
+ }
29718
+ }
29719
+
29720
+ @media only screen and (min-width: 1200px) {
29721
+ .ui.modal {
29722
+ width: 900px;
29723
+ margin: 0em 0em 0em -450px;
29724
+ }
29725
+ }
29726
+
29727
+ @media only screen and (min-width: 1920px) {
29728
+ .ui.modal {
29729
+ width: 950px;
29730
+ margin: 0em 0em 0em -475px;
29731
+ }
29732
+ }
29733
+
29734
+ /* Tablet and Mobile */
29735
+
29736
+ @media only screen and (max-width: 991px) {
29737
+ .ui.modal > .header {
29738
+ padding-right: 2.25rem;
29739
+ }
29740
+
29741
+ .ui.modal > .close {
29742
+ top: 1.0535rem;
29743
+ right: 1rem;
29744
+ color: rgba(0, 0, 0, 0.87);
29745
+ }
29746
+ }
29747
+
29748
+ /* Mobile */
29749
+
29750
+ @media only screen and (max-width: 767px) {
29751
+ .ui.modal > .header {
29752
+ padding: 0.75rem 1rem !important;
29753
+ padding-right: 2.25rem !important;
29754
+ }
29755
+
29756
+ .ui.modal > .content {
29757
+ display: block;
29758
+ padding: 1rem !important;
29759
+ }
29760
+
29761
+ .ui.modal > .close {
29762
+ top: 0.5rem !important;
29763
+ right: 0.5rem !important;
29764
+ }
29765
+
29766
+ /*rtl:ignore*/
29767
+
29768
+ .ui.modal .image.content {
29769
+ -webkit-box-orient: vertical;
29770
+ -webkit-box-direction: normal;
29771
+ -webkit-flex-direction: column;
29772
+ -ms-flex-direction: column;
29773
+ flex-direction: column;
29774
+ }
29775
+
29776
+ .ui.modal .content > .image {
29777
+ display: block;
29778
+ max-width: 100%;
29779
+ margin: 0em auto !important;
29780
+ text-align: center;
29781
+ padding: 0rem 0rem 1rem !important;
29782
+ }
29783
+
29784
+ .ui.modal > .content > .image > i.icon {
29785
+ font-size: 5rem;
29786
+ text-align: center;
29787
+ }
29788
+
29789
+ /*rtl:ignore*/
29790
+
29791
+ .ui.modal .content > .description {
29792
+ display: block;
29793
+ width: 100% !important;
29794
+ margin: 0em !important;
29795
+ padding: 1rem 0rem !important;
29796
+ box-shadow: none;
29797
+ }
29798
+
29799
+ /* Let Buttons Stack */
29800
+
29801
+ .ui.modal > .actions {
29802
+ padding: 1rem 1rem 0rem !important;
29803
+ }
29804
+
29805
+ .ui.modal .actions > .buttons,
29806
+ .ui.modal .actions > .button {
29807
+ margin-bottom: 1rem;
29808
+ }
29809
+ }
29810
+
29811
+ /*--------------
29812
+ Coupling
29813
+ ---------------*/
29814
+
29815
+ .ui.inverted.dimmer > .ui.modal {
29816
+ box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2);
29817
+ }
29818
+
29819
+ /*******************************
29820
+ Types
29821
+ *******************************/
29822
+
29823
+ .ui.basic.modal {
29824
+ background-color: transparent;
29825
+ border: none;
29826
+ border-radius: 0em;
29827
+ box-shadow: none !important;
29828
+ color: #ffffff;
29829
+ }
29830
+
29831
+ .ui.basic.modal > .header,
29832
+ .ui.basic.modal > .content,
29833
+ .ui.basic.modal > .actions {
29834
+ background-color: transparent;
29835
+ }
29836
+
29837
+ .ui.basic.modal > .header {
29838
+ color: #ffffff;
29839
+ }
29840
+
29841
+ .ui.basic.modal > .close {
29842
+ top: 1rem;
29843
+ right: 1.5rem;
29844
+ }
29845
+
29846
+ .ui.inverted.dimmer > .basic.modal {
29847
+ color: rgba(0, 0, 0, 0.87);
29848
+ }
29849
+
29850
+ .ui.inverted.dimmer > .ui.basic.modal > .header {
29851
+ color: rgba(0, 0, 0, 0.85);
29852
+ }
29853
+
29854
+ /* Tablet and Mobile */
29855
+
29856
+ @media only screen and (max-width: 991px) {
29857
+ .ui.basic.modal > .close {
29858
+ color: #ffffff;
29859
+ }
29860
+ }
29861
+
29862
+ /*******************************
29863
+ States
29864
+ *******************************/
29865
+
29866
+ .ui.active.modal {
29867
+ display: block;
29868
+ }
29869
+
29870
+ /*******************************
29871
+ Variations
29872
+ *******************************/
29873
+
29874
+ /*--------------
29875
+ Scrolling
29876
+ ---------------*/
29877
+
29878
+ /* A modal that cannot fit on the page */
29879
+
29880
+ .scrolling.dimmable.dimmed {
29881
+ overflow: hidden;
29882
+ }
29883
+
29884
+ .scrolling.dimmable.dimmed > .dimmer {
29885
+ overflow: auto;
29886
+ -webkit-overflow-scrolling: touch;
29887
+ }
29888
+
29889
+ .scrolling.dimmable > .dimmer {
29890
+ position: fixed;
29891
+ }
29892
+
29893
+ .modals.dimmer .ui.scrolling.modal {
29894
+ position: static !important;
29895
+ margin: 3.5rem auto !important;
29896
+ }
29897
+
29898
+ /* undetached scrolling */
29899
+
29900
+ .scrolling.undetached.dimmable.dimmed {
29901
+ overflow: auto;
29902
+ -webkit-overflow-scrolling: touch;
29903
+ }
29904
+
29905
+ .scrolling.undetached.dimmable.dimmed > .dimmer {
29906
+ overflow: hidden;
29907
+ }
29908
+
29909
+ .scrolling.undetached.dimmable .ui.scrolling.modal {
29910
+ position: absolute;
29911
+ left: 50%;
29912
+ margin-top: 3.5rem !important;
29913
+ }
29914
+
29915
+ /* Coupling with Sidebar */
29916
+
29917
+ .undetached.dimmable.dimmed > .pusher {
29918
+ z-index: auto;
29919
+ }
29920
+
29921
+ @media only screen and (max-width: 991px) {
29922
+ .modals.dimmer .ui.scrolling.modal {
29923
+ margin-top: 1rem !important;
29924
+ margin-bottom: 1rem !important;
29925
+ }
29926
+ }
29927
+
29928
+ /*--------------
29929
+ Full Screen
29930
+ ---------------*/
29931
+
29932
+ .ui.fullscreen.modal {
29933
+ width: 95% !important;
29934
+ left: 2.5% !important;
29935
+ margin: 1em auto;
29936
+ }
29937
+
29938
+ .ui.fullscreen.scrolling.modal {
29939
+ left: 0em !important;
29940
+ }
29941
+
29942
+ .ui.fullscreen.modal > .header {
29943
+ padding-right: 2.25rem;
29944
+ }
29945
+
29946
+ .ui.fullscreen.modal > .close {
29947
+ top: 1.0535rem;
29948
+ right: 1rem;
29949
+ color: rgba(0, 0, 0, 0.87);
29950
+ }
29951
+
29952
+ /*--------------
29953
+ Size
29954
+ ---------------*/
29955
+
29956
+ .ui.modal {
29957
+ font-size: 1rem;
29958
+ }
29959
+
29960
+ /* Small */
29961
+
29962
+ .ui.small.modal > .header:not(.ui) {
29963
+ font-size: 1.3em;
29964
+ }
29965
+
29966
+ /* Small Modal Width */
29967
+
29968
+ @media only screen and (max-width: 767px) {
29969
+ .ui.small.modal {
29970
+ width: 95%;
29971
+ margin: 0em 0em 0em -47.5%;
29972
+ }
29973
+ }
29974
+
29975
+ @media only screen and (min-width: 768px) {
29976
+ .ui.small.modal {
29977
+ width: 70.4%;
29978
+ margin: 0em 0em 0em -35.2%;
29979
+ }
29980
+ }
29981
+
29982
+ @media only screen and (min-width: 992px) {
29983
+ .ui.small.modal {
29984
+ width: 680px;
29985
+ margin: 0em 0em 0em -340px;
29986
+ }
29987
+ }
29988
+
29989
+ @media only screen and (min-width: 1200px) {
29990
+ .ui.small.modal {
29991
+ width: 720px;
29992
+ margin: 0em 0em 0em -360px;
29993
+ }
29994
+ }
29995
+
29996
+ @media only screen and (min-width: 1920px) {
29997
+ .ui.small.modal {
29998
+ width: 760px;
29999
+ margin: 0em 0em 0em -380px;
30000
+ }
30001
+ }
30002
+
30003
+ /* Large Modal Width */
30004
+
30005
+ .ui.large.modal > .header {
30006
+ font-size: 1.6em;
30007
+ }
30008
+
30009
+ @media only screen and (max-width: 767px) {
30010
+ .ui.large.modal {
30011
+ width: 95%;
30012
+ margin: 0em 0em 0em -47.5%;
30013
+ }
30014
+ }
30015
+
30016
+ @media only screen and (min-width: 768px) {
30017
+ .ui.large.modal {
30018
+ width: 88%;
30019
+ margin: 0em 0em 0em -44%;
30020
+ }
30021
+ }
30022
+
30023
+ @media only screen and (min-width: 992px) {
30024
+ .ui.large.modal {
30025
+ width: 1020px;
30026
+ margin: 0em 0em 0em -510px;
30027
+ }
30028
+ }
30029
+
30030
+ @media only screen and (min-width: 1200px) {
30031
+ .ui.large.modal {
30032
+ width: 1080px;
30033
+ margin: 0em 0em 0em -540px;
30034
+ }
30035
+ }
30036
+
30037
+ @media only screen and (min-width: 1920px) {
30038
+ .ui.large.modal {
30039
+ width: 1140px;
30040
+ margin: 0em 0em 0em -570px;
30041
+ }
30042
+ }
30043
+
30044
+ /*******************************
30045
+ Theme Overrides
30046
+ *******************************/
30047
+
30048
+ /*******************************
30049
+ Site Overrides
30050
+ *******************************/
30051
+ /*!
30052
+ * # Semantic UI 2.1.7 - Nag
30053
+ * http://github.com/semantic-org/semantic-ui/
30054
+ *
30055
+ *
30056
+ * Copyright 2015 Contributors
30057
+ * Released under the MIT license
30058
+ * http://opensource.org/licenses/MIT
30059
+ *
30060
+ */
30061
+
30062
+ /*******************************
30063
+ Nag
30064
+ *******************************/
30065
+
30066
+ .ui.nag {
30067
+ display: none;
30068
+ opacity: 0.95;
30069
+ position: relative;
30070
+ top: 0em;
30071
+ left: 0px;
30072
+ z-index: 999;
30073
+ min-height: 0em;
30074
+ width: 100%;
30075
+ margin: 0em;
30076
+ padding: 0.75em 1em;
30077
+ background: #555555;
30078
+ box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
30079
+ font-size: 1rem;
30080
+ text-align: center;
30081
+ color: rgba(0, 0, 0, 0.87);
30082
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
30083
+ -webkit-transition: 0.2s background ease;
30084
+ transition: 0.2s background ease;
30085
+ }
30086
+
30087
+ a.ui.nag {
30088
+ cursor: pointer;
30089
+ }
30090
+
30091
+ .ui.nag > .title {
30092
+ display: inline-block;
30093
+ margin: 0em 0.5em;
30094
+ color: #ffffff;
30095
+ }
30096
+
30097
+ .ui.nag > .close.icon {
30098
+ cursor: pointer;
30099
+ opacity: 0.4;
30100
+ position: absolute;
30101
+ top: 50%;
30102
+ right: 1em;
30103
+ font-size: 1em;
30104
+ margin: -0.5em 0em 0em;
30105
+ color: #ffffff;
30106
+ -webkit-transition: opacity 0.2s ease;
30107
+ transition: opacity 0.2s ease;
30108
+ }
30109
+
30110
+ /*******************************
30111
+ States
30112
+ *******************************/
30113
+
30114
+ /* Hover */
30115
+
30116
+ .ui.nag:hover {
30117
+ background: #555555;
30118
+ opacity: 1;
30119
+ }
30120
+
30121
+ .ui.nag .close:hover {
30122
+ opacity: 1;
30123
+ }
30124
+
30125
+ /*******************************
30126
+ Variations
30127
+ *******************************/
30128
+
30129
+ /*--------------
30130
+ Static
30131
+ ---------------*/
30132
+
30133
+ .ui.overlay.nag {
30134
+ position: absolute;
30135
+ display: block;
30136
+ }
30137
+
30138
+ /*--------------
30139
+ Fixed
30140
+ ---------------*/
30141
+
30142
+ .ui.fixed.nag {
30143
+ position: fixed;
30144
+ }
30145
+
30146
+ /*--------------
30147
+ Bottom
30148
+ ---------------*/
30149
+
30150
+ .ui.bottom.nags,
30151
+ .ui.bottom.nag {
30152
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
30153
+ top: auto;
30154
+ bottom: 0em;
30155
+ }
30156
+
30157
+ /*--------------
30158
+ White
30159
+ ---------------*/
30160
+
30161
+ .ui.inverted.nags .nag,
30162
+ .ui.inverted.nag {
30163
+ background-color: #f3f4f5;
30164
+ color: rgba(0, 0, 0, 0.85);
30165
+ }
30166
+
30167
+ .ui.inverted.nags .nag .close,
30168
+ .ui.inverted.nags .nag .title,
30169
+ .ui.inverted.nag .close,
30170
+ .ui.inverted.nag .title {
30171
+ color: rgba(0, 0, 0, 0.4);
30172
+ }
30173
+
30174
+ /*******************************
30175
+ Groups
30176
+ *******************************/
30177
+
30178
+ .ui.nags .nag {
30179
+ border-radius: 0em !important;
30180
+ }
30181
+
30182
+ .ui.nags .nag:last-child {
30183
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
30184
+ }
30185
+
30186
+ .ui.bottom.nags .nag:last-child {
30187
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
30188
+ }
30189
+
30190
+ /*******************************
30191
+ Theme Overrides
30192
+ *******************************/
30193
+
30194
+ /*******************************
30195
+ User Overrides
30196
+ *******************************/
30197
+ /*!
30198
+ * # Semantic UI 2.1.7 - Popup
30199
+ * http://github.com/semantic-org/semantic-ui/
30200
+ *
30201
+ *
30202
+ * Copyright 2015 Contributors
30203
+ * Released under the MIT license
30204
+ * http://opensource.org/licenses/MIT
30205
+ *
30206
+ */
30207
+
30208
+ /*******************************
30209
+ Popup
30210
+ *******************************/
30211
+
30212
+ .ui.popup {
30213
+ display: none;
30214
+ position: absolute;
30215
+ top: 0px;
30216
+ right: 0px;
30217
+ /* Fixes content being squished when inline (moz only) */
30218
+ min-width: -webkit-min-content;
30219
+ min-width: -moz-min-content;
30220
+ min-width: min-content;
30221
+ z-index: 1900;
30222
+ border: 1px solid #d4d4d5;
30223
+ line-height: 1.4285em;
30224
+ max-width: 250px;
30225
+ background: #ffffff;
30226
+ padding: 0.833em 1em;
30227
+ font-weight: normal;
30228
+ font-style: normal;
30229
+ color: rgba(0, 0, 0, 0.87);
30230
+ border-radius: 0.28571429rem;
30231
+ box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.08);
30232
+ }
30233
+
30234
+ .ui.popup > .header {
30235
+ padding: 0em;
30236
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
30237
+ font-size: 1.125em;
30238
+ line-height: 1.2;
30239
+ font-weight: bold;
30240
+ }
30241
+
30242
+ .ui.popup > .header + .content {
30243
+ padding-top: 0.5em;
30244
+ }
30245
+
30246
+ .ui.popup:before {
30247
+ position: absolute;
30248
+ content: '';
30249
+ width: 0.75em;
30250
+ height: 0.75em;
30251
+ background: #ffffff;
30252
+ -webkit-transform: rotate(45deg);
30253
+ -ms-transform: rotate(45deg);
30254
+ transform: rotate(45deg);
30255
+ z-index: 2;
30256
+ box-shadow: 1px 1px 0px 0px #bababc;
30257
+ }
30258
+
30259
+ /*******************************
30260
+ Types
30261
+ *******************************/
30262
+
30263
+ /*--------------
30264
+ Spacing
30265
+ ---------------*/
30266
+
30267
+ .ui.popup {
30268
+ margin: 0em;
30269
+ }
30270
+
30271
+ /* Extending from Top */
30272
+
30273
+ .ui.top.popup {
30274
+ margin: 0em 0em 0.75em;
30275
+ }
30276
+
30277
+ .ui.top.left.popup {
30278
+ -webkit-transform-origin: left bottom;
30279
+ -ms-transform-origin: left bottom;
30280
+ transform-origin: left bottom;
30281
+ }
30282
+
30283
+ .ui.top.center.popup {
30284
+ -webkit-transform-origin: center bottom;
30285
+ -ms-transform-origin: center bottom;
30286
+ transform-origin: center bottom;
30287
+ }
30288
+
30289
+ .ui.top.right.popup {
30290
+ -webkit-transform-origin: right bottom;
30291
+ -ms-transform-origin: right bottom;
30292
+ transform-origin: right bottom;
30293
+ }
30294
+
30295
+ /* Extending from Vertical Center */
30296
+
30297
+ .ui.left.center.popup {
30298
+ margin: 0em 0.75em 0em 0em;
30299
+ -webkit-transform-origin: right 50%;
30300
+ -ms-transform-origin: right 50%;
30301
+ transform-origin: right 50%;
30302
+ }
30303
+
30304
+ .ui.right.center.popup {
30305
+ margin: 0em 0em 0em 0.75em;
30306
+ -webkit-transform-origin: left 50%;
30307
+ -ms-transform-origin: left 50%;
30308
+ transform-origin: left 50%;
30309
+ }
30310
+
30311
+ /* Extending from Bottom */
30312
+
30313
+ .ui.bottom.popup {
30314
+ margin: 0.75em 0em 0em;
30315
+ }
30316
+
30317
+ .ui.bottom.left.popup {
30318
+ -webkit-transform-origin: left top;
30319
+ -ms-transform-origin: left top;
30320
+ transform-origin: left top;
30321
+ }
30322
+
30323
+ .ui.bottom.center.popup {
30324
+ -webkit-transform-origin: center top;
30325
+ -ms-transform-origin: center top;
30326
+ transform-origin: center top;
30327
+ }
30328
+
30329
+ .ui.bottom.right.popup {
30330
+ -webkit-transform-origin: right top;
30331
+ -ms-transform-origin: right top;
30332
+ transform-origin: right top;
30333
+ }
30334
+
30335
+ /*--------------
30336
+ Pointer
30337
+ ---------------*/
30338
+
30339
+ /*--- Below ---*/
30340
+
30341
+ .ui.bottom.center.popup:before {
30342
+ margin-left: -0.325em;
30343
+ top: -0.325em;
30344
+ left: 50%;
30345
+ right: auto;
30346
+ bottom: auto;
30347
+ box-shadow: -1px -1px 0px 0px #bababc;
30348
+ }
30349
+
30350
+ .ui.bottom.left.popup {
30351
+ margin-left: 0em;
30352
+ }
30353
+
30354
+ /*rtl:rename*/
30355
+
30356
+ .ui.bottom.left.popup:before {
30357
+ top: -0.325em;
30358
+ left: 1em;
30359
+ right: auto;
30360
+ bottom: auto;
30361
+ margin-left: 0em;
30362
+ box-shadow: -1px -1px 0px 0px #bababc;
30363
+ }
30364
+
30365
+ .ui.bottom.right.popup {
30366
+ margin-right: 0em;
30367
+ }
30368
+
30369
+ /*rtl:rename*/
30370
+
30371
+ .ui.bottom.right.popup:before {
30372
+ top: -0.325em;
30373
+ right: 1em;
30374
+ bottom: auto;
30375
+ left: auto;
30376
+ margin-left: 0em;
30377
+ box-shadow: -1px -1px 0px 0px #bababc;
30378
+ }
30379
+
30380
+ /*--- Above ---*/
30381
+
30382
+ .ui.top.center.popup:before {
30383
+ top: auto;
30384
+ right: auto;
30385
+ bottom: -0.325em;
30386
+ left: 50%;
30387
+ margin-left: -0.325em;
30388
+ }
30389
+
30390
+ .ui.top.left.popup {
30391
+ margin-left: 0em;
30392
+ }
30393
+
30394
+ /*rtl:rename*/
30395
+
30396
+ .ui.top.left.popup:before {
30397
+ bottom: -0.325em;
30398
+ left: 1em;
30399
+ top: auto;
30400
+ right: auto;
30401
+ margin-left: 0em;
30402
+ }
30403
+
30404
+ .ui.top.right.popup {
30405
+ margin-right: 0em;
30406
+ }
30407
+
30408
+ /*rtl:rename*/
30409
+
30410
+ .ui.top.right.popup:before {
30411
+ bottom: -0.325em;
30412
+ right: 1em;
30413
+ top: auto;
30414
+ left: auto;
30415
+ margin-left: 0em;
30416
+ }
30417
+
30418
+ /*--- Left Center ---*/
30419
+
30420
+ /*rtl:rename*/
30421
+
30422
+ .ui.left.center.popup:before {
30423
+ top: 50%;
30424
+ right: -0.325em;
30425
+ bottom: auto;
30426
+ left: auto;
30427
+ margin-top: -0.325em;
30428
+ box-shadow: 1px -1px 0px 0px #bababc;
30429
+ }
30430
+
30431
+ /*--- Right Center ---*/
30432
+
30433
+ /*rtl:rename*/
30434
+
30435
+ .ui.right.center.popup:before {
30436
+ top: 50%;
30437
+ left: -0.325em;
30438
+ bottom: auto;
30439
+ right: auto;
30440
+ margin-top: -0.325em;
30441
+ box-shadow: -1px 1px 0px 0px #bababc;
30442
+ }
30443
+
30444
+ /* Arrow Color By Location */
30445
+
30446
+ .ui.bottom.popup:before {
30447
+ background: #ffffff;
30448
+ }
30449
+
30450
+ .ui.right.center.popup:before,
30451
+ .ui.left.center.popup:before {
30452
+ background: #ffffff;
30453
+ }
30454
+
30455
+ .ui.top.popup:before {
30456
+ background: #ffffff;
30457
+ }
30458
+
30459
+ /* Inverted Arrow Color */
30460
+
30461
+ .ui.inverted.bottom.popup:before {
30462
+ background: #1b1c1d;
30463
+ }
30464
+
30465
+ .ui.inverted.right.center.popup:before,
30466
+ .ui.inverted.left.center.popup:before {
30467
+ background: #1b1c1d;
30468
+ }
30469
+
30470
+ .ui.inverted.top.popup:before {
30471
+ background: #1b1c1d;
30472
+ }
30473
+
30474
+ /*******************************
30475
+ Coupling
30476
+ *******************************/
30477
+
30478
+ /* Immediate Nested Grid */
30479
+
30480
+ .ui.popup > .ui.grid:not(.padded) {
30481
+ width: calc(100% + 1.75rem);
30482
+ margin: -0.7rem -0.875rem;
30483
+ }
30484
+
30485
+ /*******************************
30486
+ States
30487
+ *******************************/
30488
+
30489
+ .ui.loading.popup {
30490
+ display: block;
30491
+ visibility: hidden;
30492
+ z-index: -1;
30493
+ }
30494
+
30495
+ .ui.animating.popup,
30496
+ .ui.visible.popup {
30497
+ display: block;
30498
+ }
30499
+
30500
+ .ui.visible.popup {
30501
+ -webkit-transform: translateZ(0px);
30502
+ transform: translateZ(0px);
30503
+ -webkit-backface-visibility: hidden;
30504
+ backface-visibility: hidden;
30505
+ }
30506
+
30507
+ /*******************************
30508
+ Variations
30509
+ *******************************/
30510
+
30511
+ /*--------------
30512
+ Basic
30513
+ ---------------*/
30514
+
30515
+ .ui.basic.popup:before {
30516
+ display: none;
30517
+ }
30518
+
30519
+ /*--------------
30520
+ Wide
30521
+ ---------------*/
30522
+
30523
+ .ui.wide.popup {
30524
+ max-width: 350px;
30525
+ }
30526
+
30527
+ .ui[class*="very wide"].popup {
30528
+ max-width: 550px;
30529
+ }
30530
+
30531
+ @media only screen and (max-width: 767px) {
30532
+ .ui.wide.popup,
30533
+ .ui[class*="very wide"].popup {
30534
+ max-width: 250px;
30535
+ }
30536
+ }
30537
+
30538
+ /*--------------
30539
+ Fluid
30540
+ ---------------*/
30541
+
30542
+ .ui.fluid.popup {
30543
+ width: 100%;
30544
+ max-width: none;
30545
+ }
30546
+
30547
+ /*--------------
30548
+ Colors
30549
+ ---------------*/
30550
+
30551
+ /* Inverted colors */
30552
+
30553
+ .ui.inverted.popup {
30554
+ background: #1b1c1d;
30555
+ color: #ffffff;
30556
+ border: none;
30557
+ box-shadow: none;
30558
+ }
30559
+
30560
+ .ui.inverted.popup .header {
30561
+ background-color: none;
30562
+ color: #ffffff;
30563
+ }
30564
+
30565
+ .ui.inverted.popup:before {
30566
+ background-color: #1b1c1d;
30567
+ box-shadow: none !important;
30568
+ }
30569
+
30570
+ /*--------------
30571
+ Flowing
30572
+ ---------------*/
30573
+
30574
+ .ui.flowing.popup {
30575
+ max-width: none;
30576
+ }
30577
+
30578
+ /*--------------
30579
+ Sizes
30580
+ ---------------*/
30581
+
30582
+ .ui.mini.popup {
30583
+ font-size: 0.71428571rem;
30584
+ }
30585
+
30586
+ .ui.tiny.popup {
30587
+ font-size: 0.85714286rem;
30588
+ }
30589
+
30590
+ .ui.small.popup {
30591
+ font-size: 0.92857143rem;
30592
+ }
30593
+
30594
+ .ui.popup {
30595
+ font-size: 1rem;
30596
+ }
30597
+
30598
+ .ui.large.popup {
30599
+ font-size: 1.14285714rem;
30600
+ }
30601
+
30602
+ .ui.huge.popup {
30603
+ font-size: 1.42857143rem;
30604
+ }
30605
+
30606
+ /*******************************
30607
+ Theme Overrides
30608
+ *******************************/
30609
+
30610
+ /*******************************
30611
+ User Overrides
30612
+ *******************************/
30613
+ /*!
30614
+ * # Semantic UI 2.1.7 - Progress Bar
30615
+ * http://github.com/semantic-org/semantic-ui/
30616
+ *
30617
+ *
30618
+ * Copyright 2015 Contributors
30619
+ * Released under the MIT license
30620
+ * http://opensource.org/licenses/MIT
30621
+ *
30622
+ */
30623
+
30624
+ /*******************************
30625
+ Progress
30626
+ *******************************/
30627
+
30628
+ .ui.progress {
30629
+ position: relative;
30630
+ display: block;
30631
+ max-width: 100%;
30632
+ border: none;
30633
+ margin: 1em 0em 2.5em;
30634
+ box-shadow: none;
30635
+ background: rgba(0, 0, 0, 0.1);
30636
+ padding: 0em;
30637
+ border-radius: 0.28571429rem;
30638
+ }
30639
+
30640
+ .ui.progress:first-child {
30641
+ margin: 0em 0em 2.5em;
30642
+ }
30643
+
30644
+ .ui.progress:last-child {
30645
+ margin: 0em 0em 1.5em;
30646
+ }
30647
+
30648
+ /*******************************
30649
+ Content
30650
+ *******************************/
30651
+
30652
+ /* Activity Bar */
30653
+
30654
+ .ui.progress .bar {
30655
+ display: block;
30656
+ line-height: 1;
30657
+ position: relative;
30658
+ width: 0%;
30659
+ min-width: 2em;
30660
+ background: #888888;
30661
+ border-radius: 0.28571429rem;
30662
+ -webkit-transition: width 0.1s ease, background-color 0.1s ease;
30663
+ transition: width 0.1s ease, background-color 0.1s ease;
30664
+ }
30665
+
30666
+ /* Percent Complete */
30667
+
30668
+ .ui.progress .bar > .progress {
30669
+ white-space: nowrap;
30670
+ position: absolute;
30671
+ width: auto;
30672
+ font-size: 0.92857143em;
30673
+ top: 50%;
30674
+ right: 0.5em;
30675
+ left: auto;
30676
+ bottom: auto;
30677
+ color: rgba(255, 255, 255, 0.7);
30678
+ text-shadow: none;
30679
+ margin-top: -0.5em;
30680
+ font-weight: bold;
30681
+ text-align: left;
30682
+ }
30683
+
30684
+ /* Label */
30685
+
30686
+ .ui.progress > .label {
30687
+ position: absolute;
30688
+ width: 100%;
30689
+ font-size: 1em;
30690
+ top: 100%;
30691
+ right: auto;
30692
+ left: 0%;
30693
+ bottom: auto;
30694
+ color: rgba(0, 0, 0, 0.87);
30695
+ font-weight: bold;
30696
+ text-shadow: none;
30697
+ margin-top: 0.2em;
30698
+ text-align: center;
30699
+ -webkit-transition: color 0.4s ease;
30700
+ transition: color 0.4s ease;
30701
+ }
30702
+
30703
+ /*******************************
30704
+ Types
30705
+ *******************************/
30706
+
30707
+ /* Indicating */
30708
+
30709
+ .ui.indicating.progress[data-percent^="1"] .bar,
30710
+ .ui.indicating.progress[data-percent^="2"] .bar {
30711
+ background-color: #d95c5c;
30712
+ }
30713
+
30714
+ .ui.indicating.progress[data-percent^="3"] .bar {
30715
+ background-color: #efbc72;
30716
+ }
30717
+
30718
+ .ui.indicating.progress[data-percent^="4"] .bar,
30719
+ .ui.indicating.progress[data-percent^="5"] .bar {
30720
+ background-color: #e6bb48;
30721
+ }
30722
+
30723
+ .ui.indicating.progress[data-percent^="6"] .bar {
30724
+ background-color: #ddc928;
30725
+ }
30726
+
30727
+ .ui.indicating.progress[data-percent^="7"] .bar,
30728
+ .ui.indicating.progress[data-percent^="8"] .bar {
30729
+ background-color: #b4d95c;
30730
+ }
30731
+
30732
+ .ui.indicating.progress[data-percent^="9"] .bar,
30733
+ .ui.indicating.progress[data-percent^="100"] .bar {
30734
+ background-color: #66da81;
30735
+ }
30736
+
30737
+ /* Indicating Label */
30738
+
30739
+ .ui.indicating.progress[data-percent^="1"] .label,
30740
+ .ui.indicating.progress[data-percent^="2"] .label {
30741
+ color: rgba(0, 0, 0, 0.87);
30742
+ }
30743
+
30744
+ .ui.indicating.progress[data-percent^="3"] .label {
30745
+ color: rgba(0, 0, 0, 0.87);
30746
+ }
30747
+
30748
+ .ui.indicating.progress[data-percent^="4"] .label,
30749
+ .ui.indicating.progress[data-percent^="5"] .label {
30750
+ color: rgba(0, 0, 0, 0.87);
30751
+ }
30752
+
30753
+ .ui.indicating.progress[data-percent^="6"] .label {
30754
+ color: rgba(0, 0, 0, 0.87);
30755
+ }
30756
+
30757
+ .ui.indicating.progress[data-percent^="7"] .label,
30758
+ .ui.indicating.progress[data-percent^="8"] .label {
30759
+ color: rgba(0, 0, 0, 0.87);
30760
+ }
30761
+
30762
+ .ui.indicating.progress[data-percent^="9"] .label,
30763
+ .ui.indicating.progress[data-percent^="100"] .label {
30764
+ color: rgba(0, 0, 0, 0.87);
30765
+ }
30766
+
30767
+ /* Single Digits */
30768
+
30769
+ .ui.indicating.progress[data-percent="1"] .bar,
30770
+ .ui.indicating.progress[data-percent="2"] .bar,
30771
+ .ui.indicating.progress[data-percent="3"] .bar,
30772
+ .ui.indicating.progress[data-percent="4"] .bar,
30773
+ .ui.indicating.progress[data-percent="5"] .bar,
30774
+ .ui.indicating.progress[data-percent="6"] .bar,
30775
+ .ui.indicating.progress[data-percent="7"] .bar,
30776
+ .ui.indicating.progress[data-percent="8"] .bar,
30777
+ .ui.indicating.progress[data-percent="9"] .bar {
30778
+ background-color: #d95c5c;
30779
+ }
30780
+
30781
+ .ui.indicating.progress[data-percent="1"] .label,
30782
+ .ui.indicating.progress[data-percent="2"] .label,
30783
+ .ui.indicating.progress[data-percent="3"] .label,
30784
+ .ui.indicating.progress[data-percent="4"] .label,
30785
+ .ui.indicating.progress[data-percent="5"] .label,
30786
+ .ui.indicating.progress[data-percent="6"] .label,
30787
+ .ui.indicating.progress[data-percent="7"] .label,
30788
+ .ui.indicating.progress[data-percent="8"] .label,
30789
+ .ui.indicating.progress[data-percent="9"] .label {
30790
+ color: rgba(0, 0, 0, 0.87);
30791
+ }
30792
+
30793
+ /* Indicating Success */
30794
+
30795
+ .ui.indicating.progress.success .label {
30796
+ color: #1a531b;
30797
+ }
30798
+
30799
+ /*******************************
30800
+ States
30801
+ *******************************/
30802
+
30803
+ /*--------------
30804
+ Success
30805
+ ---------------*/
30806
+
30807
+ .ui.progress.success .bar {
30808
+ background-color: #21ba45 !important;
30809
+ }
30810
+
30811
+ .ui.progress.success .bar,
30812
+ .ui.progress.success .bar::after {
30813
+ -webkit-animation: none !important;
30814
+ animation: none !important;
30815
+ }
30816
+
30817
+ .ui.progress.success > .label {
30818
+ color: #1a531b;
30819
+ }
30820
+
30821
+ /*--------------
30822
+ Warning
30823
+ ---------------*/
30824
+
30825
+ .ui.progress.warning .bar {
30826
+ background-color: #f2c037 !important;
30827
+ }
30828
+
30829
+ .ui.progress.warning .bar,
30830
+ .ui.progress.warning .bar::after {
30831
+ -webkit-animation: none !important;
30832
+ animation: none !important;
30833
+ }
30834
+
30835
+ .ui.progress.warning > .label {
30836
+ color: #794b02;
30837
+ }
30838
+
30839
+ /*--------------
30840
+ Error
30841
+ ---------------*/
30842
+
30843
+ .ui.progress.error .bar {
30844
+ background-color: #db2828 !important;
30845
+ }
30846
+
30847
+ .ui.progress.error .bar,
30848
+ .ui.progress.error .bar::after {
30849
+ -webkit-animation: none !important;
30850
+ animation: none !important;
30851
+ }
30852
+
30853
+ .ui.progress.error > .label {
30854
+ color: #912d2b;
30855
+ }
30856
+
30857
+ /*--------------
30858
+ Active
30859
+ ---------------*/
30860
+
30861
+ .ui.active.progress .bar {
30862
+ position: relative;
30863
+ min-width: 2em;
30864
+ }
30865
+
30866
+ .ui.active.progress .bar::after {
30867
+ content: '';
30868
+ opacity: 0;
30869
+ position: absolute;
30870
+ top: 0px;
30871
+ left: 0px;
30872
+ right: 0px;
30873
+ bottom: 0px;
30874
+ background: #ffffff;
30875
+ border-radius: 0.28571429rem;
30876
+ -webkit-animation: progress-active 2s ease infinite;
30877
+ animation: progress-active 2s ease infinite;
30878
+ }
30879
+
30880
+ @-webkit-keyframes progress-active {
30881
+ 0% {
30882
+ opacity: 0.3;
30883
+ width: 0;
30884
+ }
30885
+
30886
+ 100% {
30887
+ opacity: 0;
30888
+ width: 100%;
30889
+ }
30890
+ }
30891
+
30892
+ @keyframes progress-active {
30893
+ 0% {
30894
+ opacity: 0.3;
30895
+ width: 0;
30896
+ }
30897
+
30898
+ 100% {
30899
+ opacity: 0;
30900
+ width: 100%;
30901
+ }
30902
+ }
30903
+
30904
+ /*--------------
30905
+ Disabled
30906
+ ---------------*/
30907
+
30908
+ .ui.disabled.progress {
30909
+ opacity: 0.35;
30910
+ }
30911
+
30912
+ .ui.disabled.progress .bar,
30913
+ .ui.disabled.progress .bar::after {
30914
+ -webkit-animation: none !important;
30915
+ animation: none !important;
30916
+ }
30917
+
30918
+ /*******************************
30919
+ Variations
30920
+ *******************************/
30921
+
30922
+ /*--------------
30923
+ Inverted
30924
+ ---------------*/
30925
+
30926
+ .ui.inverted.progress {
30927
+ background: rgba(255, 255, 255, 0.08);
30928
+ border: none;
30929
+ }
30930
+
30931
+ .ui.inverted.progress .bar {
30932
+ background: #888888;
30933
+ }
30934
+
30935
+ .ui.inverted.progress .bar > .progress {
30936
+ color: #f9fafb;
30937
+ }
30938
+
30939
+ .ui.inverted.progress > .label {
30940
+ color: #ffffff;
30941
+ }
30942
+
30943
+ .ui.inverted.progress.success > .label {
30944
+ color: #21ba45;
30945
+ }
30946
+
30947
+ .ui.inverted.progress.warning > .label {
30948
+ color: #f2c037;
30949
+ }
30950
+
30951
+ .ui.inverted.progress.error > .label {
30952
+ color: #db2828;
30953
+ }
30954
+
30955
+ /*--------------
30956
+ Attached
30957
+ ---------------*/
30958
+
30959
+ /* bottom attached */
30960
+
30961
+ .ui.progress.attached {
30962
+ background: transparent;
30963
+ position: relative;
30964
+ border: none;
30965
+ margin: 0em;
30966
+ }
30967
+
30968
+ .ui.progress.attached,
30969
+ .ui.progress.attached .bar {
30970
+ display: block;
30971
+ height: 0.2rem;
30972
+ padding: 0px;
30973
+ overflow: hidden;
30974
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
30975
+ }
30976
+
30977
+ .ui.progress.attached .bar {
30978
+ border-radius: 0em;
30979
+ }
30980
+
30981
+ /* top attached */
30982
+
30983
+ .ui.progress.top.attached,
30984
+ .ui.progress.top.attached .bar {
30985
+ top: 0px;
30986
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
30987
+ }
30988
+
30989
+ .ui.progress.top.attached .bar {
30990
+ border-radius: 0em;
30991
+ }
30992
+
30993
+ /* Coupling */
30994
+
30995
+ .ui.segment > .ui.attached.progress,
30996
+ .ui.card > .ui.attached.progress {
30997
+ position: absolute;
30998
+ top: auto;
30999
+ left: 0;
31000
+ bottom: 100%;
31001
+ width: 100%;
31002
+ }
31003
+
31004
+ .ui.segment > .ui.bottom.attached.progress,
31005
+ .ui.card > .ui.bottom.attached.progress {
31006
+ top: 100%;
31007
+ bottom: auto;
31008
+ }
31009
+
31010
+ /*--------------
31011
+ Colors
31012
+ ---------------*/
31013
+
31014
+ /* Red */
31015
+
31016
+ .ui.red.progress .bar {
31017
+ background-color: #db2828;
31018
+ }
31019
+
31020
+ .ui.red.inverted.progress .bar {
31021
+ background-color: #ff695e;
31022
+ }
31023
+
31024
+ /* Orange */
31025
+
31026
+ .ui.orange.progress .bar {
31027
+ background-color: #f2711c;
31028
+ }
31029
+
31030
+ .ui.orange.inverted.progress .bar {
31031
+ background-color: #ff851b;
31032
+ }
31033
+
31034
+ /* Yellow */
31035
+
31036
+ .ui.yellow.progress .bar {
31037
+ background-color: #fbbd08;
31038
+ }
31039
+
31040
+ .ui.yellow.inverted.progress .bar {
31041
+ background-color: #ffe21f;
31042
+ }
31043
+
31044
+ /* Olive */
31045
+
31046
+ .ui.olive.progress .bar {
31047
+ background-color: #b5cc18;
31048
+ }
31049
+
31050
+ .ui.olive.inverted.progress .bar {
31051
+ background-color: #d9e778;
31052
+ }
31053
+
31054
+ /* Green */
31055
+
31056
+ .ui.green.progress .bar {
31057
+ background-color: #21ba45;
31058
+ }
31059
+
31060
+ .ui.green.inverted.progress .bar {
31061
+ background-color: #2ecc40;
31062
+ }
31063
+
31064
+ /* Teal */
31065
+
31066
+ .ui.teal.progress .bar {
31067
+ background-color: #00b5ad;
31068
+ }
31069
+
31070
+ .ui.teal.inverted.progress .bar {
31071
+ background-color: #6dffff;
31072
+ }
31073
+
31074
+ /* Blue */
31075
+
31076
+ .ui.blue.progress .bar {
31077
+ background-color: #2185d0;
31078
+ }
31079
+
31080
+ .ui.blue.inverted.progress .bar {
31081
+ background-color: #54c8ff;
31082
+ }
31083
+
31084
+ /* Violet */
31085
+
31086
+ .ui.violet.progress .bar {
31087
+ background-color: #6435c9;
31088
+ }
31089
+
31090
+ .ui.violet.inverted.progress .bar {
31091
+ background-color: #a291fb;
31092
+ }
31093
+
31094
+ /* Purple */
31095
+
31096
+ .ui.purple.progress .bar {
31097
+ background-color: #a333c8;
31098
+ }
31099
+
31100
+ .ui.purple.inverted.progress .bar {
31101
+ background-color: #dc73ff;
31102
+ }
31103
+
31104
+ /* Pink */
31105
+
31106
+ .ui.pink.progress .bar {
31107
+ background-color: #e03997;
31108
+ }
31109
+
31110
+ .ui.pink.inverted.progress .bar {
31111
+ background-color: #ff8edf;
31112
+ }
31113
+
31114
+ /* Brown */
31115
+
31116
+ .ui.brown.progress .bar {
31117
+ background-color: #a5673f;
31118
+ }
31119
+
31120
+ .ui.brown.inverted.progress .bar {
31121
+ background-color: #d67c1c;
31122
+ }
31123
+
31124
+ /* Grey */
31125
+
31126
+ .ui.grey.progress .bar {
31127
+ background-color: #767676;
31128
+ }
31129
+
31130
+ .ui.grey.inverted.progress .bar {
31131
+ background-color: #dcddde;
31132
+ }
31133
+
31134
+ /* Black */
31135
+
31136
+ .ui.black.progress .bar {
31137
+ background-color: #1b1c1d;
31138
+ }
31139
+
31140
+ .ui.black.inverted.progress .bar {
31141
+ background-color: #545454;
31142
+ }
31143
+
31144
+ /*--------------
31145
+ Sizes
31146
+ ---------------*/
31147
+
31148
+ .ui.tiny.progress {
31149
+ font-size: 0.85714286rem;
31150
+ }
31151
+
31152
+ .ui.tiny.progress .bar {
31153
+ height: 0.5em;
31154
+ }
31155
+
31156
+ .ui.small.progress {
31157
+ font-size: 0.92857143rem;
31158
+ }
31159
+
31160
+ .ui.small.progress .bar {
31161
+ height: 1em;
31162
+ }
31163
+
31164
+ .ui.progress {
31165
+ font-size: 1rem;
31166
+ }
31167
+
31168
+ .ui.progress .bar {
31169
+ height: 1.75em;
31170
+ }
31171
+
31172
+ .ui.large.progress {
31173
+ font-size: 1.14285714rem;
31174
+ }
31175
+
31176
+ .ui.large.progress .bar {
31177
+ height: 2.5em;
31178
+ }
31179
+
31180
+ .ui.big.progress {
31181
+ font-size: 1.28571429rem;
31182
+ }
31183
+
31184
+ .ui.big.progress .bar {
31185
+ height: 3.5em;
31186
+ }
31187
+
31188
+ /*******************************
31189
+ Progress
31190
+ *******************************/
31191
+
31192
+ /*******************************
31193
+ Site Overrides
31194
+ *******************************/
31195
+ /*!
31196
+ * # Semantic UI 2.1.7 - Rating
31197
+ * http://github.com/semantic-org/semantic-ui/
31198
+ *
31199
+ *
31200
+ * Copyright 2015 Contributors
31201
+ * Released under the MIT license
31202
+ * http://opensource.org/licenses/MIT
31203
+ *
31204
+ */
31205
+
31206
+ /*******************************
31207
+ Rating
31208
+ *******************************/
31209
+
31210
+ .ui.rating {
31211
+ display: -webkit-inline-box;
31212
+ display: -webkit-inline-flex;
31213
+ display: -ms-inline-flexbox;
31214
+ display: inline-flex;
31215
+ white-space: nowrap;
31216
+ vertical-align: baseline;
31217
+ }
31218
+
31219
+ .ui.rating:last-child {
31220
+ margin-right: 0em;
31221
+ }
31222
+
31223
+ /* Icon */
31224
+
31225
+ .ui.rating .icon {
31226
+ padding: 0em;
31227
+ margin: 0em;
31228
+ text-align: center;
31229
+ font-weight: normal;
31230
+ font-style: normal;
31231
+ -webkit-box-flex: 1;
31232
+ -webkit-flex: 1 0 auto;
31233
+ -ms-flex: 1 0 auto;
31234
+ flex: 1 0 auto;
31235
+ cursor: pointer;
31236
+ width: 1.25em;
31237
+ height: auto;
31238
+ -webkit-transition: opacity 0.1s ease, background 0.1s ease, text-shadow 0.1s ease, color 0.1s ease;
31239
+ transition: opacity 0.1s ease, background 0.1s ease, text-shadow 0.1s ease, color 0.1s ease;
31240
+ }
31241
+
31242
+ /*******************************
31243
+ Types
31244
+ *******************************/
31245
+
31246
+ /*-------------------
31247
+ Standard
31248
+ --------------------*/
31249
+
31250
+ /* Inactive Icon */
31251
+
31252
+ .ui.rating .icon {
31253
+ background: transparent;
31254
+ color: rgba(0, 0, 0, 0.15);
31255
+ }
31256
+
31257
+ /* Active Icon */
31258
+
31259
+ .ui.rating .active.icon {
31260
+ background: transparent;
31261
+ color: rgba(0, 0, 0, 0.85);
31262
+ }
31263
+
31264
+ /* Selected Icon */
31265
+
31266
+ .ui.rating .icon.selected,
31267
+ .ui.rating .icon.selected.active {
31268
+ background: transparent;
31269
+ color: rgba(0, 0, 0, 0.87);
31270
+ }
31271
+
31272
+ /*-------------------
31273
+ Star
31274
+ --------------------*/
31275
+
31276
+ /* Inactive */
31277
+
31278
+ .ui.star.rating .icon {
31279
+ width: 1.25em;
31280
+ height: auto;
31281
+ background: transparent;
31282
+ color: rgba(0, 0, 0, 0.15);
31283
+ text-shadow: none;
31284
+ }
31285
+
31286
+ /* Active Star */
31287
+
31288
+ .ui.star.rating .active.icon {
31289
+ background: transparent !important;
31290
+ color: #ffe623 !important;
31291
+ text-shadow: 0px -1px 0px #ddc507, -1px 0px 0px #ddc507, 0px 1px 0px #ddc507, 1px 0px 0px #ddc507 !important;
31292
+ }
31293
+
31294
+ /* Selected Star */
31295
+
31296
+ .ui.star.rating .icon.selected,
31297
+ .ui.star.rating .icon.selected.active {
31298
+ background: transparent !important;
31299
+ color: #ffcc00 !important;
31300
+ text-shadow: 0px -1px 0px #e6a200, -1px 0px 0px #e6a200, 0px 1px 0px #e6a200, 1px 0px 0px #e6a200 !important;
31301
+ }
31302
+
31303
+ /*-------------------
31304
+ Heart
31305
+ --------------------*/
31306
+
31307
+ .ui.heart.rating .icon {
31308
+ width: 1.4em;
31309
+ height: auto;
31310
+ background: transparent;
31311
+ color: rgba(0, 0, 0, 0.15);
31312
+ text-shadow: none !important;
31313
+ }
31314
+
31315
+ /* Active Heart */
31316
+
31317
+ .ui.heart.rating .active.icon {
31318
+ background: transparent !important;
31319
+ color: #ff6d75 !important;
31320
+ text-shadow: 0px -1px 0px #cd0707, -1px 0px 0px #cd0707, 0px 1px 0px #cd0707, 1px 0px 0px #cd0707 !important;
31321
+ }
31322
+
31323
+ /* Selected Heart */
31324
+
31325
+ .ui.heart.rating .icon.selected,
31326
+ .ui.heart.rating .icon.selected.active {
31327
+ background: transparent !important;
31328
+ color: #ff3000 !important;
31329
+ text-shadow: 0px -1px 0px #aa0101, -1px 0px 0px #aa0101, 0px 1px 0px #aa0101, 1px 0px 0px #aa0101 !important;
31330
+ }
31331
+
31332
+ /*******************************
31333
+ States
31334
+ *******************************/
31335
+
31336
+ /*-------------------
31337
+ Disabled
31338
+ --------------------*/
31339
+
31340
+ /* disabled rating */
31341
+
31342
+ .ui.disabled.rating .icon {
31343
+ cursor: default;
31344
+ }
31345
+
31346
+ /*-------------------
31347
+ User Interactive
31348
+ --------------------*/
31349
+
31350
+ /* Selected Rating */
31351
+
31352
+ .ui.rating.selected .active.icon {
31353
+ opacity: 1;
31354
+ }
31355
+
31356
+ .ui.rating.selected .icon.selected,
31357
+ .ui.rating .icon.selected {
31358
+ opacity: 1;
31359
+ }
31360
+
31361
+ /*******************************
31362
+ Variations
31363
+ *******************************/
31364
+
31365
+ .ui.mini.rating {
31366
+ font-size: 0.71428571rem;
31367
+ }
31368
+
31369
+ .ui.tiny.rating {
31370
+ font-size: 0.85714286rem;
31371
+ }
31372
+
31373
+ .ui.small.rating {
31374
+ font-size: 0.92857143rem;
31375
+ }
31376
+
31377
+ .ui.rating {
31378
+ font-size: 1rem;
31379
+ }
31380
+
31381
+ .ui.large.rating {
31382
+ font-size: 1.14285714rem;
31383
+ }
31384
+
31385
+ .ui.huge.rating {
31386
+ font-size: 1.42857143rem;
31387
+ }
31388
+
31389
+ .ui.massive.rating {
31390
+ font-size: 2rem;
31391
+ }
31392
+
31393
+ /*******************************
31394
+ Theme Overrides
31395
+ *******************************/
31396
+
31397
+ @font-face {
31398
+ font-family: 'Rating';
31399
+ src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjCBsAAAC8AAAAYGNtYXCj2pm8AAABHAAAAKRnYXNwAAAAEAAAAcAAAAAIZ2x5ZlJbXMYAAAHIAAARnGhlYWQBGAe5AAATZAAAADZoaGVhA+IB/QAAE5wAAAAkaG10eCzgAEMAABPAAAAAcGxvY2EwXCxOAAAUMAAAADptYXhwACIAnAAAFGwAAAAgbmFtZfC1n04AABSMAAABPHBvc3QAAwAAAAAVyAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADxZQHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEAJAAAAAgACAABAAAAAEAIOYF8AbwDfAj8C7wbvBw8Irwl/Cc8SPxZf/9//8AAAAAACDmAPAE8AzwI/Au8G7wcPCH8JfwnPEj8WT//f//AAH/4xoEEAYQAQ/sD+IPow+iD4wPgA98DvYOtgADAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAIAAP/tAgAB0wAKABUAAAEvAQ8BFwc3Fyc3BQc3Jz8BHwEHFycCALFPT7GAHp6eHoD/AHAWW304OH1bFnABGRqgoBp8sFNTsHyyOnxYEnFxElh8OgAAAAACAAD/7QIAAdMACgASAAABLwEPARcHNxcnNwUxER8BBxcnAgCxT0+xgB6enh6A/wA4fVsWcAEZGqCgGnywU1OwfLIBHXESWHw6AAAAAQAA/+0CAAHTAAoAAAEvAQ8BFwc3Fyc3AgCxT0+xgB6enh6AARkaoKAafLBTU7B8AAAAAAEAAAAAAgABwAArAAABFA4CBzEHDgMjIi4CLwEuAzU0PgIzMh4CFz4DMzIeAhUCAAcMEgugBgwMDAYGDAwMBqALEgwHFyg2HhAfGxkKChkbHxAeNigXAS0QHxsZCqAGCwkGBQkLBqAKGRsfEB42KBcHDBILCxIMBxcoNh4AAAAAAgAAAAACAAHAACsAWAAAATQuAiMiDgIHLgMjIg4CFRQeAhcxFx4DMzI+Aj8BPgM1DwEiFCIGMTAmIjQjJy4DNTQ+AjMyHgIfATc+AzMyHgIVFA4CBwIAFyg2HhAfGxkKChkbHxAeNigXBwwSC6AGDAwMBgYMDAwGoAsSDAdbogEBAQEBAaIGCgcEDRceEQkREA4GLy8GDhARCREeFw0EBwoGAS0eNigXBwwSCwsSDAcXKDYeEB8bGQqgBgsJBgUJCwagChkbHxA+ogEBAQGiBg4QEQkRHhcNBAcKBjQ0BgoHBA0XHhEJERAOBgABAAAAAAIAAcAAMQAAARQOAgcxBw4DIyIuAi8BLgM1ND4CMzIeAhcHFwc3Jzc+AzMyHgIVAgAHDBILoAYMDAwGBgwMDAagCxIMBxcoNh4KFRMSCC9wQLBwJwUJCgkFHjYoFwEtEB8bGQqgBgsJBgUJCwagChkbHxAeNigXAwUIBUtAoMBAOwECAQEXKDYeAAABAAAAAAIAAbcAKgAAEzQ3NjMyFxYXFhcWFzY3Njc2NzYzMhcWFRQPAQYjIi8BJicmJyYnJicmNQAkJUARExIQEAsMCgoMCxAQEhMRQCUkQbIGBwcGsgMFBQsKCQkGBwExPyMkBgYLCgkKCgoKCQoLBgYkIz8/QawFBawCBgUNDg4OFRQTAAAAAQAAAA0B2wHSACYAABM0PwI2FzYfAhYVFA8BFxQVFAcGByYvAQcGByYnJjU0PwEnJjUAEI9BBQkIBkCPEAdoGQMDBgUGgIEGBQYDAwEYaAcBIwsCFoEMAQEMgRYCCwYIZJABBQUFAwEBAkVFAgEBAwUFAwOQZAkFAAAAAAIAAAANAdsB0gAkAC4AABM0PwI2FzYfAhYVFA8BFxQVFAcmLwEHBgcmJyY1ND8BJyY1HwEHNxcnNy8BBwAQj0EFCQgGQI8QB2gZDAUGgIEGBQYDAwEYaAc/WBVsaxRXeDY2ASMLAhaBDAEBDIEWAgsGCGSQAQUNAQECRUUCAQEDBQUDA5BkCQURVXg4OHhVEW5uAAABACMAKQHdAXwAGgAANzQ/ATYXNh8BNzYXNh8BFhUUDwEGByYvASY1IwgmCAwLCFS8CAsMCCYICPUIDAsIjgjSCwkmCQEBCVS7CQEBCSYJCg0H9gcBAQePBwwAAAEAHwAfAXMBcwAsAAA3ND8BJyY1ND8BNjMyHwE3NjMyHwEWFRQPARcWFRQPAQYjIi8BBwYjIi8BJjUfCFRUCAgnCAwLCFRUCAwLCCcICFRUCAgnCAsMCFRUCAsMCCcIYgsIVFQIDAsIJwgIVFQICCcICwwIVFQICwwIJwgIVFQICCcIDAAAAAACAAAAJQFJAbcAHwArAAA3NTQ3NjsBNTQ3NjMyFxYdATMyFxYdARQHBiMhIicmNTczNTQnJiMiBwYdAQAICAsKJSY1NCYmCQsICAgIC/7tCwgIW5MWFR4fFRZApQsICDc0JiYmJjQ3CAgLpQsICAgIC8A3HhYVFRYeNwAAAQAAAAcBbgG3ACEAADcRNDc2NzYzITIXFhcWFREUBwYHBiMiLwEHBiMiJyYnJjUABgUKBgYBLAYGCgUGBgUKBQcOCn5+Cg4GBgoFBicBcAoICAMDAwMICAr+kAoICAQCCXl5CQIECAgKAAAAAwAAACUCAAFuABgAMQBKAAA3NDc2NzYzMhcWFxYVFAcGBwYjIicmJyY1MxYXFjMyNzY3JicWFRQHBiMiJyY1NDcGBzcUFxYzMjc2NTQ3NjMyNzY1NCcmIyIHBhUABihDREtLREMoBgYoQ0RLS0RDKAYlJjk5Q0M5OSYrQREmJTU1JSYRQSuEBAQGBgQEEREZBgQEBAQGJBkayQoKQSgoKChBCgoKCkEoJycoQQoKOiMjIyM6RCEeIjUmJSUmNSIeIUQlBgQEBAQGGBIRBAQGBgQEGhojAAAABQAAAAkCAAGJACwAOABRAGgAcAAANzQ3Njc2MzIXNzYzMhcWFxYXFhcWFxYVFDEGBwYPAQYjIicmNTQ3JicmJyY1MxYXNyYnJjU0NwYHNxQXFjMyNzY1NDc2MzI3NjU0JyYjIgcGFRc3Njc2NyYnNxYXFhcWFRQHBgcGBwYjPwEWFRQHBgcABitBQU0ZGhADBQEEBAUFBAUEBQEEHjw8Hg4DBQQiBQ0pIyIZBiUvSxYZDg4RQSuEBAQGBgQEEREZBgQEBAQGJBkaVxU9MzQiIDASGxkZEAYGCxQrODk/LlACFxYlyQsJQycnBRwEAgEDAwIDAwIBAwUCNmxsNhkFFAMFBBUTHh8nCQtKISgSHBsfIh4hRCUGBAQEBAYYEhEEBAYGBAQaGiPJJQUiIjYzISASGhkbCgoKChIXMRsbUZANCyghIA8AAAMAAAAAAbcB2wA5AEoAlAAANzU0NzY7ATY3Njc2NzY3Njc2MzIXFhcWFRQHMzIXFhUUBxYVFAcUFRQHFgcGKwEiJyYnJisBIicmNTcUFxYzMjc2NTQnJiMiBwYVFzMyFxYXFhcWFxYXFhcWOwEyNTQnNjc2NTQnNjU0JyYnNjc2NTQnJisBNDc2NTQnJiMGBwYHBgcGBwYHBgcGBwYHBgcGBwYrARUACwoQTgodEQ4GBAMFBgwLDxgTEwoKDjMdFhYOAgoRARkZKCUbGxsjIQZSEAoLJQUFCAcGBQUGBwgFBUkJBAUFBAQHBwMDBwcCPCUjNwIJBQUFDwMDBAkGBgsLDmUODgoJGwgDAwYFDAYQAQUGAwQGBgYFBgUGBgQJSbcPCwsGJhUPCBERExMMCgkJFBQhGxwWFR4ZFQoKFhMGBh0WKBcXBgcMDAoLDxIHBQYGBQcIBQYGBQgSAQEBAQICAQEDAgEULwgIBQoLCgsJDhQHCQkEAQ0NCg8LCxAdHREcDQ4IEBETEw0GFAEHBwUECAgFBQUFAgO3AAADAAD/2wG3AbcAPABNAJkAADc1NDc2OwEyNzY3NjsBMhcWBxUWFRQVFhUUBxYVFAcGKwEWFRQHBgcGIyInJicmJyYnJicmJyYnIyInJjU3FBcWMzI3NjU0JyYjIgcGFRczMhcWFxYXFhcWFxYXFhcWFxYXFhcWFzI3NjU0JyY1MzI3NjU0JyYjNjc2NTQnNjU0JyYnNjU0JyYrASIHIgcGBwYHBgcGIwYrARUACwoQUgYhJRsbHiAoGRkBEQoCDhYWHTMOCgoTExgPCwoFBgIBBAMFDhEdCk4QCgslBQUIBwYFBQYHCAUFSQkEBgYFBgUGBgYEAwYFARAGDAUGAwMIGwkKDg5lDgsLBgYJBAMDDwUFBQkCDg4ZJSU8AgcHAwMHBwQEBQUECbe3DwsKDAwHBhcWJwIWHQYGExYKChUZHhYVHRoiExQJCgsJDg4MDAwNBg4WJQcLCw+kBwUGBgUHCAUGBgUIpAMCBQYFBQcIBAUHBwITBwwTExERBw0OHBEdHRALCw8KDQ0FCQkHFA4JCwoLCgUICBgMCxUDAgEBAgMBAQG3AAAAAQAAAA0A7gHSABQAABM0PwI2FxEHBgcmJyY1ND8BJyY1ABCPQQUJgQYFBgMDARhoBwEjCwIWgQwB/oNFAgEBAwUFAwOQZAkFAAAAAAIAAAAAAgABtwAqAFkAABM0NzYzMhcWFxYXFhc2NzY3Njc2MzIXFhUUDwEGIyIvASYnJicmJyYnJjUzFB8BNzY1NCcmJyYnJicmIyIHBgcGBwYHBiMiJyYnJicmJyYjIgcGBwYHBgcGFQAkJUARExIQEAsMCgoMCxAQEhMRQCUkQbIGBwcGsgMFBQsKCQkGByU1pqY1BgYJCg4NDg0PDhIRDg8KCgcFCQkFBwoKDw4REg4PDQ4NDgoJBgYBMT8jJAYGCwoJCgoKCgkKCwYGJCM/P0GsBQWsAgYFDQ4ODhUUEzA1oJ82MBcSEgoLBgcCAgcHCwsKCQgHBwgJCgsLBwcCAgcGCwoSEhcAAAACAAAABwFuAbcAIQAoAAA3ETQ3Njc2MyEyFxYXFhURFAcGBwYjIi8BBwYjIicmJyY1PwEfAREhEQAGBQoGBgEsBgYKBQYGBQoFBw4Kfn4KDgYGCgUGJZIZef7cJwFwCggIAwMDAwgICv6QCggIBAIJeXkJAgQICAoIjRl0AWP+nQAAAAABAAAAJQHbAbcAMgAANzU0NzY7ATU0NzYzMhcWHQEUBwYrASInJj0BNCcmIyIHBh0BMzIXFh0BFAcGIyEiJyY1AAgIC8AmJjQ1JiUFBQgSCAUFFhUfHhUWHAsICAgIC/7tCwgIQKULCAg3NSUmJiU1SQgFBgYFCEkeFhUVFh43CAgLpQsICAgICwAAAAIAAQANAdsB0gAiAC0AABM2PwI2MzIfAhYXFg8BFxYHBiMiLwEHBiMiJyY/AScmNx8CLwE/AS8CEwEDDJBABggJBUGODgIDCmcYAgQCCAMIf4IFBgYEAgEZaQgC7hBbEgINSnkILgEBJggCFYILC4IVAggICWWPCgUFA0REAwUFCo9lCQipCTBmEw1HEhFc/u0AAAADAAAAAAHJAbcAFAAlAHkAADc1NDc2OwEyFxYdARQHBisBIicmNTcUFxYzMjc2NTQnJiMiBwYVFzU0NzYzNjc2NzY3Njc2NzY3Njc2NzY3NjMyFxYXFhcWFxYXFhUUFRQHBgcGBxQHBgcGBzMyFxYVFAcWFRYHFgcGBxYHBgcjIicmJyYnJiciJyY1AAUGB1MHBQYGBQdTBwYFJQUFCAcGBQUGBwgFBWQFBQgGDw8OFAkFBAQBAQMCAQIEBAYFBw4KCgcHBQQCAwEBAgMDAgYCAgIBAU8XEBAQBQEOBQUECwMREiYlExYXDAwWJAoHBQY3twcGBQUGB7cIBQUFBQgkBwYFBQYHCAUGBgUIJLcHBQYBEBATGQkFCQgGBQwLBgcICQUGAwMFBAcHBgYICQQEBwsLCwYGCgIDBAMCBBEQFhkSDAoVEhAREAsgFBUBBAUEBAcMAQUFCAAAAAADAAD/2wHJAZIAFAAlAHkAADcUFxYXNxY3Nj0BNCcmBycGBwYdATc0NzY3FhcWFRQHBicGJyY1FzU0NzY3Fjc2NzY3NjcXNhcWBxYXFgcWBxQHFhUUBwYHJxYXFhcWFRYXFhcWFRQVFAcGBwYHBgcGBwYnBicmJyYnJicmJyYnJicmJyYnJiciJyY1AAUGB1MHBQYGBQdTBwYFJQUFCAcGBQUGBwgFBWQGBQcKJBYMDBcWEyUmEhEDCwQFBQ4BBRAQEBdPAQECAgIGAgMDAgEBAwIEBQcHCgoOBwUGBAQCAQIDAQEEBAUJFA4PDwYIBQWlBwYFAQEBBwQJtQkEBwEBAQUGB7eTBwYEAQEEBgcJBAYBAQYECZS4BwYEAgENBwUCBgMBAQEXEyEJEhAREBcIDhAaFhEPAQEFAgQCBQELBQcKDAkIBAUHCgUGBwgDBgIEAQEHBQkIBwUMCwcECgcGCRoREQ8CBgQIAAAAAQAAAAEAAJth57dfDzz1AAsCAAAAAADP/GODAAAAAM/8Y4MAAP/bAgAB2wAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAACAAABAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAEAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAdwAAAHcAAACAAAjAZMAHwFJAAABbgAAAgAAAAIAAAACAAAAAgAAAAEAAAACAAAAAW4AAAHcAAAB3AABAdwAAAHcAAAAAAAAAAoAFAAeAEoAcACKAMoBQAGIAcwCCgJUAoICxgMEAzoDpgRKBRgF7AYSBpgG2gcgB2oIGAjOAAAAAQAAABwAmgAFAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAwAAAABAAAAAAACAA4AQAABAAAAAAADAAwAIgABAAAAAAAEAAwATgABAAAAAAAFABYADAABAAAAAAAGAAYALgABAAAAAAAKADQAWgADAAEECQABAAwAAAADAAEECQACAA4AQAADAAEECQADAAwAIgADAAEECQAEAAwATgADAAEECQAFABYADAADAAEECQAGAAwANAADAAEECQAKADQAWgByAGEAdABpAG4AZwBWAGUAcgBzAGkAbwBuACAAMQAuADAAcgBhAHQAaQBuAGdyYXRpbmcAcgBhAHQAaQBuAGcAUgBlAGcAdQBsAGEAcgByAGEAdABpAG4AZwBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format('truetype'), url("data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AABcUAAoAAAAAFswAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAEuEAABLho6TvIE9TLzIAABPYAAAAYAAAAGAIIwgbY21hcAAAFDgAAACkAAAApKPambxnYXNwAAAU3AAAAAgAAAAIAAAAEGhlYWQAABTkAAAANgAAADYBGAe5aGhlYQAAFRwAAAAkAAAAJAPiAf1obXR4AAAVQAAAAHAAAABwLOAAQ21heHAAABWwAAAABgAAAAYAHFAAbmFtZQAAFbgAAAE8AAABPPC1n05wb3N0AAAW9AAAACAAAAAgAAMAAAEABAQAAQEBB3JhdGluZwABAgABADr4HAL4GwP4GAQeCgAZU/+Lix4KABlT/4uLDAeLZviU+HQFHQAAAP0PHQAAAQIRHQAAAAkdAAAS2BIAHQEBBw0PERQZHiMoLTI3PEFGS1BVWl9kaW5zeH2Ch4xyYXRpbmdyYXRpbmd1MHUxdTIwdUU2MDB1RTYwMXVFNjAydUU2MDN1RTYwNHVFNjA1dUYwMDR1RjAwNXVGMDA2dUYwMEN1RjAwRHVGMDIzdUYwMkV1RjA2RXVGMDcwdUYwODd1RjA4OHVGMDg5dUYwOEF1RjA5N3VGMDlDdUYxMjN1RjE2NHVGMTY1AAACAYkAGgAcAgABAAQABwAKAA0AVgCWAL0BAgGMAeQCbwLwA4cD5QR0BQMFdgZgB8MJkQtxC7oM2Q1jDggOmRAYEZr8lA78lA78lA77lA74lPetFftFpTz3NDz7NPtFcfcU+xBt+0T3Mt73Mjht90T3FPcQBfuU+0YV+wRRofcQMOP3EZ3D9wXD+wX3EXkwM6H7EPsExQUO+JT3rRX7RaU89zQ8+zT7RXH3FPsQbftE9zLe9zI4bfdE9xT3EAX7lPtGFYuLi/exw/sF9xF5MDOh+xD7BMUFDviU960V+0WlPPc0PPs0+0Vx9xT7EG37RPcy3vcyOG33RPcU9xAFDviU98EVi2B4ZG5wCIuL+zT7NAV7e3t7e4t7i3ube5sI+zT3NAVupniyi7aL3M3N3Iu2i7J4pm6mqLKetovci81JizoIDviU98EVi9xJzTqLYItkeHBucKhknmCLOotJSYs6i2CeZKhwCIuL9zT7NAWbe5t7m4ubi5ubm5sI9zT3NAWopp6yi7YIME0V+zb7NgWKioqKiouKi4qMiowI+zb3NgV6m4Ghi6OLubCwuYuji6GBm3oIule6vwWbnKGVo4u5i7Bmi12Lc4F1ensIDviU98EVi2B4ZG5wCIuL+zT7NAV7e3t7e4t7i3ube5sI+zT3NAVupniyi7aL3M3N3Iuni6WDoX4IXED3BEtL+zT3RPdU+wTLssYFl46YjZiL3IvNSYs6CA6L98UVi7WXrKOio6Otl7aLlouXiZiHl4eWhZaEloSUhZKFk4SShZKEkpKSkZOSkpGUkZaSCJaSlpGXj5iPl42Wi7aLrX+jc6N0l2qLYYthdWBgYAj7RvtABYeIh4mGi4aLh42Hjgj7RvdABYmNiY2Hj4iOhpGDlISUhZWFlIWVhpaHmYaYiZiLmAgOZ4v3txWLkpCPlo0I9yOgzPcWBY6SkI+Ri5CLkIePhAjL+xb3I3YFlomQh4uEi4aJh4aGCCMmpPsjBYuKi4mLiIuHioiJiImIiIqHi4iLh4yHjQj7FM/7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwgOZ4v3txWLkpCPlo0I9yOgzPcWBY6SkI+Ri5CLkIePhAjL+xb3I3YFlomQh4uEi4aJh4aGCCMmpPsjBYuKi4mLiIuCh4aDi4iLh4yHjQj7FM/7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwjKeRXjN3b7DfcAxPZSd/cN4t/7DJ1V9wFV+wEFDq73ZhWLk42RkZEIsbIFkZCRjpOLkouSiJCGCN8291D3UAWQkJKOkouTi5GIkYYIsWQFkYaNhIuEi4OJhYWFCPuJ+4kFhYWFiYOLhIuEjYaRCPsi9yIFhZCJkouSCA77AartFYuSjpKQkAjf3zffBYaQiJKLk4uSjpKQkAiysgWRkJGOk4uSi5KIkIYI3zff3wWQkJKOk4uSi5KIkIYIsmQFkIaOhIuEi4OIhIaGCDc33zcFkIaOhIuEi4OIhYaFCGRkBYaGhIiEi4OLhI6GkAg33zc3BYaGhIiEi4OLhY6FkAhksgWGkYiRi5MIDvtLi8sVi/c5BYuSjpKQkJCQko6SiwiVi4vCBYuul6mkpKSkqpiui66LqX6kcqRymG2LaAiLVJSLBZKLkoiQhpCGjoSLhAiL+zkFi4OIhYaGhoWEiYSLCPuniwWEi4SNhpGGkIiRi5MI5vdUFfcni4vCBYufhJx8mn2ZepJ3i3aLeoR9fX18g3qLdwiLVAUO+yaLshWL+AQFi5GNkY+RjpCQj5KNj42PjI+LCPfAiwWPi4+Kj4mRiZCHj4aPhY2Fi4UIi/wEBYuEiYWHhoeGhoeFiIiKhoqHi4GLhI6EkQj7EvcN+xL7DQWEhYOIgouHi4eLh42EjoaPiJCHkImRi5IIDov3XRWLko2Rj5Kltq+vuKW4pbuZvYu9i7t9uHG4ca9npWCPhI2Fi4SLhYmEh4RxYGdoXnAIXnFbflmLWYtbmF6lXqZnrnG2h5KJkouRCLCLFaRkq2yxdLF0tH+4i7iLtJexorGiq6qksm64Z61goZZ3kXaLdItnfm1ycnJybX9oiwhoi22XcqRypH6pi6+LopGglp9gdWdpbl4I9xiwFYuHjIiOiI6IjoqPi4+LjoyOjo2OjY6Lj4ubkJmXl5eWmZGbi4+LjoyOjo2OjY6LjwiLj4mOiY6IjYiNh4tzi3eCenp6eoJ3i3MIDov3XRWLko2Sj5GouK+utqW3pbqYvouci5yJnIgIm6cFjY6NjI+LjIuNi42JjYqOio+JjomOiY6KjomOiY6JjoqNioyKjomMiYuHi4qLiouLCHdnbVVjQ2NDbVV3Zwh9cgWJiIiJiIuJi36SdJiIjYmOi46LjY+UlJlvl3KcdJ90oHeie6WHkYmSi5IIsIsVqlq0Z711CKGzBXqXfpqCnoKdhp6LoIuikaCWn2B1Z2luXgj3GLAVi4eMiI6IjoiOio+Lj4uOjI6OjY6NjouPi5uQmZeXl5aZkZuLj4uOjI6OjY6NjouPCIuPiY6JjoiNiI2Hi3OLd4J6enp6gneLcwji+10VoLAFtI+wmK2hrqKnqKKvdq1wp2uhCJ2rBZ1/nHycepx6mHqWeY+EjYWLhIuEiYWHhIR/gH1+fG9qaXJmeWV5Y4Jhiwi53BXb9yQFjIKMg4uEi3CDc3x1fHV3fHOBCA6L1BWL90sFi5WPlJKSkpKTj5aLCNmLBZKPmJqepJaZlZeVlY+Qj5ONl42WjpeOmI+YkZWTk5OSk46Vi5uLmYiYhZiFlIGSfgiSfo55i3WLeYd5gXgIvosFn4uchJl8mn2Seot3i3qGfIJ9jYSLhYuEi3yIfoR+i4eLh4uHi3eGen99i3CDdnt8CHt8dYNwiwhmiwV5i3mNeY95kHeRc5N1k36Ph4sIOYsFgIuDjoSShJKHlIuVCLCdFYuGjIePiI+Hj4mQi5CLj42Pj46OjY+LkIuQiZCIjoePh42Gi4aLh4mHh4eIioaLhgjUeRWUiwWNi46Lj4qOi4+KjYqOi4+Kj4mQio6KjYqNio+Kj4mQio6KjIqzfquEpIsIrosFr4uemouri5CKkYqQkY6QkI6SjpKNkouSi5KJkoiRlZWQlouYi5CKkImRiZGJj4iOCJGMkI+PlI+UjZKLkouViJODk4SSgo+CiwgmiwWLlpCalJ6UnpCbi5aLnoiYhJSFlH+QeYuGhoeDiYCJf4h/h3+IfoWBg4KHh4SCgH4Ii4qIiYiGh4aIh4mIiIiIh4eGh4aHh4eHiIiHiIeHiIiHiIeKh4mIioiLCIKLi/tLBQ6L90sVi/dLBYuVj5OSk5KSk46WiwjdiwWPi5iPoZOkk6CRnZCdj56Nn4sIq4sFpougg5x8m3yTd4txCIuJBZd8kHuLd4uHi4eLh5J+jn6LfIuEi4SJhZR9kHyLeot3hHp8fH19eoR3iwhYiwWVeI95i3mLdIh6hH6EfoKBfoV+hX2He4uBi4OPg5KFkYaTh5SHlYiTipOKk4qTiJMIiZSIkYiPgZSBl4CaeKR+moSPCD2LBYCLg4+EkoSSh5SLlQiw9zgVi4aMh4+Ij4ePiZCLkIuPjY+Pjo6Nj4uQi5CJkIiOh4+HjYaLhouHiYeHh4iKhouGCNT7OBWUiwWOi46Kj4mPio+IjoiPh4+IjoePiI+Hj4aPho6HjoiNiI6Hj4aOho6Ii4qWfpKDj4YIk4ORgY5+j36OgI1/jYCPg5CGnYuXj5GUkpSOmYuei5aGmoKfgp6GmouWCPCLBZSLlI+SkpOTjpOLlYuSiZKHlIeUho+Fi46PjY+NkY2RjJCLkIuYhpaBlY6RjZKLkgiLkomSiJKIkoaQhY6MkIyRi5CLm4aXgpOBkn6Pe4sIZosFcotrhGN9iouIioaJh4qHiomKiYqIioaKh4mHioiKiYuHioiLh4qIi4mLCIKLi/tLBQ77lIv3txWLkpCPlo0I9yOgzPcWBY6SkI+RiwiL/BL7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwgOi/fFFYu1l6yjoqOjrZe2i5aLl4mYh5eHloWWhJaElIWShZOEkoWShJKSkpGTkpKRlJGWkgiWkpaRl4+Yj5eNlou2i61/o3OjdJdqi2GLYXVgYGAI+0b7QAWHiIeJhouGi4eNh44I+0b3QAWJjYmNh4+IjoaRg5SElIWVhZSFlYaWh5mGmImYi5gIsIsVi2ucaa9oCPc6+zT3OvczBa+vnK2Lq4ubiZiHl4eXhpSFkoSSg5GCj4KQgo2CjYONgYuBi4KLgIl/hoCGgIWChAiBg4OFhISEhYaFhoaIhoaJhYuFi4aNiJCGkIaRhJGEkoORgZOCkoCRgJB/kICNgosIgYuBi4OJgomCiYKGgoeDhYSEhYSGgod/h3+Jfot7CA77JouyFYv4BAWLkY2Rj5GOkJCPko2PjY+Mj4sI98CLBY+Lj4qPiZGJkIePho+FjYWLhQiL/AQFi4SJhYeGh4aGh4WIiIqGioeLgYuEjoSRCPsS9w37EvsNBYSFg4iCi4eLh4uHjYSOho+IkIeQiZGLkgiwkxX3JvchpHL3DfsIi/f3+7iLi/v3BQ5ni8sVi/c5BYuSjpKQkJCQko6Siwj3VIuLwgWLrpippKSkpKmYrouvi6l+pHKkcpdti2gIi0IFi4aKhoeIh4eHiYaLCHmLBYaLh42Hj4eOipCLkAiL1AWLn4OcfZp9mXqSdot3i3qEfX18fIR6i3cIi1SniwWSi5KIkIaQho6Ei4QIi/s5BYuDiIWGhoaFhImEiwj7p4sFhIuEjYaRhpCIkYuTCA5njPe6FYyQkI6UjQj3I6DM9xYFj5KPj5GLkIuQh4+ECMv7FvcjdgWUiZCIjYaNhoiFhYUIIyak+yMFjIWKhomHiYiIiYaLiIuHjIeNCPsUz/sVRwWHiYeKiIuHi4eNiY6Jj4uQjJEIo/cjI/AFhZGJkY2QCPeB+z0VnILlW3rxiJ6ZmNTS+wydgpxe54v7pwUOZ4vCFYv3SwWLkI2Pjo+Pjo+NkIsI3osFkIuPiY6Ij4eNh4uGCIv7SwWLhomHh4eIh4eKhosIOIsFhouHjIePiI+Jj4uQCLCvFYuGjIePh46IkImQi5CLj42Pjo6PjY+LkIuQiZCIjoePh42Gi4aLhomIh4eIioaLhgjvZxWL90sFi5CNj46Oj4+PjZCLj4ySkJWWlZaVl5SXmJuVl5GRjo6OkI6RjZCNkIyPjI6MkY2TCIySjJGMj4yPjZCOkY6RjpCPjo6Pj42Qi5SLk4qSiZKJkYiPiJCIjoiPho6GjYeMhwiNh4yGjIaMhYuHi4iLiIuHi4eLg4uEiYSJhImFiYeJh4mFh4WLioqJiomJiIqJiokIi4qKiIqJCNqLBZqLmIWWgJaAkH+LfIt6hn2Af46DjYSLhIt9h36Cf4+Bi3+HgImAhYKEhI12hnmAfgh/fXiDcosIZosFfot+jHyOfI5/joOOg41/j32Qc5N8j4SMhouHjYiOh4+Jj4uQCA5ni/c5FYuGjYaOiI+Hj4mQiwjeiwWQi4+Njo+Pjo2Qi5AIi/dKBYuQiZCHjoiPh42Giwg4iwWGi4eJh4eIiImGi4YIi/tKBbD3JhWLkIyPj4+OjpCNkIuQi4+Jj4iOh42Hi4aLhomHiIeHh4eKhouGi4aMiI+Hj4qPi5AI7/snFYv3SwWLkI2Qj46Oj4+NkIuSi5qPo5OZkJePk46TjZeOmo6ajpiMmIsIsIsFpIueg5d9ln6Qeol1koSRgo2Aj4CLgIeAlH+Pfot9i4WJhIiCloCQfIt7i3yFfoGACICAfoZ8iwg8iwWMiIyJi4mMiYyJjYmMiIyKi4mPhI2GjYeNh42GjYOMhIyEi4SLhouHi4iLiYuGioYIioWKhomHioeJh4iGh4eIh4aIh4iFiISJhImDioKLhouHjYiPh4+Ij4iRiJGJkIqPCIqPipGKkomTipGKj4qOiZCJkYiQiJCIjoWSgZZ+nIKXgZaBloGWhJGHi4aLh42HjwiIjomQi48IDviUFPiUFYsMCgAAAAADAgABkAAFAAABTAFmAAAARwFMAWYAAAD1ABkAhAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAEAAAPFlAeD/4P/gAeAAIAAAAAEAAAAAAAAAAAAAACAAAAAAAAIAAAADAAAAFAADAAEAAAAUAAQAkAAAACAAIAAEAAAAAQAg5gXwBvAN8CPwLvBu8HDwivCX8JzxI/Fl//3//wAAAAAAIOYA8ATwDPAj8C7wbvBw8Ifwl/Cc8SPxZP/9//8AAf/jGgQQBhABD+wP4g+jD6IPjA+AD3wO9g62AAMAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAEAAJrVlLJfDzz1AAsCAAAAAADP/GODAAAAAM/8Y4MAAP/bAgAB2wAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAACAAABAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAEAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAAAACAAAAAdwAAAHcAAACAAAjAZMAHwFJAAABbgAAAgAAAAIAAAACAAAAAgAAAAEAAAACAAAAAW4AAAHcAAAB3AABAdwAAAHcAAAAAFAAABwAAAAAAA4ArgABAAAAAAABAAwAAAABAAAAAAACAA4AQAABAAAAAAADAAwAIgABAAAAAAAEAAwATgABAAAAAAAFABYADAABAAAAAAAGAAYALgABAAAAAAAKADQAWgADAAEECQABAAwAAAADAAEECQACAA4AQAADAAEECQADAAwAIgADAAEECQAEAAwATgADAAEECQAFABYADAADAAEECQAGAAwANAADAAEECQAKADQAWgByAGEAdABpAG4AZwBWAGUAcgBzAGkAbwBuACAAMQAuADAAcgBhAHQAaQBuAGdyYXRpbmcAcgBhAHQAaQBuAGcAUgBlAGcAdQBsAGEAcgByAGEAdABpAG4AZwBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format('woff');
31400
+ font-weight: normal;
31401
+ font-style: normal;
31402
+ }
31403
+
31404
+ .ui.rating .icon {
31405
+ font-family: 'Rating';
31406
+ line-height: 1;
31407
+ -webkit-backface-visibility: hidden;
31408
+ backface-visibility: hidden;
31409
+ font-weight: normal;
31410
+ font-style: normal;
31411
+ text-align: center;
31412
+ }
31413
+
31414
+ /* Empty Star */
31415
+
31416
+ .ui.rating .icon:before {
31417
+ content: '\f006';
31418
+ }
31419
+
31420
+ /* Active Star */
31421
+
31422
+ .ui.rating .active.icon:before {
31423
+ content: '\f005';
31424
+ }
31425
+
31426
+ /*-------------------
31427
+ Star
31428
+ --------------------*/
31429
+
31430
+ /* Unfilled Star */
31431
+
31432
+ .ui.star.rating .icon:before {
31433
+ content: '\f005';
31434
+ }
31435
+
31436
+ /* Active Star */
31437
+
31438
+ .ui.star.rating .active.icon:before {
31439
+ content: '\f005';
31440
+ }
31441
+
31442
+ /* Partial */
31443
+
31444
+ .ui.star.rating .partial.icon:before {
31445
+ content: '\f006';
31446
+ }
31447
+
31448
+ .ui.star.rating .partial.icon {
31449
+ content: '\f005';
31450
+ }
31451
+
31452
+ /*-------------------
31453
+ Heart
31454
+ --------------------*/
31455
+
31456
+ /* Empty Heart
31457
+ .ui.heart.rating .icon:before {
31458
+ content: '\f08a';
31459
+ }
31460
+ */
31461
+
31462
+ .ui.heart.rating .icon:before {
31463
+ content: '\f004';
31464
+ }
31465
+
31466
+ /* Active */
31467
+
31468
+ .ui.heart.rating .active.icon:before {
31469
+ content: '\f004';
31470
+ }
31471
+
31472
+ /*******************************
31473
+ Site Overrides
31474
+ *******************************/
31475
+ /*!
31476
+ * # Semantic UI 2.1.7 - Search
31477
+ * http://github.com/semantic-org/semantic-ui/
31478
+ *
31479
+ *
31480
+ * Copyright 2015 Contributors
31481
+ * Released under the MIT license
31482
+ * http://opensource.org/licenses/MIT
31483
+ *
31484
+ */
31485
+
31486
+ /*******************************
31487
+ Search
31488
+ *******************************/
31489
+
31490
+ .ui.search {
31491
+ position: relative;
31492
+ }
31493
+
31494
+ .ui.search > .prompt {
31495
+ margin: 0em;
31496
+ outline: none;
31497
+ -webkit-appearance: none;
31498
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
31499
+ text-shadow: none;
31500
+ font-style: normal;
31501
+ font-weight: normal;
31502
+ line-height: 1.2142em;
31503
+ padding: 0.67861429em 1em;
31504
+ font-size: 1em;
31505
+ background: #ffffff;
31506
+ border: 1px solid rgba(34, 36, 38, 0.15);
31507
+ color: rgba(0, 0, 0, 0.87);
31508
+ box-shadow: 0em 0em 0em 0em transparent inset;
31509
+ -webkit-transition: background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease;
31510
+ transition: background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease;
31511
+ }
31512
+
31513
+ .ui.search .prompt {
31514
+ border-radius: 500rem;
31515
+ }
31516
+
31517
+ /*--------------
31518
+ Icon
31519
+ ---------------*/
31520
+
31521
+ .ui.search .prompt ~ .search.icon {
31522
+ cursor: pointer;
31523
+ }
31524
+
31525
+ /*--------------
31526
+ Results
31527
+ ---------------*/
31528
+
31529
+ .ui.search > .results {
31530
+ display: none;
31531
+ position: absolute;
31532
+ top: 100%;
31533
+ left: 0%;
31534
+ -webkit-transform-origin: center top;
31535
+ -ms-transform-origin: center top;
31536
+ transform-origin: center top;
31537
+ background: #ffffff;
31538
+ margin-top: 0.5em;
31539
+ width: 18em;
31540
+ border-radius: 0.28571429rem;
31541
+ box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.08);
31542
+ border: 1px solid #d4d4d5;
31543
+ z-index: 998;
31544
+ }
31545
+
31546
+ .ui.search > .results > :first-child {
31547
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
31548
+ }
31549
+
31550
+ .ui.search > .results > :last-child {
31551
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
31552
+ }
31553
+
31554
+ /*--------------
31555
+ Result
31556
+ ---------------*/
31557
+
31558
+ .ui.search > .results .result {
31559
+ cursor: pointer;
31560
+ display: block;
31561
+ overflow: hidden;
31562
+ font-size: 1em;
31563
+ padding: 0.85714286em 1.14285714em;
31564
+ color: rgba(0, 0, 0, 0.87);
31565
+ line-height: 1.33;
31566
+ border-bottom: 1px solid rgba(34, 36, 38, 0.1);
31567
+ }
31568
+
31569
+ .ui.search > .results .result:last-child {
31570
+ border-bottom: none !important;
31571
+ }
31572
+
31573
+ /* Image */
31574
+
31575
+ .ui.search > .results .result .image {
31576
+ float: right;
31577
+ overflow: hidden;
31578
+ background: none;
31579
+ width: 5em;
31580
+ height: 3em;
31581
+ border-radius: 0.25em;
31582
+ }
31583
+
31584
+ .ui.search > .results .result .image img {
31585
+ display: block;
31586
+ width: auto;
31587
+ height: 100%;
31588
+ }
31589
+
31590
+ /*--------------
31591
+ Info
31592
+ ---------------*/
31593
+
31594
+ .ui.search > .results .result .image + .content {
31595
+ margin: 0em 6em 0em 0em;
31596
+ }
31597
+
31598
+ .ui.search > .results .result .title {
31599
+ margin: -0.14285em 0em 0em;
31600
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
31601
+ font-weight: bold;
31602
+ font-size: 1em;
31603
+ color: rgba(0, 0, 0, 0.85);
31604
+ }
31605
+
31606
+ .ui.search > .results .result .description {
31607
+ margin-top: 0;
31608
+ font-size: 0.92857143em;
31609
+ color: rgba(0, 0, 0, 0.4);
31610
+ }
31611
+
31612
+ .ui.search > .results .result .price {
31613
+ float: right;
31614
+ color: #21ba45;
31615
+ }
31616
+
31617
+ /*--------------
31618
+ Message
31619
+ ---------------*/
31620
+
31621
+ .ui.search > .results > .message {
31622
+ padding: 1em 1em;
31623
+ }
31624
+
31625
+ .ui.search > .results > .message .header {
31626
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
31627
+ font-size: 1rem;
31628
+ font-weight: bold;
31629
+ color: rgba(0, 0, 0, 0.87);
31630
+ }
31631
+
31632
+ .ui.search > .results > .message .description {
31633
+ margin-top: 0.25rem;
31634
+ font-size: 1em;
31635
+ color: rgba(0, 0, 0, 0.87);
31636
+ }
31637
+
31638
+ /* View All Results */
31639
+
31640
+ .ui.search > .results > .action {
31641
+ display: block;
31642
+ border-top: none;
31643
+ background: #f3f4f5;
31644
+ padding: 0.92857143em 1em;
31645
+ color: rgba(0, 0, 0, 0.87);
31646
+ font-weight: bold;
31647
+ text-align: center;
31648
+ }
31649
+
31650
+ /*******************************
31651
+ States
31652
+ *******************************/
31653
+
31654
+ /*--------------------
31655
+ Focus
31656
+ ---------------------*/
31657
+
31658
+ .ui.search > .prompt:focus {
31659
+ border-color: rgba(34, 36, 38, 0.35);
31660
+ background: #ffffff;
31661
+ color: rgba(0, 0, 0, 0.95);
31662
+ }
31663
+
31664
+ /*--------------------
31665
+ Loading
31666
+ ---------------------*/
31667
+
31668
+ .ui.loading.search .input > i.icon:before {
31669
+ position: absolute;
31670
+ content: '';
31671
+ top: 50%;
31672
+ left: 50%;
31673
+ margin: -0.64285714em 0em 0em -0.64285714em;
31674
+ width: 1.28571429em;
31675
+ height: 1.28571429em;
31676
+ border-radius: 500rem;
31677
+ border: 0.2em solid rgba(0, 0, 0, 0.1);
31678
+ }
31679
+
31680
+ .ui.loading.search .input > i.icon:after {
31681
+ position: absolute;
31682
+ content: '';
31683
+ top: 50%;
31684
+ left: 50%;
31685
+ margin: -0.64285714em 0em 0em -0.64285714em;
31686
+ width: 1.28571429em;
31687
+ height: 1.28571429em;
31688
+ -webkit-animation: button-spin 0.6s linear;
31689
+ animation: button-spin 0.6s linear;
31690
+ -webkit-animation-iteration-count: infinite;
31691
+ animation-iteration-count: infinite;
31692
+ border-radius: 500rem;
31693
+ border-color: #767676 transparent transparent;
31694
+ border-style: solid;
31695
+ border-width: 0.2em;
31696
+ box-shadow: 0px 0px 0px 1px transparent;
31697
+ }
31698
+
31699
+ /*--------------
31700
+ Hover
31701
+ ---------------*/
31702
+
31703
+ .ui.search > .results .result:hover,
31704
+ .ui.category.search > .results .category .result:hover {
31705
+ background: #f9fafb;
31706
+ }
31707
+
31708
+ .ui.search .action:hover {
31709
+ background: #e0e0e0;
31710
+ }
31711
+
31712
+ /*--------------
31713
+ Active
31714
+ ---------------*/
31715
+
31716
+ .ui.category.search > .results .category.active {
31717
+ background: #f3f4f5;
31718
+ }
31719
+
31720
+ .ui.category.search > .results .category.active > .name {
31721
+ color: rgba(0, 0, 0, 0.87);
31722
+ }
31723
+
31724
+ .ui.search > .results .result.active,
31725
+ .ui.category.search > .results .category .result.active {
31726
+ position: relative;
31727
+ border-left-color: rgba(34, 36, 38, 0.1);
31728
+ background: #f3f4f5;
31729
+ box-shadow: none;
31730
+ }
31731
+
31732
+ .ui.search > .results .result.active .title {
31733
+ color: rgba(0, 0, 0, 0.85);
31734
+ }
31735
+
31736
+ .ui.search > .results .result.active .description {
31737
+ color: rgba(0, 0, 0, 0.85);
31738
+ }
31739
+
31740
+ /*******************************
31741
+ Types
31742
+ *******************************/
31743
+
31744
+ /*--------------
31745
+ Selection
31746
+ ---------------*/
31747
+
31748
+ .ui.search.selection .prompt {
31749
+ border-radius: 0.28571429rem;
31750
+ }
31751
+
31752
+ /* Remove input */
31753
+
31754
+ .ui.search.selection > .icon.input > .remove.icon {
31755
+ pointer-events: none;
31756
+ position: absolute;
31757
+ left: auto;
31758
+ opacity: 0;
31759
+ color: '';
31760
+ top: 0em;
31761
+ right: 0em;
31762
+ -webkit-transition: color 0.1s ease, opacity 0.1s ease;
31763
+ transition: color 0.1s ease, opacity 0.1s ease;
31764
+ }
31765
+
31766
+ .ui.search.selection > .icon.input > .active.remove.icon {
31767
+ cursor: pointer;
31768
+ opacity: 0.8;
31769
+ pointer-events: auto;
31770
+ }
31771
+
31772
+ .ui.search.selection > .icon.input:not([class*="left icon"]) > .icon ~ .remove.icon {
31773
+ right: 1.85714em;
31774
+ }
31775
+
31776
+ .ui.search.selection > .icon.input > .remove.icon:hover {
31777
+ opacity: 1;
31778
+ color: #db2828;
31779
+ }
31780
+
31781
+ /*--------------
31782
+ Category
31783
+ ---------------*/
31784
+
31785
+ .ui.category.search .results {
31786
+ width: 28em;
31787
+ }
31788
+
31789
+ /* Category */
31790
+
31791
+ .ui.category.search > .results .category {
31792
+ background: #f3f4f5;
31793
+ box-shadow: none;
31794
+ border-bottom: 1px solid rgba(34, 36, 38, 0.1);
31795
+ -webkit-transition: background 0.1s ease, border-color 0.1s ease;
31796
+ transition: background 0.1s ease, border-color 0.1s ease;
31797
+ }
31798
+
31799
+ /* Last Category */
31800
+
31801
+ .ui.category.search > .results .category:last-child {
31802
+ border-bottom: none;
31803
+ }
31804
+
31805
+ /* First / Last */
31806
+
31807
+ .ui.category.search > .results .category:first-child .name + .result {
31808
+ border-radius: 0em 0.28571429rem 0em 0em;
31809
+ }
31810
+
31811
+ .ui.category.search > .results .category:last-child .result:last-child {
31812
+ border-radius: 0em 0em 0.28571429rem 0em;
31813
+ }
31814
+
31815
+ /* Category Result */
31816
+
31817
+ .ui.category.search > .results .category .result {
31818
+ background: #ffffff;
31819
+ margin-left: 100px;
31820
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
31821
+ border-bottom: 1px solid rgba(34, 36, 38, 0.1);
31822
+ -webkit-transition: background 0.1s ease, border-color 0.1s ease;
31823
+ transition: background 0.1s ease, border-color 0.1s ease;
31824
+ padding: 0.85714286em 1.14285714em;
31825
+ }
31826
+
31827
+ .ui.category.search > .results .category:last-child .result:last-child {
31828
+ border-bottom: none;
31829
+ }
31830
+
31831
+ /* Category Result Name */
31832
+
31833
+ .ui.category.search > .results .category > .name {
31834
+ width: 100px;
31835
+ background: transparent;
31836
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
31837
+ font-size: 1em;
31838
+ float: 1em;
31839
+ float: left;
31840
+ padding: 0.4em 1em;
31841
+ font-weight: bold;
31842
+ color: rgba(0, 0, 0, 0.4);
31843
+ }
31844
+
31845
+ /*******************************
31846
+ Variations
31847
+ *******************************/
31848
+
31849
+ /*-------------------
31850
+ Left / Right
31851
+ --------------------*/
31852
+
31853
+ .ui[class*="left aligned"].search > .results {
31854
+ right: auto;
31855
+ left: 0%;
31856
+ }
31857
+
31858
+ .ui[class*="right aligned"].search > .results {
31859
+ right: 0%;
31860
+ left: auto;
31861
+ }
31862
+
31863
+ /*--------------
31864
+ Fluid
31865
+ ---------------*/
31866
+
31867
+ .ui.fluid.search .results {
31868
+ width: 100%;
31869
+ }
31870
+
31871
+ /*--------------
31872
+ Sizes
31873
+ ---------------*/
31874
+
31875
+ .ui.mini.search {
31876
+ font-size: 0.71428571em;
31877
+ }
31878
+
31879
+ .ui.small.search {
31880
+ font-size: 0.92857143em;
31881
+ }
31882
+
31883
+ .ui.search {
31884
+ font-size: 1em;
31885
+ }
31886
+
31887
+ .ui.large.search {
31888
+ font-size: 1.14285714em;
31889
+ }
31890
+
31891
+ .ui.big.search {
31892
+ font-size: 1.28571429em;
31893
+ }
31894
+
31895
+ .ui.huge.search {
31896
+ font-size: 1.42857143em;
31897
+ }
31898
+
31899
+ .ui.massive.search {
31900
+ font-size: 1.71428571em;
31901
+ }
31902
+
31903
+ /*******************************
31904
+ Theme Overrides
31905
+ *******************************/
31906
+
31907
+ /*******************************
31908
+ Site Overrides
31909
+ *******************************/
31910
+ /*!
31911
+ * # Semantic UI 2.1.7 - Shape
31912
+ * http://github.com/semantic-org/semantic-ui/
31913
+ *
31914
+ *
31915
+ * Copyright 2015 Contributors
31916
+ * Released under the MIT license
31917
+ * http://opensource.org/licenses/MIT
31918
+ *
31919
+ */
31920
+
31921
+ /*******************************
31922
+ Shape
31923
+ *******************************/
31924
+
31925
+ .ui.shape {
31926
+ position: relative;
31927
+ vertical-align: top;
31928
+ display: inline-block;
31929
+ -webkit-perspective: 2000px;
31930
+ perspective: 2000px;
31931
+ -webkit-transition: -webkit-transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out;
31932
+ transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out;
31933
+ }
31934
+
31935
+ .ui.shape .sides {
31936
+ -webkit-transform-style: preserve-3d;
31937
+ transform-style: preserve-3d;
31938
+ }
31939
+
31940
+ .ui.shape .side {
31941
+ opacity: 1;
31942
+ width: 100%;
31943
+ margin: 0em !important;
31944
+ -webkit-backface-visibility: hidden;
31945
+ backface-visibility: hidden;
31946
+ }
31947
+
31948
+ .ui.shape .side {
31949
+ display: none;
31950
+ }
31951
+
31952
+ .ui.shape .side * {
31953
+ -webkit-backface-visibility: visible !important;
31954
+ backface-visibility: visible !important;
31955
+ }
31956
+
31957
+ /*******************************
31958
+ Types
31959
+ *******************************/
31960
+
31961
+ .ui.cube.shape .side {
31962
+ min-width: 15em;
31963
+ height: 15em;
31964
+ padding: 2em;
31965
+ background-color: #e6e6e6;
31966
+ color: rgba(0, 0, 0, 0.87);
31967
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
31968
+ }
31969
+
31970
+ .ui.cube.shape .side > .content {
31971
+ width: 100%;
31972
+ height: 100%;
31973
+ display: table;
31974
+ text-align: center;
31975
+ -webkit-user-select: text;
31976
+ -moz-user-select: text;
31977
+ -ms-user-select: text;
31978
+ user-select: text;
31979
+ }
31980
+
31981
+ .ui.cube.shape .side > .content > div {
31982
+ display: table-cell;
31983
+ vertical-align: middle;
31984
+ font-size: 2em;
31985
+ }
31986
+
31987
+ /*******************************
31988
+ Variations
31989
+ *******************************/
31990
+
31991
+ .ui.text.shape.animating .sides {
31992
+ position: static;
31993
+ }
31994
+
31995
+ .ui.text.shape .side {
31996
+ white-space: nowrap;
31997
+ }
31998
+
31999
+ .ui.text.shape .side > * {
32000
+ white-space: normal;
32001
+ }
32002
+
32003
+ /*******************************
32004
+ States
32005
+ *******************************/
32006
+
32007
+ /*--------------
32008
+ Loading
32009
+ ---------------*/
32010
+
32011
+ .ui.loading.shape {
32012
+ position: absolute;
32013
+ top: -9999px;
32014
+ left: -9999px;
32015
+ }
32016
+
32017
+ /*--------------
32018
+ Animating
32019
+ ---------------*/
32020
+
32021
+ .ui.shape .animating.side {
32022
+ position: absolute;
32023
+ top: 0px;
32024
+ left: 0px;
32025
+ display: block;
32026
+ z-index: 100;
32027
+ }
32028
+
32029
+ .ui.shape .hidden.side {
32030
+ opacity: 0.6;
32031
+ }
32032
+
32033
+ /*--------------
32034
+ CSS
32035
+ ---------------*/
32036
+
32037
+ .ui.shape.animating .sides {
32038
+ position: absolute;
32039
+ }
32040
+
32041
+ .ui.shape.animating .sides {
32042
+ -webkit-transition: -webkit-transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out;
32043
+ transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out;
32044
+ }
32045
+
32046
+ .ui.shape.animating .side {
32047
+ -webkit-transition: opacity 0.6s ease-in-out;
32048
+ transition: opacity 0.6s ease-in-out;
32049
+ }
32050
+
32051
+ /*--------------
32052
+ Active
32053
+ ---------------*/
32054
+
32055
+ .ui.shape .active.side {
32056
+ display: block;
32057
+ }
32058
+
32059
+ /*******************************
32060
+ Theme Overrides
32061
+ *******************************/
32062
+
32063
+ /*******************************
32064
+ User Overrides
32065
+ *******************************/
32066
+ /*!
32067
+ * # Semantic UI 2.1.7 - Sidebar
32068
+ * http://github.com/semantic-org/semantic-ui/
32069
+ *
32070
+ *
32071
+ * Copyright 2015 Contributors
32072
+ * Released under the MIT license
32073
+ * http://opensource.org/licenses/MIT
32074
+ *
32075
+ */
32076
+
32077
+ /*******************************
32078
+ Sidebar
32079
+ *******************************/
32080
+
32081
+ /* Sidebar Menu */
32082
+
32083
+ .ui.sidebar {
32084
+ position: fixed;
32085
+ top: 0;
32086
+ left: 0;
32087
+ -webkit-backface-visibility: hidden;
32088
+ backface-visibility: hidden;
32089
+ -webkit-transition: none;
32090
+ transition: none;
32091
+ will-change: transform;
32092
+ -webkit-transform: translate3d(0, 0, 0);
32093
+ transform: translate3d(0, 0, 0);
32094
+ visibility: hidden;
32095
+ -webkit-