
    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_69b6896550d78343947acc63.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_b092400323135cfba56a47e2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ad8761311a11bcb5e1446d6e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3db6570a60450526a4e0071d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_80e0b2430097f2a1e54db23c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_5b30ef5543a733cdeec79e9a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.063477;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_631016f3b2c618730c4e97b4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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_1c27bc8b52d2817188669f15.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.063477;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;}
.m2{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);}
.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);}
.m1{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);}
.v4{vertical-align:-27.360000px;}
.v3{vertical-align:-23.760000px;}
.v6{vertical-align:-13.680000px;}
.vb{vertical-align:-10.080000px;}
.v5{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.160000px;}
.v10{vertical-align:5.760000px;}
.v7{vertical-align:13.680000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.v8{vertical-align:29.520000px;}
.vc{vertical-align:33.120000px;}
.vf{vertical-align:36.720000px;}
.va{vertical-align:38.880000px;}
.ve{vertical-align:44.820000px;}
.vd{vertical-align:50.400000px;}
.ls4f{letter-spacing:-1.440000px;}
.ls39{letter-spacing:-0.984000px;}
.ls28{letter-spacing:-0.720000px;}
.ls49{letter-spacing:-0.612000px;}
.ls27{letter-spacing:-0.573000px;}
.ls8{letter-spacing:-0.457800px;}
.ls53{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.305400px;}
.ls29{letter-spacing:-0.265200px;}
.ls5{letter-spacing:-0.262200px;}
.ls4{letter-spacing:-0.152400px;}
.ls45{letter-spacing:-0.109200px;}
.ls2{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.011520px;}
.lse{letter-spacing:0.023040px;}
.ls52{letter-spacing:0.028080px;}
.ls2e{letter-spacing:0.062400px;}
.ls1a{letter-spacing:0.075000px;}
.ls3f{letter-spacing:0.080400px;}
.ls6{letter-spacing:0.109200px;}
.ls2d{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.147000px;}
.ls7{letter-spacing:0.152400px;}
.ls4e{letter-spacing:0.152640px;}
.ls31{letter-spacing:0.168480px;}
.ls0{letter-spacing:0.178560px;}
.ls54{letter-spacing:0.180000px;}
.ls4d{letter-spacing:0.183360px;}
.lsa{letter-spacing:0.207360px;}
.ls26{letter-spacing:0.250800px;}
.ls1{letter-spacing:0.262080px;}
.ls9{letter-spacing:0.262200px;}
.ls36{letter-spacing:0.305280px;}
.ls1c{letter-spacing:0.305400px;}
.ls2a{letter-spacing:0.354240px;}
.ls3{letter-spacing:0.360000px;}
.ls51{letter-spacing:0.387360px;}
.ls40{letter-spacing:0.414600px;}
.ls2c{letter-spacing:0.474240px;}
.ls2b{letter-spacing:0.534240px;}
.ls3c{letter-spacing:0.550080px;}
.ls37{letter-spacing:0.650880px;}
.ls4b{letter-spacing:0.720000px;}
.ls3b{letter-spacing:1.370880px;}
.ls4c{letter-spacing:1.440000px;}
.ls34{letter-spacing:1.980000px;}
.ls47{letter-spacing:2.160000px;}
.lsc{letter-spacing:2.300400px;}
.ls13{letter-spacing:2.321280px;}
.ls38{letter-spacing:2.522880px;}
.ls17{letter-spacing:2.784240px;}
.ls48{letter-spacing:2.880000px;}
.ls3d{letter-spacing:2.934720px;}
.ls10{letter-spacing:3.029040px;}
.ls15{letter-spacing:3.041280px;}
.ls43{letter-spacing:3.221280px;}
.ls4a{letter-spacing:3.600000px;}
.ls3e{letter-spacing:4.320000px;}
.ls3a{letter-spacing:4.571280px;}
.ls35{letter-spacing:4.667760px;}
.ls41{letter-spacing:5.040000px;}
.ls42{letter-spacing:6.480000px;}
.ls21{letter-spacing:13.878720px;}
.ls12{letter-spacing:14.598720px;}
.ls33{letter-spacing:14.624640px;}
.ls46{letter-spacing:15.840000px;}
.lsf{letter-spacing:15.980400px;}
.ls22{letter-spacing:16.001280px;}
.ls1f{letter-spacing:16.685040px;}
.ls1d{letter-spacing:16.709040px;}
.ls11{letter-spacing:16.721280px;}
.ls1e{letter-spacing:16.889040px;}
.ls20{letter-spacing:17.429040px;}
.ls14{letter-spacing:17.441280px;}
.ls2f{letter-spacing:17.870400px;}
.lsb{letter-spacing:17.930880px;}
.ls30{letter-spacing:18.198720px;}
.ls50{letter-spacing:18.720000px;}
.ls24{letter-spacing:20.297280px;}
.ls44{letter-spacing:20.321280px;}
.ls25{letter-spacing:20.784240px;}
.ls16{letter-spacing:21.690000px;}
.lsd{letter-spacing:22.091760px;}
.ls23{letter-spacing:30.240000px;}
.ls32{letter-spacing:45.547200px;}
.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;}
}
.ws1d{word-spacing:-66.240000px;}
.ws28{word-spacing:-21.088080px;}
.ws27{word-spacing:-17.280000px;}
.ws13{word-spacing:-16.865400px;}
.ws7{word-spacing:-16.822200px;}
.ws6{word-spacing:-16.669200px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.407600px;}
.ws4{word-spacing:-16.297800px;}
.ws12{word-spacing:-16.254600px;}
.ws25{word-spacing:-16.102200px;}
.ws26{word-spacing:-15.948000px;}
.ws1c{word-spacing:-15.840000px;}
.ws1e{word-spacing:-15.576000px;}
.ws14{word-spacing:-14.823600px;}
.ws8{word-spacing:-14.719800px;}
.ws10{word-spacing:-14.647800px;}
.ws19{word-spacing:-14.595840px;}
.ws11{word-spacing:-14.572800px;}
.ws22{word-spacing:-14.463600px;}
.ws1f{word-spacing:-14.420400px;}
.ws1b{word-spacing:-14.307600px;}
.ws2{word-spacing:-10.800000px;}
.wsb{word-spacing:-10.624320px;}
.wsa{word-spacing:-10.612800px;}
.ws0{word-spacing:-10.440000px;}
.ws23{word-spacing:-0.971520px;}
.wsf{word-spacing:-0.694080px;}
.ws5{word-spacing:0.000000px;}
.ws15{word-spacing:0.001920px;}
.wsd{word-spacing:0.020160px;}
.wsc{word-spacing:0.025920px;}
.ws17{word-spacing:0.205920px;}
.ws16{word-spacing:0.302040px;}
.ws18{word-spacing:0.998040px;}
.ws21{word-spacing:2.628480px;}
.ws20{word-spacing:2.927520px;}
.wse{word-spacing:3.358080px;}
.ws24{word-spacing:4.078080px;}
.ws1a{word-spacing:6.087600px;}
.ws9{word-spacing:9.663600px;}
._25{margin-left:-16.004640px;}
._24{margin-left:-5.977920px;}
._5{margin-left:-4.797600px;}
._2{margin-left:-3.620160px;}
._1{margin-left:-2.361600px;}
._0{margin-left:-1.347840px;}
._3{width:1.031040px;}
._d{width:2.143200px;}
._e{width:3.742560px;}
._b{width:4.835520px;}
._4{width:5.895360px;}
._f{width:7.418880px;}
._15{width:8.700480px;}
._19{width:9.733440px;}
._6{width:10.929600px;}
._7{width:11.954880px;}
._8{width:12.967680px;}
._1b{width:14.148960px;}
._c{width:15.367680px;}
._18{width:16.911840px;}
._9{width:18.172800px;}
._a{width:19.428000px;}
._10{width:20.479200px;}
._14{width:21.784080px;}
._30{width:22.885920px;}
._26{width:23.978880px;}
._27{width:25.081920px;}
._12{width:26.501760px;}
._13{width:27.506880px;}
._16{width:29.145600px;}
._17{width:30.426720px;}
._11{width:31.918080px;}
._1d{width:34.269120px;}
._2a{width:35.925120px;}
._2b{width:37.028160px;}
._1c{width:38.220480px;}
._1a{width:40.870080px;}
._23{width:42.128640px;}
._22{width:53.786880px;}
._1e{width:58.615920px;}
._20{width:60.410160px;}
._21{width:61.976880px;}
._1f{width:77.704800px;}
._29{width:93.133440px;}
._2f{width:154.958400px;}
._2e{width:156.061440px;}
._2d{width:212.967840px;}
._2c{width:214.574400px;}
._28{width:847.275840px;}
.fc3{color:transparent;}
.fc2{color:rgb(21,96,130);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:69.822393px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y107{bottom:6.300000px;}
.y108{bottom:6.480000px;}
.ya5{bottom:19.080000px;}
.y9d{bottom:19.260000px;}
.y90{bottom:21.780000px;}
.y55{bottom:22.680000px;}
.y46{bottom:22.860000px;}
.y56{bottom:23.040000px;}
.y47{bottom:23.220000px;}
.y41{bottom:25.200000px;}
.y44{bottom:25.560000px;}
.y42{bottom:25.920000px;}
.y106{bottom:28.080000px;}
.y120{bottom:28.260000px;}
.y91{bottom:28.620000px;}
.y8f{bottom:30.060000px;}
.ya4{bottom:30.240000px;}
.y9c{bottom:30.465000px;}
.ya6{bottom:31.500000px;}
.y9e{bottom:31.725000px;}
.y113{bottom:50.580000px;}
.y104{bottom:50.760000px;}
.y2{bottom:57.420000px;}
.y1{bottom:76.536000px;}
.y142{bottom:111.816000px;}
.y7b{bottom:115.776000px;}
.ye2{bottom:118.836000px;}
.ycb{bottom:121.716000px;}
.yde{bottom:123.156000px;}
.yd7{bottom:124.776000px;}
.y102{bottom:129.456000px;}
.y129{bottom:134.676000px;}
.y1c{bottom:135.576000px;}
.y98{bottom:139.356000px;}
.y36{bottom:143.136000px;}
.ye5{bottom:146.376000px;}
.y6b{bottom:147.636000px;}
.y141{bottom:149.796000px;}
.y101{bottom:149.976000px;}
.y8d{bottom:151.230000px;}
.yb2{bottom:152.490000px;}
.y7a{bottom:153.570000px;}
.y1b{bottom:156.090000px;}
.ye1{bottom:156.810000px;}
.yca{bottom:159.690000px;}
.ydd{bottom:161.130000px;}
.yd6{bottom:162.750000px;}
.yce{bottom:163.470000px;}
.y128{bottom:169.050000px;}
.y97{bottom:177.330000px;}
.y35{bottom:180.930000px;}
.y100{bottom:182.370000px;}
.ycf{bottom:183.450000px;}
.y52{bottom:184.350000px;}
.y6a{bottom:185.610000px;}
.y140{bottom:187.770000px;}
.y1a{bottom:188.490000px;}
.y8c{bottom:189.210000px;}
.yb1{bottom:190.470000px;}
.y79{bottom:191.550000px;}
.ye0{bottom:194.790000px;}
.yc9{bottom:197.670000px;}
.ydc{bottom:199.110000px;}
.yd5{bottom:200.550000px;}
.y127{bottom:203.610000px;}
.y34{bottom:213.510000px;}
.yff{bottom:214.950000px;}
.y96{bottom:215.670000px;}
.y19{bottom:220.890000px;}
.ye4{bottom:222.150000px;}
.y51{bottom:222.330000px;}
.y69{bottom:223.410000px;}
.y13f{bottom:225.750000px;}
.y8b{bottom:227.190000px;}
.yb0{bottom:228.450000px;}
.ydf{bottom:229.170000px;}
.y78{bottom:229.530000px;}
.yd4{bottom:233.130000px;}
.yc8{bottom:235.470000px;}
.ydb{bottom:236.910000px;}
.y126{bottom:238.170000px;}
.yb9{bottom:239.790000px;}
.y33{bottom:245.910000px;}
.yfe{bottom:247.350000px;}
.ye3{bottom:251.130000px;}
.y125{bottom:252.930000px;}
.y18{bottom:253.470000px;}
.y95{bottom:254.010000px;}
.y50{bottom:260.130000px;}
.y68{bottom:261.390000px;}
.y13e{bottom:263.550000px;}
.y8a{bottom:265.170000px;}
.yaf{bottom:266.430000px;}
.y77{bottom:267.510000px;}
.yd3{bottom:271.110000px;}
.yc7{bottom:273.450000px;}
.y124{bottom:274.710000px;}
.yda{bottom:274.890000px;}
.yb8{bottom:277.770000px;}
.y32{bottom:278.490000px;}
.yfd{bottom:279.930000px;}
.y17{bottom:285.870000px;}
.y94{bottom:292.350000px;}
.y123{bottom:296.490000px;}
.y4f{bottom:298.110000px;}
.y67{bottom:299.370000px;}
.y13d{bottom:301.530000px;}
.y89{bottom:303.150000px;}
.yae{bottom:304.410000px;}
.y76{bottom:305.490000px;}
.yd2{bottom:309.090000px;}
.y31{bottom:310.890000px;}
.yc6{bottom:311.430000px;}
.yfc{bottom:312.330000px;}
.yd9{bottom:312.870000px;}
.yb7{bottom:315.750000px;}
.y155{bottom:316.470000px;}
.y13c{bottom:317.775000px;}
.y122{bottom:318.315000px;}
.y16{bottom:318.495000px;}
.y93{bottom:330.555000px;}
.y4e{bottom:336.135000px;}
.y66{bottom:337.395000px;}
.y13b{bottom:339.735000px;}
.y121{bottom:340.275000px;}
.y88{bottom:341.175000px;}
.yad{bottom:342.435000px;}
.y75{bottom:343.515000px;}
.yfb{bottom:344.955000px;}
.yd1{bottom:346.935000px;}
.y30{bottom:348.915000px;}
.yc5{bottom:349.455000px;}
.y15{bottom:350.895000px;}
.yb6{bottom:353.595000px;}
.y154{bottom:354.495000px;}
.y13a{bottom:362.235000px;}
.y11e{bottom:362.775000px;}
.y92{bottom:368.895000px;}
.y14b{bottom:371.235000px;}
.y4d{bottom:374.115000px;}
.y65{bottom:375.375000px;}
.yfa{bottom:377.355000px;}
.y87{bottom:378.975000px;}
.yac{bottom:380.235000px;}
.y74{bottom:381.315000px;}
.y14{bottom:383.475000px;}
.y139{bottom:384.015000px;}
.y8e{bottom:384.735000px;}
.yd0{bottom:384.915000px;}
.y11f{bottom:385.275000px;}
.y2f{bottom:386.895000px;}
.yc4{bottom:387.435000px;}
.yb5{bottom:391.575000px;}
.y153{bottom:392.295000px;}
.y14a{bottom:393.015000px;}
.yd8{bottom:397.335000px;}
.y138{bottom:406.695000px;}
.yf9{bottom:409.755000px;}
.y4c{bottom:412.095000px;}
.y64{bottom:413.175000px;}
.y152{bottom:414.255000px;}
.y149{bottom:414.975000px;}
.y13{bottom:415.875000px;}
.y86{bottom:416.955000px;}
.yab{bottom:418.215000px;}
.y73{bottom:419.295000px;}
.y2e{bottom:424.875000px;}
.yc3{bottom:425.235000px;}
.y137{bottom:428.475000px;}
.yb4{bottom:429.555000px;}
.yf8{bottom:432.435000px;}
.y11d{bottom:436.035000px;}
.y148{bottom:449.355000px;}
.y4b{bottom:449.895000px;}
.y136{bottom:450.975000px;}
.y63{bottom:451.155000px;}
.y12{bottom:453.855000px;}
.y85{bottom:454.935000px;}
.y161{bottom:455.295000px;}
.yaa{bottom:456.195000px;}
.y72{bottom:457.275000px;}
.y11c{bottom:457.815000px;}
.y2d{bottom:462.675000px;}
.yc2{bottom:463.215000px;}
.yb3{bottom:463.935000px;}
.y62{bottom:466.635000px;}
.yf7{bottom:471.495000px;}
.y135{bottom:472.755000px;}
.y160{bottom:477.075000px;}
.y151{bottom:479.595000px;}
.y11b{bottom:479.775000px;}
.y4a{bottom:487.875000px;}
.y11{bottom:491.835000px;}
.y84{bottom:492.915000px;}
.ya9{bottom:494.175000px;}
.y71{bottom:495.255000px;}
.y134{bottom:495.435000px;}
.y15f{bottom:498.855000px;}
.y2c{bottom:500.655000px;}
.yc1{bottom:501.195000px;}
.y150{bottom:512.355000px;}
.yf6{bottom:516.315000px;}
.y133{bottom:517.215000px;}
.y11a{bottom:517.755000px;}
.y49{bottom:525.855000px;}
.y10{bottom:529.635000px;}
.y61{bottom:530.175000px;}
.y83{bottom:530.895000px;}
.y15e{bottom:531.615000px;}
.ya8{bottom:532.155000px;}
.y70{bottom:533.235000px;}
.y2b{bottom:538.635000px;}
.yc0{bottom:539.175000px;}
.y132{bottom:539.715000px;}
.yf5{bottom:547.455000px;}
.y119{bottom:555.555000px;}
.y131{bottom:561.675000px;}
.y14f{bottom:563.115000px;}
.y48{bottom:563.835000px;}
.y60{bottom:568.185000px;}
.y82{bottom:568.725000px;}
.ya7{bottom:570.525000px;}
.y6f{bottom:571.065000px;}
.y118{bottom:571.965000px;}
.yf{bottom:574.485000px;}
.y2a{bottom:576.645000px;}
.ybf{bottom:577.185000px;}
.y45{bottom:579.345000px;}
.y130{bottom:584.205000px;}
.ya3{bottom:586.365000px;}
.yf4{bottom:592.305000px;}
.y117{bottom:593.745000px;}
.y14e{bottom:600.945000px;}
.ye{bottom:605.625000px;}
.y12f{bottom:605.985000px;}
.y5f{bottom:606.165000px;}
.y81{bottom:606.705000px;}
.y6e{bottom:609.045000px;}
.y29{bottom:614.625000px;}
.ybe{bottom:615.165000px;}
.y116{bottom:615.525000px;}
.y43{bottom:618.045000px;}
.y14d{bottom:622.905000px;}
.yf3{bottom:623.445000px;}
.y12e{bottom:628.665000px;}
.y115{bottom:637.305000px;}
.y5e{bottom:644.145000px;}
.y80{bottom:644.685000px;}
.y6d{bottom:647.025000px;}
.yd{bottom:650.445000px;}
.y28{bottom:652.425000px;}
.y164{bottom:652.605000px;}
.ybd{bottom:652.965000px;}
.y40{bottom:659.085000px;}
.y112{bottom:659.985000px;}
.y15d{bottom:662.145000px;}
.ya2{bottom:665.025000px;}
.yf2{bottom:668.265000px;}
.y12d{bottom:672.945000px;}
.y163{bottom:674.385000px;}
.y14c{bottom:679.065000px;}
.yc{bottom:681.585000px;}
.y5d{bottom:681.945000px;}
.y114{bottom:682.485000px;}
.y7f{bottom:682.665000px;}
.y15c{bottom:683.925000px;}
.y6c{bottom:685.005000px;}
.y27{bottom:690.405000px;}
.ybc{bottom:690.945000px;}
.y162{bottom:696.165000px;}
.yf1{bottom:699.225000px;}
.ya1{bottom:703.005000px;}
.y15b{bottom:705.885000px;}
.y5c{bottom:719.925000px;}
.y7e{bottom:720.645000px;}
.y3f{bottom:722.985000px;}
.y12c{bottom:723.705000px;}
.yb{bottom:726.225000px;}
.y15a{bottom:727.665000px;}
.y26{bottom:728.385000px;}
.ybb{bottom:728.925000px;}
.y111{bottom:733.245000px;}
.yf0{bottom:737.205000px;}
.ya0{bottom:741.345000px;}
.y12b{bottom:745.485000px;}
.y159{bottom:749.445000px;}
.y110{bottom:755.025000px;}
.ya{bottom:757.365000px;}
.y5b{bottom:757.905000px;}
.y7d{bottom:758.445000px;}
.y3e{bottom:760.785000px;}
.y25{bottom:766.365000px;}
.yba{bottom:766.905000px;}
.y12a{bottom:767.445000px;}
.y158{bottom:771.225000px;}
.yef{bottom:775.185000px;}
.y10f{bottom:776.805000px;}
.y9f{bottom:779.685000px;}
.ycd{bottom:782.385000px;}
.y157{bottom:793.185000px;}
.y9b{bottom:795.165000px;}
.y9{bottom:795.345000px;}
.y5a{bottom:795.885000px;}
.y7c{bottom:798.585000px;}
.y3d{bottom:798.765000px;}
.y24{bottom:804.345000px;}
.y10e{bottom:805.245000px;}
.y156{bottom:811.365000px;}
.yee{bottom:813.165000px;}
.ycc{bottom:821.130000px;}
.y147{bottom:827.970000px;}
.y8{bottom:833.370000px;}
.y59{bottom:833.910000px;}
.y3c{bottom:836.790000px;}
.y23{bottom:842.370000px;}
.y10d{bottom:843.270000px;}
.y58{bottom:849.390000px;}
.yed{bottom:857.310000px;}
.y10c{bottom:859.470000px;}
.y146{bottom:865.950000px;}
.y7{bottom:871.350000px;}
.y9a{bottom:874.050000px;}
.y3b{bottom:874.770000px;}
.y22{bottom:880.170000px;}
.y10b{bottom:881.430000px;}
.y145{bottom:882.150000px;}
.y57{bottom:888.090000px;}
.y10a{bottom:903.210000px;}
.y144{bottom:903.930000px;}
.yec{bottom:905.550000px;}
.y99{bottom:912.390000px;}
.y3a{bottom:912.750000px;}
.y6{bottom:915.450000px;}
.y21{bottom:918.150000px;}
.y109{bottom:924.990000px;}
.y143{bottom:925.710000px;}
.y54{bottom:926.790000px;}
.yeb{bottom:931.650000px;}
.y103{bottom:947.490000px;}
.y39{bottom:950.730000px;}
.yea{bottom:954.150000px;}
.y20{bottom:956.130000px;}
.y5{bottom:963.690000px;}
.y53{bottom:965.310000px;}
.y105{bottom:970.170000px;}
.ye9{bottom:977.190000px;}
.y38{bottom:988.530000px;}
.y1f{bottom:994.110000px;}
.ye8{bottom:998.970000px;}
.y4{bottom:1012.110000px;}
.ye7{bottom:1020.930000px;}
.y37{bottom:1026.510000px;}
.y1e{bottom:1032.090000px;}
.ye6{bottom:1042.710000px;}
.y3{bottom:1060.350000px;}
.y1d{bottom:1064.490000px;}
.h1e{height:21.780000px;}
.h21{height:21.816000px;}
.h1d{height:21.960000px;}
.hb{height:38.520000px;}
.h17{height:38.691000px;}
.ha{height:38.700000px;}
.h18{height:38.736000px;}
.h4{height:40.964766px;}
.h9{height:41.040000px;}
.h7{height:41.400000px;}
.h1c{height:43.560000px;}
.h20{height:43.740000px;}
.hc{height:50.040000px;}
.h11{height:55.825312px;}
.h15{height:56.160000px;}
.h12{height:56.376000px;}
.h22{height:58.651172px;}
.h10{height:58.844458px;}
.h19{height:59.383125px;}
.h5{height:64.978594px;}
.h1{height:65.010937px;}
.h8{height:65.135391px;}
.h1f{height:66.060000px;}
.h1b{height:66.240000px;}
.h6{height:66.757500px;}
.h3{height:68.324766px;}
.h1a{height:70.664062px;}
.hd{height:79.535391px;}
.h2{height:84.898125px;}
.hf{height:88.945312px;}
.h16{height:100.465313px;}
.h14{height:100.645312px;}
.h13{height:106.225313px;}
.he{height:112.655391px;}
.h0{height:1188.000000px;}
.w3{width:59.940000px;}
.w11{width:67.500000px;}
.w5{width:71.640000px;}
.wb{width:73.440000px;}
.w12{width:87.876000px;}
.w7{width:93.780000px;}
.w10{width:94.500000px;}
.we{width:100.080000px;}
.wd{width:106.056000px;}
.w9{width:121.500000px;}
.w14{width:135.036000px;}
.wc{width:150.120000px;}
.w13{width:160.410000px;}
.wf{width:206.130000px;}
.w8{width:580.605000px;}
.w6{width:607.605000px;}
.wa{width:627.945000px;}
.w4{width:630.465000px;}
.w2{width:641.445000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:8.100000px;}
.x3b{left:10.800000px;}
.x12{left:12.780000px;}
.x39{left:14.040000px;}
.x2e{left:16.920000px;}
.x22{left:18.000000px;}
.x3e{left:19.260000px;}
.x3d{left:23.220000px;}
.x14{left:24.660000px;}
.x3c{left:26.460000px;}
.x2f{left:29.385000px;}
.x34{left:31.500000px;}
.x2c{left:33.345000px;}
.x33{left:34.425000px;}
.x32{left:35.640000px;}
.x31{left:38.565000px;}
.x36{left:39.600000px;}
.x1d{left:42.654000px;}
.x16{left:46.800000px;}
.x35{left:49.365000px;}
.x30{left:50.934000px;}
.x37{left:59.625000px;}
.x1e{left:66.240000px;}
.x3f{left:67.500000px;}
.x1c{left:74.520000px;}
.x17{left:86.934000px;}
.x2{left:108.035986px;}
.x4{left:114.155986px;}
.x6{left:117.575986px;}
.x9{left:126.395986px;}
.xb{left:131.435986px;}
.x29{left:144.035986px;}
.x8{left:155.189986px;}
.xf{left:162.029986px;}
.xa{left:170.309986px;}
.x38{left:202.530000px;}
.x18{left:231.159000px;}
.x2b{left:258.150000px;}
.x3a{left:270.030000px;}
.xd{left:286.454986px;}
.xe{left:308.414986px;}
.x19{left:322.239000px;}
.x1a{left:325.839000px;}
.x40{left:337.575000px;}
.x7{left:347.474986px;}
.x5{left:348.734986px;}
.x2a{left:360.614986px;}
.x2d{left:364.215000px;}
.xc{left:365.294986px;}
.x41{left:405.075000px;}
.x3{left:459.074986px;}
.x26{left:638.204986px;}
.x27{left:676.589986px;}
.x47{left:682.889986px;}
.x1b{left:688.650000px;}
.x15{left:715.650000px;}
.x43{left:720.869986px;}
.x25{left:730.949986px;}
.x21{left:735.990000px;}
.x13{left:738.510000px;}
.x11{left:749.490000px;}
.x1f{left:793.589986px;}
.x1{left:801.869986px;}
.x20{left:805.289986px;}
.x46{left:812.309986px;}
.x44{left:820.589986px;}
.x45{left:823.109986px;}
.x28{left:824.369986px;}
.x23{left:827.609986px;}
.x24{left:843.449986px;}
.x42{left:881.999986px;}
@media print{
.v4{vertical-align:-24.320000pt;}
.v3{vertical-align:-21.120000pt;}
.v6{vertical-align:-12.160000pt;}
.vb{vertical-align:-8.960000pt;}
.v5{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.920000pt;}
.v10{vertical-align:5.120000pt;}
.v7{vertical-align:12.160000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.v8{vertical-align:26.240000pt;}
.vc{vertical-align:29.440000pt;}
.vf{vertical-align:32.640000pt;}
.va{vertical-align:34.560000pt;}
.ve{vertical-align:39.840000pt;}
.vd{vertical-align:44.800000pt;}
.ls4f{letter-spacing:-1.280000pt;}
.ls39{letter-spacing:-0.874667pt;}
.ls28{letter-spacing:-0.640000pt;}
.ls49{letter-spacing:-0.544000pt;}
.ls27{letter-spacing:-0.509333pt;}
.ls8{letter-spacing:-0.406933pt;}
.ls53{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.271467pt;}
.ls29{letter-spacing:-0.235733pt;}
.ls5{letter-spacing:-0.233067pt;}
.ls4{letter-spacing:-0.135467pt;}
.ls45{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.010240pt;}
.lse{letter-spacing:0.020480pt;}
.ls52{letter-spacing:0.024960pt;}
.ls2e{letter-spacing:0.055467pt;}
.ls1a{letter-spacing:0.066667pt;}
.ls3f{letter-spacing:0.071467pt;}
.ls6{letter-spacing:0.097067pt;}
.ls2d{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.130667pt;}
.ls7{letter-spacing:0.135467pt;}
.ls4e{letter-spacing:0.135680pt;}
.ls31{letter-spacing:0.149760pt;}
.ls0{letter-spacing:0.158720pt;}
.ls54{letter-spacing:0.160000pt;}
.ls4d{letter-spacing:0.162987pt;}
.lsa{letter-spacing:0.184320pt;}
.ls26{letter-spacing:0.222933pt;}
.ls1{letter-spacing:0.232960pt;}
.ls9{letter-spacing:0.233067pt;}
.ls36{letter-spacing:0.271360pt;}
.ls1c{letter-spacing:0.271467pt;}
.ls2a{letter-spacing:0.314880pt;}
.ls3{letter-spacing:0.320000pt;}
.ls51{letter-spacing:0.344320pt;}
.ls40{letter-spacing:0.368533pt;}
.ls2c{letter-spacing:0.421547pt;}
.ls2b{letter-spacing:0.474880pt;}
.ls3c{letter-spacing:0.488960pt;}
.ls37{letter-spacing:0.578560pt;}
.ls4b{letter-spacing:0.640000pt;}
.ls3b{letter-spacing:1.218560pt;}
.ls4c{letter-spacing:1.280000pt;}
.ls34{letter-spacing:1.760000pt;}
.ls47{letter-spacing:1.920000pt;}
.lsc{letter-spacing:2.044800pt;}
.ls13{letter-spacing:2.063360pt;}
.ls38{letter-spacing:2.242560pt;}
.ls17{letter-spacing:2.474880pt;}
.ls48{letter-spacing:2.560000pt;}
.ls3d{letter-spacing:2.608640pt;}
.ls10{letter-spacing:2.692480pt;}
.ls15{letter-spacing:2.703360pt;}
.ls43{letter-spacing:2.863360pt;}
.ls4a{letter-spacing:3.200000pt;}
.ls3e{letter-spacing:3.840000pt;}
.ls3a{letter-spacing:4.063360pt;}
.ls35{letter-spacing:4.149120pt;}
.ls41{letter-spacing:4.480000pt;}
.ls42{letter-spacing:5.760000pt;}
.ls21{letter-spacing:12.336640pt;}
.ls12{letter-spacing:12.976640pt;}
.ls33{letter-spacing:12.999680pt;}
.ls46{letter-spacing:14.080000pt;}
.lsf{letter-spacing:14.204800pt;}
.ls22{letter-spacing:14.223360pt;}
.ls1f{letter-spacing:14.831147pt;}
.ls1d{letter-spacing:14.852480pt;}
.ls11{letter-spacing:14.863360pt;}
.ls1e{letter-spacing:15.012480pt;}
.ls20{letter-spacing:15.492480pt;}
.ls14{letter-spacing:15.503360pt;}
.ls2f{letter-spacing:15.884800pt;}
.lsb{letter-spacing:15.938560pt;}
.ls30{letter-spacing:16.176640pt;}
.ls50{letter-spacing:16.640000pt;}
.ls24{letter-spacing:18.042027pt;}
.ls44{letter-spacing:18.063360pt;}
.ls25{letter-spacing:18.474880pt;}
.ls16{letter-spacing:19.280000pt;}
.lsd{letter-spacing:19.637120pt;}
.ls23{letter-spacing:26.880000pt;}
.ls32{letter-spacing:40.486400pt;}
.ws1d{word-spacing:-58.880000pt;}
.ws28{word-spacing:-18.744960pt;}
.ws27{word-spacing:-15.360000pt;}
.ws13{word-spacing:-14.991467pt;}
.ws7{word-spacing:-14.953067pt;}
.ws6{word-spacing:-14.817067pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.584533pt;}
.ws4{word-spacing:-14.486933pt;}
.ws12{word-spacing:-14.448533pt;}
.ws25{word-spacing:-14.313067pt;}
.ws26{word-spacing:-14.176000pt;}
.ws1c{word-spacing:-14.080000pt;}
.ws1e{word-spacing:-13.845333pt;}
.ws14{word-spacing:-13.176533pt;}
.ws8{word-spacing:-13.084267pt;}
.ws10{word-spacing:-13.020267pt;}
.ws19{word-spacing:-12.974080pt;}
.ws11{word-spacing:-12.953600pt;}
.ws22{word-spacing:-12.856533pt;}
.ws1f{word-spacing:-12.818133pt;}
.ws1b{word-spacing:-12.717867pt;}
.ws2{word-spacing:-9.600000pt;}
.wsb{word-spacing:-9.443840pt;}
.wsa{word-spacing:-9.433600pt;}
.ws0{word-spacing:-9.280000pt;}
.ws23{word-spacing:-0.863573pt;}
.wsf{word-spacing:-0.616960pt;}
.ws5{word-spacing:0.000000pt;}
.ws15{word-spacing:0.001707pt;}
.wsd{word-spacing:0.017920pt;}
.wsc{word-spacing:0.023040pt;}
.ws17{word-spacing:0.183040pt;}
.ws16{word-spacing:0.268480pt;}
.ws18{word-spacing:0.887147pt;}
.ws21{word-spacing:2.336427pt;}
.ws20{word-spacing:2.602240pt;}
.wse{word-spacing:2.984960pt;}
.ws24{word-spacing:3.624960pt;}
.ws1a{word-spacing:5.411200pt;}
.ws9{word-spacing:8.589867pt;}
._25{margin-left:-14.226347pt;}
._24{margin-left:-5.313707pt;}
._5{margin-left:-4.264533pt;}
._2{margin-left:-3.217920pt;}
._1{margin-left:-2.099200pt;}
._0{margin-left:-1.198080pt;}
._3{width:0.916480pt;}
._d{width:1.905067pt;}
._e{width:3.326720pt;}
._b{width:4.298240pt;}
._4{width:5.240320pt;}
._f{width:6.594560pt;}
._15{width:7.733760pt;}
._19{width:8.651947pt;}
._6{width:9.715200pt;}
._7{width:10.626560pt;}
._8{width:11.526827pt;}
._1b{width:12.576853pt;}
._c{width:13.660160pt;}
._18{width:15.032747pt;}
._9{width:16.153600pt;}
._a{width:17.269333pt;}
._10{width:18.203733pt;}
._14{width:19.363627pt;}
._30{width:20.343040pt;}
._26{width:21.314560pt;}
._27{width:22.295040pt;}
._12{width:23.557120pt;}
._13{width:24.450560pt;}
._16{width:25.907200pt;}
._17{width:27.045973pt;}
._11{width:28.371627pt;}
._1d{width:30.461440pt;}
._2a{width:31.933440pt;}
._2b{width:32.913920pt;}
._1c{width:33.973760pt;}
._1a{width:36.328960pt;}
._23{width:37.447680pt;}
._22{width:47.810560pt;}
._1e{width:52.103040pt;}
._20{width:53.697920pt;}
._21{width:55.090560pt;}
._1f{width:69.070933pt;}
._29{width:82.785280pt;}
._2f{width:137.740800pt;}
._2e{width:138.721280pt;}
._2d{width:189.304747pt;}
._2c{width:190.732800pt;}
._28{width:753.134080pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:62.064349pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y107{bottom:5.600000pt;}
.y108{bottom:5.760000pt;}
.ya5{bottom:16.960000pt;}
.y9d{bottom:17.120000pt;}
.y90{bottom:19.360000pt;}
.y55{bottom:20.160000pt;}
.y46{bottom:20.320000pt;}
.y56{bottom:20.480000pt;}
.y47{bottom:20.640000pt;}
.y41{bottom:22.400000pt;}
.y44{bottom:22.720000pt;}
.y42{bottom:23.040000pt;}
.y106{bottom:24.960000pt;}
.y120{bottom:25.120000pt;}
.y91{bottom:25.440000pt;}
.y8f{bottom:26.720000pt;}
.ya4{bottom:26.880000pt;}
.y9c{bottom:27.080000pt;}
.ya6{bottom:28.000000pt;}
.y9e{bottom:28.200000pt;}
.y113{bottom:44.960000pt;}
.y104{bottom:45.120000pt;}
.y2{bottom:51.040000pt;}
.y1{bottom:68.032000pt;}
.y142{bottom:99.392000pt;}
.y7b{bottom:102.912000pt;}
.ye2{bottom:105.632000pt;}
.ycb{bottom:108.192000pt;}
.yde{bottom:109.472000pt;}
.yd7{bottom:110.912000pt;}
.y102{bottom:115.072000pt;}
.y129{bottom:119.712000pt;}
.y1c{bottom:120.512000pt;}
.y98{bottom:123.872000pt;}
.y36{bottom:127.232000pt;}
.ye5{bottom:130.112000pt;}
.y6b{bottom:131.232000pt;}
.y141{bottom:133.152000pt;}
.y101{bottom:133.312000pt;}
.y8d{bottom:134.426667pt;}
.yb2{bottom:135.546667pt;}
.y7a{bottom:136.506667pt;}
.y1b{bottom:138.746667pt;}
.ye1{bottom:139.386667pt;}
.yca{bottom:141.946667pt;}
.ydd{bottom:143.226667pt;}
.yd6{bottom:144.666667pt;}
.yce{bottom:145.306667pt;}
.y128{bottom:150.266667pt;}
.y97{bottom:157.626667pt;}
.y35{bottom:160.826667pt;}
.y100{bottom:162.106667pt;}
.ycf{bottom:163.066667pt;}
.y52{bottom:163.866667pt;}
.y6a{bottom:164.986667pt;}
.y140{bottom:166.906667pt;}
.y1a{bottom:167.546667pt;}
.y8c{bottom:168.186667pt;}
.yb1{bottom:169.306667pt;}
.y79{bottom:170.266667pt;}
.ye0{bottom:173.146667pt;}
.yc9{bottom:175.706667pt;}
.ydc{bottom:176.986667pt;}
.yd5{bottom:178.266667pt;}
.y127{bottom:180.986667pt;}
.y34{bottom:189.786667pt;}
.yff{bottom:191.066667pt;}
.y96{bottom:191.706667pt;}
.y19{bottom:196.346667pt;}
.ye4{bottom:197.466667pt;}
.y51{bottom:197.626667pt;}
.y69{bottom:198.586667pt;}
.y13f{bottom:200.666667pt;}
.y8b{bottom:201.946667pt;}
.yb0{bottom:203.066667pt;}
.ydf{bottom:203.706667pt;}
.y78{bottom:204.026667pt;}
.yd4{bottom:207.226667pt;}
.yc8{bottom:209.306667pt;}
.ydb{bottom:210.586667pt;}
.y126{bottom:211.706667pt;}
.yb9{bottom:213.146667pt;}
.y33{bottom:218.586667pt;}
.yfe{bottom:219.866667pt;}
.ye3{bottom:223.226667pt;}
.y125{bottom:224.826667pt;}
.y18{bottom:225.306667pt;}
.y95{bottom:225.786667pt;}
.y50{bottom:231.226667pt;}
.y68{bottom:232.346667pt;}
.y13e{bottom:234.266667pt;}
.y8a{bottom:235.706667pt;}
.yaf{bottom:236.826667pt;}
.y77{bottom:237.786667pt;}
.yd3{bottom:240.986667pt;}
.yc7{bottom:243.066667pt;}
.y124{bottom:244.186667pt;}
.yda{bottom:244.346667pt;}
.yb8{bottom:246.906667pt;}
.y32{bottom:247.546667pt;}
.yfd{bottom:248.826667pt;}
.y17{bottom:254.106667pt;}
.y94{bottom:259.866667pt;}
.y123{bottom:263.546667pt;}
.y4f{bottom:264.986667pt;}
.y67{bottom:266.106667pt;}
.y13d{bottom:268.026667pt;}
.y89{bottom:269.466667pt;}
.yae{bottom:270.586667pt;}
.y76{bottom:271.546667pt;}
.yd2{bottom:274.746667pt;}
.y31{bottom:276.346667pt;}
.yc6{bottom:276.826667pt;}
.yfc{bottom:277.626667pt;}
.yd9{bottom:278.106667pt;}
.yb7{bottom:280.666667pt;}
.y155{bottom:281.306667pt;}
.y13c{bottom:282.466667pt;}
.y122{bottom:282.946667pt;}
.y16{bottom:283.106667pt;}
.y93{bottom:293.826667pt;}
.y4e{bottom:298.786667pt;}
.y66{bottom:299.906667pt;}
.y13b{bottom:301.986667pt;}
.y121{bottom:302.466667pt;}
.y88{bottom:303.266667pt;}
.yad{bottom:304.386667pt;}
.y75{bottom:305.346667pt;}
.yfb{bottom:306.626667pt;}
.yd1{bottom:308.386667pt;}
.y30{bottom:310.146667pt;}
.yc5{bottom:310.626667pt;}
.y15{bottom:311.906667pt;}
.yb6{bottom:314.306667pt;}
.y154{bottom:315.106667pt;}
.y13a{bottom:321.986667pt;}
.y11e{bottom:322.466667pt;}
.y92{bottom:327.906667pt;}
.y14b{bottom:329.986667pt;}
.y4d{bottom:332.546667pt;}
.y65{bottom:333.666667pt;}
.yfa{bottom:335.426667pt;}
.y87{bottom:336.866667pt;}
.yac{bottom:337.986667pt;}
.y74{bottom:338.946667pt;}
.y14{bottom:340.866667pt;}
.y139{bottom:341.346667pt;}
.y8e{bottom:341.986667pt;}
.yd0{bottom:342.146667pt;}
.y11f{bottom:342.466667pt;}
.y2f{bottom:343.906667pt;}
.yc4{bottom:344.386667pt;}
.yb5{bottom:348.066667pt;}
.y153{bottom:348.706667pt;}
.y14a{bottom:349.346667pt;}
.yd8{bottom:353.186667pt;}
.y138{bottom:361.506667pt;}
.yf9{bottom:364.226667pt;}
.y4c{bottom:366.306667pt;}
.y64{bottom:367.266667pt;}
.y152{bottom:368.226667pt;}
.y149{bottom:368.866667pt;}
.y13{bottom:369.666667pt;}
.y86{bottom:370.626667pt;}
.yab{bottom:371.746667pt;}
.y73{bottom:372.706667pt;}
.y2e{bottom:377.666667pt;}
.yc3{bottom:377.986667pt;}
.y137{bottom:380.866667pt;}
.yb4{bottom:381.826667pt;}
.yf8{bottom:384.386667pt;}
.y11d{bottom:387.586667pt;}
.y148{bottom:399.426667pt;}
.y4b{bottom:399.906667pt;}
.y136{bottom:400.866667pt;}
.y63{bottom:401.026667pt;}
.y12{bottom:403.426667pt;}
.y85{bottom:404.386667pt;}
.y161{bottom:404.706667pt;}
.yaa{bottom:405.506667pt;}
.y72{bottom:406.466667pt;}
.y11c{bottom:406.946667pt;}
.y2d{bottom:411.266667pt;}
.yc2{bottom:411.746667pt;}
.yb3{bottom:412.386667pt;}
.y62{bottom:414.786667pt;}
.yf7{bottom:419.106667pt;}
.y135{bottom:420.226667pt;}
.y160{bottom:424.066667pt;}
.y151{bottom:426.306667pt;}
.y11b{bottom:426.466667pt;}
.y4a{bottom:433.666667pt;}
.y11{bottom:437.186667pt;}
.y84{bottom:438.146667pt;}
.ya9{bottom:439.266667pt;}
.y71{bottom:440.226667pt;}
.y134{bottom:440.386667pt;}
.y15f{bottom:443.426667pt;}
.y2c{bottom:445.026667pt;}
.yc1{bottom:445.506667pt;}
.y150{bottom:455.426667pt;}
.yf6{bottom:458.946667pt;}
.y133{bottom:459.746667pt;}
.y11a{bottom:460.226667pt;}
.y49{bottom:467.426667pt;}
.y10{bottom:470.786667pt;}
.y61{bottom:471.266667pt;}
.y83{bottom:471.906667pt;}
.y15e{bottom:472.546667pt;}
.ya8{bottom:473.026667pt;}
.y70{bottom:473.986667pt;}
.y2b{bottom:478.786667pt;}
.yc0{bottom:479.266667pt;}
.y132{bottom:479.746667pt;}
.yf5{bottom:486.626667pt;}
.y119{bottom:493.826667pt;}
.y131{bottom:499.266667pt;}
.y14f{bottom:500.546667pt;}
.y48{bottom:501.186667pt;}
.y60{bottom:505.053333pt;}
.y82{bottom:505.533333pt;}
.ya7{bottom:507.133333pt;}
.y6f{bottom:507.613333pt;}
.y118{bottom:508.413333pt;}
.yf{bottom:510.653333pt;}
.y2a{bottom:512.573333pt;}
.ybf{bottom:513.053333pt;}
.y45{bottom:514.973333pt;}
.y130{bottom:519.293333pt;}
.ya3{bottom:521.213333pt;}
.yf4{bottom:526.493333pt;}
.y117{bottom:527.773333pt;}
.y14e{bottom:534.173333pt;}
.ye{bottom:538.333333pt;}
.y12f{bottom:538.653333pt;}
.y5f{bottom:538.813333pt;}
.y81{bottom:539.293333pt;}
.y6e{bottom:541.373333pt;}
.y29{bottom:546.333333pt;}
.ybe{bottom:546.813333pt;}
.y116{bottom:547.133333pt;}
.y43{bottom:549.373333pt;}
.y14d{bottom:553.693333pt;}
.yf3{bottom:554.173333pt;}
.y12e{bottom:558.813333pt;}
.y115{bottom:566.493333pt;}
.y5e{bottom:572.573333pt;}
.y80{bottom:573.053333pt;}
.y6d{bottom:575.133333pt;}
.yd{bottom:578.173333pt;}
.y28{bottom:579.933333pt;}
.y164{bottom:580.093333pt;}
.ybd{bottom:580.413333pt;}
.y40{bottom:585.853333pt;}
.y112{bottom:586.653333pt;}
.y15d{bottom:588.573333pt;}
.ya2{bottom:591.133333pt;}
.yf2{bottom:594.013333pt;}
.y12d{bottom:598.173333pt;}
.y163{bottom:599.453333pt;}
.y14c{bottom:603.613333pt;}
.yc{bottom:605.853333pt;}
.y5d{bottom:606.173333pt;}
.y114{bottom:606.653333pt;}
.y7f{bottom:606.813333pt;}
.y15c{bottom:607.933333pt;}
.y6c{bottom:608.893333pt;}
.y27{bottom:613.693333pt;}
.ybc{bottom:614.173333pt;}
.y162{bottom:618.813333pt;}
.yf1{bottom:621.533333pt;}
.ya1{bottom:624.893333pt;}
.y15b{bottom:627.453333pt;}
.y5c{bottom:639.933333pt;}
.y7e{bottom:640.573333pt;}
.y3f{bottom:642.653333pt;}
.y12c{bottom:643.293333pt;}
.yb{bottom:645.533333pt;}
.y15a{bottom:646.813333pt;}
.y26{bottom:647.453333pt;}
.ybb{bottom:647.933333pt;}
.y111{bottom:651.773333pt;}
.yf0{bottom:655.293333pt;}
.ya0{bottom:658.973333pt;}
.y12b{bottom:662.653333pt;}
.y159{bottom:666.173333pt;}
.y110{bottom:671.133333pt;}
.ya{bottom:673.213333pt;}
.y5b{bottom:673.693333pt;}
.y7d{bottom:674.173333pt;}
.y3e{bottom:676.253333pt;}
.y25{bottom:681.213333pt;}
.yba{bottom:681.693333pt;}
.y12a{bottom:682.173333pt;}
.y158{bottom:685.533333pt;}
.yef{bottom:689.053333pt;}
.y10f{bottom:690.493333pt;}
.y9f{bottom:693.053333pt;}
.ycd{bottom:695.453333pt;}
.y157{bottom:705.053333pt;}
.y9b{bottom:706.813333pt;}
.y9{bottom:706.973333pt;}
.y5a{bottom:707.453333pt;}
.y7c{bottom:709.853333pt;}
.y3d{bottom:710.013333pt;}
.y24{bottom:714.973333pt;}
.y10e{bottom:715.773333pt;}
.y156{bottom:721.213333pt;}
.yee{bottom:722.813333pt;}
.ycc{bottom:729.893333pt;}
.y147{bottom:735.973333pt;}
.y8{bottom:740.773333pt;}
.y59{bottom:741.253333pt;}
.y3c{bottom:743.813333pt;}
.y23{bottom:748.773333pt;}
.y10d{bottom:749.573333pt;}
.y58{bottom:755.013333pt;}
.yed{bottom:762.053333pt;}
.y10c{bottom:763.973333pt;}
.y146{bottom:769.733333pt;}
.y7{bottom:774.533333pt;}
.y9a{bottom:776.933333pt;}
.y3b{bottom:777.573333pt;}
.y22{bottom:782.373333pt;}
.y10b{bottom:783.493333pt;}
.y145{bottom:784.133333pt;}
.y57{bottom:789.413333pt;}
.y10a{bottom:802.853333pt;}
.y144{bottom:803.493333pt;}
.yec{bottom:804.933333pt;}
.y99{bottom:811.013333pt;}
.y3a{bottom:811.333333pt;}
.y6{bottom:813.733333pt;}
.y21{bottom:816.133333pt;}
.y109{bottom:822.213333pt;}
.y143{bottom:822.853333pt;}
.y54{bottom:823.813333pt;}
.yeb{bottom:828.133333pt;}
.y103{bottom:842.213333pt;}
.y39{bottom:845.093333pt;}
.yea{bottom:848.133333pt;}
.y20{bottom:849.893333pt;}
.y5{bottom:856.613333pt;}
.y53{bottom:858.053333pt;}
.y105{bottom:862.373333pt;}
.ye9{bottom:868.613333pt;}
.y38{bottom:878.693333pt;}
.y1f{bottom:883.653333pt;}
.ye8{bottom:887.973333pt;}
.y4{bottom:899.653333pt;}
.ye7{bottom:907.493333pt;}
.y37{bottom:912.453333pt;}
.y1e{bottom:917.413333pt;}
.ye6{bottom:926.853333pt;}
.y3{bottom:942.533333pt;}
.y1d{bottom:946.213333pt;}
.h1e{height:19.360000pt;}
.h21{height:19.392000pt;}
.h1d{height:19.520000pt;}
.hb{height:34.240000pt;}
.h17{height:34.392000pt;}
.ha{height:34.400000pt;}
.h18{height:34.432000pt;}
.h4{height:36.413125pt;}
.h9{height:36.480000pt;}
.h7{height:36.800000pt;}
.h1c{height:38.720000pt;}
.h20{height:38.880000pt;}
.hc{height:44.480000pt;}
.h11{height:49.622500pt;}
.h15{height:49.920000pt;}
.h12{height:50.112000pt;}
.h22{height:52.134375pt;}
.h10{height:52.306185pt;}
.h19{height:52.785000pt;}
.h5{height:57.758750pt;}
.h1{height:57.787500pt;}
.h8{height:57.898125pt;}
.h1f{height:58.720000pt;}
.h1b{height:58.880000pt;}
.h6{height:59.340000pt;}
.h3{height:60.733125pt;}
.h1a{height:62.812500pt;}
.hd{height:70.698125pt;}
.h2{height:75.465000pt;}
.hf{height:79.062500pt;}
.h16{height:89.302500pt;}
.h14{height:89.462500pt;}
.h13{height:94.422500pt;}
.he{height:100.138125pt;}
.h0{height:1056.000000pt;}
.w3{width:53.280000pt;}
.w11{width:60.000000pt;}
.w5{width:63.680000pt;}
.wb{width:65.280000pt;}
.w12{width:78.112000pt;}
.w7{width:83.360000pt;}
.w10{width:84.000000pt;}
.we{width:88.960000pt;}
.wd{width:94.272000pt;}
.w9{width:108.000000pt;}
.w14{width:120.032000pt;}
.wc{width:133.440000pt;}
.w13{width:142.586667pt;}
.wf{width:183.226667pt;}
.w8{width:516.093333pt;}
.w6{width:540.093333pt;}
.wa{width:558.173333pt;}
.w4{width:560.413333pt;}
.w2{width:570.173333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.200000pt;}
.x3b{left:9.600000pt;}
.x12{left:11.360000pt;}
.x39{left:12.480000pt;}
.x2e{left:15.040000pt;}
.x22{left:16.000000pt;}
.x3e{left:17.120000pt;}
.x3d{left:20.640000pt;}
.x14{left:21.920000pt;}
.x3c{left:23.520000pt;}
.x2f{left:26.120000pt;}
.x34{left:28.000000pt;}
.x2c{left:29.640000pt;}
.x33{left:30.600000pt;}
.x32{left:31.680000pt;}
.x31{left:34.280000pt;}
.x36{left:35.200000pt;}
.x1d{left:37.914667pt;}
.x16{left:41.600000pt;}
.x35{left:43.880000pt;}
.x30{left:45.274667pt;}
.x37{left:53.000000pt;}
.x1e{left:58.880000pt;}
.x3f{left:60.000000pt;}
.x1c{left:66.240000pt;}
.x17{left:77.274667pt;}
.x2{left:96.031988pt;}
.x4{left:101.471988pt;}
.x6{left:104.511988pt;}
.x9{left:112.351988pt;}
.xb{left:116.831988pt;}
.x29{left:128.031988pt;}
.x8{left:137.946655pt;}
.xf{left:144.026655pt;}
.xa{left:151.386655pt;}
.x38{left:180.026667pt;}
.x18{left:205.474667pt;}
.x2b{left:229.466667pt;}
.x3a{left:240.026667pt;}
.xd{left:254.626655pt;}
.xe{left:274.146655pt;}
.x19{left:286.434667pt;}
.x1a{left:289.634667pt;}
.x40{left:300.066667pt;}
.x7{left:308.866655pt;}
.x5{left:309.986655pt;}
.x2a{left:320.546655pt;}
.x2d{left:323.746667pt;}
.xc{left:324.706655pt;}
.x41{left:360.066667pt;}
.x3{left:408.066655pt;}
.x26{left:567.293321pt;}
.x27{left:601.413321pt;}
.x47{left:607.013321pt;}
.x1b{left:612.133333pt;}
.x15{left:636.133333pt;}
.x43{left:640.773321pt;}
.x25{left:649.733321pt;}
.x21{left:654.213333pt;}
.x13{left:656.453333pt;}
.x11{left:666.213333pt;}
.x1f{left:705.413321pt;}
.x1{left:712.773321pt;}
.x20{left:715.813321pt;}
.x46{left:722.053321pt;}
.x44{left:729.413321pt;}
.x45{left:731.653321pt;}
.x28{left:732.773321pt;}
.x23{left:735.653321pt;}
.x24{left:749.733321pt;}
.x42{left:783.999988pt;}
}




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