
    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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_ff29dc6a39da69ee437bf082.woff')format("woff");}.ff2{font-family:ff2;line-height:1.049000;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_981355621abdc9121b8e1594.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_ec975071da8e7f0015e6db68.woff')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_10e8910402507dc923045b83.woff')format("woff");}.ff5{font-family:ff5;line-height:0.908000;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_26f37626d328d59f9697fb97.woff')format("woff");}.ff6{font-family:ff6;line-height:0.908000;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_a18ab1022984d12d78cb73bd.woff')format("woff");}.ff7{font-family:ff7;line-height:1.049000;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_2ffd1a250da8764014fb85b5.woff')format("woff");}.ff8{font-family:ff8;line-height:1.019000;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_f0354bbf96a157414e7c9ace.woff')format("woff");}.ff9{font-family:ff9;line-height:1.061000;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_4abbb1c4b9e46ba8bcf4a4a0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.950000;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_971dcc35e3b31bdc5a3936cb.woff')format("woff");}.ffb{font-family:ffb;line-height:1.061000;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_a88bbe05889b2101b40ff16a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.009000;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_62b55d8fd8c82ab270c4966a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.850586;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_3c319bbcec812175568caf22.woff')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_f1958d72a5a6038a8c71fd9a.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m8{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,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);}
.m4{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-12.240000px;}
.v4{vertical-align:-9.360000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-1.008000px;}
.lsa{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.392400px;}
.ls1e{letter-spacing:-0.385800px;}
.ls4{letter-spacing:-0.288000px;}
.ls24{letter-spacing:-0.227682px;}
.ls1f{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.157200px;}
.lsb{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.136800px;}
.ls15{letter-spacing:-0.115800px;}
.ls22{letter-spacing:-0.103200px;}
.ls9{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.067200px;}
.ls8{letter-spacing:-0.013680px;}
.ls2{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.040320px;}
.ls6{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.136200px;}
.ls19{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.150000px;}
.ls1c{letter-spacing:0.151788px;}
.ls12{letter-spacing:0.153000px;}
.ls14{letter-spacing:0.157200px;}
.ls18{letter-spacing:0.208200px;}
.ls1{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.252000px;}
.ls1a{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.378720px;}
.ls20{letter-spacing:0.406800px;}
.lse{letter-spacing:0.464400px;}
.ls13{letter-spacing:0.583800px;}
.ls11{letter-spacing:0.612000px;}
.lsc{letter-spacing:0.618000px;}
.lsd{letter-spacing:0.684000px;}
.ls25{letter-spacing:0.720000px;}
.ls7{letter-spacing:2.376000px;}
.lsf{letter-spacing:11.736000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(145,25,56),0 0.015em rgb(145,25,56),0.015em 0 rgb(145,25,56),0 -0.015em  rgb(145,25,56);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(145,25,56);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-72.000000px;}
.ws16{word-spacing:-21.649680px;}
.ws5{word-spacing:-19.944000px;}
.ws1{word-spacing:-19.872000px;}
.ws14{word-spacing:-19.504734px;}
.ws6{word-spacing:-19.051200px;}
.ws13{word-spacing:-18.648000px;}
.wsa{word-spacing:-18.504000px;}
.ws9{word-spacing:-18.432000px;}
.wsc{word-spacing:-18.360000px;}
.ws15{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.282240px;}
.ws3{word-spacing:-17.023680px;}
.wsd{word-spacing:-11.350320px;}
.wse{word-spacing:-11.196720px;}
.ws2{word-spacing:-10.732320px;}
.ws12{word-spacing:-9.504000px;}
.ws10{word-spacing:-9.409200px;}
.ws11{word-spacing:-9.252000px;}
.ws0{word-spacing:-0.156240px;}
.ws8{word-spacing:-0.142560px;}
.wsf{word-spacing:-0.059760px;}
.ws7{word-spacing:0.000000px;}
._17{margin-left:-5.028480px;}
._14{margin-left:-3.974400px;}
._1d{margin-left:-2.370240px;}
._1{margin-left:-1.157760px;}
._2{width:1.127520px;}
._3{width:2.348640px;}
._4{width:4.054560px;}
._6{width:5.416320px;}
._7{width:6.557760px;}
._8{width:8.179200px;}
._10{width:9.207360px;}
._11{width:10.365120px;}
._12{width:11.989440px;}
._13{width:13.176960px;}
._19{width:14.976000px;}
._1f{width:16.021440px;}
._18{width:17.210400px;}
._9{width:20.335680px;}
._a{width:21.394560px;}
._b{width:23.016960px;}
._c{width:24.073920px;}
._5{width:25.171200px;}
._d{width:26.646720px;}
._e{width:28.019520px;}
._f{width:29.073600px;}
._16{width:30.326400px;}
._15{width:31.680000px;}
._1b{width:33.408000px;}
._1e{width:35.280000px;}
._27{width:36.504000px;}
._20{width:37.512000px;}
._2b{width:39.240000px;}
._1a{width:42.840000px;}
._1c{width:43.968000px;}
._25{width:45.576000px;}
._2d{width:46.872000px;}
._2c{width:48.312000px;}
._29{width:53.712000px;}
._2a{width:54.720000px;}
._2e{width:58.464000px;}
._21{width:60.624000px;}
._28{width:61.728480px;}
._24{width:63.804960px;}
._22{width:72.745920px;}
._23{width:74.792160px;}
._26{width:76.479840px;}
._0{width:1481.489760px;}
.fc5{color:rgb(21,27,28);}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(145,25,56);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsc{font-size:59.760000px;}
.fsb{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:74.880000px;}
.fsa{font-size:75.893905px;}
.fs9{font-size:77.760000px;}
.fsd{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.ycc{bottom:-119.190000px;}
.ycb{bottom:-106.950000px;}
.yca{bottom:-94.710000px;}
.yc9{bottom:-82.470000px;}
.yc8{bottom:-70.230000px;}
.yc7{bottom:-57.990000px;}
.yc6{bottom:-45.750000px;}
.yc5{bottom:-33.510000px;}
.ye5{bottom:-29.340000px;}
.yf5{bottom:-28.260000px;}
.yfb{bottom:-28.080000px;}
.yd5{bottom:-23.790000px;}
.yc4{bottom:-21.090000px;}
.ye4{bottom:-18.360000px;}
.yf4{bottom:-17.280000px;}
.yfa{bottom:-17.100000px;}
.yd4{bottom:-11.550000px;}
.yc3{bottom:-8.820000px;}
.ye3{bottom:-7.380000px;}
.yff{bottom:-6.480000px;}
.ydd{bottom:-6.300000px;}
.ydb{bottom:-6.120000px;}
.yd{bottom:-5.940000px;}
.yef{bottom:-5.760000px;}
.yd9{bottom:-5.040000px;}
.yde{bottom:-3.960000px;}
.yd0{bottom:-0.540000px;}
.y0{bottom:0.000000px;}
.yd3{bottom:0.720000px;}
.ye6{bottom:2.880000px;}
.yec{bottom:3.060000px;}
.yda{bottom:3.270000px;}
.yc2{bottom:3.420000px;}
.ye2{bottom:3.600000px;}
.yeb{bottom:3.780000px;}
.yd8{bottom:3.810000px;}
.yf6{bottom:3.960000px;}
.y111{bottom:4.134000px;}
.ya3{bottom:4.140000px;}
.y8{bottom:4.320000px;}
.ydf{bottom:4.500000px;}
.y110{bottom:4.674000px;}
.y7f{bottom:4.680000px;}
.ya6{bottom:4.860000px;}
.y102{bottom:4.905000px;}
.y7e{bottom:5.040000px;}
.yee{bottom:5.220000px;}
.yc{bottom:5.400000px;}
.y86{bottom:5.580000px;}
.y8b{bottom:5.625000px;}
.y7a{bottom:6.120000px;}
.y88{bottom:6.300000px;}
.yac{bottom:6.480000px;}
.y43{bottom:6.660000px;}
.y81{bottom:6.840000px;}
.y97{bottom:7.014000px;}
.y82{bottom:7.020000px;}
.ye8{bottom:7.200000px;}
.ya7{bottom:7.560000px;}
.ya5{bottom:7.920000px;}
.yad{bottom:9.180000px;}
.yab{bottom:9.540000px;}
.y76{bottom:10.620000px;}
.ycf{bottom:11.700000px;}
.yf2{bottom:12.780000px;}
.yd2{bottom:12.960000px;}
.yc1{bottom:15.300000px;}
.yb2{bottom:15.885000px;}
.yb{bottom:16.740000px;}
.yb1{bottom:17.325000px;}
.yf1{bottom:18.720000px;}
.y6{bottom:19.650000px;}
.y79{bottom:20.340000px;}
.y7c{bottom:21.420000px;}
.y94{bottom:21.594000px;}
.y84{bottom:21.600000px;}
.yce{bottom:23.940000px;}
.ya{bottom:24.156000px;}
.yd1{bottom:25.380000px;}
.yc0{bottom:26.280000px;}
.y7{bottom:26.820000px;}
.y99{bottom:29.730000px;}
.y42{bottom:30.450000px;}
.yb0{bottom:31.725000px;}
.y78{bottom:34.560000px;}
.ycd{bottom:36.360000px;}
.ybf{bottom:37.260000px;}
.yd6{bottom:38.520000px;}
.y44{bottom:39.450000px;}
.y9{bottom:47.520000px;}
.ybe{bottom:48.240000px;}
.ybd{bottom:49.500000px;}
.y41{bottom:54.210000px;}
.y4{bottom:58.320000px;}
.y3{bottom:78.156000px;}
.y2{bottom:98.676000px;}
.y113{bottom:116.856000px;}
.y3f{bottom:124.236000px;}
.y74{bottom:128.916000px;}
.y5{bottom:131.220000px;}
.y112{bottom:131.436000px;}
.y10f{bottom:146.016000px;}
.y3e{bottom:146.196000px;}
.y93{bottom:147.096000px;}
.y73{bottom:150.870000px;}
.y135{bottom:154.110000px;}
.y10e{bottom:160.230000px;}
.y96{bottom:164.910000px;}
.y3d{bottom:167.970000px;}
.y72{bottom:172.830000px;}
.y10d{bottom:175.350000px;}
.y134{bottom:176.070000px;}
.y95{bottom:182.010000px;}
.y3c{bottom:189.930000px;}
.y10c{bottom:190.110000px;}
.y71{bottom:194.790000px;}
.y90{bottom:198.390000px;}
.y133{bottom:200.910000px;}
.y10b{bottom:204.150000px;}
.y3b{bottom:211.890000px;}
.y92{bottom:216.210000px;}
.y70{bottom:216.750000px;}
.y10a{bottom:219.450000px;}
.y132{bottom:222.870000px;}
.y91{bottom:233.310000px;}
.y3a{bottom:233.850000px;}
.y109{bottom:234.030000px;}
.y6f{bottom:238.710000px;}
.y131{bottom:244.830000px;}
.y108{bottom:248.250000px;}
.y8d{bottom:249.690000px;}
.y39{bottom:255.810000px;}
.y6e{bottom:260.670000px;}
.y107{bottom:263.370000px;}
.y8f{bottom:267.510000px;}
.y130{bottom:269.670000px;}
.y38{bottom:277.770000px;}
.y106{bottom:278.130000px;}
.y6d{bottom:282.630000px;}
.y8e{bottom:284.610000px;}
.y12f{bottom:291.630000px;}
.y105{bottom:292.170000px;}
.y37{bottom:299.730000px;}
.y89{bottom:300.990000px;}
.y6c{bottom:304.590000px;}
.y104{bottom:307.470000px;}
.y12e{bottom:316.470000px;}
.y8c{bottom:318.810000px;}
.y36{bottom:321.690000px;}
.y103{bottom:322.230000px;}
.y6b{bottom:326.370000px;}
.y8a{bottom:335.910000px;}
.y101{bottom:336.270000px;}
.y12d{bottom:338.475000px;}
.y35{bottom:343.695000px;}
.y6a{bottom:348.375000px;}
.y100{bottom:351.615000px;}
.y83{bottom:352.335000px;}
.y12c{bottom:363.315000px;}
.y34{bottom:365.655000px;}
.yfe{bottom:366.375000px;}
.y87{bottom:370.155000px;}
.y69{bottom:370.335000px;}
.yfd{bottom:380.415000px;}
.y12b{bottom:385.275000px;}
.y85{bottom:387.255000px;}
.y33{bottom:387.435000px;}
.y68{bottom:392.295000px;}
.yfc{bottom:395.715000px;}
.y7b{bottom:403.635000px;}
.y12a{bottom:407.235000px;}
.y32{bottom:409.395000px;}
.yf9{bottom:410.295000px;}
.y67{bottom:414.255000px;}
.y80{bottom:421.455000px;}
.yf8{bottom:424.515000px;}
.y31{bottom:431.355000px;}
.y129{bottom:432.075000px;}
.y66{bottom:436.215000px;}
.y7d{bottom:439.095000px;}
.yf7{bottom:439.635000px;}
.y30{bottom:452.955000px;}
.y128{bottom:454.035000px;}
.yf3{bottom:454.395000px;}
.y77{bottom:454.575000px;}
.y65{bottom:458.175000px;}
.yf0{bottom:468.435000px;}
.y2f{bottom:474.555000px;}
.y127{bottom:475.815000px;}
.y64{bottom:480.135000px;}
.y2e{bottom:486.075000px;}
.yed{bottom:496.875000px;}
.y126{bottom:497.775000px;}
.y63{bottom:502.095000px;}
.y2d{bottom:506.055000px;}
.yea{bottom:512.715000px;}
.y75{bottom:512.895000px;}
.y125{bottom:522.615000px;}
.y62{bottom:524.055000px;}
.ye9{bottom:525.675000px;}
.y2c{bottom:526.215000px;}
.ye7{bottom:540.975000px;}
.y124{bottom:544.575000px;}
.y61{bottom:545.835000px;}
.y2b{bottom:546.375000px;}
.ye1{bottom:556.815000px;}
.y2a{bottom:566.355000px;}
.y60{bottom:567.795000px;}
.y123{bottom:569.415000px;}
.ye0{bottom:569.775000px;}
.ydc{bottom:585.075000px;}
.y29{bottom:586.515000px;}
.y5f{bottom:589.755000px;}
.y122{bottom:591.375000px;}
.yd7{bottom:600.915000px;}
.y28{bottom:606.705000px;}
.y5e{bottom:611.745000px;}
.ybc{bottom:613.005000px;}
.y121{bottom:616.245000px;}
.y27{bottom:626.865000px;}
.y5d{bottom:633.705000px;}
.y120{bottom:638.205000px;}
.y26{bottom:646.845000px;}
.y5c{bottom:655.665000px;}
.y11f{bottom:663.045000px;}
.y25{bottom:667.005000px;}
.ybb{bottom:675.645000px;}
.y5b{bottom:677.625000px;}
.y11e{bottom:685.005000px;}
.y24{bottom:687.165000px;}
.yba{bottom:694.005000px;}
.y5a{bottom:699.585000px;}
.y11d{bottom:706.965000px;}
.y23{bottom:707.325000px;}
.yb9{bottom:715.245000px;}
.y59{bottom:721.545000px;}
.y22{bottom:727.305000px;}
.y11c{bottom:731.805000px;}
.yb8{bottom:733.605000px;}
.y58{bottom:743.505000px;}
.y21{bottom:747.465000px;}
.yb7{bottom:752.685000px;}
.y11b{bottom:753.765000px;}
.y57{bottom:765.285000px;}
.y20{bottom:767.625000px;}
.yb6{bottom:774.465000px;}
.y11a{bottom:778.605000px;}
.y56{bottom:787.245000px;}
.y1f{bottom:787.785000px;}
.yb5{bottom:796.425000px;}
.y119{bottom:800.565000px;}
.y1e{bottom:807.765000px;}
.y55{bottom:809.205000px;}
.yb4{bottom:818.385000px;}
.y118{bottom:825.405000px;}
.y1d{bottom:827.925000px;}
.y54{bottom:831.165000px;}
.yb3{bottom:840.345000px;}
.y117{bottom:847.365000px;}
.y1c{bottom:848.085000px;}
.y53{bottom:853.125000px;}
.yaf{bottom:861.945000px;}
.y1b{bottom:868.245000px;}
.y116{bottom:869.325000px;}
.y52{bottom:875.130000px;}
.y1a{bottom:888.270000px;}
.y115{bottom:894.210000px;}
.y51{bottom:897.090000px;}
.yae{bottom:904.650000px;}
.y19{bottom:905.550000px;}
.y18{bottom:914.370000px;}
.y114{bottom:916.170000px;}
.y50{bottom:919.050000px;}
.yaa{bottom:921.570000px;}
.y17{bottom:933.450000px;}
.y4f{bottom:941.010000px;}
.ya9{bottom:941.550000px;}
.y16{bottom:946.410000px;}
.ya8{bottom:956.490000px;}
.y15{bottom:958.290000px;}
.y4e{bottom:962.970000px;}
.ya4{bottom:974.490000px;}
.y14{bottom:980.250000px;}
.y4d{bottom:984.750000px;}
.ya2{bottom:992.850000px;}
.y13{bottom:1002.210000px;}
.y4c{bottom:1006.710000px;}
.ya1{bottom:1007.790000px;}
.y13c{bottom:1020.030000px;}
.ya0{bottom:1025.790000px;}
.y4b{bottom:1028.670000px;}
.y13b{bottom:1041.990000px;}
.y9f{bottom:1042.890000px;}
.y12{bottom:1045.230000px;}
.y4a{bottom:1050.630000px;}
.y9c{bottom:1059.090000px;}
.y13a{bottom:1066.830000px;}
.y11{bottom:1068.090000px;}
.y49{bottom:1072.590000px;}
.y9e{bottom:1077.090000px;}
.y139{bottom:1088.790000px;}
.y9d{bottom:1094.190000px;}
.y48{bottom:1094.550000px;}
.y98{bottom:1110.390000px;}
.y138{bottom:1113.630000px;}
.y40{bottom:1114.710000px;}
.y47{bottom:1116.510000px;}
.y10{bottom:1121.910000px;}
.y9b{bottom:1128.390000px;}
.y137{bottom:1135.590000px;}
.y46{bottom:1138.500000px;}
.yf{bottom:1142.100000px;}
.y9a{bottom:1145.340000px;}
.y136{bottom:1157.580000px;}
.y45{bottom:1160.460000px;}
.ye{bottom:1162.260000px;}
.y1{bottom:1193.220000px;}
.h32{height:10.836000px;}
.h35{height:12.420000px;}
.h36{height:12.600000px;}
.h37{height:13.500000px;}
.h39{height:13.680000px;}
.h2a{height:14.220000px;}
.h3a{height:14.580000px;}
.h1d{height:14.760000px;}
.h38{height:15.120000px;}
.h34{height:15.300000px;}
.ha{height:15.336000px;}
.h28{height:15.480000px;}
.h21{height:15.660000px;}
.h24{height:15.696000px;}
.h33{height:15.840000px;}
.h29{height:16.200000px;}
.h27{height:16.236000px;}
.h22{height:16.380000px;}
.h10{height:16.398000px;}
.h1e{height:16.920000px;}
.h1f{height:17.100000px;}
.h6{height:17.280000px;}
.h2b{height:17.640000px;}
.h2c{height:19.260000px;}
.h13{height:26.097120px;}
.hf{height:27.548640px;}
.h19{height:28.440000px;}
.hc{height:30.672000px;}
.h31{height:31.068000px;}
.h26{height:31.680000px;}
.hb{height:35.579520px;}
.h8{height:35.676000px;}
.h1a{height:36.038880px;}
.h9{height:36.228240px;}
.h7{height:39.315600px;}
.h2d{height:41.976000px;}
.h1c{height:50.220000px;}
.h20{height:50.580000px;}
.h23{height:50.616000px;}
.h14{height:53.928000px;}
.h2e{height:54.362045px;}
.hd{height:56.234880px;}
.h3{height:56.436480px;}
.h11{height:57.165120px;}
.h1b{height:57.600000px;}
.h30{height:58.140000px;}
.h2f{height:60.226875px;}
.h12{height:60.344640px;}
.h15{height:62.136000px;}
.h17{height:63.374400px;}
.h18{height:65.496440px;}
.he{height:65.592000px;}
.h2{height:65.884219px;}
.h25{height:66.636000px;}
.h3b{height:72.699120px;}
.h16{height:73.116000px;}
.h3c{height:86.585445px;}
.h5{height:121.070742px;}
.h4{height:210.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:25.236000px;}
.w9{width:34.020000px;}
.wa{width:34.920000px;}
.wd{width:36.180000px;}
.wb{width:36.900000px;}
.we{width:37.800000px;}
.wc{width:38.556000px;}
.w1f{width:40.500000px;}
.wf{width:41.220000px;}
.w3{width:43.380000px;}
.w19{width:48.420000px;}
.w18{width:48.600000px;}
.w1c{width:48.636000px;}
.w1b{width:54.540000px;}
.w17{width:54.720000px;}
.w1a{width:54.756000px;}
.w1d{width:60.300000px;}
.w12{width:64.260000px;}
.w10{width:66.996000px;}
.w11{width:70.380000px;}
.w13{width:83.160000px;}
.w14{width:113.256000px;}
.w1e{width:128.340000px;}
.w15{width:168.840000px;}
.w8{width:197.130000px;}
.w4{width:317.415000px;}
.w6{width:438.195000px;}
.w7{width:699.045000px;}
.w5{width:797.400000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:2.340000px;}
.x1b{left:3.600000px;}
.x3{left:5.910000px;}
.x51{left:7.200000px;}
.x4f{left:8.505000px;}
.x2a{left:9.720000px;}
.x2b{left:10.800000px;}
.x23{left:12.420000px;}
.x2c{left:13.710000px;}
.x3c{left:14.760000px;}
.x24{left:16.200000px;}
.xf{left:17.640000px;}
.x39{left:18.900000px;}
.x21{left:20.880000px;}
.x32{left:22.320000px;}
.x31{left:23.940000px;}
.x15{left:25.920000px;}
.x53{left:27.000000px;}
.x10{left:28.080000px;}
.x5d{left:29.160000px;}
.x5b{left:30.780000px;}
.x30{left:32.040000px;}
.x1d{left:33.300000px;}
.x38{left:34.740000px;}
.x62{left:35.820000px;}
.x3a{left:36.900000px;}
.x3e{left:38.550000px;}
.x40{left:40.500000px;}
.x37{left:41.760000px;}
.x2f{left:43.560000px;}
.x2d{left:45.045000px;}
.x35{left:46.800000px;}
.x2e{left:48.780000px;}
.x33{left:51.165000px;}
.x34{left:52.920000px;}
.x25{left:54.180000px;}
.x3b{left:55.974000px;}
.x36{left:58.674000px;}
.x3d{left:60.114000px;}
.x27{left:61.920000px;}
.x41{left:64.845000px;}
.x42{left:67.005000px;}
.x47{left:68.220000px;}
.x6{left:70.740000px;}
.x29{left:79.560000px;}
.x1{left:80.999987px;}
.x5e{left:87.654000px;}
.x61{left:89.094000px;}
.x5c{left:92.514000px;}
.x43{left:94.134000px;}
.x69{left:98.135987px;}
.x60{left:100.074000px;}
.x44{left:102.954000px;}
.x5{left:105.165000px;}
.x12{left:113.076000px;}
.xc{left:127.475987px;}
.xd{left:134.135987px;}
.xa{left:136.655987px;}
.x66{left:140.615987px;}
.x11{left:146.880000px;}
.x63{left:148.674000px;}
.x67{left:151.769987px;}
.x6c{left:156.089987px;}
.x70{left:158.069987px;}
.x46{left:160.014000px;}
.x81{left:163.289987px;}
.x7d{left:165.269987px;}
.x78{left:166.889987px;}
.x68{left:170.849987px;}
.x48{left:185.619000px;}
.x45{left:187.599000px;}
.x3f{left:191.559000px;}
.x7c{left:194.249987px;}
.x28{left:197.310000px;}
.x84{left:198.929987px;}
.xb{left:203.249987px;}
.x64{left:210.809987px;}
.x65{left:215.489987px;}
.x6f{left:218.369987px;}
.x5f{left:231.330000px;}
.x7f{left:268.229987px;}
.x85{left:270.389987px;}
.x4e{left:273.090000px;}
.x49{left:278.859000px;}
.xe{left:285.735000px;}
.x50{left:298.875000px;}
.x14{left:311.475000px;}
.x13{left:316.479000px;}
.x77{left:334.154987px;}
.x75{left:342.434987px;}
.x16{left:346.215000px;}
.x52{left:354.135000px;}
.x88{left:364.214987px;}
.x71{left:372.674987px;}
.x18{left:381.855000px;}
.x86{left:387.614987px;}
.x7e{left:394.634987px;}
.x6e{left:400.034987px;}
.x4a{left:401.114987px;}
.x54{left:403.275000px;}
.x4b{left:404.714987px;}
.x87{left:412.814987px;}
.x19{left:419.475000px;}
.x4c{left:439.274987px;}
.x79{left:442.694987px;}
.x55{left:452.235000px;}
.x1a{left:455.115000px;}
.x73{left:461.234987px;}
.x6a{left:478.364987px;}
.x6d{left:481.244987px;}
.x9{left:487.905000px;}
.x1c{left:494.385000px;}
.x56{left:507.525000px;}
.x7b{left:519.944987px;}
.x4d{left:524.084987px;}
.x82{left:526.964987px;}
.x1e{left:531.285000px;}
.x4{left:554.145000px;}
.x57{left:562.605000px;}
.x1f{left:569.805000px;}
.x89{left:572.504987px;}
.x6b{left:573.584987px;}
.x20{left:611.745000px;}
.x80{left:624.344987px;}
.x72{left:638.384987px;}
.x83{left:658.769987px;}
.x58{left:660.750000px;}
.x8a{left:666.869987px;}
.x22{left:679.470000px;}
.x74{left:689.909987px;}
.x59{left:716.010000px;}
.x7{left:720.690000px;}
.x7a{left:749.489987px;}
.x26{left:750.750000px;}
.x5a{left:765.150000px;}
.x8{left:786.600000px;}
.x76{left:825.989987px;}
.x2{left:829.260000px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v4{vertical-align:-8.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.896000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.348800pt;}
.ls1e{letter-spacing:-0.342933pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls24{letter-spacing:-0.202384pt;}
.ls1f{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.139733pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.121600pt;}
.ls15{letter-spacing:-0.102933pt;}
.ls22{letter-spacing:-0.091733pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.059733pt;}
.ls8{letter-spacing:-0.012160pt;}
.ls2{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.035840pt;}
.ls6{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.121067pt;}
.ls19{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.133333pt;}
.ls1c{letter-spacing:0.134922pt;}
.ls12{letter-spacing:0.136000pt;}
.ls14{letter-spacing:0.139733pt;}
.ls18{letter-spacing:0.185067pt;}
.ls1{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.224000pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.336640pt;}
.ls20{letter-spacing:0.361600pt;}
.lse{letter-spacing:0.412800pt;}
.ls13{letter-spacing:0.518933pt;}
.ls11{letter-spacing:0.544000pt;}
.lsc{letter-spacing:0.549333pt;}
.lsd{letter-spacing:0.608000pt;}
.ls25{letter-spacing:0.640000pt;}
.ls7{letter-spacing:2.112000pt;}
.lsf{letter-spacing:10.432000pt;}
.wsb{word-spacing:-64.000000pt;}
.ws16{word-spacing:-19.244160pt;}
.ws5{word-spacing:-17.728000pt;}
.ws1{word-spacing:-17.664000pt;}
.ws14{word-spacing:-17.337541pt;}
.ws6{word-spacing:-16.934400pt;}
.ws13{word-spacing:-16.576000pt;}
.wsa{word-spacing:-16.448000pt;}
.ws9{word-spacing:-16.384000pt;}
.wsc{word-spacing:-16.320000pt;}
.ws15{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.250880pt;}
.ws3{word-spacing:-15.132160pt;}
.wsd{word-spacing:-10.089173pt;}
.wse{word-spacing:-9.952640pt;}
.ws2{word-spacing:-9.539840pt;}
.ws12{word-spacing:-8.448000pt;}
.ws10{word-spacing:-8.363733pt;}
.ws11{word-spacing:-8.224000pt;}
.ws0{word-spacing:-0.138880pt;}
.ws8{word-spacing:-0.126720pt;}
.wsf{word-spacing:-0.053120pt;}
.ws7{word-spacing:0.000000pt;}
._17{margin-left:-4.469760pt;}
._14{margin-left:-3.532800pt;}
._1d{margin-left:-2.106880pt;}
._1{margin-left:-1.029120pt;}
._2{width:1.002240pt;}
._3{width:2.087680pt;}
._4{width:3.604053pt;}
._6{width:4.814507pt;}
._7{width:5.829120pt;}
._8{width:7.270400pt;}
._10{width:8.184320pt;}
._11{width:9.213440pt;}
._12{width:10.657280pt;}
._13{width:11.712853pt;}
._19{width:13.312000pt;}
._1f{width:14.241280pt;}
._18{width:15.298133pt;}
._9{width:18.076160pt;}
._a{width:19.017387pt;}
._b{width:20.459520pt;}
._c{width:21.399040pt;}
._5{width:22.374400pt;}
._d{width:23.685973pt;}
._e{width:24.906240pt;}
._f{width:25.843200pt;}
._16{width:26.956800pt;}
._15{width:28.160000pt;}
._1b{width:29.696000pt;}
._1e{width:31.360000pt;}
._27{width:32.448000pt;}
._20{width:33.344000pt;}
._2b{width:34.880000pt;}
._1a{width:38.080000pt;}
._1c{width:39.082667pt;}
._25{width:40.512000pt;}
._2d{width:41.664000pt;}
._2c{width:42.944000pt;}
._29{width:47.744000pt;}
._2a{width:48.640000pt;}
._2e{width:51.968000pt;}
._21{width:53.888000pt;}
._28{width:54.869760pt;}
._24{width:56.715520pt;}
._22{width:64.663040pt;}
._23{width:66.481920pt;}
._26{width:67.982080pt;}
._0{width:1316.879787pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsc{font-size:53.120000pt;}
.fsb{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:66.560000pt;}
.fsa{font-size:67.461249pt;}
.fs9{font-size:69.120000pt;}
.fsd{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.ycc{bottom:-105.946667pt;}
.ycb{bottom:-95.066667pt;}
.yca{bottom:-84.186667pt;}
.yc9{bottom:-73.306667pt;}
.yc8{bottom:-62.426667pt;}
.yc7{bottom:-51.546667pt;}
.yc6{bottom:-40.666667pt;}
.yc5{bottom:-29.786667pt;}
.ye5{bottom:-26.080000pt;}
.yf5{bottom:-25.120000pt;}
.yfb{bottom:-24.960000pt;}
.yd5{bottom:-21.146667pt;}
.yc4{bottom:-18.746667pt;}
.ye4{bottom:-16.320000pt;}
.yf4{bottom:-15.360000pt;}
.yfa{bottom:-15.200000pt;}
.yd4{bottom:-10.266667pt;}
.yc3{bottom:-7.840000pt;}
.ye3{bottom:-6.560000pt;}
.yff{bottom:-5.760000pt;}
.ydd{bottom:-5.600000pt;}
.ydb{bottom:-5.440000pt;}
.yd{bottom:-5.280000pt;}
.yef{bottom:-5.120000pt;}
.yd9{bottom:-4.480000pt;}
.yde{bottom:-3.520000pt;}
.yd0{bottom:-0.480000pt;}
.y0{bottom:0.000000pt;}
.yd3{bottom:0.640000pt;}
.ye6{bottom:2.560000pt;}
.yec{bottom:2.720000pt;}
.yda{bottom:2.906667pt;}
.yc2{bottom:3.040000pt;}
.ye2{bottom:3.200000pt;}
.yeb{bottom:3.360000pt;}
.yd8{bottom:3.386667pt;}
.yf6{bottom:3.520000pt;}
.y111{bottom:3.674667pt;}
.ya3{bottom:3.680000pt;}
.y8{bottom:3.840000pt;}
.ydf{bottom:4.000000pt;}
.y110{bottom:4.154667pt;}
.y7f{bottom:4.160000pt;}
.ya6{bottom:4.320000pt;}
.y102{bottom:4.360000pt;}
.y7e{bottom:4.480000pt;}
.yee{bottom:4.640000pt;}
.yc{bottom:4.800000pt;}
.y86{bottom:4.960000pt;}
.y8b{bottom:5.000000pt;}
.y7a{bottom:5.440000pt;}
.y88{bottom:5.600000pt;}
.yac{bottom:5.760000pt;}
.y43{bottom:5.920000pt;}
.y81{bottom:6.080000pt;}
.y97{bottom:6.234667pt;}
.y82{bottom:6.240000pt;}
.ye8{bottom:6.400000pt;}
.ya7{bottom:6.720000pt;}
.ya5{bottom:7.040000pt;}
.yad{bottom:8.160000pt;}
.yab{bottom:8.480000pt;}
.y76{bottom:9.440000pt;}
.ycf{bottom:10.400000pt;}
.yf2{bottom:11.360000pt;}
.yd2{bottom:11.520000pt;}
.yc1{bottom:13.600000pt;}
.yb2{bottom:14.120000pt;}
.yb{bottom:14.880000pt;}
.yb1{bottom:15.400000pt;}
.yf1{bottom:16.640000pt;}
.y6{bottom:17.466667pt;}
.y79{bottom:18.080000pt;}
.y7c{bottom:19.040000pt;}
.y94{bottom:19.194667pt;}
.y84{bottom:19.200000pt;}
.yce{bottom:21.280000pt;}
.ya{bottom:21.472000pt;}
.yd1{bottom:22.560000pt;}
.yc0{bottom:23.360000pt;}
.y7{bottom:23.840000pt;}
.y99{bottom:26.426667pt;}
.y42{bottom:27.066667pt;}
.yb0{bottom:28.200000pt;}
.y78{bottom:30.720000pt;}
.ycd{bottom:32.320000pt;}
.ybf{bottom:33.120000pt;}
.yd6{bottom:34.240000pt;}
.y44{bottom:35.066667pt;}
.y9{bottom:42.240000pt;}
.ybe{bottom:42.880000pt;}
.ybd{bottom:44.000000pt;}
.y41{bottom:48.186667pt;}
.y4{bottom:51.840000pt;}
.y3{bottom:69.472000pt;}
.y2{bottom:87.712000pt;}
.y113{bottom:103.872000pt;}
.y3f{bottom:110.432000pt;}
.y74{bottom:114.592000pt;}
.y5{bottom:116.640000pt;}
.y112{bottom:116.832000pt;}
.y10f{bottom:129.792000pt;}
.y3e{bottom:129.952000pt;}
.y93{bottom:130.752000pt;}
.y73{bottom:134.106667pt;}
.y135{bottom:136.986667pt;}
.y10e{bottom:142.426667pt;}
.y96{bottom:146.586667pt;}
.y3d{bottom:149.306667pt;}
.y72{bottom:153.626667pt;}
.y10d{bottom:155.866667pt;}
.y134{bottom:156.506667pt;}
.y95{bottom:161.786667pt;}
.y3c{bottom:168.826667pt;}
.y10c{bottom:168.986667pt;}
.y71{bottom:173.146667pt;}
.y90{bottom:176.346667pt;}
.y133{bottom:178.586667pt;}
.y10b{bottom:181.466667pt;}
.y3b{bottom:188.346667pt;}
.y92{bottom:192.186667pt;}
.y70{bottom:192.666667pt;}
.y10a{bottom:195.066667pt;}
.y132{bottom:198.106667pt;}
.y91{bottom:207.386667pt;}
.y3a{bottom:207.866667pt;}
.y109{bottom:208.026667pt;}
.y6f{bottom:212.186667pt;}
.y131{bottom:217.626667pt;}
.y108{bottom:220.666667pt;}
.y8d{bottom:221.946667pt;}
.y39{bottom:227.386667pt;}
.y6e{bottom:231.706667pt;}
.y107{bottom:234.106667pt;}
.y8f{bottom:237.786667pt;}
.y130{bottom:239.706667pt;}
.y38{bottom:246.906667pt;}
.y106{bottom:247.226667pt;}
.y6d{bottom:251.226667pt;}
.y8e{bottom:252.986667pt;}
.y12f{bottom:259.226667pt;}
.y105{bottom:259.706667pt;}
.y37{bottom:266.426667pt;}
.y89{bottom:267.546667pt;}
.y6c{bottom:270.746667pt;}
.y104{bottom:273.306667pt;}
.y12e{bottom:281.306667pt;}
.y8c{bottom:283.386667pt;}
.y36{bottom:285.946667pt;}
.y103{bottom:286.426667pt;}
.y6b{bottom:290.106667pt;}
.y8a{bottom:298.586667pt;}
.y101{bottom:298.906667pt;}
.y12d{bottom:300.866667pt;}
.y35{bottom:305.506667pt;}
.y6a{bottom:309.666667pt;}
.y100{bottom:312.546667pt;}
.y83{bottom:313.186667pt;}
.y12c{bottom:322.946667pt;}
.y34{bottom:325.026667pt;}
.yfe{bottom:325.666667pt;}
.y87{bottom:329.026667pt;}
.y69{bottom:329.186667pt;}
.yfd{bottom:338.146667pt;}
.y12b{bottom:342.466667pt;}
.y85{bottom:344.226667pt;}
.y33{bottom:344.386667pt;}
.y68{bottom:348.706667pt;}
.yfc{bottom:351.746667pt;}
.y7b{bottom:358.786667pt;}
.y12a{bottom:361.986667pt;}
.y32{bottom:363.906667pt;}
.yf9{bottom:364.706667pt;}
.y67{bottom:368.226667pt;}
.y80{bottom:374.626667pt;}
.yf8{bottom:377.346667pt;}
.y31{bottom:383.426667pt;}
.y129{bottom:384.066667pt;}
.y66{bottom:387.746667pt;}
.y7d{bottom:390.306667pt;}
.yf7{bottom:390.786667pt;}
.y30{bottom:402.626667pt;}
.y128{bottom:403.586667pt;}
.yf3{bottom:403.906667pt;}
.y77{bottom:404.066667pt;}
.y65{bottom:407.266667pt;}
.yf0{bottom:416.386667pt;}
.y2f{bottom:421.826667pt;}
.y127{bottom:422.946667pt;}
.y64{bottom:426.786667pt;}
.y2e{bottom:432.066667pt;}
.yed{bottom:441.666667pt;}
.y126{bottom:442.466667pt;}
.y63{bottom:446.306667pt;}
.y2d{bottom:449.826667pt;}
.yea{bottom:455.746667pt;}
.y75{bottom:455.906667pt;}
.y125{bottom:464.546667pt;}
.y62{bottom:465.826667pt;}
.ye9{bottom:467.266667pt;}
.y2c{bottom:467.746667pt;}
.ye7{bottom:480.866667pt;}
.y124{bottom:484.066667pt;}
.y61{bottom:485.186667pt;}
.y2b{bottom:485.666667pt;}
.ye1{bottom:494.946667pt;}
.y2a{bottom:503.426667pt;}
.y60{bottom:504.706667pt;}
.y123{bottom:506.146667pt;}
.ye0{bottom:506.466667pt;}
.ydc{bottom:520.066667pt;}
.y29{bottom:521.346667pt;}
.y5f{bottom:524.226667pt;}
.y122{bottom:525.666667pt;}
.yd7{bottom:534.146667pt;}
.y28{bottom:539.293333pt;}
.y5e{bottom:543.773333pt;}
.ybc{bottom:544.893333pt;}
.y121{bottom:547.773333pt;}
.y27{bottom:557.213333pt;}
.y5d{bottom:563.293333pt;}
.y120{bottom:567.293333pt;}
.y26{bottom:574.973333pt;}
.y5c{bottom:582.813333pt;}
.y11f{bottom:589.373333pt;}
.y25{bottom:592.893333pt;}
.ybb{bottom:600.573333pt;}
.y5b{bottom:602.333333pt;}
.y11e{bottom:608.893333pt;}
.y24{bottom:610.813333pt;}
.yba{bottom:616.893333pt;}
.y5a{bottom:621.853333pt;}
.y11d{bottom:628.413333pt;}
.y23{bottom:628.733333pt;}
.yb9{bottom:635.773333pt;}
.y59{bottom:641.373333pt;}
.y22{bottom:646.493333pt;}
.y11c{bottom:650.493333pt;}
.yb8{bottom:652.093333pt;}
.y58{bottom:660.893333pt;}
.y21{bottom:664.413333pt;}
.yb7{bottom:669.053333pt;}
.y11b{bottom:670.013333pt;}
.y57{bottom:680.253333pt;}
.y20{bottom:682.333333pt;}
.yb6{bottom:688.413333pt;}
.y11a{bottom:692.093333pt;}
.y56{bottom:699.773333pt;}
.y1f{bottom:700.253333pt;}
.yb5{bottom:707.933333pt;}
.y119{bottom:711.613333pt;}
.y1e{bottom:718.013333pt;}
.y55{bottom:719.293333pt;}
.yb4{bottom:727.453333pt;}
.y118{bottom:733.693333pt;}
.y1d{bottom:735.933333pt;}
.y54{bottom:738.813333pt;}
.yb3{bottom:746.973333pt;}
.y117{bottom:753.213333pt;}
.y1c{bottom:753.853333pt;}
.y53{bottom:758.333333pt;}
.yaf{bottom:766.173333pt;}
.y1b{bottom:771.773333pt;}
.y116{bottom:772.733333pt;}
.y52{bottom:777.893333pt;}
.y1a{bottom:789.573333pt;}
.y115{bottom:794.853333pt;}
.y51{bottom:797.413333pt;}
.yae{bottom:804.133333pt;}
.y19{bottom:804.933333pt;}
.y18{bottom:812.773333pt;}
.y114{bottom:814.373333pt;}
.y50{bottom:816.933333pt;}
.yaa{bottom:819.173333pt;}
.y17{bottom:829.733333pt;}
.y4f{bottom:836.453333pt;}
.ya9{bottom:836.933333pt;}
.y16{bottom:841.253333pt;}
.ya8{bottom:850.213333pt;}
.y15{bottom:851.813333pt;}
.y4e{bottom:855.973333pt;}
.ya4{bottom:866.213333pt;}
.y14{bottom:871.333333pt;}
.y4d{bottom:875.333333pt;}
.ya2{bottom:882.533333pt;}
.y13{bottom:890.853333pt;}
.y4c{bottom:894.853333pt;}
.ya1{bottom:895.813333pt;}
.y13c{bottom:906.693333pt;}
.ya0{bottom:911.813333pt;}
.y4b{bottom:914.373333pt;}
.y13b{bottom:926.213333pt;}
.y9f{bottom:927.013333pt;}
.y12{bottom:929.093333pt;}
.y4a{bottom:933.893333pt;}
.y9c{bottom:941.413333pt;}
.y13a{bottom:948.293333pt;}
.y11{bottom:949.413333pt;}
.y49{bottom:953.413333pt;}
.y9e{bottom:957.413333pt;}
.y139{bottom:967.813333pt;}
.y9d{bottom:972.613333pt;}
.y48{bottom:972.933333pt;}
.y98{bottom:987.013333pt;}
.y138{bottom:989.893333pt;}
.y40{bottom:990.853333pt;}
.y47{bottom:992.453333pt;}
.y10{bottom:997.253333pt;}
.y9b{bottom:1003.013333pt;}
.y137{bottom:1009.413333pt;}
.y46{bottom:1012.000000pt;}
.yf{bottom:1015.200000pt;}
.y9a{bottom:1018.080000pt;}
.y136{bottom:1028.960000pt;}
.y45{bottom:1031.520000pt;}
.ye{bottom:1033.120000pt;}
.y1{bottom:1060.640000pt;}
.h32{height:9.632000pt;}
.h35{height:11.040000pt;}
.h36{height:11.200000pt;}
.h37{height:12.000000pt;}
.h39{height:12.160000pt;}
.h2a{height:12.640000pt;}
.h3a{height:12.960000pt;}
.h1d{height:13.120000pt;}
.h38{height:13.440000pt;}
.h34{height:13.600000pt;}
.ha{height:13.632000pt;}
.h28{height:13.760000pt;}
.h21{height:13.920000pt;}
.h24{height:13.952000pt;}
.h33{height:14.080000pt;}
.h29{height:14.400000pt;}
.h27{height:14.432000pt;}
.h22{height:14.560000pt;}
.h10{height:14.576000pt;}
.h1e{height:15.040000pt;}
.h1f{height:15.200000pt;}
.h6{height:15.360000pt;}
.h2b{height:15.680000pt;}
.h2c{height:17.120000pt;}
.h13{height:23.197440pt;}
.hf{height:24.487680pt;}
.h19{height:25.280000pt;}
.hc{height:27.264000pt;}
.h31{height:27.616000pt;}
.h26{height:28.160000pt;}
.hb{height:31.626240pt;}
.h8{height:31.712000pt;}
.h1a{height:32.034560pt;}
.h9{height:32.202880pt;}
.h7{height:34.947200pt;}
.h2d{height:37.312000pt;}
.h1c{height:44.640000pt;}
.h20{height:44.960000pt;}
.h23{height:44.992000pt;}
.h14{height:47.936000pt;}
.h2e{height:48.321818pt;}
.hd{height:49.986560pt;}
.h3{height:50.165760pt;}
.h11{height:50.813440pt;}
.h1b{height:51.200000pt;}
.h30{height:51.680000pt;}
.h2f{height:53.535000pt;}
.h12{height:53.639680pt;}
.h15{height:55.232000pt;}
.h17{height:56.332800pt;}
.h18{height:58.219058pt;}
.he{height:58.304000pt;}
.h2{height:58.563750pt;}
.h25{height:59.232000pt;}
.h3b{height:64.621440pt;}
.h16{height:64.992000pt;}
.h3c{height:76.964840pt;}
.h5{height:107.618438pt;}
.h4{height:187.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:22.432000pt;}
.w9{width:30.240000pt;}
.wa{width:31.040000pt;}
.wd{width:32.160000pt;}
.wb{width:32.800000pt;}
.we{width:33.600000pt;}
.wc{width:34.272000pt;}
.w1f{width:36.000000pt;}
.wf{width:36.640000pt;}
.w3{width:38.560000pt;}
.w19{width:43.040000pt;}
.w18{width:43.200000pt;}
.w1c{width:43.232000pt;}
.w1b{width:48.480000pt;}
.w17{width:48.640000pt;}
.w1a{width:48.672000pt;}
.w1d{width:53.600000pt;}
.w12{width:57.120000pt;}
.w10{width:59.552000pt;}
.w11{width:62.560000pt;}
.w13{width:73.920000pt;}
.w14{width:100.672000pt;}
.w1e{width:114.080000pt;}
.w15{width:150.080000pt;}
.w8{width:175.226667pt;}
.w4{width:282.146667pt;}
.w6{width:389.506667pt;}
.w7{width:621.373333pt;}
.w5{width:708.800000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:2.080000pt;}
.x1b{left:3.200000pt;}
.x3{left:5.253333pt;}
.x51{left:6.400000pt;}
.x4f{left:7.560000pt;}
.x2a{left:8.640000pt;}
.x2b{left:9.600000pt;}
.x23{left:11.040000pt;}
.x2c{left:12.186667pt;}
.x3c{left:13.120000pt;}
.x24{left:14.400000pt;}
.xf{left:15.680000pt;}
.x39{left:16.800000pt;}
.x21{left:18.560000pt;}
.x32{left:19.840000pt;}
.x31{left:21.280000pt;}
.x15{left:23.040000pt;}
.x53{left:24.000000pt;}
.x10{left:24.960000pt;}
.x5d{left:25.920000pt;}
.x5b{left:27.360000pt;}
.x30{left:28.480000pt;}
.x1d{left:29.600000pt;}
.x38{left:30.880000pt;}
.x62{left:31.840000pt;}
.x3a{left:32.800000pt;}
.x3e{left:34.266667pt;}
.x40{left:36.000000pt;}
.x37{left:37.120000pt;}
.x2f{left:38.720000pt;}
.x2d{left:40.040000pt;}
.x35{left:41.600000pt;}
.x2e{left:43.360000pt;}
.x33{left:45.480000pt;}
.x34{left:47.040000pt;}
.x25{left:48.160000pt;}
.x3b{left:49.754667pt;}
.x36{left:52.154667pt;}
.x3d{left:53.434667pt;}
.x27{left:55.040000pt;}
.x41{left:57.640000pt;}
.x42{left:59.560000pt;}
.x47{left:60.640000pt;}
.x6{left:62.880000pt;}
.x29{left:70.720000pt;}
.x1{left:71.999988pt;}
.x5e{left:77.914667pt;}
.x61{left:79.194667pt;}
.x5c{left:82.234667pt;}
.x43{left:83.674667pt;}
.x69{left:87.231988pt;}
.x60{left:88.954667pt;}
.x44{left:91.514667pt;}
.x5{left:93.480000pt;}
.x12{left:100.512000pt;}
.xc{left:113.311988pt;}
.xd{left:119.231988pt;}
.xa{left:121.471988pt;}
.x66{left:124.991988pt;}
.x11{left:130.560000pt;}
.x63{left:132.154667pt;}
.x67{left:134.906655pt;}
.x6c{left:138.746655pt;}
.x70{left:140.506655pt;}
.x46{left:142.234667pt;}
.x81{left:145.146655pt;}
.x7d{left:146.906655pt;}
.x78{left:148.346655pt;}
.x68{left:151.866655pt;}
.x48{left:164.994667pt;}
.x45{left:166.754667pt;}
.x3f{left:170.274667pt;}
.x7c{left:172.666655pt;}
.x28{left:175.386667pt;}
.x84{left:176.826655pt;}
.xb{left:180.666655pt;}
.x64{left:187.386655pt;}
.x65{left:191.546655pt;}
.x6f{left:194.106655pt;}
.x5f{left:205.626667pt;}
.x7f{left:238.426655pt;}
.x85{left:240.346655pt;}
.x4e{left:242.746667pt;}
.x49{left:247.874667pt;}
.xe{left:253.986667pt;}
.x50{left:265.666667pt;}
.x14{left:276.866667pt;}
.x13{left:281.314667pt;}
.x77{left:297.026655pt;}
.x75{left:304.386655pt;}
.x16{left:307.746667pt;}
.x52{left:314.786667pt;}
.x88{left:323.746655pt;}
.x71{left:331.266655pt;}
.x18{left:339.426667pt;}
.x86{left:344.546655pt;}
.x7e{left:350.786655pt;}
.x6e{left:355.586655pt;}
.x4a{left:356.546655pt;}
.x54{left:358.466667pt;}
.x4b{left:359.746655pt;}
.x87{left:366.946655pt;}
.x19{left:372.866667pt;}
.x4c{left:390.466655pt;}
.x79{left:393.506655pt;}
.x55{left:401.986667pt;}
.x1a{left:404.546667pt;}
.x73{left:409.986655pt;}
.x6a{left:425.213322pt;}
.x6d{left:427.773322pt;}
.x9{left:433.693333pt;}
.x1c{left:439.453333pt;}
.x56{left:451.133333pt;}
.x7b{left:462.173322pt;}
.x4d{left:465.853322pt;}
.x82{left:468.413322pt;}
.x1e{left:472.253333pt;}
.x4{left:492.573333pt;}
.x57{left:500.093333pt;}
.x1f{left:506.493333pt;}
.x89{left:508.893322pt;}
.x6b{left:509.853322pt;}
.x20{left:543.773333pt;}
.x80{left:554.973322pt;}
.x72{left:567.453322pt;}
.x83{left:585.573322pt;}
.x58{left:587.333333pt;}
.x8a{left:592.773322pt;}
.x22{left:603.973333pt;}
.x74{left:613.253322pt;}
.x59{left:636.453333pt;}
.x7{left:640.613333pt;}
.x7a{left:666.213322pt;}
.x26{left:667.333333pt;}
.x5a{left:680.133333pt;}
.x8{left:699.200000pt;}
.x76{left:734.213322pt;}
.x2{left:737.120000pt;}
}




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