
    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_b2cb6692e354da3f0cf599e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.148000;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_dc444e745c73807e35c6d3e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.094727;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_ec577e14c60fcc3b8ae1379b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.148000;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_65a111e4c8564862559f40c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_2a8e003b366995a7bfb41151.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005000;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_4ad87d44522f2d7e3c4ff345.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.094727;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_d844699ad139d56e2e4a9a51.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.148000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_220faf9bb40aceb81345a2d5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c489e5e425578ec6229fd90c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.136000;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.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);}
.v2{vertical-align:-67.824000px;}
.v4{vertical-align:-6.360000px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:6.480000px;}
.ls1b{letter-spacing:-0.316800px;}
.ls26{letter-spacing:-0.309600px;}
.ls14{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.268800px;}
.ls15{letter-spacing:-0.245400px;}
.ls28{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.206400px;}
.ls16{letter-spacing:-0.204600px;}
.ls20{letter-spacing:-0.204000px;}
.ls5{letter-spacing:-0.184200px;}
.ls1d{letter-spacing:-0.182400px;}
.ls13{letter-spacing:-0.180000px;}
.ls2{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.111000px;}
.ls25{letter-spacing:-0.085200px;}
.lsf{letter-spacing:-0.072000px;}
.lsb{letter-spacing:-0.061800px;}
.ls2c{letter-spacing:-0.054000px;}
.ls7{letter-spacing:-0.025200px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.036000px;}
.ls17{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.098400px;}
.ls1c{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.114600px;}
.ls24{letter-spacing:0.116400px;}
.ls27{letter-spacing:0.132000px;}
.ls2a{letter-spacing:0.132600px;}
.ls1e{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.162000px;}
.ls8{letter-spacing:0.175800px;}
.ls23{letter-spacing:0.202800px;}
.lse{letter-spacing:0.212400px;}
.ls2b{letter-spacing:0.215280px;}
.ls1{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.225600px;}
.ls1a{letter-spacing:0.265200px;}
.lsa{letter-spacing:0.291600px;}
.ls1f{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.417600px;}
.ls22{letter-spacing:29.808000px;}
.ls21{letter-spacing:29.880000px;}
.ls11{letter-spacing:117.509184px;}
.ls10{letter-spacing:117.588240px;}
.ls29{letter-spacing:445.843200px;}
.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;}
}
.wsa{word-spacing:-70.577400px;}
.ws0{word-spacing:-68.739840px;}
.wse{word-spacing:-31.488000px;}
.ws8{word-spacing:-31.487040px;}
.ws10{word-spacing:-31.474800px;}
.ws13{word-spacing:-31.299840px;}
.ws5{word-spacing:-31.262400px;}
.wsb{word-spacing:-31.237200px;}
.wsd{word-spacing:-31.200600px;}
.wsf{word-spacing:-31.056000px;}
.wsc{word-spacing:-30.993600px;}
.ws25{word-spacing:-29.967600px;}
.ws26{word-spacing:-29.918640px;}
.ws29{word-spacing:-29.802240px;}
.ws2a{word-spacing:-29.764800px;}
.ws27{word-spacing:-29.717040px;}
.ws28{word-spacing:-29.492640px;}
.ws15{word-spacing:-28.080000px;}
.ws9{word-spacing:-24.897600px;}
.ws19{word-spacing:-21.191040px;}
.ws1a{word-spacing:-21.153600px;}
.ws6{word-spacing:-19.021800px;}
.ws7{word-spacing:-19.005600px;}
.ws2{word-spacing:-18.936000px;}
.ws12{word-spacing:-18.757440px;}
.ws3{word-spacing:-18.720000px;}
.ws11{word-spacing:-18.648000px;}
.ws4{word-spacing:-18.576000px;}
.ws23{word-spacing:-17.596800px;}
.ws24{word-spacing:-17.280000px;}
.ws22{word-spacing:-14.227200px;}
.ws2d{word-spacing:-13.132800px;}
.ws2e{word-spacing:-13.049400px;}
.ws2c{word-spacing:-12.954240px;}
.ws2b{word-spacing:-12.916800px;}
.ws17{word-spacing:-1.050240px;}
.ws1e{word-spacing:-0.462960px;}
.ws1{word-spacing:0.000000px;}
.ws1b{word-spacing:0.005760px;}
.ws1c{word-spacing:0.141840px;}
.ws18{word-spacing:0.156816px;}
.ws1f{word-spacing:0.173520px;}
.ws14{word-spacing:0.648000px;}
.ws16{word-spacing:0.654264px;}
.ws20{word-spacing:0.912960px;}
.ws1d{word-spacing:0.916920px;}
.ws21{word-spacing:1.486080px;}
._d{margin-left:-3.181824px;}
._1{margin-left:-2.115072px;}
._0{margin-left:-1.056960px;}
._2{width:1.202400px;}
._4{width:3.041280px;}
._e{width:4.285440px;}
._8{width:20.136000px;}
._7{width:22.657440px;}
._5{width:26.376000px;}
._f{width:32.170800px;}
._13{width:132.341760px;}
._15{width:161.752320px;}
._12{width:170.744400px;}
._14{width:172.771200px;}
._16{width:192.454560px;}
._10{width:204.228720px;}
._b{width:218.198592px;}
._c{width:227.858592px;}
._11{width:445.843200px;}
._9{width:919.137120px;}
._a{width:940.780320px;}
._6{width:1230.265344px;}
._3{width:3488.424000px;}
.fc7{color:rgb(0,105,180);}
.fc5{color:transparent;}
.fc8{color:rgb(0,48,93);}
.fc3{color:rgb(0,1,87);}
.fc4{color:rgb(154,197,251);}
.fc2{color:rgb(0,4,136);}
.fc6{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1f{font-size:42.480000px;}
.fs1d{font-size:45.360000px;}
.fs1e{font-size:45.504000px;}
.fs1b{font-size:49.680000px;}
.fs1c{font-size:49.824000px;}
.fs16{font-size:54.720000px;}
.fs17{font-size:54.864000px;}
.fs15{font-size:59.760000px;}
.fs14{font-size:67.680000px;}
.fs18{font-size:67.824000px;}
.fs3{font-size:72.000000px;}
.fs11{font-size:72.144000px;}
.fs8{font-size:72.720000px;}
.fs13{font-size:81.360000px;}
.fs12{font-size:81.504000px;}
.fsf{font-size:84.240000px;}
.fs10{font-size:95.040000px;}
.fsa{font-size:95.760000px;}
.fs9{font-size:95.904000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fs1a{font-size:114.480000px;}
.fs19{font-size:114.624000px;}
.fs2{font-size:120.240000px;}
.fs7{font-size:120.384000px;}
.fsb{font-size:121.104000px;}
.fs6{font-size:192.240000px;}
.fse{font-size:192.384000px;}
.fs20{font-size:217.440000px;}
.fs0{font-size:264.240000px;}
.fs1{font-size:264.384000px;}
.fsc{font-size:272.160000px;}
.fsd{font-size:272.304000px;}
.y0{bottom:0.000000px;}
.y4{bottom:24.876000px;}
.ye6{bottom:74.376000px;}
.y3a{bottom:78.192000px;}
.y6e{bottom:91.800000px;}
.y84{bottom:92.052000px;}
.y6c{bottom:94.212000px;}
.ye5{bottom:95.976000px;}
.y18{bottom:97.596000px;}
.y39{bottom:99.792000px;}
.y2f{bottom:102.960000px;}
.y12b{bottom:103.176000px;}
.ye4{bottom:117.576000px;}
.y17{bottom:119.196000px;}
.y127{bottom:138.348000px;}
.ye3{bottom:139.176000px;}
.yd2{bottom:139.896000px;}
.y64{bottom:140.508000px;}
.y4f{bottom:140.616000px;}
.y129{bottom:140.688000px;}
.y16{bottom:140.796000px;}
.yc0{bottom:146.160000px;}
.y83{bottom:154.950000px;}
.y63{bottom:163.005000px;}
.y100{bottom:174.930000px;}
.yd1{bottom:175.530000px;}
.y5b{bottom:178.125000px;}
.ybf{bottom:178.560000px;}
.y62{bottom:185.550000px;}
.y117{bottom:187.890000px;}
.y2d{bottom:188.130000px;}
.yaf{bottom:188.670000px;}
.y4e{bottom:189.210000px;}
.yff{bottom:189.870000px;}
.y15{bottom:197.130000px;}
.ye2{bottom:198.030000px;}
.y5a{bottom:200.625000px;}
.yfe{bottom:204.810000px;}
.y23{bottom:206.025000px;}
.yc2{bottom:209.910000px;}
.ybe{bottom:210.960000px;}
.y61{bottom:220.350000px;}
.y59{bottom:223.125000px;}
.y96{bottom:224.385000px;}
.y14{bottom:229.575000px;}
.yc1{bottom:231.510000px;}
.ye1{bottom:232.455000px;}
.yfd{bottom:234.870000px;}
.y124{bottom:235.515000px;}
.y4d{bottom:237.810000px;}
.y81{bottom:241.920000px;}
.ybd{bottom:243.360000px;}
.yd0{bottom:244.695000px;}
.y95{bottom:244.725000px;}
.y58{bottom:245.625000px;}
.y112{bottom:247.830000px;}
.y123{bottom:248.295000px;}
.yfc{bottom:249.840000px;}
.y12c{bottom:257.940000px;}
.y80{bottom:258.120000px;}
.y13{bottom:261.975000px;}
.yae{bottom:264.630000px;}
.yfb{bottom:264.780000px;}
.ye0{bottom:266.835000px;}
.y57{bottom:269.205000px;}
.y2c{bottom:269.670000px;}
.ybc{bottom:275.790000px;}
.y105{bottom:277.530000px;}
.y11c{bottom:278.565000px;}
.ycf{bottom:280.695000px;}
.y122{bottom:281.370000px;}
.y9f{bottom:283.500000px;}
.y12a{bottom:285.375000px;}
.y94{bottom:285.630000px;}
.yad{bottom:286.230000px;}
.y4c{bottom:286.455000px;}
.y25{bottom:287.205000px;}
.y7f{bottom:290.880000px;}
.y11b{bottom:291.705000px;}
.y104{bottom:292.470000px;}
.y116{bottom:292.860000px;}
.y12{bottom:294.375000px;}
.yfa{bottom:294.660000px;}
.y121{bottom:294.690000px;}
.ydf{bottom:301.215000px;}
.y9e{bottom:304.020000px;}
.y11a{bottom:306.825000px;}
.y7e{bottom:307.080000px;}
.y115{bottom:307.800000px;}
.yf9{bottom:309.780000px;}
.yce{bottom:316.695000px;}
.y103{bottom:322.530000px;}
.y9d{bottom:324.360000px;}
.yf8{bottom:324.720000px;}
.y93{bottom:326.490000px;}
.y11{bottom:326.775000px;}
.y24{bottom:331.380000px;}
.y4b{bottom:335.055000px;}
.yde{bottom:335.595000px;}
.y33{bottom:335.805000px;}
.y120{bottom:335.910000px;}
.y102{bottom:337.470000px;}
.y114{bottom:337.680000px;}
.y6b{bottom:341.130000px;}
.yac{bottom:342.615000px;}
.y43{bottom:343.770000px;}
.y9c{bottom:344.880000px;}
.y92{bottom:346.830000px;}
.y11f{bottom:349.230000px;}
.y38{bottom:350.670000px;}
.y101{bottom:352.410000px;}
.ycd{bottom:352.695000px;}
.y113{bottom:352.800000px;}
.ybb{bottom:354.090000px;}
.y119{bottom:354.420000px;}
.yf7{bottom:354.600000px;}
.y7d{bottom:356.040000px;}
.y32{bottom:357.405000px;}
.y10{bottom:359.175000px;}
.y6a{bottom:363.630000px;}
.y9b{bottom:365.220000px;}
.y118{bottom:367.740000px;}
.yf6{bottom:369.540000px;}
.ydd{bottom:369.975000px;}
.y7c{bottom:372.450000px;}
.yab{bottom:375.015000px;}
.y22{bottom:382.065000px;}
.y111{bottom:382.680000px;}
.y4a{bottom:383.655000px;}
.yf5{bottom:384.660000px;}
.y11e{bottom:385.305000px;}
.y9a{bottom:385.740000px;}
.y69{bottom:386.130000px;}
.yba{bottom:386.490000px;}
.y91{bottom:387.690000px;}
.ycc{bottom:388.725000px;}
.yf{bottom:391.605000px;}
.y42{bottom:393.270000px;}
.y110{bottom:397.620000px;}
.y11d{bottom:398.625000px;}
.ydc{bottom:404.385000px;}
.y99{bottom:406.080000px;}
.y53{bottom:406.185000px;}
.yaa{bottom:407.415000px;}
.y90{bottom:408.210000px;}
.y68{bottom:408.630000px;}
.ya8{bottom:412.275000px;}
.y125{bottom:412.305000px;}
.yf4{bottom:414.570000px;}
.y21{bottom:418.065000px;}
.yb9{bottom:418.890000px;}
.y7b{bottom:421.410000px;}
.ye{bottom:424.005000px;}
.ycb{bottom:424.725000px;}
.y10f{bottom:427.680000px;}
.y8f{bottom:428.580000px;}
.y52{bottom:428.685000px;}
.yf3{bottom:429.510000px;}
.y67{bottom:431.130000px;}
.y7a{bottom:437.790000px;}
.ydb{bottom:438.765000px;}
.ya9{bottom:439.815000px;}
.y41{bottom:442.770000px;}
.y126{bottom:444.600000px;}
.yb0{bottom:444.675000px;}
.y8e{bottom:449.100000px;}
.y51{bottom:451.185000px;}
.yb8{bottom:451.335000px;}
.y66{bottom:453.675000px;}
.y20{bottom:454.065000px;}
.y10d{bottom:455.910000px;}
.yd{bottom:456.405000px;}
.yca{bottom:460.725000px;}
.y31{bottom:465.405000px;}
.y79{bottom:470.370000px;}
.y10c{bottom:470.880000px;}
.y37{bottom:471.315000px;}
.ya7{bottom:472.215000px;}
.yda{bottom:473.145000px;}
.y49{bottom:480.885000px;}
.y50{bottom:481.425000px;}
.y65{bottom:483.480000px;}
.yb7{bottom:483.735000px;}
.y10b{bottom:486.000000px;}
.y78{bottom:486.750000px;}
.yc{bottom:488.805000px;}
.y8d{bottom:489.780000px;}
.y1f{bottom:490.110000px;}
.y40{bottom:492.300000px;}
.yc9{bottom:496.725000px;}
.ya6{bottom:504.645000px;}
.yd9{bottom:507.705000px;}
.y10a{bottom:508.065000px;}
.y8c{bottom:510.300000px;}
.yb{bottom:521.205000px;}
.y109{bottom:521.565000px;}
.y128{bottom:524.910000px;}
.y1e{bottom:526.110000px;}
.y36{bottom:528.915000px;}
.y48{bottom:529.485000px;}
.yc8{bottom:532.725000px;}
.y108{bottom:535.245000px;}
.y77{bottom:535.755000px;}
.ya5{bottom:537.045000px;}
.y3f{bottom:541.800000px;}
.yd8{bottom:542.085000px;}
.y2a{bottom:545.400000px;}
.y28{bottom:546.660000px;}
.y107{bottom:548.745000px;}
.y8b{bottom:551.160000px;}
.y76{bottom:552.135000px;}
.ya{bottom:553.650000px;}
.yf2{bottom:557.790000px;}
.yb6{bottom:562.035000px;}
.y30{bottom:562.110000px;}
.y106{bottom:562.785000px;}
.yc7{bottom:568.770000px;}
.ya4{bottom:569.445000px;}
.y8a{bottom:571.500000px;}
.yf1{bottom:572.730000px;}
.y29{bottom:574.200000px;}
.y27{bottom:575.460000px;}
.yd7{bottom:576.510000px;}
.y47{bottom:578.085000px;}
.y9{bottom:586.050000px;}
.y35{bottom:586.515000px;}
.yf0{bottom:587.850000px;}
.y3e{bottom:591.300000px;}
.yb5{bottom:594.465000px;}
.y60{bottom:597.030000px;}
.y1d{bottom:598.110000px;}
.y75{bottom:601.095000px;}
.ya3{bottom:601.845000px;}
.y2b{bottom:602.460000px;}
.yc6{bottom:604.770000px;}
.y3{bottom:605.880000px;}
.y98{bottom:607.290000px;}
.yd6{bottom:610.890000px;}
.yef{bottom:611.850000px;}
.y89{bottom:612.390000px;}
.y74{bottom:617.475000px;}
.y8{bottom:618.450000px;}
.y5f{bottom:619.530000px;}
.y46{bottom:626.730000px;}
.yee{bottom:626.790000px;}
.yb4{bottom:626.865000px;}
.y97{bottom:627.630000px;}
.y88{bottom:632.730000px;}
.y1c{bottom:634.110000px;}
.ya2{bottom:634.245000px;}
.yc5{bottom:640.770000px;}
.y3d{bottom:640.800000px;}
.yed{bottom:641.910000px;}
.y5e{bottom:642.030000px;}
.y34{bottom:644.145000px;}
.yd5{bottom:645.270000px;}
.y73{bottom:650.055000px;}
.y7{bottom:650.850000px;}
.y26{bottom:651.420000px;}
.y87{bottom:653.250000px;}
.yb3{bottom:659.265000px;}
.y56{bottom:662.580000px;}
.y5d{bottom:664.530000px;}
.y72{bottom:666.435000px;}
.ya1{bottom:666.690000px;}
.yec{bottom:667.830000px;}
.y1b{bottom:670.140000px;}
.y45{bottom:675.330000px;}
.yc4{bottom:676.770000px;}
.yd4{bottom:679.650000px;}
.yeb{bottom:682.770000px;}
.y6{bottom:683.250000px;}
.y55{bottom:685.080000px;}
.y3c{bottom:690.330000px;}
.yb2{bottom:691.665000px;}
.y86{bottom:694.110000px;}
.yea{bottom:697.890000px;}
.ya0{bottom:699.090000px;}
.y5c{bottom:699.945000px;}
.yc3{bottom:712.770000px;}
.yd3{bottom:714.060000px;}
.y85{bottom:714.450000px;}
.y71{bottom:715.425000px;}
.y5{bottom:715.680000px;}
.ye9{bottom:720.105000px;}
.y44{bottom:723.930000px;}
.yb1{bottom:724.065000px;}
.y54{bottom:726.090000px;}
.y70{bottom:731.805000px;}
.ye8{bottom:735.045000px;}
.y10e{bottom:736.095000px;}
.y3b{bottom:739.830000px;}
.y1a{bottom:742.140000px;}
.y2{bottom:744.330000px;}
.ye7{bottom:750.165000px;}
.y6f{bottom:760.785000px;}
.y82{bottom:793.470000px;}
.y1{bottom:815.610000px;}
.y19{bottom:818.355000px;}
.y2e{bottom:995.400000px;}
.y6d{bottom:1051.665000px;}
.h2b{height:38.062080px;}
.h2c{height:38.571840px;}
.h29{height:40.642560px;}
.h2a{height:40.771584px;}
.h27{height:44.513280px;}
.h28{height:44.642304px;}
.h25{height:45.109440px;}
.h26{height:45.240192px;}
.h1c{height:49.685760px;}
.h1d{height:49.816512px;}
.h1b{height:51.035273px;}
.h1e{height:56.165760px;}
.h20{height:57.798984px;}
.h19{height:61.453440px;}
.h8{height:61.488281px;}
.h1f{height:61.584192px;}
.h5{height:65.376000px;}
.h15{height:65.506752px;}
.hb{height:66.029760px;}
.h2d{height:69.481758px;}
.h18{height:73.874880px;}
.h17{height:74.005632px;}
.h13{height:76.489920px;}
.h14{height:81.164531px;}
.hd{height:81.779414px;}
.hc{height:81.902391px;}
.hf{height:86.950080px;}
.h16{height:96.768000px;}
.h23{height:97.766367px;}
.h24{height:97.889344px;}
.h7{height:98.064000px;}
.h6{height:98.194752px;}
.h21{height:102.685430px;}
.h22{height:102.808406px;}
.h4{height:109.177920px;}
.ha{height:109.308672px;}
.he{height:109.962432px;}
.h9{height:174.553920px;}
.h12{height:174.684672px;}
.h2e{height:185.694609px;}
.h10{height:232.425703px;}
.h11{height:232.548680px;}
.h2{height:239.929920px;}
.h3{height:240.060672px;}
.h1a{height:812.880000px;}
.h1{height:918.000000px;}
.h0{height:918.360000px;}
.w3{width:1335.420000px;}
.w1{width:1632.750000px;}
.w2{width:1632.779976px;}
.w0{width:1632.780000px;}
.x6{left:-1673.490024px;}
.x9{left:-1664.715024px;}
.x7{left:-1543.530024px;}
.x8{left:-1535.610024px;}
.xa{left:-1442.130024px;}
.xb{left:-1411.170024px;}
.xd{left:-1021.785024px;}
.xc{left:-980.385024px;}
.x0{left:0.000000px;}
.x1{left:31.931976px;}
.x5{left:34.127976px;}
.xf{left:35.243976px;}
.x2{left:37.043976px;}
.x4{left:39.599976px;}
.x6a{left:42.047976px;}
.x12{left:44.927976px;}
.x20{left:50.975976px;}
.x1f{left:59.975976px;}
.x33{left:86.867976px;}
.x4d{left:99.503976px;}
.x1c{left:109.763976px;}
.x1b{left:114.803976px;}
.x1a{left:136.403976px;}
.x25{left:157.349976px;}
.x27{left:170.309976px;}
.x28{left:175.680000px;}
.x3{left:191.159976px;}
.x34{left:195.809976px;}
.x2a{left:212.969976px;}
.x23{left:214.049976px;}
.x22{left:222.014976px;}
.x26{left:228.809976px;}
.x1d{left:230.399976px;}
.x29{left:246.990000px;}
.x24{left:264.494976px;}
.x31{left:286.274976px;}
.x21{left:290.414976px;}
.x1e{left:340.199976px;}
.x2c{left:352.004976px;}
.x19{left:373.964976px;}
.x3a{left:426.209976px;}
.x39{left:428.909976px;}
.x2b{left:431.969976px;}
.x10{left:453.059976px;}
.x11{left:463.679976px;}
.x6b{left:480.989976px;}
.x6c{left:496.289976px;}
.x32{left:532.799976px;}
.x37{left:573.869976px;}
.x3d{left:584.534976px;}
.x59{left:589.649976px;}
.x36{left:597.629976px;}
.x62{left:602.819976px;}
.x57{left:604.409976px;}
.x58{left:610.349976px;}
.xe{left:620.789976px;}
.x63{left:625.499976px;}
.x65{left:636.014976px;}
.x64{left:640.334976px;}
.x5a{left:645.089976px;}
.x3c{left:646.274976px;}
.x40{left:684.389976px;}
.x54{left:694.184976px;}
.x3f{left:696.089976px;}
.x2f{left:728.429976px;}
.x69{left:731.009976px;}
.x3e{left:734.789976px;}
.x55{left:737.744976px;}
.x53{left:740.804976px;}
.x3b{left:743.114976px;}
.x30{left:745.409976px;}
.x38{left:746.639976px;}
.x35{left:749.909976px;}
.x60{left:873.149976px;}
.x5e{left:887.909976px;}
.x5f{left:893.849976px;}
.x5b{left:895.289976px;}
.x5c{left:898.889976px;}
.x5d{left:900.869976px;}
.x66{left:904.529976px;}
.x15{left:906.269976px;}
.x16{left:910.334976px;}
.x68{left:917.459976px;}
.x56{left:919.409976px;}
.x67{left:922.529976px;}
.x17{left:934.349976px;}
.x18{left:935.714976px;}
.x61{left:951.089976px;}
.x13{left:989.354976px;}
.x14{left:990.869976px;}
.x2d{left:1015.664976px;}
.x2e{left:1056.884976px;}
.x4f{left:1212.014976px;}
.x4e{left:1218.674976px;}
.x50{left:1223.714976px;}
.x51{left:1227.164976px;}
.x52{left:1233.104976px;}
.x6e{left:1246.244976px;}
.x42{left:1364.729976px;}
.x44{left:1378.049976px;}
.x47{left:1379.309976px;}
.x41{left:1380.929976px;}
.x4a{left:1382.729976px;}
.x48{left:1384.169976px;}
.x45{left:1388.669976px;}
.x4b{left:1391.729976px;}
.x4c{left:1429.349976px;}
.x46{left:1432.949976px;}
.x43{left:1437.089976px;}
.x49{left:1445.009976px;}
.x6d{left:1507.499976px;}
@media print{
.v2{vertical-align:-60.288000pt;}
.v4{vertical-align:-5.653333pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.760000pt;}
.ls1b{letter-spacing:-0.281600pt;}
.ls26{letter-spacing:-0.275200pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.238933pt;}
.ls15{letter-spacing:-0.218133pt;}
.ls28{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls16{letter-spacing:-0.181867pt;}
.ls20{letter-spacing:-0.181333pt;}
.ls5{letter-spacing:-0.163733pt;}
.ls1d{letter-spacing:-0.162133pt;}
.ls13{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.098667pt;}
.ls25{letter-spacing:-0.075733pt;}
.lsf{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:-0.054933pt;}
.ls2c{letter-spacing:-0.048000pt;}
.ls7{letter-spacing:-0.022400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.032000pt;}
.ls17{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.087467pt;}
.ls1c{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.101867pt;}
.ls24{letter-spacing:0.103467pt;}
.ls27{letter-spacing:0.117333pt;}
.ls2a{letter-spacing:0.117867pt;}
.ls1e{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.144000pt;}
.ls8{letter-spacing:0.156267pt;}
.ls23{letter-spacing:0.180267pt;}
.lse{letter-spacing:0.188800pt;}
.ls2b{letter-spacing:0.191360pt;}
.ls1{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.200533pt;}
.ls1a{letter-spacing:0.235733pt;}
.lsa{letter-spacing:0.259200pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.371200pt;}
.ls22{letter-spacing:26.496000pt;}
.ls21{letter-spacing:26.560000pt;}
.ls11{letter-spacing:104.452608pt;}
.ls10{letter-spacing:104.522880pt;}
.ls29{letter-spacing:396.305067pt;}
.wsa{word-spacing:-62.735467pt;}
.ws0{word-spacing:-61.102080pt;}
.wse{word-spacing:-27.989333pt;}
.ws8{word-spacing:-27.988480pt;}
.ws10{word-spacing:-27.977600pt;}
.ws13{word-spacing:-27.822080pt;}
.ws5{word-spacing:-27.788800pt;}
.wsb{word-spacing:-27.766400pt;}
.wsd{word-spacing:-27.733867pt;}
.wsf{word-spacing:-27.605333pt;}
.wsc{word-spacing:-27.549867pt;}
.ws25{word-spacing:-26.637867pt;}
.ws26{word-spacing:-26.594347pt;}
.ws29{word-spacing:-26.490880pt;}
.ws2a{word-spacing:-26.457600pt;}
.ws27{word-spacing:-26.415147pt;}
.ws28{word-spacing:-26.215680pt;}
.ws15{word-spacing:-24.960000pt;}
.ws9{word-spacing:-22.131200pt;}
.ws19{word-spacing:-18.836480pt;}
.ws1a{word-spacing:-18.803200pt;}
.ws6{word-spacing:-16.908267pt;}
.ws7{word-spacing:-16.893867pt;}
.ws2{word-spacing:-16.832000pt;}
.ws12{word-spacing:-16.673280pt;}
.ws3{word-spacing:-16.640000pt;}
.ws11{word-spacing:-16.576000pt;}
.ws4{word-spacing:-16.512000pt;}
.ws23{word-spacing:-15.641600pt;}
.ws24{word-spacing:-15.360000pt;}
.ws22{word-spacing:-12.646400pt;}
.ws2d{word-spacing:-11.673600pt;}
.ws2e{word-spacing:-11.599467pt;}
.ws2c{word-spacing:-11.514880pt;}
.ws2b{word-spacing:-11.481600pt;}
.ws17{word-spacing:-0.933547pt;}
.ws1e{word-spacing:-0.411520pt;}
.ws1{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.005120pt;}
.ws1c{word-spacing:0.126080pt;}
.ws18{word-spacing:0.139392pt;}
.ws1f{word-spacing:0.154240pt;}
.ws14{word-spacing:0.576000pt;}
.ws16{word-spacing:0.581568pt;}
.ws20{word-spacing:0.811520pt;}
.ws1d{word-spacing:0.815040pt;}
.ws21{word-spacing:1.320960pt;}
._d{margin-left:-2.828288pt;}
._1{margin-left:-1.880064pt;}
._0{margin-left:-0.939520pt;}
._2{width:1.068800pt;}
._4{width:2.703360pt;}
._e{width:3.809280pt;}
._8{width:17.898667pt;}
._7{width:20.139947pt;}
._5{width:23.445333pt;}
._f{width:28.596267pt;}
._13{width:117.637120pt;}
._15{width:143.779840pt;}
._12{width:151.772800pt;}
._14{width:153.574400pt;}
._16{width:171.070720pt;}
._10{width:181.536640pt;}
._b{width:193.954304pt;}
._c{width:202.540971pt;}
._11{width:396.305067pt;}
._9{width:817.010773pt;}
._a{width:836.249173pt;}
._6{width:1093.569195pt;}
._3{width:3100.821333pt;}
.fs1f{font-size:37.760000pt;}
.fs1d{font-size:40.320000pt;}
.fs1e{font-size:40.448000pt;}
.fs1b{font-size:44.160000pt;}
.fs1c{font-size:44.288000pt;}
.fs16{font-size:48.640000pt;}
.fs17{font-size:48.768000pt;}
.fs15{font-size:53.120000pt;}
.fs14{font-size:60.160000pt;}
.fs18{font-size:60.288000pt;}
.fs3{font-size:64.000000pt;}
.fs11{font-size:64.128000pt;}
.fs8{font-size:64.640000pt;}
.fs13{font-size:72.320000pt;}
.fs12{font-size:72.448000pt;}
.fsf{font-size:74.880000pt;}
.fs10{font-size:84.480000pt;}
.fsa{font-size:85.120000pt;}
.fs9{font-size:85.248000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fs1a{font-size:101.760000pt;}
.fs19{font-size:101.888000pt;}
.fs2{font-size:106.880000pt;}
.fs7{font-size:107.008000pt;}
.fsb{font-size:107.648000pt;}
.fs6{font-size:170.880000pt;}
.fse{font-size:171.008000pt;}
.fs20{font-size:193.280000pt;}
.fs0{font-size:234.880000pt;}
.fs1{font-size:235.008000pt;}
.fsc{font-size:241.920000pt;}
.fsd{font-size:242.048000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:22.112000pt;}
.ye6{bottom:66.112000pt;}
.y3a{bottom:69.504000pt;}
.y6e{bottom:81.600000pt;}
.y84{bottom:81.824000pt;}
.y6c{bottom:83.744000pt;}
.ye5{bottom:85.312000pt;}
.y18{bottom:86.752000pt;}
.y39{bottom:88.704000pt;}
.y2f{bottom:91.520000pt;}
.y12b{bottom:91.712000pt;}
.ye4{bottom:104.512000pt;}
.y17{bottom:105.952000pt;}
.y127{bottom:122.976000pt;}
.ye3{bottom:123.712000pt;}
.yd2{bottom:124.352000pt;}
.y64{bottom:124.896000pt;}
.y4f{bottom:124.992000pt;}
.y129{bottom:125.056000pt;}
.y16{bottom:125.152000pt;}
.yc0{bottom:129.920000pt;}
.y83{bottom:137.733333pt;}
.y63{bottom:144.893333pt;}
.y100{bottom:155.493333pt;}
.yd1{bottom:156.026667pt;}
.y5b{bottom:158.333333pt;}
.ybf{bottom:158.720000pt;}
.y62{bottom:164.933333pt;}
.y117{bottom:167.013333pt;}
.y2d{bottom:167.226667pt;}
.yaf{bottom:167.706667pt;}
.y4e{bottom:168.186667pt;}
.yff{bottom:168.773333pt;}
.y15{bottom:175.226667pt;}
.ye2{bottom:176.026667pt;}
.y5a{bottom:178.333333pt;}
.yfe{bottom:182.053333pt;}
.y23{bottom:183.133333pt;}
.yc2{bottom:186.586667pt;}
.ybe{bottom:187.520000pt;}
.y61{bottom:195.866667pt;}
.y59{bottom:198.333333pt;}
.y96{bottom:199.453333pt;}
.y14{bottom:204.066667pt;}
.yc1{bottom:205.786667pt;}
.ye1{bottom:206.626667pt;}
.yfd{bottom:208.773333pt;}
.y124{bottom:209.346667pt;}
.y4d{bottom:211.386667pt;}
.y81{bottom:215.040000pt;}
.ybd{bottom:216.320000pt;}
.yd0{bottom:217.506667pt;}
.y95{bottom:217.533333pt;}
.y58{bottom:218.333333pt;}
.y112{bottom:220.293333pt;}
.y123{bottom:220.706667pt;}
.yfc{bottom:222.080000pt;}
.y12c{bottom:229.280000pt;}
.y80{bottom:229.440000pt;}
.y13{bottom:232.866667pt;}
.yae{bottom:235.226667pt;}
.yfb{bottom:235.360000pt;}
.ye0{bottom:237.186667pt;}
.y57{bottom:239.293333pt;}
.y2c{bottom:239.706667pt;}
.ybc{bottom:245.146667pt;}
.y105{bottom:246.693333pt;}
.y11c{bottom:247.613333pt;}
.ycf{bottom:249.506667pt;}
.y122{bottom:250.106667pt;}
.y9f{bottom:252.000000pt;}
.y12a{bottom:253.666667pt;}
.y94{bottom:253.893333pt;}
.yad{bottom:254.426667pt;}
.y4c{bottom:254.626667pt;}
.y25{bottom:255.293333pt;}
.y7f{bottom:258.560000pt;}
.y11b{bottom:259.293333pt;}
.y104{bottom:259.973333pt;}
.y116{bottom:260.320000pt;}
.y12{bottom:261.666667pt;}
.yfa{bottom:261.920000pt;}
.y121{bottom:261.946667pt;}
.ydf{bottom:267.746667pt;}
.y9e{bottom:270.240000pt;}
.y11a{bottom:272.733333pt;}
.y7e{bottom:272.960000pt;}
.y115{bottom:273.600000pt;}
.yf9{bottom:275.360000pt;}
.yce{bottom:281.506667pt;}
.y103{bottom:286.693333pt;}
.y9d{bottom:288.320000pt;}
.yf8{bottom:288.640000pt;}
.y93{bottom:290.213333pt;}
.y11{bottom:290.466667pt;}
.y24{bottom:294.560000pt;}
.y4b{bottom:297.826667pt;}
.yde{bottom:298.306667pt;}
.y33{bottom:298.493333pt;}
.y120{bottom:298.586667pt;}
.y102{bottom:299.973333pt;}
.y114{bottom:300.160000pt;}
.y6b{bottom:303.226667pt;}
.yac{bottom:304.546667pt;}
.y43{bottom:305.573333pt;}
.y9c{bottom:306.560000pt;}
.y92{bottom:308.293333pt;}
.y11f{bottom:310.426667pt;}
.y38{bottom:311.706667pt;}
.y101{bottom:313.253333pt;}
.ycd{bottom:313.506667pt;}
.y113{bottom:313.600000pt;}
.ybb{bottom:314.746667pt;}
.y119{bottom:315.040000pt;}
.yf7{bottom:315.200000pt;}
.y7d{bottom:316.480000pt;}
.y32{bottom:317.693333pt;}
.y10{bottom:319.266667pt;}
.y6a{bottom:323.226667pt;}
.y9b{bottom:324.640000pt;}
.y118{bottom:326.880000pt;}
.yf6{bottom:328.480000pt;}
.ydd{bottom:328.866667pt;}
.y7c{bottom:331.066667pt;}
.yab{bottom:333.346667pt;}
.y22{bottom:339.613333pt;}
.y111{bottom:340.160000pt;}
.y4a{bottom:341.026667pt;}
.yf5{bottom:341.920000pt;}
.y11e{bottom:342.493333pt;}
.y9a{bottom:342.880000pt;}
.y69{bottom:343.226667pt;}
.yba{bottom:343.546667pt;}
.y91{bottom:344.613333pt;}
.ycc{bottom:345.533333pt;}
.yf{bottom:348.093333pt;}
.y42{bottom:349.573333pt;}
.y110{bottom:353.440000pt;}
.y11d{bottom:354.333333pt;}
.ydc{bottom:359.453333pt;}
.y99{bottom:360.960000pt;}
.y53{bottom:361.053333pt;}
.yaa{bottom:362.146667pt;}
.y90{bottom:362.853333pt;}
.y68{bottom:363.226667pt;}
.ya8{bottom:366.466667pt;}
.y125{bottom:366.493333pt;}
.yf4{bottom:368.506667pt;}
.y21{bottom:371.613333pt;}
.yb9{bottom:372.346667pt;}
.y7b{bottom:374.586667pt;}
.ye{bottom:376.893333pt;}
.ycb{bottom:377.533333pt;}
.y10f{bottom:380.160000pt;}
.y8f{bottom:380.960000pt;}
.y52{bottom:381.053333pt;}
.yf3{bottom:381.786667pt;}
.y67{bottom:383.226667pt;}
.y7a{bottom:389.146667pt;}
.ydb{bottom:390.013333pt;}
.ya9{bottom:390.946667pt;}
.y41{bottom:393.573333pt;}
.y126{bottom:395.200000pt;}
.yb0{bottom:395.266667pt;}
.y8e{bottom:399.200000pt;}
.y51{bottom:401.053333pt;}
.yb8{bottom:401.186667pt;}
.y66{bottom:403.266667pt;}
.y20{bottom:403.613333pt;}
.y10d{bottom:405.253333pt;}
.yd{bottom:405.693333pt;}
.yca{bottom:409.533333pt;}
.y31{bottom:413.693333pt;}
.y79{bottom:418.106667pt;}
.y10c{bottom:418.560000pt;}
.y37{bottom:418.946667pt;}
.ya7{bottom:419.746667pt;}
.yda{bottom:420.573333pt;}
.y49{bottom:427.453333pt;}
.y50{bottom:427.933333pt;}
.y65{bottom:429.760000pt;}
.yb7{bottom:429.986667pt;}
.y10b{bottom:432.000000pt;}
.y78{bottom:432.666667pt;}
.yc{bottom:434.493333pt;}
.y8d{bottom:435.360000pt;}
.y1f{bottom:435.653333pt;}
.y40{bottom:437.600000pt;}
.yc9{bottom:441.533333pt;}
.ya6{bottom:448.573333pt;}
.yd9{bottom:451.293333pt;}
.y10a{bottom:451.613333pt;}
.y8c{bottom:453.600000pt;}
.yb{bottom:463.293333pt;}
.y109{bottom:463.613333pt;}
.y128{bottom:466.586667pt;}
.y1e{bottom:467.653333pt;}
.y36{bottom:470.146667pt;}
.y48{bottom:470.653333pt;}
.yc8{bottom:473.533333pt;}
.y108{bottom:475.773333pt;}
.y77{bottom:476.226667pt;}
.ya5{bottom:477.373333pt;}
.y3f{bottom:481.600000pt;}
.yd8{bottom:481.853333pt;}
.y2a{bottom:484.800000pt;}
.y28{bottom:485.920000pt;}
.y107{bottom:487.773333pt;}
.y8b{bottom:489.920000pt;}
.y76{bottom:490.786667pt;}
.ya{bottom:492.133333pt;}
.yf2{bottom:495.813333pt;}
.yb6{bottom:499.586667pt;}
.y30{bottom:499.653333pt;}
.y106{bottom:500.253333pt;}
.yc7{bottom:505.573333pt;}
.ya4{bottom:506.173333pt;}
.y8a{bottom:508.000000pt;}
.yf1{bottom:509.093333pt;}
.y29{bottom:510.400000pt;}
.y27{bottom:511.520000pt;}
.yd7{bottom:512.453333pt;}
.y47{bottom:513.853333pt;}
.y9{bottom:520.933333pt;}
.y35{bottom:521.346667pt;}
.yf0{bottom:522.533333pt;}
.y3e{bottom:525.600000pt;}
.yb5{bottom:528.413333pt;}
.y60{bottom:530.693333pt;}
.y1d{bottom:531.653333pt;}
.y75{bottom:534.306667pt;}
.ya3{bottom:534.973333pt;}
.y2b{bottom:535.520000pt;}
.yc6{bottom:537.573333pt;}
.y3{bottom:538.560000pt;}
.y98{bottom:539.813333pt;}
.yd6{bottom:543.013333pt;}
.yef{bottom:543.866667pt;}
.y89{bottom:544.346667pt;}
.y74{bottom:548.866667pt;}
.y8{bottom:549.733333pt;}
.y5f{bottom:550.693333pt;}
.y46{bottom:557.093333pt;}
.yee{bottom:557.146667pt;}
.yb4{bottom:557.213333pt;}
.y97{bottom:557.893333pt;}
.y88{bottom:562.426667pt;}
.y1c{bottom:563.653333pt;}
.ya2{bottom:563.773333pt;}
.yc5{bottom:569.573333pt;}
.y3d{bottom:569.600000pt;}
.yed{bottom:570.586667pt;}
.y5e{bottom:570.693333pt;}
.y34{bottom:572.573333pt;}
.yd5{bottom:573.573333pt;}
.y73{bottom:577.826667pt;}
.y7{bottom:578.533333pt;}
.y26{bottom:579.040000pt;}
.y87{bottom:580.666667pt;}
.yb3{bottom:586.013333pt;}
.y56{bottom:588.960000pt;}
.y5d{bottom:590.693333pt;}
.y72{bottom:592.386667pt;}
.ya1{bottom:592.613333pt;}
.yec{bottom:593.626667pt;}
.y1b{bottom:595.680000pt;}
.y45{bottom:600.293333pt;}
.yc4{bottom:601.573333pt;}
.yd4{bottom:604.133333pt;}
.yeb{bottom:606.906667pt;}
.y6{bottom:607.333333pt;}
.y55{bottom:608.960000pt;}
.y3c{bottom:613.626667pt;}
.yb2{bottom:614.813333pt;}
.y86{bottom:616.986667pt;}
.yea{bottom:620.346667pt;}
.ya0{bottom:621.413333pt;}
.y5c{bottom:622.173333pt;}
.yc3{bottom:633.573333pt;}
.yd3{bottom:634.720000pt;}
.y85{bottom:635.066667pt;}
.y71{bottom:635.933333pt;}
.y5{bottom:636.160000pt;}
.ye9{bottom:640.093333pt;}
.y44{bottom:643.493333pt;}
.yb1{bottom:643.613333pt;}
.y54{bottom:645.413333pt;}
.y70{bottom:650.493333pt;}
.ye8{bottom:653.373333pt;}
.y10e{bottom:654.306667pt;}
.y3b{bottom:657.626667pt;}
.y1a{bottom:659.680000pt;}
.y2{bottom:661.626667pt;}
.ye7{bottom:666.813333pt;}
.y6f{bottom:676.253333pt;}
.y82{bottom:705.306667pt;}
.y1{bottom:724.986667pt;}
.y19{bottom:727.426667pt;}
.y2e{bottom:884.800000pt;}
.y6d{bottom:934.813333pt;}
.h2b{height:33.832960pt;}
.h2c{height:34.286080pt;}
.h29{height:36.126720pt;}
.h2a{height:36.241408pt;}
.h27{height:39.567360pt;}
.h28{height:39.682048pt;}
.h25{height:40.097280pt;}
.h26{height:40.213504pt;}
.h1c{height:44.165120pt;}
.h1d{height:44.281344pt;}
.h1b{height:45.364688pt;}
.h1e{height:49.925120pt;}
.h20{height:51.376875pt;}
.h19{height:54.625280pt;}
.h8{height:54.656250pt;}
.h1f{height:54.741504pt;}
.h5{height:58.112000pt;}
.h15{height:58.228224pt;}
.hb{height:58.693120pt;}
.h2d{height:61.761562pt;}
.h18{height:65.666560pt;}
.h17{height:65.782784pt;}
.h13{height:67.991040pt;}
.h14{height:72.146250pt;}
.hd{height:72.692813pt;}
.hc{height:72.802125pt;}
.hf{height:77.288960pt;}
.h16{height:86.016000pt;}
.h23{height:86.903437pt;}
.h24{height:87.012750pt;}
.h7{height:87.168000pt;}
.h6{height:87.284224pt;}
.h21{height:91.275937pt;}
.h22{height:91.385250pt;}
.h4{height:97.047040pt;}
.ha{height:97.163264pt;}
.he{height:97.744384pt;}
.h9{height:155.159040pt;}
.h12{height:155.275264pt;}
.h2e{height:165.061875pt;}
.h10{height:206.600625pt;}
.h11{height:206.709937pt;}
.h2{height:213.271040pt;}
.h3{height:213.387264pt;}
.h1a{height:722.560000pt;}
.h1{height:816.000000pt;}
.h0{height:816.320000pt;}
.w3{width:1187.040000pt;}
.w1{width:1451.333333pt;}
.w2{width:1451.359978pt;}
.w0{width:1451.360000pt;}
.x6{left:-1487.546688pt;}
.x9{left:-1479.746688pt;}
.x7{left:-1372.026688pt;}
.x8{left:-1364.986688pt;}
.xa{left:-1281.893355pt;}
.xb{left:-1254.373355pt;}
.xd{left:-908.253355pt;}
.xc{left:-871.453355pt;}
.x0{left:0.000000pt;}
.x1{left:28.383978pt;}
.x5{left:30.335978pt;}
.xf{left:31.327978pt;}
.x2{left:32.927978pt;}
.x4{left:35.199978pt;}
.x6a{left:37.375978pt;}
.x12{left:39.935978pt;}
.x20{left:45.311978pt;}
.x1f{left:53.311978pt;}
.x33{left:77.215978pt;}
.x4d{left:88.447978pt;}
.x1c{left:97.567978pt;}
.x1b{left:102.047978pt;}
.x1a{left:121.247978pt;}
.x25{left:139.866645pt;}
.x27{left:151.386645pt;}
.x28{left:156.160000pt;}
.x3{left:169.919978pt;}
.x34{left:174.053312pt;}
.x2a{left:189.306645pt;}
.x23{left:190.266645pt;}
.x22{left:197.346645pt;}
.x26{left:203.386645pt;}
.x1d{left:204.799978pt;}
.x29{left:219.546667pt;}
.x24{left:235.106645pt;}
.x31{left:254.466645pt;}
.x21{left:258.146645pt;}
.x1e{left:302.399978pt;}
.x2c{left:312.893312pt;}
.x19{left:332.413312pt;}
.x3a{left:378.853312pt;}
.x39{left:381.253312pt;}
.x2b{left:383.973312pt;}
.x10{left:402.719978pt;}
.x11{left:412.159978pt;}
.x6b{left:427.546645pt;}
.x6c{left:441.146645pt;}
.x32{left:473.599978pt;}
.x37{left:510.106645pt;}
.x3d{left:519.586645pt;}
.x59{left:524.133312pt;}
.x36{left:531.226645pt;}
.x62{left:535.839978pt;}
.x57{left:537.253312pt;}
.x58{left:542.533312pt;}
.xe{left:551.813312pt;}
.x63{left:555.999978pt;}
.x65{left:565.346645pt;}
.x64{left:569.186645pt;}
.x5a{left:573.413312pt;}
.x3c{left:574.466645pt;}
.x40{left:608.346645pt;}
.x54{left:617.053312pt;}
.x3f{left:618.746645pt;}
.x2f{left:647.493312pt;}
.x69{left:649.786645pt;}
.x3e{left:653.146645pt;}
.x55{left:655.773312pt;}
.x53{left:658.493312pt;}
.x3b{left:660.546645pt;}
.x30{left:662.586645pt;}
.x38{left:663.679978pt;}
.x35{left:666.586645pt;}
.x60{left:776.133312pt;}
.x5e{left:789.253312pt;}
.x5f{left:794.533312pt;}
.x5b{left:795.813312pt;}
.x5c{left:799.013312pt;}
.x5d{left:800.773312pt;}
.x66{left:804.026645pt;}
.x15{left:805.573312pt;}
.x16{left:809.186645pt;}
.x68{left:815.519978pt;}
.x56{left:817.253312pt;}
.x67{left:820.026645pt;}
.x17{left:830.533312pt;}
.x18{left:831.746645pt;}
.x61{left:845.413312pt;}
.x13{left:879.426645pt;}
.x14{left:880.773312pt;}
.x2d{left:902.813312pt;}
.x2e{left:939.453312pt;}
.x4f{left:1077.346645pt;}
.x4e{left:1083.266645pt;}
.x50{left:1087.746645pt;}
.x51{left:1090.813312pt;}
.x52{left:1096.093312pt;}
.x6e{left:1107.773312pt;}
.x42{left:1213.093312pt;}
.x44{left:1224.933312pt;}
.x47{left:1226.053312pt;}
.x41{left:1227.493312pt;}
.x4a{left:1229.093312pt;}
.x48{left:1230.373312pt;}
.x45{left:1234.373312pt;}
.x4b{left:1237.093312pt;}
.x4c{left:1270.533312pt;}
.x46{left:1273.733312pt;}
.x43{left:1277.413312pt;}
.x49{left:1284.453312pt;}
.x6d{left:1339.999978pt;}
}




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