
    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_5a4d1d46a36ef8c36309a27d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_0b9fd0c1a97700fe1d419af0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_355f86375ac379fa0c6dd159.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cb6b5302959284dde6a3508c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.887695;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_67d182b2514dea53b3aaaa46.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.870117;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_ee13feb3d34ee73c8853aaad.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_c5440b74750069e9a1a70e01.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_8e34be73b115db24bd0843f6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1bf11c14f98dbe46776e6e47.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0127a6c5eafa25208128ab90.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.928711;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_39b6bac5d21b73eb90a37500.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_dc68f1e81ab13675b9e3cb71.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_418760644500145ba443d5b6.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_4064adf2a2533824cc39489f.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-1.440000px;}
.ls25{letter-spacing:-1.260000px;}
.lsd{letter-spacing:-1.176000px;}
.lsc{letter-spacing:-1.026000px;}
.ls7{letter-spacing:-0.993600px;}
.ls29{letter-spacing:-0.774000px;}
.lsb{letter-spacing:-0.720000px;}
.ls26{letter-spacing:-0.666000px;}
.ls10{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463680px;}
.ls28{letter-spacing:-0.460200px;}
.lsa{letter-spacing:-0.414600px;}
.ls21{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.336960px;}
.lse{letter-spacing:-0.305400px;}
.ls12{letter-spacing:-0.262200px;}
.ls1f{letter-spacing:-0.259800px;}
.ls27{letter-spacing:-0.253200px;}
.ls1d{letter-spacing:-0.206400px;}
.ls18{letter-spacing:-0.106800px;}
.ls1b{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.108000px;}
.ls14{letter-spacing:0.109200px;}
.ls13{letter-spacing:0.152400px;}
.ls20{letter-spacing:0.153600px;}
.ls16{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.259800px;}
.ls24{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.262080px;}
.ls0{letter-spacing:0.269280px;}
.ls22{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.331200px;}
.ls15{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.457800px;}
.ls23{letter-spacing:11.700000px;}
.ls2{letter-spacing:17.288640px;}
.ls9{letter-spacing:73.745280px;}
.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;}
}
.ws1b{word-spacing:-22.057920px;}
.ws26{word-spacing:-18.872520px;}
.ws25{word-spacing:-18.414720px;}
.ws4{word-spacing:-17.421120px;}
.ws23{word-spacing:-16.712400px;}
.ws24{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.ws1f{word-spacing:-16.254600px;}
.ws1c{word-spacing:-16.145400px;}
.ws3{word-spacing:-16.096320px;}
.ws21{word-spacing:-15.948000px;}
.ws20{word-spacing:-15.840000px;}
.ws1d{word-spacing:-15.534000px;}
.ws1e{word-spacing:-15.384000px;}
.ws2a{word-spacing:-15.300000px;}
.ws31{word-spacing:-15.238800px;}
.ws2{word-spacing:-15.228000px;}
.ws2d{word-spacing:-15.199800px;}
.ws2b{word-spacing:-15.146400px;}
.ws22{word-spacing:-15.120000px;}
.ws2f{word-spacing:-15.093600px;}
.ws1{word-spacing:-15.012000px;}
.ws29{word-spacing:-14.993280px;}
.ws27{word-spacing:-14.940000px;}
.ws28{word-spacing:-14.833200px;}
.ws2c{word-spacing:-14.733600px;}
.ws33{word-spacing:-14.686800px;}
.ws2e{word-spacing:-14.680200px;}
.ws30{word-spacing:-14.580000px;}
.ws32{word-spacing:-14.274000px;}
.ws6{word-spacing:-9.360000px;}
.ws19{word-spacing:-2.848320px;}
.wse{word-spacing:-0.861120px;}
.wsc{word-spacing:-0.758160px;}
.wsd{word-spacing:-0.728640px;}
.wsb{word-spacing:-0.336960px;}
.ws18{word-spacing:-0.331200px;}
.ws8{word-spacing:-0.216000px;}
.ws9{word-spacing:-0.108000px;}
.ws7{word-spacing:0.000000px;}
.wsa{word-spacing:0.336960px;}
.ws17{word-spacing:0.662400px;}
.ws11{word-spacing:1.391040px;}
.ws13{word-spacing:2.782080px;}
.ws1a{word-spacing:3.510720px;}
.ws15{word-spacing:5.696640px;}
.ws14{word-spacing:5.829120px;}
.ws10{word-spacing:9.273600px;}
.ws12{word-spacing:13.645440px;}
.wsf{word-spacing:17.222400px;}
.ws16{word-spacing:20.799360px;}
.ws0{word-spacing:2353.122000px;}
._5{margin-left:-12.960000px;}
._0{margin-left:-2.072400px;}
._3{margin-left:-1.059840px;}
._1{width:1.046400px;}
._4{width:2.190000px;}
._9{width:3.313440px;}
._c{width:4.978080px;}
._a{width:6.160320px;}
._b{width:7.504080px;}
._8{width:9.179280px;}
._7{width:10.882320px;}
._f{width:12.774960px;}
._11{width:14.090160px;}
._10{width:15.121680px;}
._1b{width:16.489200px;}
._d{width:17.582160px;}
._e{width:18.670080px;}
._17{width:19.824960px;}
._18{width:20.935440px;}
._19{width:22.197360px;}
._13{width:25.152000px;}
._12{width:26.420400px;}
._16{width:27.462720px;}
._1a{width:42.602640px;}
._15{width:847.596000px;}
._6{width:2349.096000px;}
._14{width:2353.984080px;}
._2{width:2551.766400px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(1,114,207);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.000000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.ya{bottom:-43.920300px;}
.y0{bottom:0.000000px;}
.y67{bottom:3.600000px;}
.y65{bottom:3.780000px;}
.y2e{bottom:10.698480px;}
.ydf{bottom:22.500000px;}
.yd7{bottom:22.680000px;}
.yec{bottom:22.716000px;}
.yde{bottom:41.580000px;}
.yeb{bottom:41.610000px;}
.yf8{bottom:41.760000px;}
.y2f{bottom:46.080000px;}
.y4{bottom:46.109700px;}
.yef{bottom:60.480000px;}
.ydd{bottom:60.510000px;}
.ye4{bottom:60.660000px;}
.ye3{bottom:79.560000px;}
.ydc{bottom:79.590000px;}
.y5{bottom:89.775000px;}
.ye8{bottom:98.460000px;}
.ydb{bottom:98.490000px;}
.ye2{bottom:98.640000px;}
.yf7{bottom:98.685000px;}
.y3{bottom:102.787350px;}
.yc1{bottom:111.420000px;}
.y14e{bottom:113.760000px;}
.y186{bottom:117.000000px;}
.yda{bottom:117.390000px;}
.ye9{bottom:117.540000px;}
.yea{bottom:117.570000px;}
.ye7{bottom:117.585000px;}
.y2{bottom:118.987350px;}
.y114{bottom:125.820000px;}
.yc0{bottom:130.356000px;}
.y14d{bottom:132.696000px;}
.y185{bottom:134.316000px;}
.y1{bottom:135.187350px;}
.yd9{bottom:136.470000px;}
.ye6{bottom:136.485000px;}
.yf6{bottom:136.665000px;}
.y113{bottom:144.936000px;}
.ybf{bottom:149.436000px;}
.y62{bottom:151.230000px;}
.y184{bottom:151.590000px;}
.y14c{bottom:151.770000px;}
.yf5{bottom:155.565000px;}
.y112{bottom:163.830000px;}
.ybe{bottom:168.330000px;}
.y183{bottom:168.870000px;}
.y61{bottom:170.310000px;}
.y14b{bottom:170.670000px;}
.yf4{bottom:174.465000px;}
.y111{bottom:182.730000px;}
.y182{bottom:186.150000px;}
.ybd{bottom:187.410000px;}
.y60{bottom:189.210000px;}
.y14a{bottom:189.750000px;}
.yf3{bottom:193.545000px;}
.y110{bottom:201.810000px;}
.y181{bottom:203.250000px;}
.ybc{bottom:206.310000px;}
.y5f{bottom:208.290000px;}
.y149{bottom:208.650000px;}
.yf2{bottom:212.445000px;}
.y1b9{bottom:215.130000px;}
.y180{bottom:220.530000px;}
.y10f{bottom:220.710000px;}
.ybb{bottom:225.210000px;}
.y148{bottom:227.550000px;}
.y5e{bottom:231.510000px;}
.yf1{bottom:231.525000px;}
.y1b8{bottom:232.410000px;}
.y17f{bottom:237.810000px;}
.y10e{bottom:239.790000px;}
.y8f{bottom:241.770000px;}
.yba{bottom:244.290000px;}
.y147{bottom:246.630000px;}
.y1b7{bottom:249.690000px;}
.y17e{bottom:255.090000px;}
.y10d{bottom:258.690000px;}
.y8e{bottom:260.850000px;}
.yb9{bottom:263.190000px;}
.y5d{bottom:264.090000px;}
.y146{bottom:265.530000px;}
.y1b6{bottom:266.970000px;}
.ye5{bottom:269.310000px;}
.y17d{bottom:272.370000px;}
.y10c{bottom:277.770000px;}
.y8d{bottom:279.750000px;}
.yb8{bottom:282.270000px;}
.y5c{bottom:283.170000px;}
.y1b5{bottom:284.250000px;}
.y145{bottom:284.610000px;}
.y17c{bottom:289.650000px;}
.y8c{bottom:298.830000px;}
.yb7{bottom:301.170000px;}
.y1b4{bottom:301.350000px;}
.y5b{bottom:302.070000px;}
.y144{bottom:303.510000px;}
.y17b{bottom:306.750000px;}
.y10b{bottom:307.110000px;}
.y8b{bottom:317.730000px;}
.y1b3{bottom:318.630000px;}
.yb6{bottom:320.070000px;}
.y143{bottom:322.410000px;}
.y17a{bottom:324.030000px;}
.y5a{bottom:331.590000px;}
.y1b2{bottom:335.910000px;}
.y179{bottom:341.310000px;}
.y142{bottom:341.490000px;}
.yb5{bottom:343.470000px;}
.y10a{bottom:346.890000px;}
.y8a{bottom:347.070000px;}
.y1b1{bottom:353.190000px;}
.y178{bottom:358.590000px;}
.y141{bottom:360.390000px;}
.y109{bottom:365.970000px;}
.y1b0{bottom:370.470000px;}
.y59{bottom:371.370000px;}
.y136{bottom:372.270000px;}
.y177{bottom:375.870000px;}
.yb4{bottom:376.050000px;}
.y89{bottom:384.015000px;}
.y108{bottom:384.915000px;}
.y1af{bottom:387.795000px;}
.y140{bottom:389.775000px;}
.y58{bottom:390.315000px;}
.y135{bottom:391.395000px;}
.y176{bottom:393.195000px;}
.yb3{bottom:395.175000px;}
.y88{bottom:403.095000px;}
.y107{bottom:403.815000px;}
.y1ae{bottom:404.895000px;}
.y57{bottom:409.395000px;}
.y134{bottom:410.295000px;}
.y2d{bottom:413.597100px;}
.yb2{bottom:414.075000px;}
.ye1{bottom:421.095000px;}
.y87{bottom:421.995000px;}
.y1ad{bottom:422.175000px;}
.y106{bottom:422.895000px;}
.y175{bottom:427.575000px;}
.y56{bottom:428.295000px;}
.y133{bottom:429.375000px;}
.y13f{bottom:429.735000px;}
.y2c{bottom:432.674220px;}
.yb1{bottom:432.975000px;}
.y1ac{bottom:439.455000px;}
.y86{bottom:441.075000px;}
.y105{bottom:441.795000px;}
.y174{bottom:444.855000px;}
.y55{bottom:447.375000px;}
.y132{bottom:448.275000px;}
.y13e{bottom:448.635000px;}
.y2b{bottom:451.569180px;}
.yb0{bottom:452.055000px;}
.y1ab{bottom:456.735000px;}
.y85{bottom:459.975000px;}
.y104{bottom:460.875000px;}
.y173{bottom:462.135000px;}
.y54{bottom:466.275000px;}
.y131{bottom:467.175000px;}
.y13d{bottom:467.715000px;}
.y2a{bottom:470.646300px;}
.yaf{bottom:470.955000px;}
.y1aa{bottom:474.015000px;}
.y84{bottom:478.875000px;}
.y172{bottom:479.415000px;}
.y103{bottom:479.775000px;}
.y53{bottom:485.175000px;}
.y130{bottom:486.255000px;}
.y13c{bottom:486.615000px;}
.y29{bottom:489.541260px;}
.yae{bottom:490.035000px;}
.y1a9{bottom:491.115000px;}
.y171{bottom:496.515000px;}
.y83{bottom:498.675000px;}
.y52{bottom:504.255000px;}
.y12f{bottom:505.155000px;}
.y13b{bottom:505.695000px;}
.y1a8{bottom:508.395000px;}
.y28{bottom:508.436220px;}
.yad{bottom:508.935000px;}
.y170{bottom:513.795000px;}
.y102{bottom:517.755000px;}
.y51{bottom:523.155000px;}
.y12e{bottom:524.235000px;}
.y1a7{bottom:525.675000px;}
.y27{bottom:527.513340px;}
.yac{bottom:528.015000px;}
.y82{bottom:530.535000px;}
.y16f{bottom:531.075000px;}
.y13a{bottom:533.055000px;}
.ye0{bottom:535.035000px;}
.y101{bottom:536.655000px;}
.y50{bottom:542.235000px;}
.y1a6{bottom:542.955000px;}
.y12d{bottom:543.135000px;}
.y26{bottom:546.408300px;}
.yab{bottom:546.915000px;}
.y16e{bottom:548.355000px;}
.y139{bottom:550.335000px;}
.y100{bottom:555.735000px;}
.y1a5{bottom:560.235000px;}
.y4f{bottom:561.135000px;}
.y12c{bottom:562.035000px;}
.y25{bottom:565.485420px;}
.y16d{bottom:565.635000px;}
.yaa{bottom:565.815000px;}
.y81{bottom:566.355000px;}
.y138{bottom:567.615000px;}
.yd8{bottom:573.015000px;}
.y1a4{bottom:577.515000px;}
.yff{bottom:578.955000px;}
.y4e{bottom:580.035000px;}
.y12b{bottom:581.115000px;}
.y16c{bottom:582.915000px;}
.y24{bottom:584.380380px;}
.ya9{bottom:584.895000px;}
.y80{bottom:585.255000px;}
.y137{bottom:590.655000px;}
.y1a3{bottom:594.615000px;}
.y4d{bottom:599.115000px;}
.y12a{bottom:600.015000px;}
.y23{bottom:603.457500px;}
.ya8{bottom:603.795000px;}
.y7f{bottom:604.335000px;}
.yfe{bottom:608.655000px;}
.y1a2{bottom:611.895000px;}
.y16b{bottom:617.295000px;}
.y4c{bottom:618.015000px;}
.y129{bottom:619.095000px;}
.y22{bottom:622.352460px;}
.ya7{bottom:627.195000px;}
.y7e{bottom:627.555000px;}
.y1a1{bottom:629.175000px;}
.y16a{bottom:634.605000px;}
.y4b{bottom:637.125000px;}
.y128{bottom:638.025000px;}
.y21{bottom:641.280540px;}
.y1a0{bottom:646.485000px;}
.yfd{bottom:646.665000px;}
.y169{bottom:651.885000px;}
.y4a{bottom:656.025000px;}
.y127{bottom:656.925000px;}
.ya6{bottom:659.805000px;}
.y7d{bottom:660.165000px;}
.y20{bottom:660.357660px;}
.y19f{bottom:663.765000px;}
.yfc{bottom:665.565000px;}
.y168{bottom:669.165000px;}
.y49{bottom:674.925000px;}
.y126{bottom:676.005000px;}
.ya5{bottom:678.705000px;}
.y7c{bottom:679.245000px;}
.y1f{bottom:679.252620px;}
.y19e{bottom:681.045000px;}
.y167{bottom:686.445000px;}
.y48{bottom:694.005000px;}
.y125{bottom:694.905000px;}
.ya4{bottom:697.785000px;}
.y7b{bottom:698.145000px;}
.y1e{bottom:698.329740px;}
.yfb{bottom:703.545000px;}
.y47{bottom:712.905000px;}
.y124{bottom:713.985000px;}
.y19d{bottom:715.425000px;}
.ya3{bottom:716.685000px;}
.y1d{bottom:717.224700px;}
.y7a{bottom:717.225000px;}
.y166{bottom:720.825000px;}
.yfa{bottom:722.625000px;}
.yd6{bottom:725.505000px;}
.y46{bottom:731.985000px;}
.ya2{bottom:732.705000px;}
.y123{bottom:732.885000px;}
.y1c{bottom:736.119660px;}
.y79{bottom:736.125000px;}
.y165{bottom:738.105000px;}
.y19c{bottom:749.985000px;}
.y45{bottom:750.885000px;}
.ya1{bottom:751.785000px;}
.y1b{bottom:755.196780px;}
.y78{bottom:755.205000px;}
.y164{bottom:755.385000px;}
.yf9{bottom:760.605000px;}
.y19b{bottom:767.265000px;}
.y44{bottom:769.785000px;}
.ya0{bottom:770.685000px;}
.y122{bottom:770.865000px;}
.y163{bottom:772.665000px;}
.y1a{bottom:774.091740px;}
.yd5{bottom:776.445000px;}
.y77{bottom:778.425000px;}
.y19a{bottom:784.545000px;}
.y43{bottom:788.865000px;}
.y9f{bottom:789.765000px;}
.y162{bottom:789.945000px;}
.y19{bottom:793.168860px;}
.yf0{bottom:798.405000px;}
.y199{bottom:801.645000px;}
.yd4{bottom:803.085000px;}
.y161{bottom:807.045000px;}
.y42{bottom:807.765000px;}
.y9e{bottom:808.665000px;}
.y121{bottom:808.845000px;}
.y76{bottom:811.005000px;}
.y18{bottom:816.385980px;}
.y198{bottom:818.925000px;}
.yd3{bottom:822.165000px;}
.y160{bottom:824.325000px;}
.y41{bottom:826.845000px;}
.y9d{bottom:827.565000px;}
.y120{bottom:827.745000px;}
.y75{bottom:830.085000px;}
.y197{bottom:836.205000px;}
.yd2{bottom:841.065000px;}
.y15f{bottom:841.605000px;}
.y40{bottom:845.745000px;}
.y9c{bottom:846.645000px;}
.y11f{bottom:846.825000px;}
.y74{bottom:848.985000px;}
.y17{bottom:853.463820px;}
.y196{bottom:853.485000px;}
.y15e{bottom:858.885000px;}
.yd1{bottom:859.965000px;}
.y3f{bottom:864.825000px;}
.y9b{bottom:865.545000px;}
.y11e{bottom:865.725000px;}
.y73{bottom:868.065000px;}
.y195{bottom:870.765000px;}
.y16{bottom:872.540940px;}
.y15d{bottom:876.165000px;}
.yd0{bottom:879.045000px;}
.y3e{bottom:883.725000px;}
.y9a{bottom:884.670000px;}
.y72{bottom:887.010000px;}
.y194{bottom:887.910000px;}
.y15{bottom:891.435900px;}
.y15c{bottom:893.310000px;}
.ycf{bottom:897.990000px;}
.y3d{bottom:902.670000px;}
.y99{bottom:903.570000px;}
.y11d{bottom:903.750000px;}
.y193{bottom:905.190000px;}
.y71{bottom:905.910000px;}
.y14{bottom:910.562700px;}
.y15b{bottom:910.590000px;}
.yce{bottom:917.070000px;}
.y3c{bottom:921.750000px;}
.y98{bottom:922.470000px;}
.y11c{bottom:922.650000px;}
.y70{bottom:924.990000px;}
.y15a{bottom:927.870000px;}
.y13{bottom:929.457660px;}
.ycd{bottom:935.970000px;}
.y192{bottom:939.750000px;}
.y3b{bottom:940.650000px;}
.y97{bottom:941.550000px;}
.y11b{bottom:941.730000px;}
.y6f{bottom:943.890000px;}
.y159{bottom:945.150000px;}
.y12{bottom:948.352620px;}
.ycc{bottom:954.870000px;}
.y191{bottom:957.030000px;}
.y3a{bottom:959.730000px;}
.y96{bottom:960.450000px;}
.y11a{bottom:960.630000px;}
.y158{bottom:962.430000px;}
.y6e{bottom:962.970000px;}
.y11{bottom:967.429740px;}
.ycb{bottom:973.950000px;}
.y190{bottom:974.310000px;}
.y39{bottom:978.630000px;}
.y95{bottom:979.530000px;}
.y157{bottom:979.710000px;}
.y6d{bottom:986.190000px;}
.y10{bottom:986.324700px;}
.y18f{bottom:991.410000px;}
.yca{bottom:992.850000px;}
.y156{bottom:996.810000px;}
.y38{bottom:997.530000px;}
.y94{bottom:998.430000px;}
.y119{bottom:998.610000px;}
.y18e{bottom:1008.690000px;}
.yc9{bottom:1011.930000px;}
.y155{bottom:1014.090000px;}
.y37{bottom:1016.610000px;}
.yf{bottom:1017.103980px;}
.y93{bottom:1017.330000px;}
.y118{bottom:1017.510000px;}
.y6c{bottom:1018.770000px;}
.y18d{bottom:1025.970000px;}
.yc8{bottom:1030.830000px;}
.y6b{bottom:1034.970000px;}
.y36{bottom:1035.510000px;}
.y92{bottom:1036.410000px;}
.y117{bottom:1036.590000px;}
.y154{bottom:1040.550000px;}
.y18c{bottom:1043.250000px;}
.yee{bottom:1045.230000px;}
.ye{bottom:1046.798580px;}
.yc7{bottom:1049.730000px;}
.y6a{bottom:1053.870000px;}
.y35{bottom:1054.590000px;}
.y91{bottom:1055.310000px;}
.y116{bottom:1055.490000px;}
.y18b{bottom:1060.530000px;}
.yc6{bottom:1068.810000px;}
.y34{bottom:1073.490000px;}
.y69{bottom:1073.670000px;}
.y90{bottom:1074.390000px;}
.yd{bottom:1076.324700px;}
.y153{bottom:1077.810000px;}
.yc5{bottom:1092.030000px;}
.y33{bottom:1092.390000px;}
.y68{bottom:1093.290000px;}
.y18a{bottom:1094.910000px;}
.y152{bottom:1096.710000px;}
.y115{bottom:1103.910000px;}
.y32{bottom:1111.470000px;}
.y189{bottom:1112.190000px;}
.y66{bottom:1112.370000px;}
.y151{bottom:1115.790000px;}
.yc{bottom:1122.582300px;}
.yc4{bottom:1124.790000px;}
.y188{bottom:1129.470000px;}
.y31{bottom:1130.370000px;}
.y64{bottom:1131.990000px;}
.y150{bottom:1134.690000px;}
.yc3{bottom:1143.720000px;}
.y187{bottom:1146.780000px;}
.yed{bottom:1159.020000px;}
.y30{bottom:1159.920000px;}
.y6{bottom:1160.459700px;}
.yb{bottom:1162.574700px;}
.y14f{bottom:1162.620000px;}
.yc2{bottom:1162.800000px;}
.y63{bottom:1164.060000px;}
.y9{bottom:1203.610200px;}
.y8{bottom:1219.270200px;}
.y7{bottom:1234.754700px;}
.h13{height:18.900000px;}
.h14{height:19.080000px;}
.h12{height:19.116000px;}
.hc{height:27.351562px;}
.h2{height:37.520508px;}
.h1a{height:37.800000px;}
.h15{height:37.980000px;}
.h1b{height:38.016000px;}
.h5{height:39.313477px;}
.h6{height:39.357844px;}
.ha{height:44.893125px;}
.h3{height:45.858398px;}
.hb{height:45.992812px;}
.h7{height:46.025156px;}
.h8{height:48.224531px;}
.h1c{height:58.651172px;}
.h9{height:61.329023px;}
.h11{height:62.327813px;}
.he{height:65.010937px;}
.hf{height:68.084282px;}
.h10{height:69.086250px;}
.h18{height:113.796000px;}
.h17{height:113.940000px;}
.h16{height:151.770000px;}
.h19{height:246.810000px;}
.h4{height:1173.060000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.hd{height:1263.060000px;}
.wb{width:70.956000px;}
.w7{width:138.096000px;}
.w5{width:138.240000px;}
.wc{width:148.680000px;}
.wd{width:149.256000px;}
.w11{width:151.770000px;}
.wf{width:173.700000px;}
.we{width:174.090000px;}
.w10{width:174.450000px;}
.wa{width:311.430000px;}
.w9{width:334.875000px;}
.w8{width:345.450000px;}
.w6{width:403.995000px;}
.w2{width:892.912500px;}
.w0{width:892.914000px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:5.220000px;}
.x3{left:11.700000px;}
.x2{left:106.500000px;}
.xf{left:109.476000px;}
.x1{left:116.250000px;}
.x17{left:136.475987px;}
.x15{left:149.255987px;}
.x14{left:154.829987px;}
.xe{left:183.449987px;}
.x6{left:244.650000px;}
.x10{left:283.575000px;}
.x16{left:292.214987px;}
.xa{left:327.314987px;}
.x4{left:348.554987px;}
.x8{left:353.234987px;}
.xb{left:417.855000px;}
.x9{left:451.875000px;}
.x11{left:457.275000px;}
.xc{left:488.805000px;}
.x12{left:631.725000px;}
.xd{left:637.485000px;}
.x7{left:648.645000px;}
.x13{left:777.389987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls25{letter-spacing:-1.120000pt;}
.lsd{letter-spacing:-1.045333pt;}
.lsc{letter-spacing:-0.912000pt;}
.ls7{letter-spacing:-0.883200pt;}
.ls29{letter-spacing:-0.688000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.592000pt;}
.ls10{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412160pt;}
.ls28{letter-spacing:-0.409067pt;}
.lsa{letter-spacing:-0.368533pt;}
.ls21{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.299520pt;}
.lse{letter-spacing:-0.271467pt;}
.ls12{letter-spacing:-0.233067pt;}
.ls1f{letter-spacing:-0.230933pt;}
.ls27{letter-spacing:-0.225067pt;}
.ls1d{letter-spacing:-0.183467pt;}
.ls18{letter-spacing:-0.094933pt;}
.ls1b{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.096000pt;}
.ls14{letter-spacing:0.097067pt;}
.ls13{letter-spacing:0.135467pt;}
.ls20{letter-spacing:0.136533pt;}
.ls16{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.230933pt;}
.ls24{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.232960pt;}
.ls0{letter-spacing:0.239360pt;}
.ls22{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.294400pt;}
.ls15{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.406933pt;}
.ls23{letter-spacing:10.400000pt;}
.ls2{letter-spacing:15.367680pt;}
.ls9{letter-spacing:65.551360pt;}
.ws1b{word-spacing:-19.607040pt;}
.ws26{word-spacing:-16.775573pt;}
.ws25{word-spacing:-16.368640pt;}
.ws4{word-spacing:-15.485440pt;}
.ws23{word-spacing:-14.855467pt;}
.ws24{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.ws1f{word-spacing:-14.448533pt;}
.ws1c{word-spacing:-14.351467pt;}
.ws3{word-spacing:-14.307840pt;}
.ws21{word-spacing:-14.176000pt;}
.ws20{word-spacing:-14.080000pt;}
.ws1d{word-spacing:-13.808000pt;}
.ws1e{word-spacing:-13.674667pt;}
.ws2a{word-spacing:-13.600000pt;}
.ws31{word-spacing:-13.545600pt;}
.ws2{word-spacing:-13.536000pt;}
.ws2d{word-spacing:-13.510933pt;}
.ws2b{word-spacing:-13.463467pt;}
.ws22{word-spacing:-13.440000pt;}
.ws2f{word-spacing:-13.416533pt;}
.ws1{word-spacing:-13.344000pt;}
.ws29{word-spacing:-13.327360pt;}
.ws27{word-spacing:-13.280000pt;}
.ws28{word-spacing:-13.185067pt;}
.ws2c{word-spacing:-13.096533pt;}
.ws33{word-spacing:-13.054933pt;}
.ws2e{word-spacing:-13.049067pt;}
.ws30{word-spacing:-12.960000pt;}
.ws32{word-spacing:-12.688000pt;}
.ws6{word-spacing:-8.320000pt;}
.ws19{word-spacing:-2.531840pt;}
.wse{word-spacing:-0.765440pt;}
.wsc{word-spacing:-0.673920pt;}
.wsd{word-spacing:-0.647680pt;}
.wsb{word-spacing:-0.299520pt;}
.ws18{word-spacing:-0.294400pt;}
.ws8{word-spacing:-0.192000pt;}
.ws9{word-spacing:-0.096000pt;}
.ws7{word-spacing:0.000000pt;}
.wsa{word-spacing:0.299520pt;}
.ws17{word-spacing:0.588800pt;}
.ws11{word-spacing:1.236480pt;}
.ws13{word-spacing:2.472960pt;}
.ws1a{word-spacing:3.120640pt;}
.ws15{word-spacing:5.063680pt;}
.ws14{word-spacing:5.181440pt;}
.ws10{word-spacing:8.243200pt;}
.ws12{word-spacing:12.129280pt;}
.wsf{word-spacing:15.308800pt;}
.ws16{word-spacing:18.488320pt;}
.ws0{word-spacing:2091.664000pt;}
._5{margin-left:-11.520000pt;}
._0{margin-left:-1.842133pt;}
._3{margin-left:-0.942080pt;}
._1{width:0.930133pt;}
._4{width:1.946667pt;}
._9{width:2.945280pt;}
._c{width:4.424960pt;}
._a{width:5.475840pt;}
._b{width:6.670293pt;}
._8{width:8.159360pt;}
._7{width:9.673173pt;}
._f{width:11.355520pt;}
._11{width:12.524587pt;}
._10{width:13.441493pt;}
._1b{width:14.657067pt;}
._d{width:15.628587pt;}
._e{width:16.595627pt;}
._17{width:17.622187pt;}
._18{width:18.609280pt;}
._19{width:19.730987pt;}
._13{width:22.357333pt;}
._12{width:23.484800pt;}
._16{width:24.411307pt;}
._1a{width:37.869013pt;}
._15{width:753.418667pt;}
._6{width:2088.085333pt;}
._14{width:2092.430293pt;}
._2{width:2268.236800pt;}
.fs5{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.666667pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.ya{bottom:-39.040267pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:3.200000pt;}
.y65{bottom:3.360000pt;}
.y2e{bottom:9.509760pt;}
.ydf{bottom:20.000000pt;}
.yd7{bottom:20.160000pt;}
.yec{bottom:20.192000pt;}
.yde{bottom:36.960000pt;}
.yeb{bottom:36.986667pt;}
.yf8{bottom:37.120000pt;}
.y2f{bottom:40.960000pt;}
.y4{bottom:40.986400pt;}
.yef{bottom:53.760000pt;}
.ydd{bottom:53.786667pt;}
.ye4{bottom:53.920000pt;}
.ye3{bottom:70.720000pt;}
.ydc{bottom:70.746667pt;}
.y5{bottom:79.800000pt;}
.ye8{bottom:87.520000pt;}
.ydb{bottom:87.546667pt;}
.ye2{bottom:87.680000pt;}
.yf7{bottom:87.720000pt;}
.y3{bottom:91.366533pt;}
.yc1{bottom:99.040000pt;}
.y14e{bottom:101.120000pt;}
.y186{bottom:104.000000pt;}
.yda{bottom:104.346667pt;}
.ye9{bottom:104.480000pt;}
.yea{bottom:104.506667pt;}
.ye7{bottom:104.520000pt;}
.y2{bottom:105.766533pt;}
.y114{bottom:111.840000pt;}
.yc0{bottom:115.872000pt;}
.y14d{bottom:117.952000pt;}
.y185{bottom:119.392000pt;}
.y1{bottom:120.166533pt;}
.yd9{bottom:121.306667pt;}
.ye6{bottom:121.320000pt;}
.yf6{bottom:121.480000pt;}
.y113{bottom:128.832000pt;}
.ybf{bottom:132.832000pt;}
.y62{bottom:134.426667pt;}
.y184{bottom:134.746667pt;}
.y14c{bottom:134.906667pt;}
.yf5{bottom:138.280000pt;}
.y112{bottom:145.626667pt;}
.ybe{bottom:149.626667pt;}
.y183{bottom:150.106667pt;}
.y61{bottom:151.386667pt;}
.y14b{bottom:151.706667pt;}
.yf4{bottom:155.080000pt;}
.y111{bottom:162.426667pt;}
.y182{bottom:165.466667pt;}
.ybd{bottom:166.586667pt;}
.y60{bottom:168.186667pt;}
.y14a{bottom:168.666667pt;}
.yf3{bottom:172.040000pt;}
.y110{bottom:179.386667pt;}
.y181{bottom:180.666667pt;}
.ybc{bottom:183.386667pt;}
.y5f{bottom:185.146667pt;}
.y149{bottom:185.466667pt;}
.yf2{bottom:188.840000pt;}
.y1b9{bottom:191.226667pt;}
.y180{bottom:196.026667pt;}
.y10f{bottom:196.186667pt;}
.ybb{bottom:200.186667pt;}
.y148{bottom:202.266667pt;}
.y5e{bottom:205.786667pt;}
.yf1{bottom:205.800000pt;}
.y1b8{bottom:206.586667pt;}
.y17f{bottom:211.386667pt;}
.y10e{bottom:213.146667pt;}
.y8f{bottom:214.906667pt;}
.yba{bottom:217.146667pt;}
.y147{bottom:219.226667pt;}
.y1b7{bottom:221.946667pt;}
.y17e{bottom:226.746667pt;}
.y10d{bottom:229.946667pt;}
.y8e{bottom:231.866667pt;}
.yb9{bottom:233.946667pt;}
.y5d{bottom:234.746667pt;}
.y146{bottom:236.026667pt;}
.y1b6{bottom:237.306667pt;}
.ye5{bottom:239.386667pt;}
.y17d{bottom:242.106667pt;}
.y10c{bottom:246.906667pt;}
.y8d{bottom:248.666667pt;}
.yb8{bottom:250.906667pt;}
.y5c{bottom:251.706667pt;}
.y1b5{bottom:252.666667pt;}
.y145{bottom:252.986667pt;}
.y17c{bottom:257.466667pt;}
.y8c{bottom:265.626667pt;}
.yb7{bottom:267.706667pt;}
.y1b4{bottom:267.866667pt;}
.y5b{bottom:268.506667pt;}
.y144{bottom:269.786667pt;}
.y17b{bottom:272.666667pt;}
.y10b{bottom:272.986667pt;}
.y8b{bottom:282.426667pt;}
.y1b3{bottom:283.226667pt;}
.yb6{bottom:284.506667pt;}
.y143{bottom:286.586667pt;}
.y17a{bottom:288.026667pt;}
.y5a{bottom:294.746667pt;}
.y1b2{bottom:298.586667pt;}
.y179{bottom:303.386667pt;}
.y142{bottom:303.546667pt;}
.yb5{bottom:305.306667pt;}
.y10a{bottom:308.346667pt;}
.y8a{bottom:308.506667pt;}
.y1b1{bottom:313.946667pt;}
.y178{bottom:318.746667pt;}
.y141{bottom:320.346667pt;}
.y109{bottom:325.306667pt;}
.y1b0{bottom:329.306667pt;}
.y59{bottom:330.106667pt;}
.y136{bottom:330.906667pt;}
.y177{bottom:334.106667pt;}
.yb4{bottom:334.266667pt;}
.y89{bottom:341.346667pt;}
.y108{bottom:342.146667pt;}
.y1af{bottom:344.706667pt;}
.y140{bottom:346.466667pt;}
.y58{bottom:346.946667pt;}
.y135{bottom:347.906667pt;}
.y176{bottom:349.506667pt;}
.yb3{bottom:351.266667pt;}
.y88{bottom:358.306667pt;}
.y107{bottom:358.946667pt;}
.y1ae{bottom:359.906667pt;}
.y57{bottom:363.906667pt;}
.y134{bottom:364.706667pt;}
.y2d{bottom:367.641867pt;}
.yb2{bottom:368.066667pt;}
.ye1{bottom:374.306667pt;}
.y87{bottom:375.106667pt;}
.y1ad{bottom:375.266667pt;}
.y106{bottom:375.906667pt;}
.y175{bottom:380.066667pt;}
.y56{bottom:380.706667pt;}
.y133{bottom:381.666667pt;}
.y13f{bottom:381.986667pt;}
.y2c{bottom:384.599307pt;}
.yb1{bottom:384.866667pt;}
.y1ac{bottom:390.626667pt;}
.y86{bottom:392.066667pt;}
.y105{bottom:392.706667pt;}
.y174{bottom:395.426667pt;}
.y55{bottom:397.666667pt;}
.y132{bottom:398.466667pt;}
.y13e{bottom:398.786667pt;}
.y2b{bottom:401.394827pt;}
.yb0{bottom:401.826667pt;}
.y1ab{bottom:405.986667pt;}
.y85{bottom:408.866667pt;}
.y104{bottom:409.666667pt;}
.y173{bottom:410.786667pt;}
.y54{bottom:414.466667pt;}
.y131{bottom:415.266667pt;}
.y13d{bottom:415.746667pt;}
.y2a{bottom:418.352267pt;}
.yaf{bottom:418.626667pt;}
.y1aa{bottom:421.346667pt;}
.y84{bottom:425.666667pt;}
.y172{bottom:426.146667pt;}
.y103{bottom:426.466667pt;}
.y53{bottom:431.266667pt;}
.y130{bottom:432.226667pt;}
.y13c{bottom:432.546667pt;}
.y29{bottom:435.147787pt;}
.yae{bottom:435.586667pt;}
.y1a9{bottom:436.546667pt;}
.y171{bottom:441.346667pt;}
.y83{bottom:443.266667pt;}
.y52{bottom:448.226667pt;}
.y12f{bottom:449.026667pt;}
.y13b{bottom:449.506667pt;}
.y1a8{bottom:451.906667pt;}
.y28{bottom:451.943307pt;}
.yad{bottom:452.386667pt;}
.y170{bottom:456.706667pt;}
.y102{bottom:460.226667pt;}
.y51{bottom:465.026667pt;}
.y12e{bottom:465.986667pt;}
.y1a7{bottom:467.266667pt;}
.y27{bottom:468.900747pt;}
.yac{bottom:469.346667pt;}
.y82{bottom:471.586667pt;}
.y16f{bottom:472.066667pt;}
.y13a{bottom:473.826667pt;}
.ye0{bottom:475.586667pt;}
.y101{bottom:477.026667pt;}
.y50{bottom:481.986667pt;}
.y1a6{bottom:482.626667pt;}
.y12d{bottom:482.786667pt;}
.y26{bottom:485.696267pt;}
.yab{bottom:486.146667pt;}
.y16e{bottom:487.426667pt;}
.y139{bottom:489.186667pt;}
.y100{bottom:493.986667pt;}
.y1a5{bottom:497.986667pt;}
.y4f{bottom:498.786667pt;}
.y12c{bottom:499.586667pt;}
.y25{bottom:502.653707pt;}
.y16d{bottom:502.786667pt;}
.yaa{bottom:502.946667pt;}
.y81{bottom:503.426667pt;}
.y138{bottom:504.546667pt;}
.yd8{bottom:509.346667pt;}
.y1a4{bottom:513.346667pt;}
.yff{bottom:514.626667pt;}
.y4e{bottom:515.586667pt;}
.y12b{bottom:516.546667pt;}
.y16c{bottom:518.146667pt;}
.y24{bottom:519.449227pt;}
.ya9{bottom:519.906667pt;}
.y80{bottom:520.226667pt;}
.y137{bottom:525.026667pt;}
.y1a3{bottom:528.546667pt;}
.y4d{bottom:532.546667pt;}
.y12a{bottom:533.346667pt;}
.y23{bottom:536.406667pt;}
.ya8{bottom:536.706667pt;}
.y7f{bottom:537.186667pt;}
.yfe{bottom:541.026667pt;}
.y1a2{bottom:543.906667pt;}
.y16b{bottom:548.706667pt;}
.y4c{bottom:549.346667pt;}
.y129{bottom:550.306667pt;}
.y22{bottom:553.202187pt;}
.ya7{bottom:557.506667pt;}
.y7e{bottom:557.826667pt;}
.y1a1{bottom:559.266667pt;}
.y16a{bottom:564.093333pt;}
.y4b{bottom:566.333333pt;}
.y128{bottom:567.133333pt;}
.y21{bottom:570.027147pt;}
.y1a0{bottom:574.653333pt;}
.yfd{bottom:574.813333pt;}
.y169{bottom:579.453333pt;}
.y4a{bottom:583.133333pt;}
.y127{bottom:583.933333pt;}
.ya6{bottom:586.493333pt;}
.y7d{bottom:586.813333pt;}
.y20{bottom:586.984587pt;}
.y19f{bottom:590.013333pt;}
.yfc{bottom:591.613333pt;}
.y168{bottom:594.813333pt;}
.y49{bottom:599.933333pt;}
.y126{bottom:600.893333pt;}
.ya5{bottom:603.293333pt;}
.y7c{bottom:603.773333pt;}
.y1f{bottom:603.780107pt;}
.y19e{bottom:605.373333pt;}
.y167{bottom:610.173333pt;}
.y48{bottom:616.893333pt;}
.y125{bottom:617.693333pt;}
.ya4{bottom:620.253333pt;}
.y7b{bottom:620.573333pt;}
.y1e{bottom:620.737547pt;}
.yfb{bottom:625.373333pt;}
.y47{bottom:633.693333pt;}
.y124{bottom:634.653333pt;}
.y19d{bottom:635.933333pt;}
.ya3{bottom:637.053333pt;}
.y1d{bottom:637.533067pt;}
.y7a{bottom:637.533333pt;}
.y166{bottom:640.733333pt;}
.yfa{bottom:642.333333pt;}
.yd6{bottom:644.893333pt;}
.y46{bottom:650.653333pt;}
.ya2{bottom:651.293333pt;}
.y123{bottom:651.453333pt;}
.y1c{bottom:654.328587pt;}
.y79{bottom:654.333333pt;}
.y165{bottom:656.093333pt;}
.y19c{bottom:666.653333pt;}
.y45{bottom:667.453333pt;}
.ya1{bottom:668.253333pt;}
.y1b{bottom:671.286027pt;}
.y78{bottom:671.293333pt;}
.y164{bottom:671.453333pt;}
.yf9{bottom:676.093333pt;}
.y19b{bottom:682.013333pt;}
.y44{bottom:684.253333pt;}
.ya0{bottom:685.053333pt;}
.y122{bottom:685.213333pt;}
.y163{bottom:686.813333pt;}
.y1a{bottom:688.081547pt;}
.yd5{bottom:690.173333pt;}
.y77{bottom:691.933333pt;}
.y19a{bottom:697.373333pt;}
.y43{bottom:701.213333pt;}
.y9f{bottom:702.013333pt;}
.y162{bottom:702.173333pt;}
.y19{bottom:705.038987pt;}
.yf0{bottom:709.693333pt;}
.y199{bottom:712.573333pt;}
.yd4{bottom:713.853333pt;}
.y161{bottom:717.373333pt;}
.y42{bottom:718.013333pt;}
.y9e{bottom:718.813333pt;}
.y121{bottom:718.973333pt;}
.y76{bottom:720.893333pt;}
.y18{bottom:725.676427pt;}
.y198{bottom:727.933333pt;}
.yd3{bottom:730.813333pt;}
.y160{bottom:732.733333pt;}
.y41{bottom:734.973333pt;}
.y9d{bottom:735.613333pt;}
.y120{bottom:735.773333pt;}
.y75{bottom:737.853333pt;}
.y197{bottom:743.293333pt;}
.yd2{bottom:747.613333pt;}
.y15f{bottom:748.093333pt;}
.y40{bottom:751.773333pt;}
.y9c{bottom:752.573333pt;}
.y11f{bottom:752.733333pt;}
.y74{bottom:754.653333pt;}
.y17{bottom:758.634507pt;}
.y196{bottom:758.653333pt;}
.y15e{bottom:763.453333pt;}
.yd1{bottom:764.413333pt;}
.y3f{bottom:768.733333pt;}
.y9b{bottom:769.373333pt;}
.y11e{bottom:769.533333pt;}
.y73{bottom:771.613333pt;}
.y195{bottom:774.013333pt;}
.y16{bottom:775.591947pt;}
.y15d{bottom:778.813333pt;}
.yd0{bottom:781.373333pt;}
.y3e{bottom:785.533333pt;}
.y9a{bottom:786.373333pt;}
.y72{bottom:788.453333pt;}
.y194{bottom:789.253333pt;}
.y15{bottom:792.387467pt;}
.y15c{bottom:794.053333pt;}
.ycf{bottom:798.213333pt;}
.y3d{bottom:802.373333pt;}
.y99{bottom:803.173333pt;}
.y11d{bottom:803.333333pt;}
.y193{bottom:804.613333pt;}
.y71{bottom:805.253333pt;}
.y14{bottom:809.389067pt;}
.y15b{bottom:809.413333pt;}
.yce{bottom:815.173333pt;}
.y3c{bottom:819.333333pt;}
.y98{bottom:819.973333pt;}
.y11c{bottom:820.133333pt;}
.y70{bottom:822.213333pt;}
.y15a{bottom:824.773333pt;}
.y13{bottom:826.184587pt;}
.ycd{bottom:831.973333pt;}
.y192{bottom:835.333333pt;}
.y3b{bottom:836.133333pt;}
.y97{bottom:836.933333pt;}
.y11b{bottom:837.093333pt;}
.y6f{bottom:839.013333pt;}
.y159{bottom:840.133333pt;}
.y12{bottom:842.980107pt;}
.ycc{bottom:848.773333pt;}
.y191{bottom:850.693333pt;}
.y3a{bottom:853.093333pt;}
.y96{bottom:853.733333pt;}
.y11a{bottom:853.893333pt;}
.y158{bottom:855.493333pt;}
.y6e{bottom:855.973333pt;}
.y11{bottom:859.937547pt;}
.ycb{bottom:865.733333pt;}
.y190{bottom:866.053333pt;}
.y39{bottom:869.893333pt;}
.y95{bottom:870.693333pt;}
.y157{bottom:870.853333pt;}
.y6d{bottom:876.613333pt;}
.y10{bottom:876.733067pt;}
.y18f{bottom:881.253333pt;}
.yca{bottom:882.533333pt;}
.y156{bottom:886.053333pt;}
.y38{bottom:886.693333pt;}
.y94{bottom:887.493333pt;}
.y119{bottom:887.653333pt;}
.y18e{bottom:896.613333pt;}
.yc9{bottom:899.493333pt;}
.y155{bottom:901.413333pt;}
.y37{bottom:903.653333pt;}
.yf{bottom:904.092427pt;}
.y93{bottom:904.293333pt;}
.y118{bottom:904.453333pt;}
.y6c{bottom:905.573333pt;}
.y18d{bottom:911.973333pt;}
.yc8{bottom:916.293333pt;}
.y6b{bottom:919.973333pt;}
.y36{bottom:920.453333pt;}
.y92{bottom:921.253333pt;}
.y117{bottom:921.413333pt;}
.y154{bottom:924.933333pt;}
.y18c{bottom:927.333333pt;}
.yee{bottom:929.093333pt;}
.ye{bottom:930.487627pt;}
.yc7{bottom:933.093333pt;}
.y6a{bottom:936.773333pt;}
.y35{bottom:937.413333pt;}
.y91{bottom:938.053333pt;}
.y116{bottom:938.213333pt;}
.y18b{bottom:942.693333pt;}
.yc6{bottom:950.053333pt;}
.y34{bottom:954.213333pt;}
.y69{bottom:954.373333pt;}
.y90{bottom:955.013333pt;}
.yd{bottom:956.733067pt;}
.y153{bottom:958.053333pt;}
.yc5{bottom:970.693333pt;}
.y33{bottom:971.013333pt;}
.y68{bottom:971.813333pt;}
.y18a{bottom:973.253333pt;}
.y152{bottom:974.853333pt;}
.y115{bottom:981.253333pt;}
.y32{bottom:987.973333pt;}
.y189{bottom:988.613333pt;}
.y66{bottom:988.773333pt;}
.y151{bottom:991.813333pt;}
.yc{bottom:997.850933pt;}
.yc4{bottom:999.813333pt;}
.y188{bottom:1003.973333pt;}
.y31{bottom:1004.773333pt;}
.y64{bottom:1006.213333pt;}
.y150{bottom:1008.613333pt;}
.yc3{bottom:1016.640000pt;}
.y187{bottom:1019.360000pt;}
.yed{bottom:1030.240000pt;}
.y30{bottom:1031.040000pt;}
.y6{bottom:1031.519733pt;}
.yb{bottom:1033.399733pt;}
.y14f{bottom:1033.440000pt;}
.yc2{bottom:1033.600000pt;}
.y63{bottom:1034.720000pt;}
.y9{bottom:1069.875733pt;}
.y8{bottom:1083.795733pt;}
.y7{bottom:1097.559733pt;}
.h13{height:16.800000pt;}
.h14{height:16.960000pt;}
.h12{height:16.992000pt;}
.hc{height:24.312500pt;}
.h2{height:33.351562pt;}
.h1a{height:33.600000pt;}
.h15{height:33.760000pt;}
.h1b{height:33.792000pt;}
.h5{height:34.945312pt;}
.h6{height:34.984750pt;}
.ha{height:39.905000pt;}
.h3{height:40.763021pt;}
.hb{height:40.882500pt;}
.h7{height:40.911250pt;}
.h8{height:42.866250pt;}
.h1c{height:52.134375pt;}
.h9{height:54.514687pt;}
.h11{height:55.402500pt;}
.he{height:57.787500pt;}
.hf{height:60.519362pt;}
.h10{height:61.410000pt;}
.h18{height:101.152000pt;}
.h17{height:101.280000pt;}
.h16{height:134.906667pt;}
.h19{height:219.386667pt;}
.h4{height:1042.720000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.hd{height:1122.720000pt;}
.wb{width:63.072000pt;}
.w7{width:122.752000pt;}
.w5{width:122.880000pt;}
.wc{width:132.160000pt;}
.wd{width:132.672000pt;}
.w11{width:134.906667pt;}
.wf{width:154.400000pt;}
.we{width:154.746667pt;}
.w10{width:155.066667pt;}
.wa{width:276.826667pt;}
.w9{width:297.666667pt;}
.w8{width:307.066667pt;}
.w6{width:359.106667pt;}
.w2{width:793.700000pt;}
.w0{width:793.701333pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:4.640000pt;}
.x3{left:10.400000pt;}
.x2{left:94.666667pt;}
.xf{left:97.312000pt;}
.x1{left:103.333333pt;}
.x17{left:121.311988pt;}
.x15{left:132.671988pt;}
.x14{left:137.626655pt;}
.xe{left:163.066655pt;}
.x6{left:217.466667pt;}
.x10{left:252.066667pt;}
.x16{left:259.746655pt;}
.xa{left:290.946655pt;}
.x4{left:309.826655pt;}
.x8{left:313.986655pt;}
.xb{left:371.426667pt;}
.x9{left:401.666667pt;}
.x11{left:406.466667pt;}
.xc{left:434.493333pt;}
.x12{left:561.533333pt;}
.xd{left:566.653333pt;}
.x7{left:576.573333pt;}
.x13{left:691.013322pt;}
}




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