
    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_77f271679d0e3357cead7920.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_9d4d0f4166cf1f28ae6a7e40.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_c75af887902f72cd73f1329d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_13937c82edb609b162db33f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_9a95781c095057b652c69c7d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_cc2e9202644b79e3f0b32b77.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_60e2df5d68104057a7136d75.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_0118e3f92afaedf2bf6357f3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_e5c356a87ca1092b0224cd32.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_9ac6f6692c2a64c6f76fa47b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;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_391deec52beed1c79327483e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_882d76261651d35613eadece.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;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:ffd;src:url('chunks/assets/font_70fdc2bfb14d67488095f907.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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:ffe;src:url('chunks/assets/font_2f6ce8ea24bf486897aae505.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;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:fff;src:url('chunks/assets/font_41d138a615ce436a5c2b0d33.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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:ff10;src:url('chunks/assets/font_a5383d18317ef161f1fa3fdc.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;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:ff11;src:url('chunks/assets/font_7c2e3033487f240bb7748893.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;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:ff12;src:url('chunks/assets/font_7256db048a04dadce5e93bca.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.311035;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:ff13;src:url('chunks/assets/font_ccead0f62fea49aa94f50e85.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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:ff14;src:url('chunks/assets/font_85b6605d118d0153f5d14052.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284668;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:ff15;src:url('chunks/assets/font_505bfa4c732846c6d6f75b9a.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284180;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:ff16;src:url('chunks/assets/font_3df3341efe084234d0f13539.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.284668;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:ff17;src:url('chunks/assets/font_ca2284e99349c3ca29971945.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.311035;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:ff18;src:url('chunks/assets/font_394c2a81bb4aab8040fc50c4.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.284180;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;}
.m50{transform:matrix(0.017500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017500,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.022500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022500,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m3f{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m33{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);}
.m41{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(4.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.312500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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:-7.500000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-3.533081px;}
.fc0{color:transparent;}
.fs2{font-size:30.000000px;}
.fs3{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fsb{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fs9{font-size:84.000000px;}
.fs0{font-size:114.000000px;}
.fs1{font-size:120.000000px;}
.fs6{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.ybc{bottom:84.673500px;}
.yb7{bottom:86.098500px;}
.yb8{bottom:86.473500px;}
.yb9{bottom:86.773500px;}
.yba{bottom:87.523500px;}
.ybb{bottom:87.898500px;}
.y141{bottom:91.125000px;}
.y47{bottom:93.223500px;}
.y170{bottom:93.973500px;}
.y16f{bottom:94.273500px;}
.y171{bottom:94.648500px;}
.y101{bottom:95.923500px;}
.yb4{bottom:106.650000px;}
.yb5{bottom:107.323500px;}
.yb6{bottom:107.698500px;}
.y140{bottom:111.298500px;}
.y46{bottom:113.400000px;}
.y16e{bottom:114.448500px;}
.y100{bottom:116.025000px;}
.yb2{bottom:128.625000px;}
.yb3{bottom:128.923500px;}
.y13f{bottom:131.473500px;}
.y45{bottom:133.573500px;}
.y16d{bottom:134.250000px;}
.yfe{bottom:134.775000px;}
.yff{bottom:136.875000px;}
.yaf{bottom:148.723500px;}
.yb0{bottom:149.473500px;}
.yb1{bottom:150.150000px;}
.y13e{bottom:151.573500px;}
.y44{bottom:153.750000px;}
.y43{bottom:154.048500px;}
.y16c{bottom:154.423500px;}
.yfa{bottom:154.573500px;}
.yfb{bottom:155.250000px;}
.yfc{bottom:157.125000px;}
.yfd{bottom:160.650000px;}
.yae{bottom:169.275000px;}
.y13d{bottom:171.375000px;}
.y42{bottom:173.848500px;}
.y16b{bottom:174.223500px;}
.yf9{bottom:175.798500px;}
.ya9{bottom:188.698500px;}
.yaa{bottom:189.073500px;}
.ya8{bottom:189.375000px;}
.ya7{bottom:189.750000px;}
.yab{bottom:190.125000px;}
.yac{bottom:190.198500px;}
.yad{bottom:190.500000px;}
.y41{bottom:194.025000px;}
.y16a{bottom:194.400000px;}
.yf4{bottom:197.025000px;}
.yf5{bottom:198.823500px;}
.yf6{bottom:199.198500px;}
.yf7{bottom:200.625000px;}
.yf8{bottom:201.375000px;}
.y13c{bottom:208.875000px;}
.ya6{bottom:209.250000px;}
.y40{bottom:214.198500px;}
.yf1{bottom:216.823500px;}
.yf2{bottom:217.198500px;}
.yf3{bottom:219.673500px;}
.ya5{bottom:230.848500px;}
.y3f{bottom:234.000000px;}
.y169{bottom:234.375000px;}
.yf0{bottom:238.048500px;}
.y13b{bottom:249.525000px;}
.ya1{bottom:250.648500px;}
.ya2{bottom:251.323500px;}
.ya3{bottom:251.698500px;}
.ya4{bottom:252.073500px;}
.y3d{bottom:253.125000px;}
.y3e{bottom:253.798500px;}
.y3c{bottom:254.173500px;}
.y3b{bottom:254.473500px;}
.yef{bottom:257.923500px;}
.y13a{bottom:268.648500px;}
.y139{bottom:269.323500px;}
.y9e{bottom:271.125000px;}
.y9f{bottom:272.250000px;}
.ya0{bottom:272.548500px;}
.y3a{bottom:273.973500px;}
.y38{bottom:274.723500px;}
.y39{bottom:275.023500px;}
.yee{bottom:278.023500px;}
.y138{bottom:289.875000px;}
.y168{bottom:290.848500px;}
.y9a{bottom:291.000000px;}
.y167{bottom:291.223500px;}
.y9b{bottom:291.673500px;}
.y9c{bottom:291.973500px;}
.y9d{bottom:292.348500px;}
.y37{bottom:293.773500px;}
.yed{bottom:297.823500px;}
.y137{bottom:308.548500px;}
.y94{bottom:310.648500px;}
.y95{bottom:310.723500px;}
.y96{bottom:311.098500px;}
.y97{bottom:311.398500px;}
.y99{bottom:311.473500px;}
.y98{bottom:311.848500px;}
.y36{bottom:314.250000px;}
.yec{bottom:319.423500px;}
.y136{bottom:328.348500px;}
.y8e{bottom:330.898500px;}
.y8d{bottom:331.273500px;}
.y8f{bottom:331.573500px;}
.y90{bottom:331.948500px;}
.y166{bottom:332.250000px;}
.y91{bottom:332.698500px;}
.y93{bottom:333.375000px;}
.y92{bottom:333.448500px;}
.y34{bottom:334.048500px;}
.y35{bottom:334.798500px;}
.ye9{bottom:339.223500px;}
.yea{bottom:339.598500px;}
.yeb{bottom:341.023500px;}
.y135{bottom:348.148500px;}
.y89{bottom:351.000000px;}
.y8a{bottom:351.375000px;}
.y8b{bottom:351.750000px;}
.y164{bottom:352.048500px;}
.y8c{bottom:352.198500px;}
.y165{bottom:352.423500px;}
.y33{bottom:355.273500px;}
.ye8{bottom:359.773500px;}
.y134{bottom:368.323500px;}
.y85{bottom:370.500000px;}
.y86{bottom:371.173500px;}
.y87{bottom:371.548500px;}
.y161{bottom:371.923500px;}
.y162{bottom:372.223500px;}
.y88{bottom:372.298500px;}
.y163{bottom:372.598500px;}
.y30{bottom:373.723500px;}
.y31{bottom:374.023500px;}
.y2f{bottom:374.698500px;}
.y32{bottom:374.773500px;}
.y2e{bottom:375.148500px;}
.ye7{bottom:380.250000px;}
.y133{bottom:388.125000px;}
.y82{bottom:391.723500px;}
.y160{bottom:392.023500px;}
.y83{bottom:392.098500px;}
.y84{bottom:392.773500px;}
.y2d{bottom:393.823500px;}
.ye5{bottom:399.000000px;}
.ye6{bottom:400.048500px;}
.y132{bottom:407.923500px;}
.y7f{bottom:410.773500px;}
.y80{bottom:411.148500px;}
.y15f{bottom:412.198500px;}
.y81{bottom:412.273500px;}
.y2c{bottom:414.000000px;}
.y2b{bottom:415.048500px;}
.y2a{bottom:415.423500px;}
.ye4{bottom:419.848500px;}
.y130{bottom:427.423500px;}
.y131{bottom:427.723500px;}
.y12f{bottom:428.098500px;}
.y7c{bottom:431.323500px;}
.y15e{bottom:432.375000px;}
.y7d{bottom:433.125000px;}
.y7e{bottom:433.875000px;}
.y29{bottom:434.173500px;}
.ye3{bottom:440.398500px;}
.y18d{bottom:441.523500px;}
.y12e{bottom:447.598500px;}
.y75{bottom:452.173500px;}
.y15d{bottom:452.473500px;}
.y76{bottom:452.923500px;}
.y77{bottom:453.298500px;}
.y78{bottom:453.673500px;}
.y79{bottom:453.973500px;}
.y7a{bottom:454.048500px;}
.y7b{bottom:454.723500px;}
.y28{bottom:455.023500px;}
.ye1{bottom:461.323500px;}
.ye0{bottom:461.625000px;}
.ye2{bottom:462.000000px;}
.y12c{bottom:467.323500px;}
.y12d{bottom:467.698500px;}
.y12b{bottom:468.375000px;}
.y73{bottom:472.348500px;}
.y27{bottom:473.773500px;}
.y74{bottom:473.848500px;}
.y26{bottom:474.823500px;}
.y18c{bottom:478.573500px;}
.y18b{bottom:478.948500px;}
.ydd{bottom:481.798500px;}
.yde{bottom:483.598500px;}
.ydf{bottom:484.273500px;}
.y12a{bottom:487.875000px;}
.y6f{bottom:492.148500px;}
.y15c{bottom:492.823500px;}
.y70{bottom:493.198500px;}
.y25{bottom:494.250000px;}
.y71{bottom:494.323500px;}
.y72{bottom:495.375000px;}
.ydc{bottom:502.348500px;}
.y129{bottom:507.973500px;}
.y15b{bottom:513.000000px;}
.y6b{bottom:513.073500px;}
.y6c{bottom:513.375000px;}
.y24{bottom:513.673500px;}
.y23{bottom:514.048500px;}
.y6d{bottom:514.125000px;}
.y22{bottom:514.798500px;}
.y21{bottom:515.473500px;}
.y6e{bottom:515.548500px;}
.y18a{bottom:515.698500px;}
.y20{bottom:515.923500px;}
.y1f{bottom:516.223500px;}
.ydb{bottom:522.148500px;}
.y128{bottom:527.473500px;}
.y127{bottom:527.848500px;}
.y126{bottom:528.523500px;}
.y15a{bottom:532.798500px;}
.y1e{bottom:533.173500px;}
.y1d{bottom:533.473500px;}
.y1c{bottom:533.848500px;}
.y69{bottom:534.598500px;}
.y1b{bottom:534.973500px;}
.y6a{bottom:535.723500px;}
.y189{bottom:535.875000px;}
.yd6{bottom:541.573500px;}
.yd5{bottom:541.875000px;}
.yd7{bottom:543.000000px;}
.yd8{bottom:543.673500px;}
.yd9{bottom:543.750000px;}
.yda{bottom:544.125000px;}
.y125{bottom:547.948500px;}
.y159{bottom:552.598500px;}
.y1a{bottom:554.398500px;}
.y67{bottom:554.473500px;}
.y68{bottom:555.898500px;}
.y188{bottom:556.048500px;}
.y19{bottom:556.423500px;}
.yd4{bottom:564.223500px;}
.y124{bottom:568.125000px;}
.y158{bottom:572.700000px;}
.y64{bottom:574.950000px;}
.y187{bottom:575.848500px;}
.y18{bottom:576.375000px;}
.y65{bottom:576.750000px;}
.y66{bottom:576.825000px;}
.yd3{bottom:584.098500px;}
.y123{bottom:587.923500px;}
.y157{bottom:592.500000px;}
.y17{bottom:594.375000px;}
.y62{bottom:594.450000px;}
.y16{bottom:595.423500px;}
.y63{bottom:595.500000px;}
.y186{bottom:595.950000px;}
.y15{bottom:596.548500px;}
.yd2{bottom:605.250000px;}
.y122{bottom:607.423500px;}
.y156{bottom:612.375000px;}
.y14{bottom:614.848500px;}
.y61{bottom:615.973500px;}
.y185{bottom:616.125000px;}
.yb{bottom:622.423500px;}
.yd1{bottom:625.048500px;}
.y121{bottom:628.273500px;}
.y155{bottom:632.173500px;}
.y13{bottom:633.598500px;}
.y12{bottom:633.973500px;}
.y11{bottom:634.650000px;}
.y10{bottom:635.025000px;}
.yf{bottom:635.400000px;}
.y184{bottom:635.923500px;}
.ye{bottom:636.448500px;}
.y60{bottom:636.525000px;}
.yd0{bottom:646.650000px;}
.y120{bottom:648.073500px;}
.y154{bottom:652.275000px;}
.yd{bottom:653.025000px;}
.yc{bottom:655.573500px;}
.y183{bottom:656.098500px;}
.y5f{bottom:657.750000px;}
.ycd{bottom:666.823500px;}
.yce{bottom:667.198500px;}
.y11f{bottom:667.798500px;}
.ycf{bottom:668.250000px;}
.y153{bottom:672.150000px;}
.y182{bottom:675.900000px;}
.y5e{bottom:677.548500px;}
.ycc{bottom:687.000000px;}
.y11e{bottom:687.298500px;}
.y11d{bottom:688.723500px;}
.y11c{bottom:690.150000px;}
.y152{bottom:691.875000px;}
.y181{bottom:696.073500px;}
.y5d{bottom:697.723500px;}
.ya{bottom:698.025000px;}
.y9{bottom:699.823500px;}
.y11b{bottom:706.723500px;}
.ycb{bottom:706.798500px;}
.y11a{bottom:707.098500px;}
.y119{bottom:707.473500px;}
.y118{bottom:708.150000px;}
.y117{bottom:709.650000px;}
.y151{bottom:711.673500px;}
.y180{bottom:716.173500px;}
.y5a{bottom:716.400000px;}
.y5b{bottom:716.473500px;}
.y17f{bottom:716.548500px;}
.y5c{bottom:717.900000px;}
.y116{bottom:727.948500px;}
.yc9{bottom:728.698500px;}
.yca{bottom:728.775000px;}
.y150{bottom:731.848500px;}
.y17e{bottom:736.048500px;}
.y57{bottom:736.198500px;}
.y58{bottom:738.073500px;}
.y59{bottom:739.875000px;}
.y115{bottom:747.750000px;}
.yc8{bottom:748.948500px;}
.y114{bottom:749.923500px;}
.y113{bottom:750.673500px;}
.y14f{bottom:751.348500px;}
.y8{bottom:753.448500px;}
.y17d{bottom:756.150000px;}
.y55{bottom:757.500000px;}
.y56{bottom:759.973500px;}
.y112{bottom:768.675000px;}
.yc7{bottom:769.050000px;}
.y14e{bottom:771.525000px;}
.y17c{bottom:776.698500px;}
.y54{bottom:777.973500px;}
.y111{bottom:788.098500px;}
.yc5{bottom:789.223500px;}
.yc6{bottom:790.275000px;}
.y14c{bottom:791.250000px;}
.y14d{bottom:791.625000px;}
.y17b{bottom:796.500000px;}
.y53{bottom:798.525000px;}
.y7{bottom:802.425000px;}
.y6{bottom:802.500000px;}
.y5{bottom:802.800000px;}
.y14b{bottom:807.823500px;}
.y110{bottom:808.275000px;}
.y14a{bottom:809.250000px;}
.y149{bottom:810.675000px;}
.y148{bottom:811.050000px;}
.yc4{bottom:811.198500px;}
.y17a{bottom:816.300000px;}
.y51{bottom:818.698500px;}
.y52{bottom:819.750000px;}
.y4{bottom:821.175000px;}
.y3{bottom:822.223500px;}
.y2{bottom:822.973500px;}
.y1{bottom:824.098500px;}
.y10f{bottom:826.573500px;}
.y10e{bottom:827.323500px;}
.y10d{bottom:829.125000px;}
.y147{bottom:830.848500px;}
.yc3{bottom:831.375000px;}
.y10c{bottom:832.425000px;}
.y179{bottom:836.098500px;}
.y4e{bottom:838.875000px;}
.y4f{bottom:839.925000px;}
.y50{bottom:842.098500px;}
.y10b{bottom:848.175000px;}
.y146{bottom:850.348500px;}
.y10a{bottom:850.723500px;}
.yc2{bottom:851.473500px;}
.y178{bottom:855.900000px;}
.y4d{bottom:860.848500px;}
.y109{bottom:867.973500px;}
.y108{bottom:870.150000px;}
.y107{bottom:871.573500px;}
.yc1{bottom:873.150000px;}
.y177{bottom:876.000000px;}
.y4c{bottom:881.698500px;}
.y106{bottom:886.723500px;}
.y105{bottom:888.223500px;}
.y145{bottom:890.250000px;}
.y104{bottom:890.323500px;}
.yc0{bottom:893.250000px;}
.y176{bottom:895.198500px;}
.y175{bottom:895.875000px;}
.y49{bottom:901.125000px;}
.y4a{bottom:902.175000px;}
.y4b{bottom:903.000000px;}
.y103{bottom:909.073500px;}
.y144{bottom:910.125000px;}
.ybe{bottom:913.425000px;}
.ybf{bottom:913.800000px;}
.y174{bottom:915.675000px;}
.y173{bottom:916.348500px;}
.y48{bottom:939.300000px;}
.y102{bottom:946.500000px;}
.y143{bottom:947.098500px;}
.y142{bottom:947.175000px;}
.ybd{bottom:950.550000px;}
.y172{bottom:952.723500px;}
.h3{height:32.010000px;}
.h4{height:41.200195px;}
.h5{height:44.814000px;}
.h14{height:47.109375px;}
.h10{height:48.375000px;}
.hd{height:50.062500px;}
.h17{height:52.971680px;}
.hf{height:52.998047px;}
.h1b{height:54.421875px;}
.hb{height:56.320312px;}
.h6{height:58.857422px;}
.ha{height:58.886719px;}
.h18{height:60.468750px;}
.h7{height:62.578125px;}
.hc{height:64.743164px;}
.h13{height:64.775391px;}
.h1d{height:66.515625px;}
.h8{height:68.835938px;}
.h1a{height:70.628906px;}
.h16{height:70.664062px;}
.h15{height:76.514648px;}
.h11{height:87.609375px;}
.h1{height:111.884766px;}
.h2{height:117.773438px;}
.h9{height:151.171875px;}
.he{height:1009.500000px;}
.h12{height:1011.000000px;}
.h0{height:1017.000000px;}
.h19{height:1018.500000px;}
.h1c{height:1021.500000px;}
.w2{width:655.500000px;}
.w1{width:661.500000px;}
.w5{width:664.500000px;}
.w3{width:672.000000px;}
.w0{width:673.500000px;}
.w4{width:678.000000px;}
.x0{left:0.000000px;}
.x7c{left:50.400000px;}
.x7e{left:51.450000px;}
.x80{left:52.950000px;}
.x82{left:54.000000px;}
.x8d{left:55.425000px;}
.x94{left:56.550000px;}
.xa9{left:58.350000px;}
.xb{left:69.450000px;}
.x18{left:70.950000px;}
.xd{left:72.000000px;}
.x1{left:81.000000px;}
.x1a{left:82.425000px;}
.x84{left:83.550000px;}
.x43{left:85.650000px;}
.x35{left:86.775000px;}
.xae{left:87.825000px;}
.xa8{left:89.250000px;}
.xa4{left:94.350000px;}
.x9f{left:95.400000px;}
.x2d{left:96.448500px;}
.xb3{left:97.573500px;}
.xb7{left:98.625000px;}
.x25{left:100.050000px;}
.x32{left:103.650000px;}
.x26{left:106.573500px;}
.x48{left:110.550000px;}
.x1e{left:117.000000px;}
.x52{left:120.225000px;}
.x77{left:125.625000px;}
.x95{left:127.425000px;}
.x7d{left:129.225000px;}
.xe{left:131.025000px;}
.x38{left:132.150000px;}
.x3e{left:136.050000px;}
.x56{left:137.175000px;}
.x1f{left:138.600000px;}
.x3b{left:141.825000px;}
.x17{left:144.750000px;}
.x10{left:146.175000px;}
.x9a{left:152.625000px;}
.x2{left:154.425000px;}
.x28{left:159.450000px;}
.x3c{left:161.625000px;}
.xb6{left:162.750000px;}
.x3f{left:167.025000px;}
.xad{left:168.825000px;}
.x27{left:174.975000px;}
.x89{left:178.950000px;}
.x98{left:186.150000px;}
.x99{left:188.250000px;}
.x70{left:190.050000px;}
.x6b{left:191.550000px;}
.x19{left:192.600000px;}
.xb4{left:196.200000px;}
.x8a{left:205.575000px;}
.x39{left:208.800000px;}
.x6c{left:211.350000px;}
.x92{left:214.200000px;}
.x9b{left:215.625000px;}
.x81{left:217.800000px;}
.x93{left:219.975000px;}
.x20{left:221.023500px;}
.x4a{left:228.225000px;}
.x53{left:237.225000px;}
.x57{left:240.150000px;}
.x8b{left:243.000000px;}
.x73{left:246.225000px;}
.xb0{left:250.200000px;}
.xb1{left:257.400000px;}
.xa3{left:259.575000px;}
.x9e{left:260.625000px;}
.xaa{left:261.750000px;}
.x74{left:263.850000px;}
.x71{left:267.150000px;}
.x85{left:270.750000px;}
.xa{left:273.600000px;}
.x75{left:276.825000px;}
.x97{left:279.000000px;}
.xa6{left:281.850000px;}
.x5d{left:282.975000px;}
.x58{left:285.825000px;}
.x78{left:288.375000px;}
.x44{left:290.175000px;}
.x45{left:291.225000px;}
.xb2{left:295.200000px;}
.x5b{left:296.625000px;}
.x4b{left:300.225000px;}
.x8e{left:302.025000px;}
.x8f{left:303.150000px;}
.xa7{left:307.050000px;}
.x21{left:308.550000px;}
.x86{left:309.975000px;}
.x34{left:311.025000px;}
.x36{left:315.750000px;}
.x4c{left:318.225000px;}
.x46{left:320.775000px;}
.xab{left:321.825000px;}
.x5{left:324.375000px;}
.x11{left:326.550000px;}
.x63{left:328.350000px;}
.x3{left:332.250000px;}
.x6{left:339.150000px;}
.x2e{left:342.000000px;}
.xac{left:347.025000px;}
.x12{left:348.825000px;}
.x13{left:351.375000px;}
.x8c{left:352.425000px;}
.x76{left:354.975000px;}
.x79{left:360.750000px;}
.x5e{left:362.175000px;}
.x5c{left:366.150000px;}
.x4d{left:369.375000px;}
.xc{left:370.800000px;}
.x5f{left:374.400000px;}
.x22{left:379.050000px;}
.x4{left:380.850000px;}
.x7{left:381.975000px;}
.x8{left:384.825000px;}
.xa0{left:385.950000px;}
.x14{left:389.850000px;}
.xb8{left:392.400000px;}
.x4e{left:394.950000px;}
.x54{left:396.000000px;}
.x9{left:400.350000px;}
.x23{left:401.400000px;}
.x59{left:407.548500px;}
.x83{left:410.775000px;}
.x69{left:411.825000px;}
.x29{left:412.950000px;}
.x90{left:415.048500px;}
.x64{left:417.225000px;}
.x55{left:421.575000px;}
.x15{left:424.423500px;}
.x37{left:427.350000px;}
.x96{left:429.450000px;}
.x5a{left:432.000000px;}
.xa5{left:437.400000px;}
.x2f{left:441.375000px;}
.x91{left:442.423500px;}
.x41{left:443.548500px;}
.x50{left:450.000000px;}
.xa1{left:453.975000px;}
.x4f{left:455.400000px;}
.xa2{left:459.750000px;}
.xaf{left:460.800000px;}
.x49{left:466.575000px;}
.x65{left:470.850000px;}
.x1b{left:472.350000px;}
.x87{left:482.025000px;}
.x16{left:485.625000px;}
.x60{left:487.050000px;}
.x6a{left:489.225000px;}
.x30{left:491.400000px;}
.x88{left:499.350000px;}
.x6d{left:503.625000px;}
.x1c{left:511.575000px;}
.x24{left:513.000000px;}
.x66{left:514.425000px;}
.x51{left:517.350000px;}
.x7a{left:520.575000px;}
.x2b{left:523.800000px;}
.x7f{left:527.400000px;}
.xf{left:528.450000px;}
.x67{left:531.375000px;}
.x47{left:535.650000px;}
.x2a{left:539.250000px;}
.x6e{left:541.425000px;}
.x72{left:542.550000px;}
.x9c{left:545.400000px;}
.x33{left:548.250000px;}
.x40{left:550.050000px;}
.x2c{left:551.850000px;}
.x1d{left:559.050000px;}
.x68{left:560.550000px;}
.x61{left:561.600000px;}
.x31{left:562.650000px;}
.x42{left:564.150000px;}
.x9d{left:576.000000px;}
.x62{left:577.050000px;}
.x3a{left:582.150000px;}
.x3d{left:588.225000px;}
.x6f{left:595.800000px;}
.x7b{left:601.950000px;}
.xb5{left:603.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-6.666667pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-3.140517pt;}
.fs2{font-size:26.666667pt;}
.fs3{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fsb{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fs9{font-size:74.666667pt;}
.fs0{font-size:101.333333pt;}
.fs1{font-size:106.666667pt;}
.fs6{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.ybc{bottom:75.265333pt;}
.yb7{bottom:76.532000pt;}
.yb8{bottom:76.865333pt;}
.yb9{bottom:77.132000pt;}
.yba{bottom:77.798667pt;}
.ybb{bottom:78.132000pt;}
.y141{bottom:81.000000pt;}
.y47{bottom:82.865333pt;}
.y170{bottom:83.532000pt;}
.y16f{bottom:83.798667pt;}
.y171{bottom:84.132000pt;}
.y101{bottom:85.265333pt;}
.yb4{bottom:94.800000pt;}
.yb5{bottom:95.398667pt;}
.yb6{bottom:95.732000pt;}
.y140{bottom:98.932000pt;}
.y46{bottom:100.800000pt;}
.y16e{bottom:101.732000pt;}
.y100{bottom:103.133333pt;}
.yb2{bottom:114.333333pt;}
.yb3{bottom:114.598667pt;}
.y13f{bottom:116.865333pt;}
.y45{bottom:118.732000pt;}
.y16d{bottom:119.333333pt;}
.yfe{bottom:119.800000pt;}
.yff{bottom:121.666667pt;}
.yaf{bottom:132.198667pt;}
.yb0{bottom:132.865333pt;}
.yb1{bottom:133.466667pt;}
.y13e{bottom:134.732000pt;}
.y44{bottom:136.666667pt;}
.y43{bottom:136.932000pt;}
.y16c{bottom:137.265333pt;}
.yfa{bottom:137.398667pt;}
.yfb{bottom:138.000000pt;}
.yfc{bottom:139.666667pt;}
.yfd{bottom:142.800000pt;}
.yae{bottom:150.466667pt;}
.y13d{bottom:152.333333pt;}
.y42{bottom:154.532000pt;}
.y16b{bottom:154.865333pt;}
.yf9{bottom:156.265333pt;}
.ya9{bottom:167.732000pt;}
.yaa{bottom:168.065333pt;}
.ya8{bottom:168.333333pt;}
.ya7{bottom:168.666667pt;}
.yab{bottom:169.000000pt;}
.yac{bottom:169.065333pt;}
.yad{bottom:169.333333pt;}
.y41{bottom:172.466667pt;}
.y16a{bottom:172.800000pt;}
.yf4{bottom:175.133333pt;}
.yf5{bottom:176.732000pt;}
.yf6{bottom:177.065333pt;}
.yf7{bottom:178.333333pt;}
.yf8{bottom:179.000000pt;}
.y13c{bottom:185.666667pt;}
.ya6{bottom:186.000000pt;}
.y40{bottom:190.398667pt;}
.yf1{bottom:192.732000pt;}
.yf2{bottom:193.065333pt;}
.yf3{bottom:195.265333pt;}
.ya5{bottom:205.198667pt;}
.y3f{bottom:208.000000pt;}
.y169{bottom:208.333333pt;}
.yf0{bottom:211.598667pt;}
.y13b{bottom:221.800000pt;}
.ya1{bottom:222.798667pt;}
.ya2{bottom:223.398667pt;}
.ya3{bottom:223.732000pt;}
.ya4{bottom:224.065333pt;}
.y3d{bottom:225.000000pt;}
.y3e{bottom:225.598667pt;}
.y3c{bottom:225.932000pt;}
.y3b{bottom:226.198667pt;}
.yef{bottom:229.265333pt;}
.y13a{bottom:238.798667pt;}
.y139{bottom:239.398667pt;}
.y9e{bottom:241.000000pt;}
.y9f{bottom:242.000000pt;}
.ya0{bottom:242.265333pt;}
.y3a{bottom:243.532000pt;}
.y38{bottom:244.198667pt;}
.y39{bottom:244.465333pt;}
.yee{bottom:247.132000pt;}
.y138{bottom:257.666667pt;}
.y168{bottom:258.532000pt;}
.y9a{bottom:258.666667pt;}
.y167{bottom:258.865333pt;}
.y9b{bottom:259.265333pt;}
.y9c{bottom:259.532000pt;}
.y9d{bottom:259.865333pt;}
.y37{bottom:261.132000pt;}
.yed{bottom:264.732000pt;}
.y137{bottom:274.265333pt;}
.y94{bottom:276.132000pt;}
.y95{bottom:276.198667pt;}
.y96{bottom:276.532000pt;}
.y97{bottom:276.798667pt;}
.y99{bottom:276.865333pt;}
.y98{bottom:277.198667pt;}
.y36{bottom:279.333333pt;}
.yec{bottom:283.932000pt;}
.y136{bottom:291.865333pt;}
.y8e{bottom:294.132000pt;}
.y8d{bottom:294.465333pt;}
.y8f{bottom:294.732000pt;}
.y90{bottom:295.065333pt;}
.y166{bottom:295.333333pt;}
.y91{bottom:295.732000pt;}
.y93{bottom:296.333333pt;}
.y92{bottom:296.398667pt;}
.y34{bottom:296.932000pt;}
.y35{bottom:297.598667pt;}
.ye9{bottom:301.532000pt;}
.yea{bottom:301.865333pt;}
.yeb{bottom:303.132000pt;}
.y135{bottom:309.465333pt;}
.y89{bottom:312.000000pt;}
.y8a{bottom:312.333333pt;}
.y8b{bottom:312.666667pt;}
.y164{bottom:312.932000pt;}
.y8c{bottom:313.065333pt;}
.y165{bottom:313.265333pt;}
.y33{bottom:315.798667pt;}
.ye8{bottom:319.798667pt;}
.y134{bottom:327.398667pt;}
.y85{bottom:329.333333pt;}
.y86{bottom:329.932000pt;}
.y87{bottom:330.265333pt;}
.y161{bottom:330.598667pt;}
.y162{bottom:330.865333pt;}
.y88{bottom:330.932000pt;}
.y163{bottom:331.198667pt;}
.y30{bottom:332.198667pt;}
.y31{bottom:332.465333pt;}
.y2f{bottom:333.065333pt;}
.y32{bottom:333.132000pt;}
.y2e{bottom:333.465333pt;}
.ye7{bottom:338.000000pt;}
.y133{bottom:345.000000pt;}
.y82{bottom:348.198667pt;}
.y160{bottom:348.465333pt;}
.y83{bottom:348.532000pt;}
.y84{bottom:349.132000pt;}
.y2d{bottom:350.065333pt;}
.ye5{bottom:354.666667pt;}
.ye6{bottom:355.598667pt;}
.y132{bottom:362.598667pt;}
.y7f{bottom:365.132000pt;}
.y80{bottom:365.465333pt;}
.y15f{bottom:366.398667pt;}
.y81{bottom:366.465333pt;}
.y2c{bottom:368.000000pt;}
.y2b{bottom:368.932000pt;}
.y2a{bottom:369.265333pt;}
.ye4{bottom:373.198667pt;}
.y130{bottom:379.932000pt;}
.y131{bottom:380.198667pt;}
.y12f{bottom:380.532000pt;}
.y7c{bottom:383.398667pt;}
.y15e{bottom:384.333333pt;}
.y7d{bottom:385.000000pt;}
.y7e{bottom:385.666667pt;}
.y29{bottom:385.932000pt;}
.ye3{bottom:391.465333pt;}
.y18d{bottom:392.465333pt;}
.y12e{bottom:397.865333pt;}
.y75{bottom:401.932000pt;}
.y15d{bottom:402.198667pt;}
.y76{bottom:402.598667pt;}
.y77{bottom:402.932000pt;}
.y78{bottom:403.265333pt;}
.y79{bottom:403.532000pt;}
.y7a{bottom:403.598667pt;}
.y7b{bottom:404.198667pt;}
.y28{bottom:404.465333pt;}
.ye1{bottom:410.065333pt;}
.ye0{bottom:410.333333pt;}
.ye2{bottom:410.666667pt;}
.y12c{bottom:415.398667pt;}
.y12d{bottom:415.732000pt;}
.y12b{bottom:416.333333pt;}
.y73{bottom:419.865333pt;}
.y27{bottom:421.132000pt;}
.y74{bottom:421.198667pt;}
.y26{bottom:422.065333pt;}
.y18c{bottom:425.398667pt;}
.y18b{bottom:425.732000pt;}
.ydd{bottom:428.265333pt;}
.yde{bottom:429.865333pt;}
.ydf{bottom:430.465333pt;}
.y12a{bottom:433.666667pt;}
.y6f{bottom:437.465333pt;}
.y15c{bottom:438.065333pt;}
.y70{bottom:438.398667pt;}
.y25{bottom:439.333333pt;}
.y71{bottom:439.398667pt;}
.y72{bottom:440.333333pt;}
.ydc{bottom:446.532000pt;}
.y129{bottom:451.532000pt;}
.y15b{bottom:456.000000pt;}
.y6b{bottom:456.065333pt;}
.y6c{bottom:456.333333pt;}
.y24{bottom:456.598667pt;}
.y23{bottom:456.932000pt;}
.y6d{bottom:457.000000pt;}
.y22{bottom:457.598667pt;}
.y21{bottom:458.198667pt;}
.y6e{bottom:458.265333pt;}
.y18a{bottom:458.398667pt;}
.y20{bottom:458.598667pt;}
.y1f{bottom:458.865333pt;}
.ydb{bottom:464.132000pt;}
.y128{bottom:468.865333pt;}
.y127{bottom:469.198667pt;}
.y126{bottom:469.798667pt;}
.y15a{bottom:473.598667pt;}
.y1e{bottom:473.932000pt;}
.y1d{bottom:474.198667pt;}
.y1c{bottom:474.532000pt;}
.y69{bottom:475.198667pt;}
.y1b{bottom:475.532000pt;}
.y6a{bottom:476.198667pt;}
.y189{bottom:476.333333pt;}
.yd6{bottom:481.398667pt;}
.yd5{bottom:481.666667pt;}
.yd7{bottom:482.666667pt;}
.yd8{bottom:483.265333pt;}
.yd9{bottom:483.333333pt;}
.yda{bottom:483.666667pt;}
.y125{bottom:487.065333pt;}
.y159{bottom:491.198667pt;}
.y1a{bottom:492.798667pt;}
.y67{bottom:492.865333pt;}
.y68{bottom:494.132000pt;}
.y188{bottom:494.265333pt;}
.y19{bottom:494.598667pt;}
.yd4{bottom:501.532000pt;}
.y124{bottom:505.000000pt;}
.y158{bottom:509.066667pt;}
.y64{bottom:511.066667pt;}
.y187{bottom:511.865333pt;}
.y18{bottom:512.333333pt;}
.y65{bottom:512.666667pt;}
.y66{bottom:512.733333pt;}
.yd3{bottom:519.198667pt;}
.y123{bottom:522.598667pt;}
.y157{bottom:526.666667pt;}
.y17{bottom:528.333333pt;}
.y62{bottom:528.400000pt;}
.y16{bottom:529.265333pt;}
.y63{bottom:529.333333pt;}
.y186{bottom:529.733333pt;}
.y15{bottom:530.265333pt;}
.yd2{bottom:538.000000pt;}
.y122{bottom:539.932000pt;}
.y156{bottom:544.333333pt;}
.y14{bottom:546.532000pt;}
.y61{bottom:547.532000pt;}
.y185{bottom:547.666667pt;}
.yb{bottom:553.265333pt;}
.yd1{bottom:555.598667pt;}
.y121{bottom:558.465333pt;}
.y155{bottom:561.932000pt;}
.y13{bottom:563.198667pt;}
.y12{bottom:563.532000pt;}
.y11{bottom:564.133333pt;}
.y10{bottom:564.466667pt;}
.yf{bottom:564.800000pt;}
.y184{bottom:565.265333pt;}
.ye{bottom:565.732000pt;}
.y60{bottom:565.800000pt;}
.yd0{bottom:574.800000pt;}
.y120{bottom:576.065333pt;}
.y154{bottom:579.800000pt;}
.yd{bottom:580.466667pt;}
.yc{bottom:582.732000pt;}
.y183{bottom:583.198667pt;}
.y5f{bottom:584.666667pt;}
.ycd{bottom:592.732000pt;}
.yce{bottom:593.065333pt;}
.y11f{bottom:593.598667pt;}
.ycf{bottom:594.000000pt;}
.y153{bottom:597.466667pt;}
.y182{bottom:600.800000pt;}
.y5e{bottom:602.265333pt;}
.ycc{bottom:610.666667pt;}
.y11e{bottom:610.932000pt;}
.y11d{bottom:612.198667pt;}
.y11c{bottom:613.466667pt;}
.y152{bottom:615.000000pt;}
.y181{bottom:618.732000pt;}
.y5d{bottom:620.198667pt;}
.ya{bottom:620.466667pt;}
.y9{bottom:622.065333pt;}
.y11b{bottom:628.198667pt;}
.ycb{bottom:628.265333pt;}
.y11a{bottom:628.532000pt;}
.y119{bottom:628.865333pt;}
.y118{bottom:629.466667pt;}
.y117{bottom:630.800000pt;}
.y151{bottom:632.598667pt;}
.y180{bottom:636.598667pt;}
.y5a{bottom:636.800000pt;}
.y5b{bottom:636.865333pt;}
.y17f{bottom:636.932000pt;}
.y5c{bottom:638.133333pt;}
.y116{bottom:647.065333pt;}
.yc9{bottom:647.732000pt;}
.yca{bottom:647.800000pt;}
.y150{bottom:650.532000pt;}
.y17e{bottom:654.265333pt;}
.y57{bottom:654.398667pt;}
.y58{bottom:656.065333pt;}
.y59{bottom:657.666667pt;}
.y115{bottom:664.666667pt;}
.yc8{bottom:665.732000pt;}
.y114{bottom:666.598667pt;}
.y113{bottom:667.265333pt;}
.y14f{bottom:667.865333pt;}
.y8{bottom:669.732000pt;}
.y17d{bottom:672.133333pt;}
.y55{bottom:673.333333pt;}
.y56{bottom:675.532000pt;}
.y112{bottom:683.266667pt;}
.yc7{bottom:683.600000pt;}
.y14e{bottom:685.800000pt;}
.y17c{bottom:690.398667pt;}
.y54{bottom:691.532000pt;}
.y111{bottom:700.532000pt;}
.yc5{bottom:701.532000pt;}
.yc6{bottom:702.466667pt;}
.y14c{bottom:703.333333pt;}
.y14d{bottom:703.666667pt;}
.y17b{bottom:708.000000pt;}
.y53{bottom:709.800000pt;}
.y7{bottom:713.266667pt;}
.y6{bottom:713.333333pt;}
.y5{bottom:713.600000pt;}
.y14b{bottom:718.065333pt;}
.y110{bottom:718.466667pt;}
.y14a{bottom:719.333333pt;}
.y149{bottom:720.600000pt;}
.y148{bottom:720.933333pt;}
.yc4{bottom:721.065333pt;}
.y17a{bottom:725.600000pt;}
.y51{bottom:727.732000pt;}
.y52{bottom:728.666667pt;}
.y4{bottom:729.933333pt;}
.y3{bottom:730.865333pt;}
.y2{bottom:731.532000pt;}
.y1{bottom:732.532000pt;}
.y10f{bottom:734.732000pt;}
.y10e{bottom:735.398667pt;}
.y10d{bottom:737.000000pt;}
.y147{bottom:738.532000pt;}
.yc3{bottom:739.000000pt;}
.y10c{bottom:739.933333pt;}
.y179{bottom:743.198667pt;}
.y4e{bottom:745.666667pt;}
.y4f{bottom:746.600000pt;}
.y50{bottom:748.532000pt;}
.y10b{bottom:753.933333pt;}
.y146{bottom:755.865333pt;}
.y10a{bottom:756.198667pt;}
.yc2{bottom:756.865333pt;}
.y178{bottom:760.800000pt;}
.y4d{bottom:765.198667pt;}
.y109{bottom:771.532000pt;}
.y108{bottom:773.466667pt;}
.y107{bottom:774.732000pt;}
.yc1{bottom:776.133333pt;}
.y177{bottom:778.666667pt;}
.y4c{bottom:783.732000pt;}
.y106{bottom:788.198667pt;}
.y105{bottom:789.532000pt;}
.y145{bottom:791.333333pt;}
.y104{bottom:791.398667pt;}
.yc0{bottom:794.000000pt;}
.y176{bottom:795.732000pt;}
.y175{bottom:796.333333pt;}
.y49{bottom:801.000000pt;}
.y4a{bottom:801.933333pt;}
.y4b{bottom:802.666667pt;}
.y103{bottom:808.065333pt;}
.y144{bottom:809.000000pt;}
.ybe{bottom:811.933333pt;}
.ybf{bottom:812.266667pt;}
.y174{bottom:813.933333pt;}
.y173{bottom:814.532000pt;}
.y48{bottom:834.933333pt;}
.y102{bottom:841.333333pt;}
.y143{bottom:841.865333pt;}
.y142{bottom:841.933333pt;}
.ybd{bottom:844.933333pt;}
.y172{bottom:846.865333pt;}
.h3{height:28.453333pt;}
.h4{height:36.622396pt;}
.h5{height:39.834667pt;}
.h14{height:41.875000pt;}
.h10{height:43.000000pt;}
.hd{height:44.500000pt;}
.h17{height:47.085938pt;}
.hf{height:47.109375pt;}
.h1b{height:48.375000pt;}
.hb{height:50.062500pt;}
.h6{height:52.317708pt;}
.ha{height:52.343750pt;}
.h18{height:53.750000pt;}
.h7{height:55.625000pt;}
.hc{height:57.549479pt;}
.h13{height:57.578125pt;}
.h1d{height:59.125000pt;}
.h8{height:61.187500pt;}
.h1a{height:62.781250pt;}
.h16{height:62.812500pt;}
.h15{height:68.013021pt;}
.h11{height:77.875000pt;}
.h1{height:99.453125pt;}
.h2{height:104.687500pt;}
.h9{height:134.375000pt;}
.he{height:897.333333pt;}
.h12{height:898.666667pt;}
.h0{height:904.000000pt;}
.h19{height:905.333333pt;}
.h1c{height:908.000000pt;}
.w2{width:582.666667pt;}
.w1{width:588.000000pt;}
.w5{width:590.666667pt;}
.w3{width:597.333333pt;}
.w0{width:598.666667pt;}
.w4{width:602.666667pt;}
.x0{left:0.000000pt;}
.x7c{left:44.800000pt;}
.x7e{left:45.733333pt;}
.x80{left:47.066667pt;}
.x82{left:48.000000pt;}
.x8d{left:49.266667pt;}
.x94{left:50.266667pt;}
.xa9{left:51.866667pt;}
.xb{left:61.733333pt;}
.x18{left:63.066667pt;}
.xd{left:64.000000pt;}
.x1{left:72.000000pt;}
.x1a{left:73.266667pt;}
.x84{left:74.266667pt;}
.x43{left:76.133333pt;}
.x35{left:77.133333pt;}
.xae{left:78.066667pt;}
.xa8{left:79.333333pt;}
.xa4{left:83.866667pt;}
.x9f{left:84.800000pt;}
.x2d{left:85.732000pt;}
.xb3{left:86.732000pt;}
.xb7{left:87.666667pt;}
.x25{left:88.933333pt;}
.x32{left:92.133333pt;}
.x26{left:94.732000pt;}
.x48{left:98.266667pt;}
.x1e{left:104.000000pt;}
.x52{left:106.866667pt;}
.x77{left:111.666667pt;}
.x95{left:113.266667pt;}
.x7d{left:114.866667pt;}
.xe{left:116.466667pt;}
.x38{left:117.466667pt;}
.x3e{left:120.933333pt;}
.x56{left:121.933333pt;}
.x1f{left:123.200000pt;}
.x3b{left:126.066667pt;}
.x17{left:128.666667pt;}
.x10{left:129.933333pt;}
.x9a{left:135.666667pt;}
.x2{left:137.266667pt;}
.x28{left:141.733333pt;}
.x3c{left:143.666667pt;}
.xb6{left:144.666667pt;}
.x3f{left:148.466667pt;}
.xad{left:150.066667pt;}
.x27{left:155.533333pt;}
.x89{left:159.066667pt;}
.x98{left:165.466667pt;}
.x99{left:167.333333pt;}
.x70{left:168.933333pt;}
.x6b{left:170.266667pt;}
.x19{left:171.200000pt;}
.xb4{left:174.400000pt;}
.x8a{left:182.733333pt;}
.x39{left:185.600000pt;}
.x6c{left:187.866667pt;}
.x92{left:190.400000pt;}
.x9b{left:191.666667pt;}
.x81{left:193.600000pt;}
.x93{left:195.533333pt;}
.x20{left:196.465333pt;}
.x4a{left:202.866667pt;}
.x53{left:210.866667pt;}
.x57{left:213.466667pt;}
.x8b{left:216.000000pt;}
.x73{left:218.866667pt;}
.xb0{left:222.400000pt;}
.xb1{left:228.800000pt;}
.xa3{left:230.733333pt;}
.x9e{left:231.666667pt;}
.xaa{left:232.666667pt;}
.x74{left:234.533333pt;}
.x71{left:237.466667pt;}
.x85{left:240.666667pt;}
.xa{left:243.200000pt;}
.x75{left:246.066667pt;}
.x97{left:248.000000pt;}
.xa6{left:250.533333pt;}
.x5d{left:251.533333pt;}
.x58{left:254.066667pt;}
.x78{left:256.333333pt;}
.x44{left:257.933333pt;}
.x45{left:258.866667pt;}
.xb2{left:262.400000pt;}
.x5b{left:263.666667pt;}
.x4b{left:266.866667pt;}
.x8e{left:268.466667pt;}
.x8f{left:269.466667pt;}
.xa7{left:272.933333pt;}
.x21{left:274.266667pt;}
.x86{left:275.533333pt;}
.x34{left:276.466667pt;}
.x36{left:280.666667pt;}
.x4c{left:282.866667pt;}
.x46{left:285.133333pt;}
.xab{left:286.066667pt;}
.x5{left:288.333333pt;}
.x11{left:290.266667pt;}
.x63{left:291.866667pt;}
.x3{left:295.333333pt;}
.x6{left:301.466667pt;}
.x2e{left:304.000000pt;}
.xac{left:308.466667pt;}
.x12{left:310.066667pt;}
.x13{left:312.333333pt;}
.x8c{left:313.266667pt;}
.x76{left:315.533333pt;}
.x79{left:320.666667pt;}
.x5e{left:321.933333pt;}
.x5c{left:325.466667pt;}
.x4d{left:328.333333pt;}
.xc{left:329.600000pt;}
.x5f{left:332.800000pt;}
.x22{left:336.933333pt;}
.x4{left:338.533333pt;}
.x7{left:339.533333pt;}
.x8{left:342.066667pt;}
.xa0{left:343.066667pt;}
.x14{left:346.533333pt;}
.xb8{left:348.800000pt;}
.x4e{left:351.066667pt;}
.x54{left:352.000000pt;}
.x9{left:355.866667pt;}
.x23{left:356.800000pt;}
.x59{left:362.265333pt;}
.x83{left:365.133333pt;}
.x69{left:366.066667pt;}
.x29{left:367.066667pt;}
.x90{left:368.932000pt;}
.x64{left:370.866667pt;}
.x55{left:374.733333pt;}
.x15{left:377.265333pt;}
.x37{left:379.866667pt;}
.x96{left:381.733333pt;}
.x5a{left:384.000000pt;}
.xa5{left:388.800000pt;}
.x2f{left:392.333333pt;}
.x91{left:393.265333pt;}
.x41{left:394.265333pt;}
.x50{left:400.000000pt;}
.xa1{left:403.533333pt;}
.x4f{left:404.800000pt;}
.xa2{left:408.666667pt;}
.xaf{left:409.600000pt;}
.x49{left:414.733333pt;}
.x65{left:418.533333pt;}
.x1b{left:419.866667pt;}
.x87{left:428.466667pt;}
.x16{left:431.666667pt;}
.x60{left:432.933333pt;}
.x6a{left:434.866667pt;}
.x30{left:436.800000pt;}
.x88{left:443.866667pt;}
.x6d{left:447.666667pt;}
.x1c{left:454.733333pt;}
.x24{left:456.000000pt;}
.x66{left:457.266667pt;}
.x51{left:459.866667pt;}
.x7a{left:462.733333pt;}
.x2b{left:465.600000pt;}
.x7f{left:468.800000pt;}
.xf{left:469.733333pt;}
.x67{left:472.333333pt;}
.x47{left:476.133333pt;}
.x2a{left:479.333333pt;}
.x6e{left:481.266667pt;}
.x72{left:482.266667pt;}
.x9c{left:484.800000pt;}
.x33{left:487.333333pt;}
.x40{left:488.933333pt;}
.x2c{left:490.533333pt;}
.x1d{left:496.933333pt;}
.x68{left:498.266667pt;}
.x61{left:499.200000pt;}
.x31{left:500.133333pt;}
.x42{left:501.466667pt;}
.x9d{left:512.000000pt;}
.x62{left:512.933333pt;}
.x3a{left:517.466667pt;}
.x3d{left:522.866667pt;}
.x6f{left:529.600000pt;}
.x7b{left:535.066667pt;}
.xb5{left:536.000000pt;}
}




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