
    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_9042aed1c9abeb56e319d925.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197754;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_7928e58802f49e774e09f63e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_0e37bc3e00732b8066fd1780.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_6993589cab2c136859de1bfd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.957000;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_6993589cab2c136859de1bfd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.957000;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_834d3afbfa7c8f96dd2c768c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.082000;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_834d3afbfa7c8f96dd2c768c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.082000;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_834d3afbfa7c8f96dd2c768c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.082000;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;}
.m0{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m3{transform:matrix(0.253482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253482,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253485,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-51.202795px;}
.v3{vertical-align:-22.200000px;}
.v5{vertical-align:-3.354674px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.949400px;}
.v1{vertical-align:3.000000px;}
.v7{vertical-align:6.833839px;}
.v9{vertical-align:12.035717px;}
.va{vertical-align:21.062504px;}
.v2{vertical-align:26.640000px;}
.v4{vertical-align:72.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000600px;}
.ls13{letter-spacing:0.016200px;}
.ls14{letter-spacing:0.016800px;}
.lsd{letter-spacing:0.129600px;}
.lsc{letter-spacing:0.130200px;}
.ls8{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.285000px;}
.ls11{letter-spacing:0.336600px;}
.ls9{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.432000px;}
.lse{letter-spacing:0.570000px;}
.ls3{letter-spacing:0.720000px;}
.ls12{letter-spacing:1.455000px;}
.lsf{letter-spacing:3.600000px;}
.ls5{letter-spacing:4.197333px;}
.ls0{letter-spacing:4.200000px;}
.lsb{letter-spacing:5.400000px;}
.ls16{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls7{letter-spacing:7.200000px;}
.ls2{letter-spacing:10.200000px;}
.ls15{letter-spacing:19.800000px;}
.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;}
}
.ws2a{word-spacing:-36.102000px;}
.ws27{word-spacing:-27.432000px;}
.ws25{word-spacing:-20.664000px;}
.ws4{word-spacing:-20.592000px;}
.ws28{word-spacing:-20.574000px;}
.ws0{word-spacing:-20.232000px;}
.ws6{word-spacing:-18.546000px;}
.ws3{word-spacing:-17.784000px;}
.ws2{word-spacing:-16.860000px;}
.ws29{word-spacing:-16.302000px;}
.ws26{word-spacing:-16.017000px;}
.wsa{word-spacing:-14.079000px;}
.ws5{word-spacing:-12.139200px;}
.ws1e{word-spacing:-0.050999px;}
.ws1{word-spacing:0.000000px;}
.ws21{word-spacing:14.228665px;}
.ws16{word-spacing:14.231952px;}
.ws1c{word-spacing:14.279664px;}
.ws13{word-spacing:17.129171px;}
.ws19{word-spacing:17.186596px;}
.ws22{word-spacing:31.466260px;}
.ws15{word-spacing:39.849466px;}
.ws1b{word-spacing:39.983059px;}
.ws20{word-spacing:47.581880px;}
.ws1d{word-spacing:48.703854px;}
.ws7{word-spacing:56.027400px;}
.ws14{word-spacing:72.379642px;}
.ws1a{word-spacing:72.622291px;}
.ws9{word-spacing:117.843000px;}
.ws24{word-spacing:143.408626px;}
.ws8{word-spacing:147.843000px;}
.ws12{word-spacing:163.159164px;}
.ws18{word-spacing:163.706148px;}
.wsc{word-spacing:195.870000px;}
.wsb{word-spacing:195.870667px;}
.ws11{word-spacing:213.479280px;}
.ws17{word-spacing:214.194960px;}
.wsd{word-spacing:271.484667px;}
.wsf{word-spacing:271.485333px;}
.wse{word-spacing:349.168667px;}
.ws10{word-spacing:349.169333px;}
.ws23{word-spacing:516.362850px;}
.ws1f{word-spacing:727.140890px;}
._24{margin-left:-107.502066px;}
._26{margin-left:-98.149640px;}
._22{margin-left:-77.716624px;}
._8{margin-left:-21.312000px;}
._17{margin-left:-19.578000px;}
._21{margin-left:-18.546000px;}
._32{margin-left:-16.170000px;}
._13{margin-left:-15.019800px;}
._2f{margin-left:-13.995000px;}
._1f{margin-left:-12.258000px;}
._6{margin-left:-10.500000px;}
._1e{margin-left:-9.225000px;}
._2{margin-left:-7.350000px;}
._3{margin-left:-5.886000px;}
._0{margin-left:-4.326000px;}
._1{margin-left:-2.730000px;}
._4{margin-left:-1.200000px;}
._5{width:1.020000px;}
._f{width:2.136000px;}
._b{width:3.156000px;}
._e{width:4.332000px;}
._a{width:6.036000px;}
._9{width:7.200000px;}
._c{width:8.844000px;}
._7{width:10.211333px;}
._d{width:11.376000px;}
._10{width:12.528000px;}
._11{width:13.818000px;}
._14{width:15.024000px;}
._15{width:17.040000px;}
._16{width:18.330000px;}
._31{width:22.482000px;}
._30{width:23.490000px;}
._20{width:38.923200px;}
._12{width:56.923200px;}
._2d{width:65.278464px;}
._27{width:72.430470px;}
._18{width:101.029200px;}
._2c{width:102.966577px;}
._28{width:129.946928px;}
._2b{width:132.129598px;}
._19{width:134.702400px;}
._1d{width:136.617600px;}
._29{width:137.731328px;}
._1a{width:149.704800px;}
._1b{width:154.437600px;}
._2a{width:158.831657px;}
._1c{width:164.698800px;}
._2e{width:169.265017px;}
._23{width:190.098216px;}
._25{width:195.333541px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:50.828400px;}
.fsb{font-size:50.998800px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y10c{bottom:1.371750px;}
.y105{bottom:7.098900px;}
.yee{bottom:7.453350px;}
.y104{bottom:34.232400px;}
.yfb{bottom:49.867800px;}
.yfc{bottom:69.553337px;}
.yfd{bottom:89.238874px;}
.y1{bottom:107.837550px;}
.yfe{bottom:108.235927px;}
.yff{bottom:127.730218px;}
.y100{bottom:146.242782px;}
.y101{bottom:164.564101px;}
.y3e{bottom:171.813150px;}
.yce{bottom:173.062500px;}
.yb3{bottom:174.908550px;}
.y13f{bottom:177.064800px;}
.y74{bottom:177.363150px;}
.yf9{bottom:179.082150px;}
.y145{bottom:181.612500px;}
.ye0{bottom:181.818600px;}
.y1d{bottom:183.344700px;}
.y102{bottom:184.249638px;}
.y165{bottom:184.808550px;}
.y5f{bottom:188.313150px;}
.y187{bottom:190.006050px;}
.y3d{bottom:193.863150px;}
.ycd{bottom:194.662500px;}
.yb2{bottom:196.508550px;}
.y144{bottom:203.212500px;}
.y103{bottom:204.037172px;}
.y164{bottom:204.608550px;}
.y5e{bottom:204.813150px;}
.y1c{bottom:205.844700px;}
.y186{bottom:209.956050px;}
.y13b{bottom:210.298398px;}
.y10b{bottom:211.570500px;}
.y155{bottom:213.608550px;}
.yed{bottom:213.672000px;}
.ycc{bottom:216.262500px;}
.yb1{bottom:218.108550px;}
.y5d{bottom:221.313150px;}
.y163{bottom:224.408550px;}
.y131{bottom:224.603562px;}
.y143{bottom:224.812500px;}
.y93{bottom:224.824350px;}
.y73{bottom:226.863150px;}
.y1b{bottom:228.344700px;}
.y108{bottom:229.168082px;}
.y185{bottom:229.906050px;}
.y154{bottom:235.208550px;}
.y132{bottom:237.404261px;}
.ycb{bottom:237.412500px;}
.y5c{bottom:237.813150px;}
.y3c{bottom:237.908550px;}
.y10a{bottom:239.699335px;}
.y10d{bottom:239.704950px;}
.yb0{bottom:239.708550px;}
.y12f{bottom:243.422119px;}
.y162{bottom:244.208550px;}
.y92{bottom:245.974350px;}
.y142{bottom:246.412500px;}
.yec{bottom:247.682550px;}
.y106{bottom:249.669600px;}
.y184{bottom:249.856050px;}
.y133{bottom:250.204959px;}
.y119{bottom:250.676850px;}
.y1a{bottom:250.844700px;}
.y5b{bottom:254.313150px;}
.y153{bottom:256.808550px;}
.y12d{bottom:256.975050px;}
.yca{bottom:258.562500px;}
.ye1{bottom:259.485600px;}
.y3b{bottom:259.508550px;}
.yaf{bottom:261.308550px;}
.y134{bottom:262.253426px;}
.y161{bottom:264.008550px;}
.y91{bottom:267.124350px;}
.y10e{bottom:267.320800px;}
.y141{bottom:268.012500px;}
.y183{bottom:269.806050px;}
.y5a{bottom:270.813150px;}
.y118{bottom:272.428200px;}
.y19{bottom:273.344700px;}
.y135{bottom:275.054125px;}
.yaa{bottom:276.363150px;}
.ye2{bottom:276.551235px;}
.y152{bottom:278.408550px;}
.yc9{bottom:279.712500px;}
.y3a{bottom:281.108550px;}
.yae{bottom:282.908550px;}
.y160{bottom:283.808550px;}
.ya1{bottom:287.313150px;}
.y136{bottom:287.854823px;}
.y90{bottom:288.274350px;}
.y140{bottom:289.612500px;}
.y182{bottom:289.756050px;}
.y109{bottom:290.379392px;}
.y59{bottom:292.863150px;}
.ye3{bottom:293.261072px;}
.y117{bottom:293.854350px;}
.y10f{bottom:294.082421px;}
.y18{bottom:295.844700px;}
.y13d{bottom:296.765400px;}
.y151{bottom:300.008550px;}
.y137{bottom:300.655522px;}
.yc8{bottom:300.862500px;}
.y39{bottom:302.708550px;}
.y15f{bottom:303.608550px;}
.ya0{bottom:303.813150px;}
.yad{bottom:304.508550px;}
.y8f{bottom:309.424350px;}
.y181{bottom:309.706050px;}
.ye4{bottom:310.695213px;}
.ya9{bottom:311.212500px;}
.y13c{bottom:312.577200px;}
.y138{bottom:312.703989px;}
.y116{bottom:315.958650px;}
.y17{bottom:318.344700px;}
.y150{bottom:321.608550px;}
.y110{bottom:321.698271px;}
.yc7{bottom:322.012500px;}
.y15e{bottom:323.408550px;}
.y38{bottom:324.308550px;}
.y139{bottom:325.504688px;}
.y9f{bottom:325.863150px;}
.ye5{bottom:327.760848px;}
.y180{bottom:329.656050px;}
.y12e{bottom:330.005332px;}
.y8e{bottom:330.574350px;}
.y58{bottom:332.108550px;}
.ya8{bottom:332.812500px;}
.yac{bottom:334.612500px;}
.y115{bottom:336.125700px;}
.y130{bottom:336.303683px;}
.y9e{bottom:336.813150px;}
.y13a{bottom:338.305386px;}
.y16{bottom:340.844700px;}
.yc6{bottom:343.162500px;}
.y14f{bottom:343.208550px;}
.ye6{bottom:344.470685px;}
.y37{bottom:345.908550px;}
.y111{bottom:348.179398px;}
.y17f{bottom:349.606050px;}
.y8d{bottom:351.724350px;}
.y9d{bottom:353.313150px;}
.y57{bottom:353.708550px;}
.ya7{bottom:354.412500px;}
.yab{bottom:356.212500px;}
.y114{bottom:356.618100px;}
.ye7{bottom:361.536320px;}
.y15d{bottom:363.008550px;}
.y15{bottom:363.344700px;}
.yc5{bottom:364.312500px;}
.y14e{bottom:364.808550px;}
.y36{bottom:367.508550px;}
.y17e{bottom:369.556050px;}
.y9c{bottom:369.813150px;}
.y8c{bottom:372.874350px;}
.y56{bottom:375.308550px;}
.y112{bottom:375.795248px;}
.ya6{bottom:376.012500px;}
.ye8{bottom:378.970461px;}
.y15c{bottom:382.808550px;}
.y107{bottom:382.916715px;}
.yc4{bottom:385.462500px;}
.y14{bottom:385.844700px;}
.y9b{bottom:386.313150px;}
.y14d{bottom:386.408550px;}
.y35{bottom:389.108550px;}
.y17d{bottom:389.506050px;}
.y8b{bottom:394.024350px;}
.ye9{bottom:396.404603px;}
.y55{bottom:396.908550px;}
.ya5{bottom:397.612500px;}
.y13e{bottom:398.170650px;}
.y113{bottom:402.556868px;}
.y15b{bottom:402.608550px;}
.yc3{bottom:406.612500px;}
.y14c{bottom:408.008550px;}
.y13{bottom:408.344700px;}
.y9a{bottom:408.363150px;}
.y17c{bottom:409.456050px;}
.y34{bottom:410.708550px;}
.yea{bottom:412.745933px;}
.y8a{bottom:415.174350px;}
.y54{bottom:418.508550px;}
.ya4{bottom:419.212500px;}
.y99{bottom:419.313150px;}
.y15a{bottom:422.408550px;}
.yc2{bottom:427.762500px;}
.y17b{bottom:429.406050px;}
.y14b{bottom:429.608550px;}
.yeb{bottom:430.180074px;}
.y12{bottom:430.844700px;}
.y12a{bottom:432.081782px;}
.y33{bottom:432.308550px;}
.y89{bottom:436.324350px;}
.ya3{bottom:440.812500px;}
.y98{bottom:441.363150px;}
.y159{bottom:442.208550px;}
.y121{bottom:446.399695px;}
.y53{bottom:448.612500px;}
.yc1{bottom:448.912500px;}
.yf8{bottom:449.186100px;}
.y17a{bottom:449.356050px;}
.y14a{bottom:451.208550px;}
.y97{bottom:452.313150px;}
.y11{bottom:453.344700px;}
.y32{bottom:453.908550px;}
.y88{bottom:457.474350px;}
.y122{bottom:460.704859px;}
.y11c{bottom:460.717609px;}
.ydf{bottom:460.818600px;}
.y158{bottom:462.008550px;}
.ya2{bottom:462.412500px;}
.y11f{bottom:463.726538px;}
.y96{bottom:468.813150px;}
.y11e{bottom:469.744396px;}
.yc0{bottom:470.062500px;}
.yf7{bottom:470.786100px;}
.y149{bottom:472.808550px;}
.y123{bottom:475.010022px;}
.y31{bottom:475.508550px;}
.y10{bottom:475.844700px;}
.y87{bottom:478.624350px;}
.y157{bottom:481.808550px;}
.yde{bottom:482.418600px;}
.y72{bottom:484.012500px;}
.y95{bottom:485.313150px;}
.y11b{bottom:487.071238px;}
.y179{bottom:489.106050px;}
.y124{bottom:489.315186px;}
.y11a{bottom:490.832400px;}
.ybf{bottom:491.212500px;}
.yf6{bottom:492.386100px;}
.y148{bottom:494.408550px;}
.y30{bottom:497.108550px;}
.yf{bottom:498.344700px;}
.y86{bottom:499.774350px;}
.y125{bottom:502.868117px;}
.ydd{bottom:504.018600px;}
.y71{bottom:505.612500px;}
.y94{bottom:507.363150px;}
.y156{bottom:510.112500px;}
.y12c{bottom:511.537950px;}
.ybe{bottom:512.362500px;}
.yf5{bottom:513.986100px;}
.y147{bottom:516.008550px;}
.y126{bottom:517.173280px;}
.y2f{bottom:518.708550px;}
.y178{bottom:519.210000px;}
.ye{bottom:520.844700px;}
.y85{bottom:520.924350px;}
.ydc{bottom:525.618600px;}
.y70{bottom:527.212500px;}
.y12b{bottom:527.349750px;}
.y127{bottom:531.478444px;}
.y52{bottom:533.212500px;}
.ybd{bottom:533.512500px;}
.yf4{bottom:535.586100px;}
.y2e{bottom:540.308550px;}
.y177{bottom:540.810000px;}
.y84{bottom:542.074350px;}
.yd{bottom:543.344700px;}
.y128{bottom:545.783607px;}
.y11d{bottom:545.796357px;}
.y146{bottom:546.112500px;}
.ydb{bottom:547.218600px;}
.y6f{bottom:548.812500px;}
.y120{bottom:550.309750px;}
.y51{bottom:554.512500px;}
.ybc{bottom:554.662500px;}
.yf3{bottom:557.186100px;}
.y129{bottom:560.088770px;}
.y2d{bottom:561.908550px;}
.y176{bottom:562.410000px;}
.y83{bottom:563.224350px;}
.yc{bottom:565.844700px;}
.yda{bottom:568.818600px;}
.y6e{bottom:570.412500px;}
.y50{bottom:575.812500px;}
.yf2{bottom:578.786100px;}
.y2c{bottom:583.508550px;}
.y82{bottom:584.374350px;}
.yb{bottom:588.344700px;}
.yd9{bottom:590.418600px;}
.y6d{bottom:592.012500px;}
.ybb{bottom:596.962500px;}
.y4f{bottom:597.112500px;}
.yf1{bottom:600.386100px;}
.y2b{bottom:605.108550px;}
.y81{bottom:605.524350px;}
.ya{bottom:610.844700px;}
.yd8{bottom:612.018600px;}
.y6c{bottom:613.612500px;}
.yba{bottom:618.112500px;}
.y4e{bottom:618.412500px;}
.yf0{bottom:621.986100px;}
.y80{bottom:626.674350px;}
.y2a{bottom:626.708550px;}
.y175{bottom:629.010000px;}
.yd7{bottom:633.618600px;}
.y6b{bottom:635.212500px;}
.yb9{bottom:639.262500px;}
.y4d{bottom:639.712500px;}
.y9{bottom:641.848500px;}
.y7f{bottom:647.824350px;}
.y29{bottom:648.308550px;}
.yd6{bottom:655.218600px;}
.y6a{bottom:656.812500px;}
.yb8{bottom:660.412500px;}
.y4c{bottom:661.012500px;}
.y174{bottom:663.210000px;}
.y7e{bottom:668.974350px;}
.y28{bottom:669.908550px;}
.y69{bottom:678.412500px;}
.yb7{bottom:681.562500px;}
.y4b{bottom:682.312500px;}
.y173{bottom:683.010000px;}
.y7d{bottom:690.124350px;}
.y27{bottom:691.508550px;}
.yef{bottom:695.290050px;}
.y68{bottom:700.012500px;}
.yb6{bottom:702.712500px;}
.y172{bottom:702.810000px;}
.y4a{bottom:703.612500px;}
.yd5{bottom:706.999050px;}
.y7c{bottom:711.274350px;}
.y26{bottom:713.108550px;}
.y67{bottom:721.612500px;}
.yfa{bottom:722.182500px;}
.y171{bottom:722.610000px;}
.yb5{bottom:724.312500px;}
.y49{bottom:724.912500px;}
.yd4{bottom:724.999050px;}
.y18a{bottom:726.210000px;}
.y25{bottom:734.708550px;}
.y170{bottom:742.410000px;}
.y66{bottom:743.212500px;}
.y189{bottom:744.210000px;}
.yb4{bottom:745.912500px;}
.y48{bottom:746.212500px;}
.y7b{bottom:752.374350px;}
.yd3{bottom:753.583200px;}
.y24{bottom:756.308550px;}
.y16f{bottom:762.210000px;}
.y65{bottom:764.812500px;}
.y47{bottom:767.512500px;}
.y8{bottom:769.948650px;}
.yd2{bottom:771.583200px;}
.y23{bottom:777.908550px;}
.y188{bottom:780.210000px;}
.y16e{bottom:782.010000px;}
.y7a{bottom:784.364550px;}
.y64{bottom:786.412500px;}
.y46{bottom:788.812500px;}
.y22{bottom:799.508550px;}
.yd1{bottom:800.448600px;}
.y7{bottom:800.548650px;}
.y16d{bottom:801.810000px;}
.y63{bottom:808.012500px;}
.y45{bottom:810.112500px;}
.y79{bottom:816.160650px;}
.yd0{bottom:818.448600px;}
.y16c{bottom:821.610000px;}
.y21{bottom:829.612500px;}
.y6{bottom:831.148650px;}
.y44{bottom:831.412500px;}
.y16b{bottom:841.410000px;}
.y78{bottom:847.956600px;}
.y62{bottom:851.212500px;}
.y43{bottom:852.712500px;}
.ycf{bottom:853.012500px;}
.y16a{bottom:861.210000px;}
.y61{bottom:872.812500px;}
.y42{bottom:874.012500px;}
.y77{bottom:878.877300px;}
.y169{bottom:881.010000px;}
.y5{bottom:886.410000px;}
.y60{bottom:894.412500px;}
.y41{bottom:895.312500px;}
.y168{bottom:900.810000px;}
.y4{bottom:904.410000px;}
.y76{bottom:906.746100px;}
.y20{bottom:916.012500px;}
.y40{bottom:916.612500px;}
.y167{bottom:920.610000px;}
.y75{bottom:926.546100px;}
.y1f{bottom:937.612500px;}
.y3f{bottom:937.912500px;}
.y166{bottom:940.410000px;}
.y3{bottom:942.210000px;}
.y1e{bottom:959.212500px;}
.y2{bottom:960.210000px;}
.h9{height:34.734375px;}
.hf{height:36.799762px;}
.h14{height:36.923131px;}
.h12{height:37.358962px;}
.h16{height:39.433531px;}
.h10{height:40.154436px;}
.h15{height:40.289052px;}
.h8{height:40.523438px;}
.h17{height:43.297981px;}
.h7{height:43.523438px;}
.h2{height:46.312500px;}
.h18{height:50.131820px;}
.h1b{height:50.947266px;}
.hc{height:52.101562px;}
.ha{height:54.996094px;}
.h4{height:56.041992px;}
.h3{height:57.890625px;}
.hd{height:61.136719px;}
.hb{height:63.679688px;}
.h1a{height:64.360486px;}
.h6{height:69.468750px;}
.h5{height:98.414062px;}
.he{height:135.679688px;}
.h19{height:207.118500px;}
.h11{height:225.000000px;}
.h13{height:249.001500px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w4{width:477.001500px;}
.w2{width:484.725000px;}
.w3{width:541.500000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.x2d{left:6.258900px;}
.x26{left:35.339814px;}
.x25{left:36.813544px;}
.x24{left:38.093361px;}
.x23{left:39.528308px;}
.x22{left:42.915300px;}
.x21{left:63.025200px;}
.x27{left:86.141100px;}
.x28{left:91.089150px;}
.x3{left:108.035400px;}
.x13{left:116.452650px;}
.x4{left:129.295200px;}
.x1{left:133.078800px;}
.x19{left:137.395350px;}
.x34{left:142.706083px;}
.x1f{left:144.670350px;}
.x33{left:147.950584px;}
.x7{left:150.555150px;}
.x8{left:171.814950px;}
.x12{left:178.501050px;}
.x5{left:182.170350px;}
.x9{left:185.520300px;}
.x20{left:187.052400px;}
.x38{left:189.239363px;}
.x3a{left:192.998269px;}
.x2f{left:196.700317px;}
.xa{left:198.579300px;}
.x2a{left:207.310664px;}
.x31{left:225.945078px;}
.x2b{left:241.054298px;}
.x14{left:250.165350px;}
.x37{left:253.722956px;}
.x1a{left:270.135150px;}
.x32{left:273.932898px;}
.x39{left:282.667800px;}
.x29{left:285.300750px;}
.xc{left:295.930800px;}
.xb{left:299.490900px;}
.x6{left:302.077950px;}
.x2c{left:319.895278px;}
.x36{left:333.495300px;}
.x15{left:338.162550px;}
.x30{left:348.930535px;}
.x1b{left:358.132200px;}
.xd{left:376.586850px;}
.xe{left:393.282150px;}
.x3b{left:411.256050px;}
.x35{left:416.261100px;}
.x16{left:426.159750px;}
.x2e{left:438.982200px;}
.x1c{left:446.129400px;}
.xf{left:491.376900px;}
.x17{left:514.156950px;}
.x1d{left:534.126600px;}
.x3c{left:553.449450px;}
.x10{left:571.409400px;}
.x11{left:587.985150px;}
.x18{left:602.154000px;}
.x2{left:603.664350px;}
.x1e{left:622.123650px;}
@media print{
.v8{vertical-align:-45.513596pt;}
.v3{vertical-align:-19.733333pt;}
.v5{vertical-align:-2.981933pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.732800pt;}
.v1{vertical-align:2.666667pt;}
.v7{vertical-align:6.074524pt;}
.v9{vertical-align:10.698415pt;}
.va{vertical-align:18.722226pt;}
.v2{vertical-align:23.680000pt;}
.v4{vertical-align:64.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000533pt;}
.ls13{letter-spacing:0.014400pt;}
.ls14{letter-spacing:0.014933pt;}
.lsd{letter-spacing:0.115200pt;}
.lsc{letter-spacing:0.115733pt;}
.ls8{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.253333pt;}
.ls11{letter-spacing:0.299200pt;}
.ls9{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.506667pt;}
.ls3{letter-spacing:0.640000pt;}
.ls12{letter-spacing:1.293333pt;}
.lsf{letter-spacing:3.200000pt;}
.ls5{letter-spacing:3.730963pt;}
.ls0{letter-spacing:3.733333pt;}
.lsb{letter-spacing:4.800000pt;}
.ls16{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls7{letter-spacing:6.400000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls15{letter-spacing:17.600000pt;}
.ws2a{word-spacing:-32.090667pt;}
.ws27{word-spacing:-24.384000pt;}
.ws25{word-spacing:-18.368000pt;}
.ws4{word-spacing:-18.304000pt;}
.ws28{word-spacing:-18.288000pt;}
.ws0{word-spacing:-17.984000pt;}
.ws6{word-spacing:-16.485333pt;}
.ws3{word-spacing:-15.808000pt;}
.ws2{word-spacing:-14.986667pt;}
.ws29{word-spacing:-14.490667pt;}
.ws26{word-spacing:-14.237333pt;}
.wsa{word-spacing:-12.514667pt;}
.ws5{word-spacing:-10.790400pt;}
.ws1e{word-spacing:-0.045332pt;}
.ws1{word-spacing:0.000000pt;}
.ws21{word-spacing:12.647702pt;}
.ws16{word-spacing:12.650624pt;}
.ws1c{word-spacing:12.693035pt;}
.ws13{word-spacing:15.225930pt;}
.ws19{word-spacing:15.276974pt;}
.ws22{word-spacing:27.970009pt;}
.ws15{word-spacing:35.421747pt;}
.ws1b{word-spacing:35.540497pt;}
.ws20{word-spacing:42.295005pt;}
.ws1d{word-spacing:43.292315pt;}
.ws7{word-spacing:49.802133pt;}
.ws14{word-spacing:64.337459pt;}
.ws1a{word-spacing:64.553148pt;}
.ws9{word-spacing:104.749333pt;}
.ws24{word-spacing:127.474334pt;}
.ws8{word-spacing:131.416000pt;}
.ws12{word-spacing:145.030368pt;}
.ws18{word-spacing:145.516576pt;}
.wsc{word-spacing:174.106667pt;}
.wsb{word-spacing:174.107259pt;}
.ws11{word-spacing:189.759360pt;}
.ws17{word-spacing:190.395520pt;}
.wsd{word-spacing:241.319704pt;}
.wsf{word-spacing:241.320296pt;}
.wse{word-spacing:310.372148pt;}
.ws10{word-spacing:310.372741pt;}
.ws23{word-spacing:458.989200pt;}
.ws1f{word-spacing:646.347458pt;}
._24{margin-left:-95.557392pt;}
._26{margin-left:-87.244125pt;}
._22{margin-left:-69.081443pt;}
._8{margin-left:-18.944000pt;}
._17{margin-left:-17.402667pt;}
._21{margin-left:-16.485333pt;}
._32{margin-left:-14.373333pt;}
._13{margin-left:-13.350933pt;}
._2f{margin-left:-12.440000pt;}
._1f{margin-left:-10.896000pt;}
._6{margin-left:-9.333333pt;}
._1e{margin-left:-8.200000pt;}
._2{margin-left:-6.533333pt;}
._3{margin-left:-5.232000pt;}
._0{margin-left:-3.845333pt;}
._1{margin-left:-2.426667pt;}
._4{margin-left:-1.066667pt;}
._5{width:0.906667pt;}
._f{width:1.898667pt;}
._b{width:2.805333pt;}
._e{width:3.850667pt;}
._a{width:5.365333pt;}
._9{width:6.400000pt;}
._c{width:7.861333pt;}
._7{width:9.076741pt;}
._d{width:10.112000pt;}
._10{width:11.136000pt;}
._11{width:12.282667pt;}
._14{width:13.354667pt;}
._15{width:15.146667pt;}
._16{width:16.293333pt;}
._31{width:19.984000pt;}
._30{width:20.880000pt;}
._20{width:34.598400pt;}
._12{width:50.598400pt;}
._2d{width:58.025301pt;}
._27{width:64.382640pt;}
._18{width:89.803733pt;}
._2c{width:91.525846pt;}
._28{width:115.508381pt;}
._2b{width:117.448531pt;}
._19{width:119.735467pt;}
._1d{width:121.437867pt;}
._29{width:122.427847pt;}
._1a{width:133.070933pt;}
._1b{width:137.277867pt;}
._2a{width:141.183695pt;}
._1c{width:146.398933pt;}
._2e{width:150.457793pt;}
._23{width:168.976192pt;}
._25{width:173.629814pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:45.180800pt;}
.fsb{font-size:45.332267pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y10c{bottom:1.219333pt;}
.y105{bottom:6.310133pt;}
.yee{bottom:6.625200pt;}
.y104{bottom:30.428800pt;}
.yfb{bottom:44.326933pt;}
.yfc{bottom:61.825188pt;}
.yfd{bottom:79.323443pt;}
.y1{bottom:95.855600pt;}
.yfe{bottom:96.209713pt;}
.yff{bottom:113.537971pt;}
.y100{bottom:129.993584pt;}
.y101{bottom:146.279201pt;}
.y3e{bottom:152.722800pt;}
.yce{bottom:153.833333pt;}
.yb3{bottom:155.474267pt;}
.y13f{bottom:157.390933pt;}
.y74{bottom:157.656133pt;}
.yf9{bottom:159.184133pt;}
.y145{bottom:161.433333pt;}
.ye0{bottom:161.616533pt;}
.y1d{bottom:162.973067pt;}
.y102{bottom:163.777456pt;}
.y165{bottom:164.274267pt;}
.y5f{bottom:167.389467pt;}
.y187{bottom:168.894267pt;}
.y3d{bottom:172.322800pt;}
.ycd{bottom:173.033333pt;}
.yb2{bottom:174.674267pt;}
.y144{bottom:180.633333pt;}
.y103{bottom:181.366375pt;}
.y164{bottom:181.874267pt;}
.y5e{bottom:182.056133pt;}
.y1c{bottom:182.973067pt;}
.y186{bottom:186.627600pt;}
.y13b{bottom:186.931910pt;}
.y10b{bottom:188.062667pt;}
.y155{bottom:189.874267pt;}
.yed{bottom:189.930667pt;}
.ycc{bottom:192.233333pt;}
.yb1{bottom:193.874267pt;}
.y5d{bottom:196.722800pt;}
.y163{bottom:199.474267pt;}
.y131{bottom:199.647610pt;}
.y143{bottom:199.833333pt;}
.y93{bottom:199.843867pt;}
.y73{bottom:201.656133pt;}
.y1b{bottom:202.973067pt;}
.y108{bottom:203.704962pt;}
.y185{bottom:204.360933pt;}
.y154{bottom:209.074267pt;}
.y132{bottom:211.026009pt;}
.ycb{bottom:211.033333pt;}
.y5c{bottom:211.389467pt;}
.y3c{bottom:211.474267pt;}
.y10a{bottom:213.066075pt;}
.y10d{bottom:213.071067pt;}
.yb0{bottom:213.074267pt;}
.y12f{bottom:216.375217pt;}
.y162{bottom:217.074267pt;}
.y92{bottom:218.643867pt;}
.y142{bottom:219.033333pt;}
.yec{bottom:220.162267pt;}
.y106{bottom:221.928533pt;}
.y184{bottom:222.094267pt;}
.y133{bottom:222.404408pt;}
.y119{bottom:222.823867pt;}
.y1a{bottom:222.973067pt;}
.y5b{bottom:226.056133pt;}
.y153{bottom:228.274267pt;}
.y12d{bottom:228.422267pt;}
.yca{bottom:229.833333pt;}
.ye1{bottom:230.653867pt;}
.y3b{bottom:230.674267pt;}
.yaf{bottom:232.274267pt;}
.y134{bottom:233.114156pt;}
.y161{bottom:234.674267pt;}
.y91{bottom:237.443867pt;}
.y10e{bottom:237.618489pt;}
.y141{bottom:238.233333pt;}
.y183{bottom:239.827600pt;}
.y5a{bottom:240.722800pt;}
.y118{bottom:242.158400pt;}
.y19{bottom:242.973067pt;}
.y135{bottom:244.492555pt;}
.yaa{bottom:245.656133pt;}
.ye2{bottom:245.823320pt;}
.y152{bottom:247.474267pt;}
.yc9{bottom:248.633333pt;}
.y3a{bottom:249.874267pt;}
.yae{bottom:251.474267pt;}
.y160{bottom:252.274267pt;}
.ya1{bottom:255.389467pt;}
.y136{bottom:255.870954pt;}
.y90{bottom:256.243867pt;}
.y140{bottom:257.433333pt;}
.y182{bottom:257.560933pt;}
.y109{bottom:258.115015pt;}
.y59{bottom:260.322800pt;}
.ye3{bottom:260.676508pt;}
.y117{bottom:261.203867pt;}
.y10f{bottom:261.406596pt;}
.y18{bottom:262.973067pt;}
.y13d{bottom:263.791467pt;}
.y151{bottom:266.674267pt;}
.y137{bottom:267.249353pt;}
.yc8{bottom:267.433333pt;}
.y39{bottom:269.074267pt;}
.y15f{bottom:269.874267pt;}
.ya0{bottom:270.056133pt;}
.yad{bottom:270.674267pt;}
.y8f{bottom:275.043867pt;}
.y181{bottom:275.294267pt;}
.ye4{bottom:276.173523pt;}
.ya9{bottom:276.633333pt;}
.y13c{bottom:277.846400pt;}
.y138{bottom:277.959101pt;}
.y116{bottom:280.852133pt;}
.y17{bottom:282.973067pt;}
.y150{bottom:285.874267pt;}
.y110{bottom:285.954018pt;}
.yc7{bottom:286.233333pt;}
.y15e{bottom:287.474267pt;}
.y38{bottom:288.274267pt;}
.y139{bottom:289.337500pt;}
.y9f{bottom:289.656133pt;}
.ye5{bottom:291.342976pt;}
.y180{bottom:293.027600pt;}
.y12e{bottom:293.338073pt;}
.y8e{bottom:293.843867pt;}
.y58{bottom:295.207600pt;}
.ya8{bottom:295.833333pt;}
.yac{bottom:297.433333pt;}
.y115{bottom:298.778400pt;}
.y130{bottom:298.936607pt;}
.y9e{bottom:299.389467pt;}
.y13a{bottom:300.715899pt;}
.y16{bottom:302.973067pt;}
.yc6{bottom:305.033333pt;}
.y14f{bottom:305.074267pt;}
.ye6{bottom:306.196164pt;}
.y37{bottom:307.474267pt;}
.y111{bottom:309.492798pt;}
.y17f{bottom:310.760933pt;}
.y8d{bottom:312.643867pt;}
.y9d{bottom:314.056133pt;}
.y57{bottom:314.407600pt;}
.ya7{bottom:315.033333pt;}
.yab{bottom:316.633333pt;}
.y114{bottom:316.993867pt;}
.ye7{bottom:321.365618pt;}
.y15d{bottom:322.674267pt;}
.y15{bottom:322.973067pt;}
.yc5{bottom:323.833333pt;}
.y14e{bottom:324.274267pt;}
.y36{bottom:326.674267pt;}
.y17e{bottom:328.494267pt;}
.y9c{bottom:328.722800pt;}
.y8c{bottom:331.443867pt;}
.y56{bottom:333.607600pt;}
.y112{bottom:334.040220pt;}
.ya6{bottom:334.233333pt;}
.ye8{bottom:336.862632pt;}
.y15c{bottom:340.274267pt;}
.y107{bottom:340.370413pt;}
.yc4{bottom:342.633333pt;}
.y14{bottom:342.973067pt;}
.y9b{bottom:343.389467pt;}
.y14d{bottom:343.474267pt;}
.y35{bottom:345.874267pt;}
.y17d{bottom:346.227600pt;}
.y8b{bottom:350.243867pt;}
.ye9{bottom:352.359647pt;}
.y55{bottom:352.807600pt;}
.ya5{bottom:353.433333pt;}
.y13e{bottom:353.929467pt;}
.y113{bottom:357.828327pt;}
.y15b{bottom:357.874267pt;}
.yc3{bottom:361.433333pt;}
.y14c{bottom:362.674267pt;}
.y13{bottom:362.973067pt;}
.y9a{bottom:362.989467pt;}
.y17c{bottom:363.960933pt;}
.y34{bottom:365.074267pt;}
.yea{bottom:366.885274pt;}
.y8a{bottom:369.043867pt;}
.y54{bottom:372.007600pt;}
.ya4{bottom:372.633333pt;}
.y99{bottom:372.722800pt;}
.y15a{bottom:375.474267pt;}
.yc2{bottom:380.233333pt;}
.y17b{bottom:381.694267pt;}
.y14b{bottom:381.874267pt;}
.yeb{bottom:382.382288pt;}
.y12{bottom:382.973067pt;}
.y12a{bottom:384.072695pt;}
.y33{bottom:384.274267pt;}
.y89{bottom:387.843867pt;}
.ya3{bottom:391.833333pt;}
.y98{bottom:392.322800pt;}
.y159{bottom:393.074267pt;}
.y121{bottom:396.799729pt;}
.y53{bottom:398.766667pt;}
.yc1{bottom:399.033333pt;}
.yf8{bottom:399.276533pt;}
.y17a{bottom:399.427600pt;}
.y14a{bottom:401.074267pt;}
.y97{bottom:402.056133pt;}
.y11{bottom:402.973067pt;}
.y32{bottom:403.474267pt;}
.y88{bottom:406.643867pt;}
.y122{bottom:409.515430pt;}
.y11c{bottom:409.526763pt;}
.ydf{bottom:409.616533pt;}
.y158{bottom:410.674267pt;}
.ya2{bottom:411.033333pt;}
.y11f{bottom:412.201367pt;}
.y96{bottom:416.722800pt;}
.y11e{bottom:417.550574pt;}
.yc0{bottom:417.833333pt;}
.yf7{bottom:418.476533pt;}
.y149{bottom:420.274267pt;}
.y123{bottom:422.231131pt;}
.y31{bottom:422.674267pt;}
.y10{bottom:422.973067pt;}
.y87{bottom:425.443867pt;}
.y157{bottom:428.274267pt;}
.yde{bottom:428.816533pt;}
.y72{bottom:430.233333pt;}
.y95{bottom:431.389467pt;}
.y11b{bottom:432.952212pt;}
.y179{bottom:434.760933pt;}
.y124{bottom:434.946832pt;}
.y11a{bottom:436.295467pt;}
.ybf{bottom:436.633333pt;}
.yf6{bottom:437.676533pt;}
.y148{bottom:439.474267pt;}
.y30{bottom:441.874267pt;}
.yf{bottom:442.973067pt;}
.y86{bottom:444.243867pt;}
.y125{bottom:446.993882pt;}
.ydd{bottom:448.016533pt;}
.y71{bottom:449.433333pt;}
.y94{bottom:450.989467pt;}
.y156{bottom:453.433333pt;}
.y12c{bottom:454.700400pt;}
.ybe{bottom:455.433333pt;}
.yf5{bottom:456.876533pt;}
.y147{bottom:458.674267pt;}
.y126{bottom:459.709582pt;}
.y2f{bottom:461.074267pt;}
.y178{bottom:461.520000pt;}
.ye{bottom:462.973067pt;}
.y85{bottom:463.043867pt;}
.ydc{bottom:467.216533pt;}
.y70{bottom:468.633333pt;}
.y12b{bottom:468.755333pt;}
.y127{bottom:472.425283pt;}
.y52{bottom:473.966667pt;}
.ybd{bottom:474.233333pt;}
.yf4{bottom:476.076533pt;}
.y2e{bottom:480.274267pt;}
.y177{bottom:480.720000pt;}
.y84{bottom:481.843867pt;}
.yd{bottom:482.973067pt;}
.y128{bottom:485.140984pt;}
.y11d{bottom:485.152317pt;}
.y146{bottom:485.433333pt;}
.ydb{bottom:486.416533pt;}
.y6f{bottom:487.833333pt;}
.y120{bottom:489.164223pt;}
.y51{bottom:492.900000pt;}
.ybc{bottom:493.033333pt;}
.yf3{bottom:495.276533pt;}
.y129{bottom:497.856685pt;}
.y2d{bottom:499.474267pt;}
.y176{bottom:499.920000pt;}
.y83{bottom:500.643867pt;}
.yc{bottom:502.973067pt;}
.yda{bottom:505.616533pt;}
.y6e{bottom:507.033333pt;}
.y50{bottom:511.833333pt;}
.yf2{bottom:514.476533pt;}
.y2c{bottom:518.674267pt;}
.y82{bottom:519.443867pt;}
.yb{bottom:522.973067pt;}
.yd9{bottom:524.816533pt;}
.y6d{bottom:526.233333pt;}
.ybb{bottom:530.633333pt;}
.y4f{bottom:530.766667pt;}
.yf1{bottom:533.676533pt;}
.y2b{bottom:537.874267pt;}
.y81{bottom:538.243867pt;}
.ya{bottom:542.973067pt;}
.yd8{bottom:544.016533pt;}
.y6c{bottom:545.433333pt;}
.yba{bottom:549.433333pt;}
.y4e{bottom:549.700000pt;}
.yf0{bottom:552.876533pt;}
.y80{bottom:557.043867pt;}
.y2a{bottom:557.074267pt;}
.y175{bottom:559.120000pt;}
.yd7{bottom:563.216533pt;}
.y6b{bottom:564.633333pt;}
.yb9{bottom:568.233333pt;}
.y4d{bottom:568.633333pt;}
.y9{bottom:570.532000pt;}
.y7f{bottom:575.843867pt;}
.y29{bottom:576.274267pt;}
.yd6{bottom:582.416533pt;}
.y6a{bottom:583.833333pt;}
.yb8{bottom:587.033333pt;}
.y4c{bottom:587.566667pt;}
.y174{bottom:589.520000pt;}
.y7e{bottom:594.643867pt;}
.y28{bottom:595.474267pt;}
.y69{bottom:603.033333pt;}
.yb7{bottom:605.833333pt;}
.y4b{bottom:606.500000pt;}
.y173{bottom:607.120000pt;}
.y7d{bottom:613.443867pt;}
.y27{bottom:614.674267pt;}
.yef{bottom:618.035600pt;}
.y68{bottom:622.233333pt;}
.yb6{bottom:624.633333pt;}
.y172{bottom:624.720000pt;}
.y4a{bottom:625.433333pt;}
.yd5{bottom:628.443600pt;}
.y7c{bottom:632.243867pt;}
.y26{bottom:633.874267pt;}
.y67{bottom:641.433333pt;}
.yfa{bottom:641.940000pt;}
.y171{bottom:642.320000pt;}
.yb5{bottom:643.833333pt;}
.y49{bottom:644.366667pt;}
.yd4{bottom:644.443600pt;}
.y18a{bottom:645.520000pt;}
.y25{bottom:653.074267pt;}
.y170{bottom:659.920000pt;}
.y66{bottom:660.633333pt;}
.y189{bottom:661.520000pt;}
.yb4{bottom:663.033333pt;}
.y48{bottom:663.300000pt;}
.y7b{bottom:668.777200pt;}
.yd3{bottom:669.851733pt;}
.y24{bottom:672.274267pt;}
.y16f{bottom:677.520000pt;}
.y65{bottom:679.833333pt;}
.y47{bottom:682.233333pt;}
.y8{bottom:684.398800pt;}
.yd2{bottom:685.851733pt;}
.y23{bottom:691.474267pt;}
.y188{bottom:693.520000pt;}
.y16e{bottom:695.120000pt;}
.y7a{bottom:697.212933pt;}
.y64{bottom:699.033333pt;}
.y46{bottom:701.166667pt;}
.y22{bottom:710.674267pt;}
.yd1{bottom:711.509867pt;}
.y7{bottom:711.598800pt;}
.y16d{bottom:712.720000pt;}
.y63{bottom:718.233333pt;}
.y45{bottom:720.100000pt;}
.y79{bottom:725.476133pt;}
.yd0{bottom:727.509867pt;}
.y16c{bottom:730.320000pt;}
.y21{bottom:737.433333pt;}
.y6{bottom:738.798800pt;}
.y44{bottom:739.033333pt;}
.y16b{bottom:747.920000pt;}
.y78{bottom:753.739200pt;}
.y62{bottom:756.633333pt;}
.y43{bottom:757.966667pt;}
.ycf{bottom:758.233333pt;}
.y16a{bottom:765.520000pt;}
.y61{bottom:775.833333pt;}
.y42{bottom:776.900000pt;}
.y77{bottom:781.224267pt;}
.y169{bottom:783.120000pt;}
.y5{bottom:787.920000pt;}
.y60{bottom:795.033333pt;}
.y41{bottom:795.833333pt;}
.y168{bottom:800.720000pt;}
.y4{bottom:803.920000pt;}
.y76{bottom:805.996533pt;}
.y20{bottom:814.233333pt;}
.y40{bottom:814.766667pt;}
.y167{bottom:818.320000pt;}
.y75{bottom:823.596533pt;}
.y1f{bottom:833.433333pt;}
.y3f{bottom:833.700000pt;}
.y166{bottom:835.920000pt;}
.y3{bottom:837.520000pt;}
.y1e{bottom:852.633333pt;}
.y2{bottom:853.520000pt;}
.h9{height:30.875000pt;}
.hf{height:32.710899pt;}
.h14{height:32.820561pt;}
.h12{height:33.207966pt;}
.h16{height:35.052028pt;}
.h10{height:35.692832pt;}
.h15{height:35.812491pt;}
.h8{height:36.020833pt;}
.h17{height:38.487094pt;}
.h7{height:38.687500pt;}
.h2{height:41.166667pt;}
.h18{height:44.561618pt;}
.h1b{height:45.286458pt;}
.hc{height:46.312500pt;}
.ha{height:48.885417pt;}
.h4{height:49.815104pt;}
.h3{height:51.458333pt;}
.hd{height:54.343750pt;}
.hb{height:56.604167pt;}
.h1a{height:57.209321pt;}
.h6{height:61.750000pt;}
.h5{height:87.479167pt;}
.he{height:120.604167pt;}
.h19{height:184.105333pt;}
.h11{height:200.000000pt;}
.h13{height:221.334667pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w4{width:424.001333pt;}
.w2{width:430.866667pt;}
.w3{width:481.333333pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.x2d{left:5.563467pt;}
.x26{left:31.413168pt;}
.x25{left:32.723150pt;}
.x24{left:33.860765pt;}
.x23{left:35.136274pt;}
.x22{left:38.146933pt;}
.x21{left:56.022400pt;}
.x27{left:76.569867pt;}
.x28{left:80.968133pt;}
.x3{left:96.031467pt;}
.x13{left:103.513467pt;}
.x4{left:114.929067pt;}
.x1{left:118.292267pt;}
.x19{left:122.129200pt;}
.x34{left:126.849851pt;}
.x1f{left:128.595867pt;}
.x33{left:131.511630pt;}
.x7{left:133.826800pt;}
.x8{left:152.724400pt;}
.x12{left:158.667600pt;}
.x5{left:161.929200pt;}
.x9{left:164.906933pt;}
.x20{left:166.268800pt;}
.x38{left:168.212767pt;}
.x3a{left:171.554017pt;}
.x2f{left:174.844726pt;}
.xa{left:176.514933pt;}
.x2a{left:184.276146pt;}
.x31{left:200.840069pt;}
.x2b{left:214.270487pt;}
.x14{left:222.369200pt;}
.x37{left:225.531517pt;}
.x1a{left:240.120133pt;}
.x32{left:243.495910pt;}
.x39{left:251.260267pt;}
.x29{left:253.600667pt;}
.xc{left:263.049600pt;}
.xb{left:266.214133pt;}
.x6{left:268.513733pt;}
.x2c{left:284.351358pt;}
.x36{left:296.440267pt;}
.x15{left:300.588933pt;}
.x30{left:310.160475pt;}
.x1b{left:318.339733pt;}
.xd{left:334.743867pt;}
.xe{left:349.584133pt;}
.x3b{left:365.560933pt;}
.x35{left:370.009867pt;}
.x16{left:378.808667pt;}
.x2e{left:390.206400pt;}
.x1c{left:396.559467pt;}
.xf{left:436.779467pt;}
.x17{left:457.028400pt;}
.x1d{left:474.779200pt;}
.x3c{left:491.955067pt;}
.x10{left:507.919467pt;}
.x11{left:522.653467pt;}
.x18{left:535.248000pt;}
.x2{left:536.590533pt;}
.x1e{left:552.998800pt;}
}




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