
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_e1e28662b4167715ca1c7f3f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_76fe2a08a961b17634da1cfe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_342722f12168c21a7b0cfd20.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b658473654eba69cf6c2eaae.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ef0d7a5199b20532eee53185.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.757812;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fe3f4cc0b4f5e45d81cc7fd9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.983887;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_01d5d70817d750ac771264b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_472f48b999a04c41566e908a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3b4b48411f35fd74af36335a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_22ba5a5415fe965e03c38ea2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.689941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_26c38224246fddae87b5a5da.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6a52b3e2bd45e8753f4ad94f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.970703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12{transform:matrix(0.240315,0.000000,-0.068909,0.240315,0,0);-ms-transform:matrix(0.240315,0.000000,-0.068909,0.240315,0,0);-webkit-transform:matrix(0.240315,0.000000,-0.068909,0.240315,0,0);}
.m8{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245005,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.245020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245020,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245061,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.245116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245116,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245120,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.245216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245216,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245248,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.245291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245291,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245327,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.245593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245593,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.245677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245677,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.245707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245707,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.245716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245716,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.245759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245759,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.245802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245802,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.245934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245934,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.246048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246048,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246109,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.246120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246120,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.246209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246209,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246218,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.246261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246261,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.246327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246327,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.246407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246407,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246466,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.246714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246714,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.246761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246761,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246830,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.246877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246877,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.246886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246886,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.246889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246889,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247159,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.247173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247173,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.247182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247182,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247195,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247214,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247434,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.247536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247536,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247552,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247693,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.247702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247702,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247759,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.247761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247761,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247861,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.247907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247907,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248143,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248273,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.248543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248543,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248643,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248668,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248777,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249082,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249289,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249309,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249327,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249411,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249473,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250789,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251514,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.251684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251684,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.252050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252050,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-1.998000px;}
.lse{letter-spacing:-0.337057px;}
.lsb{letter-spacing:-0.330000px;}
.lsc{letter-spacing:-0.264000px;}
.lsd{letter-spacing:-0.198000px;}
.lsa{letter-spacing:-0.132000px;}
.ls9{letter-spacing:-0.066000px;}
.ls8{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.066000px;}
.ls1{letter-spacing:0.132000px;}
.ls3{letter-spacing:0.198000px;}
.ls4{letter-spacing:0.264000px;}
.ls7{letter-spacing:0.330000px;}
.ls2{letter-spacing:0.396000px;}
.ls0{letter-spacing:0.462000px;}
.ls5{letter-spacing:0.528000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-168.191410px;}
.ws10{word-spacing:-19.800000px;}
.ws19{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.500000px;}
.ws12{word-spacing:-13.500000px;}
.wsc{word-spacing:-0.528000px;}
.ws7{word-spacing:-0.462000px;}
.ws9{word-spacing:-0.396000px;}
.wse{word-spacing:-0.330000px;}
.ws6{word-spacing:-0.264000px;}
.wsa{word-spacing:-0.198000px;}
.ws8{word-spacing:-0.132000px;}
.wsd{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:0.066000px;}
.ws3{word-spacing:0.132000px;}
.wsb{word-spacing:0.198000px;}
.ws5{word-spacing:0.264000px;}
.ws4{word-spacing:0.330000px;}
.ws11{word-spacing:104.544000px;}
.ws18{word-spacing:124.632000px;}
.ws16{word-spacing:163.620000px;}
.ws14{word-spacing:167.562000px;}
.ws15{word-spacing:197.586000px;}
.ws13{word-spacing:376.439400px;}
.ws17{word-spacing:611.442000px;}
._12{margin-left:-19.149600px;}
._13{margin-left:-17.100600px;}
._11{margin-left:-12.595200px;}
._10{margin-left:-7.701600px;}
._e{margin-left:-6.347400px;}
._f{margin-left:-4.482000px;}
._3{margin-left:-3.313200px;}
._1{margin-left:-1.722600px;}
._2{width:1.128600px;}
._0{width:2.970000px;}
._7{width:4.884000px;}
._9{width:6.738600px;}
._4{width:7.814400px;}
._a{width:8.857200px;}
._c{width:9.893400px;}
._d{width:11.008800px;}
._8{width:12.375000px;}
._6{width:13.549800px;}
._5{width:14.850000px;}
._b{width:17.556000px;}
._14{width:19.087200px;}
._19{width:20.941800px;}
._17{width:23.839200px;}
._18{width:25.172400px;}
._15{width:26.281200px;}
._16{width:27.548400px;}
._1d{width:30.874800px;}
._1c{width:32.122200px;}
._37{width:34.597200px;}
._36{width:36.036000px;}
._1b{width:39.144600px;}
._1a{width:44.985600px;}
._2d{width:131.989800px;}
._25{width:157.831200px;}
._2a{width:159.138000px;}
._30{width:166.957200px;}
._1f{width:173.431800px;}
._21{width:177.120000px;}
._1e{width:189.810000px;}
._2b{width:193.104000px;}
._32{width:195.971400px;}
._26{width:197.413200px;}
._22{width:211.086000px;}
._31{width:216.440400px;}
._29{width:262.507800px;}
._2e{width:277.111800px;}
._23{width:279.228600px;}
._27{width:301.309200px;}
._2c{width:393.403800px;}
._2f{width:406.285200px;}
._24{width:410.124600px;}
._20{width:417.630600px;}
._35{width:516.618000px;}
._33{width:526.883400px;}
._28{width:541.722600px;}
._34{width:583.308000px;}
.fc3{color:rgb(59,96,63);}
.fc2{color:rgb(153,152,74);}
.fc1{color:rgb(184,175,80);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:168.528467px;}
.fs1{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y43{bottom:75.637500px;}
.yd4{bottom:136.313550px;}
.y6c{bottom:136.322550px;}
.yc2{bottom:136.328550px;}
.yea{bottom:136.331550px;}
.y8b{bottom:136.334550px;}
.y13f{bottom:136.334700px;}
.y3d{bottom:155.801550px;}
.yd3{bottom:155.816550px;}
.y8a{bottom:155.822550px;}
.y6b{bottom:155.825550px;}
.y21{bottom:155.828550px;}
.yab{bottom:155.831550px;}
.ye9{bottom:155.834550px;}
.y13e{bottom:155.834700px;}
.y3c{bottom:175.304550px;}
.yd2{bottom:175.319550px;}
.y146{bottom:175.322700px;}
.y89{bottom:175.325550px;}
.y6a{bottom:175.328550px;}
.y20{bottom:175.331550px;}
.y13d{bottom:175.331700px;}
.yaa{bottom:175.334550px;}
.y3b{bottom:194.807550px;}
.yd1{bottom:194.822550px;}
.y145{bottom:194.825700px;}
.y88{bottom:194.828550px;}
.y69{bottom:194.831550px;}
.y1f{bottom:194.834550px;}
.y13c{bottom:194.834700px;}
.y3a{bottom:214.310550px;}
.yd0{bottom:214.325550px;}
.y144{bottom:214.328700px;}
.y87{bottom:214.331550px;}
.y1e{bottom:214.334550px;}
.y13b{bottom:214.334700px;}
.y39{bottom:233.813550px;}
.ycf{bottom:233.828550px;}
.y13a{bottom:233.831700px;}
.y1d{bottom:233.834550px;}
.y38{bottom:253.316550px;}
.yc1{bottom:253.328550px;}
.yce{bottom:253.331550px;}
.y1c{bottom:253.334550px;}
.y139{bottom:253.334700px;}
.y86{bottom:265.340550px;}
.y37{bottom:272.819550px;}
.yc0{bottom:272.831550px;}
.y1b{bottom:272.834550px;}
.y138{bottom:272.834700px;}
.y85{bottom:284.834550px;}
.y36{bottom:292.322550px;}
.ya9{bottom:292.331550px;}
.y1a{bottom:292.334550px;}
.y137{bottom:292.334700px;}
.ye8{bottom:304.334550px;}
.y35{bottom:311.825550px;}
.y19{bottom:311.834550px;}
.y136{bottom:311.834700px;}
.y14d{bottom:330.193800px;}
.y34{bottom:331.328550px;}
.y18{bottom:331.331550px;}
.y68{bottom:331.334550px;}
.y135{bottom:331.334700px;}
.y14c{bottom:348.193800px;}
.ya8{bottom:350.828550px;}
.y33{bottom:350.831550px;}
.y17{bottom:350.834550px;}
.y134{bottom:350.834700px;}
.y158{bottom:366.193800px;}
.ya7{bottom:370.331550px;}
.y16{bottom:370.334550px;}
.y133{bottom:370.334700px;}
.y14b{bottom:375.193800px;}
.y157{bottom:384.193800px;}
.ye7{bottom:389.828550px;}
.y15{bottom:389.834550px;}
.y132{bottom:389.834700px;}
.y14a{bottom:393.193800px;}
.y156{bottom:402.193800px;}
.y32{bottom:409.316700px;}
.ybf{bottom:409.325550px;}
.y84{bottom:409.328550px;}
.ye6{bottom:409.331550px;}
.y67{bottom:409.334550px;}
.y14{bottom:409.334700px;}
.y149{bottom:420.193800px;}
.y13{bottom:428.798550px;}
.y31{bottom:428.819700px;}
.ybe{bottom:428.828550px;}
.y83{bottom:428.831550px;}
.y143{bottom:428.831700px;}
.y66{bottom:428.834550px;}
.y131{bottom:428.834700px;}
.y148{bottom:438.193800px;}
.y12{bottom:448.301550px;}
.y30{bottom:448.322700px;}
.ya6{bottom:448.331550px;}
.y130{bottom:448.331700px;}
.y65{bottom:448.334550px;}
.y142{bottom:448.334700px;}
.y147{bottom:456.193800px;}
.ye5{bottom:467.795550px;}
.y11{bottom:467.804550px;}
.y2f{bottom:467.825700px;}
.y64{bottom:467.834550px;}
.y12f{bottom:467.834700px;}
.ye4{bottom:487.298550px;}
.y10{bottom:487.307550px;}
.y2e{bottom:487.328700px;}
.y82{bottom:487.331550px;}
.y63{bottom:487.334550px;}
.y141{bottom:487.339200px;}
.ycd{bottom:499.334550px;}
.y12e{bottom:499.334700px;}
.ya5{bottom:499.340550px;}
.ye3{bottom:506.801550px;}
.yf{bottom:506.810550px;}
.ybd{bottom:506.825550px;}
.y62{bottom:506.831550px;}
.y2d{bottom:506.831700px;}
.y81{bottom:506.834550px;}
.y140{bottom:506.842200px;}
.ya4{bottom:518.834550px;}
.ye2{bottom:526.304550px;}
.ye{bottom:526.313550px;}
.ybc{bottom:526.328550px;}
.y61{bottom:526.334550px;}
.y2c{bottom:526.334700px;}
.ye1{bottom:545.807550px;}
.yd{bottom:545.816550px;}
.ycc{bottom:545.822550px;}
.y12d{bottom:545.822700px;}
.ybb{bottom:545.831550px;}
.y80{bottom:545.834550px;}
.y2b{bottom:545.834700px;}
.y60{bottom:557.840550px;}
.ye0{bottom:565.310550px;}
.ya3{bottom:565.316550px;}
.yc{bottom:565.319550px;}
.ycb{bottom:565.325550px;}
.y12c{bottom:565.325700px;}
.y7f{bottom:565.334550px;}
.y2a{bottom:565.334700px;}
.y10e{bottom:567.850500px;}
.y5f{bottom:577.334550px;}
.ydf{bottom:584.813550px;}
.ya2{bottom:584.819550px;}
.yb{bottom:584.822550px;}
.y29{bottom:584.825550px;}
.yca{bottom:584.828550px;}
.y12b{bottom:584.828700px;}
.y7e{bottom:584.834550px;}
.y10d{bottom:590.514450px;}
.y10c{bottom:604.122450px;}
.yde{bottom:604.316550px;}
.ya1{bottom:604.322550px;}
.ya{bottom:604.325550px;}
.y28{bottom:604.328550px;}
.yc9{bottom:604.331550px;}
.y12a{bottom:604.331700px;}
.y7d{bottom:604.334550px;}
.y10b{bottom:617.730450px;}
.ydd{bottom:623.819550px;}
.ya0{bottom:623.825550px;}
.y9{bottom:623.828550px;}
.y27{bottom:623.831550px;}
.y7c{bottom:623.834550px;}
.y129{bottom:623.834700px;}
.y10a{bottom:631.338450px;}
.yba{bottom:635.840550px;}
.ydc{bottom:643.322550px;}
.y9f{bottom:643.328550px;}
.y8{bottom:643.331550px;}
.y26{bottom:643.334550px;}
.y128{bottom:643.334700px;}
.yb9{bottom:655.334550px;}
.y109{bottom:657.703950px;}
.y5e{bottom:662.813550px;}
.ydb{bottom:662.825550px;}
.y7b{bottom:662.828550px;}
.y9e{bottom:662.831550px;}
.y7{bottom:662.834550px;}
.y127{bottom:662.834700px;}
.y108{bottom:671.311950px;}
.y5d{bottom:682.316550px;}
.y25{bottom:682.325550px;}
.yda{bottom:682.328550px;}
.y7a{bottom:682.331550px;}
.y6{bottom:682.334550px;}
.y126{bottom:682.334700px;}
.y107{bottom:684.919950px;}
.y106{bottom:698.527950px;}
.y5c{bottom:701.819550px;}
.y24{bottom:701.828550px;}
.yd9{bottom:701.831550px;}
.y5{bottom:701.834550px;}
.y125{bottom:701.834700px;}
.y105{bottom:712.027950px;}
.y9d{bottom:721.307550px;}
.y5b{bottom:721.322550px;}
.yc8{bottom:721.325550px;}
.y23{bottom:721.331550px;}
.y4{bottom:721.334550px;}
.y124{bottom:721.334700px;}
.y104{bottom:738.393450px;}
.y9c{bottom:740.810550px;}
.y5a{bottom:740.825550px;}
.yc7{bottom:740.828550px;}
.y3{bottom:740.834550px;}
.y103{bottom:751.893450px;}
.y123{bottom:752.840700px;}
.y9b{bottom:760.313550px;}
.y59{bottom:760.328550px;}
.yc6{bottom:760.331550px;}
.y2{bottom:760.334550px;}
.y102{bottom:765.501450px;}
.y122{bottom:772.334700px;}
.y9a{bottom:779.816550px;}
.y22{bottom:779.825550px;}
.y58{bottom:779.831550px;}
.y79{bottom:779.834550px;}
.y1{bottom:779.834700px;}
.y101{bottom:791.866950px;}
.y99{bottom:799.319550px;}
.y57{bottom:799.334550px;}
.y100{bottom:805.474950px;}
.y98{bottom:818.822550px;}
.y56{bottom:818.834550px;}
.y121{bottom:818.834700px;}
.yff{bottom:819.082950px;}
.yb8{bottom:838.322550px;}
.y97{bottom:838.325550px;}
.y55{bottom:838.331550px;}
.y78{bottom:838.334550px;}
.y120{bottom:838.334700px;}
.y41{bottom:845.176050px;}
.yfe{bottom:845.448450px;}
.yb7{bottom:857.825550px;}
.y96{bottom:857.828550px;}
.yd8{bottom:857.831550px;}
.y54{bottom:857.834550px;}
.y11f{bottom:857.834700px;}
.yfd{bottom:859.056450px;}
.yfc{bottom:872.664450px;}
.yb6{bottom:877.328550px;}
.y77{bottom:877.331550px;}
.y53{bottom:877.334550px;}
.y11e{bottom:877.334700px;}
.yb5{bottom:896.831550px;}
.y52{bottom:896.834550px;}
.y11d{bottom:896.834700px;}
.yfb{bottom:899.029950px;}
.y40{bottom:899.224050px;}
.yfa{bottom:912.529950px;}
.y11c{bottom:916.325700px;}
.y51{bottom:916.334550px;}
.yf9{bottom:926.137950px;}
.y95{bottom:935.810550px;}
.y11b{bottom:935.828700px;}
.y76{bottom:935.831550px;}
.y50{bottom:935.834550px;}
.yf8{bottom:939.745950px;}
.y3f{bottom:950.200050px;}
.y94{bottom:955.313550px;}
.y11a{bottom:955.331700px;}
.y4f{bottom:955.334550px;}
.yf7{bottom:966.111450px;}
.yb4{bottom:974.807550px;}
.y93{bottom:974.816550px;}
.y15e{bottom:974.822700px;}
.y155{bottom:974.828700px;}
.y4e{bottom:974.834550px;}
.y119{bottom:974.834700px;}
.yf6{bottom:979.719450px;}
.yf5{bottom:993.327450px;}
.y4d{bottom:994.307550px;}
.yb3{bottom:994.310550px;}
.y92{bottom:994.319550px;}
.y75{bottom:994.325550px;}
.y15d{bottom:994.325700px;}
.yc5{bottom:994.328550px;}
.y154{bottom:994.331700px;}
.y118{bottom:994.334700px;}
.y3e{bottom:1001.176050px;}
.yd7{bottom:1006.340550px;}
.y4c{bottom:1013.810550px;}
.yb2{bottom:1013.813550px;}
.y91{bottom:1013.822550px;}
.y74{bottom:1013.828550px;}
.y15c{bottom:1013.828700px;}
.yc4{bottom:1013.831550px;}
.y117{bottom:1013.834700px;}
.yf4{bottom:1019.692950px;}
.yd6{bottom:1025.834550px;}
.yf3{bottom:1033.192950px;}
.y4b{bottom:1033.313550px;}
.yb1{bottom:1033.316550px;}
.y90{bottom:1033.325550px;}
.y73{bottom:1033.331550px;}
.y15b{bottom:1033.331700px;}
.yc3{bottom:1033.334550px;}
.y116{bottom:1033.334700px;}
.yf2{bottom:1046.800950px;}
.y42{bottom:1050.991950px;}
.y4a{bottom:1052.816550px;}
.y153{bottom:1052.816700px;}
.yb0{bottom:1052.819550px;}
.y8f{bottom:1052.828550px;}
.y115{bottom:1052.828700px;}
.y72{bottom:1052.834550px;}
.y15a{bottom:1052.834700px;}
.yf1{bottom:1060.408950px;}
.y49{bottom:1072.319550px;}
.y152{bottom:1072.319700px;}
.yaf{bottom:1072.322550px;}
.yd5{bottom:1072.325550px;}
.y8e{bottom:1072.331550px;}
.y114{bottom:1072.331700px;}
.y71{bottom:1072.334550px;}
.y159{bottom:1072.334700px;}
.yf0{bottom:1073.908950px;}
.y48{bottom:1091.822550px;}
.y151{bottom:1091.822700px;}
.yae{bottom:1091.825550px;}
.y70{bottom:1091.828550px;}
.y8d{bottom:1091.834550px;}
.y113{bottom:1091.834700px;}
.yef{bottom:1100.274450px;}
.y47{bottom:1111.325550px;}
.y150{bottom:1111.325700px;}
.yad{bottom:1111.328550px;}
.y6f{bottom:1111.331550px;}
.y8c{bottom:1111.334550px;}
.y112{bottom:1111.334700px;}
.yee{bottom:1113.774450px;}
.y46{bottom:1130.828550px;}
.y14f{bottom:1130.828700px;}
.yac{bottom:1130.831550px;}
.y6e{bottom:1130.834550px;}
.y111{bottom:1130.834700px;}
.yed{bottom:1131.418950px;}
.yec{bottom:1144.918950px;}
.y45{bottom:1150.331550px;}
.y14e{bottom:1150.331700px;}
.y6d{bottom:1150.334550px;}
.y110{bottom:1150.334700px;}
.y44{bottom:1169.834550px;}
.y10f{bottom:1169.834700px;}
.yeb{bottom:1175.884200px;}
.hb{height:33.328125px;}
.h9{height:36.571289px;}
.ha{height:37.494141px;}
.h8{height:41.660156px;}
.h3{height:43.989258px;}
.hc{height:44.326172px;}
.hd{height:45.058594px;}
.h2{height:45.826172px;}
.h7{height:53.894531px;}
.h6{height:54.000000px;}
.h5{height:118.002842px;}
.h4{height:144.187500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x2{left:106.291350px;}
.x7{left:141.372300px;}
.x8{left:190.524300px;}
.x6{left:220.332300px;}
.x14{left:326.474400px;}
.x9{left:378.086250px;}
.x3{left:428.221350px;}
.x5{left:459.212550px;}
.xd{left:463.464600px;}
.x13{left:467.703600px;}
.x4{left:480.478350px;}
.x15{left:595.139400px;}
.x12{left:667.706100px;}
.x11{left:673.848600px;}
.xe{left:690.642600px;}
.xa{left:727.981500px;}
.x10{left:752.297100px;}
.xf{left:764.609100px;}
.xc{left:798.874050px;}
.xb{left:802.428600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.776000pt;}
.lse{letter-spacing:-0.299606pt;}
.lsb{letter-spacing:-0.293333pt;}
.lsc{letter-spacing:-0.234667pt;}
.lsd{letter-spacing:-0.176000pt;}
.lsa{letter-spacing:-0.117333pt;}
.ls9{letter-spacing:-0.058667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.058667pt;}
.ls1{letter-spacing:0.117333pt;}
.ls3{letter-spacing:0.176000pt;}
.ls4{letter-spacing:0.234667pt;}
.ls7{letter-spacing:0.293333pt;}
.ls2{letter-spacing:0.352000pt;}
.ls0{letter-spacing:0.410667pt;}
.ls5{letter-spacing:0.469333pt;}
.ws0{word-spacing:-149.503475pt;}
.ws10{word-spacing:-17.600000pt;}
.ws19{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.666667pt;}
.ws12{word-spacing:-12.000000pt;}
.wsc{word-spacing:-0.469333pt;}
.ws7{word-spacing:-0.410667pt;}
.ws9{word-spacing:-0.352000pt;}
.wse{word-spacing:-0.293333pt;}
.ws6{word-spacing:-0.234667pt;}
.wsa{word-spacing:-0.176000pt;}
.ws8{word-spacing:-0.117333pt;}
.wsd{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:0.058667pt;}
.ws3{word-spacing:0.117333pt;}
.wsb{word-spacing:0.176000pt;}
.ws5{word-spacing:0.234667pt;}
.ws4{word-spacing:0.293333pt;}
.ws11{word-spacing:92.928000pt;}
.ws18{word-spacing:110.784000pt;}
.ws16{word-spacing:145.440000pt;}
.ws14{word-spacing:148.944000pt;}
.ws15{word-spacing:175.632000pt;}
.ws13{word-spacing:334.612800pt;}
.ws17{word-spacing:543.504000pt;}
._12{margin-left:-17.021867pt;}
._13{margin-left:-15.200533pt;}
._11{margin-left:-11.195733pt;}
._10{margin-left:-6.845867pt;}
._e{margin-left:-5.642133pt;}
._f{margin-left:-3.984000pt;}
._3{margin-left:-2.945067pt;}
._1{margin-left:-1.531200pt;}
._2{width:1.003200pt;}
._0{width:2.640000pt;}
._7{width:4.341333pt;}
._9{width:5.989867pt;}
._4{width:6.946133pt;}
._a{width:7.873067pt;}
._c{width:8.794133pt;}
._d{width:9.785600pt;}
._8{width:11.000000pt;}
._6{width:12.044267pt;}
._5{width:13.200000pt;}
._b{width:15.605333pt;}
._14{width:16.966400pt;}
._19{width:18.614933pt;}
._17{width:21.190400pt;}
._18{width:22.375467pt;}
._15{width:23.361067pt;}
._16{width:24.487467pt;}
._1d{width:27.444267pt;}
._1c{width:28.553067pt;}
._37{width:30.753067pt;}
._36{width:32.032000pt;}
._1b{width:34.795200pt;}
._1a{width:39.987200pt;}
._2d{width:117.324267pt;}
._25{width:140.294400pt;}
._2a{width:141.456000pt;}
._30{width:148.406400pt;}
._1f{width:154.161600pt;}
._21{width:157.440000pt;}
._1e{width:168.720000pt;}
._2b{width:171.648000pt;}
._32{width:174.196800pt;}
._26{width:175.478400pt;}
._22{width:187.632000pt;}
._31{width:192.391467pt;}
._29{width:233.340267pt;}
._2e{width:246.321600pt;}
._23{width:248.203200pt;}
._27{width:267.830400pt;}
._2c{width:349.692267pt;}
._2f{width:361.142400pt;}
._24{width:364.555200pt;}
._20{width:371.227200pt;}
._35{width:459.216000pt;}
._33{width:468.340800pt;}
._28{width:481.531200pt;}
._34{width:518.496000pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:149.803081pt;}
.fs1{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:67.233333pt;}
.yd4{bottom:121.167600pt;}
.y6c{bottom:121.175600pt;}
.yc2{bottom:121.180933pt;}
.yea{bottom:121.183600pt;}
.y8b{bottom:121.186267pt;}
.y13f{bottom:121.186400pt;}
.y3d{bottom:138.490267pt;}
.yd3{bottom:138.503600pt;}
.y8a{bottom:138.508933pt;}
.y6b{bottom:138.511600pt;}
.y21{bottom:138.514267pt;}
.yab{bottom:138.516933pt;}
.ye9{bottom:138.519600pt;}
.y13e{bottom:138.519733pt;}
.y3c{bottom:155.826267pt;}
.yd2{bottom:155.839600pt;}
.y146{bottom:155.842400pt;}
.y89{bottom:155.844933pt;}
.y6a{bottom:155.847600pt;}
.y20{bottom:155.850267pt;}
.y13d{bottom:155.850400pt;}
.yaa{bottom:155.852933pt;}
.y3b{bottom:173.162267pt;}
.yd1{bottom:173.175600pt;}
.y145{bottom:173.178400pt;}
.y88{bottom:173.180933pt;}
.y69{bottom:173.183600pt;}
.y1f{bottom:173.186267pt;}
.y13c{bottom:173.186400pt;}
.y3a{bottom:190.498267pt;}
.yd0{bottom:190.511600pt;}
.y144{bottom:190.514400pt;}
.y87{bottom:190.516933pt;}
.y1e{bottom:190.519600pt;}
.y13b{bottom:190.519733pt;}
.y39{bottom:207.834267pt;}
.ycf{bottom:207.847600pt;}
.y13a{bottom:207.850400pt;}
.y1d{bottom:207.852933pt;}
.y38{bottom:225.170267pt;}
.yc1{bottom:225.180933pt;}
.yce{bottom:225.183600pt;}
.y1c{bottom:225.186267pt;}
.y139{bottom:225.186400pt;}
.y86{bottom:235.858267pt;}
.y37{bottom:242.506267pt;}
.yc0{bottom:242.516933pt;}
.y1b{bottom:242.519600pt;}
.y138{bottom:242.519733pt;}
.y85{bottom:253.186267pt;}
.y36{bottom:259.842267pt;}
.ya9{bottom:259.850267pt;}
.y1a{bottom:259.852933pt;}
.y137{bottom:259.853067pt;}
.ye8{bottom:270.519600pt;}
.y35{bottom:277.178267pt;}
.y19{bottom:277.186267pt;}
.y136{bottom:277.186400pt;}
.y14d{bottom:293.505600pt;}
.y34{bottom:294.514267pt;}
.y18{bottom:294.516933pt;}
.y68{bottom:294.519600pt;}
.y135{bottom:294.519733pt;}
.y14c{bottom:309.505600pt;}
.ya8{bottom:311.847600pt;}
.y33{bottom:311.850267pt;}
.y17{bottom:311.852933pt;}
.y134{bottom:311.853067pt;}
.y158{bottom:325.505600pt;}
.ya7{bottom:329.183600pt;}
.y16{bottom:329.186267pt;}
.y133{bottom:329.186400pt;}
.y14b{bottom:333.505600pt;}
.y157{bottom:341.505600pt;}
.ye7{bottom:346.514267pt;}
.y15{bottom:346.519600pt;}
.y132{bottom:346.519733pt;}
.y14a{bottom:349.505600pt;}
.y156{bottom:357.505600pt;}
.y32{bottom:363.837067pt;}
.ybf{bottom:363.844933pt;}
.y84{bottom:363.847600pt;}
.ye6{bottom:363.850267pt;}
.y67{bottom:363.852933pt;}
.y14{bottom:363.853067pt;}
.y149{bottom:373.505600pt;}
.y13{bottom:381.154267pt;}
.y31{bottom:381.173067pt;}
.ybe{bottom:381.180933pt;}
.y83{bottom:381.183600pt;}
.y143{bottom:381.183733pt;}
.y66{bottom:381.186267pt;}
.y131{bottom:381.186400pt;}
.y148{bottom:389.505600pt;}
.y12{bottom:398.490267pt;}
.y30{bottom:398.509067pt;}
.ya6{bottom:398.516933pt;}
.y130{bottom:398.517067pt;}
.y65{bottom:398.519600pt;}
.y142{bottom:398.519733pt;}
.y147{bottom:405.505600pt;}
.ye5{bottom:415.818267pt;}
.y11{bottom:415.826267pt;}
.y2f{bottom:415.845067pt;}
.y64{bottom:415.852933pt;}
.y12f{bottom:415.853067pt;}
.ye4{bottom:433.154267pt;}
.y10{bottom:433.162267pt;}
.y2e{bottom:433.181067pt;}
.y82{bottom:433.183600pt;}
.y63{bottom:433.186267pt;}
.y141{bottom:433.190400pt;}
.ycd{bottom:443.852933pt;}
.y12e{bottom:443.853067pt;}
.ya5{bottom:443.858267pt;}
.ye3{bottom:450.490267pt;}
.yf{bottom:450.498267pt;}
.ybd{bottom:450.511600pt;}
.y62{bottom:450.516933pt;}
.y2d{bottom:450.517067pt;}
.y81{bottom:450.519600pt;}
.y140{bottom:450.526400pt;}
.ya4{bottom:461.186267pt;}
.ye2{bottom:467.826267pt;}
.ye{bottom:467.834267pt;}
.ybc{bottom:467.847600pt;}
.y61{bottom:467.852933pt;}
.y2c{bottom:467.853067pt;}
.ye1{bottom:485.162267pt;}
.yd{bottom:485.170267pt;}
.ycc{bottom:485.175600pt;}
.y12d{bottom:485.175733pt;}
.ybb{bottom:485.183600pt;}
.y80{bottom:485.186267pt;}
.y2b{bottom:485.186400pt;}
.y60{bottom:495.858267pt;}
.ye0{bottom:502.498267pt;}
.ya3{bottom:502.503600pt;}
.yc{bottom:502.506267pt;}
.ycb{bottom:502.511600pt;}
.y12c{bottom:502.511733pt;}
.y7f{bottom:502.519600pt;}
.y2a{bottom:502.519733pt;}
.y10e{bottom:504.756000pt;}
.y5f{bottom:513.186267pt;}
.ydf{bottom:519.834267pt;}
.ya2{bottom:519.839600pt;}
.yb{bottom:519.842267pt;}
.y29{bottom:519.844933pt;}
.yca{bottom:519.847600pt;}
.y12b{bottom:519.847733pt;}
.y7e{bottom:519.852933pt;}
.y10d{bottom:524.901733pt;}
.y10c{bottom:536.997733pt;}
.yde{bottom:537.170267pt;}
.ya1{bottom:537.175600pt;}
.ya{bottom:537.178267pt;}
.y28{bottom:537.180933pt;}
.yc9{bottom:537.183600pt;}
.y12a{bottom:537.183733pt;}
.y7d{bottom:537.186267pt;}
.y10b{bottom:549.093733pt;}
.ydd{bottom:554.506267pt;}
.ya0{bottom:554.511600pt;}
.y9{bottom:554.514267pt;}
.y27{bottom:554.516933pt;}
.y7c{bottom:554.519600pt;}
.y129{bottom:554.519733pt;}
.y10a{bottom:561.189733pt;}
.yba{bottom:565.191600pt;}
.ydc{bottom:571.842267pt;}
.y9f{bottom:571.847600pt;}
.y8{bottom:571.850267pt;}
.y26{bottom:571.852933pt;}
.y128{bottom:571.853067pt;}
.yb9{bottom:582.519600pt;}
.y109{bottom:584.625733pt;}
.y5e{bottom:589.167600pt;}
.ydb{bottom:589.178267pt;}
.y7b{bottom:589.180933pt;}
.y9e{bottom:589.183600pt;}
.y7{bottom:589.186267pt;}
.y127{bottom:589.186400pt;}
.y108{bottom:596.721733pt;}
.y5d{bottom:606.503600pt;}
.y25{bottom:606.511600pt;}
.yda{bottom:606.514267pt;}
.y7a{bottom:606.516933pt;}
.y6{bottom:606.519600pt;}
.y126{bottom:606.519733pt;}
.y107{bottom:608.817733pt;}
.y106{bottom:620.913733pt;}
.y5c{bottom:623.839600pt;}
.y24{bottom:623.847600pt;}
.yd9{bottom:623.850267pt;}
.y5{bottom:623.852933pt;}
.y125{bottom:623.853067pt;}
.y105{bottom:632.913733pt;}
.y9d{bottom:641.162267pt;}
.y5b{bottom:641.175600pt;}
.yc8{bottom:641.178267pt;}
.y23{bottom:641.183600pt;}
.y4{bottom:641.186267pt;}
.y124{bottom:641.186400pt;}
.y104{bottom:656.349733pt;}
.y9c{bottom:658.498267pt;}
.y5a{bottom:658.511600pt;}
.yc7{bottom:658.514267pt;}
.y3{bottom:658.519600pt;}
.y103{bottom:668.349733pt;}
.y123{bottom:669.191733pt;}
.y9b{bottom:675.834267pt;}
.y59{bottom:675.847600pt;}
.yc6{bottom:675.850267pt;}
.y2{bottom:675.852933pt;}
.y102{bottom:680.445733pt;}
.y122{bottom:686.519733pt;}
.y9a{bottom:693.170267pt;}
.y22{bottom:693.178267pt;}
.y58{bottom:693.183600pt;}
.y79{bottom:693.186267pt;}
.y1{bottom:693.186400pt;}
.y101{bottom:703.881733pt;}
.y99{bottom:710.506267pt;}
.y57{bottom:710.519600pt;}
.y100{bottom:715.977733pt;}
.y98{bottom:727.842267pt;}
.y56{bottom:727.852933pt;}
.y121{bottom:727.853067pt;}
.yff{bottom:728.073733pt;}
.yb8{bottom:745.175600pt;}
.y97{bottom:745.178267pt;}
.y55{bottom:745.183600pt;}
.y78{bottom:745.186267pt;}
.y120{bottom:745.186400pt;}
.y41{bottom:751.267600pt;}
.yfe{bottom:751.509733pt;}
.yb7{bottom:762.511600pt;}
.y96{bottom:762.514267pt;}
.yd8{bottom:762.516933pt;}
.y54{bottom:762.519600pt;}
.y11f{bottom:762.519733pt;}
.yfd{bottom:763.605733pt;}
.yfc{bottom:775.701733pt;}
.yb6{bottom:779.847600pt;}
.y77{bottom:779.850267pt;}
.y53{bottom:779.852933pt;}
.y11e{bottom:779.853067pt;}
.yb5{bottom:797.183600pt;}
.y52{bottom:797.186267pt;}
.y11d{bottom:797.186400pt;}
.yfb{bottom:799.137733pt;}
.y40{bottom:799.310267pt;}
.yfa{bottom:811.137733pt;}
.y11c{bottom:814.511733pt;}
.y51{bottom:814.519600pt;}
.yf9{bottom:823.233733pt;}
.y95{bottom:831.831600pt;}
.y11b{bottom:831.847733pt;}
.y76{bottom:831.850267pt;}
.y50{bottom:831.852933pt;}
.yf8{bottom:835.329733pt;}
.y3f{bottom:844.622267pt;}
.y94{bottom:849.167600pt;}
.y11a{bottom:849.183733pt;}
.y4f{bottom:849.186267pt;}
.yf7{bottom:858.765733pt;}
.yb4{bottom:866.495600pt;}
.y93{bottom:866.503600pt;}
.y15e{bottom:866.509067pt;}
.y155{bottom:866.514400pt;}
.y4e{bottom:866.519600pt;}
.y119{bottom:866.519733pt;}
.yf6{bottom:870.861733pt;}
.yf5{bottom:882.957733pt;}
.y4d{bottom:883.828933pt;}
.yb3{bottom:883.831600pt;}
.y92{bottom:883.839600pt;}
.y75{bottom:883.844933pt;}
.y15d{bottom:883.845067pt;}
.yc5{bottom:883.847600pt;}
.y154{bottom:883.850400pt;}
.y118{bottom:883.853067pt;}
.y3e{bottom:889.934267pt;}
.yd7{bottom:894.524933pt;}
.y4c{bottom:901.164933pt;}
.yb2{bottom:901.167600pt;}
.y91{bottom:901.175600pt;}
.y74{bottom:901.180933pt;}
.y15c{bottom:901.181067pt;}
.yc4{bottom:901.183600pt;}
.y117{bottom:901.186400pt;}
.yf4{bottom:906.393733pt;}
.yd6{bottom:911.852933pt;}
.yf3{bottom:918.393733pt;}
.y4b{bottom:918.500933pt;}
.yb1{bottom:918.503600pt;}
.y90{bottom:918.511600pt;}
.y73{bottom:918.516933pt;}
.y15b{bottom:918.517067pt;}
.yc3{bottom:918.519600pt;}
.y116{bottom:918.519733pt;}
.yf2{bottom:930.489733pt;}
.y42{bottom:934.215067pt;}
.y4a{bottom:935.836933pt;}
.y153{bottom:935.837067pt;}
.yb0{bottom:935.839600pt;}
.y8f{bottom:935.847600pt;}
.y115{bottom:935.847733pt;}
.y72{bottom:935.852933pt;}
.y15a{bottom:935.853067pt;}
.yf1{bottom:942.585733pt;}
.y49{bottom:953.172933pt;}
.y152{bottom:953.173067pt;}
.yaf{bottom:953.175600pt;}
.yd5{bottom:953.178267pt;}
.y8e{bottom:953.183600pt;}
.y114{bottom:953.183733pt;}
.y71{bottom:953.186267pt;}
.y159{bottom:953.186400pt;}
.yf0{bottom:954.585733pt;}
.y48{bottom:970.508933pt;}
.y151{bottom:970.509067pt;}
.yae{bottom:970.511600pt;}
.y70{bottom:970.514267pt;}
.y8d{bottom:970.519600pt;}
.y113{bottom:970.519733pt;}
.yef{bottom:978.021733pt;}
.y47{bottom:987.844933pt;}
.y150{bottom:987.845067pt;}
.yad{bottom:987.847600pt;}
.y6f{bottom:987.850267pt;}
.y8c{bottom:987.852933pt;}
.y112{bottom:987.853067pt;}
.yee{bottom:990.021733pt;}
.y46{bottom:1005.180933pt;}
.y14f{bottom:1005.181067pt;}
.yac{bottom:1005.183600pt;}
.y6e{bottom:1005.186267pt;}
.y111{bottom:1005.186400pt;}
.yed{bottom:1005.705733pt;}
.yec{bottom:1017.705733pt;}
.y45{bottom:1022.516933pt;}
.y14e{bottom:1022.517067pt;}
.y6d{bottom:1022.519600pt;}
.y110{bottom:1022.519733pt;}
.y44{bottom:1039.852933pt;}
.y10f{bottom:1039.853067pt;}
.yeb{bottom:1045.230400pt;}
.hb{height:29.625000pt;}
.h9{height:32.507812pt;}
.ha{height:33.328125pt;}
.h8{height:37.031250pt;}
.h3{height:39.101562pt;}
.hc{height:39.401042pt;}
.hd{height:40.052083pt;}
.h2{height:40.734375pt;}
.h7{height:47.906250pt;}
.h6{height:48.000000pt;}
.h5{height:104.891415pt;}
.h4{height:128.166667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x2{left:94.481200pt;}
.x7{left:125.664267pt;}
.x8{left:169.354933pt;}
.x6{left:195.850933pt;}
.x14{left:290.199467pt;}
.x9{left:336.076667pt;}
.x3{left:380.641200pt;}
.x5{left:408.188933pt;}
.xd{left:411.968533pt;}
.x13{left:415.736533pt;}
.x4{left:427.091867pt;}
.x15{left:529.012800pt;}
.x12{left:593.516533pt;}
.x11{left:598.976533pt;}
.xe{left:613.904533pt;}
.xa{left:647.094667pt;}
.x10{left:668.708533pt;}
.xf{left:679.652533pt;}
.xc{left:710.110267pt;}
.xb{left:713.269867pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  