
    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_70e996b0a60339289d3ade80.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_91fb23245b17654a344b882e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_6f045efe56a85a132aea8828.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_b432c36d49e2386427a18c27.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_868e8e0ba4e188cb5f0916b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_99c353606546587ef1f5f3cd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.983398;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_c6393c6b60c3286f48803909.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130371;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_e63ba3125e3c7a2198b3466c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_8202ba6ffd7bb862f3dcc00c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.983398;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_697ad2916873eb027f755b61.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_217370fdf3a21c7ad782aced.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f5e2df5f561757154edb7309.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.929688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.249963,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249963,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249963,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,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:-5.760000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760000px;}
.v4{vertical-align:23.760000px;}
.v1{vertical-align:30.240000px;}
.ls20{letter-spacing:-0.720000px;}
.ls26{letter-spacing:-0.463800px;}
.ls8{letter-spacing:-0.310800px;}
.ls14{letter-spacing:-0.310200px;}
.ls2c{letter-spacing:-0.250800px;}
.ls1{letter-spacing:-0.229800px;}
.ls27{letter-spacing:-0.227400px;}
.ls9{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.164400px;}
.lsa{letter-spacing:-0.132600px;}
.ls6{letter-spacing:-0.093600px;}
.ls4{letter-spacing:-0.058320px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.069120px;}
.ls11{letter-spacing:0.075000px;}
.ls18{letter-spacing:0.077760px;}
.lsc{letter-spacing:0.083520px;}
.lse{letter-spacing:0.086400px;}
.ls10{letter-spacing:0.089400px;}
.ls2d{letter-spacing:0.115200px;}
.ls23{letter-spacing:0.132480px;}
.ls2e{letter-spacing:0.132600px;}
.ls29{letter-spacing:0.141000px;}
.ls3{letter-spacing:0.142560px;}
.ls1e{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.181440px;}
.ls5{letter-spacing:0.182400px;}
.ls2{letter-spacing:0.213600px;}
.ls15{letter-spacing:0.247800px;}
.lsf{letter-spacing:0.256200px;}
.ls2a{letter-spacing:0.259200px;}
.ls2b{letter-spacing:0.302400px;}
.ls28{letter-spacing:0.313800px;}
.ls21{letter-spacing:0.313920px;}
.ls19{letter-spacing:0.342720px;}
.ls16{letter-spacing:0.351600px;}
.lsb{letter-spacing:0.374400px;}
.ls1a{letter-spacing:0.447840px;}
.ls1d{letter-spacing:0.900000px;}
.ls24{letter-spacing:3.029760px;}
.ls13{letter-spacing:9.378720px;}
.ls1c{letter-spacing:12.178156px;}
.ls1b{letter-spacing:12.179973px;}
.ls25{letter-spacing:25.505280px;}
.ls17{letter-spacing:39.185280px;}
.ls22{letter-spacing:58.625280px;}
.ls1f{letter-spacing:391.134240px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(47,84,150),0 0.015em rgb(47,84,150),0.015em 0 rgb(47,84,150),0 -0.015em  rgb(47,84,150);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(47,84,150);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14{word-spacing:-72.000000px;}
.ws0{word-spacing:-27.174240px;}
.ws12{word-spacing:-21.331560px;}
.ws5{word-spacing:-19.251840px;}
.ws4{word-spacing:-19.220640px;}
.ws6{word-spacing:-18.944640px;}
.ws1{word-spacing:-18.808440px;}
.wsd{word-spacing:-15.344640px;}
.ws13{word-spacing:-15.321840px;}
.ws1b{word-spacing:-15.284040px;}
.ws1e{word-spacing:-15.272640px;}
.ws1d{word-spacing:-15.229440px;}
.wsc{word-spacing:-15.226440px;}
.ws1c{word-spacing:-15.111240px;}
.ws21{word-spacing:-15.102840px;}
.ws20{word-spacing:-15.085440px;}
.wse{word-spacing:-15.059640px;}
.wsf{word-spacing:-15.056640px;}
.ws10{word-spacing:-15.045240px;}
.wsa{word-spacing:-14.970240px;}
.wsb{word-spacing:-14.837640px;}
.ws11{word-spacing:-14.805840px;}
.ws9{word-spacing:-14.754240px;}
.ws1a{word-spacing:-14.742840px;}
.ws1f{word-spacing:-14.719440px;}
.ws7{word-spacing:-14.659440px;}
.ws19{word-spacing:-14.506440px;}
.ws16{word-spacing:-13.505760px;}
.ws3{word-spacing:-13.447440px;}
.ws17{word-spacing:-12.782521px;}
.ws18{word-spacing:-12.780614px;}
.ws8{word-spacing:-9.437760px;}
.ws15{word-spacing:-8.786880px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-14.912160px;}
._13{margin-left:-13.289280px;}
._16{margin-left:-12.238080px;}
._12{margin-left:-9.116160px;}
._a{margin-left:-4.580640px;}
._9{margin-left:-3.357120px;}
._0{margin-left:-1.442880px;}
._2{width:1.135440px;}
._3{width:2.149680px;}
._7{width:3.584400px;}
._8{width:4.648560px;}
._6{width:5.961600px;}
._b{width:7.010880px;}
._c{width:8.628000px;}
._1d{width:10.002240px;}
._d{width:11.923200px;}
._e{width:13.068960px;}
._2c{width:17.023680px;}
._2e{width:18.071280px;}
._2d{width:20.070720px;}
._2b{width:21.536640px;}
._2a{width:22.587840px;}
._30{width:24.030720px;}
._10{width:25.974720px;}
._f{width:27.489600px;}
._1b{width:31.066560px;}
._1c{width:32.206080px;}
._31{width:34.099200px;}
._33{width:41.797440px;}
._32{width:59.999040px;}
._15{width:66.001200px;}
._23{width:69.695040px;}
._17{width:83.206080px;}
._22{width:87.844800px;}
._29{width:89.500800px;}
._1e{width:104.033280px;}
._2f{width:105.270120px;}
._20{width:122.404560px;}
._21{width:126.592800px;}
._28{width:140.770560px;}
._27{width:151.933440px;}
._26{width:155.231040px;}
._25{width:156.967680px;}
._24{width:160.265280px;}
._18{width:163.043760px;}
._5{width:193.337760px;}
._1f{width:197.429760px;}
._4{width:421.591680px;}
._19{width:654.558240px;}
._1{width:845.117760px;}
._11{width:849.185760px;}
._1a{width:2168.980560px;}
.fc7{color:rgb(0,112,192);}
.fc4{color:rgb(47,84,150);}
.fc3{color:rgb(5,99,193);}
.fc8{color:rgb(118,118,118);}
.fc6{color:rgb(31,31,31);}
.fc5{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(89,153,211);}
.fc0{color:rgb(30,76,119);}
.fsb{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsd{font-size:45.973431px;}
.fsc{font-size:45.980290px;}
.fs4{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.fs0{font-size:144.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:5.580000px;}
.y37{bottom:5.760000px;}
.yfd{bottom:5.814787px;}
.y43{bottom:31.176000px;}
.y35{bottom:31.320000px;}
.y1d{bottom:54.900000px;}
.y34{bottom:56.880000px;}
.y1c{bottom:73.080000px;}
.y40{bottom:82.440000px;}
.y3f{bottom:108.180000px;}
.y17{bottom:113.940000px;}
.y42{bottom:117.180000px;}
.ye0{bottom:117.540000px;}
.y150{bottom:124.920000px;}
.yfa{bottom:126.540000px;}
.y116{bottom:129.420000px;}
.y178{bottom:130.860000px;}
.yc3{bottom:131.400000px;}
.y3e{bottom:133.740000px;}
.y16{bottom:139.536000px;}
.y132{bottom:140.616000px;}
.ydf{bottom:146.736000px;}
.yf9{bottom:148.176000px;}
.yfc{bottom:150.736593px;}
.y177{bottom:151.050000px;}
.y3d{bottom:159.480000px;}
.y115{bottom:160.230000px;}
.yc2{bottom:160.590000px;}
.y131{bottom:162.210000px;}
.y15{bottom:165.270000px;}
.y41{bottom:168.330000px;}
.yde{bottom:169.230000px;}
.yf8{bottom:169.950000px;}
.y176{bottom:171.210000px;}
.y114{bottom:182.010000px;}
.y130{bottom:183.990000px;}
.y3c{bottom:185.040000px;}
.y88{bottom:186.870000px;}
.yb3{bottom:188.130000px;}
.ydd{bottom:189.390000px;}
.yc1{bottom:189.750000px;}
.y14f{bottom:190.110000px;}
.y175{bottom:191.370000px;}
.yf7{bottom:191.730000px;}
.y3b{bottom:194.070000px;}
.y14{bottom:194.970000px;}
.y12f{bottom:205.770000px;}
.y87{bottom:207.030000px;}
.yb2{bottom:208.290000px;}
.y174{bottom:211.530000px;}
.y14e{bottom:211.890000px;}
.y113{bottom:212.790000px;}
.yf6{bottom:213.510000px;}
.ydc{bottom:218.550000px;}
.yc0{bottom:218.910000px;}
.y86{bottom:227.190000px;}
.y12e{bottom:227.550000px;}
.yb1{bottom:228.450000px;}
.y173{bottom:231.690000px;}
.y112{bottom:234.390000px;}
.ydb{bottom:238.530000px;}
.y13{bottom:238.890000px;}
.yf5{bottom:242.670000px;}
.yfb{bottom:243.648694px;}
.y85{bottom:247.350000px;}
.ybf{bottom:248.070000px;}
.yb0{bottom:248.610000px;}
.y12d{bottom:249.150000px;}
.y172{bottom:251.850000px;}
.y14d{bottom:252.030000px;}
.y111{bottom:256.170000px;}
.yda{bottom:258.690000px;}
.y84{bottom:267.510000px;}
.ybe{bottom:268.230000px;}
.yaf{bottom:268.770000px;}
.y12c{bottom:270.930000px;}
.y171{bottom:271.830000px;}
.yd9{bottom:278.850000px;}
.y12{bottom:282.810000px;}
.y110{bottom:286.950000px;}
.y83{bottom:287.670000px;}
.ybd{bottom:288.390000px;}
.yae{bottom:288.930000px;}
.y170{bottom:291.990000px;}
.y12b{bottom:292.710000px;}
.y14c{bottom:298.830000px;}
.yd8{bottom:299.010000px;}
.y82{bottom:307.650000px;}
.ybc{bottom:308.550000px;}
.yad{bottom:309.090000px;}
.y16f{bottom:312.150000px;}
.y10f{bottom:313.050000px;}
.y12a{bottom:314.490000px;}
.yd7{bottom:319.170000px;}
.y14b{bottom:320.610000px;}
.y11{bottom:326.730000px;}
.y81{bottom:327.810000px;}
.ybb{bottom:328.530000px;}
.yac{bottom:329.250000px;}
.y16e{bottom:332.310000px;}
.y129{bottom:336.090000px;}
.y14a{bottom:342.390000px;}
.y80{bottom:347.970000px;}
.yd6{bottom:348.330000px;}
.yba{bottom:348.690000px;}
.yab{bottom:349.230000px;}
.y16d{bottom:352.470000px;}
.y128{bottom:357.870000px;}
.y149{bottom:364.170000px;}
.y7f{bottom:368.130000px;}
.yd5{bottom:368.490000px;}
.yb9{bottom:368.850000px;}
.y10{bottom:369.210000px;}
.yaa{bottom:369.390000px;}
.y16c{bottom:372.630000px;}
.y127{bottom:379.650000px;}
.y148{bottom:385.770000px;}
.y7e{bottom:388.335000px;}
.yd4{bottom:388.695000px;}
.yb8{bottom:389.055000px;}
.ya9{bottom:389.595000px;}
.y16b{bottom:392.835000px;}
.y3a{bottom:399.135000px;}
.y126{bottom:401.475000px;}
.yf{bottom:405.795000px;}
.y147{bottom:407.595000px;}
.y7d{bottom:408.495000px;}
.yd3{bottom:408.855000px;}
.yb7{bottom:409.215000px;}
.ya8{bottom:409.755000px;}
.y16a{bottom:412.995000px;}
.y125{bottom:423.075000px;}
.y39{bottom:424.875000px;}
.y7c{bottom:428.655000px;}
.yd2{bottom:428.835000px;}
.yb6{bottom:429.375000px;}
.ya7{bottom:429.915000px;}
.y63{bottom:432.615000px;}
.y169{bottom:433.155000px;}
.ye{bottom:442.515000px;}
.y124{bottom:444.855000px;}
.yd1{bottom:448.995000px;}
.ya6{bottom:450.075000px;}
.y38{bottom:450.435000px;}
.y146{bottom:451.155000px;}
.y62{bottom:452.775000px;}
.y168{bottom:453.315000px;}
.yb5{bottom:458.535000px;}
.y123{bottom:466.635000px;}
.y7b{bottom:468.795000px;}
.yd0{bottom:469.155000px;}
.ya5{bottom:470.235000px;}
.y145{bottom:472.755000px;}
.y61{bottom:472.935000px;}
.y167{bottom:473.295000px;}
.yd{bottom:474.195000px;}
.y36{bottom:475.995000px;}
.y122{bottom:488.415000px;}
.ycf{bottom:489.315000px;}
.ya4{bottom:490.395000px;}
.y60{bottom:493.095000px;}
.y166{bottom:493.455000px;}
.y144{bottom:494.535000px;}
.yc{bottom:495.255000px;}
.y33{bottom:501.735000px;}
.y121{bottom:510.015000px;}
.ya3{bottom:510.555000px;}
.y5f{bottom:513.075000px;}
.y165{bottom:513.615000px;}
.y7a{bottom:514.155000px;}
.y143{bottom:516.315000px;}
.yce{bottom:518.475000px;}
.ya2{bottom:530.715000px;}
.y120{bottom:531.795000px;}
.y5e{bottom:533.235000px;}
.y164{bottom:533.775000px;}
.y79{bottom:534.135000px;}
.y142{bottom:538.095000px;}
.ycd{bottom:538.635000px;}
.ya1{bottom:550.695000px;}
.y5d{bottom:553.395000px;}
.y11f{bottom:553.575000px;}
.y163{bottom:553.935000px;}
.y78{bottom:554.295000px;}
.yb{bottom:556.275000px;}
.ycc{bottom:558.795000px;}
.y141{bottom:559.875000px;}
.ya0{bottom:570.855000px;}
.y162{bottom:574.095000px;}
.y11e{bottom:575.355000px;}
.y5c{bottom:578.055000px;}
.y31{bottom:578.595000px;}
.y77{bottom:578.955000px;}
.y140{bottom:581.475000px;}
.y9f{bottom:591.015000px;}
.y161{bottom:594.255000px;}
.y11d{bottom:597.135000px;}
.y5b{bottom:598.215000px;}
.y76{bottom:599.115000px;}
.y13f{bottom:603.255000px;}
.y30{bottom:609.915000px;}
.ya{bottom:610.455000px;}
.y9e{bottom:611.175000px;}
.y160{bottom:614.415000px;}
.y5a{bottom:618.375000px;}
.y11c{bottom:618.735000px;}
.ycb{bottom:619.275000px;}
.y75{bottom:623.775000px;}
.y13e{bottom:625.035000px;}
.y9d{bottom:631.335000px;}
.yf4{bottom:632.775000px;}
.y15f{bottom:634.575000px;}
.y2f{bottom:635.475000px;}
.y59{bottom:638.535000px;}
.yca{bottom:639.255000px;}
.y11b{bottom:639.435000px;}
.y74{bottom:643.965000px;}
.y13d{bottom:646.845000px;}
.y9c{bottom:651.525000px;}
.yf3{bottom:652.605000px;}
.y15e{bottom:654.765000px;}
.y11a{bottom:656.565000px;}
.y58{bottom:658.725000px;}
.yc9{bottom:659.445000px;}
.y2e{bottom:661.245000px;}
.y73{bottom:664.125000px;}
.y9{bottom:668.265000px;}
.y13c{bottom:668.445000px;}
.y9b{bottom:671.685000px;}
.yf2{bottom:672.405000px;}
.y15d{bottom:674.745000px;}
.y57{bottom:678.885000px;}
.yc8{bottom:684.105000px;}
.y2d{bottom:686.805000px;}
.y72{bottom:688.785000px;}
.y9a{bottom:691.845000px;}
.y15c{bottom:694.905000px;}
.y56{bottom:699.045000px;}
.y13b{bottom:699.225000px;}
.yf1{bottom:701.925000px;}
.y8{bottom:704.985000px;}
.y10e{bottom:708.225000px;}
.y99{bottom:712.005000px;}
.y2c{bottom:712.365000px;}
.y15b{bottom:715.065000px;}
.y55{bottom:719.025000px;}
.y13a{bottom:721.005000px;}
.yf0{bottom:723.525000px;}
.y10d{bottom:728.025000px;}
.y71{bottom:728.745000px;}
.y98{bottom:732.165000px;}
.y15a{bottom:735.225000px;}
.y2b{bottom:738.105000px;}
.y7{bottom:741.525000px;}
.y139{bottom:742.785000px;}
.y54{bottom:743.685000px;}
.yef{bottom:745.305000px;}
.y10c{bottom:747.645000px;}
.y159{bottom:755.385000px;}
.y97{bottom:761.145000px;}
.y2a{bottom:763.665000px;}
.y53{bottom:763.845000px;}
.y138{bottom:764.385000px;}
.y70{bottom:774.105000px;}
.y158{bottom:775.545000px;}
.y10b{bottom:777.165000px;}
.y96{bottom:781.305000px;}
.y52{bottom:784.005000px;}
.yee{bottom:785.445000px;}
.y137{bottom:786.165000px;}
.y29{bottom:789.405000px;}
.y6f{bottom:794.265000px;}
.y157{bottom:795.705000px;}
.y10a{bottom:798.945000px;}
.y6{bottom:799.125000px;}
.y95{bottom:801.465000px;}
.y51{bottom:804.165000px;}
.y136{bottom:807.945000px;}
.y6e{bottom:814.425000px;}
.y28{bottom:814.965000px;}
.y156{bottom:815.865000px;}
.y109{bottom:820.725000px;}
.y94{bottom:821.625000px;}
.y50{bottom:828.825000px;}
.y135{bottom:829.725000px;}
.yed{bottom:830.805000px;}
.y155{bottom:836.025000px;}
.y93{bottom:841.785000px;}
.y108{bottom:842.325000px;}
.y27{bottom:848.085000px;}
.y4f{bottom:848.985000px;}
.yec{bottom:850.965000px;}
.y134{bottom:851.325000px;}
.y6d{bottom:854.565000px;}
.y154{bottom:856.185000px;}
.y5{bottom:856.725000px;}
.y92{bottom:861.945000px;}
.y107{bottom:864.105000px;}
.y4e{bottom:869.145000px;}
.yeb{bottom:871.125000px;}
.y133{bottom:873.105000px;}
.y26{bottom:873.825000px;}
.y153{bottom:876.165000px;}
.y91{bottom:882.105000px;}
.yb4{bottom:883.365000px;}
.y181{bottom:889.125000px;}
.y4d{bottom:889.305000px;}
.yea{bottom:891.285000px;}
.y4{bottom:893.490000px;}
.y106{bottom:894.930000px;}
.y152{bottom:896.370000px;}
.y25{bottom:899.430000px;}
.y6c{bottom:899.970000px;}
.y90{bottom:902.310000px;}
.y180{bottom:909.330000px;}
.y4c{bottom:909.510000px;}
.ye9{bottom:911.490000px;}
.y105{bottom:916.710000px;}
.y6b{bottom:920.130000px;}
.y8f{bottom:922.470000px;}
.y24{bottom:924.990000px;}
.y4b{bottom:929.490000px;}
.ye8{bottom:931.470000px;}
.y151{bottom:936.510000px;}
.y104{bottom:938.310000px;}
.y6a{bottom:940.290000px;}
.y8e{bottom:942.630000px;}
.y17f{bottom:949.470000px;}
.y4a{bottom:949.650000px;}
.y23{bottom:950.730000px;}
.ye7{bottom:951.630000px;}
.y3{bottom:957.390000px;}
.y103{bottom:960.090000px;}
.y69{bottom:960.450000px;}
.y8d{bottom:962.610000px;}
.y17e{bottom:969.630000px;}
.y49{bottom:974.310000px;}
.y22{bottom:976.290000px;}
.y68{bottom:980.430000px;}
.ye6{bottom:980.790000px;}
.y102{bottom:981.870000px;}
.y8c{bottom:982.770000px;}
.y17d{bottom:989.790000px;}
.y48{bottom:994.470000px;}
.y67{bottom:1000.590000px;}
.ye5{bottom:1000.950000px;}
.y119{bottom:1001.850000px;}
.y21{bottom:1002.030000px;}
.y8b{bottom:1002.930000px;}
.y101{bottom:1003.650000px;}
.y17c{bottom:1009.950000px;}
.y47{bottom:1014.630000px;}
.y66{bottom:1020.750000px;}
.ye4{bottom:1021.110000px;}
.y118{bottom:1021.470000px;}
.y8a{bottom:1023.090000px;}
.y100{bottom:1025.250000px;}
.y20{bottom:1027.590000px;}
.y17b{bottom:1030.110000px;}
.yc7{bottom:1036.770000px;}
.y46{bottom:1039.290000px;}
.y2{bottom:1039.650000px;}
.y65{bottom:1040.910000px;}
.ye3{bottom:1041.270000px;}
.y89{bottom:1043.250000px;}
.yff{bottom:1047.030000px;}
.y17a{bottom:1050.270000px;}
.y1f{bottom:1053.330000px;}
.yc6{bottom:1055.130000px;}
.y45{bottom:1060.530000px;}
.y117{bottom:1061.070000px;}
.ye2{bottom:1061.430000px;}
.yfe{bottom:1068.810000px;}
.y179{bottom:1070.430000px;}
.yc5{bottom:1073.490000px;}
.y1e{bottom:1080.510000px;}
.y64{bottom:1083.390000px;}
.y44{bottom:1086.270000px;}
.ye1{bottom:1090.590000px;}
.yc4{bottom:1091.850000px;}
.y1{bottom:1104.630000px;}
.y1b{bottom:1110.750000px;}
.y1a{bottom:1130.910000px;}
.y19{bottom:1171.980000px;}
.y18{bottom:1192.140000px;}
.h10{height:25.560000px;}
.h12{height:25.740000px;}
.h1e{height:47.948852px;}
.h1d{height:47.956006px;}
.h7{height:47.980898px;}
.h18{height:48.088125px;}
.h14{height:51.156000px;}
.h1b{height:52.166250px;}
.h17{height:53.302500px;}
.hc{height:59.439023px;}
.ha{height:65.884219px;}
.hb{height:68.084282px;}
.h1a{height:69.086250px;}
.h19{height:74.004654px;}
.h11{height:76.860000px;}
.h9{height:83.787539px;}
.hf{height:86.255508px;}
.h15{height:91.177734px;}
.h16{height:99.687656px;}
.hd{height:110.583984px;}
.h6{height:112.429688px;}
.he{height:114.027539px;}
.h8{height:119.594180px;}
.h4{height:123.116836px;}
.h5{height:125.171719px;}
.h2{height:143.226562px;}
.h13{height:205.050000px;}
.h3{height:221.167969px;}
.h1c{height:374.942839px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:265.530000px;}
.w4{width:403.995000px;}
.w5{width:678.238407px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x12{left:8.100000px;}
.x1c{left:15.079350px;}
.x11{left:95.616000px;}
.x1{left:106.235987px;}
.x6{left:109.655987px;}
.x14{left:111.275987px;}
.xc{left:113.255987px;}
.x1f{left:116.855987px;}
.x2{left:122.255987px;}
.xb{left:123.335987px;}
.x3{left:125.855987px;}
.x1a{left:133.235987px;}
.x19{left:138.275987px;}
.x18{left:148.715987px;}
.x7{left:150.689987px;}
.x10{left:233.849987px;}
.x15{left:252.209987px;}
.x1d{left:280.363895px;}
.xf{left:294.554987px;}
.xe{left:321.734987px;}
.xa{left:325.514987px;}
.x4{left:344.234987px;}
.x9{left:354.134987px;}
.x8{left:360.074987px;}
.x13{left:361.155000px;}
.xd{left:418.574987px;}
.x5{left:446.324987px;}
.x16{left:775.949987px;}
.x1e{left:782.609987px;}
.x1b{left:784.589987px;}
.x17{left:786.239987px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120000pt;}
.v4{vertical-align:21.120000pt;}
.v1{vertical-align:26.880000pt;}
.ls20{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.412267pt;}
.ls8{letter-spacing:-0.276267pt;}
.ls14{letter-spacing:-0.275733pt;}
.ls2c{letter-spacing:-0.222933pt;}
.ls1{letter-spacing:-0.204267pt;}
.ls27{letter-spacing:-0.202133pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.146133pt;}
.lsa{letter-spacing:-0.117867pt;}
.ls6{letter-spacing:-0.083200pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.061440pt;}
.ls11{letter-spacing:0.066667pt;}
.ls18{letter-spacing:0.069120pt;}
.lsc{letter-spacing:0.074240pt;}
.lse{letter-spacing:0.076800pt;}
.ls10{letter-spacing:0.079467pt;}
.ls2d{letter-spacing:0.102400pt;}
.ls23{letter-spacing:0.117760pt;}
.ls2e{letter-spacing:0.117867pt;}
.ls29{letter-spacing:0.125333pt;}
.ls3{letter-spacing:0.126720pt;}
.ls1e{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.161280pt;}
.ls5{letter-spacing:0.162133pt;}
.ls2{letter-spacing:0.189867pt;}
.ls15{letter-spacing:0.220267pt;}
.lsf{letter-spacing:0.227733pt;}
.ls2a{letter-spacing:0.230400pt;}
.ls2b{letter-spacing:0.268800pt;}
.ls28{letter-spacing:0.278933pt;}
.ls21{letter-spacing:0.279040pt;}
.ls19{letter-spacing:0.304640pt;}
.ls16{letter-spacing:0.312533pt;}
.lsb{letter-spacing:0.332800pt;}
.ls1a{letter-spacing:0.398080pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls24{letter-spacing:2.693120pt;}
.ls13{letter-spacing:8.336640pt;}
.ls1c{letter-spacing:10.825028pt;}
.ls1b{letter-spacing:10.826643pt;}
.ls25{letter-spacing:22.671360pt;}
.ls17{letter-spacing:34.831360pt;}
.ls22{letter-spacing:52.111360pt;}
.ls1f{letter-spacing:347.674880pt;}
.ws14{word-spacing:-64.000000pt;}
.ws0{word-spacing:-24.154880pt;}
.ws12{word-spacing:-18.961387pt;}
.ws5{word-spacing:-17.112747pt;}
.ws4{word-spacing:-17.085013pt;}
.ws6{word-spacing:-16.839680pt;}
.ws1{word-spacing:-16.718613pt;}
.wsd{word-spacing:-13.639680pt;}
.ws13{word-spacing:-13.619413pt;}
.ws1b{word-spacing:-13.585813pt;}
.ws1e{word-spacing:-13.575680pt;}
.ws1d{word-spacing:-13.537280pt;}
.wsc{word-spacing:-13.534613pt;}
.ws1c{word-spacing:-13.432213pt;}
.ws21{word-spacing:-13.424747pt;}
.ws20{word-spacing:-13.409280pt;}
.wse{word-spacing:-13.386347pt;}
.wsf{word-spacing:-13.383680pt;}
.ws10{word-spacing:-13.373547pt;}
.wsa{word-spacing:-13.306880pt;}
.wsb{word-spacing:-13.189013pt;}
.ws11{word-spacing:-13.160747pt;}
.ws9{word-spacing:-13.114880pt;}
.ws1a{word-spacing:-13.104747pt;}
.ws1f{word-spacing:-13.083947pt;}
.ws7{word-spacing:-13.030613pt;}
.ws19{word-spacing:-12.894613pt;}
.ws16{word-spacing:-12.005120pt;}
.ws3{word-spacing:-11.953280pt;}
.ws17{word-spacing:-11.362241pt;}
.ws18{word-spacing:-11.360546pt;}
.ws8{word-spacing:-8.389120pt;}
.ws15{word-spacing:-7.810560pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-13.255253pt;}
._13{margin-left:-11.812693pt;}
._16{margin-left:-10.878293pt;}
._12{margin-left:-8.103253pt;}
._a{margin-left:-4.071680pt;}
._9{margin-left:-2.984107pt;}
._0{margin-left:-1.282560pt;}
._2{width:1.009280pt;}
._3{width:1.910827pt;}
._7{width:3.186133pt;}
._8{width:4.132053pt;}
._6{width:5.299200pt;}
._b{width:6.231893pt;}
._c{width:7.669333pt;}
._1d{width:8.890880pt;}
._d{width:10.598400pt;}
._e{width:11.616853pt;}
._2c{width:15.132160pt;}
._2e{width:16.063360pt;}
._2d{width:17.840640pt;}
._2b{width:19.143680pt;}
._2a{width:20.078080pt;}
._30{width:21.360640pt;}
._10{width:23.088640pt;}
._f{width:24.435200pt;}
._1b{width:27.614720pt;}
._1c{width:28.627627pt;}
._31{width:30.310400pt;}
._33{width:37.153280pt;}
._32{width:53.332480pt;}
._15{width:58.667733pt;}
._23{width:61.951147pt;}
._17{width:73.960960pt;}
._22{width:78.084267pt;}
._29{width:79.556267pt;}
._1e{width:92.474027pt;}
._2f{width:93.573440pt;}
._20{width:108.804053pt;}
._21{width:112.526933pt;}
._28{width:125.129387pt;}
._27{width:135.051947pt;}
._26{width:137.983147pt;}
._25{width:139.526827pt;}
._24{width:142.458027pt;}
._18{width:144.927787pt;}
._5{width:171.855787pt;}
._1f{width:175.493120pt;}
._4{width:374.748160pt;}
._19{width:581.829547pt;}
._1{width:751.215787pt;}
._11{width:754.831787pt;}
._1a{width:1927.982720pt;}
.fsb{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsd{font-size:40.865272pt;}
.fsc{font-size:40.871369pt;}
.fs4{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.fs0{font-size:128.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:4.960000pt;}
.y37{bottom:5.120000pt;}
.yfd{bottom:5.168700pt;}
.y43{bottom:27.712000pt;}
.y35{bottom:27.840000pt;}
.y1d{bottom:48.800000pt;}
.y34{bottom:50.560000pt;}
.y1c{bottom:64.960000pt;}
.y40{bottom:73.280000pt;}
.y3f{bottom:96.160000pt;}
.y17{bottom:101.280000pt;}
.y42{bottom:104.160000pt;}
.ye0{bottom:104.480000pt;}
.y150{bottom:111.040000pt;}
.yfa{bottom:112.480000pt;}
.y116{bottom:115.040000pt;}
.y178{bottom:116.320000pt;}
.yc3{bottom:116.800000pt;}
.y3e{bottom:118.880000pt;}
.y16{bottom:124.032000pt;}
.y132{bottom:124.992000pt;}
.ydf{bottom:130.432000pt;}
.yf9{bottom:131.712000pt;}
.yfc{bottom:133.988082pt;}
.y177{bottom:134.266667pt;}
.y3d{bottom:141.760000pt;}
.y115{bottom:142.426667pt;}
.yc2{bottom:142.746667pt;}
.y131{bottom:144.186667pt;}
.y15{bottom:146.906667pt;}
.y41{bottom:149.626667pt;}
.yde{bottom:150.426667pt;}
.yf8{bottom:151.066667pt;}
.y176{bottom:152.186667pt;}
.y114{bottom:161.786667pt;}
.y130{bottom:163.546667pt;}
.y3c{bottom:164.480000pt;}
.y88{bottom:166.106667pt;}
.yb3{bottom:167.226667pt;}
.ydd{bottom:168.346667pt;}
.yc1{bottom:168.666667pt;}
.y14f{bottom:168.986667pt;}
.y175{bottom:170.106667pt;}
.yf7{bottom:170.426667pt;}
.y3b{bottom:172.506667pt;}
.y14{bottom:173.306667pt;}
.y12f{bottom:182.906667pt;}
.y87{bottom:184.026667pt;}
.yb2{bottom:185.146667pt;}
.y174{bottom:188.026667pt;}
.y14e{bottom:188.346667pt;}
.y113{bottom:189.146667pt;}
.yf6{bottom:189.786667pt;}
.ydc{bottom:194.266667pt;}
.yc0{bottom:194.586667pt;}
.y86{bottom:201.946667pt;}
.y12e{bottom:202.266667pt;}
.yb1{bottom:203.066667pt;}
.y173{bottom:205.946667pt;}
.y112{bottom:208.346667pt;}
.ydb{bottom:212.026667pt;}
.y13{bottom:212.346667pt;}
.yf5{bottom:215.706667pt;}
.yfb{bottom:216.576617pt;}
.y85{bottom:219.866667pt;}
.ybf{bottom:220.506667pt;}
.yb0{bottom:220.986667pt;}
.y12d{bottom:221.466667pt;}
.y172{bottom:223.866667pt;}
.y14d{bottom:224.026667pt;}
.y111{bottom:227.706667pt;}
.yda{bottom:229.946667pt;}
.y84{bottom:237.786667pt;}
.ybe{bottom:238.426667pt;}
.yaf{bottom:238.906667pt;}
.y12c{bottom:240.826667pt;}
.y171{bottom:241.626667pt;}
.yd9{bottom:247.866667pt;}
.y12{bottom:251.386667pt;}
.y110{bottom:255.066667pt;}
.y83{bottom:255.706667pt;}
.ybd{bottom:256.346667pt;}
.yae{bottom:256.826667pt;}
.y170{bottom:259.546667pt;}
.y12b{bottom:260.186667pt;}
.y14c{bottom:265.626667pt;}
.yd8{bottom:265.786667pt;}
.y82{bottom:273.466667pt;}
.ybc{bottom:274.266667pt;}
.yad{bottom:274.746667pt;}
.y16f{bottom:277.466667pt;}
.y10f{bottom:278.266667pt;}
.y12a{bottom:279.546667pt;}
.yd7{bottom:283.706667pt;}
.y14b{bottom:284.986667pt;}
.y11{bottom:290.426667pt;}
.y81{bottom:291.386667pt;}
.ybb{bottom:292.026667pt;}
.yac{bottom:292.666667pt;}
.y16e{bottom:295.386667pt;}
.y129{bottom:298.746667pt;}
.y14a{bottom:304.346667pt;}
.y80{bottom:309.306667pt;}
.yd6{bottom:309.626667pt;}
.yba{bottom:309.946667pt;}
.yab{bottom:310.426667pt;}
.y16d{bottom:313.306667pt;}
.y128{bottom:318.106667pt;}
.y149{bottom:323.706667pt;}
.y7f{bottom:327.226667pt;}
.yd5{bottom:327.546667pt;}
.yb9{bottom:327.866667pt;}
.y10{bottom:328.186667pt;}
.yaa{bottom:328.346667pt;}
.y16c{bottom:331.226667pt;}
.y127{bottom:337.466667pt;}
.y148{bottom:342.906667pt;}
.y7e{bottom:345.186667pt;}
.yd4{bottom:345.506667pt;}
.yb8{bottom:345.826667pt;}
.ya9{bottom:346.306667pt;}
.y16b{bottom:349.186667pt;}
.y3a{bottom:354.786667pt;}
.y126{bottom:356.866667pt;}
.yf{bottom:360.706667pt;}
.y147{bottom:362.306667pt;}
.y7d{bottom:363.106667pt;}
.yd3{bottom:363.426667pt;}
.yb7{bottom:363.746667pt;}
.ya8{bottom:364.226667pt;}
.y16a{bottom:367.106667pt;}
.y125{bottom:376.066667pt;}
.y39{bottom:377.666667pt;}
.y7c{bottom:381.026667pt;}
.yd2{bottom:381.186667pt;}
.yb6{bottom:381.666667pt;}
.ya7{bottom:382.146667pt;}
.y63{bottom:384.546667pt;}
.y169{bottom:385.026667pt;}
.ye{bottom:393.346667pt;}
.y124{bottom:395.426667pt;}
.yd1{bottom:399.106667pt;}
.ya6{bottom:400.066667pt;}
.y38{bottom:400.386667pt;}
.y146{bottom:401.026667pt;}
.y62{bottom:402.466667pt;}
.y168{bottom:402.946667pt;}
.yb5{bottom:407.586667pt;}
.y123{bottom:414.786667pt;}
.y7b{bottom:416.706667pt;}
.yd0{bottom:417.026667pt;}
.ya5{bottom:417.986667pt;}
.y145{bottom:420.226667pt;}
.y61{bottom:420.386667pt;}
.y167{bottom:420.706667pt;}
.yd{bottom:421.506667pt;}
.y36{bottom:423.106667pt;}
.y122{bottom:434.146667pt;}
.ycf{bottom:434.946667pt;}
.ya4{bottom:435.906667pt;}
.y60{bottom:438.306667pt;}
.y166{bottom:438.626667pt;}
.y144{bottom:439.586667pt;}
.yc{bottom:440.226667pt;}
.y33{bottom:445.986667pt;}
.y121{bottom:453.346667pt;}
.ya3{bottom:453.826667pt;}
.y5f{bottom:456.066667pt;}
.y165{bottom:456.546667pt;}
.y7a{bottom:457.026667pt;}
.y143{bottom:458.946667pt;}
.yce{bottom:460.866667pt;}
.ya2{bottom:471.746667pt;}
.y120{bottom:472.706667pt;}
.y5e{bottom:473.986667pt;}
.y164{bottom:474.466667pt;}
.y79{bottom:474.786667pt;}
.y142{bottom:478.306667pt;}
.ycd{bottom:478.786667pt;}
.ya1{bottom:489.506667pt;}
.y5d{bottom:491.906667pt;}
.y11f{bottom:492.066667pt;}
.y163{bottom:492.386667pt;}
.y78{bottom:492.706667pt;}
.yb{bottom:494.466667pt;}
.ycc{bottom:496.706667pt;}
.y141{bottom:497.666667pt;}
.ya0{bottom:507.426667pt;}
.y162{bottom:510.306667pt;}
.y11e{bottom:511.426667pt;}
.y5c{bottom:513.826667pt;}
.y31{bottom:514.306667pt;}
.y77{bottom:514.626667pt;}
.y140{bottom:516.866667pt;}
.y9f{bottom:525.346667pt;}
.y161{bottom:528.226667pt;}
.y11d{bottom:530.786667pt;}
.y5b{bottom:531.746667pt;}
.y76{bottom:532.546667pt;}
.y13f{bottom:536.226667pt;}
.y30{bottom:542.146667pt;}
.ya{bottom:542.626667pt;}
.y9e{bottom:543.266667pt;}
.y160{bottom:546.146667pt;}
.y5a{bottom:549.666667pt;}
.y11c{bottom:549.986667pt;}
.ycb{bottom:550.466667pt;}
.y75{bottom:554.466667pt;}
.y13e{bottom:555.586667pt;}
.y9d{bottom:561.186667pt;}
.yf4{bottom:562.466667pt;}
.y15f{bottom:564.066667pt;}
.y2f{bottom:564.866667pt;}
.y59{bottom:567.586667pt;}
.yca{bottom:568.226667pt;}
.y11b{bottom:568.386667pt;}
.y74{bottom:572.413333pt;}
.y13d{bottom:574.973333pt;}
.y9c{bottom:579.133333pt;}
.yf3{bottom:580.093333pt;}
.y15e{bottom:582.013333pt;}
.y11a{bottom:583.613333pt;}
.y58{bottom:585.533333pt;}
.yc9{bottom:586.173333pt;}
.y2e{bottom:587.773333pt;}
.y73{bottom:590.333333pt;}
.y9{bottom:594.013333pt;}
.y13c{bottom:594.173333pt;}
.y9b{bottom:597.053333pt;}
.yf2{bottom:597.693333pt;}
.y15d{bottom:599.773333pt;}
.y57{bottom:603.453333pt;}
.yc8{bottom:608.093333pt;}
.y2d{bottom:610.493333pt;}
.y72{bottom:612.253333pt;}
.y9a{bottom:614.973333pt;}
.y15c{bottom:617.693333pt;}
.y56{bottom:621.373333pt;}
.y13b{bottom:621.533333pt;}
.yf1{bottom:623.933333pt;}
.y8{bottom:626.653333pt;}
.y10e{bottom:629.533333pt;}
.y99{bottom:632.893333pt;}
.y2c{bottom:633.213333pt;}
.y15b{bottom:635.613333pt;}
.y55{bottom:639.133333pt;}
.y13a{bottom:640.893333pt;}
.yf0{bottom:643.133333pt;}
.y10d{bottom:647.133333pt;}
.y71{bottom:647.773333pt;}
.y98{bottom:650.813333pt;}
.y15a{bottom:653.533333pt;}
.y2b{bottom:656.093333pt;}
.y7{bottom:659.133333pt;}
.y139{bottom:660.253333pt;}
.y54{bottom:661.053333pt;}
.yef{bottom:662.493333pt;}
.y10c{bottom:664.573333pt;}
.y159{bottom:671.453333pt;}
.y97{bottom:676.573333pt;}
.y2a{bottom:678.813333pt;}
.y53{bottom:678.973333pt;}
.y138{bottom:679.453333pt;}
.y70{bottom:688.093333pt;}
.y158{bottom:689.373333pt;}
.y10b{bottom:690.813333pt;}
.y96{bottom:694.493333pt;}
.y52{bottom:696.893333pt;}
.yee{bottom:698.173333pt;}
.y137{bottom:698.813333pt;}
.y29{bottom:701.693333pt;}
.y6f{bottom:706.013333pt;}
.y157{bottom:707.293333pt;}
.y10a{bottom:710.173333pt;}
.y6{bottom:710.333333pt;}
.y95{bottom:712.413333pt;}
.y51{bottom:714.813333pt;}
.y136{bottom:718.173333pt;}
.y6e{bottom:723.933333pt;}
.y28{bottom:724.413333pt;}
.y156{bottom:725.213333pt;}
.y109{bottom:729.533333pt;}
.y94{bottom:730.333333pt;}
.y50{bottom:736.733333pt;}
.y135{bottom:737.533333pt;}
.yed{bottom:738.493333pt;}
.y155{bottom:743.133333pt;}
.y93{bottom:748.253333pt;}
.y108{bottom:748.733333pt;}
.y27{bottom:753.853333pt;}
.y4f{bottom:754.653333pt;}
.yec{bottom:756.413333pt;}
.y134{bottom:756.733333pt;}
.y6d{bottom:759.613333pt;}
.y154{bottom:761.053333pt;}
.y5{bottom:761.533333pt;}
.y92{bottom:766.173333pt;}
.y107{bottom:768.093333pt;}
.y4e{bottom:772.573333pt;}
.yeb{bottom:774.333333pt;}
.y133{bottom:776.093333pt;}
.y26{bottom:776.733333pt;}
.y153{bottom:778.813333pt;}
.y91{bottom:784.093333pt;}
.yb4{bottom:785.213333pt;}
.y181{bottom:790.333333pt;}
.y4d{bottom:790.493333pt;}
.yea{bottom:792.253333pt;}
.y4{bottom:794.213333pt;}
.y106{bottom:795.493333pt;}
.y152{bottom:796.773333pt;}
.y25{bottom:799.493333pt;}
.y6c{bottom:799.973333pt;}
.y90{bottom:802.053333pt;}
.y180{bottom:808.293333pt;}
.y4c{bottom:808.453333pt;}
.ye9{bottom:810.213333pt;}
.y105{bottom:814.853333pt;}
.y6b{bottom:817.893333pt;}
.y8f{bottom:819.973333pt;}
.y24{bottom:822.213333pt;}
.y4b{bottom:826.213333pt;}
.ye8{bottom:827.973333pt;}
.y151{bottom:832.453333pt;}
.y104{bottom:834.053333pt;}
.y6a{bottom:835.813333pt;}
.y8e{bottom:837.893333pt;}
.y17f{bottom:843.973333pt;}
.y4a{bottom:844.133333pt;}
.y23{bottom:845.093333pt;}
.ye7{bottom:845.893333pt;}
.y3{bottom:851.013333pt;}
.y103{bottom:853.413333pt;}
.y69{bottom:853.733333pt;}
.y8d{bottom:855.653333pt;}
.y17e{bottom:861.893333pt;}
.y49{bottom:866.053333pt;}
.y22{bottom:867.813333pt;}
.y68{bottom:871.493333pt;}
.ye6{bottom:871.813333pt;}
.y102{bottom:872.773333pt;}
.y8c{bottom:873.573333pt;}
.y17d{bottom:879.813333pt;}
.y48{bottom:883.973333pt;}
.y67{bottom:889.413333pt;}
.ye5{bottom:889.733333pt;}
.y119{bottom:890.533333pt;}
.y21{bottom:890.693333pt;}
.y8b{bottom:891.493333pt;}
.y101{bottom:892.133333pt;}
.y17c{bottom:897.733333pt;}
.y47{bottom:901.893333pt;}
.y66{bottom:907.333333pt;}
.ye4{bottom:907.653333pt;}
.y118{bottom:907.973333pt;}
.y8a{bottom:909.413333pt;}
.y100{bottom:911.333333pt;}
.y20{bottom:913.413333pt;}
.y17b{bottom:915.653333pt;}
.yc7{bottom:921.573333pt;}
.y46{bottom:923.813333pt;}
.y2{bottom:924.133333pt;}
.y65{bottom:925.253333pt;}
.ye3{bottom:925.573333pt;}
.y89{bottom:927.333333pt;}
.yff{bottom:930.693333pt;}
.y17a{bottom:933.573333pt;}
.y1f{bottom:936.293333pt;}
.yc6{bottom:937.893333pt;}
.y45{bottom:942.693333pt;}
.y117{bottom:943.173333pt;}
.ye2{bottom:943.493333pt;}
.yfe{bottom:950.053333pt;}
.y179{bottom:951.493333pt;}
.yc5{bottom:954.213333pt;}
.y1e{bottom:960.453333pt;}
.y64{bottom:963.013333pt;}
.y44{bottom:965.573333pt;}
.ye1{bottom:969.413333pt;}
.yc4{bottom:970.533333pt;}
.y1{bottom:981.893333pt;}
.y1b{bottom:987.333333pt;}
.y1a{bottom:1005.253333pt;}
.y19{bottom:1041.760000pt;}
.y18{bottom:1059.680000pt;}
.h10{height:22.720000pt;}
.h12{height:22.880000pt;}
.h1e{height:42.621201pt;}
.h1d{height:42.627561pt;}
.h7{height:42.649687pt;}
.h18{height:42.745000pt;}
.h14{height:45.472000pt;}
.h1b{height:46.370000pt;}
.h17{height:47.380000pt;}
.hc{height:52.834688pt;}
.ha{height:58.563750pt;}
.hb{height:60.519362pt;}
.h1a{height:61.410000pt;}
.h19{height:65.781915pt;}
.h11{height:68.320000pt;}
.h9{height:74.477812pt;}
.hf{height:76.671562pt;}
.h15{height:81.046875pt;}
.h16{height:88.611250pt;}
.hd{height:98.296875pt;}
.h6{height:99.937500pt;}
.he{height:101.357812pt;}
.h8{height:106.305937pt;}
.h4{height:109.437187pt;}
.h5{height:111.263750pt;}
.h2{height:127.312500pt;}
.h13{height:182.266667pt;}
.h3{height:196.593750pt;}
.h1c{height:333.282524pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:236.026667pt;}
.w4{width:359.106667pt;}
.w5{width:602.878584pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x12{left:7.200000pt;}
.x1c{left:13.403866pt;}
.x11{left:84.992000pt;}
.x1{left:94.431988pt;}
.x6{left:97.471988pt;}
.x14{left:98.911988pt;}
.xc{left:100.671988pt;}
.x1f{left:103.871988pt;}
.x2{left:108.671988pt;}
.xb{left:109.631988pt;}
.x3{left:111.871988pt;}
.x1a{left:118.431988pt;}
.x19{left:122.911988pt;}
.x18{left:132.191988pt;}
.x7{left:133.946655pt;}
.x10{left:207.866655pt;}
.x15{left:224.186655pt;}
.x1d{left:249.212351pt;}
.xf{left:261.826655pt;}
.xe{left:285.986655pt;}
.xa{left:289.346655pt;}
.x4{left:305.986655pt;}
.x9{left:314.786655pt;}
.x8{left:320.066655pt;}
.x13{left:321.026667pt;}
.xd{left:372.066655pt;}
.x5{left:396.733322pt;}
.x16{left:689.733322pt;}
.x1e{left:695.653322pt;}
.x1b{left:697.413322pt;}
.x17{left:698.879988pt;}
}




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