
    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_8e68e2715a1938608ad567a0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.964789;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_d9533aa866e56468df5aab61.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.074036;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_b880228adebd9c7bc53444fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.025879;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_dbb19fd772bd4c097df0dd66.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_dfbcc671f793895dc7be7c2a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.074000;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_d7cebac60615d879c1514320.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.964844;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_fffad5c5d2c78795798b2148.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919000;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_eea2f67ea05e13faea6889b3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914000;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_a336804a94bcff5a5fb215c7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.989746;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_f1b5d35245308ba562342028.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.901855;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;}
.me{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.245153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245153,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245227,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245462,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.245679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245679,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.245754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245754,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245787,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245993,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.246024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246024,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.246211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246211,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246349,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.246428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246428,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.246495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246495,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.246569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246569,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246634,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.246636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246636,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.246837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246837,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.246981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246981,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247110,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247230,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247268,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247289,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.247708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247708,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.247816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247816,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247842,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.247849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247849,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.247859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247859,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247931,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247943,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248069,0.000000,0.000000,0.250000,0,0);}
.m59{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);}
.m6a{transform:matrix(0.248488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248488,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248691,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248766,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);}
.m66{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);}
.m4b{transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249151,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249187,0.000000,0.000000,0.250000,0,0);}
.m61{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);}
.m52{transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);}
.m65{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);}
.m70{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);}
.m38{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);}
.m5e{transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,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);}
.md{transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m2f{transform:matrix(0.250471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250471,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250639,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250943,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.251048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251048,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.251096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251096,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251103,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251134,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.251211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251211,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251213,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251359,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251837,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251876,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.252022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252022,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252505,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.252565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252565,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.252579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252579,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.252696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252696,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.252773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252773,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.252782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252782,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252856,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252967,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253019,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.253268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253268,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.253356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253356,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253409,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.253967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253967,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254084,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.254153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254153,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.254172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254172,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.254256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254256,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.254378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254378,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254512,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.254706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254706,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254725,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.062700px;}
.ls3{letter-spacing:0.125400px;}
.ls4{letter-spacing:0.188100px;}
.ls2{letter-spacing:0.250800px;}
.ls5{letter-spacing:0.313500px;}
.ls6{letter-spacing:1.065900px;}
.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;}
}
.ws3{word-spacing:-17.242500px;}
.ws36{word-spacing:-16.678200px;}
.ws1{word-spacing:-15.990000px;}
.ws24{word-spacing:-15.612300px;}
.ws13{word-spacing:-4.702500px;}
.ws2d{word-spacing:-4.639800px;}
.ws7{word-spacing:-4.514400px;}
.ws19{word-spacing:-4.451700px;}
.ws1d{word-spacing:-4.389000px;}
.wse{word-spacing:-4.263600px;}
.ws14{word-spacing:-4.138200px;}
.ws2c{word-spacing:-4.012800px;}
.ws11{word-spacing:-3.762000px;}
.ws1c{word-spacing:-3.573900px;}
.ws20{word-spacing:-3.511200px;}
.ws10{word-spacing:-3.448500px;}
.ws15{word-spacing:-3.009600px;}
.ws2e{word-spacing:-2.821500px;}
.ws18{word-spacing:-2.696100px;}
.ws22{word-spacing:-2.570700px;}
.ws32{word-spacing:-2.508000px;}
.ws12{word-spacing:-2.319900px;}
.ws27{word-spacing:-2.257200px;}
.ws21{word-spacing:-2.194500px;}
.ws16{word-spacing:-2.006400px;}
.wsd{word-spacing:-1.818300px;}
.ws28{word-spacing:-1.755600px;}
.ws29{word-spacing:-1.630200px;}
.ws2b{word-spacing:-1.567500px;}
.ws34{word-spacing:-1.504800px;}
.ws26{word-spacing:-1.316700px;}
.ws2a{word-spacing:-0.940500px;}
.wsf{word-spacing:-0.752400px;}
.ws25{word-spacing:-0.564300px;}
.ws1b{word-spacing:-0.438900px;}
.ws35{word-spacing:-0.376200px;}
.ws23{word-spacing:-0.313500px;}
.ws1a{word-spacing:-0.250800px;}
.ws1e{word-spacing:-0.188100px;}
.ws1f{word-spacing:-0.125400px;}
.ws2{word-spacing:-0.066000px;}
.ws17{word-spacing:-0.062700px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:0.689700px;}
.ws37{word-spacing:1.740000px;}
.ws39{word-spacing:1.860000px;}
.ws9{word-spacing:2.006400px;}
.ws8{word-spacing:2.319900px;}
.ws6{word-spacing:2.758800px;}
.ws5{word-spacing:3.762000px;}
.ws33{word-spacing:3.887400px;}
.ws38{word-spacing:4.380000px;}
.wsb{word-spacing:7.022400px;}
.ws2f{word-spacing:8.088300px;}
.wsa{word-spacing:9.154200px;}
.ws4{word-spacing:9.593100px;}
.ws31{word-spacing:16.615500px;}
.ws30{word-spacing:17.367900px;}
._3{margin-left:-10.800000px;}
._4{margin-left:-7.200000px;}
._5{margin-left:-6.111000px;}
._1{margin-left:-4.536000px;}
._0{margin-left:-3.024000px;}
._2{margin-left:-1.800000px;}
._7{width:1.329750px;}
._6{width:2.871000px;}
._f{width:4.332570px;}
._c{width:5.605050px;}
._9{width:7.396800px;}
._e{width:8.464500px;}
._10{width:9.812550px;}
._15{width:10.947930px;}
._11{width:14.094960px;}
._12{width:25.456200px;}
._13{width:26.986590px;}
._14{width:475.794000px;}
._b{width:504.702000px;}
._a{width:506.880000px;}
._d{width:508.134000px;}
._8{width:520.146000px;}
.fc4{color:rgb(246,174,45);}
.fc2{color:rgb(74,114,132);}
.fc1{color:rgb(245,174,38);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(251,251,251);}
.fs7{font-size:42.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.500000px;}
.fs3{font-size:62.700000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:87.000000px;}
.fs0{font-size:126.000000px;}
.fs1{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y16{bottom:48.211050px;}
.y139{bottom:91.891350px;}
.y138{bottom:104.491350px;}
.y137{bottom:117.091350px;}
.y11f{bottom:127.468650px;}
.y34{bottom:131.478450px;}
.y99{bottom:131.552025px;}
.ybd{bottom:134.295450px;}
.y58{bottom:139.641375px;}
.y136{bottom:142.291350px;}
.ydf{bottom:145.551300px;}
.y11e{bottom:151.473300px;}
.y135{bottom:154.891350px;}
.y33{bottom:156.978450px;}
.y98{bottom:157.055250px;}
.ybc{bottom:159.795450px;}
.yde{bottom:171.051300px;}
.y11d{bottom:175.471725px;}
.y57{bottom:180.098550px;}
.y32{bottom:182.478450px;}
.y97{bottom:182.555250px;}
.ybb{bottom:185.295450px;}
.y76{bottom:185.956800px;}
.ydd{bottom:196.551300px;}
.y56{bottom:205.598550px;}
.y96{bottom:208.055250px;}
.y75{bottom:211.456800px;}
.y11c{bottom:212.872275px;}
.y31{bottom:221.794125px;}
.yba{bottom:222.122250px;}
.y55{bottom:231.098550px;}
.y95{bottom:233.555250px;}
.ydc{bottom:234.878100px;}
.y11b{bottom:236.870700px;}
.y74{bottom:236.956800px;}
.y30{bottom:247.297350px;}
.yb9{bottom:247.622250px;}
.y54{bottom:256.598550px;}
.ydb{bottom:260.378100px;}
.y11a{bottom:260.869125px;}
.y73{bottom:262.456800px;}
.y94{bottom:271.606800px;}
.y2f{bottom:272.797350px;}
.yb8{bottom:273.122250px;}
.yfb{bottom:273.996150px;}
.y53{bottom:282.098550px;}
.yda{bottom:285.878100px;}
.y72{bottom:287.956800px;}
.y93{bottom:297.106800px;}
.y2e{bottom:298.297350px;}
.yb7{bottom:298.622250px;}
.yfa{bottom:299.496150px;}
.y119{bottom:299.508000px;}
.y52{bottom:307.581975px;}
.yd9{bottom:311.378100px;}
.y92{bottom:322.606800px;}
.y118{bottom:323.508000px;}
.y2d{bottom:323.800125px;}
.yb6{bottom:324.122250px;}
.yf9{bottom:324.996150px;}
.y71{bottom:329.519850px;}
.yd8{bottom:336.878100px;}
.y51{bottom:346.455975px;}
.y117{bottom:347.520750px;}
.y91{bottom:348.106800px;}
.yb5{bottom:349.622250px;}
.y70{bottom:355.019850px;}
.yd7{bottom:362.378100px;}
.y2c{bottom:363.113025px;}
.yf8{bottom:363.299400px;}
.y116{bottom:371.519175px;}
.y50{bottom:371.959200px;}
.y90{bottom:373.606800px;}
.y6f{bottom:380.519850px;}
.y2b{bottom:388.616250px;}
.yf7{bottom:388.799400px;}
.yb4{bottom:390.051300px;}
.y4f{bottom:397.462425px;}
.y8f{bottom:399.106800px;}
.yd6{bottom:400.693050px;}
.y6e{bottom:406.019850px;}
.y115{bottom:408.919725px;}
.y2a{bottom:414.116250px;}
.yf6{bottom:414.299400px;}
.yb3{bottom:415.551300px;}
.yd5{bottom:426.193050px;}
.y8e{bottom:430.434900px;}
.y6d{bottom:431.519850px;}
.y114{bottom:432.918150px;}
.y4e{bottom:437.919600px;}
.y1{bottom:438.619350px;}
.y29{bottom:439.616250px;}
.yf5{bottom:439.799400px;}
.yb2{bottom:441.051300px;}
.yd4{bottom:451.693050px;}
.y113{bottom:456.916575px;}
.y4d{bottom:463.419600px;}
.y28{bottom:465.107325px;}
.yb1{bottom:466.558500px;}
.y6c{bottom:471.972600px;}
.yd3{bottom:477.193050px;}
.yf4{bottom:478.126200px;}
.y4c{bottom:488.919600px;}
.y8d{bottom:494.342700px;}
.y112{bottom:497.326725px;}
.y6b{bottom:497.472600px;}
.yd2{bottom:502.688025px;}
.yf3{bottom:503.626200px;}
.y27{bottom:504.420225px;}
.yb0{bottom:506.968650px;}
.y1d{bottom:514.041675px;}
.y4b{bottom:514.419600px;}
.y8c{bottom:519.842700px;}
.y111{bottom:521.325150px;}
.y6a{bottom:522.969375px;}
.yf2{bottom:529.126200px;}
.y26{bottom:529.923450px;}
.yaf{bottom:532.468650px;}
.y5{bottom:533.448450px;}
.y1c{bottom:536.535300px;}
.y4a{bottom:539.919600px;}
.yd1{bottom:541.013400px;}
.y8b{bottom:545.342700px;}
.y69{bottom:548.472600px;}
.yf1{bottom:554.626200px;}
.y25{bottom:555.423450px;}
.yae{bottom:557.968650px;}
.y110{bottom:560.230500px;}
.y49{bottom:565.419600px;}
.yd0{bottom:566.516625px;}
.y68{bottom:573.972600px;}
.y1b{bottom:574.034925px;}
.yf0{bottom:580.126200px;}
.y24{bottom:580.919850px;}
.y10f{bottom:584.237025px;}
.y8a{bottom:584.811825px;}
.y4{bottom:585.963450px;}
.ycf{bottom:592.019850px;}
.yad{bottom:596.280375px;}
.y48{bottom:596.747700px;}
.y67{bottom:599.466975px;}
.yef{bottom:605.626200px;}
.y15{bottom:605.906325px;}
.y10e{bottom:608.235450px;}
.y89{bottom:610.315050px;}
.y1a{bottom:611.534550px;}
.yce{bottom:617.519850px;}
.y23{bottom:620.452200px;}
.yac{bottom:621.783600px;}
.y14{bottom:631.409550px;}
.y88{bottom:635.815050px;}
.y3{bottom:638.478450px;}
.y66{bottom:639.532275px;}
.ycd{bottom:643.019850px;}
.yee{bottom:643.768875px;}
.y10d{bottom:645.636000px;}
.y22{bottom:645.955425px;}
.yab{bottom:647.283600px;}
.y19{bottom:649.034175px;}
.y13{bottom:656.893500px;}
.y47{bottom:660.063150px;}
.y87{bottom:661.315050px;}
.y65{bottom:665.035500px;}
.ycc{bottom:668.520600px;}
.yed{bottom:669.272100px;}
.y10c{bottom:669.637200px;}
.y21{bottom:671.458650px;}
.yaa{bottom:672.783600px;}
.y12{bottom:682.396725px;}
.y18{bottom:683.535675px;}
.y46{bottom:685.563150px;}
.y86{bottom:686.815050px;}
.y64{bottom:690.535500px;}
.y10b{bottom:693.635625px;}
.yec{bottom:694.772100px;}
.ya9{bottom:698.279775px;}
.y20{bottom:702.786600px;}
.y17{bottom:706.033050px;}
.y11{bottom:707.899950px;}
.ycb{bottom:708.162675px;}
.y45{bottom:711.063150px;}
.y85{bottom:712.315050px;}
.y63{bottom:716.035500px;}
.yeb{bottom:720.272100px;}
.y2{bottom:724.765350px;}
.y10a{bottom:730.769700px;}
.yca{bottom:733.665900px;}
.y1e{bottom:734.961300px;}
.y44{bottom:736.563150px;}
.y84{bottom:737.815050px;}
.ya8{bottom:738.015900px;}
.y62{bottom:741.535500px;}
.yea{bottom:745.772100px;}
.y109{bottom:754.772325px;}
.y10{bottom:757.934550px;}
.yc9{bottom:759.165900px;}
.y43{bottom:762.058725px;}
.y83{bottom:763.311675px;}
.ya7{bottom:763.515900px;}
.y134{bottom:770.073900px;}
.y12b{bottom:774.699450px;}
.ye9{bottom:777.100350px;}
.y108{bottom:778.770750px;}
.y61{bottom:781.941000px;}
.yf{bottom:783.437775px;}
.yc8{bottom:784.665750px;}
.y133{bottom:788.073900px;}
.ya6{bottom:789.015900px;}
.y12a{bottom:798.697875px;}
.y42{bottom:802.515900px;}
.y107{bottom:802.769175px;}
.y82{bottom:803.141850px;}
.y132{bottom:806.073900px;}
.y60{bottom:807.441000px;}
.ye{bottom:808.941000px;}
.ya5{bottom:814.515900px;}
.yc7{bottom:815.994000px;}
.y131{bottom:824.073900px;}
.y41{bottom:828.015900px;}
.y81{bottom:828.641850px;}
.yd{bottom:834.419550px;}
.y129{bottom:837.603225px;}
.y5f{bottom:838.769100px;}
.ya4{bottom:840.012675px;}
.ye8{bottom:840.783450px;}
.y106{bottom:841.063200px;}
.y40{bottom:853.515900px;}
.y80{bottom:854.141850px;}
.yc{bottom:859.922775px;}
.y128{bottom:861.601650px;}
.y105{bottom:865.061625px;}
.ya3{bottom:865.515900px;}
.ye7{bottom:866.283450px;}
.y3f{bottom:879.015900px;}
.yc6{bottom:879.071625px;}
.y7f{bottom:879.641850px;}
.ya2{bottom:891.015900px;}
.ye6{bottom:891.783450px;}
.y127{bottom:900.287550px;}
.y104{bottom:903.402675px;}
.y130{bottom:904.053900px;}
.y3e{bottom:904.515900px;}
.y5e{bottom:904.551300px;}
.yc5{bottom:904.574850px;}
.y7e{bottom:905.141850px;}
.yb{bottom:910.349250px;}
.ya1{bottom:916.515900px;}
.ye5{bottom:917.283450px;}
.y12f{bottom:922.053900px;}
.y126{bottom:924.304950px;}
.y103{bottom:927.401100px;}
.y3d{bottom:930.015900px;}
.y5d{bottom:930.051300px;}
.yc4{bottom:930.074850px;}
.y7d{bottom:930.641850px;}
.ya{bottom:935.852475px;}
.y12e{bottom:940.053900px;}
.ya0{bottom:942.015900px;}
.ye4{bottom:942.783450px;}
.y125{bottom:948.303375px;}
.y102{bottom:951.399525px;}
.y5c{bottom:955.551300px;}
.yc3{bottom:955.574850px;}
.y12d{bottom:958.053900px;}
.y9{bottom:961.355700px;}
.ye3{bottom:968.283450px;}
.y7c{bottom:970.107900px;}
.y3c{bottom:970.114350px;}
.y124{bottom:972.301800px;}
.y101{bottom:975.397950px;}
.y12c{bottom:976.053900px;}
.y9f{bottom:980.336100px;}
.y5b{bottom:981.051300px;}
.yc2{bottom:981.074850px;}
.y8{bottom:986.858925px;}
.y7b{bottom:995.611125px;}
.y3b{bottom:995.614350px;}
.y123{bottom:996.300225px;}
.y9e{bottom:1005.839325px;}
.y5a{bottom:1006.548075px;}
.yc1{bottom:1006.574850px;}
.ye2{bottom:1006.586700px;}
.y100{bottom:1012.202850px;}
.y7{bottom:1012.362150px;}
.y122{bottom:1020.298650px;}
.y3a{bottom:1021.114350px;}
.y9d{bottom:1031.342550px;}
.y59{bottom:1032.051300px;}
.yc0{bottom:1032.074850px;}
.ye1{bottom:1032.086700px;}
.yff{bottom:1036.208775px;}
.y39{bottom:1046.614350px;}
.y9c{bottom:1056.842550px;}
.ybf{bottom:1057.577025px;}
.y121{bottom:1059.204000px;}
.y6{bottom:1060.176450px;}
.yfe{bottom:1060.207200px;}
.y7a{bottom:1072.114200px;}
.y38{bottom:1072.114350px;}
.y9b{bottom:1082.342550px;}
.ye0{bottom:1083.080250px;}
.y120{bottom:1083.202425px;}
.yfd{bottom:1084.205625px;}
.ybe{bottom:1097.610975px;}
.y79{bottom:1097.614200px;}
.y37{bottom:1097.614350px;}
.y9a{bottom:1107.842550px;}
.y78{bottom:1123.114200px;}
.y36{bottom:1123.114350px;}
.yfc{bottom:1124.615775px;}
.y77{bottom:1148.614200px;}
.y35{bottom:1148.614350px;}
.y1f{bottom:1195.590300px;}
.h19{height:33.550781px;}
.h1a{height:34.125000px;}
.hb{height:45.325500px;}
.h18{height:47.929688px;}
.h17{height:48.750000px;}
.hc{height:49.434000px;}
.h6{height:50.086523px;}
.h16{height:50.874150px;}
.h14{height:50.917650px;}
.h15{height:50.925150px;}
.h11{height:50.935050px;}
.h5{height:50.943750px;}
.hf{height:50.956650px;}
.he{height:50.957250px;}
.h10{height:50.959050px;}
.h8{height:51.007950px;}
.h7{height:51.029550px;}
.h13{height:51.770361px;}
.h12{height:52.535742px;}
.hd{height:52.921080px;}
.ha{height:53.625000px;}
.h9{height:55.704000px;}
.h4{height:73.431164px;}
.h2{height:94.374000px;}
.h3{height:151.926545px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:34.015800px;}
.x2{left:54.756450px;}
.xc{left:56.342250px;}
.xb{left:62.861250px;}
.x3{left:68.527050px;}
.x8{left:74.622300px;}
.x9{left:76.160625px;}
.x10{left:77.598450px;}
.x4{left:94.717050px;}
.xd{left:95.733000px;}
.xa{left:105.911250px;}
.x12{left:162.588450px;}
.xf{left:170.078700px;}
.x11{left:198.693450px;}
.x13{left:209.565300px;}
.x6{left:219.188850px;}
.x5{left:256.312050px;}
.xe{left:575.170650px;}
.x1{left:704.412450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.055733pt;}
.ls3{letter-spacing:0.111467pt;}
.ls4{letter-spacing:0.167200pt;}
.ls2{letter-spacing:0.222933pt;}
.ls5{letter-spacing:0.278667pt;}
.ls6{letter-spacing:0.947467pt;}
.ws3{word-spacing:-15.326667pt;}
.ws36{word-spacing:-14.825067pt;}
.ws1{word-spacing:-14.213333pt;}
.ws24{word-spacing:-13.877600pt;}
.ws13{word-spacing:-4.180000pt;}
.ws2d{word-spacing:-4.124267pt;}
.ws7{word-spacing:-4.012800pt;}
.ws19{word-spacing:-3.957067pt;}
.ws1d{word-spacing:-3.901333pt;}
.wse{word-spacing:-3.789867pt;}
.ws14{word-spacing:-3.678400pt;}
.ws2c{word-spacing:-3.566933pt;}
.ws11{word-spacing:-3.344000pt;}
.ws1c{word-spacing:-3.176800pt;}
.ws20{word-spacing:-3.121067pt;}
.ws10{word-spacing:-3.065333pt;}
.ws15{word-spacing:-2.675200pt;}
.ws2e{word-spacing:-2.508000pt;}
.ws18{word-spacing:-2.396533pt;}
.ws22{word-spacing:-2.285067pt;}
.ws32{word-spacing:-2.229333pt;}
.ws12{word-spacing:-2.062133pt;}
.ws27{word-spacing:-2.006400pt;}
.ws21{word-spacing:-1.950667pt;}
.ws16{word-spacing:-1.783467pt;}
.wsd{word-spacing:-1.616267pt;}
.ws28{word-spacing:-1.560533pt;}
.ws29{word-spacing:-1.449067pt;}
.ws2b{word-spacing:-1.393333pt;}
.ws34{word-spacing:-1.337600pt;}
.ws26{word-spacing:-1.170400pt;}
.ws2a{word-spacing:-0.836000pt;}
.wsf{word-spacing:-0.668800pt;}
.ws25{word-spacing:-0.501600pt;}
.ws1b{word-spacing:-0.390133pt;}
.ws35{word-spacing:-0.334400pt;}
.ws23{word-spacing:-0.278667pt;}
.ws1a{word-spacing:-0.222933pt;}
.ws1e{word-spacing:-0.167200pt;}
.ws1f{word-spacing:-0.111467pt;}
.ws2{word-spacing:-0.058667pt;}
.ws17{word-spacing:-0.055733pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:0.613067pt;}
.ws37{word-spacing:1.546667pt;}
.ws39{word-spacing:1.653333pt;}
.ws9{word-spacing:1.783467pt;}
.ws8{word-spacing:2.062133pt;}
.ws6{word-spacing:2.452267pt;}
.ws5{word-spacing:3.344000pt;}
.ws33{word-spacing:3.455467pt;}
.ws38{word-spacing:3.893333pt;}
.wsb{word-spacing:6.242133pt;}
.ws2f{word-spacing:7.189600pt;}
.wsa{word-spacing:8.137067pt;}
.ws4{word-spacing:8.527200pt;}
.ws31{word-spacing:14.769333pt;}
.ws30{word-spacing:15.438133pt;}
._3{margin-left:-9.600000pt;}
._4{margin-left:-6.400000pt;}
._5{margin-left:-5.432000pt;}
._1{margin-left:-4.032000pt;}
._0{margin-left:-2.688000pt;}
._2{margin-left:-1.600000pt;}
._7{width:1.182000pt;}
._6{width:2.552000pt;}
._f{width:3.851173pt;}
._c{width:4.982267pt;}
._9{width:6.574933pt;}
._e{width:7.524000pt;}
._10{width:8.722267pt;}
._15{width:9.731493pt;}
._11{width:12.528853pt;}
._12{width:22.627733pt;}
._13{width:23.988080pt;}
._14{width:422.928000pt;}
._b{width:448.624000pt;}
._a{width:450.560000pt;}
._d{width:451.674667pt;}
._8{width:462.352000pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.666667pt;}
.fs3{font-size:55.733333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:77.333333pt;}
.fs0{font-size:112.000000pt;}
.fs1{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:42.854267pt;}
.y139{bottom:81.681200pt;}
.y138{bottom:92.881200pt;}
.y137{bottom:104.081200pt;}
.y11f{bottom:113.305467pt;}
.y34{bottom:116.869733pt;}
.y99{bottom:116.935133pt;}
.ybd{bottom:119.373733pt;}
.y58{bottom:124.125667pt;}
.y136{bottom:126.481200pt;}
.ydf{bottom:129.378933pt;}
.y11e{bottom:134.642933pt;}
.y135{bottom:137.681200pt;}
.y33{bottom:139.536400pt;}
.y98{bottom:139.604667pt;}
.ybc{bottom:142.040400pt;}
.yde{bottom:152.045600pt;}
.y11d{bottom:155.974867pt;}
.y57{bottom:160.087600pt;}
.y32{bottom:162.203067pt;}
.y97{bottom:162.271333pt;}
.ybb{bottom:164.707067pt;}
.y76{bottom:165.294933pt;}
.ydd{bottom:174.712267pt;}
.y56{bottom:182.754267pt;}
.y96{bottom:184.938000pt;}
.y75{bottom:187.961600pt;}
.y11c{bottom:189.219800pt;}
.y31{bottom:197.150333pt;}
.yba{bottom:197.442000pt;}
.y55{bottom:205.420933pt;}
.y95{bottom:207.604667pt;}
.ydc{bottom:208.780533pt;}
.y11b{bottom:210.551733pt;}
.y74{bottom:210.628267pt;}
.y30{bottom:219.819867pt;}
.yb9{bottom:220.108667pt;}
.y54{bottom:228.087600pt;}
.ydb{bottom:231.447200pt;}
.y11a{bottom:231.883667pt;}
.y73{bottom:233.294933pt;}
.y94{bottom:241.428267pt;}
.y2f{bottom:242.486533pt;}
.yb8{bottom:242.775333pt;}
.yfb{bottom:243.552133pt;}
.y53{bottom:250.754267pt;}
.yda{bottom:254.113867pt;}
.y72{bottom:255.961600pt;}
.y93{bottom:264.094933pt;}
.y2e{bottom:265.153200pt;}
.yb7{bottom:265.442000pt;}
.yfa{bottom:266.218800pt;}
.y119{bottom:266.229333pt;}
.y52{bottom:273.406200pt;}
.yd9{bottom:276.780533pt;}
.y92{bottom:286.761600pt;}
.y118{bottom:287.562667pt;}
.y2d{bottom:287.822333pt;}
.yb6{bottom:288.108667pt;}
.yf9{bottom:288.885467pt;}
.y71{bottom:292.906533pt;}
.yd8{bottom:299.447200pt;}
.y51{bottom:307.960867pt;}
.y117{bottom:308.907333pt;}
.y91{bottom:309.428267pt;}
.yb5{bottom:310.775333pt;}
.y70{bottom:315.573200pt;}
.yd7{bottom:322.113867pt;}
.y2c{bottom:322.767133pt;}
.yf8{bottom:322.932800pt;}
.y116{bottom:330.239267pt;}
.y50{bottom:330.630400pt;}
.y90{bottom:332.094933pt;}
.y6f{bottom:338.239867pt;}
.y2b{bottom:345.436667pt;}
.yf7{bottom:345.599467pt;}
.yb4{bottom:346.712267pt;}
.y4f{bottom:353.299933pt;}
.y8f{bottom:354.761600pt;}
.yd6{bottom:356.171600pt;}
.y6e{bottom:360.906533pt;}
.y115{bottom:363.484200pt;}
.y2a{bottom:368.103333pt;}
.yf6{bottom:368.266133pt;}
.yb3{bottom:369.378933pt;}
.yd5{bottom:378.838267pt;}
.y8e{bottom:382.608800pt;}
.y6d{bottom:383.573200pt;}
.y114{bottom:384.816133pt;}
.y4e{bottom:389.261867pt;}
.y1{bottom:389.883867pt;}
.y29{bottom:390.770000pt;}
.yf5{bottom:390.932800pt;}
.yb2{bottom:392.045600pt;}
.yd4{bottom:401.504933pt;}
.y113{bottom:406.148067pt;}
.y4d{bottom:411.928533pt;}
.y28{bottom:413.428733pt;}
.yb1{bottom:414.718667pt;}
.y6c{bottom:419.531200pt;}
.yd3{bottom:424.171600pt;}
.yf4{bottom:425.001067pt;}
.y4c{bottom:434.595200pt;}
.y8d{bottom:439.415733pt;}
.y112{bottom:442.068200pt;}
.y6b{bottom:442.197867pt;}
.yd2{bottom:446.833800pt;}
.yf3{bottom:447.667733pt;}
.y27{bottom:448.373533pt;}
.yb0{bottom:450.638800pt;}
.y1d{bottom:456.925933pt;}
.y4b{bottom:457.261867pt;}
.y8c{bottom:462.082400pt;}
.y111{bottom:463.400133pt;}
.y6a{bottom:464.861667pt;}
.yf2{bottom:470.334400pt;}
.y26{bottom:471.043067pt;}
.yaf{bottom:473.305467pt;}
.y5{bottom:474.176400pt;}
.y1c{bottom:476.920267pt;}
.y4a{bottom:479.928533pt;}
.yd1{bottom:480.900800pt;}
.y8b{bottom:484.749067pt;}
.y69{bottom:487.531200pt;}
.yf1{bottom:493.001067pt;}
.y25{bottom:493.709733pt;}
.yae{bottom:495.972133pt;}
.y110{bottom:497.982667pt;}
.y49{bottom:502.595200pt;}
.yd0{bottom:503.570333pt;}
.y68{bottom:510.197867pt;}
.y1b{bottom:510.253267pt;}
.yf0{bottom:515.667733pt;}
.y24{bottom:516.373200pt;}
.y10f{bottom:519.321800pt;}
.y8a{bottom:519.832733pt;}
.y4{bottom:520.856400pt;}
.ycf{bottom:526.239867pt;}
.yad{bottom:530.027000pt;}
.y48{bottom:530.442400pt;}
.y67{bottom:532.859533pt;}
.yef{bottom:538.334400pt;}
.y15{bottom:538.583400pt;}
.y10e{bottom:540.653733pt;}
.y89{bottom:542.502267pt;}
.y1a{bottom:543.586267pt;}
.yce{bottom:548.906533pt;}
.y23{bottom:551.513067pt;}
.yac{bottom:552.696533pt;}
.y14{bottom:561.252933pt;}
.y88{bottom:565.168933pt;}
.y3{bottom:567.536400pt;}
.y66{bottom:568.473133pt;}
.ycd{bottom:571.573200pt;}
.yee{bottom:572.239000pt;}
.y10d{bottom:573.898667pt;}
.y22{bottom:574.182600pt;}
.yab{bottom:575.363200pt;}
.y19{bottom:576.919267pt;}
.y13{bottom:583.905333pt;}
.y47{bottom:586.722800pt;}
.y87{bottom:587.835600pt;}
.y65{bottom:591.142667pt;}
.ycc{bottom:594.240533pt;}
.yed{bottom:594.908533pt;}
.y10c{bottom:595.233067pt;}
.y21{bottom:596.852133pt;}
.yaa{bottom:598.029867pt;}
.y12{bottom:606.574867pt;}
.y18{bottom:607.587267pt;}
.y46{bottom:609.389467pt;}
.y86{bottom:610.502267pt;}
.y64{bottom:613.809333pt;}
.y10b{bottom:616.565000pt;}
.yec{bottom:617.575200pt;}
.ya9{bottom:620.693133pt;}
.y20{bottom:624.699200pt;}
.y17{bottom:627.584933pt;}
.y11{bottom:629.244400pt;}
.ycb{bottom:629.477933pt;}
.y45{bottom:632.056133pt;}
.y85{bottom:633.168933pt;}
.y63{bottom:636.476000pt;}
.yeb{bottom:640.241867pt;}
.y2{bottom:644.235867pt;}
.y10a{bottom:649.573067pt;}
.yca{bottom:652.147467pt;}
.y1e{bottom:653.298933pt;}
.y44{bottom:654.722800pt;}
.y84{bottom:655.835600pt;}
.ya8{bottom:656.014133pt;}
.y62{bottom:659.142667pt;}
.yea{bottom:662.908533pt;}
.y109{bottom:670.908733pt;}
.y10{bottom:673.719600pt;}
.yc9{bottom:674.814133pt;}
.y43{bottom:677.385533pt;}
.y83{bottom:678.499267pt;}
.ya7{bottom:678.680800pt;}
.y134{bottom:684.510133pt;}
.y12b{bottom:688.621733pt;}
.ye9{bottom:690.755867pt;}
.y108{bottom:692.240667pt;}
.y61{bottom:695.058667pt;}
.yf{bottom:696.389133pt;}
.yc8{bottom:697.480667pt;}
.y133{bottom:700.510133pt;}
.ya6{bottom:701.347467pt;}
.y12a{bottom:709.953667pt;}
.y42{bottom:713.347467pt;}
.y107{bottom:713.572600pt;}
.y82{bottom:713.903867pt;}
.y132{bottom:716.510133pt;}
.y60{bottom:717.725333pt;}
.ye{bottom:719.058667pt;}
.ya5{bottom:724.014133pt;}
.yc7{bottom:725.328000pt;}
.y131{bottom:732.510133pt;}
.y41{bottom:736.014133pt;}
.y81{bottom:736.570533pt;}
.yd{bottom:741.706267pt;}
.y129{bottom:744.536200pt;}
.y5f{bottom:745.572533pt;}
.ya4{bottom:746.677933pt;}
.ye8{bottom:747.363067pt;}
.y106{bottom:747.611733pt;}
.y40{bottom:758.680800pt;}
.y80{bottom:759.237200pt;}
.yc{bottom:764.375800pt;}
.y128{bottom:765.868133pt;}
.y105{bottom:768.943667pt;}
.ya3{bottom:769.347467pt;}
.ye7{bottom:770.029733pt;}
.y3f{bottom:781.347467pt;}
.yc6{bottom:781.397000pt;}
.y7f{bottom:781.903867pt;}
.ya2{bottom:792.014133pt;}
.ye6{bottom:792.696400pt;}
.y127{bottom:800.255600pt;}
.y104{bottom:803.024600pt;}
.y130{bottom:803.603467pt;}
.y3e{bottom:804.014133pt;}
.y5e{bottom:804.045600pt;}
.yc5{bottom:804.066533pt;}
.y7e{bottom:804.570533pt;}
.yb{bottom:809.199333pt;}
.ya1{bottom:814.680800pt;}
.ye5{bottom:815.363067pt;}
.y12f{bottom:819.603467pt;}
.y126{bottom:821.604400pt;}
.y103{bottom:824.356533pt;}
.y3d{bottom:826.680800pt;}
.y5d{bottom:826.712267pt;}
.yc4{bottom:826.733200pt;}
.y7d{bottom:827.237200pt;}
.ya{bottom:831.868867pt;}
.y12e{bottom:835.603467pt;}
.ya0{bottom:837.347467pt;}
.ye4{bottom:838.029733pt;}
.y125{bottom:842.936333pt;}
.y102{bottom:845.688467pt;}
.y5c{bottom:849.378933pt;}
.yc3{bottom:849.399867pt;}
.y12d{bottom:851.603467pt;}
.y9{bottom:854.538400pt;}
.ye3{bottom:860.696400pt;}
.y7c{bottom:862.318133pt;}
.y3c{bottom:862.323867pt;}
.y124{bottom:864.268267pt;}
.y101{bottom:867.020400pt;}
.y12c{bottom:867.603467pt;}
.y9f{bottom:871.409867pt;}
.y5b{bottom:872.045600pt;}
.yc2{bottom:872.066533pt;}
.y8{bottom:877.207933pt;}
.y7b{bottom:884.987667pt;}
.y3b{bottom:884.990533pt;}
.y123{bottom:885.600200pt;}
.y9e{bottom:894.079400pt;}
.y5a{bottom:894.709400pt;}
.yc1{bottom:894.733200pt;}
.ye2{bottom:894.743733pt;}
.y100{bottom:899.735867pt;}
.y7{bottom:899.877467pt;}
.y122{bottom:906.932133pt;}
.y3a{bottom:907.657200pt;}
.y9d{bottom:916.748933pt;}
.y59{bottom:917.378933pt;}
.yc0{bottom:917.399867pt;}
.ye1{bottom:917.410400pt;}
.yff{bottom:921.074467pt;}
.y39{bottom:930.323867pt;}
.y9c{bottom:939.415600pt;}
.ybf{bottom:940.068467pt;}
.y121{bottom:941.514667pt;}
.y6{bottom:942.379067pt;}
.yfe{bottom:942.406400pt;}
.y7a{bottom:952.990400pt;}
.y38{bottom:952.990533pt;}
.y9b{bottom:962.082267pt;}
.ye0{bottom:962.738000pt;}
.y120{bottom:962.846600pt;}
.yfd{bottom:963.738333pt;}
.ybe{bottom:975.654200pt;}
.y79{bottom:975.657067pt;}
.y37{bottom:975.657200pt;}
.y9a{bottom:984.748933pt;}
.y78{bottom:998.323733pt;}
.y36{bottom:998.323867pt;}
.yfc{bottom:999.658467pt;}
.y77{bottom:1020.990400pt;}
.y35{bottom:1020.990533pt;}
.y1f{bottom:1062.746933pt;}
.h19{height:29.822917pt;}
.h1a{height:30.333333pt;}
.hb{height:40.289333pt;}
.h18{height:42.604167pt;}
.h17{height:43.333333pt;}
.hc{height:43.941333pt;}
.h6{height:44.521354pt;}
.h16{height:45.221467pt;}
.h14{height:45.260133pt;}
.h15{height:45.266800pt;}
.h11{height:45.275600pt;}
.h5{height:45.283333pt;}
.hf{height:45.294800pt;}
.he{height:45.295333pt;}
.h10{height:45.296933pt;}
.h8{height:45.340400pt;}
.h7{height:45.359600pt;}
.h13{height:46.018099pt;}
.h12{height:46.698438pt;}
.hd{height:47.040960pt;}
.ha{height:47.666667pt;}
.h9{height:49.514667pt;}
.h4{height:65.272145pt;}
.h2{height:83.888000pt;}
.h3{height:135.045818pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:30.236267pt;}
.x2{left:48.672400pt;}
.xc{left:50.082000pt;}
.xb{left:55.876667pt;}
.x3{left:60.912933pt;}
.x8{left:66.330933pt;}
.x9{left:67.698333pt;}
.x10{left:68.976400pt;}
.x4{left:84.192933pt;}
.xd{left:85.096000pt;}
.xa{left:94.143333pt;}
.x12{left:144.523067pt;}
.xf{left:151.181067pt;}
.x11{left:176.616400pt;}
.x13{left:186.280267pt;}
.x6{left:194.834533pt;}
.x5{left:227.832933pt;}
.xe{left:511.262800pt;}
.x1{left:626.144400pt;}
}




    .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; }
  