`, and ``.
+$font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
+$font-family-base: $font-family-sans-serif !default;
+
+$font-size-base: 14px !default;
+$font-size-large: ceil(($font-size-base * 1.25)) !default; // ~18px
+$font-size-small: ceil(($font-size-base * 0.85)) !default; // ~12px
+
+$font-size-h1: floor(($font-size-base * 2.6)) !default; // ~36px
+$font-size-h2: floor(($font-size-base * 2.15)) !default; // ~30px
+$font-size-h3: ceil(($font-size-base * 1.7)) !default; // ~24px
+$font-size-h4: ceil(($font-size-base * 1.25)) !default; // ~18px
+$font-size-h5: $font-size-base !default;
+$font-size-h6: ceil(($font-size-base * 0.85)) !default; // ~12px
+
+//** Unit-less `line-height` for use in components like buttons.
+$line-height-base: 1.428571429 !default; // 20/14
+//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
+$line-height-computed: floor(($font-size-base * $line-height-base)) !default; // ~20px
+
+//** By default, this inherits from the ``.
+$headings-font-family: inherit !default;
+$headings-font-weight: 500 !default;
+$headings-line-height: 1.1 !default;
+$headings-color: inherit !default;
+
+
+//-- Iconography
+//
+//## Specify custom locations of the include Glyphicons icon font. Useful for those including Bootstrap via Bower.
+
+$icon-font-path: "bootstrap/" !default;
+$icon-font-name: "glyphicons-halflings-regular" !default;
+$icon-font-svg-id: "glyphicons_halflingsregular" !default;
+
+//== Components
+//
+//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
+
+$padding-base-vertical: 6px !default;
+$padding-base-horizontal: 12px !default;
+
+$padding-large-vertical: 10px !default;
+$padding-large-horizontal: 16px !default;
+
+$padding-small-vertical: 5px !default;
+$padding-small-horizontal: 10px !default;
+
+$padding-xs-vertical: 1px !default;
+$padding-xs-horizontal: 5px !default;
+
+$line-height-large: 1.33 !default;
+$line-height-small: 1.5 !default;
+
+$border-radius-base: 4px !default;
+$border-radius-large: 6px !default;
+$border-radius-small: 3px !default;
+
+//** Global color for active items (e.g., navs or dropdowns).
+$component-active-color: #fff !default;
+//** Global background color for active items (e.g., navs or dropdowns).
+$component-active-bg: $brand-primary !default;
+
+//** Width of the `border` for generating carets that indicator dropdowns.
+$caret-width-base: 4px !default;
+//** Carets increase slightly in size for larger components.
+$caret-width-large: 5px !default;
+
+
+//== Tables
+//
+//## Customizes the `.table` component with basic values, each used across all table variations.
+
+//** Padding for ``s and ` `s.
+$table-cell-padding: 8px !default;
+//** Padding for cells in `.table-condensed`.
+$table-condensed-cell-padding: 5px !default;
+
+//** Default background color used for all tables.
+$table-bg: transparent !default;
+//** Background color used for `.table-striped`.
+$table-bg-accent: #f9f9f9 !default;
+//** Background color used for `.table-hover`.
+$table-bg-hover: #f5f5f5 !default;
+$table-bg-active: $table-bg-hover !default;
+
+//** Border color for table and cell borders.
+$table-border-color: #ddd !default;
+
+
+//== Buttons
+//
+//## For each of Bootstrap's buttons, define text, background and border color.
+
+$btn-font-weight: normal !default;
+
+$btn-default-color: #333 !default;
+$btn-default-bg: #fff !default;
+$btn-default-border: #ccc !default;
+
+$btn-primary-color: #fff !default;
+$btn-primary-bg: $brand-primary !default;
+$btn-primary-border: darken($btn-primary-bg, 5%) !default;
+
+$btn-success-color: #fff !default;
+$btn-success-bg: $brand-success !default;
+$btn-success-border: darken($btn-success-bg, 5%) !default;
+
+$btn-info-color: #fff !default;
+$btn-info-bg: $brand-info !default;
+$btn-info-border: darken($btn-info-bg, 5%) !default;
+
+$btn-warning-color: #fff !default;
+$btn-warning-bg: $brand-warning !default;
+$btn-warning-border: darken($btn-warning-bg, 5%) !default;
+
+$btn-danger-color: #fff !default;
+$btn-danger-bg: $brand-danger !default;
+$btn-danger-border: darken($btn-danger-bg, 5%) !default;
+
+$btn-link-disabled-color: $gray-light !default;
+
+
+//== Forms
+//
+//##
+
+//** ` ` background color
+$input-bg: #fff !default;
+//** ` ` background color
+$input-bg-disabled: $gray-lighter !default;
+
+//** Text color for ` `s
+$input-color: $gray !default;
+//** ` ` border color
+$input-border: #ccc !default;
+//** ` ` border radius
+$input-border-radius: $border-radius-base !default;
+//** Border color for inputs on focus
+$input-border-focus: #66afe9 !default;
+
+//** Placeholder text color
+$input-color-placeholder: $gray-light !default;
+
+//** Default `.form-control` height
+$input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2) !default;
+//** Large `.form-control` height
+$input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default;
+//** Small `.form-control` height
+$input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
+
+$legend-color: $gray-dark !default;
+$legend-border-color: #e5e5e5 !default;
+
+//** Background color for textual input addons
+$input-group-addon-bg: $gray-lighter !default;
+//** Border color for textual input addons
+$input-group-addon-border-color: $input-border !default;
+
+
+//== Dropdowns
+//
+//## Dropdown menu container and contents.
+
+//** Background for the dropdown menu.
+$dropdown-bg: #fff !default;
+//** Dropdown menu `border-color`.
+$dropdown-border: rgba(0,0,0,.15) !default;
+//** Dropdown menu `border-color` **for IE8**.
+$dropdown-fallback-border: #ccc !default;
+//** Divider color for between dropdown items.
+$dropdown-divider-bg: #e5e5e5 !default;
+
+//** Dropdown link text color.
+$dropdown-link-color: $gray-dark !default;
+//** Hover color for dropdown links.
+$dropdown-link-hover-color: darken($gray-dark, 5%) !default;
+//** Hover background for dropdown links.
+$dropdown-link-hover-bg: #f5f5f5 !default;
+
+//** Active dropdown menu item text color.
+$dropdown-link-active-color: $component-active-color !default;
+//** Active dropdown menu item background color.
+$dropdown-link-active-bg: $component-active-bg !default;
+
+//** Disabled dropdown menu item background color.
+$dropdown-link-disabled-color: $gray-light !default;
+
+//** Text color for headers within dropdown menus.
+$dropdown-header-color: $gray-light !default;
+
+// Note: Deprecated $dropdown-caret-color as of v3.1.0
+$dropdown-caret-color: #000 !default;
+
+
+//-- Z-index master list
+//
+// Warning: Avoid customizing these values. They're used for a bird's eye view
+// of components dependent on the z-axis and are designed to all work together.
+//
+// Note: These variables are not generated into the Customizer.
+
+$zindex-navbar: 1000 !default;
+$zindex-dropdown: 1000 !default;
+$zindex-popover: 1010 !default;
+$zindex-tooltip: 1030 !default;
+$zindex-navbar-fixed: 1030 !default;
+$zindex-modal-background: 1040 !default;
+$zindex-modal: 1050 !default;
+
+
+//== Media queries breakpoints
+//
+//## Define the breakpoints at which your layout will change, adapting to different screen sizes.
+
+// Extra small screen / phone
+// Note: Deprecated $screen-xs and $screen-phone as of v3.0.1
+$screen-xs: 480px !default;
+$screen-xs-min: $screen-xs !default;
+$screen-phone: $screen-xs-min !default;
+
+// Small screen / tablet
+// Note: Deprecated $screen-sm and $screen-tablet as of v3.0.1
+$screen-sm: 768px !default;
+$screen-sm-min: $screen-sm !default;
+$screen-tablet: $screen-sm-min !default;
+
+// Medium screen / desktop
+// Note: Deprecated $screen-md and $screen-desktop as of v3.0.1
+$screen-md: 992px !default;
+$screen-md-min: $screen-md !default;
+$screen-desktop: $screen-md-min !default;
+
+// Large screen / wide desktop
+// Note: Deprecated $screen-lg and $screen-lg-desktop as of v3.0.1
+$screen-lg: 1200px !default;
+$screen-lg-min: $screen-lg !default;
+$screen-lg-desktop: $screen-lg-min !default;
+
+// So media queries don't overlap when required, provide a maximum
+$screen-xs-max: ($screen-sm-min - 1) !default;
+$screen-sm-max: ($screen-md-min - 1) !default;
+$screen-md-max: ($screen-lg-min - 1) !default;
+
+
+//== Grid system
+//
+//## Define your custom responsive grid.
+
+//** Number of columns in the grid.
+$grid-columns: 12 !default;
+//** Padding between columns. Gets divided in half for the left and right.
+$grid-gutter-width: 30px !default;
+// Navbar collapse
+//** Point at which the navbar becomes uncollapsed.
+$grid-float-breakpoint: $screen-sm-min !default;
+//** Point at which the navbar begins collapsing.
+$grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
+
+
+//== Container sizes
+//
+//## Define the maximum width of `.container` for different screen sizes.
+
+// Small screen / tablet
+$container-tablet: ((720px + $grid-gutter-width)) !default;
+//** For `$screen-sm-min` and up.
+$container-sm: $container-tablet !default;
+
+// Medium screen / desktop
+$container-desktop: ((940px + $grid-gutter-width)) !default;
+//** For `$screen-md-min` and up.
+$container-md: $container-desktop !default;
+
+// Large screen / wide desktop
+$container-large-desktop: ((1140px + $grid-gutter-width)) !default;
+//** For `$screen-lg-min` and up.
+$container-lg: $container-large-desktop !default;
+
+
+//== Navbar
+//
+//##
+
+// Basics of a navbar
+$navbar-height: 50px !default;
+$navbar-margin-bottom: $line-height-computed !default;
+$navbar-border-radius: $border-radius-base !default;
+$navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
+$navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
+$navbar-collapse-max-height: 340px !default;
+
+$navbar-default-color: #777 !default;
+$navbar-default-bg: #f8f8f8 !default;
+$navbar-default-border: darken($navbar-default-bg, 6.5%) !default;
+
+// Navbar links
+$navbar-default-link-color: #777 !default;
+$navbar-default-link-hover-color: #333 !default;
+$navbar-default-link-hover-bg: transparent !default;
+$navbar-default-link-active-color: #555 !default;
+$navbar-default-link-active-bg: darken($navbar-default-bg, 6.5%) !default;
+$navbar-default-link-disabled-color: #ccc !default;
+$navbar-default-link-disabled-bg: transparent !default;
+
+// Navbar brand label
+$navbar-default-brand-color: $navbar-default-link-color !default;
+$navbar-default-brand-hover-color: darken($navbar-default-brand-color, 10%) !default;
+$navbar-default-brand-hover-bg: transparent !default;
+
+// Navbar toggle
+$navbar-default-toggle-hover-bg: #ddd !default;
+$navbar-default-toggle-icon-bar-bg: #888 !default;
+$navbar-default-toggle-border-color: #ddd !default;
+
+
+// Inverted navbar
+// Reset inverted navbar basics
+$navbar-inverse-color: $gray-light !default;
+$navbar-inverse-bg: #222 !default;
+$navbar-inverse-border: darken($navbar-inverse-bg, 10%) !default;
+
+// Inverted navbar links
+$navbar-inverse-link-color: $gray-light !default;
+$navbar-inverse-link-hover-color: #fff !default;
+$navbar-inverse-link-hover-bg: transparent !default;
+$navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;
+$navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 10%) !default;
+$navbar-inverse-link-disabled-color: #444 !default;
+$navbar-inverse-link-disabled-bg: transparent !default;
+
+// Inverted navbar brand label
+$navbar-inverse-brand-color: $navbar-inverse-link-color !default;
+$navbar-inverse-brand-hover-color: #fff !default;
+$navbar-inverse-brand-hover-bg: transparent !default;
+
+// Inverted navbar toggle
+$navbar-inverse-toggle-hover-bg: #333 !default;
+$navbar-inverse-toggle-icon-bar-bg: #fff !default;
+$navbar-inverse-toggle-border-color: #333 !default;
+
+
+//== Navs
+//
+//##
+
+//=== Shared nav styles
+$nav-link-padding: 10px 15px !default;
+$nav-link-hover-bg: $gray-lighter !default;
+
+$nav-disabled-link-color: $gray-light !default;
+$nav-disabled-link-hover-color: $gray-light !default;
+
+$nav-open-link-hover-color: #fff !default;
+
+//== Tabs
+$nav-tabs-border-color: #ddd !default;
+
+$nav-tabs-link-hover-border-color: $gray-lighter !default;
+
+$nav-tabs-active-link-hover-bg: $body-bg !default;
+$nav-tabs-active-link-hover-color: $gray !default;
+$nav-tabs-active-link-hover-border-color: #ddd !default;
+
+$nav-tabs-justified-link-border-color: #ddd !default;
+$nav-tabs-justified-active-link-border-color: $body-bg !default;
+
+//== Pills
+$nav-pills-border-radius: $border-radius-base !default;
+$nav-pills-active-link-hover-bg: $component-active-bg !default;
+$nav-pills-active-link-hover-color: $component-active-color !default;
+
+
+//== Pagination
+//
+//##
+
+$pagination-color: $link-color !default;
+$pagination-bg: #fff !default;
+$pagination-border: #ddd !default;
+
+$pagination-hover-color: $link-hover-color !default;
+$pagination-hover-bg: $gray-lighter !default;
+$pagination-hover-border: #ddd !default;
+
+$pagination-active-color: #fff !default;
+$pagination-active-bg: $brand-primary !default;
+$pagination-active-border: $brand-primary !default;
+
+$pagination-disabled-color: $gray-light !default;
+$pagination-disabled-bg: #fff !default;
+$pagination-disabled-border: #ddd !default;
+
+
+//== Pager
+//
+//##
+
+$pager-bg: $pagination-bg !default;
+$pager-border: $pagination-border !default;
+$pager-border-radius: 15px !default;
+
+$pager-hover-bg: $pagination-hover-bg !default;
+
+$pager-active-bg: $pagination-active-bg !default;
+$pager-active-color: $pagination-active-color !default;
+
+$pager-disabled-color: $pagination-disabled-color !default;
+
+
+//== Jumbotron
+//
+//##
+
+$jumbotron-padding: 30px !default;
+$jumbotron-color: inherit !default;
+$jumbotron-bg: $gray-lighter !default;
+$jumbotron-heading-color: inherit !default;
+$jumbotron-font-size: ceil(($font-size-base * 1.5)) !default;
+
+
+//== Form states and alerts
+//
+//## Define colors for form feedback states and, by default, alerts.
+
+$state-success-text: #3c763d !default;
+$state-success-bg: #dff0d8 !default;
+$state-success-border: darken(adjust-hue($state-success-bg, -10), 5%) !default;
+
+$state-info-text: #31708f !default;
+$state-info-bg: #d9edf7 !default;
+$state-info-border: darken(adjust-hue($state-info-bg, -10), 7%) !default;
+
+$state-warning-text: #8a6d3b !default;
+$state-warning-bg: #fcf8e3 !default;
+$state-warning-border: darken(adjust-hue($state-warning-bg, -10), 5%) !default;
+
+$state-danger-text: #a94442 !default;
+$state-danger-bg: #f2dede !default;
+$state-danger-border: darken(adjust-hue($state-danger-bg, -10), 5%) !default;
+
+
+//== Tooltips
+//
+//##
+
+//** Tooltip max width
+$tooltip-max-width: 200px !default;
+//** Tooltip text color
+$tooltip-color: #fff !default;
+//** Tooltip background color
+$tooltip-bg: #000 !default;
+$tooltip-opacity: .9 !default;
+
+//** Tooltip arrow width
+$tooltip-arrow-width: 5px !default;
+//** Tooltip arrow color
+$tooltip-arrow-color: $tooltip-bg !default;
+
+
+//== Popovers
+//
+//##
+
+//** Popover body background color
+$popover-bg: #fff !default;
+//** Popover maximum width
+$popover-max-width: 276px !default;
+//** Popover border color
+$popover-border-color: rgba(0,0,0,.2) !default;
+//** Popover fallback border color
+$popover-fallback-border-color: #ccc !default;
+
+//** Popover title background color
+$popover-title-bg: darken($popover-bg, 3%) !default;
+
+//** Popover arrow width
+$popover-arrow-width: 10px !default;
+//** Popover arrow color
+$popover-arrow-color: #fff !default;
+
+//** Popover outer arrow width
+$popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
+//** Popover outer arrow color
+$popover-arrow-outer-color: fadein($popover-border-color, 5%) !default;
+//** Popover outer arrow fallback color
+$popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default;
+
+
+//== Labels
+//
+//##
+
+//** Default label background color
+$label-default-bg: $gray-light !default;
+//** Primary label background color
+$label-primary-bg: $brand-primary !default;
+//** Success label background color
+$label-success-bg: $brand-success !default;
+//** Info label background color
+$label-info-bg: $brand-info !default;
+//** Warning label background color
+$label-warning-bg: $brand-warning !default;
+//** Danger label background color
+$label-danger-bg: $brand-danger !default;
+
+//** Default label text color
+$label-color: #fff !default;
+//** Default text color of a linked label
+$label-link-hover-color: #fff !default;
+
+
+//== Modals
+//
+//##
+
+//** Padding applied to the modal body
+$modal-inner-padding: 20px !default;
+
+//** Padding applied to the modal title
+$modal-title-padding: 15px !default;
+//** Modal title line-height
+$modal-title-line-height: $line-height-base !default;
+
+//** Background color of modal content area
+$modal-content-bg: #fff !default;
+//** Modal content border color
+$modal-content-border-color: rgba(0,0,0,.2) !default;
+//** Modal content border color **for IE8**
+$modal-content-fallback-border-color: #999 !default;
+
+//** Modal backdrop background color
+$modal-backdrop-bg: #000 !default;
+//** Modal backdrop opacity
+$modal-backdrop-opacity: .5 !default;
+//** Modal header border color
+$modal-header-border-color: #e5e5e5 !default;
+//** Modal footer border color
+$modal-footer-border-color: $modal-header-border-color !default;
+
+$modal-lg: 900px !default;
+$modal-md: 600px !default;
+$modal-sm: 300px !default;
+
+
+//== Alerts
+//
+//## Define alert colors, border radius, and padding.
+
+$alert-padding: 15px !default;
+$alert-border-radius: $border-radius-base !default;
+$alert-link-font-weight: bold !default;
+
+$alert-success-bg: $state-success-bg !default;
+$alert-success-text: $state-success-text !default;
+$alert-success-border: $state-success-border !default;
+
+$alert-info-bg: $state-info-bg !default;
+$alert-info-text: $state-info-text !default;
+$alert-info-border: $state-info-border !default;
+
+$alert-warning-bg: $state-warning-bg !default;
+$alert-warning-text: $state-warning-text !default;
+$alert-warning-border: $state-warning-border !default;
+
+$alert-danger-bg: $state-danger-bg !default;
+$alert-danger-text: $state-danger-text !default;
+$alert-danger-border: $state-danger-border !default;
+
+
+//== Progress bars
+//
+//##
+
+//** Background color of the whole progress component
+$progress-bg: #f5f5f5 !default;
+//** Progress bar text color
+$progress-bar-color: #fff !default;
+
+//** Default progress bar color
+$progress-bar-bg: $brand-primary !default;
+//** Success progress bar color
+$progress-bar-success-bg: $brand-success !default;
+//** Warning progress bar color
+$progress-bar-warning-bg: $brand-warning !default;
+//** Danger progress bar color
+$progress-bar-danger-bg: $brand-danger !default;
+//** Info progress bar color
+$progress-bar-info-bg: $brand-info !default;
+
+
+//== List group
+//
+//##
+
+//** Background color on `.list-group-item`
+$list-group-bg: #fff !default;
+//** `.list-group-item` border color
+$list-group-border: #ddd !default;
+//** List group border radius
+$list-group-border-radius: $border-radius-base !default;
+
+//** Background color of single list elements on hover
+$list-group-hover-bg: #f5f5f5 !default;
+//** Text color of active list elements
+$list-group-active-color: $component-active-color !default;
+//** Background color of active list elements
+$list-group-active-bg: $component-active-bg !default;
+//** Border color of active list elements
+$list-group-active-border: $list-group-active-bg !default;
+$list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
+
+$list-group-link-color: #555 !default;
+$list-group-link-heading-color: #333 !default;
+
+
+//== Panels
+//
+//##
+
+$panel-bg: #fff !default;
+$panel-body-padding: 15px !default;
+$panel-border-radius: $border-radius-base !default;
+
+//** Border color for elements within panels
+$panel-inner-border: #ddd !default;
+$panel-footer-bg: #f5f5f5 !default;
+
+$panel-default-text: $gray-dark !default;
+$panel-default-border: #ddd !default;
+$panel-default-heading-bg: #f5f5f5 !default;
+
+$panel-primary-text: #fff !default;
+$panel-primary-border: $brand-primary !default;
+$panel-primary-heading-bg: $brand-primary !default;
+
+$panel-success-text: $state-success-text !default;
+$panel-success-border: $state-success-border !default;
+$panel-success-heading-bg: $state-success-bg !default;
+
+$panel-info-text: $state-info-text !default;
+$panel-info-border: $state-info-border !default;
+$panel-info-heading-bg: $state-info-bg !default;
+
+$panel-warning-text: $state-warning-text !default;
+$panel-warning-border: $state-warning-border !default;
+$panel-warning-heading-bg: $state-warning-bg !default;
+
+$panel-danger-text: $state-danger-text !default;
+$panel-danger-border: $state-danger-border !default;
+$panel-danger-heading-bg: $state-danger-bg !default;
+
+
+//== Thumbnails
+//
+//##
+
+//** Padding around the thumbnail image
+$thumbnail-padding: 4px !default;
+//** Thumbnail background color
+$thumbnail-bg: $body-bg !default;
+//** Thumbnail border color
+$thumbnail-border: #ddd !default;
+//** Thumbnail border radius
+$thumbnail-border-radius: $border-radius-base !default;
+
+//** Custom text color for thumbnail captions
+$thumbnail-caption-color: $text-color !default;
+//** Padding around the thumbnail caption
+$thumbnail-caption-padding: 9px !default;
+
+
+//== Wells
+//
+//##
+
+$well-bg: #f5f5f5 !default;
+$well-border: darken($well-bg, 7%) !default;
+
+
+//== Badges
+//
+//##
+
+$badge-color: #fff !default;
+//** Linked badge text color on hover
+$badge-link-hover-color: #fff !default;
+$badge-bg: $gray-light !default;
+
+//** Badge text color in active nav link
+$badge-active-color: $link-color !default;
+//** Badge background color in active nav link
+$badge-active-bg: #fff !default;
+
+$badge-font-weight: bold !default;
+$badge-line-height: 1 !default;
+$badge-border-radius: 10px !default;
+
+
+//== Breadcrumbs
+//
+//##
+
+$breadcrumb-padding-vertical: 8px !default;
+$breadcrumb-padding-horizontal: 15px !default;
+//** Breadcrumb background color
+$breadcrumb-bg: #f5f5f5 !default;
+//** Breadcrumb text color
+$breadcrumb-color: #ccc !default;
+//** Text color of current page in the breadcrumb
+$breadcrumb-active-color: $gray-light !default;
+//** Textual separator for between breadcrumb elements
+$breadcrumb-separator: "/" !default;
+
+
+//== Carousel
+//
+//##
+
+$carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default;
+
+$carousel-control-color: #fff !default;
+$carousel-control-width: 15% !default;
+$carousel-control-opacity: .5 !default;
+$carousel-control-font-size: 20px !default;
+
+$carousel-indicator-active-bg: #fff !default;
+$carousel-indicator-border-color: #fff !default;
+
+$carousel-caption-color: #fff !default;
+
+
+//== Close
+//
+//##
+
+$close-font-weight: bold !default;
+$close-color: #000 !default;
+$close-text-shadow: 0 1px 0 #fff !default;
+
+
+//== Code
+//
+//##
+
+$code-color: #c7254e !default;
+$code-bg: #f9f2f4 !default;
+
+$kbd-color: #fff !default;
+$kbd-bg: #333 !default;
+
+$pre-bg: #f5f5f5 !default;
+$pre-color: $gray-dark !default;
+$pre-border-color: #ccc !default;
+$pre-scrollable-max-height: 340px !default;
+
+
+//== Type
+//
+//##
+
+//** Text muted color
+$text-muted: $gray-light !default;
+//** Abbreviations and acronyms border color
+$abbr-border-color: $gray-light !default;
+//** Headings small color
+$headings-small-color: $gray-light !default;
+//** Blockquote small color
+$blockquote-small-color: $gray-light !default;
+//** Blockquote font size
+$blockquote-font-size: ($font-size-base * 1.25) !default;
+//** Blockquote border color
+$blockquote-border-color: $gray-lighter !default;
+//** Page header border color
+$page-header-border-color: $gray-lighter !default;
+
+
+//== Miscellaneous
+//
+//##
+
+//** Horizontal line color.
+$hr-border: $gray-lighter !default;
+
+//** Horizontal offset for forms and lists.
+$component-offset-horizontal: 180px !default;
diff --git a/custom_announcement/app/assets/stylesheets/custom_bulletin/bootstrap/bootstrap.min.css b/custom_announcement/app/assets/stylesheets/custom_bulletin/bootstrap/bootstrap.min.css
new file mode 100644
index 0000000..fc564e4
--- /dev/null
+++ b/custom_announcement/app/assets/stylesheets/custom_bulletin/bootstrap/bootstrap.min.css
@@ -0,0 +1,6 @@
+/*!
+ * Bootstrap v3.3.5 (http://getbootstrap.com)
+ * Copyright 2011-2015 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ * //*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:0.0625em dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 2.5em}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 0.125em;border:0.0625em solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:0.0625em solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:0.0625em solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:0.0625em solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:0.0625em;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:0.625em;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:0.875em;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:0.3125em auto -webkit-focus-ring-color;outline-offset:-0.125em}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:0.375em}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:0.25em;line-height:1.42857143;background-color:#fff;border:0.0625em solid #ddd;border-radius:0.25em;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:1.25em;margin-bottom:1.25em;border:0;border-top:0.0625em solid #eee}.sr-only{position:absolute;width:0.0625em;height:0.0625em;padding:0;margin:-0.0625em;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:1.25em;margin-bottom:0.625em}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:0.625em;margin-bottom:0.625em}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:2.250em}.h2,h2{font-size:1.875em}.h3,h3{font-size:1.500em}.h4,h4{font-size:1.125em}.h5,h5{font-size:0.875em}.h6,h6{font-size:0.750em}p{margin:0 0 0.625em}.lead{margin-bottom:1.25em;font-size:1em;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:1.313em}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:0.5625em;margin:2.5em 0 1.25em;border-bottom:0.0625em solid #eee}ol,ul{margin-top:0;margin-bottom:0.625em}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-0.3125em;list-style:none}.list-inline>li{display:inline-block;padding-right:0.3125em;padding-left:0.3125em}dl{margin-top:0;margin-bottom:1.25em}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:10em;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:11.25em}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:0.0625em dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:0.625em 1.25em;margin:0 0 1.25em;font-size:1.094em;border-left:0.3125em solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:0.9375em;padding-left:0;text-align:right;border-right:0.3125em solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:1.25em;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:0.125em 0.25em;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:0.25em}kbd{padding:0.125em 0.25em;font-size:90%;color:#fff;background-color:#333;border-radius:0.1875em;-webkit-box-shadow:inset 0 -0.0625em 0 rgba(0,0,0,.25);box-shadow:inset 0 -0.0625em 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.0.3125em;margin:0 0 0.625em;font-size:0.813em;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:0.0625em solid #ccc;border-radius:0.25em}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:32.5em;overflow-y:scroll}.container{padding-right:0.9375em;padding-left:0.9375em;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:46.875em}}@media (min-width:990.125em){.container{width:60.625em}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:0.9375em;padding-left:0.9375em;margin-right:auto;margin-left:auto}.row{margin-right:-0.9375em;margin-left:-0.9375em}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:0.0625em;padding-right:0.9375em;padding-left:0.9375em}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:990.125em){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:0.5em;padding-bottom:0.5em;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:1.25em}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:0.5em;line-height:1.42857143;vertical-align:top;border-top:0.0625em solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:0.125em solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:0.125em solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:0.3125em}.table-bordered{border:0.0625em solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:0.0625em solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:0.125em}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:0.9375em;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:0.0625em solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:1.25em;font-size:1.313em;line-height:inherit;color:#333;border:0;border-bottom:0.0625em solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:0.3125em;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:0.25em 0 0;margin-top:0.0625em\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:thin dotted;outline:0.3125em auto -webkit-focus-ring-color;outline-offset:-0.125em}output{display:block;padding-top:0.4375em;font-size:0.875em;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:30.25em;padding:0.375em 1.125em;font-size:0.875em;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:0.0625em solid #ccc;border-radius:0.25em;-webkit-box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075);box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075),0 0 0.5em rgba(102,175,233,.6);box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075),0 0 0.5em rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:30.25em}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:1.875em}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:40.375em}}.form-group{margin-bottom:0.9375em}.checkbox,.radio{position:relative;display:block;margin-top:0.625em;margin-bottom:0.625em}.checkbox label,.radio label{min-height:1.25em;padding-left:1.25em;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:0.25em\9;margin-left:-1.25em}.checkbox+.checkbox,.radio+.radio{margin-top:-0.3125em}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:1.25em;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:0.625em}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:30.25em;padding-top:0.4375em;padding-bottom:0.4375em;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:1.875em;padding:0.3125em 0.625em;font-size:0.750em;line-height:1.5;border-radius:0.1875em}select.input-sm{height:1.875em;line-height:1.875em}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:1.875em;padding:0.3125em 0.625em;font-size:0.750em;line-height:1.5;border-radius:0.1875em}.form-group-sm select.form-control{height:1.875em;line-height:1.875em}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:1.875em;min-height:30.125em;padding:0.375em 0.625em;font-size:0.750em;line-height:1.5}.input-lg{height:40.375em;padding:0.625em 10.375em;font-size:1.125em;line-height:1.3333333;border-radius:0.375em}select.input-lg{height:40.375em;line-height:40.375em}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:40.375em;padding:0.625em 10.375em;font-size:1.125em;line-height:1.3333333;border-radius:0.375em}.form-group-lg select.form-control{height:40.375em;line-height:40.375em}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:40.375em;min-height:2.375em;padding:10.0625em 10.375em;font-size:1.125em;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.0.3125em}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:30.25em;height:30.25em;line-height:30.25em;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:40.375em;height:40.375em;line-height:40.375em}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:1.875em;height:1.875em;line-height:1.875em}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075);box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075),0 0 0.375em #67b168;box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075),0 0 0.375em #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075);box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075),0 0 0.375em #c0a16b;box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075),0 0 0.375em #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075);box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075),0 0 0.375em #ce8483;box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075),0 0 0.375em #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:20.3125em}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:0.3125em;margin-bottom:0.625em;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:0.4375em;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:1.6875em}.form-horizontal .form-group{margin-right:-0.9375em;margin-left:-0.9375em}@media (min-width:768px){.form-horizontal .control-label{padding-top:0.4375em;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:0.9375em}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:10.0625em;font-size:1.125em}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:0.375em;font-size:0.750em}}.btn{display:inline-block;padding:0.375em 1.125em;margin-bottom:0;font-size:0.875em;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:0.0625em solid transparent;border-radius:0.25em}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:0.3125em auto -webkit-focus-ring-color;outline-offset:-0.125em}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 0.1875em 0.3125em rgba(0,0,0,.125);box-shadow:inset 0 0.1875em 0.3125em rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:0.625em 10.375em;font-size:1.125em;line-height:1.3333333;border-radius:0.375em}.btn-group-sm>.btn,.btn-sm{padding:0.3125em 0.625em;font-size:0.750em;line-height:1.5;border-radius:0.1875em}.btn-group-xs>.btn,.btn-xs{padding:0.0625em 0.3125em;font-size:0.750em;line-height:1.5;border-radius:0.1875em}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:0.3125em}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:0.125em;vertical-align:middle;border-top:0.25em dashed;border-top:0.25em solid\9;border-right:0.25em solid transparent;border-left:0.25em solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10em;padding:0.3125em 0;margin:0.125em 0 0;font-size:0.875em;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:0.0625em solid #ccc;border:0.0625em solid rgba(0,0,0,.15);border-radius:0.25em;-webkit-box-shadow:0 0.375em 1.125em rgba(0,0,0,.175);box-shadow:0 0.375em 1.125em rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:0.0625em;margin:0.5625em 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:0.1875em 1.25em;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:0.1875em 1.25em;font-size:0.750em;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:0.25em dashed;border-bottom:0.25em solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:0.125em}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-0.0625em}.btn-toolbar{margin-left:-0.3125em}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:0.3125em}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:0.5em;padding-left:0.5em}.btn-group>.btn-lg+.dropdown-toggle{padding-right:1.125em;padding-left:1.125em}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 0.1875em 0.3125em rgba(0,0,0,.125);box-shadow:inset 0 0.1875em 0.3125em rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:0.3125em 0.3125em 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 0.3125em 0.3125em}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-0.0625em;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:0.25em;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:0.25em}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:40.375em;padding:0.625em 10.375em;font-size:1.125em;line-height:1.3333333;border-radius:0.375em}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:40.375em;line-height:40.375em}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:1.875em;padding:0.3125em 0.625em;font-size:0.750em;line-height:1.5;border-radius:0.1875em}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:1.875em;line-height:1.875em}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:0.375em 1.125em;font-size:0.875em;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:0.0625em solid #ccc;border-radius:0.25em}.input-group-addon.input-sm{padding:0.3125em 0.625em;font-size:0.750em;border-radius:0.1875em}.input-group-addon.input-lg{padding:0.625em 10.375em;font-size:1.125em;border-radius:0.375em}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-0.0625em}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-0.0625em}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-0.0625em}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:0.625em 0.9375em}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:0.0625em;margin:0.5625em 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:0.0625em solid #ddd}.nav-tabs>li{float:left;margin-bottom:-0.0625em}.nav-tabs>li>a{margin-right:0.125em;line-height:1.42857143;border:0.0625em solid transparent;border-radius:0.25em 0.25em 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:0.0625em solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:0.3125em;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:0.25em}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:0.0625em solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:0.0625em solid #ddd;border-radius:0.25em 0.25em 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:0.25em}.nav-pills>li+li{margin-left:0.125em}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:0.125em;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:0.3125em;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:0.25em}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:0.0625em solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:0.0625em solid #ddd;border-radius:0.25em 0.25em 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-0.0625em;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:3.125em;margin-bottom:1.25em;border:0.0625em solid transparent}@media (min-width:768px){.navbar{border-radius:0.25em}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:0.9375em;padding-left:0.9375em;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:0.0625em solid transparent;-webkit-box-shadow:inset 0 0.0625em 0 rgba(255,255,255,.1);box-shadow:inset 0 0.0625em 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:32.5em}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:12.5em}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-0.9375em;margin-left:-0.9375em}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 0.0625em}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 0.0625em}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:0.0625em 0 0}.navbar-brand{float:left;height:3.125em;padding:0.9375em 0.9375em;font-size:1.125em;line-height:1.25em}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-0.9375em}}.navbar-toggle{position:relative;float:right;padding:0.5625em 0.625em;margin-top:0.5em;margin-right:0.9375em;margin-bottom:0.5em;background-color:transparent;background-image:none;border:0.0625em solid transparent;border-radius:0.25em}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:1.375em;height:0.125em;border-radius:0.0625em}.navbar-toggle .icon-bar+.icon-bar{margin-top:0.25em}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.0.3125em -0.9375em}.navbar-nav>li>a{padding-top:0.625em;padding-bottom:0.625em;line-height:1.25em}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:0.3125em 0.9375em 0.3125em 20.3125em}.navbar-nav .open .dropdown-menu>li>a{line-height:1.25em}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:0.9375em;padding-bottom:0.9375em}}.navbar-form{padding:0.625em 0.9375em;margin-top:0.5em;margin-right:-0.9375em;margin-bottom:0.5em;margin-left:-0.9375em;border-top:0.0625em solid transparent;border-bottom:0.0625em solid transparent;-webkit-box-shadow:inset 0 0.0625em 0 rgba(255,255,255,.1),0 0.0625em 0 rgba(255,255,255,.1);box-shadow:inset 0 0.0625em 0 rgba(255,255,255,.1),0 0.0625em 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:0.3125em}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:0.25em;border-top-right-radius:0.25em;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:0.5em;margin-bottom:0.5em}.navbar-btn.btn-sm{margin-top:0.625em;margin-bottom:0.625em}.navbar-btn.btn-xs{margin-top:10.25em;margin-bottom:10.25em}.navbar-text{margin-top:0.9375em;margin-bottom:0.9375em}@media (min-width:768px){.navbar-text{float:left;margin-right:0.9375em;margin-left:0.9375em}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-0.9375em}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:0.5em 0.9375em;margin-bottom:1.25em;list-style:none;background-color:#f5f5f5;border-radius:0.25em}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 0.3125em;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:1.25em 0;border-radius:0.25em}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:0.375em 1.125em;margin-left:-0.0625em;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:0.0625em solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:0.25em;border-bottom-left-radius:0.25em}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:0.25em;border-bottom-right-radius:0.25em}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:0.625em 10.375em;font-size:1.125em;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:0.375em;border-bottom-left-radius:0.375em}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:0.375em;border-bottom-right-radius:0.375em}.pagination-sm>li>a,.pagination-sm>li>span{padding:0.3125em 0.625em;font-size:0.750em;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:0.1875em;border-bottom-left-radius:0.1875em}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:0.1875em;border-bottom-right-radius:0.1875em}.pager{padding-left:0;margin:1.25em 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:0.3125em 10.25em;background-color:#fff;border:0.0625em solid #ddd;border-radius:0.9375em}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-0.0625em}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:0.625em;padding:0.1875em 0.4375em;font-size:0.750em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:0.625em}.badge:empty{display:none}.btn .badge{position:relative;top:-0.0625em}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:0.0625em 0.3125em}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:0.3125em}.nav-pills>li>a>.badge{margin-left:0.1875em}.jumbotron{padding-top:1.875em;padding-bottom:1.875em;margin-bottom:1.875em;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:0.9375em;font-size:1.313em;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:0.9375em;padding-left:0.9375em;border-radius:0.375em}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:3em;padding-bottom:3em}.container .jumbotron,.container-fluid .jumbotron{padding-right:3.75em;padding-left:3.75em}.jumbotron .h1,.jumbotron h1{font-size:3.938em}}.thumbnail{display:block;padding:0.25em;margin-bottom:1.25em;line-height:1.42857143;background-color:#fff;border:0.0625em solid #ddd;border-radius:0.25em;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:0.5625em;color:#333}.alert{padding:0.9375em;margin-bottom:1.25em;border:0.0625em solid transparent;border-radius:0.25em}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:0.3125em}.alert-dismissable,.alert-dismissible{padding-right:30.3125em}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-0.125em;right:-20.0625em;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:2.5em 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:2.5em 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:2.5em 0}to{background-position:0 0}}.progress{height:1.25em;margin-bottom:1.25em;overflow:hidden;background-color:#f5f5f5;border-radius:0.25em;-webkit-box-shadow:inset 0 0.0625em 0.125em rgba(0,0,0,.1);box-shadow:inset 0 0.0625em 0.125em rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:0.750em;line-height:1.25em;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -0.0625em 0 rgba(0,0,0,.15);box-shadow:inset 0 -0.0625em 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:2.5em 2.5em;background-size:2.5em 2.5em}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:0.9375em}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:625em}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:0.625em}.media-left,.media>.pull-left{padding-right:0.625em}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:0.3125em}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:1.25em}.list-group-item{position:relative;display:block;padding:0.625em 0.9375em;margin-bottom:-0.0625em;background-color:#fff;border:0.0625em solid #ddd}.list-group-item:first-child{border-top-left-radius:0.25em;border-top-right-radius:0.25em}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0.25em;border-bottom-left-radius:0.25em}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:0.3125em}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:1.25em;background-color:#fff;border:0.0625em solid transparent;border-radius:0.25em;-webkit-box-shadow:0 0.0625em 0.0625em rgba(0,0,0,.05);box-shadow:0 0.0625em 0.0625em rgba(0,0,0,.05)}.panel-body{padding:0.9375em}.panel-heading{padding:0.625em 0.9375em;border-bottom:0.0625em solid transparent;border-top-left-radius:0.1875em;border-top-right-radius:0.1875em}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:1em;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:0.625em 0.9375em;background-color:#f5f5f5;border-top:0.0625em solid #ddd;border-bottom-right-radius:0.1875em;border-bottom-left-radius:0.1875em}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:0.0625em 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:0.1875em;border-top-right-radius:0.1875em}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:0.1875em;border-bottom-left-radius:0.1875em}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:0.9375em;padding-left:0.9375em}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:0.1875em;border-top-right-radius:0.1875em}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:0.1875em;border-top-right-radius:0.1875em}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:0.1875em}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:0.1875em}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:0.1875em;border-bottom-left-radius:0.1875em}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:0.1875em;border-bottom-left-radius:0.1875em}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:0.1875em}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:0.1875em}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:0.0625em solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:1.25em}.panel-group .panel{margin-bottom:0;border-radius:0.25em}.panel-group .panel+.panel{margin-top:0.3125em}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:0.0625em solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:0.0625em solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:1.25em;padding:10.5625em;margin-bottom:1.25em;background-color:#f5f5f5;border:0.0625em solid #e3e3e3;border-radius:0.25em;-webkit-box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.05);box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:20.25em;border-radius:0.375em}.well-sm{padding:0.5625em;border-radius:0.1875em}.close{float:right;font-size:1.313em;font-weight:700;line-height:1;color:#000;text-shadow:0 0.0625em 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:0.625em}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:0.0625em solid #999;border:0.0625em solid rgba(0,0,0,.2);border-radius:0.375em;outline:0;-webkit-box-shadow:0 0.1875em 0.5625em rgba(0,0,0,.5);box-shadow:0 0.1875em 0.5625em rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:0.9375em;border-bottom:0.0625em solid #e5e5e5}.modal-header .close{margin-top:-0.125em}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:0.9375em}.modal-footer{padding:0.9375em;text-align:right;border-top:0.0625em solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:0.3125em}.modal-footer .btn-group .btn+.btn{margin-left:-0.0625em}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9990.5625em;width:3.125em;height:3.125em;overflow:scroll}@media (min-width:768px){.modal-dialog{width:37.5em;margin:1.875em auto}.modal-content{-webkit-box-shadow:0 0.3125em 0.9375em rgba(0,0,0,.5);box-shadow:0 0.3125em 0.9375em rgba(0,0,0,.5)}.modal-sm{width:18.75em}}@media (min-width:990.125em){.modal-lg{width:56.25em}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:0.750em;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:0.3125em 0;margin-top:-0.1875em}.tooltip.right{padding:0 0.3125em;margin-left:0.1875em}.tooltip.bottom{padding:0.3125em 0;margin-top:0.1875em}.tooltip.left{padding:0 0.3125em;margin-left:-0.1875em}.tooltip-inner{max-width:12.5em;padding:0.1875em 0.5em;color:#fff;text-align:center;background-color:#000;border-radius:0.25em}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-0.3125em;border-width:0.3125em 0.3125em 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:0.3125em;bottom:0;margin-bottom:-0.3125em;border-width:0.3125em 0.3125em 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:0.3125em;margin-bottom:-0.3125em;border-width:0.3125em 0.3125em 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-0.3125em;border-width:0.3125em 0.3125em 0.3125em 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-0.3125em;border-width:0.3125em 0 0.3125em 0.3125em;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-0.3125em;border-width:0 0.3125em 0.3125em;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:0.3125em;margin-top:-0.3125em;border-width:0 0.3125em 0.3125em;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:0.3125em;margin-top:-0.3125em;border-width:0 0.3125em 0.3125em;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:270.375em;padding:0.0625em;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:0.875em;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:0.0625em solid #ccc;border:0.0625em solid rgba(0,0,0,.2);border-radius:0.375em;-webkit-box-shadow:0 0.3125em 0.625em rgba(0,0,0,.2);box-shadow:0 0.3125em 0.625em rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-0.625em}.popover.right{margin-left:0.625em}.popover.bottom{margin-top:0.625em}.popover.left{margin-left:-0.625em}.popover-title{padding:0.5em 10.25em;margin:0;font-size:0.875em;background-color:#f7f7f7;border-bottom:0.0625em solid #ebebeb;border-radius:0.3125em 0.3125em 0 0}.popover-content{padding:0.5625em 10.25em}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:10.0625em}.popover>.arrow:after{content:"";border-width:0.625em}.popover.top>.arrow{bottom:-10.0625em;left:50%;margin-left:-10.0625em;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:0.0625em;margin-left:-0.625em;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-10.0625em;margin-top:-10.0625em;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-0.625em;left:0.0625em;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-10.0625em;left:50%;margin-left:-10.0625em;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:0.0625em;margin-left:-0.625em;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-10.0625em;margin-top:-10.0625em;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:0.0625em;bottom:-0.625em;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:62.5em;perspective:62.5em}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:1.250em;color:#fff;text-align:center;text-shadow:0 0.0625em 0.125em rgba(0,0,0,.6);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-0.625em}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-0.625em}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-0.625em}.carousel-control .icon-next,.carousel-control .icon-prev{width:1.25em;height:1.25em;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:0.625em;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:0.625em;height:0.625em;margin:0.0625em;text-indent:-990.5625em;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:0.0625em solid #fff;border-radius:0.625em}.carousel-indicators .active{width:1.125em;height:1.125em;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:1.25em;left:15%;z-index:10;padding-top:1.25em;padding-bottom:1.25em;color:#fff;text-align:center;text-shadow:0 0.0625em 0.125em rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:1.875em;height:1.875em;margin-top:-0.9375em;font-size:1.875em}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-0.9375em}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-0.9375em}.carousel-caption{right:20%;left:20%;padding-bottom:1.875em}.carousel-indicators{bottom:1.25em}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:990.0625em){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:990.0625em){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:990.0625em){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:990.0625em){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:990.125em) and (max-width:1190.5625em){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:990.125em) and (max-width:1190.5625em){.visible-md-block{display:block!important}}@media (min-width:990.125em) and (max-width:1190.5625em){.visible-md-inline{display:inline!important}}@media (min-width:990.125em) and (max-width:1190.5625em){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:990.0625em){.hidden-sm{display:none!important}}@media (min-width:990.125em) and (max-width:1190.5625em){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
+/*# sourceMappingURL=bootstrap.min.css.map */
\ No newline at end of file
diff --git a/custom_announcement/app/controllers/.keep b/custom_announcement/app/controllers/.keep
new file mode 100644
index 0000000..e69de29
diff --git a/custom_announcement/app/controllers/admin/custom_announcements_controller.rb b/custom_announcement/app/controllers/admin/custom_announcements_controller.rb
new file mode 100644
index 0000000..1f722de
--- /dev/null
+++ b/custom_announcement/app/controllers/admin/custom_announcements_controller.rb
@@ -0,0 +1,554 @@
+# encoding: utf-8
+require 'rubyXL'
+class Admin::CustomAnnouncementsController < OrbitAdminController
+ include Admin::CustomAnnouncementsHelper
+ before_action ->(module_app = @app_title) { set_variables module_app }
+ before_action :set_custom_bulletin, only: [:edit, :destroy, :comment]
+ before_action :load_access_level, :load_settings
+ before_action :set_module_pages, only: [:edit,:new]
+ def set_module_pages
+ @module_pages = Page.where(:module => 'custom_announcement').collect{|p| [p.name,p.id] }
+ end
+ def initialize
+ super
+ @app_title = "custom_announcement"
+ end
+ def comment_hidden
+ b = CustomBulletinComment.find(params[:id]) rescue nil
+ if !b.nil?
+ b.is_hidden = !b.is_hidden
+ b.save
+ @table_feed_fields = ["custom_announcement.time", "custom_announcement.comment", "custom_announcement.account","ip","is_hidden"]
+ @comments = b.custom_bulletin.custom_bulletin_comments.reverse rescue []
+ render partial: 'comment'
+ end
+ end
+ def comment
+ @table_feed_fields = ["custom_announcement.time", "custom_announcement.comment", "custom_announcement.account","ip","is_hidden"]
+ @comments = @custom_bulletin.custom_bulletin_comments.reverse rescue []
+ end
+ def index
+ @custom_bulletin_configs = CustomBulletinConfig.all
+ CustomBulletin.remove_expired_status
+ @tags = @module_app.tags
+ @table_fields = [:status, :category, :title, :start_date, :end_date, "custom_announcement.comment", :last_modified]
+ @current_user = current_user
+ if CustomAnnouncementSetting.first.is_display_edit_only && !current_user.is_admin? && !current_user.is_manager?(@module_app)
+ current_user_is_sub_manager = !current_user.is_manager?(@module_app) && (current_user.is_sub_manager?(@module_app) || current_user.is_sub_manager_with_role?(@module_app)) rescue false
+ if current_user_is_sub_manager
+ @categories = current_user.approved_categories.select{|c| c.module_app_id == @module_app.id} rescue []
+ @filter_fields = filter_fields(@categories, @tags)
+ @custom_bulletins = CustomBulletin.where(:create_user_id=>current_user.id,:title.ne => "",:is_preview.in=>[false,nil])
+ .order_by(sort)
+ .with_categories(filters("category"))
+ .with_tags(filters("tag"))
+ .with_status(filters("status"))
+ else
+ @custom_bulletins = CustomBulletin.where(:uid=>nil)
+ @categories = @module_app.categories.enabled
+ @filter_fields = filter_fields(@categories, @tags)
+ end
+ else
+ @categories = @module_app.categories.enabled
+ @filter_fields = filter_fields(@categories, @tags)
+ @custom_bulletins = CustomBulletin.where(:title.ne => "",:is_preview.in=>[false,nil])
+ .order_by(sort)
+ .with_categories(filters("category"))
+ .with_tags(filters("tag"))
+ .with_status(filters("status"))
+ end
+ if params[:custom_module].present?
+ @custom_bulletins = @custom_bulletins.where(:custom_module=>params[:custom_module])
+ end
+ if params[:bind_uid].present?
+ @custom_bulletins = @custom_bulletins.where(:bind_uid=>params[:bind_uid])
+ end
+ @custom_bulletins = search_data(@custom_bulletins,[:title]).page(params[:page]).per(10)
+
+ if request.xhr?
+ render :partial => "index"
+ elsif params[:custom_module].blank? || params[:bind_uid].blank?
+ render "display_enable_modules"
+ end
+ end
+
+ def feed
+ @table_feed_fields = ["custom_announcement.feed_name", :tags, "custom_announcement.rssfeed", "custom_announcement.jsonfeed"]
+ @feeds = CustomBulletinFeed.all.asc(:created_at)
+
+ end
+ def generate_iframe_url
+ iframe_params = params.require(:iframe).permit!
+ uids = iframe_params['member_ids'].to_a.map{|m_id| MemberProfile.find(m_id).uid rescue nil}.select{|uid| !uid.nil?}
+ url_params = iframe_params.except(:member_ids)
+ url_params['uids'] = uids if uids != []
+ render :text => '/xhr/panel/custom_announcement/widget/sync_data?'+url_params.to_param
+ end
+ def settings
+ @setting = @custom_announcement_setting
+ roles = Role.all
+ @sorted_members = roles.inject({}) do |members,role|
+ members_for_role = role.member_profiles.select{|m| (m.user.nil? ? false : m.user.approved)}
+ members[role] = members_for_role
+ members
+ end
+ @sorted_members['no_role'] = MemberProfile.any_in(:role_ids=>[nil,[]]).select{|m| (m.user.nil? ? false : m.user.approved)}
+ @unapproved_members = User.where(:approved => false).map{|u| u.member_profile}
+ end
+
+ def import
+ end
+
+ def excel_format
+ respond_to do |format|
+ format.xlsx {
+ response.headers['Content-Disposition'] = 'attachment; filename="custom_announcement_import_format.xlsx"'
+ }
+ end
+ end
+
+ def export_excel
+ @custom_announcements = CustomBulletin.all.desc(:created_at)
+ respond_to do |format|
+ format.xlsx {
+ response.headers['Content-Disposition'] = 'attachment; filename="custom_announcement_export.xlsx"'
+ }
+ end
+ end
+
+ def import_from_xml
+ download_tmp_xml params["import_xml"]
+ import_from_tmp_xml File.read(File.join(Rails.root, "tmp", "ann_cc_ntu.xml"))
+ redirect_to admin_custom_announcements_path
+ end
+
+ def import
+ end
+
+
+ def import_from_wp
+ import_from_wordpress params["import_xml"].tempfile
+ redirect_to admin_custom_announcements_path
+ end
+
+ def importcustom_anns
+ workbook = RubyXL::Parser.parse(params["import_file"].tempfile)
+ categories = @module_app.categories.asc(:created_at).to_a
+ tags = @module_app.tags.asc(:created_at).to_a
+ sheet = workbook[0]
+ if sheet.count <= 503
+ sheet.each_with_index do |row, i|
+ next if i < 3
+ v = row.cells.first.value rescue nil
+ next if v.blank?
+ import_this_custom_announcement(row, categories, tags)
+ end
+ redirect_to admin_custom_announcements_path
+ else
+ redirect_to admin_custom_announcements_path(:error => "1")
+ end
+ end
+
+ def createsettings
+ setting = CustomAnnouncementSetting.new(settings_params)
+ setting.save
+ redirect_to admin_custom_announcement_settings_path
+ end
+
+ def updatesettings
+ setting = @custom_announcement_setting
+ ids = params['custom_announcement_setting']['custom_anns_status_settings'].to_a.collect do |i,v|
+ v['_id']
+ end.compact
+ CustomAnnsStatusSetting.where(:id.nin=>ids).destroy
+ setting.update_attributes(settings_params)
+ setting.save
+ redirect_to admin_custom_announcement_settings_path
+ end
+
+ def feedform
+ if params[:type] == "new"
+ @custom_announcement_feed = CustomBulletinFeed.new
+ render :partial => "feed_form"
+ else params[:type] == "edit"
+ @custom_announcement_feed = CustomBulletinFeed.find(params[:id])
+ render :partial => "edit_feed_form"
+ end
+ end
+
+ def createfeed
+ custom_announcement_feed = CustomBulletinFeed.new(feed_params)
+ custom_announcement_feed.save
+ create_feed_cache(nil,custom_announcement_feed)
+ feeds = CustomBulletinFeed.all.asc(:created_at)
+ render :partial => "feed", :collection => feeds
+ end
+
+ def updatefeed
+ ann_feed = CustomBulletinFeed.find(params[:id])
+ ann_feed.update_attributes(feed_params)
+ ann_feed.save
+ create_feed_cache(nil,ann_feed)
+ feeds = CustomBulletinFeed.all.asc(:created_at)
+ render :partial => "feed", :collection => feeds
+ end
+
+ def deletefeed
+ ann_feed = CustomBulletinFeed.find(params[:id])
+ ann_feed.destroy
+ feeds = CustomBulletinFeed.all.asc(:created_at)
+ render :partial => "feed", :collection => feeds
+ end
+
+ def new
+ @tags = @module_app.tags
+ @statuses = []
+ @custom_bulletin = CustomBulletin.new
+ @custom_bulletin.email_sentdate = Time.now
+ @reach_limit = @custom_bulletin.check_status_limit(current_user,true)
+ if defined? Calendar
+ categories = user_authenticated_categories rescue ['all']
+ if categories.first == "all"
+ @calendar_categories = CalendarType.all
+ else
+ @calendar_categories = CalendarType.where(:category_id.in => categories) rescue []
+ end
+ end
+ end
+
+ def create
+ bps = custom_bulletin_params
+ custom_bulletin = CustomBulletin.new(bps)
+ if !bps['custom_bulletin_links_attributes'].nil?
+ bps['custom_bulletin_links_attributes'].each do |idx,link|
+ bps['custom_bulletin_links_attributes'].delete(idx.to_s) if link['url'].blank?
+ end
+ end
+ if((!CustomAnnouncementSetting.first.only_manager_can_edit_status) || (CustomAnnouncementSetting.first.only_manager_can_edit_status && (@current_user.is_admin? || @current_user.is_manager?(@module_app))) )
+ if bps[:is_top] == "1" && !CustomAnnouncementSetting.check_limit_for_user(custom_bulletin.create_user_id, custom_bulletin.id)
+ bps[:is_top] = "0"
+ bps[:top_end_date] = nil
+ end
+ else
+ bps[:is_top] = false
+ bps[:is_hot] = false
+ bps[:is_hidden] = false
+ end
+
+ if !defined?(Calendar).nil?
+ bps = update_calendar(bps,custom_bulletin)
+ end
+ custom_bulletin.create_user_id = current_user.id
+ custom_bulletin.update_user_id = current_user.id
+ if CustomAnnouncementSetting.is_pro?
+ if user_can_approve?
+ custom_bulletin.approved = true
+ else
+ send_notification_mail_to_managers(custom_bulletin,"approval",I18n.locale)
+ end
+ else
+ custom_bulletin.approved = true
+ end
+
+ custom_bulletin.save
+ build_email(custom_bulletin,I18n.locale)
+ create_feed_cache(custom_bulletin)
+ if bps[:custom_module].present?
+ redirect_to admin_custom_announcements_path + "/#{bps[:custom_module]}#{bps[:bind_uid].present? ? ('-'+bps[:bind_uid]) : ''}"
+ else
+ redirect_to admin_custom_announcements_path
+ end
+ end
+
+ def approve_custom_bulletin
+ id = params[:id]
+ custom_bulletin = CustomBulletin.find(id)
+ if params["approved"] == "true"
+ custom_bulletin.approved = true
+ custom_bulletin.rejected = false
+ custom_bulletin.reapproval = false
+ else
+ custom_bulletin.rejected = true
+ custom_bulletin.reapproval = false
+ custom_bulletin.rejection_reason = params["reason"]
+ send_rejection_email(custom_bulletin,I18n.locale)
+ end
+ custom_bulletin.save
+ create_feed_cache(custom_bulletin)
+ redirect_to admin_custom_announcements_path
+ end
+
+ def edit
+ if can_edit_or_delete?(@custom_bulletin)
+ @reach_limit = @custom_bulletin.check_status_limit(current_user,true)
+ @tags = @module_app.tags
+ @categories = @module_app.categories.enabled
+ if defined? Calendar
+ categories = user_authenticated_categories rescue ['all']
+ if categories.first == "all"
+ @calendar_categories = CalendarType.all
+ else
+ @calendar_categories = CalendarType.where(:category_id.in => categories) rescue []
+ end
+ end
+ @statuses = []
+ @custom_bulletin.email_sentdate = Time.now if @custom_bulletin.email_sent == false
+ else
+ render_401
+ end
+ end
+
+ def update
+ uid = params[:id].split('-').last
+ custom_bulletin = CustomBulletin.find_by(:uid=>uid)
+ bps = custom_bulletin_params
+ bps[:tags] = bps[:tags].blank? ? [] : bps[:tags]
+ bps[:email_member_ids] = bps[:email_member_ids].blank? ? [] : bps[:email_member_ids]
+
+ if !bps['custom_bulletin_links_attributes'].nil?
+ bps['custom_bulletin_links_attributes'].each do |idx,link|
+ bps['custom_bulletin_links_attributes'].delete(idx.to_s) if link['url'].blank?
+ end
+ end
+ if((!CustomAnnouncementSetting.first.only_manager_can_edit_status) || (CustomAnnouncementSetting.first.only_manager_can_edit_status && (@current_user.is_admin? || @current_user.is_manager?(@module_app))) )
+ if bps[:is_top] == "1" && !CustomAnnouncementSetting.check_limit_for_user(custom_bulletin.create_user_id, custom_bulletin.id)
+ bps[:is_top] = "0"
+ bps[:top_end_date] = nil
+ end
+ else
+ bps[:is_top] = custom_bulletin.is_top
+ bps[:is_hot] = custom_bulletin.is_hot
+ bps[:is_hidden] = custom_bulletin.is_hidden
+ end
+ if !defined?(Calendar).nil?
+ bps = update_calendar(bps,custom_bulletin)
+ end
+ custom_bulletin.update_attributes(bps)
+ custom_bulletin.update_user_id = current_user.id
+ if custom_bulletin.rejected
+ custom_bulletin.reapproval = true
+ custom_bulletin.save
+ send_notification_mail_to_managers(custom_bulletin,"reapproval",I18n.locale)
+ else
+ custom_bulletin.save
+ end
+ build_email(custom_bulletin,I18n.locale)
+ create_feed_cache(custom_bulletin)
+ custom_module = custom_bulletin.custom_module
+ now_custom_bulletin_page = CustomBulletin.where(:custom_module=>custom_module,:title.ne => "",:is_preview.in=>[false,nil])
+ .order_by(sort).map(&:id).map.with_index.select{|v,i| v==custom_bulletin.id}[0][1] rescue nil
+ now_custom_bulletin_page = now_custom_bulletin_page.nil? ? 0 : ((now_custom_bulletin_page+1).to_f/10).ceil
+ bind_uid = custom_bulletin.bind_uid
+ if custom_module.present?
+ redirect_to admin_custom_announcements_path + "/#{custom_module}#{bind_uid.present? ? ('-'+bind_uid) : ''}?page=#{now_custom_bulletin_page}"
+ else
+ redirect_to admin_custom_announcements_path(:page=>now_custom_bulletin_page)
+ end
+ end
+
+ def destroy
+ custom_module = @custom_bulletin.custom_module
+ bind_uid = @custom_bulletin.bind_uid
+ @custom_bulletin.destroy
+ if custom_module.present?
+ redirect_to admin_custom_announcements_path + "/#{custom_module}#{bind_uid.present? ? ('-'+bind_uid) : ''}"
+ else
+ redirect_to admin_custom_announcements_path
+ end
+ end
+
+ def delete
+ if params[:ids]
+ CustomBulletin.any_in(:uid => params[:ids]).destroy_all
+ end
+ redirect_to admin_custom_announcements_path
+ end
+
+ def preview
+ if params['preview_type'].eql?('edit')
+ custom_bulletin_data = custom_bulletin_params
+ org_custom_bulletin = CustomBulletin.find(params['custom_bulletin_id'])
+ custom_bulletin = org_custom_bulletin.clone
+ custom_bulletin.generate_uid
+ custom_bulletin.custom_bulletin_files = []
+ custom_bulletin.custom_bulletin_links = []
+ if custom_bulletin_data['image'].blank?
+ custom_bulletin.image = org_custom_bulletin.image
+ end
+
+ if !custom_bulletin_data['custom_bulletin_files_attributes'].blank?
+ custom_bulletin_data['custom_bulletin_files_attributes'].each do |key, custom_bulletin_file|
+ next if !custom_bulletin_file['_destroy'].blank?
+ file = nil
+ if custom_bulletin_file['id'].blank?
+ file = CustomBulletinFile.new(custom_bulletin_file)
+ file.custom_bulletin_id = custom_bulletin.id
+ file.save
+ else
+ org_file = CustomBulletinFile.find(custom_bulletin_file['id'])
+ file = org_file.clone
+ file.custom_bulletin_id = custom_bulletin.id
+ file.file = org_file.file
+ custom_bulletin_file.delete('id')
+ custom_bulletin_file.delete('_destroy')
+ file.update_attributes(custom_bulletin_file)
+ end
+
+ file.save
+ custom_bulletin.custom_bulletin_files << file
+ end
+ end
+
+ if !custom_bulletin_data['custom_bulletin_links_attributes'].blank?
+ custom_bulletin_data['custom_bulletin_links_attributes'].each do |key, custom_bulletin_link|
+ next if !custom_bulletin_link['_destroy'].blank?
+
+ if custom_bulletin_link['id'].blank?
+ link = CustomBulletinLink.new(custom_bulletin_link)
+ link.custom_bulletin_id = custom_bulletin.id
+ else
+ link = CustomBulletinLink.find(custom_bulletin_link['id']).clone
+ link.custom_bulletin_id = custom_bulletin.id
+ custom_bulletin_link.delete('id')
+ custom_bulletin_link.delete('_destroy')
+ link.update_attributes(custom_bulletin_link)
+ end
+
+ link.save
+ custom_bulletin.custom_bulletin_links << link
+ end
+ end
+
+ custom_bulletin_data.delete('custom_bulletin_files_attributes')
+ custom_bulletin_data.delete('custom_bulletin_links_attributes')
+ custom_bulletin.update_attributes(custom_bulletin_data)
+ else
+ custom_bulletin = CustomBulletin.new(custom_bulletin_params)
+ end
+
+ custom_bulletin.is_preview = true
+ custom_bulletin.save
+ create_feed_cache(custom_bulletin)
+ render :text=>page_for_custom_bulletin(custom_bulletin) + "?preview=true"
+ end
+
+ def destroy_preview
+ custom_bulletin = CustomBulletin.find_by(:uid=>params['uid'])
+ if custom_bulletin.is_preview
+ custom_bulletin.destroy
+ end
+ render :json=>{'destroy'=>custom_bulletin.id.to_s}
+ end
+
+ def build_email(custom_bulletin,locale)
+ if custom_bulletin.email_sent and !custom_bulletin.email_addresses.blank?
+ if custom_bulletin.email.nil?
+ email = Email.new
+ email.save
+ email.deliver rescue nil
+ custom_bulletin.email_id = email.id
+ custom_bulletin.save
+ end
+
+ is_sent = custom_bulletin.email.is_sent
+ is_sent = !params[:resend_mail].eql?("true") if !params[:resend_mail].blank?
+ doc = Nokogiri::HTML(custom_bulletin.title_translations[locale])
+ title = doc.text.empty? ? 'no content' : doc.text
+
+ custom_bulletin.email.update_attributes(
+ :create_user=>current_user,
+ :mail_sentdate=>custom_bulletin.email_sentdate,
+ :module_app=>@module_app,
+ :mail_lang => locale,
+ :mail_to=>custom_bulletin.email_addresses,
+ :mail_subject=>title,
+ :template=>'custom_announcements/email',
+ :template_data=>{
+ "host" => request.host_with_port,
+ "title" => title,
+ "url" => page_for_custom_bulletin(custom_bulletin)
+ },
+ :is_sent=>is_sent
+ )
+ custom_bulletin.email.deliver
+ else
+ custom_bulletin.email.destroy if !custom_bulletin.email.nil?
+ end
+ end
+
+ private
+
+ def load_settings
+ @custom_announcement_setting = CustomAnnouncementSetting.first rescue nil
+ if @custom_announcement_setting.nil?
+ @custom_announcement_setting = CustomAnnouncementSetting.create
+ end
+ end
+
+ def set_custom_bulletin
+ @custom_bulletin = CustomBulletin.find(params[:id])
+ end
+ def custom_bulletin_config_params
+ params.require(:custom_bulletin_config).permit!
+ end
+ def custom_bulletin_params
+ params[:custom_bulletin][:email_sent] = params[:custom_bulletin][:email_sent].nil? ? 0 : params[:custom_bulletin][:email_sent]
+ params.require(:custom_bulletin).permit!
+ end
+
+ def feed_params
+ params.require(:custom_bulletin_feed).permit!
+ end
+
+ def settings_params
+ params.require(:custom_announcement_setting).permit!
+ end
+ def update_calendar(bps,custom_bulletin)
+ if bps[:add_to_calendar] == '0' && !bps[:event_id].blank?
+ Event.find(bps[:event_id]).destroy rescue nil
+ bps[:event_id] = nil
+ elsif bps[:add_to_calendar] == '1'
+ event = Event.find(bps[:event_id]) rescue Event.new(create_user_id: current_user.id)
+ e_start = bps[:calendar_start_date].blank? ? bps[:postdate] : bps[:calendar_start_date]
+ e_start = Time.now.to_datetime if e_start.blank?
+ e_end = bps[:calendar_end_date].blank? ? bps[:deadline] : bps[:calendar_end_date]
+ #e_end = Time.now.to_datetime + 1.year if e_end.blank?
+ event.update_attributes(model_class: 'CustomBulletin',
+ module_key: 'custom_announcement',
+ model_cat: bps[:category_id],
+ model_tags: bps[:tags],
+ model_page_id: bps[:page_id],
+ model_id: custom_bulletin.id,start: e_start,
+ end: e_end,update_user_id: current_user.id,
+ all_day: bps[:calendar_all_day],
+ calendar_type_id: bps[:calendar_type_id],
+ title_translations: bps[:title_translations],
+ note_translations: bps[:subtitle_translations])
+ bps[:event_id] = event.id
+ end
+ bps
+ end
+ def create_feed_cache(custom_bulletin=nil,custom_bulletin_feed=nil)
+ if !custom_bulletin.nil?
+ CustomBulletinFeed.where(:tag_ids.in => Array(custom_bulletin.tag_ids).collect{|v| v.to_s}).each do |custom_bulletin_feed|
+ uid = custom_bulletin_feed.uid
+ uri = URI(request.protocol + request.host_with_port + "/xhr/custom_announcements/feed/#{uid}.json")
+ Thread.new do
+ res_net = Net::HTTP.start(uri.host, uri.port,:use_ssl => uri.scheme == 'https',open_timeout: 60,read_timeout: 60) do |http|
+ req = Net::HTTP::Get.new(uri)
+ http.request(req)
+ end
+ end
+ end
+ elsif !custom_bulletin_feed.nil?
+ uid = custom_bulletin_feed.uid
+ uri = URI(request.protocol + request.host_with_port + "/xhr/custom_announcements/feed/#{uid}.json")
+ Thread.new do
+ res_net = Net::HTTP.start(uri.host, uri.port,:use_ssl => uri.scheme == 'https',open_timeout: 60,read_timeout: 60) do |http|
+ req = Net::HTTP::Get.new(uri)
+ http.request(req)
+ end
+ end
+ end
+ end
+end
diff --git a/custom_announcement/app/controllers/custom_announcement_feeds_controller.rb b/custom_announcement/app/controllers/custom_announcement_feeds_controller.rb
new file mode 100644
index 0000000..8e42aca
--- /dev/null
+++ b/custom_announcement/app/controllers/custom_announcement_feeds_controller.rb
@@ -0,0 +1,159 @@
+require "rss"
+class CustomAnnouncementFeedsController < ApplicationController
+ include Admin::CustomAnnouncementsHelper
+ def feed
+ uid = params[:uid]
+ feed_cache = CustomBulletinFeedCache.where(uid: uid).first
+ custom_anns = ''
+ if feed_cache.nil?
+ CustomBulletinFeedCache.create(uid: uid,content: '')
+ Thread.new do
+ custom_anns = get_custom_announcements(uid).to_json
+ feed_cache = CustomBulletinFeedCache.where(uid: uid).first
+ if !feed_cache.nil?
+ feed_cache.update_attributes(content: custom_anns)
+ end
+ end
+ else
+ custom_anns = feed_cache.content
+ end
+ render :json => custom_anns
+ end
+
+ def rssfeed
+ uid = params[:uid]
+ @bf = CustomBulletinFeed.find_by(:uid => uid) rescue nil
+ if !@bf.nil?
+ tags = @bf.tag_ids
+ if !tags.empty?
+ @custom_announcements = CustomBulletin.can_display_and_sorted.is_approved.filter_by_tags(tags)
+ end
+ end
+ respond_to do |format|
+ format.html {redirect_to "/xhr/custom_announcements/rssfeed/#{@bf.uid}.rss"}
+ format.rss
+ end
+ end
+
+ def feeds
+ feeds = []
+ CustomBulletinFeed.all.each do |bf|
+ feed = {}
+ feed["title_translations"] = bf.title_translations
+ feed["uid"] = bf.uid
+ feed["url"] = "#{request.base_url}/xhr/custom_announcements/feed/#{bf.uid}"
+ feed["xml_url"] = "#{request.base_url}/xhr/custom_announcements/rssfeed/#{bf.uid}.rss"
+ feed["tags"] = []
+ bf.tag_ids.each do |t|
+ tag = Tag.find(t)
+ d = {}
+ d["name_translations"] = tag.name_translations
+ feed["tags"] << d
+ end
+ feeds << feed
+ end
+ render :json => {"feeds" => feeds}.to_json
+ end
+
+ private
+
+ def smart_convertor(text)
+ html_string = text
+ url = request.protocol + request.host_with_port
+ html_string = html_string.gsub(/img.*?src="(?=\/)(.*?)|a.*?href="(?=\/)(.*?)/i){|w| w+url}
+ html_string = html_string.gsub(/img.*?src="\.\.(?=\/)(.*?)|a.*?href="\.\.(?=\/)(.*?)/i){|w| w[0...-2]+url}
+ return html_string
+ end
+
+ def get_custom_announcements(uid)
+ bf = CustomBulletinFeed.find_by(:uid => uid) rescue nil
+ startdt = params[:start]
+ enddt = params[:end]
+ dt = params[:date]
+ if !bf.nil?
+ tags = bf.tag_ids
+ if !tags.empty?
+ if !dt.nil?
+ dt = DateTime.parse(dt)
+ dtt = dt + 1.day
+ custom_announcements = CustomBulletin.where(:postdate.gt => dt, :postdate.lt => dtt).can_display_and_sorted.is_approved.filter_by_tags(tags)
+ elsif !startdt.nil? && enddt.nil?
+ startdt = DateTime.parse(startdt)
+ enddt = DateTime.now
+ custom_announcements = CustomBulletin.where(:postdate.gt => startdt, :postdate.lt => enddt).can_display_and_sorted.is_approved.filter_by_tags(tags)
+ elsif !startdt.nil? && !enddt.nil?
+ startdt = DateTime.parse(startdt)
+ enddt = DateTime.parse(enddt) + 1.day
+ custom_announcements = CustomBulletin.where(:postdate.gt => startdt, :postdate.lt => enddt).can_display_and_sorted.is_approved.filter_by_tags(tags)
+ else
+ custom_announcements = CustomBulletin.all.can_display_and_sorted.is_approved.filter_by_tags(tags)
+ end
+ else
+ custom_announcements = []
+ end
+ end
+ all_custom_anns = []
+ tag_names = []
+ tag_ids = []
+ custom_announcements.each do |custom_anns|
+ user = User.find(custom_anns.create_user_id) rescue nil
+ if !user.nil?
+ author = user.member_profile && user.member_profile.name == "" ? user.user_name : user.member_profile.name
+ else
+ author = ""
+ end
+ a = {}
+ a["id"] = custom_anns.uid
+ a["title_translations"] = custom_anns.title_translations
+ a["subtitle_translations"] = custom_anns.subtitle_translations
+ a["text_translations"] = {}
+ a["text_translations"]["en"] = smart_convertor(custom_anns.text_translations["en"]) if !custom_anns.text_translations["en"].blank?
+ a["text_translations"]["zh_tw"] = smart_convertor(custom_anns.text_translations["zh_tw"]) if !custom_anns.text_translations["zh_tw"].blank?
+ a["postdate"] = custom_anns.postdate
+ a["image_description_translations"] = custom_anns.image_description_translations
+ a["image"] = {}
+ a["display_img"] = custom_anns.display_img
+ a["image"]["original"] = ("#{request.base_url}" + custom_anns.image.url rescue "")
+ a["image"]["thumb"] = ("#{request.base_url}" + custom_anns.image.thumb.url rescue "")
+ a["image"]["mobile"] = ("#{request.base_url}" + custom_anns.image.mobile.url rescue "")
+ a["tags"] = []
+ a["author"] = author
+ a["params"] = custom_anns.to_param
+ a["subtitle_ann"] = custom_anns.subtitle if custom_anns.display_subtitle?
+ a["custom_bulletin_links"] = []
+ a["custom_bulletin_files"] = []
+ a["custom_bulletin_carousel_images"] = custom_anns.custom_bulletin_carousel_images.map{|image| {"src"=>"#{request.base_url}" + image.file.url,"description"=>image.description.to_s,"description_text"=>image.description_text }}
+ custom_anns.tags.each do |tag|
+ if !tag_ids.include?(tag.id.to_s)
+ tag_ids << tag.id.to_s
+ tag_names << {"name_translations" => tag.name_translations}
+ end
+ a["tags"] << {"name_translations" => tag.name_translations}
+ end
+ custom_anns.custom_bulletin_links.each do |bl|
+ b = {}
+ b["url"] = bl.url
+ b["title_translations"] = bl.title_translations
+ a["custom_bulletin_links"] << b
+ end
+ custom_anns.custom_bulletin_files.each do |bf|
+ b = {}
+ b["description_translations"] = bf.description_translations
+ b["title_translations"] = bf.title_translations
+ b["url"] = ("#{request.base_url}" + bf.file.url rescue "")
+ a["custom_bulletin_files"] << b
+ end
+ all_custom_anns << a
+ end
+ {
+ "custom_announcements" => all_custom_anns,
+ "tags" => tag_names
+ }
+ end
+end
+
+
+
+
+
+
diff --git a/custom_announcement/app/controllers/custom_announcements_controller.rb b/custom_announcement/app/controllers/custom_announcements_controller.rb
new file mode 100644
index 0000000..b98a133
--- /dev/null
+++ b/custom_announcement/app/controllers/custom_announcements_controller.rb
@@ -0,0 +1,809 @@
+class CustomAnnouncementsController < ApplicationController
+ include CustomAnnouncementsHelper
+ def comment
+ @custom_bulletin = CustomBulletin.where(:uid=>params[:uid]).first
+ comment_val = params['comment']
+ if !@custom_bulletin.nil? && @custom_bulletin.open_comment_for_user(OrbitHelper.current_user) && !comment_val.blank?
+ account_id = OrbitHelper.current_user.member_profile.id.to_s rescue 'visitor'
+ b = CustomBulletinComment.new(ip: request.remote_ip,comment: comment_val,account_id: account_id)
+ b.custom_bulletin_id = @custom_bulletin.id
+ b.save
+ render :json => {}
+ end
+ end
+ def index
+ CustomBulletin.remove_expired_status
+ sorted,total_pages = get_sorted_annc
+ sorted = [] if sorted.nil?
+ custom_anns = sorted.collect do |a|
+ if a["source-site"].blank?
+ statuses = a.statuses_with_classname.collect do |status|
+ {
+ "status" => status["name"],
+ "status-class" => "status-#{status['classname']}"
+ }
+ end
+ locale = OrbitHelper.get_site_locale.to_s
+ files = a.custom_bulletin_files.map{|file| { "file_url" => file.file.url + "\" title=\"#{file.file_title}", "file_title" => (file.title.blank? ? File.basename(file.file.path) : file.title rescue '') } if file.enabled_for?(locale) } rescue []
+ files.delete(nil)
+ links = a.custom_bulletin_links.map{|link| { "link_url" => link.url, "link_title" => (link.title.blank? ? link.url : link.title) } } rescue []
+ author = User.find(a.create_user_id).member_profile.name rescue ""
+ desc = a.image_description
+ desc = (desc.blank? ? "custom_announcement image" : desc)
+ link_to_show = a.is_external_link ? a.external_link : OrbitHelper.url_to_show(a.to_param)
+ target = a.is_external_link ? "_blank" : "_self"
+ doc = Nokogiri::HTML(a.title)
+ title = doc.text.empty? ? 'no content' : doc.text
+ {
+ "department" => author,
+ "custom_bulletin_links" => links,
+ "custom_bulletin_files" => files,
+ "title" => a.title,
+ "source-site" => "",
+ "source-site-title" => "",
+ "source-site-link" => "",
+ "subtitle" => a.subtitle,
+ "statuses" => statuses,
+ "category" => (a.category.title rescue ''),
+ "postdate" => a.postdate,
+ "author" => author,
+ "is_top" => (a.is_top? ? 1 : 0),
+ "link_to_show" => link_to_show+"\" title=\"#{title}\"",
+ "target" => target,
+ "img_src" => a.image.thumb.url || "/assets/custom_announcement-default.jpg",
+ "img_description" => desc,
+ "more" => t(:more_plus),
+ "view_count" => a.view_count
+ }
+ else
+ a
+ end
+ end
+ #If no data , hide title&table
+ if sorted.count == 0
+ display = "hide"
+ end
+ # custom_anns = custom_anns.concat(feeds_custom_anns)
+ # total_pages = custom_announcements.total_pages
+ params = OrbitHelper.params
+ page = Page.where(url:params['url']).first
+ @annc_page_title = nil
+ if (params['category'] != page.categories rescue true)
+ @annc_page_title = Category.find(Array(params['category']).first).title rescue nil
+ end
+ if (params["tags"] != page.tags && !params["tags"].blank? && params["tags"].count == 1 && params["tags"][0] != "all" rescue true)
+ @annc_page_title = Tag.find(Array(params['tags']).first).name rescue nil
+ end
+ {
+ "custom_announcements" => custom_anns,
+ "extras" => {
+ "widget-title" =>t('custom_announcement.custom_announcement'),
+ "title-head" => t('custom_announcement.table.title'),
+ "date-head" => t('custom_announcement.table.date'),
+ "status-head" => t('custom_announcement.table.status'),
+ "author-head" => t('custom_announcement.table.author'),
+ "subtitle-head" => t('custom_announcement.table.sub_title'),
+ "category-head" => t('custom_announcement.table.category'),
+ "link-head" => t('custom_announcement.table.link'),
+ "file-head" => t('custom_announcement.table.file'),
+ "view-count-head" => t('custom_announcement.table.view_count'),
+ "display" => display,
+ "department-head" => t('custom_announcement.table.department'),
+ "page-title" => @annc_page_title
+ },
+ "total_pages" => total_pages
+ }
+
+ end
+ def self.custom_widget_data
+ @custom_configs = CustomBulletinConfig.all.to_a
+ ac = ActionController::Base.new
+ ac.render_to_string("custom_announcements/custom_widget_data",:locals=>{:@custom_data_field=>@custom_data_field,:@custom_configs=>@custom_configs,:@field_name=>@field_name})
+ end
+ def random_custom_announcement_widget
+ pack_data(true)
+ end
+
+ def widget
+ pack_data()
+ end
+
+ def tag_cloud
+ ma = ModuleApp.where(:key => "custom_announcement").first
+ temp = []
+ ma.tags.each do |tag|
+ t1 = tag.taggings.collect{|t| t.taggable_id.to_s}
+ count = CustomBulletin.where(:id.in => t1).can_display_and_sorted.count
+ temp << {
+ "tag-name" => tag.name,
+ "count" => count,
+ "tag-url" => OrbitHelper.widget_more_url + "?tags[]=" + tag.id.to_s
+ }
+ end
+ max = temp.max_by{|t| t["count"]}["count"]
+ tags = []
+ temp.each do |tag|
+ if tag["count"] > 0
+ percent = (tag["count"] * 100) / max
+ font_size = ((percent / 10).round) + 16
+ tag["font-size"] = font_size
+ tags << tag
+ end
+ end
+ {
+ "tags" => tags,
+ "extras" => {}
+ }
+ end
+
+ def pack_data(is_random=false)
+ cats = OrbitHelper.widget_categories || []
+ tags = OrbitHelper.widget_tags || []
+ subpart = OrbitHelper.get_current_widget
+ custom_data_field = subpart.custom_data_field
+ get_tabs_option
+ custom_anns = []
+ use_tag = false
+ if @tab_option == 0
+ custom_anns = get_anncs_for_pack_data(cats,tags,nil,is_random)
+ else
+ if cats.count != 1 || tags == ["all"]
+ cats.each do |cat|
+ custom_anns = custom_anns + get_anncs_for_pack_data([cat],tags,'')
+ end
+ else
+ tags.each do |tag|
+ custom_anns = custom_anns + get_anncs_for_pack_data(cats,[tag],tag)
+ end
+ use_tag = true
+ end
+ end
+ mp = (custom_anns[0]["img_src"] rescue "")
+ mpd = (custom_anns[0]["img_description"] rescue "")
+ if @tab_option == 1
+ if use_tag
+ tags = ["all"] + tags
+ else
+ cats = ["all"] + cats
+ end
+ custom_anns = custom_anns.sort{|v1,v2| v2["postdate"]<=>v1["postdate"]}
+ end
+ cats = cats.uniq
+ tags = tags.uniq
+ tags_translations = tags.map{|tag_id|
+ if tag_id == "all"
+ t = I18n.t(:all)
+ else
+ t = Tag.find(tag_id).name rescue ""
+ end
+ [tag_id,t]
+ }.to_h
+ cats_translations = cats.map{|cat_id|
+ if cat_id == "all"
+ t = I18n.t(:all)
+ else
+ t = Category.find(cat_id).title rescue ""
+ end
+ [cat_id,t]
+ }.to_h
+ cats_relations = cats_translations.map{|cat_id,t|
+ if cat_id == "all"
+ t = "all"
+ end
+ [cat_id,t]
+ }.to_h
+ page = OrbitHelper.page.find_page(:page_id=> subpart.read_more_page_id).first rescue nil
+ page = OrbitHelper.page.find_page(:module => "custom_announcement").first rescue nil if page.nil?
+ all_cats = cats.dup
+ all_cats.delete "all"
+ if all_cats.count == 0
+ all_cats = ["all"]
+ end
+ all_tags = tags.dup
+ all_tags.delete "all"
+ if all_tags.count == 0
+ all_tags = ["all"]
+ end
+ max_all_count = [OrbitHelper.widget_data_count,custom_anns.count].min
+ if @tab_option != 0
+ OrbitHelper.set_widget_title(OrbitHelper.widget_title +
+ "
" +
+ "" +
+ (use_tag ? tags.map.with_index{|tag,i|
+ read_more_url = "/#{I18n.locale.to_s + page.url}" rescue ""
+ read_more_url = read_more_url + "?" + {"category"=>all_cats,"tags"=>(tag == 'all' ? all_tags : [tag])}.to_param if read_more_url != ""
+ read_more_text = I18n.t("custom_announcement.more")
+ if tag != "all"
+ begin
+ read_more_text = I18n.t("custom_announcement.more_") + tags_translations[tag]
+ rescue
+ nil
+ end
+ end
+ "#{tags_translations[tag]} "
+ }.join("") : cats.map.with_index{|cat,i|
+ read_more_url = "/#{I18n.locale.to_s + page.url}" rescue ""
+ read_more_url = read_more_url + "?" + {"category"=>(cat == 'all' ? all_cats : cat)}.to_param if read_more_url != ""
+ read_more_text = I18n.t("custom_announcement.more")
+ if cat != "all"
+ begin
+ read_more_text = I18n.t("custom_announcement.more_") + cats_translations[cat]
+ rescue
+ nil
+ end
+ end
+ "#{cats_translations[cat]} "
+ }.join("")) +
+ " "
+ )
+ filter_attr = (use_tag ? 'data-tags' : 'data-category')
+ extra_html = '
+
+
+
+ '
+ else
+ read_more_text = I18n.t("custom_announcement.more")
+ if cats.count == 1 && cats[0] != "all"
+ begin
+ read_more_text = I18n.t("custom_announcement.more_") + ((all_tags.count == 1 && all_tags[0] != 'all') ? tags_translations[tags[0]] : cats_translations[cats[0]])
+ rescue
+ nil
+ end
+ end
+ extra_html = "
+
+ "
+ end
+ if (@read_more_option != 0 rescue false)
+ extra_html += "
+
+ "
+ end
+ extra_after_html = ""
+ if @all_setting_option == 0 && @tab_option == 1
+ extra_after_html = "
+
+ "
+ end
+ if @tab_option == 0
+ read_more_url = "/#{I18n.locale.to_s + page.get_url}" rescue ""
+ read_more_url = read_more_url + "?" + {"category"=>all_cats,"tags"=>all_tags}.to_param if read_more_url != ""
+ extra_after_html += "
+
+ "
+ end
+ {
+ "custom_announcements" => custom_anns,
+ "extras" => {
+ "more_url"=>OrbitHelper.widget_more_url,
+ "main_picture" => mp,
+ "main_picture_description" => mpd,
+ "title-head" => t('custom_announcement.table.title'),
+ "date-head" => t('custom_announcement.table.date'),
+ "author-head" => t('custom_announcement.table.author'),
+ "status-head" => t('custom_announcement.table.status'),
+ "subtitle-head" => t('custom_announcement.table.sub_title'),
+ "category-head" => t('custom_announcement.table.category'),
+ "link-head" => t('custom_announcement.table.link'),
+ "file-head" => t('custom_announcement.table.file'),
+ "read_more" => read_more_url,
+ "read_more_text" => "read more",
+ "extra_brefore_html" => extra_html,
+ "extra_after_html" => extra_after_html
+ }
+ }
+ end
+ def get_tabs_option
+ subpart = OrbitHelper.get_current_widget
+ tab_options = ["not_enable_tabs","enable_tabs_with_categories_include_all","enable_tabs_with_categories"]
+ read_more_options = ['default','upper_left','lower_left','upper_right','lower_right']
+ all_setting_options = ['the_same_as_data_count','display_all_in_other_tabs']
+ @tab_option = 0
+ @read_more_option = 0
+ @all_setting_option = 0
+ if subpart.methods.include? 'select_options'.to_sym
+ ModuleApp.all.select{|tmp| tmp.key.to_s=='custom_announcement'}.each do |modile_app|
+ @show_options = modile_app.show_options rescue nil
+ end
+ subpart.select_options.each do |select_option|
+ if !(@show_options.nil?) && select_option.field_name == @show_options.keys[1].to_s
+ value = YAML.load(select_option.value)
+ tmp = value[:en]
+ I18n.with_locale(:en) do
+ tab_options.each_with_index do |option,i|
+ if tmp == t("custom_announcement.#{option}")
+ @tab_option = i
+ break
+ end
+ end
+ end
+ end
+ if !(@show_options.nil?) && select_option.field_name == @show_options.keys[2].to_s
+ value = YAML.load(select_option.value)
+ tmp = value[:en]
+ I18n.with_locale(:en) do
+ read_more_options.each_with_index do |option,i|
+ if tmp == t("custom_announcement.#{option}")
+ @read_more_option = i
+ break
+ end
+ end
+ end
+ end
+ if !(@show_options.nil?) && select_option.field_name == @show_options.keys[3].to_s
+ value = YAML.load(select_option.value)
+ tmp = value[:en]
+ I18n.with_locale(:en) do
+ all_setting_options.each_with_index do |option,i|
+ if tmp == t("custom_announcement.#{option}")
+ @all_setting_option = i
+ break
+ end
+ end
+ end
+ end
+ end
+ end
+ end
+ def get_anncs_for_pack_data(cats,tags,set_tags=nil,is_random = false)
+ subpart = OrbitHelper.get_current_widget
+ custom_data_field = subpart.custom_data_field
+ widget_data_count = OrbitHelper.widget_data_count
+ custom_anns_cache = CustomAnnsCache.where(parent_id: subpart.id.to_s + cats.to_s + tags.to_s + custom_data_field.to_s + widget_data_count.to_s,locale: I18n.locale.to_s)
+ set_image_version_for_widget()
+ devide_flag = (!(defined? SiteFeed).nil?)
+ if custom_anns_cache.count != 1 || is_random
+ CustomBulletin.remove_expired_status
+ uid = OrbitHelper.params[:uid] rescue ""
+ sorted_custom_anns = CustomBulletin.where(:title.nin => ["",nil],:is_preview.in=>[false,nil], :uid.ne => uid)
+ .can_display_and_sorted.is_approved
+ .filter_by_widget_categories(cats,false).filter_by_tags(tags)
+ if custom_data_field
+ if (custom_data_field[:bind_module_app] rescue false)
+ sorted_custom_anns = sorted_custom_anns.where(:custom_module=>custom_data_field[:bind_module_app])
+ end
+ if (custom_data_field[:bind_uid] rescue false)
+ sorted_custom_anns = sorted_custom_anns.where(:bind_uid=>custom_data_field[:bind_uid])
+ end
+ end
+ if !is_random
+ sorted_custom_anns = sorted_custom_anns.limit(widget_data_count)
+ if custom_anns_cache.count > 1
+ custom_anns_cache.destroy
+ end
+ if devide_flag
+ now_custom_anns = sorted_custom_anns.to_a
+ top_custom_anns = now_custom_anns.select{|v| v.is_top}.map{|v| data_to_human_type(v,set_tags)}
+ not_top_custom_anns = now_custom_anns.select{|v| !v.is_top}.map{|v| data_to_human_type(v,set_tags)}
+ CustomAnnsCache.create(parent_id: subpart.id.to_s + cats.to_s + tags.to_s + custom_data_field.to_s + widget_data_count.to_s,locale: I18n.locale.to_s,filter_result: {top: top_custom_anns,not_top: not_top_custom_anns})
+ else
+ custom_anns = sorted_custom_anns.map{|v| data_to_human_type(v,set_tags)}
+ CustomAnnsCache.create(parent_id: subpart.id.to_s + cats.to_s + tags.to_s + custom_data_field.to_s + widget_data_count.to_s,locale: I18n.locale.to_s,filter_result: custom_anns)
+ end
+ else
+ if devide_flag
+ custom_anns = sorted_custom_anns.sample(widget_data_count)
+ top_custom_anns = custom_anns.select{|v| v.is_top}.map{|v| data_to_human_type(v,set_tags)}
+ not_top_custom_anns = custom_anns.select{|v| !v.is_top}.map{|v| data_to_human_type(v,set_tags)}
+ else
+ custom_anns = sorted_custom_anns.sample(widget_data_count).map{|v| data_to_human_type(v,set_tags)}
+ end
+ end
+ elsif devide_flag
+ now_custom_anns = custom_anns_cache.first.filter_result
+ top_custom_anns = now_custom_anns[:top]
+ not_top_custom_anns = now_custom_anns[:not_top]
+ else
+ custom_anns = custom_anns_cache.first.filter_result
+ end
+ if devide_flag
+ rest_count = widget_data_count - top_custom_anns.count
+ if rest_count <= 0
+ custom_anns = top_custom_anns
+ else
+ feeds_custom_anns = get_feed_custom_announcements("widget")
+ top_custom_anns = top_custom_anns + feeds_custom_anns.select{|v| v['is_top']}
+ top_custom_anns = top_custom_anns.sort{|v1,v2| v2["postdate"]<=>v1["postdate"]}
+ rest_all_custom_anns = feeds_custom_anns.select{|v| v['is_top'] != true} + not_top_custom_anns.take(rest_count)
+ rest_custom_anns = rest_all_custom_anns.sort{|v1,v2| v2["postdate"]<=>v1["postdate"]}.take(rest_count)
+ custom_anns = (top_custom_anns + rest_custom_anns).take(widget_data_count)
+ end
+ end
+ custom_anns.each{|a| a["postdate"] = a["postdate"].in_time_zone(Time.zone.utc_offset / 3600).strftime('%Y-%m-%d %H:%M') rescue nil }
+ custom_anns
+ end
+ def get_file
+ @url = request.path
+ begin
+ file = CustomBulletinFile.find(params[:id])
+ @url = file.file.url
+ if file.can_access?(OrbitHelper.current_user)
+ @path = file.file.path rescue ""
+ @filename = @path.split("/").last
+ @ext = @path.split("/").last.to_s.split(".").last
+ if @ext == "png" || @ext == "jpg" || @ext == "bmp" || @ext == "pdf"
+ render "archives/download_file.html",:layout=>false
+ else
+ send_file(@path)
+ end
+ else
+ render :file => "#{Rails.root}/app/views/errors/403.html", :layout => false, :status => :not_found, :content_type => 'text/html'
+ end
+ rescue
+ render :file => "#{Rails.root}/app/views/errors/404.html", :layout => false, :status => :not_found, :content_type => 'text/html'
+ end
+ end
+ def show_local_custom_announcement(uid, is_preview)
+ locale = OrbitHelper.get_site_locale.to_s
+ if is_preview
+ custom_announcement = CustomBulletin.where(:uid => uid).first
+ else
+ custom_announcement = CustomBulletin.can_display_and_sorted.where(:uid => uid).first
+ end
+ @custom_bulletin = custom_announcement
+ custom_announcement = CustomBulletin.where(:uid => uid).first if custom_announcement.nil?
+ url_to_edit = OrbitHelper.user_can_edit?(custom_announcement) ? "/admin/custom_announcements/#{custom_announcement.id.to_s}/edit" : ""
+
+ access_level = OrbitHelper.user_access_level?
+
+ if !custom_announcement.approved && (access_level != "manager" && access_level != "admin")
+ if CustomAnnouncementSetting.is_pro?
+ if !(access_level == "sub_manager" && CustomAnnouncementSetting.first.approvers.include?(OrbitHelper.current_user.id.to_s))
+ return {}
+ end
+ elsif access_level != "sub_manager"
+ return {}
+ end
+ end
+
+ return {} if (custom_announcement.category.disable rescue false)
+
+ tags = custom_announcement.tags.map{|tag| {
+ "tag" => tag.name ,
+ "url" => OrbitHelper.page_for_tag(tag)
+ } } rescue []
+ files = custom_announcement.custom_bulletin_files.map do |file|
+ { "file_url" => "/xhr/custom_announcements/file/#{file.id}/#{file['file']}" + "\" title=\"#{file.file_title}",
+ "file_title" => (file.title.blank? ? URI.unescape(File.basename(file.file.path)) : file.title rescue '') } rescue nil if file.enabled_for?(locale)
+ end rescue []
+ files.delete(nil)
+ files.each do |file|
+ if file["file_url"] =="" || file["file_url"] == nil
+ files.delete(file)
+ end
+ end
+ links = custom_announcement.custom_bulletin_links.map{|link| { "link_url" => link.url, "link_title" => (link.title.blank? ? link.url : link.title) } } rescue []
+ update_user = custom_announcement.update_user.member_profile.name rescue ""
+ desc = custom_announcement.image_description
+ desc = (desc.nil? || desc == "" ? "custom_announcement image" : desc)
+
+ request = OrbitHelper.request
+ meta_desc = custom_announcement.subtitle.nil? || custom_announcement.subtitle == "" ? custom_announcement.text[0..200] : custom_announcement.subtitle
+ OrbitHelper.render_meta_tags([{"property" => "og:title", "content" => custom_announcement.title},{"property" => "og:site_name", "content" => Site.first.title},{"property" => "og:url", "content" => request.original_url.split("?").first},{"property" => "og:description", "content" => meta_desc},{"property" => "og:image", "content" => "#{request.base_url}#{custom_announcement.image.url}"},{"property" => "og:type", "content" => "Article"}])
+
+ subtitle_ann = nil
+ img_src = nil
+ img_description = nil
+ subtitle_ann = custom_announcement.subtitle if custom_announcement.display_subtitle?
+ img_src = (custom_announcement.image.thumb.url || "/assets/custom_announcement-default.jpg") if custom_announcement.display_img?
+ img_description = custom_announcement.image_description if (custom_announcement.image_description.present?) && (custom_announcement.display_img?)
+ show_comment_flag = custom_announcement.open_comment_for_user(OrbitHelper.current_user)
+ custom_bulletin_carousel_images = custom_announcement.custom_bulletin_carousel_images.map{|image| {"src"=>image.file.url,"description"=>image.description.to_s,"description_text"=>image.description_text }}
+ resume_btn_title = (I18n.locale.to_s =="zh_tw") ? "繼續播放" : "resume"
+ pause_btn_title = (I18n.locale.to_s =="zh_tw") ? "暫停播放" : "pause"
+ prev_btn_title = (I18n.locale.to_s =="zh_tw") ? "上一張" : "prev"
+ next_btn_title = (I18n.locale.to_s =="zh_tw") ? "下一張" : "next"
+ {
+ "tags" => tags,
+ "custom_bulletin_files" => files,
+ "custom_bulletin_links" => links,
+ "custom_bulletin_carousel_images" => custom_bulletin_carousel_images,
+ "data" => {
+ "title" => custom_announcement.title,
+ "subtitle_ann" => subtitle_ann,
+ "update_user" => update_user,
+ "updated_at" => (custom_announcement.postdate.in_time_zone(Time.zone.utc_offset / 3600).strftime('%Y-%m-%d %H:%M') rescue ""),
+ "body" =>custom_announcement.text,
+ "image" => custom_announcement.image.url,
+ "img_src" => img_src,
+ "img_description" => img_description,
+ "hide_class" => custom_announcement.display_img? ? custom_announcement.image_display_class : ' hide',
+ "alt_title" => desc,
+ "resume_btn_title" => resume_btn_title,
+ "pause_btn_title" => pause_btn_title,
+ "prev_btn_title" => prev_btn_title,
+ "next_btn_title" => next_btn_title,
+ "carousel_display_style" => (custom_bulletin_carousel_images.count == 0 ? 'display: none' : 'width: 50%;margin: auto;'),
+ "carousel_count" => custom_bulletin_carousel_images.count
+ },
+ "comments" => custom_announcement.comments,
+ "show_comment_flag" => show_comment_flag,
+ "impressionist" => (custom_announcement.is_preview ? nil : custom_announcement),
+ "url_to_edit"=>url_to_edit
+ }
+ end
+
+ def show_feed_custom_announcement(uid)
+ custom_announcement = OrbitHelper.get_from_feed(uid)
+ locale = OrbitHelper.get_site_locale.to_s
+ url_to_edit = "#"
+ return {} if custom_announcement.blank?
+ tags = []
+
+ custom_announcement["tags"].each{|tag|
+ t = Tag.where(:name => tag["name_translations"][locale]).first rescue nil
+ if t.nil?
+ I18n.locale = (locale == "en" ? :zh_tw : :en)
+ t = Tag.where(:name => tag["name_translations"][locale]).first rescue nil
+ I18n.locale = locale.to_sym
+ end
+ tags << {
+ "tag" => tag["name_translations"][locale],
+ "url" => (t.nil? ? "#" : OrbitHelper.page_for_tag(t))
+ }
+ }
+
+ files = custom_announcement["custom_bulletin_files"].map{|file| { "file_url" => file["url"], "file_title" => (file["title_translations"][locale] == "" ? URI.unescape(File.basename(file["url"])) : file["title_translations"][locale] rescue '') } } rescue []
+
+ files.each do |file|
+ if file["file_url"] =="" || file["file_url"] == nil
+ files.delete(file)
+ end
+ end
+ links = custom_announcement["custom_bulletin_links"].map{|link| { "link_url" => link["url"], "link_title" => (link["title_translations"][locale] == "" ? link["url"] : link["title_translations"][locale]) } } rescue []
+
+ update_user = custom_announcement["author"]
+ desc = custom_announcement["image_description_translations"][locale] rescue ""
+ desc = (desc.nil? || desc == "" ? "custom_announcement image" : desc)
+ img_description = nil
+ img_description = custom_announcement["image_description_translations"][I18n.locale] if custom_announcement['display_img']
+ img_src = nil
+ img_src = (custom_announcement['image']['thumb'] || "/assets/custom_announcement-default.jpg") if custom_announcement['display_img']
+ subtitle_ann = custom_announcement['subtitle_ann']
+ request = OrbitHelper.request
+ if custom_announcement["subtitle_translations"].present?
+ meta_desc = custom_announcement["subtitle_translations"][locale] != "" ? custom_announcement["subtitle_translations"][locale] : custom_announcement["text_translations"][locale][0..200] rescue ""
+ else
+ meta_desc = ""
+ end
+
+ OrbitHelper.render_meta_tags([{"property" => "og:title", "content" => custom_announcement["title_translations"][locale]},{"property" => "og:site_name", "content" => Site.first.title},{"property" => "og:url", "content" => request.original_url.split("?").first},{"property" => "og:description", "content" => meta_desc},{"property" => "og:image", "content" => custom_announcement["image"]["original"]},{"property" => "og:type", "content" => "Article"}])
+
+ datetime = DateTime.parse(custom_announcement["postdate"])
+
+ custom_bulletin_carousel_images = Array(custom_announcement["custom_bulletin_carousel_images"])
+ resume_btn_title = (I18n.locale.to_s =="zh_tw") ? "繼續播放" : "resume"
+ pause_btn_title = (I18n.locale.to_s =="zh_tw") ? "暫停播放" : "pause"
+ prev_btn_title = (I18n.locale.to_s =="zh_tw") ? "上一張" : "prev"
+ next_btn_title = (I18n.locale.to_s =="zh_tw") ? "下一張" : "next"
+
+ {
+ "tags" => tags,
+ "custom_bulletin_files" => files,
+ "custom_bulletin_links" => links,
+ "custom_bulletin_carousel_images" => custom_bulletin_carousel_images,
+ "data" => {
+ "title" => custom_announcement["title_translations"][locale],
+ "subtitle_ann" => subtitle_ann,
+ "update_user" => update_user,
+ "updated_at" => (datetime.in_time_zone(Time.zone.utc_offset / 3600).strftime('%Y-%m-%d %H:%M') rescue ""),
+ "body" => custom_announcement["text_translations"][locale],
+ "image" => custom_announcement["image"]["original"],
+ "img_src" => img_src,
+ "img_description" => img_description,
+ "hide_class" => custom_announcement["display_img"] ? '' : ' hide',
+ "alt_title" => desc,
+ "resume_btn_title" => resume_btn_title,
+ "pause_btn_title" => pause_btn_title,
+ "prev_btn_title" => prev_btn_title,
+ "next_btn_title" => next_btn_title,
+ "carousel_display_style" => (custom_bulletin_carousel_images.count == 0 ? 'display: none' : 'width: 50%;margin: auto;'),
+ "carousel_count" => custom_bulletin_carousel_images.count
+ },
+ "comments" => [],
+ "show_comment_flag" => false,
+ "impressionist" => nil,
+ "url_to_edit" => url_to_edit
+ }
+ end
+
+ def show
+ params = OrbitHelper.params
+ uid = params[:uid]
+ if OrbitHelper.is_object_from_feed?(uid)
+ show_feed_custom_announcement(uid)
+ else
+ show_local_custom_announcement(uid, (params["preview"] == "true" ? true : false))
+ end
+ end
+ def show_widget
+ @type = "show_widget"
+ @show_page = params[:show_page]
+ if params[:tags].nil?
+ @tags = ['all']
+ else
+ @tags = params[:tags]
+ end
+ if params[:categories].nil?
+ @categories = ['all']
+ else
+ @categories = params[:categories]
+ end
+ OrbitHelper.set_site_locale(I18n.locale)
+ OrbitHelper.set_current_widget_module("custom_announcement")
+ OrbitHelper.set_params(params,current_user)
+ CustomBulletin.remove_expired_status
+ OrbitHelper.set_page_number(params[:page_no].to_i)
+ OrbitHelper.set_page_data_count((params[:data_count].blank? ? 10 : params[:data_count].to_i))
+ sorted,total_pages = get_sorted_annc
+ custom_anns = sorted.collect do |a|
+ if a["source-site"].blank?
+ statuses = a.statuses_with_classname.collect do |status|
+ {
+ "status" => status["name"],
+ "status-class" => "status-#{status['classname']}"
+ }
+ end
+ locale = I18n.locale.to_s
+ files = a.custom_bulletin_files.map{|file| { "file_url" => file.file.url + "\" title=\"#{file.file_title}", "file_title" => (file.title.blank? ? File.basename(file.file.path) : file.title rescue '') } if file.enabled_for?(locale) } rescue []
+ files.delete(nil)
+ links = a.custom_bulletin_links.map{|link| { "link_url" => link.url, "link_title" => (link.title.blank? ? link.url : link.title) } } rescue []
+ author = User.find(a.create_user_id).member_profile.name rescue ""
+ desc = a.image_description
+ desc = (desc.blank? ? "custom_announcement image" : desc)
+ link_to_show = (a.is_external_link ? a.external_link : OrbitHelper.url_to_show(a.to_param)) rescue ""
+ target = a.is_external_link ? "_blank" : "_self"
+ doc = Nokogiri::HTML(a.title)
+ title = doc.text.empty? ? 'no content' : doc.text
+ {
+ "department" => author,
+ "custom_bulletin_links" => links,
+ "custom_bulletin_files" => files,
+ "title" => a.title,
+ "source-site" => "",
+ "source-site-title" => "",
+ "source-site-link" => "",
+ "subtitle" => a.subtitle,
+ "statuses" => statuses,
+ "category" => a.category.title,
+ "postdate" => a.postdate,
+ "author" => author,
+ "is_top" => (a.is_top? ? 1 : 0),
+ "link_to_show" => link_to_show+"\" title=\"#{title}\"",
+ "target" => target,
+ "img_src" => a.image.thumb.url || "/assets/custom_announcement-default.jpg",
+ "img_description" => desc,
+ "more" => t(:more_plus),
+ "view_count" => a.view_count
+ }
+ else
+ a
+ end
+ end
+ #If no data , hide title&table
+ if sorted.count == 0
+ display = "hide"
+ end
+ # custom_anns = custom_anns.concat(feeds_custom_anns)
+ # total_pages = custom_announcements.total_pages
+
+
+ @data = {
+ "custom_announcements" => custom_anns,
+ "extras" => {
+ "widget-title" =>t('custom_announcement.custom_announcement'),
+ "title-head" => t('custom_announcement.table.title'),
+ "date-head" => t('custom_announcement.table.date'),
+ "status-head" => t('custom_announcement.table.status'),
+ "author-head" => t('custom_announcement.table.author'),
+ "subtitle-head" => t('custom_announcement.table.sub_title'),
+ "category-head" => t('custom_announcement.table.category'),
+ "link-head" => t('custom_announcement.table.link'),
+ "file-head" => t('custom_announcement.table.file'),
+ "view-count-head" => t('custom_announcement.table.view_count'),
+ "display" => display,
+ "department-head" => t('custom_announcement.table.department')
+ },
+ "total_pages" => total_pages
+ }
+ render :layout => false
+ end
+
+end
diff --git a/custom_announcement/app/controllers/custom_bulletins_controller.rb b/custom_announcement/app/controllers/custom_bulletins_controller.rb
new file mode 100644
index 0000000..a4134fc
--- /dev/null
+++ b/custom_announcement/app/controllers/custom_bulletins_controller.rb
@@ -0,0 +1,128 @@
+# encoding: utf-8
+class CustomBulletinsController < ApplicationController
+ before_filter :set_I18n
+ def get_custom_bulletins
+ page = Page.where(:module => "custom_announcement").first rescue nil
+
+ # 頁次
+ page_num = params[:page_num].blank? ? 0 : params[:page_num].to_i
+ # 每頁顯示的則數
+ per_page = params[:per_page].blank? ? 10 : params[:per_page].to_i
+ per_page = per_page > 0 ? per_page : 10
+
+ I18n.locale = :zh_tw
+ if !params[:keyword].blank?
+ keyword = Regexp.new(".*"+params[:keyword]+".*")
+ custom_bulletins = CustomBulletin.any_of({:title=>keyword},{:subtitle=>keyword},{:text=>keyword})
+ else
+ custom_bulletins = CustomBulletin.all
+ end
+
+ if !params[:category].blank?
+ module_id = ModuleApp.where(:key=>"custom_announcement").first.id
+ category = Regexp.new(".*"+params[:category]+".*")
+ category_id = Category.where(:title => category, :module_app_id => module_id).first.id
+ custom_bulletins = custom_bulletins.where(:category_id => category_id)
+ else
+ custom_bulletins = custom_bulletins
+ end
+
+ custom_bulletins = custom_bulletins.where(:is_preview.in=>[false,nil])
+ custom_bulletins = custom_bulletins.where(:approved.ne => false , :rejected.ne => true)
+ custom_bulletins = custom_bulletins.where(:postdate.lt=>Time.now)
+ custom_bulletins = custom_bulletins.desc( :is_top, :postdate).page(page_num).per(per_page)
+
+ custom_bulletins = custom_bulletins.collect do |b|
+ image = request.protocol + request.host_with_port + b.image.url rescue nil
+
+ links = b.custom_bulletin_links.collect do |bl|
+ {
+ "title" => bl.title_translations,
+ "url" => bl.url
+ }
+ end rescue nil
+
+ files = b.custom_bulletin_files.collect do |bf|
+ file = request.protocol + request.host_with_port + bf.file.url rescue nil
+ {
+ "title" => bf.title_translations,
+ "description" => bf.description_translations,
+ "file" => file
+ }
+ end rescue nil
+
+ ts = b.tags.collect do |t|
+ {
+ "name" => t.name_translations
+ }
+ end rescue nil
+
+ text = {"en" => "", "zh_tw" => ""}
+ text["en"] = (b.text_translations["en"].nil? ? "" :smart_convertor(b.text_translations["en"]))
+ text["zh_tw"] = (b.text_translations["zh_tw"].nil? ? "" : smart_convertor(b.text_translations["zh_tw"]))
+
+ author = User.find(b.create_user_id).member_profile.name rescue ""
+
+ {
+ "id" => b.id.to_s,
+ "title" => b.title_translations,
+ "subtitle" => b.subtitle_translations,
+ "text" => text,
+ "postdate" => b.postdate,
+ "deadline" => b.deadline,
+ "category" => b.category.title_translations,
+ "tags" => ts,
+ "image" => image,
+ "links" => links,
+ "files" => files,
+ "author" => author,
+ "url" => "/#{I18n.locale.to_s + page.url}/#{b.to_param}"
+ }
+
+ end
+
+ # 計算總筆數 Start
+ if !params[:keyword].blank?
+ keyword = Regexp.new(".*"+params[:keyword]+".*")
+ custom_bulletin_count = CustomBulletin.any_of({:title=>keyword},{:subtitle=>keyword},{:text=>keyword})
+ else
+ custom_bulletin_count = CustomBulletin.all
+ end
+ custom_bulletin_count = custom_bulletin_count.where(:is_preview.in=>[false,nil])
+ custom_bulletin_count = custom_bulletin_count.where(:approved.ne => false , :rejected.ne => true)
+ custom_bulletin_count = custom_bulletin_count.where(:postdate.lt=>Time.now)
+ total_pages = custom_bulletin_count.count
+ # End
+
+ render :json => {
+ "custom_bulletins" => custom_bulletins,
+ "custom_bulletins_count" => custom_bulletins.count,
+ "page_num" => page_num,
+ "total_pages" => total_pages,
+ }.to_json
+ end
+
+ def smart_convertor(text)
+ html_string = text
+ links = html_string.scan(/img.*?src="(.*?)"/i)
+ links.each do |link|
+ l = link.first
+ new_link = nil
+ if l.starts_with?("/")
+ new_link = request.protocol + request.host_with_port + l
+ elsif l.starts_with?("..")
+ l1 = l.gsub("../","")
+ new_link = request.protocol + request.host_with_port + "/" + l1
+ end
+ html_string = html_string.sub(l,new_link) if !new_link.nil?
+ end
+ return html_string
+ end
+
+ protected
+
+ def set_I18n
+ I18n.locale = params[:lang] if params[:lang].present?
+ end
+
+end
diff --git a/custom_announcement/app/helpers/.keep b/custom_announcement/app/helpers/.keep
new file mode 100644
index 0000000..e69de29
diff --git a/custom_announcement/app/helpers/admin/custom_announcements_helper.rb b/custom_announcement/app/helpers/admin/custom_announcements_helper.rb
new file mode 100644
index 0000000..b594b76
--- /dev/null
+++ b/custom_announcement/app/helpers/admin/custom_announcements_helper.rb
@@ -0,0 +1,327 @@
+require "net/http"
+require "uri"
+require 'json'
+
+module Admin::CustomAnnouncementsHelper
+ def back_end_breadcrumb
+ if params[:controller] == "admin/custom_announcements"
+ res = ''
+ divider = "/ "
+ res << "#{t(:dashboard_)} #{divider} "
+ if params[:custom_module]
+ trans_name = I18n.t("module_name.#{params[:custom_module]}")
+ if trans_name.include?("translation missing")
+ trans_name = params[:custom_module]
+ end
+ res << "#{trans_name} #{divider} "
+ end
+ if params[:action] != "index"
+ if params[:custom_module]
+ extra_url = "/#{params[:custom_module]}#{params[:bind_uid].present? ? ('-'+params[:bind_uid]) : ''}"
+ end
+ res << "#{t('module_name.'+@module_app.key)} #{divider} "
+ res << "#{t(params[:action], scope: 'restful_actions')} "
+ else
+ res << "#{t('module_name.'+@module_app.key)} "
+ end
+ res.html_safe
+ else
+ super
+ end
+ end
+ def page_for_custom_bulletin(custom_bulletin)
+ ann_page = nil
+ pages = Page.where(:module=>'custom_announcement')
+
+ pages.each do |page|
+ if page.categories.count ==1
+ if page.categories.include?(custom_bulletin.category.id.to_s)
+ ann_page = page
+ end
+ end
+ break if !ann_page.nil?
+ end
+
+ if ann_page.nil?
+ pages.each do |page|
+ if (page.categories.include?(custom_bulletin.category.id.to_s) rescue false)
+ ann_page = page
+ end
+ break if !ann_page.nil?
+ end
+ end
+
+ ann_page = pages.first if ann_page.nil?
+ (ann_page.get_url+'/'+custom_bulletin.to_param).gsub('//','/') rescue "#"
+ end
+
+ def import_this_custom_announcement(row,categories,tags)
+ value = {}
+ custom_anns = CustomBulletin.new
+ row.cells.each_with_index do |cell,index|
+ val = cell.value rescue nil
+ if [8,9,10,11,12,13,14,15].exclude?(index)
+ next if val.blank?
+ end
+ case index
+ when 0
+ custom_anns.category = categories[val.to_i]
+ when 1
+ new_tags = []
+ if (val.include?(",") rescue false)
+ ts = val.split(",")
+ ts.each do |t|
+ new_tags << tags[t.to_i]
+ end
+ else
+ new_tags << tags[val.to_i]
+ end
+ custom_anns.tags=new_tags
+ when 2
+ custom_anns.postdate = val
+ when 3
+ custom_anns.deadline = val
+ when 4
+ custom_anns.is_top = (val.to_i == 1 ? true : false)
+ when 5
+ custom_anns.is_hot = (val.to_i == 1 ? true : false)
+ when 6
+ custom_anns.is_hidden = (val.to_i == 1 ? true : false)
+ when 7
+ custom_anns.remote_image_url = val
+ when 8
+ value["en"] = val
+ when 9
+ value["zh_tw"] = val
+ custom_anns.image_description_translations = value
+ value = {}
+ when 10
+ value["en"] = val
+ when 11
+ value["zh_tw"] = val
+ custom_anns.title_translations = value
+ value = {}
+ when 12
+ value["en"] = val
+ when 13
+ value["zh_tw"] = val
+ custom_anns.subtitle_translations = value
+ value = {}
+ when 14
+ value["en"] = val
+ when 15
+ value["zh_tw"] = val
+ custom_anns.text_translations = value
+ value = {}
+ when 16
+ links = val.split(";") rescue []
+ desc_en = row.cells[17].value.split(";") rescue []
+ desc_zh_tw = row.cells[18].value.split(";") rescue []
+ links.each_with_index do |link,i|
+ bl = CustomBulletinLink.new
+ bl.url = link.strip
+ bl.title_translations = {"en" => desc_en[i], "zh_tw" => desc_zh_tw[i]}
+ bl.custom_bulletin_id = custom_anns.id
+ bl.save
+ end
+ when 19
+ files = val.split(";") rescue []
+ desc_en = row.cells[20].value.split(";") rescue []
+ desc_zh_tw = row.cells[21].value.split(";") rescue []
+ alt_en = row.cells[22].value.split(";") rescue []
+ alt_zh_tw = row.cells[23].value.split(";") rescue []
+ files.each_with_index do |file, i|
+ bf = CustomBulletinFile.new
+ bf.remote_file_url = file.strip rescue nil
+ bf.title_translations = {"en" => (desc_en[i] rescue ""), "zh_tw" => (desc_zh_tw[i] rescue "")}
+ bf.description_translations = {"en" => (alt_en[i] rescue ""), "zh_tw" => (alt_zh_tw[i] rescue "")}
+ bf.custom_bulletin_id = custom_anns.id
+ bf.save
+ end
+ end
+ end
+ custom_anns.create_user_id = current_user.id.to_s
+ custom_anns.update_user_id = current_user.id.to_s
+ custom_anns.approved = true
+ custom_anns.save
+ end
+
+ def send_rejection_email(custom_announcement,locale)
+ user = User.find(custom_announcement.create_user_id) rescue nil
+ if !user.nil?
+ email = user.member_profile.email
+ if !email.nil? && email != ""
+ url = "http://#{request.host_with_port}/admin/custom_announcements/#{custom_announcement.id}/edit"
+ datatosend = "Hello #{user.name}, #{current_user.name} #{t("custom_announcement.rejected_annoucement")} : #{custom_announcement.rejection_reason} #{t("custom_announcement.click_here_to_see")}
"
+ mail = Email.new(:mail_to => email, :mail_subject => "CustomAnnouncement rejected公告未通過 : #{custom_announcement.title_translations[locale]}.", :template => "email/custom_announcement_email.html.erb", :template_data => {"html" => datatosend})
+ mail.save
+ mail.deliver rescue nil
+ end
+ end
+ end
+
+ def send_notification_mail_to_managers(custom_announcement, type, locale)
+ users = []
+ if @custom_announcement_setting.email_to.include?("managers")
+ authorizations = Authorization.where(:module_app_id => @module_app.id)
+ users = authorizations.collect do |auth|
+ auth.user
+ end
+ end
+ if @custom_announcement_setting.email_to.include?("admins")
+ wg = Workgroup.where(:key => "admin").first
+ admins = User.where(:workgroup_id => wg.id)
+ users.delete(nil)
+ users = users.concat(admins.to_a)
+ end
+ if @custom_announcement_setting.email_to.include?("approvers")
+ approvers = User.find(@custom_announcement_setting.approvers).to_a rescue []
+ auths = Authorization.where(:category_id => custom_announcement.category_id).collect{|a| a.user}
+ users = users.concat(approvers & auths)
+ end
+ users.each do |user|
+ email = user.member_profile.email
+ if !email.nil? && email != ""
+ send_email(user.name, email, custom_announcement, type, locale)
+ # sleep(1)
+ end
+ end
+ end
+
+ def send_email(name, useremail, custom_announcement, type, locale)
+ url = "http://#{request.host_with_port}/admin/custom_announcements?url=#{page_for_custom_bulletin(custom_announcement).sub("http://" + request.host_with_port, "")}&id=#{custom_announcement.id}"
+
+ case type
+ when "approval"
+ datatosend = "#{t("custom_announcement.approval_mail_hi", :name => name)}, #{t("custom_announcement.submitted_new_custom_announcement", :poster => current_user.name)} #{t("custom_announcement.approval_custom_announcement_title")} : #{custom_announcement.title_translations[locale]} #{t("custom_announcement.click_here_to_see")} : #{url}
"
+ when "reapproval"
+ datatosend = "#{t("custom_announcement.approval_mail_hi", :name => name)}, #{t("custom_announcement.updated_annoucement", :poster => current_user.name)} #{t("custom_announcement.approval_custom_announcement_title")} : #{custom_announcement.title_translations[locale]} #{t("custom_announcement.click_here_to_see")} : #{url}
"
+ end
+ email = Email.new(:mail_to => useremail, :mail_subject => " #{t("custom_announcement.custom_announcement_subject")} : #{custom_announcement.title_translations[locale]}.", :template => "email/custom_announcement_email.html.erb", :template_data => {"html" => datatosend})
+ email.save
+ email.deliver rescue nil
+ end
+
+ def download_tmp_xml(url)
+ xml = File.join(Rails.root, "tmp", "ann_cc_ntu.xml")
+ open(xml, 'wb') do |fo|
+ fo.print open(url).read
+ end
+ end
+
+ def import_from_tmp_xml(file)
+ xml = Nokogiri::XML(file)
+ return if xml.nil?
+ custom_announcements = []
+ xml.xpath("//channel").xpath("//item").each do |custom_anns|
+ custom_announcements << {
+ :title => (custom_anns>"title").text,
+ :category => (custom_anns>"category").text,
+ :postdate => (custom_anns>"pubDate").text,
+ :text => (custom_anns>"description").text,
+ :rss2_sn => (custom_anns>"link").text.split("=").last
+ }
+ end
+ custom_announcements.each do |custom_anns|
+ ma = ModuleApp.where(:key => "custom_announcement").first
+ cat = Category.where(:title => custom_anns[:category]).first rescue nil
+ if cat.nil?
+ cat = Category.create(:title_translations => {"en" => custom_anns[:category], "zh_tw" => custom_anns[:category]}, :module_app_id => ma.id)
+ end
+ ann = CustomBulletin.where(:rss2_sn => custom_anns[:rss2_sn]).first rescue nil
+ if ann.nil?
+ ann = CustomBulletin.new(:title_translations => {"en" => "", "zh_tw" => custom_anns[:title]}, :postdate => custom_anns[:postdate], :subtitle_translations => {"en" => "", "zh_tw" => custom_anns[:title]}, :text_translations => {"en" => "", "zh_tw" => custom_anns[:text]}, :rss2_sn => custom_anns[:rss2_sn], :category_id => cat.id, :approved => true, :create_user_id => current_user.id)
+ else
+ ann.update_attributes(:title_translations => {"en" => "", "zh_tw" => custom_anns[:title]}, :postdate => custom_anns[:postdate], :subtitle_translations => {"en" => "", "zh_tw" => custom_anns[:title]}, :text_translations => {"en" => "", "zh_tw" => custom_anns[:text]})
+ end
+ ann.save
+ end
+ File.delete(file)
+ end
+
+ def import_from_wordpress(xmlfile)
+ xml_file = File.read(xmlfile)
+ doc = Nokogiri::XML.parse(xml_file)
+
+ doc.xpath("//channel").each do|channel_data|
+ channel_data.xpath('//item').each do|itme|
+
+ bu = CustomBulletin.where(:rss2_sn => itme.xpath('wp:post_id').text ).first rescue nil
+ if bu.nil?
+ bu = CustomBulletin.new
+ bu.approved = true
+ bu.rss2_sn = itme.xpath('wp:post_id').text
+ bu.title_translations = {"en" => itme.xpath('title').text, "zh_tw" => itme.xpath('title').text}
+ bu.text_translations = {"en" => itme.xpath('content:encoded').text, "zh_tw" => itme.xpath('content:encoded').text}
+ bu.postdate = itme.xpath('wp:post_date').text
+
+ itme.xpath('category').each do |i_cate|
+ if i_cate["domain"].to_s == "category"
+
+ cat = @module_app.categories.where(:title => i_cate.text.to_s).first rescue nil
+ if cat.nil?
+ cat = Category.new
+ cat.module_app = @module_app
+ cat.title_translations = {"en" => i_cate.text.to_s, "zh_tw" => i_cate.text.to_s}
+ cat.save
+ end
+ bu.category = cat
+
+ elsif i_cate["domain"].to_s == "post_tag"
+
+ tag = Tag.where(:name => i_cate.text.to_s ).first rescue nil
+ if tag.nil?
+ tag = Tag.new
+ tag.name_translations = {"en" => i_cate.text.to_s, "zh_tw" => i_cate.text.to_s}
+ tag.module_app_ids << @module_app.id
+ tag.save
+ end
+
+ bu.tags = tag
+ end
+ end
+
+ bu.save
+ end
+
+ end
+ end
+ File.delete(xmlfile)
+ end
+
+ def load_access_level
+ if (current_user.is_admin? rescue false)
+ @access_level = "admin"
+ elsif (current_user.is_manager?(@module_app) rescue false)
+ @access_level = "manager"
+ else
+ @access_level = "users"
+ end
+ end
+
+ def user_can_approve?(custom_anns=nil)
+ can_approve = false
+ setting = CustomAnnouncementSetting.first
+ case @access_level
+ when "admin"
+ can_approve = true
+ when "manager"
+ can_approve = true
+ else
+ can_approve = false
+ end
+ if !can_approve
+ if !custom_anns.nil?
+ if setting.approvers.include?(current_user.id.to_s)
+ if (current_user.approved_categories_for_module(@module_app).include?(custom_anns.category) rescue false)
+ can_approve = true
+ end
+ end
+ else
+ can_approve = setting.approvers.include?(current_user.id.to_s)
+ end
+ end
+ can_approve
+ end
+
+end
diff --git a/custom_announcement/app/helpers/custom_announcements_helper.rb b/custom_announcement/app/helpers/custom_announcements_helper.rb
new file mode 100644
index 0000000..ec8b8b6
--- /dev/null
+++ b/custom_announcement/app/helpers/custom_announcements_helper.rb
@@ -0,0 +1,488 @@
+module CustomAnnouncementsHelper
+ def self.complementaryColor(my_hex)
+ if my_hex[0] == '#'
+ my_hex = my_hex[1..-1]
+ end
+ rgb = my_hex.split(//).each_slice(my_hex.length/3).map{|v| v.join}
+ comp = rgb.map{|a| (255 - a.to_i(16)).to_s(16).rjust(2,'0')}
+ '#'+comp.join
+ end
+ def self.lighten_color(my_hex,percent)
+ if my_hex[0] == '#'
+ my_hex = my_hex[1..-1]
+ end
+ rgb = my_hex.split(//).each_slice(my_hex.length/3).map{|v| v.join}
+ comp = rgb.collect do |a|
+ tmp = a.to_i(16)*(1+percent/100.0)
+ tmp = 255 if tmp>255
+ tmp = 0 if tmp < 0
+ tmp.to_i.to_s(16).rjust(2,'0')
+ end
+ '#'+comp.join
+ end
+ def set_image_version_for_widget
+ subpart = OrbitHelper.get_current_widget
+ @image_version = 'thumb'
+ if subpart.methods.include? 'select_options'.to_sym
+ ModuleApp.all.select{|tmp| tmp.key.to_s=='custom_announcement'}.each do |modile_app|
+ @show_options = modile_app.show_options rescue nil
+ end
+ subpart.select_options.each do |select_option|
+ if !(@show_options.nil?) && select_option.field_name == @show_options.keys.first.to_s
+ value = YAML.load(select_option.value)
+ tmp = value[:en]
+ I18n.with_locale(:en) do
+ if tmp == t('custom_announcement.small_size')
+ @image_version = 'thumb'
+ elsif tmp == t('custom_announcement.medium_size')
+ @image_version = 'mobile'
+ elsif tmp == t('custom_announcement.orignal_size')
+ @image_version = 'orignal'
+ end
+ end
+ end
+ end
+ end
+ end
+ def data_to_human_type(a,set_tag_ids=nil)
+ statuses = a.statuses_with_classname.collect do |status|
+ {
+ "status" => status["name"],
+ "status-class" => "status-#{status['classname']}"
+ }
+ end
+ files = a.custom_bulletin_files.map{|file| { "file_url" => file.file.url, "file_title" => (file.title.blank? ? File.basename(file.file.path) : file.title rescue '') } if file.enabled_for?(locale) } rescue []
+ files.delete(nil)
+ links = a.custom_bulletin_links.map{|link| { "link_url" => link.url, "link_title" => (link.title.blank? ? link.url : link.title) } } rescue []
+ author = User.find(a.create_user_id).member_profile.name rescue ""
+ desc = a.image_description
+ desc = (desc.nil? || desc == "" ? "custom_announcement image" : desc)
+ link_to_show = (a.is_external_link? ? a.external_link : OrbitHelper.widget_item_url(a.to_param)) rescue ""
+ target = a.is_external_link ? "_blank" : "_self"
+ if @image_version == 'thumb'
+ image_url = a.image.thumb.url
+ elsif @image_version == 'mobile'
+ image_url = a.image.mobile.url
+ else
+ image_url = a.image.url
+ end
+ {
+ "custom_bulletin_links" => links,
+ "custom_bulletin_files" => files,
+ "title" => a.title,
+ "source-site" => "",
+ "source-site-title" => "",
+ "source-site-link" => "",
+ "subtitle" => a.subtitle,
+ "statuses" => statuses,
+ "category" => (a.category.title rescue ''),
+ "tag_ids" => (set_tag_ids.nil? ? (a.tag_ids.map{|id| id.to_s}.to_s.gsub('"',"'") rescue '[]') : set_tag_ids),
+ "postdate" => a.postdate,
+ "author" => author,
+ "link_to_show" => link_to_show,
+ "target" => target,
+ "img_src" => image_url || "/assets/custom_announcement-default.jpg",
+ "img_description" => desc
+ }
+ end
+ def get_feed_annc(type,site_source,locale)
+ ma_key = 'custom_announcement'
+ if type == "index"
+ categories = Array(OrbitHelper.page_categories)
+ elsif type == "widget"
+ categories = Array(OrbitHelper.widget_categories)
+ else
+ categories = []
+ end
+ if categories.include?("all")
+ feeds = SiteFeedCustomAnnc.where(:channel_key => ma_key)
+ else
+ feeds = SiteFeedCustomAnnc.where(:channel_key => ma_key, :merge_with_category.in => categories)
+ end
+ if feeds.count > 0
+ temp_ids = []
+ data = feeds.collect do |feed|
+ feed.all_contents_for_feed(site_source,locale,type=='widget')
+ end.flatten.compact
+ else
+ data = []
+ end
+ data
+ end
+ def get_feed_custom_announcements(type,site_source=nil)
+ locale = OrbitHelper.get_site_locale.to_s
+ if !(defined? SiteFeedCustomAnnc).nil?
+ fans = get_feed_annc(type,site_source,locale)
+ else
+ feed_custom_anns = OrbitHelper.get_feed_for_module(type)
+ fans = []
+ feed_custom_anns.each do |fa|
+ next if !site_source.nil? && site_source != fa["source-site-title"]
+ status = {
+ "status" => "#{fa["source-site-title"]} ",
+ "status-class" => "status-source"
+ }
+
+ files = fa["custom_bulletin_files"].collect{|bf| { "file_url" => bf["url"], "file_title" => (fa["title_translations"][locale].blank? ? File.basename(fa["url"]) : fa["title_translations"][locale] rescue '') }} rescue []
+ links = fa["custom_bulletin_links"].map{|link| { "link_url" => link["url"], "link_title" => (link["title_translations"][locale].blank? ? link["url"] : link["title_translations"][locale]) } } rescue []
+
+ x = {
+ "custom_bulletin_links" => links,
+ "custom_bulletin_files" => files,
+ "custom_bulletin_carousel_images" => fa["custom_bulletin_carousel_images"].to_a,
+ "title" => fa["title_translations"][locale],
+ "subtitle" => fa["subtitle_translations"][locale],
+ "statuses" => [status],
+ "category" => fa["category"],
+ "postdate" => fa["postdate"],
+ "author" => fa["author"],
+ "source-site" => "#{fa["source-site-title"]} ",
+ "source-site-title" => fa["source-site-title"],
+ "source-site-link" => fa["source-site"],
+ "link_to_show" => OrbitHelper.url_to_show(fa["params"]),
+ "target" => "_self",
+ "img_src" => fa["image"]["thumb"] || "/assets/custom_announcement-default.jpg",
+ "img_description" => fa["image_description_translations"][locale],
+ "more" => t(:more_plus),
+ "view_count" => ""
+ }
+ if (!x["title"].empty? rescue false)
+ fans << x
+ end
+ end
+ end
+ fans
+ end
+ def filter_by_keywords(sorted,keywords,stime,etime)
+ kflag = keywords.blank?
+ sflag = stime.blank?
+ eflag = etime.blank?
+ stime = stime.to_s.split('/')
+ stime = Time.zone.local(*stime) rescue nil
+ etime = etime.to_s.split('/')
+ etime = Time.zone.local(*etime) rescue nil
+ if !kflag || !sflag || !eflag
+ sorted.select{|custom_anns|
+ if kflag
+ flag = true
+ else
+ if custom_anns["source-site"].present?
+ title = Nokogiri::HTML(custom_anns["title"].to_s).text
+ else
+ title = Nokogiri::HTML(custom_anns.title.to_s).text
+ end
+ flag = title.include?(keywords.to_s)
+ end
+ if sflag && !eflag
+ flag = flag && (custom_anns.postdate<=etime)
+ elsif !sflag && eflag
+ flag = flag && (custom_anns.postdate>=stime)
+ elsif !sflag && !eflag
+ flag = flag && (custom_anns.postdate>=stime) && (custom_anns.postdate<=etime)
+ end
+ flag
+ }
+ else
+ sorted
+ end
+ end
+ def get_sorted_annc(data_count=nil)
+ params = OrbitHelper.params
+ locale = OrbitHelper.get_site_locale.to_s
+ page_number = OrbitHelper.page_number.to_i
+ page = OrbitHelper.page rescue nil
+ unless page
+ page = Page.where(url:params['url']).first
+ end
+ page_number = 1 if page_number == 0
+ page_data_count = data_count || OrbitHelper.page_data_count.to_i
+ feeds_custom_anns = []
+ custom_data_field = page.custom_data_field rescue nil
+ if custom_data_field.nil?
+ custom_data_field = {}
+ elsif custom_data_field["bind_module_app"]
+ custom_data_field["custom_module"] = custom_data_field["bind_module_app"]
+ custom_data_field.delete('bind_module_app')
+ end
+ if @type == "show_widget"
+ tags = @tags
+ categories = @categories
+ else
+ tags = page.tags
+ tags = params[:tags] if params[:tags].present?
+ categories = params['category']=='all' ? (page.categories || []) : (Array(params['category']) rescue (page.categories || []))
+ if params['category'].present?
+ tags = ["all"]
+ end
+ end
+ if !params["source"].present?
+ if @type == "show_widget"
+ if params[:uids].blank?
+ custom_announcements = CustomBulletin.where(:title.nin => ["",nil],:is_preview.in=>[false,nil]).where(custom_data_field)
+ .can_display_and_sorted.is_approved
+ .filter_by_categories(categories,false).filter_by_tags(tags).to_a
+ else
+ member_prfile = MemberProfile.any_in(:uid=>params[:uids])
+ user_ids = member_prfile.map{|m| m.user.id rescue nil}.select{|id| !id.nil?}
+ custom_announcements = CustomBulletin.where(:title.nin => ["",nil],:is_preview.in=>[false,nil],:create_user_id.in=>user_ids).where(custom_data_field)
+ .can_display_and_sorted.is_approved
+ .filter_by_categories(categories,false).filter_by_tags(tags).to_a
+ end
+ else
+ custom_announcements = CustomBulletin.where(:title.nin => ["",nil],:is_preview.in=>[false,nil]).where(custom_data_field)
+ .can_display_and_sorted.is_approved
+ .filter_by_categories(categories,false).filter_by_tags(tags).to_a
+ end
+ if !(defined? SiteFeed).nil?
+ if @type != "show_widget"
+ feeds_custom_anns = get_feed_custom_announcements("index")
+ else
+ feeds_custom_anns = []
+ end
+ end
+ else
+ custom_announcements = []
+ if @type != "show_widget"
+ feeds_custom_anns = get_feed_custom_announcements("index",params["source"])
+ else
+ feeds_custom_anns = []
+ end
+ end
+ if !feeds_custom_anns.blank?
+ if custom_announcements.count != 0
+ top_custom_anns = custom_announcements.select{|v| v.is_top} + feeds_custom_anns.select{|v| v['is_top']}
+ rest_all_custom_anns = feeds_custom_anns.select{|v| v['is_top'] != true} + custom_announcements.select{|v| !v.is_top}
+ rest_custom_anns = rest_all_custom_anns.sort{|v1,v2| v2["postdate"]<=>v1["postdate"]}
+ all_sorted = top_custom_anns.sort{|v1,v2| v2["postdate"]<=>v1["postdate"]} + rest_custom_anns
+ else
+ all_sorted = feeds_custom_anns.select{|v| v['is_top']}.sort{|v1,v2| v2["postdate"]<=>v1["postdate"]} + feeds_custom_anns.select{|v| v['is_top'] != true}.sort{|v1,v2| v2["postdate"]<=>v1["postdate"]}
+ end
+ all_filter = filter_by_keywords(all_sorted,params[:keywords],params[:stime],params[:etime])
+ else
+ all_filter = filter_by_keywords(custom_announcements,params[:keywords],params[:stime],params[:etime])
+ end
+ if page_data_count != 0
+ sorted = all_filter[(page_number-1)*page_data_count...page_number*page_data_count]
+ else
+ sorted = all_filter
+ end
+ annc_count = all_filter.count
+ total_pages = page_data_count == 0 ? 1 : (annc_count.to_f / page_data_count).ceil
+ [sorted,total_pages]
+ end
+ def render_view_for_annc(overridehtml=nil)
+ @key = Site.first.template
+ def render_link_to_edit(html, url_to_edit)
+ if html.scan("{{link_to_edit}}").length == 0
+ html = url_to_edit.blank? ? html : html + " #{t(:edit)}
"
+ else
+ html = url_to_edit.blank? ? html.gsub("{{link_to_edit}}","") : html.gsub("{{link_to_edit}}"," #{t(:edit)}
")
+ end
+ return html
+ end
+
+ def parsing_repeats_again(elements,d,level)
+ newhtml = []
+ oldhtml = []
+ elements.each do |el|
+ html_to_render = ""
+ data_name = el.attr("data-list")
+ wrap_elements = el.css("*[data-list][data-level='#{level}']")
+ if d[data_name]
+ d[data_name].each_with_index do |item,i|
+ element = el.inner_html
+ if wrap_elements.count > 0
+ htmls = parsing_repeats_again(wrap_elements,d[data_name][i], level + 1)
+ htmls[0].each_with_index do |html,i|
+ element = element.gsub(html,htmls[1][i])
+ end
+ end
+ item.each do |key,value|
+ if !value.kind_of?(Array)
+ value = value.nil? ? "" : value
+ element = element.gsub("{{#{key}}}",value.to_s.html_safe)
+ element = element.gsub("%7B%7B#{key}%7D%7D",value.to_s.html_safe)
+ element = render_link_to_edit(element, value) if key.eql?("url_to_edit")
+ end
+ end
+ html_to_render = html_to_render + element
+ end
+ temp = el.to_s
+ oldhtml << temp
+ temp = temp.gsub(el.inner_html, html_to_render)
+ newhtml << temp
+ end
+ end
+ [oldhtml,newhtml]
+ end
+
+
+ if @target_action == "index"
+ filename = overridehtml.nil? ? params[:layout_type] : overridehtml
+ f = File.join(Rails.root, 'app', 'templates', "#{@key}", 'modules', 'custom_announcement', "#{filename}.html.erb")
+ if !File.exists?f
+ f = File.join(Rails.root, 'app', 'templates', "#{@key}", 'modules', 'custom_announcement', "index.html.erb")
+ if !File.exists?f
+ return "Maybe the administrator has changed the theme, please select the index page design again from the page settings.
".html_safe
+ end
+ end
+ file = File.open(f)
+ doc = Nokogiri::HTML(file, nil, "UTF-8")
+ file.close
+ controller = CustomAnnouncementsController.new
+ begin
+ data = @data# rescue nil
+ rescue Exception => e
+ write_debug_file(e,'custom_announcements',@target_action) if Site::DEBUG
+ end
+ if !data.nil?
+ wrap_elements = doc.css("*[data-list][data-level='0']")
+ htmls = parsing_repeats_again(wrap_elements,data,1)
+ html = doc.to_s
+ htmls[0].each_with_index do |h,i|
+ html = html.gsub(h,htmls[1][i])
+ end
+ extras = data["extras"] || {}
+ extras["page-title"] = Page.find_by(:page_id => params[:page_id]).name rescue "" if !extras["page-title"]
+ extras.each do |key,value|
+ value = value.nil? ? "" : value
+ html = html.gsub("{{#{key}}}",value.to_s.html_safe)
+ html = html.gsub("%7B%7B#{key}%7D%7D",value.to_s.html_safe)
+ end
+ total_pages = data['total_pages'].to_i rescue 1
+ if total_pages > 1
+ html = html.gsub("{{pagination_goes_here}}",create_pagination(total_pages))
+ else
+ html = html.gsub("{{pagination_goes_here}}","");
+ end
+ html.html_safe
+ else
+ return "No content to show.
".html_safe
+ end
+ else
+ filename = overridehtml.nil? ? @target_action : overridehtml
+ f = File.join(Rails.root, 'app', 'templates', "#{@key}", 'modules', 'custom_announcement', "#{filename}.html.erb")
+ if File.exists?f
+ file = File.open(f)
+ doc = Nokogiri::HTML(file, nil, "UTF-8")
+ file.close
+ controller = CustomAnnouncementsController.new
+ begin
+ data = @data# rescue nil
+ rescue Exception => e
+ write_debug_file(e,'custom_announcements',@target_action) if Site::DEBUG
+ end
+ if data.nil?
+ return " No content to show.
".html_safe
+ end
+
+ if data.blank? || data.empty?
+ file = File.open("#{Rails.root}/app/views/errors/404.html")
+ doc = Nokogiri::HTML(file, nil, "UTF-8")
+ file.close
+ doc.to_html.html_safe
+ else
+ unless data['impressionist'].blank?
+ Thread.new do
+ impression = data['impressionist'].impressions.create
+ impression.user_id = request.session['user_id']
+ impression.controller_name = 'custom_announcements'
+ impression.action_name = @target_action
+ impression.ip_address = request.remote_ip
+ impression.session_hash = request.session.id
+ impression.request_hash = @impressionist_hash
+ impression.referrer = request.referrer
+ impression.save
+ end
+ data['impressionist'].inc(view_count: 1)
+ data["data"]["view_count"] = data["impressionist"].view_count if data["data"].present?
+ end
+ wrap_elements = doc.css("*[data-list][data-level='0']")
+ if wrap_elements.count == 0
+ wrap_element_html = doc.to_s
+ el = wrap_element_html
+ data.each do |key,value|
+ next if key.eql? 'impressionist'
+ value = value.nil? ? "" : value
+ el = el.gsub("{{#{key}}}",value.to_s.html_safe)
+ el = el.gsub("%7B%7B#{key}%7D%7D",value.to_s.html_safe)
+ end
+ el.html_safe
+ else
+ keys = data.keys
+ not_array_key = nil
+ data.keys.each do |key|
+ not_array_key = key if data["#{key}"].kind_of?(Hash)
+ end
+ htmls = parsing_repeats_again(wrap_elements,data,1)
+ html = doc.to_s
+ htmls[0].each_with_index do |h,i|
+ html = html.gsub(h,htmls[1][i])
+ end
+ extras = data["#{not_array_key}"] || {}
+ extras.each do |key,value|
+ next if key.eql? 'impressionist'
+ value = value.nil? ? "" : value
+ html = html.gsub("{{#{key}}}",value.to_s)
+ html = html.gsub("%7B%7B#{key}%7D%7D",value.to_s)
+ end
+ html = render_link_to_edit(html, data["url_to_edit"]) if !data["url_to_edit"].nil?
+ total_pages = data['total_pages'].to_i rescue 1
+ if @show_page == "false"
+ html = html.gsub("{{pagination_goes_here}}","")
+ else
+ if total_pages > 1
+ html = html.gsub("{{pagination_goes_here}}",create_pagination(total_pages))
+ else
+ html = html.gsub("{{pagination_goes_here}}","")
+ end
+ end
+ html = Nokogiri::HTML.parse(html)
+ html.css('.i-annc__page-title').remove
+ dates = html.css("*[date-format]")
+ if !dates.blank?
+ dates.each do |d|
+ begin
+ format = d.attributes["date-format"].value
+ date = DateTime.parse(d.inner_text)
+ d.inner_html = d.inner_html.gsub(d.inner_text.strip, " " + date.strftime(format))
+ rescue
+ next
+ end
+ end
+ end
+ html.css("body")[0].inner_html = html.css("body")[0].inner_html.gsub("{{page-title}}","")
+ html.css("body").to_html.html_safe
+ end
+ end
+ else
+ return "There is a problem with the design. We will try to fix it as soon as possible. Sorry for the inconvenience!! :(
".html_safe
+ end
+ end
+ end
+ def get_layouts(module_app)
+ layout_types = []
+ @key = Site.first.template
+ f = File.join("#{Rails.root}/app/templates/#{@key}/modules/#{module_app}/info.json")
+ if File.exists?f
+ info = File.read(f)
+ hash = JSON.parse(info) rescue {}
+ frontends = hash["frontend"] || []
+ frontends.each do |frontend|
+ frontend["thumbnail"] = "/assets/#{module_app}/thumbs/#{frontend["thumbnail"]}"
+ layout_types << frontend
+ end
+ end
+ if layout_types.empty?
+ Dir.glob("#{Rails.root}/app/templates/#{@key}/modules/#{module_app}/*").each do |w|
+ next if File.ftype(w).eql?("directory")
+ w = File.basename(w, ".*")
+ w = File.basename(w, ".*")
+ if w[0,1] != "_" && w[0,1] != "s" && w != "info"
+ layout_types << w
+ end
+ end
+ end
+ layout_types
+ end
+end
diff --git a/custom_announcement/app/mailers/.keep b/custom_announcement/app/mailers/.keep
new file mode 100644
index 0000000..e69de29
diff --git a/custom_announcement/app/models/.keep b/custom_announcement/app/models/.keep
new file mode 100644
index 0000000..e69de29
diff --git a/custom_announcement/app/models/custom_announcement_setting.rb b/custom_announcement/app/models/custom_announcement_setting.rb
new file mode 100644
index 0000000..2d206c2
--- /dev/null
+++ b/custom_announcement/app/models/custom_announcement_setting.rb
@@ -0,0 +1,26 @@
+class CustomAnnouncementSetting
+ include Mongoid::Document
+ include Mongoid::Timestamps
+
+ field :top_limit, type: Integer, :default => 0
+ field :pro_enabled, type: Boolean, :default => false
+ field :approvers, type: Array, :default => []
+ field :email_to, type: Array, :default => ["admins","managers","approvers"]
+ field :is_display_edit_only, type: Boolean, :default => false
+ field :only_manager_can_edit_status, type: Boolean, :default => false
+ field :top_text , type: String , localize: true
+ field :hot_text , type: String , localize: true
+ field :hidden_text , type: String , localize: true
+ has_many :custom_anns_status_settings, :autosave => true, :dependent => :destroy
+ accepts_nested_attributes_for :custom_anns_status_settings, :allow_destroy => true
+ def self.check_limit_for_user(user_id, b_id = nil)
+ limit = self.first.top_limit rescue 0
+ return true if limit == 0
+ count = CustomBulletin.where(:is_top => true, :create_user_id => user_id, :id.ne => b_id).count
+ return count < limit
+ end
+
+ def self.is_pro?
+ self.first.pro_enabled rescue false
+ end
+end
\ No newline at end of file
diff --git a/custom_announcement/app/models/custom_anns_cache.rb b/custom_announcement/app/models/custom_anns_cache.rb
new file mode 100644
index 0000000..40fc6cf
--- /dev/null
+++ b/custom_announcement/app/models/custom_anns_cache.rb
@@ -0,0 +1,6 @@
+class CustomAnnsCache
+ include Mongoid::Document
+ field :parent_id
+ field :filter_result
+ field :locale,type: String,default: 'zh_tw'
+end
\ No newline at end of file
diff --git a/custom_announcement/app/models/custom_anns_status_setting.rb b/custom_announcement/app/models/custom_anns_status_setting.rb
new file mode 100644
index 0000000..6089ee9
--- /dev/null
+++ b/custom_announcement/app/models/custom_anns_status_setting.rb
@@ -0,0 +1,7 @@
+class CustomAnnsStatusSetting
+ include Mongoid::Document
+ field :role_id
+ field :status
+ field :top_limit
+ belongs_to :custom_announcement_setting
+end
\ No newline at end of file
diff --git a/custom_announcement/app/models/custom_bulletin.rb b/custom_announcement/app/models/custom_bulletin.rb
new file mode 100644
index 0000000..14bacb7
--- /dev/null
+++ b/custom_announcement/app/models/custom_bulletin.rb
@@ -0,0 +1,246 @@
+class CustomBulletin
+ include Mongoid::Document
+ include Mongoid::Timestamps
+
+ include OrbitModel::Status
+ include OrbitModel::Impression
+ # encoding: utf-8
+ include OrbitTag::Taggable
+ include OrbitCategory::Categorizable
+ include Slug
+ require 'custom_bulletin_model/cache'
+ include ::CustomBulletinModel::Cache
+ attr_accessor :org_tag_ids
+ def tags=(ids)
+ self.org_tag_ids = self.tag_ids
+ super(ids)
+ end
+ def []=(index,value)
+ if index.to_s=='tags'
+ self.org_tag_ids = self.tag_ids
+ end
+ super(index,value)
+ end
+ SubPart.class_eval { include CustomBulletinModel::Cache }
+ Page.class_eval { include CustomBulletinModel::Cache }
+ before_destroy do
+ CustomAnnsCache.all.destroy
+ end
+ field :custom_module
+ field :bind_uid
+ field :image_display_class, type: String, default: "full-size-img" #3 choices: full-size-img , pull-left , pull-right
+ field :add_to_calendar,type: Boolean,default: false
+ field :calendar_start_date, :type => DateTime
+ field :calendar_end_date, :type => DateTime
+ field :calendar_all_day,type: Boolean,default: false
+ field :calendar_type_id
+ field :event_id
+ field :page_id
+ field :title, type: String, localize: true
+ field :subtitle, localize: true
+ field :text, localize: true
+ field :create_user_id
+ field :update_user_id
+ field :public, :type => Boolean, :default => true
+ field :postdate , :type => DateTime, :default => Time.now
+ field :deadline , :type => DateTime
+ field :rss2_sn
+ field :approved, :type => Boolean, :default => false
+ field :is_preview, :type => Boolean, :default => false
+ field :expirable_created_at, type: DateTime
+ field :rejected, :type => Boolean, :default => false
+ field :reapproval, :type => Boolean, :default => false
+ field :rejection_reason
+ field :is_external_link, :type => Boolean, :default => false
+ field :external_link
+ field :display_subtitle, :type => Boolean, :default => false
+ field :display_img, :type => Boolean, :default => false
+
+ field :email_id
+ field :email_sent, :type => Boolean, :default => false
+ field :email_sentdate , :type => DateTime
+ field :email_member_ids
+ field :other_mailaddress
+ field :image_description, localize: true
+ field :top_end_date, :type => DateTime
+ field :open_comment, :type => Boolean, :default => false
+ field :comment_end_time, :type => DateTime
+ field :comment_role, :type => Array, :default => []
+
+ mount_uploader :image, ImageUploader
+
+ has_many :custom_bulletin_links, :autosave => true, :dependent => :destroy
+ has_many :custom_bulletin_files, :autosave => true, :dependent => :destroy
+ has_many :custom_bulletin_comments, :autosave => true, :dependent => :destroy
+ has_many :custom_bulletin_carousel_images, :autosave => true, :dependent => :destroy
+ accepts_nested_attributes_for :custom_bulletin_files, :allow_destroy => true
+ accepts_nested_attributes_for :custom_bulletin_links, :allow_destroy => true
+ accepts_nested_attributes_for :custom_bulletin_carousel_images, :allow_destroy => true
+
+ before_destroy :destroy_email
+
+ scope :can_display_and_sorted, ->{where(:is_hidden=>false,:is_preview => false).any_of({:postdate.lte=>Time.now, :deadline.gte=>Time.now},{:postdate.lte=>Time.now, :deadline=>nil},{:postdate=>nil}).order(is_top: :desc,postdate: :desc,id: :desc)}
+ scope :is_approved, ->{where(:approved => true)}
+
+ before_create :set_expire
+ before_save :check_limit
+
+ after_create do
+ custom_record_callback(1)
+ end
+ after_destroy do
+ custom_record_callback(-1)
+ end
+ def custom_record_callback(num)
+ if self.custom_module && self.bind_uid.present?
+ custom_bulletin_config = CustomBulletinConfig.where(:module=>self.custom_module).first
+ if custom_bulletin_config && custom_bulletin_config.custom_record_callback.present? && custom_bulletin_config.bind_model.present?
+ target_model = custom_bulletin_config.bind_model.constantize rescue nil
+ if target_model
+ target_record = target_model.where(custom_bulletin_config.uid_field=>self.bind_uid).first
+ target_record.send(custom_bulletin_config.custom_record_callback,num)
+ end
+ end
+ end
+ end
+ def to_calendar_param
+ self.to_param
+ end
+ def calendar_type
+ CalendarType.where(:category_id.in => self.calendar_type_id)
+ end
+ def event
+ if !self.event_id.nil?
+ Event.where(:id => self.event_id).first
+ else
+ nil
+ end
+ end
+ def check_limit
+ check_status_limit(update_user)
+ end
+ def check_status_limit(user,check_only=false)
+ role_ids = user.member_profile.roles.map(&:id) rescue []
+ status_settings = (role_ids.collect do |role_id|
+ CustomAnnouncementSetting.first.custom_anns_status_settings.select{|v| v.role_id.to_s == role_id.to_s}
+ end.flatten rescue [])
+ reach_limit = []
+ if status_settings.count != 0
+ reach_limit = status_settings.collect do |status_setting|
+ status = status_setting.status
+ if status_setting.top_limit.to_i <= CustomBulletin.where(:update_user_id.in => Role.find(status_setting.role_id).member_profiles.collect(&:user).flatten.uniq.map{|v| v.id},status => true).count
+ if !check_only
+ if self[status] && !CustomBulletin.where(id:self.id).first[status]
+ self[status] = false
+ nil
+ end
+ else
+ status
+ end
+ else
+ nil
+ end
+ end.compact
+ reach_limit = reach_limit.group_by{|v| v}.collect do |k,v|
+ if v.count >= user.member_profile.roles.count
+ k
+ else
+ nil
+ end
+ end.compact
+ end
+ reach_limit
+ end
+ def slug_title
+ doc = Nokogiri::HTML(self.title)
+ title = doc.text.gsub('/','-')
+ end
+ def set_expire
+ self.expirable_created_at = Time.now if self.is_preview
+ return true
+ end
+
+ def update_user
+ User.find(update_user_id) rescue nil
+ end
+
+ def update_user=(user)
+ self.update_user_id = user.id
+ end
+
+ def email_members
+ MemberProfile.find(self.email_member_ids) rescue []
+ end
+
+ def email_addresses
+ addresses = self.email_members.collect{|member| member.email} rescue []
+ addresses = addresses +[self.other_mailaddress] if !self.other_mailaddress.blank?
+ addresses.flatten
+ end
+
+ def email
+ mail = Email.find(self.email_id) rescue nil
+ end
+
+ def expired?
+ (self.deadline < Time.now) rescue false
+ end
+
+ def destroy_email
+ mail = Email.find(self.email_id) rescue nil
+ mail.destroy if !mail.nil?
+ end
+
+ def self.remove_expired_status
+ self.where(:is_top => true, :top_end_date.ne => nil, :top_end_date.lt => Time.now).each do |b|
+ b.is_top = false
+ b.top_end_date = nil
+ b.save
+ end
+ end
+
+ def display_subtitle?
+ self.display_subtitle rescue false
+ end
+
+ def display_img?
+ self.display_img rescue false
+ end
+ def comments
+ self.custom_bulletin_comments.select{|v| !v.is_hidden}
+ end
+ def open_comment_for_user(user)
+ role_ids = user.member_profile.roles.collect{|v| v.id.to_s} rescue ['visitor']
+ self.open_comment && (self.comment_end_time.blank? || self.comment_end_time > Time.now) && (self.comment_role.any?{|v| role_ids.include?(v)} || self.comment_role.include?('visitor') || (self.comment_role.include?('all_member') && role_ids[0] != 'visitor'))
+ end
+ def statuses
+ statuses = []
+ statuses << top_text if is_top?
+ statuses << hot_text if is_hot?
+ statuses << hidden_text if is_hidden?
+ statuses
+ end
+ def statuses_with_classname
+ statuses = []
+ statuses << {"name" => top_text, "classname" => "top"} if is_top?
+ statuses << {"name" => hot_text, "classname" => "hot"} if is_hot?
+ statuses << {"name" => hidden_text, "classname" => "hidden"} if is_hidden?
+ statuses
+ end
+ def status_for_table
+ status = ""
+ status << "#{top_text} " if self.is_top
+ status << "#{hot_text} " if self.is_hot
+ status << "#{hidden_text} "if self.is_hidden
+ status.html_safe
+ end
+ def top_text
+ I18n.t("custom_announcement.status.top")
+ end
+ def hot_text
+ I18n.t("custom_announcement.status.hot")
+ end
+ def hidden_text
+ I18n.t("custom_announcement.status.hidden")
+ end
+end
diff --git a/custom_announcement/app/models/custom_bulletin_carousel_image.rb b/custom_announcement/app/models/custom_bulletin_carousel_image.rb
new file mode 100644
index 0000000..611be68
--- /dev/null
+++ b/custom_announcement/app/models/custom_bulletin_carousel_image.rb
@@ -0,0 +1,15 @@
+# encoding: utf-8
+class CustomBulletinCarouselImage
+
+ include Mongoid::Document
+ include Mongoid::Timestamps
+
+ mount_uploader :file, AssetUploader
+
+ field :description, localize: true
+
+ belongs_to :custom_bulletin
+ def description_text
+ Nokogiri::HTML(self.description.to_s).css("body").text() rescue ""
+ end
+end
diff --git a/custom_announcement/app/models/custom_bulletin_comment.rb b/custom_announcement/app/models/custom_bulletin_comment.rb
new file mode 100644
index 0000000..2068e04
--- /dev/null
+++ b/custom_announcement/app/models/custom_bulletin_comment.rb
@@ -0,0 +1,21 @@
+# encoding: utf-8
+class CustomBulletinComment
+ include Mongoid::Document
+ include Mongoid::Timestamps
+
+ field :ip
+ field :comment
+ field :account_id
+ field :is_hidden,type: Boolean,default: false
+ def time
+ self.created_at.strftime('%Y/%m/%d %H:%M')
+ end
+ def account
+ tmp = MemberProfile.where(:id => self.account_id).collect{|v| v.name}.join
+ tmp.blank? ? I18n.t('custom_announcement_visitor') : tmp
+ end
+ def roles
+ MemberProfile.where(:id => self.account_id).collect{|v| v.roles}.flatten
+ end
+ belongs_to :custom_bulletin
+end
\ No newline at end of file
diff --git a/custom_announcement/app/models/custom_bulletin_config.rb b/custom_announcement/app/models/custom_bulletin_config.rb
new file mode 100644
index 0000000..cc34327
--- /dev/null
+++ b/custom_announcement/app/models/custom_bulletin_config.rb
@@ -0,0 +1,10 @@
+class CustomBulletinConfig
+ include Mongoid::Document
+ include Mongoid::Timestamps
+ field :module
+ field :bind_model , :type => String
+ field :title_field , :type => String , :default => "slug_title"
+ field :uid_field , :type => String , :default => "uid"
+ field :custom_record_callback #if exists, it will call 'custom_record_callback(num)'
+ #where num is 1 when create bulletin, num is -1 when destroy.
+end
\ No newline at end of file
diff --git a/custom_announcement/app/models/custom_bulletin_feed.rb b/custom_announcement/app/models/custom_bulletin_feed.rb
new file mode 100644
index 0000000..3ecfc46
--- /dev/null
+++ b/custom_announcement/app/models/custom_bulletin_feed.rb
@@ -0,0 +1,11 @@
+class CustomBulletinFeed
+ include Mongoid::Document
+ include Mongoid::Timestamps
+ include Slug
+
+ field :title, as: :slug_title, type: String, localize: true
+ field :tag_ids, type: Array, default: []
+ before_save do
+ CustomBulletinFeedCache.where(uid: self.uid).destroy
+ end
+end
\ No newline at end of file
diff --git a/custom_announcement/app/models/custom_bulletin_feed_cache.rb b/custom_announcement/app/models/custom_bulletin_feed_cache.rb
new file mode 100644
index 0000000..e59135e
--- /dev/null
+++ b/custom_announcement/app/models/custom_bulletin_feed_cache.rb
@@ -0,0 +1,8 @@
+class CustomBulletinFeedCache
+ include Mongoid::Document
+ include Mongoid::Timestamps
+
+ field :content, type: String, default: ''
+ field :uid
+
+end
\ No newline at end of file
diff --git a/custom_announcement/app/models/custom_bulletin_file.rb b/custom_announcement/app/models/custom_bulletin_file.rb
new file mode 100644
index 0000000..4855c7e
--- /dev/null
+++ b/custom_announcement/app/models/custom_bulletin_file.rb
@@ -0,0 +1,38 @@
+# encoding: utf-8
+class CustomBulletinFile
+
+ include Mongoid::Document
+ include Mongoid::Timestamps
+
+ mount_uploader :file, AssetUploader
+
+ field :description, localize: true
+ field :title, localize: true
+ field :choose_lang, :type => Array, :default => ["en","zh_tw"]
+ field :privacy_type, type: String, default: 'public'
+ belongs_to :custom_bulletin
+
+ def file_title
+ if self.description.present?
+ return self.description
+ elsif self.title.present?
+ return self.title
+ else
+ return File.basename(self.file.path)
+ end
+ end
+ def enabled_for?(lang)
+ if lang.nil?
+ return true
+ else
+ return self.choose_lang.include?(lang)
+ end
+ end
+ def can_access?(user)
+ if user.nil? && self.privacy_type == 'logged_in'
+ return false
+ else
+ return true
+ end
+ end
+end
diff --git a/custom_announcement/app/models/custom_bulletin_link.rb b/custom_announcement/app/models/custom_bulletin_link.rb
new file mode 100644
index 0000000..b341cf4
--- /dev/null
+++ b/custom_announcement/app/models/custom_bulletin_link.rb
@@ -0,0 +1,25 @@
+# encoding: utf-8
+require 'uri'
+
+class CustomBulletinLink
+ include Mongoid::Document
+ include Mongoid::Timestamps
+
+ field :url
+ field :title, localize: true
+
+ belongs_to :custom_bulletin
+
+ before_validation :add_http
+
+ #validates :url, :presence => true, :format => /\A(http|https):\/\/(([a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5})|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))(:[0-9]{1,5})?(\/.*)?\Z/i
+
+ protected
+
+ def add_http
+ unless self.url[/^http:\/\//] || self.url[/^https:\/\//]
+ self.url = 'http://' + self.url
+ end
+ end
+
+end
\ No newline at end of file
diff --git a/custom_announcement/app/views/.keep b/custom_announcement/app/views/.keep
new file mode 100644
index 0000000..e69de29
diff --git a/custom_announcement/app/views/admin/custom_announcements/_approval_modal.html.erb b/custom_announcement/app/views/admin/custom_announcements/_approval_modal.html.erb
new file mode 100644
index 0000000..ddefde4
--- /dev/null
+++ b/custom_announcement/app/views/admin/custom_announcements/_approval_modal.html.erb
@@ -0,0 +1,122 @@
+
+
\ No newline at end of file
diff --git a/custom_announcement/app/views/admin/custom_announcements/_comment.html.erb b/custom_announcement/app/views/admin/custom_announcements/_comment.html.erb
new file mode 100644
index 0000000..008fd92
--- /dev/null
+++ b/custom_announcement/app/views/admin/custom_announcements/_comment.html.erb
@@ -0,0 +1,25 @@
+
+
+
+
+
+ <% @comments.each do |comment| %>
+
+ <%= comment.time %>
+ <%= comment.comment.html_safe %>
+
+ <%= comment.account %>
+ <% comment.roles.each do |role| %>
+ <%= role.title rescue '' %>
+ <% end %>
+
+ <%= comment.ip %>
+ <%= button_tag (comment.is_hidden ? t('show') : t('is_hidden')), type: 'button',"data-href" => "/#{I18n.locale}/admin/annc-comment-hidden/#{comment.id}",:onclick => "update_status(this)" ,class: (comment.is_hidden ? 'btn btn-primary' : 'btn btn-info') %>
+
+ <% end %>
+
+
\ No newline at end of file
diff --git a/custom_announcement/app/views/admin/custom_announcements/_edit_feed_form.html.erb b/custom_announcement/app/views/admin/custom_announcements/_edit_feed_form.html.erb
new file mode 100644
index 0000000..03eecc9
--- /dev/null
+++ b/custom_announcement/app/views/admin/custom_announcements/_edit_feed_form.html.erb
@@ -0,0 +1,38 @@
+<%= form_for @custom_announcement_feed, url: admin_custom_announcement_updatefeed_path(:id => @custom_announcement_feed.id), html: {class: "form-horizontal main-forms"} do |f| %>
+
+ <% @site_in_use_locales.each do |locale| %>
+ <%= f.fields_for :title_translations do |f| %>
+
+
<%= t(:title) + " (#{t(locale.to_s)})" %>
+
+ <%= f.text_field locale, data: {"fv-validation" => "required;","fv-messages" => "Cannot be empty.;"}, value: (@custom_announcement_feed.title_translations[locale.to_s] rescue nil) %>
+
+
+ <% end %>
+ <% end %>
+
+
+
+<% end %>
+
+
\ No newline at end of file
diff --git a/custom_announcement/app/views/admin/custom_announcements/_feed.html.erb b/custom_announcement/app/views/admin/custom_announcements/_feed.html.erb
new file mode 100644
index 0000000..37ee357
--- /dev/null
+++ b/custom_announcement/app/views/admin/custom_announcements/_feed.html.erb
@@ -0,0 +1,51 @@
+
+
+ <%= feed.title %>
+
+
+
+
+
+
+ RSS Feed
+
+
+ JSON Feed
+
+
\ No newline at end of file
diff --git a/custom_announcement/app/views/admin/custom_announcements/_feed_form.html.erb b/custom_announcement/app/views/admin/custom_announcements/_feed_form.html.erb
new file mode 100644
index 0000000..76967be
--- /dev/null
+++ b/custom_announcement/app/views/admin/custom_announcements/_feed_form.html.erb
@@ -0,0 +1,38 @@
+<%= form_for @custom_announcement_feed, url: admin_custom_announcement_createfeed_path, html: {class: "form-horizontal main-forms"} do |f| %>
+
+ <% @site_in_use_locales.each do |locale| %>
+ <%= f.fields_for :title_translations do |f| %>
+
+
<%= t(:title) + " (#{t(locale.to_s)})" %>
+
+ <%= f.text_field locale, data: {"fv-validation" => "required;","fv-messages" => "Cannot be empty.;"}, value: (@custom_announcement_feed.title_translations[locale.to_s] rescue nil) %>
+
+
+ <% end %>
+ <% end %>
+
+
+
+<% end %>
+
+
\ No newline at end of file
diff --git a/custom_announcement/app/views/admin/custom_announcements/_form.html.erb b/custom_announcement/app/views/admin/custom_announcements/_form.html.erb
new file mode 100644
index 0000000..44fb021
--- /dev/null
+++ b/custom_announcement/app/views/admin/custom_announcements/_form.html.erb
@@ -0,0 +1,705 @@
+<% content_for :page_specific_css do %>
+ <%= stylesheet_link_tag "lib/main-forms" %>
+ <%= stylesheet_link_tag "lib/fileupload" %>
+ <%= stylesheet_link_tag "lib/main-list" %>
+<% end %>
+
+<% content_for :page_specific_javascript do %>
+ <%= javascript_include_tag "lib/bootstrap-fileupload" %>
+ <%= javascript_include_tag "lib/bootstrap-datetimepicker" %>
+ <%= javascript_include_tag "lib/datetimepicker/datetimepicker.js" %>
+ <%= javascript_include_tag "lib/file-type" %>
+ <%= javascript_include_tag "lib/module-area" %>
+ <%= javascript_include_tag "form" %>
+<% end %>
+
+
+
+
+
+ <%= t(:language) %>
+
+ <% @site_in_use_locales.each_with_index do |locale, i| %>
+
+ <%= t(locale) %>
+
+ <% end %>
+
+
+
+
+
+ <% @site_in_use_locales.each_with_index do |locale, i| %>
+
+
">
+
+
+
+
+
+
+
+
+
+
<%= t(:content) %>
+
+
+ <%= f.fields_for :text_translations do |f| %>
+ <%= f.cktext_area locale, rows: 5, class: "input-block-level", :value => (@custom_bulletin.text_translations[locale] rescue nil) %>
+ <% end %>
+
+
+
+
+
+
+ <% end %>
+
+
+
+
+
+
+
<%= t(:file_) %>
+
+
<%= t("custom_announcement.file_description_hint") %>
+
+ <% if @custom_bulletin && !@custom_bulletin.custom_bulletin_files.blank? %>
+
+ <% @custom_bulletin.custom_bulletin_files.each_with_index do |custom_bulletin_file, i| %>
+ <%= f.fields_for :custom_bulletin_files, custom_bulletin_file do |f| %>
+ <%= render :partial => 'form_file', :object => custom_bulletin_file, :locals => {:f => f, :i => i} %>
+ <% end %>
+ <% end %>
+
+
+ <% end %>
+
+
+
+
+
+ <%= hidden_field_tag 'custom_bulletin_file_field_count', @custom_bulletin.custom_bulletin_files.count %>
+ <%= t(:add) %>
+
+
+
+
+
+
+
+
+