
    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_0c3c8b9aabffdedcde5455c9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6bf9a54a2fa65b5573e9de99.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_33f0633f9386bb7739d24374.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_24079985464e677661022d3c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_c9754142ecb33fd557c2df7b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a4804d2fd17736f896cdc5b7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_86be450e723228ac1655bebb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3c8de87964e9a70139b9c6ce.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941406;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_0784cd92a644d22b7f8999e3.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2e968d88c3f9fe41e25f0211.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.075684;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_22b380aadf13ea637d14557c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-18.720000px;}
.v5{vertical-align:-8.208000px;}
.v6{vertical-align:-1.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.600000px;}
.v2{vertical-align:18.720000px;}
.v4{vertical-align:23.340000px;}
.ls10{letter-spacing:-1.260000px;}
.ls2c{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.336000px;}
.ls2{letter-spacing:-0.253200px;}
.lse{letter-spacing:-0.252000px;}
.ls5{letter-spacing:-0.247800px;}
.ls2a{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.144000px;}
.ls30{letter-spacing:-0.075600px;}
.ls29{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.064800px;}
.ls22{letter-spacing:-0.036000px;}
.ls9{letter-spacing:-0.006480px;}
.ls19{letter-spacing:-0.000006px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.034560px;}
.lsa{letter-spacing:0.043200px;}
.ls12{letter-spacing:0.060600px;}
.ls13{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.138000px;}
.ls2f{letter-spacing:0.142800px;}
.ls16{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.175800px;}
.ls1{letter-spacing:0.178560px;}
.ls28{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.216000px;}
.ls2e{letter-spacing:0.252720px;}
.ls7{letter-spacing:0.276600px;}
.ls6{letter-spacing:0.282000px;}
.ls1a{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.334200px;}
.ls11{letter-spacing:0.452400px;}
.ls20{letter-spacing:16.632288px;}
.ls1f{letter-spacing:16.704000px;}
.lsb{letter-spacing:17.913600px;}
.ls15{letter-spacing:24.660000px;}
.ls14{letter-spacing:24.696000px;}
.ls1c{letter-spacing:24.840000px;}
.ls31{letter-spacing:27.240480px;}
.ls2d{letter-spacing:32.688000px;}
.ls24{letter-spacing:47.880288px;}
.ls23{letter-spacing:47.940000px;}
.ls18{letter-spacing:47.952000px;}
.ls21{letter-spacing:48.792000px;}
.lsd{letter-spacing:85.974048px;}
.ls27{letter-spacing:124.869600px;}
.ls26{letter-spacing:124.920000px;}
.ls25{letter-spacing:129.276000px;}
.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;}
}
.ws25{word-spacing:-48.816000px;}
.ws19{word-spacing:-37.913760px;}
.ws32{word-spacing:-32.576544px;}
.ws31{word-spacing:-32.544000px;}
.ws0{word-spacing:-31.380240px;}
.ws3{word-spacing:-31.242240px;}
.ws1{word-spacing:-30.989040px;}
.ws24{word-spacing:-29.810304px;}
.ws22{word-spacing:-29.777760px;}
.ws6{word-spacing:-27.174240px;}
.ws7{word-spacing:-27.167760px;}
.ws2b{word-spacing:-24.696000px;}
.ws2a{word-spacing:-24.588000px;}
.ws21{word-spacing:-24.440544px;}
.ws8{word-spacing:-24.408000px;}
.ws28{word-spacing:-24.372000px;}
.ws2f{word-spacing:-24.048000px;}
.wsd{word-spacing:-17.749560px;}
.ws11{word-spacing:-17.573760px;}
.ws27{word-spacing:-16.488000px;}
.wsf{word-spacing:-16.313760px;}
.wsa{word-spacing:-16.272000px;}
.ws14{word-spacing:-2.220000px;}
.ws15{word-spacing:-1.572000px;}
.ws4{word-spacing:-1.560240px;}
.ws1d{word-spacing:-1.416000px;}
.ws17{word-spacing:-1.296000px;}
.ws1a{word-spacing:-0.576000px;}
.ws34{word-spacing:-0.336960px;}
.ws33{word-spacing:-0.120240px;}
.ws2{word-spacing:-0.119520px;}
.ws2d{word-spacing:-0.072144px;}
.ws1f{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws23{word-spacing:0.073200px;}
.ws20{word-spacing:0.576000px;}
.ws1e{word-spacing:0.792000px;}
.ws13{word-spacing:0.936000px;}
.ws35{word-spacing:142.731360px;}
.ws2e{word-spacing:309.792000px;}
.ws26{word-spacing:375.312000px;}
.wsb{word-spacing:406.212000px;}
.wsc{word-spacing:493.500000px;}
.ws2c{word-spacing:520.632000px;}
.ws1c{word-spacing:529.392000px;}
.ws9{word-spacing:566.112000px;}
.ws1b{word-spacing:566.424000px;}
.ws12{word-spacing:574.032000px;}
.ws18{word-spacing:574.464000px;}
.ws10{word-spacing:696.355680px;}
.wse{word-spacing:743.276640px;}
.ws30{word-spacing:970.071840px;}
.ws29{word-spacing:1018.632000px;}
.ws16{word-spacing:1554.744000px;}
._5{margin-left:-3626.700000px;}
._24{margin-left:-3597.192000px;}
._1e{margin-left:-3042.081600px;}
._20{margin-left:-790.200000px;}
._1f{margin-left:-109.440000px;}
._6{margin-left:-19.353600px;}
._1c{margin-left:-17.352000px;}
._14{margin-left:-13.824000px;}
._4{margin-left:-12.514080px;}
._28{margin-left:-11.062080px;}
._18{margin-left:-9.989856px;}
._17{margin-left:-8.525520px;}
._e{margin-left:-6.410880px;}
._1{margin-left:-5.011200px;}
._19{margin-left:-3.990240px;}
._2{margin-left:-2.980800px;}
._0{margin-left:-1.814400px;}
._3{width:1.166400px;}
._13{width:2.762400px;}
._12{width:5.594400px;}
._16{width:7.992000px;}
._27{width:12.124320px;}
._1b{width:17.526000px;}
._11{width:22.245600px;}
._21{width:25.519200px;}
._15{width:47.284800px;}
._1d{width:71.810880px;}
._9{width:392.233200px;}
._8{width:444.756960px;}
._22{width:511.188000px;}
._1a{width:519.108000px;}
._7{width:577.464000px;}
._b{width:602.459040px;}
._a{width:654.636960px;}
._d{width:681.152160px;}
._26{width:695.124000px;}
._c{width:733.413600px;}
._f{width:752.208960px;}
._10{width:915.497760px;}
._25{width:946.440000px;}
._23{width:2211.390960px;}
.fc8{color:rgb(228,15,19);}
.fc7{color:rgb(112,48,160);}
.fc5{color:rgb(0,60,104);}
.fc6{color:rgb(255,0,0);}
.fc3{color:rgb(137,151,178);}
.fc2{color:rgb(71,97,147);}
.fc1{color:rgb(0,80,139);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:51.840000px;}
.fsc{font-size:59.760000px;}
.fs7{font-size:72.000000px;}
.fs12{font-size:72.144000px;}
.fs8{font-size:77.760000px;}
.fsa{font-size:77.904000px;}
.fs15{font-size:84.240000px;}
.fs17{font-size:84.384000px;}
.fs6{font-size:108.000000px;}
.fsb{font-size:108.144000px;}
.fs4{font-size:120.240000px;}
.fs5{font-size:120.384000px;}
.fs13{font-size:131.760000px;}
.fs14{font-size:131.904000px;}
.fs0{font-size:138.240000px;}
.fsd{font-size:144.000000px;}
.fse{font-size:144.144000px;}
.fs11{font-size:156.240000px;}
.fsf{font-size:167.760000px;}
.fs10{font-size:167.904000px;}
.fs3{font-size:192.240000px;}
.fs1{font-size:216.000000px;}
.fs2{font-size:216.144000px;}
.fs16{font-size:264.384000px;}
.y129{bottom:-1.512000px;}
.y0{bottom:0.000000px;}
.yd7{bottom:4.140000px;}
.ycf{bottom:14.940000px;}
.y141{bottom:20.160000px;}
.yc5{bottom:25.740000px;}
.y10e{bottom:32.940000px;}
.y134{bottom:32.976000px;}
.y6f{bottom:33.804000px;}
.y1a{bottom:33.840000px;}
.y13f{bottom:34.380000px;}
.y140{bottom:45.360000px;}
.y19{bottom:58.212000px;}
.y55{bottom:67.608000px;}
.yb0{bottom:73.188000px;}
.y2c{bottom:75.165000px;}
.y1d{bottom:75.210000px;}
.y20{bottom:75.240000px;}
.y25{bottom:75.270000px;}
.y2f{bottom:75.315000px;}
.y8f{bottom:81.396000px;}
.y71{bottom:81.432000px;}
.y47{bottom:87.336000px;}
.y18{bottom:90.972000px;}
.y39{bottom:100.512000px;}
.ye8{bottom:100.584000px;}
.yd6{bottom:104.295000px;}
.yb8{bottom:104.370000px;}
.yaf{bottom:105.264000px;}
.y5a{bottom:113.004000px;}
.y8e{bottom:113.616000px;}
.yd5{bottom:117.540000px;}
.y144{bottom:118.296000px;}
.y46{bottom:119.736000px;}
.y17{bottom:123.408000px;}
.yae{bottom:126.864000px;}
.y58{bottom:127.980000px;}
.ycb{bottom:128.340000px;}
.y3a{bottom:131.400000px;}
.y9d{bottom:134.424000px;}
.y8d{bottom:135.216000px;}
.y79{bottom:136.260000px;}
.ybe{bottom:139.140000px;}
.y59{bottom:145.764000px;}
.y6e{bottom:147.492000px;}
.yad{bottom:148.464000px;}
.y2{bottom:150.405000px;}
.ye7{bottom:150.630000px;}
.y16{bottom:155.805000px;}
.y7d{bottom:157.710000px;}
.y37{bottom:159.150000px;}
.y12{bottom:160.455000px;}
.y105{bottom:162.870000px;}
.y9c{bottom:166.650000px;}
.y8c{bottom:167.295000px;}
.ydd{bottom:173.235000px;}
.y52{bottom:173.595000px;}
.y32{bottom:177.480000px;}
.yac{bottom:180.510000px;}
.y36{bottom:182.550000px;}
.y6d{bottom:187.815000px;}
.y15{bottom:188.205000px;}
.y8b{bottom:188.895000px;}
.y13e{bottom:188.925000px;}
.y78{bottom:190.080000px;}
.y7c{bottom:190.110000px;}
.y44{bottom:194.865000px;}
.y104{bottom:194.910000px;}
.y9b{bottom:198.690000px;}
.ye6{bottom:200.850000px;}
.yda{bottom:201.495000px;}
.ycd{bottom:201.525000px;}
.ybb{bottom:201.570000px;}
.yab{bottom:202.110000px;}
.ydc{bottom:205.635000px;}
.y35{bottom:205.950000px;}
.y11{bottom:207.075000px;}
.yed{bottom:219.090000px;}
.y14{bottom:220.605000px;}
.y8a{bottom:220.935000px;}
.y34{bottom:229.350000px;}
.y4b{bottom:230.250000px;}
.y9a{bottom:230.730000px;}
.yd8{bottom:233.895000px;}
.ycc{bottom:233.925000px;}
.yba{bottom:233.970000px;}
.yaa{bottom:234.330000px;}
.y2e{bottom:235.080000px;}
.yd9{bottom:238.035000px;}
.y43{bottom:238.245000px;}
.y89{bottom:242.535000px;}
.y6c{bottom:242.565000px;}
.y13d{bottom:242.745000px;}
.y10{bottom:243.255000px;}
.y77{bottom:243.720000px;}
.ye5{bottom:250.890000px;}
.yec{bottom:251.490000px;}
.yc3{bottom:252.540000px;}
.y38{bottom:252.750000px;}
.y33{bottom:252.930000px;}
.y13{bottom:253.005000px;}
.yfe{bottom:254.085000px;}
.y57{bottom:255.135000px;}
.ya9{bottom:255.930000px;}
.y99{bottom:262.980000px;}
.y88{bottom:264.135000px;}
.y54{bottom:265.575000px;}
.y4a{bottom:267.150000px;}
.y1{bottom:268.560000px;}
.y2b{bottom:269.460000px;}
.ydb{bottom:270.465000px;}
.y64{bottom:270.720000px;}
.yfd{bottom:286.125000px;}
.y31{bottom:286.995000px;}
.ya8{bottom:288.000000px;}
.yf{bottom:289.515000px;}
.y128{bottom:291.060000px;}
.y42{bottom:291.705000px;}
.y98{bottom:295.020000px;}
.y87{bottom:296.355000px;}
.y13c{bottom:296.745000px;}
.y76{bottom:297.390000px;}
.y6b{bottom:298.365000px;}
.yd3{bottom:298.725000px;}
.yc2{bottom:298.770000px;}
.ye4{bottom:300.960000px;}
.y29{bottom:303.660000px;}
.y49{bottom:303.690000px;}
.yf5{bottom:306.825000px;}
.y124{bottom:309.270000px;}
.ya7{bottom:309.600000px;}
.y30{bottom:310.395000px;}
.y86{bottom:317.955000px;}
.y63{bottom:318.060000px;}
.yfc{bottom:318.165000px;}
.ye{bottom:325.725000px;}
.y133{bottom:327.030000px;}
.y97{bottom:327.060000px;}
.yd2{bottom:331.125000px;}
.yc1{bottom:331.170000px;}
.y10d{bottom:333.510000px;}
.y103{bottom:333.900000px;}
.y41{bottom:335.130000px;}
.y27{bottom:337.860000px;}
.y6a{bottom:338.685000px;}
.yf4{bottom:339.045000px;}
.y48{bottom:340.230000px;}
.ya6{bottom:341.640000px;}
.y127{bottom:343.410000px;}
.y2d{bottom:344.625000px;}
.yd4{bottom:346.065000px;}
.y123{bottom:348.120000px;}
.yb6{bottom:348.660000px;}
.y85{bottom:350.025000px;}
.yfb{bottom:350.385000px;}
.y13b{bottom:350.610000px;}
.ye3{bottom:351.180000px;}
.y75{bottom:351.210000px;}
.y96{bottom:359.280000px;}
.y132{bottom:359.430000px;}
.yb9{bottom:360.540000px;}
.yce{bottom:362.265000px;}
.ya5{bottom:363.240000px;}
.yd0{bottom:363.525000px;}
.ybf{bottom:363.570000px;}
.y62{bottom:365.400000px;}
.ybc{bottom:365.940000px;}
.y12f{bottom:365.970000px;}
.yf3{bottom:371.085000px;}
.y84{bottom:371.625000px;}
.yd{bottom:371.985000px;}
.y24{bottom:372.060000px;}
.y5{bottom:374.940000px;}
.y10c{bottom:377.790000px;}
.y40{bottom:378.330000px;}
.yd1{bottom:378.465000px;}
.y2a{bottom:378.870000px;}
.yb5{bottom:380.880000px;}
.yfa{bottom:382.425000px;}
.y14a{bottom:386.430000px;}
.y95{bottom:391.320000px;}
.y131{bottom:391.830000px;}
.y51{bottom:393.555000px;}
.y69{bottom:394.125000px;}
.ya4{bottom:395.460000px;}
.yca{bottom:395.925000px;}
.y61{bottom:397.830000px;}
.y102{bottom:397.980000px;}
.ye2{bottom:401.220000px;}
.yf2{bottom:403.125000px;}
.y83{bottom:403.665000px;}
.y13a{bottom:404.250000px;}
.y74{bottom:404.850000px;}
.y126{bottom:405.570000px;}
.yc{bottom:408.345000px;}
.y22{bottom:409.500000px;}
.y113{bottom:410.550000px;}
.yb4{bottom:412.920000px;}
.y28{bottom:413.100000px;}
.yf9{bottom:414.465000px;}
.y122{bottom:416.265000px;}
.y94{bottom:423.360000px;}
.y149{bottom:425.490000px;}
.y14b{bottom:425.700000px;}
.ya3{bottom:427.500000px;}
.yc8{bottom:428.370000px;}
.y50{bottom:430.095000px;}
.y101{bottom:430.200000px;}
.y3f{bottom:431.790000px;}
.y10b{bottom:433.470000px;}
.y11a{bottom:434.370000px;}
.yf1{bottom:435.345000px;}
.y82{bottom:435.885000px;}
.yb{bottom:444.345000px;}
.yb3{bottom:444.990000px;}
.y60{bottom:445.350000px;}
.yf8{bottom:446.730000px;}
.y1f{bottom:446.940000px;}
.y26{bottom:447.330000px;}
.y68{bottom:447.990000px;}
.ya2{bottom:449.100000px;}
.ye1{bottom:451.290000px;}
.y121{bottom:452.985000px;}
.yc9{bottom:454.110000px;}
.y112{bottom:454.830000px;}
.y93{bottom:455.610000px;}
.y81{bottom:457.485000px;}
.y139{bottom:458.070000px;}
.y56{bottom:458.355000px;}
.y73{bottom:458.535000px;}
.yc7{bottom:460.770000px;}
.y100{bottom:462.270000px;}
.y12e{bottom:462.855000px;}
.y148{bottom:464.580000px;}
.y4f{bottom:466.815000px;}
.yf0{bottom:467.430000px;}
.y53{bottom:468.615000px;}
.ybd{bottom:470.310000px;}
.ya1{bottom:470.730000px;}
.yb7{bottom:473.940000px;}
.y3e{bottom:475.350000px;}
.yb2{bottom:477.210000px;}
.y5f{bottom:477.750000px;}
.y119{bottom:478.470000px;}
.yf7{bottom:478.770000px;}
.ya{bottom:480.345000px;}
.y1c{bottom:484.380000px;}
.y23{bottom:484.740000px;}
.yc4{bottom:486.510000px;}
.y92{bottom:487.650000px;}
.y80{bottom:489.525000px;}
.y120{bottom:489.750000px;}
.y67{bottom:490.110000px;}
.y4{bottom:490.860000px;}
.y12d{bottom:492.015000px;}
.ya0{bottom:492.330000px;}
.yc6{bottom:493.170000px;}
.yff{bottom:494.310000px;}
.yeb{bottom:495.570000px;}
.y11b{bottom:497.310000px;}
.y111{bottom:498.930000px;}
.yef{bottom:499.470000px;}
.ye0{bottom:501.510000px;}
.yc0{bottom:502.710000px;}
.y4e{bottom:503.205000px;}
.y147{bottom:503.460000px;}
.y118{bottom:507.675000px;}
.yb1{bottom:509.250000px;}
.yf6{bottom:510.810000px;}
.y7f{bottom:511.170000px;}
.y138{bottom:512.100000px;}
.y72{bottom:512.355000px;}
.y125{bottom:514.695000px;}
.y143{bottom:515.910000px;}
.y21{bottom:517.500000px;}
.y3d{bottom:518.580000px;}
.y91{bottom:519.690000px;}
.y10a{bottom:521.850000px;}
.y9f{bottom:524.370000px;}
.y5e{bottom:525.090000px;}
.y11f{bottom:526.290000px;}
.y9{bottom:526.650000px;}
.y66{bottom:532.050000px;}
.y12c{bottom:536.115000px;}
.y90{bottom:541.290000px;}
.y146{bottom:542.520000px;}
.y110{bottom:543.030000px;}
.y7e{bottom:543.210000px;}
.yea{bottom:545.655000px;}
.y9e{bottom:545.970000px;}
.y3{bottom:549.180000px;}
.ydf{bottom:551.550000px;}
.y117{bottom:551.775000px;}
.y130{bottom:554.970000px;}
.y5d{bottom:557.490000px;}
.y1e{bottom:559.590000px;}
.y3c{bottom:561.780000px;}
.y8{bottom:562.830000px;}
.y11e{bottom:563.010000px;}
.y137{bottom:565.920000px;}
.y109{bottom:565.950000px;}
.y4d{bottom:566.820000px;}
.y7b{bottom:567.645000px;}
.y65{bottom:575.610000px;}
.y12b{bottom:580.215000px;}
.y10f{bottom:587.340000px;}
.y5c{bottom:589.935000px;}
.y145{bottom:595.260000px;}
.y1b{bottom:595.650000px;}
.ye9{bottom:595.695000px;}
.y116{bottom:596.055000px;}
.y7{bottom:598.830000px;}
.y4c{bottom:599.250000px;}
.y11d{bottom:600.450000px;}
.yde{bottom:601.590000px;}
.y142{bottom:603.330000px;}
.y3b{bottom:604.980000px;}
.y108{bottom:610.275000px;}
.y7a{bottom:614.805000px;}
.y136{bottom:619.740000px;}
.y12a{bottom:624.495000px;}
.y115{bottom:672.510000px;}
.y11c{bottom:695.190000px;}
.y45{bottom:698.145000px;}
.y135{bottom:698.190000px;}
.y70{bottom:698.505000px;}
.y5b{bottom:700.020000px;}
.yee{bottom:700.770000px;}
.y106{bottom:701.670000px;}
.y6{bottom:702.150000px;}
.y114{bottom:730.875000px;}
.y107{bottom:784.800000px;}
.hd{height:59.383125px;}
.h12{height:59.439023px;}
.h9{height:71.613281px;}
.h1d{height:73.722656px;}
.h1e{height:73.870102px;}
.h2c{height:75.093750px;}
.h2d{height:75.243937px;}
.hc{height:77.342344px;}
.h10{height:77.485570px;}
.h8{height:82.476562px;}
.h31{height:82.676953px;}
.h29{height:83.787539px;}
.h2f{height:83.930766px;}
.he{height:96.062344px;}
.h2e{height:99.211922px;}
.h30{height:104.681602px;}
.h7{height:107.419922px;}
.h11{height:107.563148px;}
.ha{height:110.583984px;}
.h15{height:110.731430px;}
.h5{height:119.594180px;}
.h6{height:119.737406px;}
.h32{height:123.116836px;}
.h19{height:125.406562px;}
.h18{height:125.556750px;}
.h16{height:126.859922px;}
.h26{height:131.052305px;}
.h27{height:131.195531px;}
.h1{height:141.547500px;}
.h13{height:143.226562px;}
.h14{height:143.369789px;}
.h1c{height:155.400820px;}
.hb{height:163.980000px;}
.h1a{height:166.858945px;}
.h1b{height:175.118625px;}
.h17{height:191.207461px;}
.h4{height:196.839492px;}
.h2{height:214.839844px;}
.h3{height:214.983070px;}
.h28{height:221.167969px;}
.h2a{height:221.315414px;}
.h1f{height:226.980000px;}
.h2b{height:262.963969px;}
.h20{height:449.460000px;}
.h22{height:453.780000px;}
.hf{height:622.260000px;}
.h21{height:670.860000px;}
.h24{height:680.580000px;}
.h25{height:684.720000px;}
.h23{height:784.260000px;}
.h0{height:810.000000px;}
.w2{width:172.980000px;}
.w3{width:224.460000px;}
.w5{width:276.840000px;}
.w4{width:277.020000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x10{left:10.836000px;}
.x61{left:15.083979px;}
.x3b{left:23.903979px;}
.x2c{left:29.879979px;}
.x6b{left:34.271979px;}
.x5{left:35.855979px;}
.x2a{left:41.507979px;}
.xf{left:43.200000px;}
.x3f{left:44.459979px;}
.x35{left:46.367979px;}
.x26{left:48.167979px;}
.x5c{left:53.027979px;}
.x5d{left:55.151979px;}
.x6{left:60.515979px;}
.x2f{left:64.547979px;}
.x30{left:65.879979px;}
.x52{left:69.443979px;}
.x12{left:71.315979px;}
.x59{left:72.755979px;}
.x3c{left:75.347979px;}
.x50{left:82.980000px;}
.x11{left:90.431979px;}
.x60{left:95.687979px;}
.x16{left:98.351979px;}
.x65{left:105.803979px;}
.x2e{left:110.699979px;}
.x2d{left:116.819979px;}
.x3{left:118.871979px;}
.x53{left:123.443979px;}
.x47{left:155.159979px;}
.x4d{left:185.295000px;}
.x1c{left:216.000000px;}
.x4{left:226.724979px;}
.x66{left:237.704979px;}
.x55{left:244.439979px;}
.xd{left:253.514979px;}
.x2b{left:255.674979px;}
.x54{left:261.359979px;}
.x18{left:263.054979px;}
.x17{left:265.574979px;}
.x1f{left:284.474979px;}
.xe{left:293.114979px;}
.x1d{left:305.354979px;}
.x43{left:307.620000px;}
.x6d{left:317.189979px;}
.x1e{left:319.754979px;}
.x6e{left:322.409979px;}
.x5b{left:332.129979px;}
.x14{left:344.369979px;}
.x31{left:352.334979px;}
.x48{left:359.849979px;}
.x41{left:457.664979px;}
.x20{left:466.199979px;}
.x15{left:477.434979px;}
.x1a{left:486.539979px;}
.x19{left:489.059979px;}
.x2{left:493.454979px;}
.x1{left:505.289979px;}
.x13{left:508.754979px;}
.x23{left:511.019979px;}
.x21{left:513.569979px;}
.x32{left:523.184979px;}
.x5a{left:531.329979px;}
.x22{left:543.269979px;}
.x44{left:584.280000px;}
.x6f{left:593.309979px;}
.x49{left:636.584979px;}
.x56{left:643.709979px;}
.x57{left:645.689979px;}
.x24{left:696.704979px;}
.x1b{left:715.604979px;}
.x25{left:721.364979px;}
.x27{left:725.069979px;}
.x34{left:755.789979px;}
.x33{left:793.409979px;}
.x36{left:798.764979px;}
.x40{left:830.339979px;}
.x45{left:860.940000px;}
.x9{left:886.829979px;}
.xa{left:889.349979px;}
.xb{left:903.959979px;}
.x8{left:905.759979px;}
.x51{left:907.379979px;}
.x29{left:910.514979px;}
.x4f{left:913.319979px;}
.x28{left:918.614979px;}
.x6c{left:930.059979px;}
.x4a{left:948.059979px;}
.x4b{left:956.519979px;}
.x39{left:971.174979px;}
.x37{left:983.414979px;}
.x3a{left:985.394979px;}
.xc{left:1018.619979px;}
.x5f{left:1028.159979px;}
.x38{left:1033.274979px;}
.x7{left:1082.339979px;}
.x3e{left:1089.389979px;}
.x3d{left:1102.349979px;}
.x62{left:1109.084979px;}
.x58{left:1128.989979px;}
.x42{left:1135.334979px;}
.x46{left:1137.600000px;}
.x5e{left:1174.679979px;}
.x63{left:1176.809979px;}
.x64{left:1186.094979px;}
.x4e{left:1197.974979px;}
.x69{left:1223.969979px;}
.x67{left:1234.259979px;}
.x68{left:1258.349979px;}
.x6a{left:1274.369979px;}
.x4c{left:1314.614979px;}
@media print{
.v1{vertical-align:-16.640000pt;}
.v5{vertical-align:-7.296000pt;}
.v6{vertical-align:-1.066667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.200000pt;}
.v2{vertical-align:16.640000pt;}
.v4{vertical-align:20.746667pt;}
.ls10{letter-spacing:-1.120000pt;}
.ls2c{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.298667pt;}
.ls2{letter-spacing:-0.225067pt;}
.lse{letter-spacing:-0.224000pt;}
.ls5{letter-spacing:-0.220267pt;}
.ls2a{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls30{letter-spacing:-0.067200pt;}
.ls29{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.057600pt;}
.ls22{letter-spacing:-0.032000pt;}
.ls9{letter-spacing:-0.005760pt;}
.ls19{letter-spacing:-0.000005pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.030720pt;}
.lsa{letter-spacing:0.038400pt;}
.ls12{letter-spacing:0.053867pt;}
.ls13{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.122667pt;}
.ls2f{letter-spacing:0.126933pt;}
.ls16{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.156267pt;}
.ls1{letter-spacing:0.158720pt;}
.ls28{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls2e{letter-spacing:0.224640pt;}
.ls7{letter-spacing:0.245867pt;}
.ls6{letter-spacing:0.250667pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.297067pt;}
.ls11{letter-spacing:0.402133pt;}
.ls20{letter-spacing:14.784256pt;}
.ls1f{letter-spacing:14.848000pt;}
.lsb{letter-spacing:15.923200pt;}
.ls15{letter-spacing:21.920000pt;}
.ls14{letter-spacing:21.952000pt;}
.ls1c{letter-spacing:22.080000pt;}
.ls31{letter-spacing:24.213760pt;}
.ls2d{letter-spacing:29.056000pt;}
.ls24{letter-spacing:42.560256pt;}
.ls23{letter-spacing:42.613333pt;}
.ls18{letter-spacing:42.624000pt;}
.ls21{letter-spacing:43.370667pt;}
.lsd{letter-spacing:76.421376pt;}
.ls27{letter-spacing:110.995200pt;}
.ls26{letter-spacing:111.040000pt;}
.ls25{letter-spacing:114.912000pt;}
.ws25{word-spacing:-43.392000pt;}
.ws19{word-spacing:-33.701120pt;}
.ws32{word-spacing:-28.956928pt;}
.ws31{word-spacing:-28.928000pt;}
.ws0{word-spacing:-27.893547pt;}
.ws3{word-spacing:-27.770880pt;}
.ws1{word-spacing:-27.545813pt;}
.ws24{word-spacing:-26.498048pt;}
.ws22{word-spacing:-26.469120pt;}
.ws6{word-spacing:-24.154880pt;}
.ws7{word-spacing:-24.149120pt;}
.ws2b{word-spacing:-21.952000pt;}
.ws2a{word-spacing:-21.856000pt;}
.ws21{word-spacing:-21.724928pt;}
.ws8{word-spacing:-21.696000pt;}
.ws28{word-spacing:-21.664000pt;}
.ws2f{word-spacing:-21.376000pt;}
.wsd{word-spacing:-15.777387pt;}
.ws11{word-spacing:-15.621120pt;}
.ws27{word-spacing:-14.656000pt;}
.wsf{word-spacing:-14.501120pt;}
.wsa{word-spacing:-14.464000pt;}
.ws14{word-spacing:-1.973333pt;}
.ws15{word-spacing:-1.397333pt;}
.ws4{word-spacing:-1.386880pt;}
.ws1d{word-spacing:-1.258667pt;}
.ws17{word-spacing:-1.152000pt;}
.ws1a{word-spacing:-0.512000pt;}
.ws34{word-spacing:-0.299520pt;}
.ws33{word-spacing:-0.106880pt;}
.ws2{word-spacing:-0.106240pt;}
.ws2d{word-spacing:-0.064128pt;}
.ws1f{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws23{word-spacing:0.065067pt;}
.ws20{word-spacing:0.512000pt;}
.ws1e{word-spacing:0.704000pt;}
.ws13{word-spacing:0.832000pt;}
.ws35{word-spacing:126.872320pt;}
.ws2e{word-spacing:275.370667pt;}
.ws26{word-spacing:333.610667pt;}
.wsb{word-spacing:361.077333pt;}
.wsc{word-spacing:438.666667pt;}
.ws2c{word-spacing:462.784000pt;}
.ws1c{word-spacing:470.570667pt;}
.ws9{word-spacing:503.210667pt;}
.ws1b{word-spacing:503.488000pt;}
.ws12{word-spacing:510.250667pt;}
.ws18{word-spacing:510.634667pt;}
.ws10{word-spacing:618.982827pt;}
.wse{word-spacing:660.690347pt;}
.ws30{word-spacing:862.286080pt;}
.ws29{word-spacing:905.450667pt;}
.ws16{word-spacing:1381.994667pt;}
._5{margin-left:-3223.733333pt;}
._24{margin-left:-3197.504000pt;}
._1e{margin-left:-2704.072533pt;}
._20{margin-left:-702.400000pt;}
._1f{margin-left:-97.280000pt;}
._6{margin-left:-17.203200pt;}
._1c{margin-left:-15.424000pt;}
._14{margin-left:-12.288000pt;}
._4{margin-left:-11.123627pt;}
._28{margin-left:-9.832960pt;}
._18{margin-left:-8.879872pt;}
._17{margin-left:-7.578240pt;}
._e{margin-left:-5.698560pt;}
._1{margin-left:-4.454400pt;}
._19{margin-left:-3.546880pt;}
._2{margin-left:-2.649600pt;}
._0{margin-left:-1.612800pt;}
._3{width:1.036800pt;}
._13{width:2.455467pt;}
._12{width:4.972800pt;}
._16{width:7.104000pt;}
._27{width:10.777173pt;}
._1b{width:15.578667pt;}
._11{width:19.773867pt;}
._21{width:22.683733pt;}
._15{width:42.030933pt;}
._1d{width:63.831893pt;}
._9{width:348.651733pt;}
._8{width:395.339520pt;}
._22{width:454.389333pt;}
._1a{width:461.429333pt;}
._7{width:513.301333pt;}
._b{width:535.519147pt;}
._a{width:581.899520pt;}
._d{width:605.468587pt;}
._26{width:617.888000pt;}
._c{width:651.923200pt;}
._f{width:668.630187pt;}
._10{width:813.775787pt;}
._25{width:841.280000pt;}
._23{width:1965.680853pt;}
.fs9{font-size:46.080000pt;}
.fsc{font-size:53.120000pt;}
.fs7{font-size:64.000000pt;}
.fs12{font-size:64.128000pt;}
.fs8{font-size:69.120000pt;}
.fsa{font-size:69.248000pt;}
.fs15{font-size:74.880000pt;}
.fs17{font-size:75.008000pt;}
.fs6{font-size:96.000000pt;}
.fsb{font-size:96.128000pt;}
.fs4{font-size:106.880000pt;}
.fs5{font-size:107.008000pt;}
.fs13{font-size:117.120000pt;}
.fs14{font-size:117.248000pt;}
.fs0{font-size:122.880000pt;}
.fsd{font-size:128.000000pt;}
.fse{font-size:128.128000pt;}
.fs11{font-size:138.880000pt;}
.fsf{font-size:149.120000pt;}
.fs10{font-size:149.248000pt;}
.fs3{font-size:170.880000pt;}
.fs1{font-size:192.000000pt;}
.fs2{font-size:192.128000pt;}
.fs16{font-size:235.008000pt;}
.y129{bottom:-1.344000pt;}
.y0{bottom:0.000000pt;}
.yd7{bottom:3.680000pt;}
.ycf{bottom:13.280000pt;}
.y141{bottom:17.920000pt;}
.yc5{bottom:22.880000pt;}
.y10e{bottom:29.280000pt;}
.y134{bottom:29.312000pt;}
.y6f{bottom:30.048000pt;}
.y1a{bottom:30.080000pt;}
.y13f{bottom:30.560000pt;}
.y140{bottom:40.320000pt;}
.y19{bottom:51.744000pt;}
.y55{bottom:60.096000pt;}
.yb0{bottom:65.056000pt;}
.y2c{bottom:66.813333pt;}
.y1d{bottom:66.853333pt;}
.y20{bottom:66.880000pt;}
.y25{bottom:66.906667pt;}
.y2f{bottom:66.946667pt;}
.y8f{bottom:72.352000pt;}
.y71{bottom:72.384000pt;}
.y47{bottom:77.632000pt;}
.y18{bottom:80.864000pt;}
.y39{bottom:89.344000pt;}
.ye8{bottom:89.408000pt;}
.yd6{bottom:92.706667pt;}
.yb8{bottom:92.773333pt;}
.yaf{bottom:93.568000pt;}
.y5a{bottom:100.448000pt;}
.y8e{bottom:100.992000pt;}
.yd5{bottom:104.480000pt;}
.y144{bottom:105.152000pt;}
.y46{bottom:106.432000pt;}
.y17{bottom:109.696000pt;}
.yae{bottom:112.768000pt;}
.y58{bottom:113.760000pt;}
.ycb{bottom:114.080000pt;}
.y3a{bottom:116.800000pt;}
.y9d{bottom:119.488000pt;}
.y8d{bottom:120.192000pt;}
.y79{bottom:121.120000pt;}
.ybe{bottom:123.680000pt;}
.y59{bottom:129.568000pt;}
.y6e{bottom:131.104000pt;}
.yad{bottom:131.968000pt;}
.y2{bottom:133.693333pt;}
.ye7{bottom:133.893333pt;}
.y16{bottom:138.493333pt;}
.y7d{bottom:140.186667pt;}
.y37{bottom:141.466667pt;}
.y12{bottom:142.626667pt;}
.y105{bottom:144.773333pt;}
.y9c{bottom:148.133333pt;}
.y8c{bottom:148.706667pt;}
.ydd{bottom:153.986667pt;}
.y52{bottom:154.306667pt;}
.y32{bottom:157.760000pt;}
.yac{bottom:160.453333pt;}
.y36{bottom:162.266667pt;}
.y6d{bottom:166.946667pt;}
.y15{bottom:167.293333pt;}
.y8b{bottom:167.906667pt;}
.y13e{bottom:167.933333pt;}
.y78{bottom:168.960000pt;}
.y7c{bottom:168.986667pt;}
.y44{bottom:173.213333pt;}
.y104{bottom:173.253333pt;}
.y9b{bottom:176.613333pt;}
.ye6{bottom:178.533333pt;}
.yda{bottom:179.106667pt;}
.ycd{bottom:179.133333pt;}
.ybb{bottom:179.173333pt;}
.yab{bottom:179.653333pt;}
.ydc{bottom:182.786667pt;}
.y35{bottom:183.066667pt;}
.y11{bottom:184.066667pt;}
.yed{bottom:194.746667pt;}
.y14{bottom:196.093333pt;}
.y8a{bottom:196.386667pt;}
.y34{bottom:203.866667pt;}
.y4b{bottom:204.666667pt;}
.y9a{bottom:205.093333pt;}
.yd8{bottom:207.906667pt;}
.ycc{bottom:207.933333pt;}
.yba{bottom:207.973333pt;}
.yaa{bottom:208.293333pt;}
.y2e{bottom:208.960000pt;}
.yd9{bottom:211.586667pt;}
.y43{bottom:211.773333pt;}
.y89{bottom:215.586667pt;}
.y6c{bottom:215.613333pt;}
.y13d{bottom:215.773333pt;}
.y10{bottom:216.226667pt;}
.y77{bottom:216.640000pt;}
.ye5{bottom:223.013333pt;}
.yec{bottom:223.546667pt;}
.yc3{bottom:224.480000pt;}
.y38{bottom:224.666667pt;}
.y33{bottom:224.826667pt;}
.y13{bottom:224.893333pt;}
.yfe{bottom:225.853333pt;}
.y57{bottom:226.786667pt;}
.ya9{bottom:227.493333pt;}
.y99{bottom:233.760000pt;}
.y88{bottom:234.786667pt;}
.y54{bottom:236.066667pt;}
.y4a{bottom:237.466667pt;}
.y1{bottom:238.720000pt;}
.y2b{bottom:239.520000pt;}
.ydb{bottom:240.413333pt;}
.y64{bottom:240.640000pt;}
.yfd{bottom:254.333333pt;}
.y31{bottom:255.106667pt;}
.ya8{bottom:256.000000pt;}
.yf{bottom:257.346667pt;}
.y128{bottom:258.720000pt;}
.y42{bottom:259.293333pt;}
.y98{bottom:262.240000pt;}
.y87{bottom:263.426667pt;}
.y13c{bottom:263.773333pt;}
.y76{bottom:264.346667pt;}
.y6b{bottom:265.213333pt;}
.yd3{bottom:265.533333pt;}
.yc2{bottom:265.573333pt;}
.ye4{bottom:267.520000pt;}
.y29{bottom:269.920000pt;}
.y49{bottom:269.946667pt;}
.yf5{bottom:272.733333pt;}
.y124{bottom:274.906667pt;}
.ya7{bottom:275.200000pt;}
.y30{bottom:275.906667pt;}
.y86{bottom:282.626667pt;}
.y63{bottom:282.720000pt;}
.yfc{bottom:282.813333pt;}
.ye{bottom:289.533333pt;}
.y133{bottom:290.693333pt;}
.y97{bottom:290.720000pt;}
.yd2{bottom:294.333333pt;}
.yc1{bottom:294.373333pt;}
.y10d{bottom:296.453333pt;}
.y103{bottom:296.800000pt;}
.y41{bottom:297.893333pt;}
.y27{bottom:300.320000pt;}
.y6a{bottom:301.053333pt;}
.yf4{bottom:301.373333pt;}
.y48{bottom:302.426667pt;}
.ya6{bottom:303.680000pt;}
.y127{bottom:305.253333pt;}
.y2d{bottom:306.333333pt;}
.yd4{bottom:307.613333pt;}
.y123{bottom:309.440000pt;}
.yb6{bottom:309.920000pt;}
.y85{bottom:311.133333pt;}
.yfb{bottom:311.453333pt;}
.y13b{bottom:311.653333pt;}
.ye3{bottom:312.160000pt;}
.y75{bottom:312.186667pt;}
.y96{bottom:319.360000pt;}
.y132{bottom:319.493333pt;}
.yb9{bottom:320.480000pt;}
.yce{bottom:322.013333pt;}
.ya5{bottom:322.880000pt;}
.yd0{bottom:323.133333pt;}
.ybf{bottom:323.173333pt;}
.y62{bottom:324.800000pt;}
.ybc{bottom:325.280000pt;}
.y12f{bottom:325.306667pt;}
.yf3{bottom:329.853333pt;}
.y84{bottom:330.333333pt;}
.yd{bottom:330.653333pt;}
.y24{bottom:330.720000pt;}
.y5{bottom:333.280000pt;}
.y10c{bottom:335.813333pt;}
.y40{bottom:336.293333pt;}
.yd1{bottom:336.413333pt;}
.y2a{bottom:336.773333pt;}
.yb5{bottom:338.560000pt;}
.yfa{bottom:339.933333pt;}
.y14a{bottom:343.493333pt;}
.y95{bottom:347.840000pt;}
.y131{bottom:348.293333pt;}
.y51{bottom:349.826667pt;}
.y69{bottom:350.333333pt;}
.ya4{bottom:351.520000pt;}
.yca{bottom:351.933333pt;}
.y61{bottom:353.626667pt;}
.y102{bottom:353.760000pt;}
.ye2{bottom:356.640000pt;}
.yf2{bottom:358.333333pt;}
.y83{bottom:358.813333pt;}
.y13a{bottom:359.333333pt;}
.y74{bottom:359.866667pt;}
.y126{bottom:360.506667pt;}
.yc{bottom:362.973333pt;}
.y22{bottom:364.000000pt;}
.y113{bottom:364.933333pt;}
.yb4{bottom:367.040000pt;}
.y28{bottom:367.200000pt;}
.yf9{bottom:368.413333pt;}
.y122{bottom:370.013333pt;}
.y94{bottom:376.320000pt;}
.y149{bottom:378.213333pt;}
.y14b{bottom:378.400000pt;}
.ya3{bottom:380.000000pt;}
.yc8{bottom:380.773333pt;}
.y50{bottom:382.306667pt;}
.y101{bottom:382.400000pt;}
.y3f{bottom:383.813333pt;}
.y10b{bottom:385.306667pt;}
.y11a{bottom:386.106667pt;}
.yf1{bottom:386.973333pt;}
.y82{bottom:387.453333pt;}
.yb{bottom:394.973333pt;}
.yb3{bottom:395.546667pt;}
.y60{bottom:395.866667pt;}
.yf8{bottom:397.093333pt;}
.y1f{bottom:397.280000pt;}
.y26{bottom:397.626667pt;}
.y68{bottom:398.213333pt;}
.ya2{bottom:399.200000pt;}
.ye1{bottom:401.146667pt;}
.y121{bottom:402.653333pt;}
.yc9{bottom:403.653333pt;}
.y112{bottom:404.293333pt;}
.y93{bottom:404.986667pt;}
.y81{bottom:406.653333pt;}
.y139{bottom:407.173333pt;}
.y56{bottom:407.426667pt;}
.y73{bottom:407.586667pt;}
.yc7{bottom:409.573333pt;}
.y100{bottom:410.906667pt;}
.y12e{bottom:411.426667pt;}
.y148{bottom:412.960000pt;}
.y4f{bottom:414.946667pt;}
.yf0{bottom:415.493333pt;}
.y53{bottom:416.546667pt;}
.ybd{bottom:418.053333pt;}
.ya1{bottom:418.426667pt;}
.yb7{bottom:421.280000pt;}
.y3e{bottom:422.533333pt;}
.yb2{bottom:424.186667pt;}
.y5f{bottom:424.666667pt;}
.y119{bottom:425.306667pt;}
.yf7{bottom:425.573333pt;}
.ya{bottom:426.973333pt;}
.y1c{bottom:430.560000pt;}
.y23{bottom:430.880000pt;}
.yc4{bottom:432.453333pt;}
.y92{bottom:433.466667pt;}
.y80{bottom:435.133333pt;}
.y120{bottom:435.333333pt;}
.y67{bottom:435.653333pt;}
.y4{bottom:436.320000pt;}
.y12d{bottom:437.346667pt;}
.ya0{bottom:437.626667pt;}
.yc6{bottom:438.373333pt;}
.yff{bottom:439.386667pt;}
.yeb{bottom:440.506667pt;}
.y11b{bottom:442.053333pt;}
.y111{bottom:443.493333pt;}
.yef{bottom:443.973333pt;}
.ye0{bottom:445.786667pt;}
.yc0{bottom:446.853333pt;}
.y4e{bottom:447.293333pt;}
.y147{bottom:447.520000pt;}
.y118{bottom:451.266667pt;}
.yb1{bottom:452.666667pt;}
.yf6{bottom:454.053333pt;}
.y7f{bottom:454.373333pt;}
.y138{bottom:455.200000pt;}
.y72{bottom:455.426667pt;}
.y125{bottom:457.506667pt;}
.y143{bottom:458.586667pt;}
.y21{bottom:460.000000pt;}
.y3d{bottom:460.960000pt;}
.y91{bottom:461.946667pt;}
.y10a{bottom:463.866667pt;}
.y9f{bottom:466.106667pt;}
.y5e{bottom:466.746667pt;}
.y11f{bottom:467.813333pt;}
.y9{bottom:468.133333pt;}
.y66{bottom:472.933333pt;}
.y12c{bottom:476.546667pt;}
.y90{bottom:481.146667pt;}
.y146{bottom:482.240000pt;}
.y110{bottom:482.693333pt;}
.y7e{bottom:482.853333pt;}
.yea{bottom:485.026667pt;}
.y9e{bottom:485.306667pt;}
.y3{bottom:488.160000pt;}
.ydf{bottom:490.266667pt;}
.y117{bottom:490.466667pt;}
.y130{bottom:493.306667pt;}
.y5d{bottom:495.546667pt;}
.y1e{bottom:497.413333pt;}
.y3c{bottom:499.360000pt;}
.y8{bottom:500.293333pt;}
.y11e{bottom:500.453333pt;}
.y137{bottom:503.040000pt;}
.y109{bottom:503.066667pt;}
.y4d{bottom:503.840000pt;}
.y7b{bottom:504.573333pt;}
.y65{bottom:511.653333pt;}
.y12b{bottom:515.746667pt;}
.y10f{bottom:522.080000pt;}
.y5c{bottom:524.386667pt;}
.y145{bottom:529.120000pt;}
.y1b{bottom:529.466667pt;}
.ye9{bottom:529.506667pt;}
.y116{bottom:529.826667pt;}
.y7{bottom:532.293333pt;}
.y4c{bottom:532.666667pt;}
.y11d{bottom:533.733333pt;}
.yde{bottom:534.746667pt;}
.y142{bottom:536.293333pt;}
.y3b{bottom:537.760000pt;}
.y108{bottom:542.466667pt;}
.y7a{bottom:546.493333pt;}
.y136{bottom:550.880000pt;}
.y12a{bottom:555.106667pt;}
.y115{bottom:597.786667pt;}
.y11c{bottom:617.946667pt;}
.y45{bottom:620.573333pt;}
.y135{bottom:620.613333pt;}
.y70{bottom:620.893333pt;}
.y5b{bottom:622.240000pt;}
.yee{bottom:622.906667pt;}
.y106{bottom:623.706667pt;}
.y6{bottom:624.133333pt;}
.y114{bottom:649.666667pt;}
.y107{bottom:697.600000pt;}
.hd{height:52.785000pt;}
.h12{height:52.834688pt;}
.h9{height:63.656250pt;}
.h1d{height:65.531250pt;}
.h1e{height:65.662312pt;}
.h2c{height:66.750000pt;}
.h2d{height:66.883500pt;}
.hc{height:68.748750pt;}
.h10{height:68.876063pt;}
.h8{height:73.312500pt;}
.h31{height:73.490625pt;}
.h29{height:74.477812pt;}
.h2f{height:74.605125pt;}
.he{height:85.388750pt;}
.h2e{height:88.188375pt;}
.h30{height:93.050312pt;}
.h7{height:95.484375pt;}
.h11{height:95.611688pt;}
.ha{height:98.296875pt;}
.h15{height:98.427937pt;}
.h5{height:106.305937pt;}
.h6{height:106.433250pt;}
.h32{height:109.437187pt;}
.h19{height:111.472500pt;}
.h18{height:111.606000pt;}
.h16{height:112.764375pt;}
.h26{height:116.490937pt;}
.h27{height:116.618250pt;}
.h1{height:125.820000pt;}
.h13{height:127.312500pt;}
.h14{height:127.439813pt;}
.h1c{height:138.134062pt;}
.hb{height:145.760000pt;}
.h1a{height:148.319063pt;}
.h1b{height:155.661000pt;}
.h17{height:169.962187pt;}
.h4{height:174.968437pt;}
.h2{height:190.968750pt;}
.h3{height:191.096063pt;}
.h28{height:196.593750pt;}
.h2a{height:196.724812pt;}
.h1f{height:201.760000pt;}
.h2b{height:233.745750pt;}
.h20{height:399.520000pt;}
.h22{height:403.360000pt;}
.hf{height:553.120000pt;}
.h21{height:596.320000pt;}
.h24{height:604.960000pt;}
.h25{height:608.640000pt;}
.h23{height:697.120000pt;}
.h0{height:720.000000pt;}
.w2{width:153.760000pt;}
.w3{width:199.520000pt;}
.w5{width:246.080000pt;}
.w4{width:246.240000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x10{left:9.632000pt;}
.x61{left:13.407981pt;}
.x3b{left:21.247981pt;}
.x2c{left:26.559981pt;}
.x6b{left:30.463981pt;}
.x5{left:31.871981pt;}
.x2a{left:36.895981pt;}
.xf{left:38.400000pt;}
.x3f{left:39.519981pt;}
.x35{left:41.215981pt;}
.x26{left:42.815981pt;}
.x5c{left:47.135981pt;}
.x5d{left:49.023981pt;}
.x6{left:53.791981pt;}
.x2f{left:57.375981pt;}
.x30{left:58.559981pt;}
.x52{left:61.727981pt;}
.x12{left:63.391981pt;}
.x59{left:64.671981pt;}
.x3c{left:66.975981pt;}
.x50{left:73.760000pt;}
.x11{left:80.383981pt;}
.x60{left:85.055981pt;}
.x16{left:87.423981pt;}
.x65{left:94.047981pt;}
.x2e{left:98.399981pt;}
.x2d{left:103.839981pt;}
.x3{left:105.663981pt;}
.x53{left:109.727981pt;}
.x47{left:137.919981pt;}
.x4d{left:164.706667pt;}
.x1c{left:192.000000pt;}
.x4{left:201.533314pt;}
.x66{left:211.293314pt;}
.x55{left:217.279981pt;}
.xd{left:225.346648pt;}
.x2b{left:227.266648pt;}
.x54{left:232.319981pt;}
.x18{left:233.826648pt;}
.x17{left:236.066648pt;}
.x1f{left:252.866648pt;}
.xe{left:260.546648pt;}
.x1d{left:271.426648pt;}
.x43{left:273.440000pt;}
.x6d{left:281.946648pt;}
.x1e{left:284.226648pt;}
.x6e{left:286.586648pt;}
.x5b{left:295.226648pt;}
.x14{left:306.106648pt;}
.x31{left:313.186648pt;}
.x48{left:319.866648pt;}
.x41{left:406.813314pt;}
.x20{left:414.399981pt;}
.x15{left:424.386648pt;}
.x1a{left:432.479981pt;}
.x19{left:434.719981pt;}
.x2{left:438.626648pt;}
.x1{left:449.146648pt;}
.x13{left:452.226648pt;}
.x23{left:454.239981pt;}
.x21{left:456.506648pt;}
.x32{left:465.053314pt;}
.x5a{left:472.293314pt;}
.x22{left:482.906648pt;}
.x44{left:519.360000pt;}
.x6f{left:527.386648pt;}
.x49{left:565.853314pt;}
.x56{left:572.186648pt;}
.x57{left:573.946648pt;}
.x24{left:619.293314pt;}
.x1b{left:636.093314pt;}
.x25{left:641.213314pt;}
.x27{left:644.506648pt;}
.x34{left:671.813314pt;}
.x33{left:705.253314pt;}
.x36{left:710.013314pt;}
.x40{left:738.079981pt;}
.x45{left:765.280000pt;}
.x9{left:788.293314pt;}
.xa{left:790.533314pt;}
.xb{left:803.519981pt;}
.x8{left:805.119981pt;}
.x51{left:806.559981pt;}
.x29{left:809.346648pt;}
.x4f{left:811.839981pt;}
.x28{left:816.546648pt;}
.x6c{left:826.719981pt;}
.x4a{left:842.719981pt;}
.x4b{left:850.239981pt;}
.x39{left:863.266648pt;}
.x37{left:874.146648pt;}
.x3a{left:875.906648pt;}
.xc{left:905.439981pt;}
.x5f{left:913.919981pt;}
.x38{left:918.466648pt;}
.x7{left:962.079981pt;}
.x3e{left:968.346648pt;}
.x3d{left:979.866648pt;}
.x62{left:985.853314pt;}
.x58{left:1003.546648pt;}
.x42{left:1009.186648pt;}
.x46{left:1011.200000pt;}
.x5e{left:1044.159981pt;}
.x63{left:1046.053314pt;}
.x64{left:1054.306648pt;}
.x4e{left:1064.866648pt;}
.x69{left:1087.973314pt;}
.x67{left:1097.119981pt;}
.x68{left:1118.533314pt;}
.x6a{left:1132.773314pt;}
.x4c{left:1168.546648pt;}
}




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