
    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_48440921c1a868b1d8e8266d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.060000;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_f1c5b0965a2a69db7d5b56f8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_d3b8ac95a65f60f58d509eec.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_6733ca94fff2f00982fcc5ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.930000;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_f863dbdc3824b2eb092f0391.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.746094;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_38d723c00e8547dc7b73a0e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_8c8c3736f9a670ba170ebee4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.866699;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_bfd1a0a59d124983fc62bf99.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.925781;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_029e0434f20e119f29657246.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.746094;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_06a612d745bc83dfe1c91765.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.895508;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_f5d047d949aa5a121c6908a6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964000;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_aa0ece43a71ba590eb67b378.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.894000;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_d8012dfa94fdac9c3dab1ffa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.875488;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_23e31800922019e68bcc79ef.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.031738;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;}
.m3{transform:matrix(0.159641,0.192392,-0.192392,0.159641,0,0);-ms-transform:matrix(0.159641,0.192392,-0.192392,0.159641,0,0);-webkit-transform:matrix(0.159641,0.192392,-0.192392,0.159641,0,0);}
.m4{transform:matrix(0.160590,-0.191601,0.191601,0.160590,0,0);-ms-transform:matrix(0.160590,-0.191601,0.191601,0.160590,0,0);-webkit-transform:matrix(0.160590,-0.191601,0.191601,0.160590,0,0);}
.m1{transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);}
.m5{transform:matrix(0.250000,0.001300,0.000130,0.250000,0,0);-ms-transform:matrix(0.250000,0.001300,0.000130,0.250000,0,0);-webkit-transform:matrix(0.250000,0.001300,0.000130,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.v1{vertical-align:29.250001px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.041892px;}
.ls5{letter-spacing:0.086686px;}
.ls6{letter-spacing:0.086731px;}
.ls8{letter-spacing:0.086911px;}
.lsf{letter-spacing:0.119790px;}
.ls7{letter-spacing:35.852552px;}
.ls4{letter-spacing:51.679694px;}
.lsb{letter-spacing:106.500000px;}
.ls9{letter-spacing:107.953131px;}
.lsd{letter-spacing:107.976563px;}
.ls2{letter-spacing:108.000003px;}
.lsa{letter-spacing:111.117194px;}
.ls1{letter-spacing:111.375004px;}
.lsc{letter-spacing:111.937504px;}
.ls3{letter-spacing:112.500004px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(14,40,65),0 0.015em rgb(14,40,65),0.015em 0 rgb(14,40,65),0 -0.015em  rgb(14,40,65);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(14,40,65);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-86.400003px;}
.ws9{word-spacing:-75.600002px;}
.ws2{word-spacing:-72.000001px;}
.ws17{word-spacing:-68.400004px;}
.ws14{word-spacing:-64.800002px;}
.ws4{word-spacing:-61.200000px;}
.ws6{word-spacing:-57.600004px;}
.ws18{word-spacing:-48.198003px;}
.wsb{word-spacing:-39.888001px;}
.ws3{word-spacing:-38.226000px;}
.wsd{word-spacing:-36.564002px;}
.ws8{word-spacing:-34.902001px;}
.ws1{word-spacing:-33.240000px;}
.ws16{word-spacing:-31.578002px;}
.ws13{word-spacing:-29.916001px;}
.ws5{word-spacing:-28.254000px;}
.ws7{word-spacing:-26.592002px;}
.ws12{word-spacing:-21.606002px;}
.wse{word-spacing:-19.320000px;}
.wsf{word-spacing:-18.018001px;}
.ws15{word-spacing:-17.784001px;}
.ws11{word-spacing:-16.620000px;}
.wsa{word-spacing:-13.560000px;}
.ws10{word-spacing:-12.012001px;}
.ws0{word-spacing:0.000000px;}
._14{margin-left:-12.572534px;}
._0{margin-left:-10.656000px;}
._20{margin-left:-7.770000px;}
._1a{margin-left:-5.832000px;}
._4{margin-left:-3.552000px;}
._19{margin-left:-2.324848px;}
._2b{margin-left:-1.056000px;}
._2{width:1.300230px;}
._2f{width:2.347770px;}
._17{width:4.140000px;}
._29{width:5.220002px;}
._e{width:6.480000px;}
._33{width:7.920000px;}
._7{width:9.072000px;}
._9{width:11.040000px;}
._a{width:12.184729px;}
._3e{width:13.325997px;}
._2c{width:14.712003px;}
._27{width:16.116000px;}
._3b{width:17.856001px;}
._2a{width:20.400000px;}
._1c{width:22.134000px;}
._24{width:23.358000px;}
._10{width:24.960000px;}
._11{width:26.378989px;}
._3d{width:28.044002px;}
._3a{width:30.096001px;}
._2e{width:31.776002px;}
._15{width:33.792000px;}
._d{width:35.760000px;}
._22{width:37.494000px;}
._8{width:38.640000px;}
._b{width:41.040000px;}
._31{width:42.155103px;}
._f{width:43.693910px;}
._c{width:45.000000px;}
._21{width:46.647530px;}
._28{width:47.901981px;}
._23{width:49.164000px;}
._6{width:52.992002px;}
._12{width:57.107999px;}
._1{width:58.536002px;}
._13{width:62.476659px;}
._3c{width:65.664002px;}
._2d{width:70.368004px;}
._1d{width:72.930000px;}
._1e{width:74.460000px;}
._26{width:85.672189px;}
._3{width:88.992003px;}
._37{width:102.528003px;}
._39{width:118.512004px;}
._18{width:131.514001px;}
._34{width:136.800004px;}
._1b{width:143.718000px;}
._25{width:154.632000px;}
._3f{width:253.650015px;}
._38{width:324.432010px;}
._35{width:504.288016px;}
._36{width:505.478716px;}
._1f{width:691.764002px;}
._5{width:793.152025px;}
._16{width:894.378009px;}
._32{width:1069.843894px;}
._30{width:4180.932134px;}
.fc6{color:transparent;}
.fc5{color:rgb(78,167,46);}
.fc4{color:rgb(233,113,50);}
.fc2{color:rgb(70,120,134);}
.fc7{color:rgb(255,255,255);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(14,40,65);}
.fsb{font-size:42.000000px;}
.fsc{font-size:48.000003px;}
.fs14{font-size:52.000006px;}
.fsf{font-size:60.000000px;}
.fs18{font-size:66.000004px;}
.fs1a{font-size:72.000002px;}
.fs13{font-size:78.000005px;}
.fs11{font-size:84.000000px;}
.fs5{font-size:96.000006px;}
.fs2{font-size:97.901181px;}
.fs9{font-size:102.000000px;}
.fs15{font-size:108.000000px;}
.fs4{font-size:108.000003px;}
.fs16{font-size:108.000006px;}
.fs17{font-size:108.000007px;}
.fs19{font-size:114.000007px;}
.fsa{font-size:117.000004px;}
.fs6{font-size:120.000001px;}
.fse{font-size:126.000004px;}
.fsd{font-size:128.495296px;}
.fs10{font-size:132.000007px;}
.fs8{font-size:138.000001px;}
.fs1{font-size:144.000005px;}
.fs1b{font-size:174.000012px;}
.fs3{font-size:192.000012px;}
.fs12{font-size:195.802362px;}
.fs7{font-size:213.000001px;}
.fs0{font-size:216.000007px;}
.fs1c{font-size:252.000008px;}
.y0{bottom:0.000000px;}
.yde{bottom:87.801277px;}
.yad{bottom:91.854765px;}
.y1a{bottom:92.557507px;}
.yf0{bottom:92.596477px;}
.y79{bottom:94.154985px;}
.y13{bottom:94.193977px;}
.y75{bottom:94.600822px;}
.y8e{bottom:95.474857px;}
.y38{bottom:95.752395px;}
.y131{bottom:95.791365px;}
.y5d{bottom:97.273102px;}
.y7b{bottom:97.349872px;}
.y10f{bottom:97.385827px;}
.y2a{bottom:97.813440px;}
.y41{bottom:98.058465px;}
.yf3{bottom:98.983327px;}
.y10a{bottom:100.790415px;}
.ybf{bottom:116.008920px;}
.ycc{bottom:119.203808px;}
.y5f{bottom:139.644205px;}
.y5e{bottom:153.684204px;}
.y66{bottom:153.861515px;}
.y78{bottom:153.898629px;}
.y37{bottom:158.643913px;}
.y53{bottom:161.085298px;}
.y19{bottom:164.329809px;}
.y74{bottom:166.933176px;}
.yed{bottom:167.309338px;}
.y12{bottom:171.714332px;}
.y77{bottom:171.898630px;}
.y8d{bottom:178.110992px;}
.y100{bottom:178.771052px;}
.y29{bottom:184.935017px;}
.y126{bottom:185.489073px;}
.ybd{bottom:186.077118px;}
.y13c{bottom:186.104545px;}
.y65{bottom:186.981494px;}
.y52{bottom:188.625299px;}
.yec{bottom:193.229350px;}
.y35{bottom:195.903914px;}
.y9f{bottom:197.129073px;}
.y73{bottom:200.953166px;}
.y4{bottom:202.862084px;}
.y47{bottom:203.189718px;}
.ybc{bottom:204.077118px;}
.y8c{bottom:205.831004px;}
.y125{bottom:207.089075px;}
.y109{bottom:208.320562px;}
.yff{bottom:209.011053px;}
.y11{bottom:210.594333px;}
.y51{bottom:216.165288px;}
.y13b{bottom:216.344546px;}
.y28{bottom:217.335019px;}
.yeb{bottom:219.149351px;}
.y64{bottom:220.101484px;}
.ybb{bottom:222.077119px;}
.y9e{bottom:222.329107px;}
.y124{bottom:228.689077px;}
.y46{bottom:230.729708px;}
.y34{bottom:233.163904px;}
.y115{bottom:234.479765px;}
.y82{bottom:237.309653px;}
.y108{bottom:238.560552px;}
.yfe{bottom:239.251065px;}
.yba{bottom:240.077119px;}
.y50{bottom:243.705284px;}
.yca{bottom:244.187746px;}
.yea{bottom:245.069363px;}
.y9d{bottom:247.529131px;}
.y10{bottom:249.474335px;}
.y27{bottom:249.735053px;}
.y123{bottom:250.289075px;}
.ydc{bottom:250.962507px;}
.y111{bottom:251.712376px;}
.ya7{bottom:251.986403px;}
.y63{bottom:253.221485px;}
.y114{bottom:256.079761px;}
.yb9{bottom:258.077120px;}
.y45{bottom:258.269703px;}
.y18{bottom:259.369801px;}
.y8b{bottom:261.271040px;}
.y107{bottom:268.800541px;}
.y72{bottom:268.993146px;}
.yfd{bottom:269.491066px;}
.y130{bottom:270.322329px;}
.y33{bottom:270.423905px;}
.ye9{bottom:270.989375px;}
.y4f{bottom:271.245279px;}
.y9c{bottom:272.729154px;}
.yc9{bottom:272.987758px;}
.y110{bottom:273.312379px;}
.y11f{bottom:273.645804px;}
.ya6{bottom:275.386401px;}
.yb8{bottom:276.077120px;}
.y113{bottom:277.679762px;}
.y13a{bottom:279.224601px;}
.y44{bottom:285.809698px;}
.y62{bottom:286.341491px;}
.yf{bottom:288.354313px;}
.y8a{bottom:288.991041px;}
.ya2{bottom:293.496126px;}
.yb7{bottom:294.077121px;}
.ye8{bottom:296.909387px;}
.y11e{bottom:297.045808px;}
.y9b{bottom:297.929189px;}
.y4e{bottom:298.785275px;}
.y106{bottom:299.040531px;}
.y112{bottom:299.279761px;}
.yfc{bottom:299.731090px;}
.y12f{bottom:300.562341px;}
.yc8{bottom:301.787759px;}
.y71{bottom:303.013136px;}
.y139{bottom:306.584624px;}
.y32{bottom:307.683895px;}
.y43{bottom:313.349695px;}
.y26{bottom:314.535100px;}
.y81{bottom:315.069655px;}
.ydb{bottom:315.942104px;}
.ya1{bottom:316.896127px;}
.y61{bottom:319.461482px;}
.y11d{bottom:320.445808px;}
.ye7{bottom:322.829399px;}
.y9a{bottom:323.129212px;}
.ye{bottom:327.234315px;}
.yfb{bottom:329.971091px;}
.yb6{bottom:330.077122px;}
.yc7{bottom:330.587771px;}
.y12e{bottom:330.802342px;}
.y138{bottom:333.944625px;}
.y70{bottom:337.033114px;}
.yda{bottom:337.542082px;}
.y3{bottom:338.294122px;}
.y4d{bottom:341.325269px;}
.y11c{bottom:343.845810px;}
.ya5{bottom:343.886205px;}
.y89{bottom:344.431088px;}
.y31{bottom:344.943896px;}
.y25{bottom:346.935113px;}
.yb5{bottom:348.077123px;}
.y99{bottom:348.329213px;}
.y117{bottom:351.803292px;}
.y60{bottom:352.581477px;}
.y80{bottom:353.949679px;}
.y17{bottom:354.409815px;}
.y42{bottom:355.889688px;}
.yd9{bottom:359.142083px;}
.y105{bottom:359.520522px;}
.yfa{bottom:360.211092px;}
.y12d{bottom:361.042354px;}
.yd{bottom:366.114316px;}
.y6f{bottom:371.053115px;}
.y88{bottom:372.151088px;}
.y116{bottom:373.403292px;}
.y98{bottom:373.529202px;}
.ye6{bottom:374.669424px;}
.y2{bottom:377.174124px;}
.y24{bottom:379.335136px;}
.yd8{bottom:380.742073px;}
.y30{bottom:382.203875px;}
.yb4{bottom:384.077124px;}
.yc6{bottom:388.187750px;}
.y137{bottom:388.664604px;}
.y104{bottom:389.760523px;}
.yf9{bottom:390.451093px;}
.y12c{bottom:391.282355px;}
.y11b{bottom:394.783862px;}
.y97{bottom:398.729203px;}
.ye5{bottom:400.589424px;}
.y16{bottom:401.929817px;}
.yb3{bottom:402.077131px;}
.yd7{bottom:402.342073px;}
.yc{bottom:404.994317px;}
.y6e{bottom:405.073105px;}
.y5c{bottom:408.007843px;}
.yab{bottom:411.321914px;}
.y4c{bottom:411.335031px;}
.y136{bottom:416.024594px;}
.y11a{bottom:416.383862px;}
.y122{bottom:416.542068px;}
.yc5{bottom:416.987740px;}
.y36{bottom:419.463876px;}
.y103{bottom:420.000518px;}
.yb2{bottom:420.077132px;}
.y96{bottom:423.929193px;}
.yd6{bottom:423.942074px;}
.y87{bottom:427.591090px;}
.y7f{bottom:431.709670px;}
.y119{bottom:437.983866px;}
.y121{bottom:438.142070px;}
.y5b{bottom:438.607844px;}
.y4b{bottom:438.875032px;}
.y6d{bottom:439.093118px;}
.y13f{bottom:441.380362px;}
.yb{bottom:443.874318px;}
.y23{bottom:444.735135px;}
.yd5{bottom:445.542063px;}
.yc4{bottom:445.787730px;}
.y95{bottom:449.129182px;}
.y102{bottom:450.240513px;}
.yf8{bottom:450.931095px;}
.y12b{bottom:451.762369px;}
.ye4{bottom:452.717426px;}
.yb1{bottom:456.077133px;}
.y2f{bottom:456.723866px;}
.y1{bottom:458.822115px;}
.y118{bottom:459.583866px;}
.y120{bottom:459.742071px;}
.y40{bottom:462.365021px;}
.y4a{bottom:466.415033px;}
.yd4{bottom:467.142064px;}
.y7e{bottom:470.589672px;}
.y135{bottom:470.744584px;}
.y6c{bottom:473.113119px;}
.yb0{bottom:474.077129px;}
.y94{bottom:474.329183px;}
.yc3{bottom:474.587719px;}
.y22{bottom:477.135124px;}
.ye3{bottom:480.077427px;}
.yf7{bottom:481.171096px;}
.y12a{bottom:482.002375px;}
.ya{bottom:482.754320px;}
.y86{bottom:483.031092px;}
.y5a{bottom:483.847820px;}
.yd3{bottom:488.742065px;}
.y3f{bottom:489.905022px;}
.yaf{bottom:492.077130px;}
.y13e{bottom:492.740371px;}
.y49{bottom:493.955034px;}
.y2e{bottom:493.983856px;}
.y134{bottom:498.104585px;}
.y93{bottom:499.529173px;}
.yc2{bottom:503.387709px;}
.yac{bottom:506.944396px;}
.y6b{bottom:507.133120px;}
.ye2{bottom:507.437428px;}
.yaa{bottom:508.463575px;}
.y21{bottom:509.535114px;}
.y1c{bottom:509.761520px;}
.yd2{bottom:510.342054px;}
.yae{bottom:510.437128px;}
.yf6{bottom:511.411097px;}
.y129{bottom:512.242370px;}
.y59{bottom:512.647816px;}
.y3e{bottom:518.255012px;}
.y48{bottom:521.495023px;}
.y9{bottom:521.634321px;}
.y92{bottom:524.729168px;}
.yd1{bottom:531.942048px;}
.ye1{bottom:534.797429px;}
.y85{bottom:538.471094px;}
.y58{bottom:541.447810px;}
.yf5{bottom:541.651098px;}
.y7d{bottom:548.349674px;}
.y3d{bottom:549.035019px;}
.y133{bottom:549.464594px;}
.y91{bottom:549.929174px;}
.y128{bottom:552.160350px;}
.y10d{bottom:552.314231px;}
.yd0{bottom:553.542044px;}
.y1b{bottom:557.281522px;}
.y8{bottom:560.514322px;}
.yc1{bottom:560.987711px;}
.ye0{bottom:562.157430px;}
.ya9{bottom:565.657563px;}
.y57{bottom:570.247800px;}
.yf4{bottom:571.891099px;}
.y20{bottom:574.335123px;}
.y90{bottom:575.129168px;}
.ycf{bottom:575.142043px;}
.y6a{bottom:575.173122px;}
.y3c{bottom:576.575014px;}
.y132{bottom:576.824595px;}
.ya4{bottom:577.357553px;}
.ya3{bottom:577.357554px;}
.y10c{bottom:582.554226px;}
.y2d{bottom:583.503852px;}
.y7c{bottom:587.229665px;}
.ya8{bottom:589.057564px;}
.y127{bottom:589.420345px;}
.yc0{bottom:590.075712px;}
.ydf{bottom:590.093430px;}
.yf2{bottom:593.657803px;}
.yce{bottom:596.742046px;}
.y56{bottom:599.047792px;}
.y7{bottom:599.394323px;}
.y8f{bottom:600.329167px;}
.y84{bottom:601.411092px;}
.y3b{bottom:604.115010px;}
.y1f{bottom:606.735114px;}
.y69{bottom:609.193123px;}
.y10b{bottom:612.794221px;}
.y13d{bottom:612.809455px;}
.ycd{bottom:618.342046px;}
.y2c{bottom:620.763847px;}
.y55{bottom:627.847790px;}
.y83{bottom:629.131089px;}
.y6{bottom:638.274326px;}
.y1e{bottom:639.135110px;}
.yee{bottom:641.232608px;}
.y15{bottom:642.442371px;}
.y68{bottom:643.213124px;}
.y3a{bottom:646.655003px;}
.yf1{bottom:673.822010px;}
.y10e{bottom:686.944058px;}
.ya0{bottom:690.132326px;}
.y76{bottom:690.395115px;}
.y101{bottom:691.441110px;}
.y14{bottom:694.282361px;}
.ybe{bottom:695.185196px;}
.ydd{bottom:698.846616px;}
.y54{bottom:700.924654px;}
.y7a{bottom:700.931262px;}
.ycb{bottom:704.185197px;}
.yef{bottom:707.740318px;}
.y2b{bottom:709.085504px;}
.y5{bottom:711.815122px;}
.y39{bottom:712.750441px;}
.y67{bottom:720.902999px;}
.y1d{bottom:722.532919px;}
.h16{height:30.618164px;}
.h17{height:34.992190px;}
.h1b{height:43.066407px;}
.h27{height:43.681641px;}
.h26{height:43.740235px;}
.h25{height:48.114260px;}
.h29{height:52.488283px;}
.h2a{height:56.862309px;}
.h2c{height:57.761721px;}
.h1e{height:59.640000px;}
.h21{height:60.528004px;}
.h4{height:69.509838px;}
.h22{height:69.602006px;}
.h8{height:69.890629px;}
.h15{height:69.984379px;}
.h14{height:70.125004px;}
.h1f{height:70.560000px;}
.h10{height:74.258789px;}
.h12{height:74.358399px;}
.h11{height:74.507813px;}
.h23{height:75.600000px;}
.h24{height:75.600004px;}
.h7{height:78.732424px;}
.h6{height:78.890628px;}
.h2b{height:83.106450px;}
.h2d{height:83.273442px;}
.h13{height:85.464846px;}
.h28{height:87.363282px;}
.hb{height:87.480469px;}
.ha{height:87.656251px;}
.h19{height:91.854495px;}
.h1a{height:92.039065px;}
.h18{height:93.861798px;}
.h1c{height:96.228521px;}
.h1d{height:96.421880px;}
.hd{height:100.467774px;}
.hf{height:100.602540px;}
.he{height:100.804689px;}
.h3{height:104.835941px;}
.h2{height:104.976566px;}
.h9{height:105.187503px;}
.h2e{height:126.676766px;}
.h5{height:161.280010px;}
.h20{height:164.473984px;}
.hc{height:178.920001px;}
.h1{height:181.440006px;}
.h2f{height:211.680007px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x64{left:41.908465px;}
.xf{left:42.949176px;}
.x59{left:45.640749px;}
.x1f{left:74.214567px;}
.x1d{left:76.464567px;}
.xd{left:77.979337px;}
.xb{left:79.104337px;}
.x10{left:82.566297px;}
.x50{left:87.604495px;}
.x4c{left:89.201928px;}
.x6{left:95.424956px;}
.x9{left:97.336175px;}
.x12{left:98.485394px;}
.xe{left:100.584806px;}
.x63{left:102.105476px;}
.x42{left:107.958044px;}
.x35{left:109.125003px;}
.x49{left:115.293311px;}
.x2a{left:118.083671px;}
.x41{left:119.137723px;}
.x16{left:120.451684px;}
.x1{left:122.974693px;}
.x11{left:125.486221px;}
.x1e{left:130.464569px;}
.x4{left:134.120804px;}
.x2e{left:136.718509px;}
.xc{left:142.104339px;}
.x7{left:150.268707px;}
.x36{left:157.130864px;}
.x33{left:163.125005px;}
.x4a{left:169.293313px;}
.x17{left:181.939967px;}
.x2f{left:190.718511px;}
.x8{left:204.268709px;}
.x37{left:217.125007px;}
.x3a{left:230.357284px;}
.x45{left:236.771675px;}
.x61{left:271.175206px;}
.x73{left:272.534004px;}
.x14{left:276.365743px;}
.x26{left:289.113917px;}
.x55{left:296.168207px;}
.x60{left:297.727851px;}
.x1c{left:303.654362px;}
.x76{left:311.256010px;}
.x32{left:325.776897px;}
.x62{left:335.300208px;}
.x5a{left:342.908718px;}
.x30{left:349.267129px;}
.x31{left:361.986852px;}
.x15{left:368.354138px;}
.x13{left:378.515178px;}
.x4b{left:405.921770px;}
.x5{left:418.754072px;}
.x78{left:450.543986px;}
.x2{left:456.187492px;}
.x77{left:469.820861px;}
.x34{left:481.546590px;}
.x2d{left:513.290806px;}
.x43{left:536.230071px;}
.x6a{left:546.675621px;}
.x51{left:553.479351px;}
.x67{left:556.159021px;}
.x68{left:561.546715px;}
.x69{left:585.180506px;}
.x52{left:607.479353px;}
.xa{left:610.186126px;}
.x29{left:644.031471px;}
.x3{left:646.013676px;}
.x27{left:647.406471px;}
.x6b{left:651.506073px;}
.x53{left:661.479355px;}
.x2b{left:666.504921px;}
.x3c{left:672.477925px;}
.x6f{left:675.648935px;}
.x6d{left:676.884492px;}
.x6e{left:685.405524px;}
.x70{left:689.736506px;}
.x28{left:698.031472px;}
.x6c{left:699.032930px;}
.x54{left:704.465573px;}
.x2c{left:717.129923px;}
.x1a{left:752.598384px;}
.x74{left:753.847449px;}
.x20{left:756.764799px;}
.x21{left:758.276518px;}
.x66{left:771.976712px;}
.x23{left:774.909475px;}
.x24{left:776.421194px;}
.x65{left:783.199032px;}
.x44{left:797.433027px;}
.x22{left:810.764801px;}
.x75{left:812.347451px;}
.x1b{left:814.086667px;}
.x25{left:828.909477px;}
.x3d{left:833.917287px;}
.x38{left:874.919334px;}
.x19{left:892.739200px;}
.x56{left:913.550204px;}
.x58{left:918.770908px;}
.x5c{left:919.786473px;}
.x18{left:925.307737px;}
.x39{left:928.919336px;}
.x3f{left:934.349839px;}
.x48{left:936.141278px;}
.x40{left:937.450189px;}
.x3e{left:948.669000px;}
.x4d{left:952.449893px;}
.x4f{left:955.455752px;}
.x5b{left:962.484443px;}
.x57{left:972.050206px;}
.x5d{left:978.286475px;}
.x71{left:1003.439957px;}
.x4e{left:1010.949895px;}
.x72{left:1023.329733px;}
.x5e{left:1027.786477px;}
.x5f{left:1086.286479px;}
.x3b{left:1111.180727px;}
.x47{left:1156.584472px;}
.x46{left:1159.781338px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.037237pt;}
.ls5{letter-spacing:0.077054pt;}
.ls6{letter-spacing:0.077094pt;}
.ls8{letter-spacing:0.077254pt;}
.lsf{letter-spacing:0.106480pt;}
.ls7{letter-spacing:31.868935pt;}
.ls4{letter-spacing:45.937505pt;}
.lsb{letter-spacing:94.666667pt;}
.ls9{letter-spacing:95.958339pt;}
.lsd{letter-spacing:95.979167pt;}
.ls2{letter-spacing:96.000003pt;}
.lsa{letter-spacing:98.770839pt;}
.ls1{letter-spacing:99.000003pt;}
.lsc{letter-spacing:99.500003pt;}
.ls3{letter-spacing:100.000003pt;}
.wsc{word-spacing:-76.800002pt;}
.ws9{word-spacing:-67.200002pt;}
.ws2{word-spacing:-64.000000pt;}
.ws17{word-spacing:-60.800004pt;}
.ws14{word-spacing:-57.600002pt;}
.ws4{word-spacing:-54.400000pt;}
.ws6{word-spacing:-51.200003pt;}
.ws18{word-spacing:-42.842670pt;}
.wsb{word-spacing:-35.456001pt;}
.ws3{word-spacing:-33.978667pt;}
.wsd{word-spacing:-32.501335pt;}
.ws8{word-spacing:-31.024001pt;}
.ws1{word-spacing:-29.546667pt;}
.ws16{word-spacing:-28.069335pt;}
.ws13{word-spacing:-26.592001pt;}
.ws5{word-spacing:-25.114667pt;}
.ws7{word-spacing:-23.637335pt;}
.ws12{word-spacing:-19.205335pt;}
.wse{word-spacing:-17.173333pt;}
.wsf{word-spacing:-16.016001pt;}
.ws15{word-spacing:-15.808001pt;}
.ws11{word-spacing:-14.773333pt;}
.wsa{word-spacing:-12.053333pt;}
.ws10{word-spacing:-10.677335pt;}
.ws0{word-spacing:0.000000pt;}
._14{margin-left:-11.175586pt;}
._0{margin-left:-9.472000pt;}
._20{margin-left:-6.906666pt;}
._1a{margin-left:-5.184000pt;}
._4{margin-left:-3.157334pt;}
._19{margin-left:-2.066531pt;}
._2b{margin-left:-0.938667pt;}
._2{width:1.155760pt;}
._2f{width:2.086907pt;}
._17{width:3.680000pt;}
._29{width:4.640001pt;}
._e{width:5.760000pt;}
._33{width:7.040000pt;}
._7{width:8.064000pt;}
._9{width:9.813333pt;}
._a{width:10.830870pt;}
._3e{width:11.845330pt;}
._2c{width:13.077336pt;}
._27{width:14.325333pt;}
._3b{width:15.872001pt;}
._2a{width:18.133333pt;}
._1c{width:19.674667pt;}
._24{width:20.762667pt;}
._10{width:22.186667pt;}
._11{width:23.447990pt;}
._3d{width:24.928001pt;}
._3a{width:26.752001pt;}
._2e{width:28.245335pt;}
._15{width:30.037334pt;}
._d{width:31.786667pt;}
._22{width:33.328000pt;}
._8{width:34.346667pt;}
._b{width:36.480000pt;}
._31{width:37.471203pt;}
._f{width:38.839031pt;}
._c{width:40.000000pt;}
._21{width:41.464472pt;}
._28{width:42.579539pt;}
._23{width:43.701333pt;}
._6{width:47.104002pt;}
._12{width:50.762666pt;}
._1{width:52.032002pt;}
._13{width:55.534808pt;}
._3c{width:58.368002pt;}
._2d{width:62.549337pt;}
._1d{width:64.826667pt;}
._1e{width:66.186667pt;}
._26{width:76.153057pt;}
._3{width:79.104003pt;}
._37{width:91.136003pt;}
._39{width:105.344003pt;}
._18{width:116.901335pt;}
._34{width:121.600004pt;}
._1b{width:127.749334pt;}
._25{width:137.450667pt;}
._3f{width:225.466680pt;}
._38{width:288.384009pt;}
._35{width:448.256014pt;}
._36{width:449.314414pt;}
._1f{width:614.901335pt;}
._5{width:705.024023pt;}
._16{width:795.002675pt;}
._32{width:950.972350pt;}
._30{width:3716.384119pt;}
.fsb{font-size:37.333333pt;}
.fsc{font-size:42.666669pt;}
.fs14{font-size:46.222228pt;}
.fsf{font-size:53.333334pt;}
.fs18{font-size:58.666670pt;}
.fs1a{font-size:64.000002pt;}
.fs13{font-size:69.333338pt;}
.fs11{font-size:74.666666pt;}
.fs5{font-size:85.333339pt;}
.fs2{font-size:87.023272pt;}
.fs9{font-size:90.666667pt;}
.fs15{font-size:96.000000pt;}
.fs4{font-size:96.000003pt;}
.fs16{font-size:96.000005pt;}
.fs17{font-size:96.000006pt;}
.fs19{font-size:101.333339pt;}
.fsa{font-size:104.000003pt;}
.fs6{font-size:106.666667pt;}
.fse{font-size:112.000004pt;}
.fsd{font-size:114.218041pt;}
.fs10{font-size:117.333340pt;}
.fs8{font-size:122.666668pt;}
.fs1{font-size:128.000004pt;}
.fs1b{font-size:154.666677pt;}
.fs3{font-size:170.666677pt;}
.fs12{font-size:174.046544pt;}
.fs7{font-size:189.333334pt;}
.fs0{font-size:192.000006pt;}
.fs1c{font-size:224.000007pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:78.045579pt;}
.yad{bottom:81.648680pt;}
.y1a{bottom:82.273340pt;}
.yf0{bottom:82.307980pt;}
.y79{bottom:83.693320pt;}
.y13{bottom:83.727980pt;}
.y75{bottom:84.089620pt;}
.y8e{bottom:84.866540pt;}
.y38{bottom:85.113240pt;}
.y131{bottom:85.147880pt;}
.y5d{bottom:86.464980pt;}
.y7b{bottom:86.533220pt;}
.y10f{bottom:86.565180pt;}
.y2a{bottom:86.945280pt;}
.y41{bottom:87.163080pt;}
.yf3{bottom:87.985180pt;}
.y10a{bottom:89.591480pt;}
.ybf{bottom:103.119040pt;}
.ycc{bottom:105.958940pt;}
.y5f{bottom:124.128182pt;}
.y5e{bottom:136.608181pt;}
.y66{bottom:136.765791pt;}
.y78{bottom:136.798781pt;}
.y37{bottom:141.016811pt;}
.y53{bottom:143.186932pt;}
.y19{bottom:146.070942pt;}
.y74{bottom:148.385046pt;}
.yed{bottom:148.719412pt;}
.y12{bottom:152.634962pt;}
.y77{bottom:152.798782pt;}
.y8d{bottom:158.320882pt;}
.y100{bottom:158.907602pt;}
.y29{bottom:164.386682pt;}
.y126{bottom:164.879176pt;}
.ybd{bottom:165.401882pt;}
.y13c{bottom:165.426262pt;}
.y65{bottom:166.205772pt;}
.y52{bottom:167.666932pt;}
.yec{bottom:171.759422pt;}
.y35{bottom:174.136813pt;}
.y9f{bottom:175.225843pt;}
.y73{bottom:178.625037pt;}
.y4{bottom:180.321853pt;}
.y47{bottom:180.613083pt;}
.ybc{bottom:181.401883pt;}
.y8c{bottom:182.960893pt;}
.y125{bottom:184.079178pt;}
.y109{bottom:185.173833pt;}
.yff{bottom:185.787603pt;}
.y11{bottom:187.194963pt;}
.y51{bottom:192.146923pt;}
.y13b{bottom:192.306263pt;}
.y28{bottom:193.186683pt;}
.yeb{bottom:194.799423pt;}
.y64{bottom:195.645763pt;}
.ybb{bottom:197.401883pt;}
.y9e{bottom:197.625873pt;}
.y124{bottom:203.279179pt;}
.y46{bottom:205.093074pt;}
.y34{bottom:207.256804pt;}
.y115{bottom:208.426458pt;}
.y82{bottom:210.941914pt;}
.y108{bottom:212.053824pt;}
.yfe{bottom:212.667614pt;}
.yba{bottom:213.401884pt;}
.y50{bottom:216.626919pt;}
.yca{bottom:217.055774pt;}
.yea{bottom:217.839434pt;}
.y9d{bottom:220.025894pt;}
.y10{bottom:221.754964pt;}
.y27{bottom:221.986714pt;}
.y123{bottom:222.479178pt;}
.ydc{bottom:223.077784pt;}
.y111{bottom:223.744334pt;}
.ya7{bottom:223.987914pt;}
.y63{bottom:225.085764pt;}
.y114{bottom:227.626454pt;}
.yb9{bottom:229.401884pt;}
.y45{bottom:229.573069pt;}
.y18{bottom:230.550934pt;}
.y8b{bottom:232.240924pt;}
.y107{bottom:238.933815pt;}
.y72{bottom:239.105019pt;}
.yfd{bottom:239.547615pt;}
.y130{bottom:240.286515pt;}
.y33{bottom:240.376805pt;}
.ye9{bottom:240.879445pt;}
.y4f{bottom:241.106915pt;}
.y9c{bottom:242.425915pt;}
.yc9{bottom:242.655785pt;}
.y110{bottom:242.944337pt;}
.y11f{bottom:243.240715pt;}
.ya6{bottom:244.787912pt;}
.yb8{bottom:245.401885pt;}
.y113{bottom:246.826455pt;}
.y13a{bottom:248.199645pt;}
.y44{bottom:254.053065pt;}
.y62{bottom:254.525770pt;}
.yf{bottom:256.314945pt;}
.y8a{bottom:256.880925pt;}
.ya2{bottom:260.885445pt;}
.yb7{bottom:261.401885pt;}
.ye8{bottom:263.919455pt;}
.y11e{bottom:264.040718pt;}
.y9b{bottom:264.825945pt;}
.y4e{bottom:265.586911pt;}
.y106{bottom:265.813805pt;}
.y112{bottom:266.026454pt;}
.yfc{bottom:266.427635pt;}
.y12f{bottom:267.166526pt;}
.yc8{bottom:268.255786pt;}
.y71{bottom:269.345010pt;}
.y139{bottom:272.519666pt;}
.y32{bottom:273.496796pt;}
.y43{bottom:278.533062pt;}
.y26{bottom:279.586756pt;}
.y81{bottom:280.061916pt;}
.ydb{bottom:280.837426pt;}
.ya1{bottom:281.685446pt;}
.y61{bottom:283.965762pt;}
.y11d{bottom:284.840718pt;}
.ye7{bottom:286.959466pt;}
.y9a{bottom:287.225966pt;}
.ye{bottom:290.874946pt;}
.yfb{bottom:293.307636pt;}
.yb6{bottom:293.401886pt;}
.yc7{bottom:293.855796pt;}
.y12e{bottom:294.046526pt;}
.y138{bottom:296.839666pt;}
.y70{bottom:299.584991pt;}
.yda{bottom:300.037407pt;}
.y3{bottom:300.705887pt;}
.y4d{bottom:303.400239pt;}
.y11c{bottom:305.640720pt;}
.ya5{bottom:305.676627pt;}
.y89{bottom:306.160967pt;}
.y31{bottom:306.616797pt;}
.y25{bottom:308.386767pt;}
.yb5{bottom:309.401887pt;}
.y99{bottom:309.625967pt;}
.y117{bottom:312.714037pt;}
.y60{bottom:313.405757pt;}
.y80{bottom:314.621937pt;}
.y17{bottom:315.030947pt;}
.y42{bottom:316.346389pt;}
.yd9{bottom:319.237407pt;}
.y105{bottom:319.573797pt;}
.yfa{bottom:320.187637pt;}
.y12d{bottom:320.926537pt;}
.yd{bottom:325.434947pt;}
.y6f{bottom:329.824992pt;}
.y88{bottom:330.800968pt;}
.y116{bottom:331.914038pt;}
.y98{bottom:332.025958pt;}
.ye6{bottom:333.039488pt;}
.y2{bottom:335.265888pt;}
.y24{bottom:337.186788pt;}
.yd8{bottom:338.437398pt;}
.y30{bottom:339.736778pt;}
.yb4{bottom:341.401888pt;}
.yc6{bottom:345.055778pt;}
.y137{bottom:345.479648pt;}
.y104{bottom:346.453798pt;}
.yf9{bottom:347.067638pt;}
.y12c{bottom:347.806538pt;}
.y11b{bottom:350.918988pt;}
.y97{bottom:354.425958pt;}
.ye5{bottom:356.079488pt;}
.y16{bottom:357.270948pt;}
.yb3{bottom:357.401894pt;}
.yd7{bottom:357.637398pt;}
.yc{bottom:359.994948pt;}
.y6e{bottom:360.064982pt;}
.y5c{bottom:362.673639pt;}
.yab{bottom:365.619479pt;}
.y4c{bottom:365.631139pt;}
.y136{bottom:369.799639pt;}
.y11a{bottom:370.118989pt;}
.y122{bottom:370.259616pt;}
.yc5{bottom:370.655769pt;}
.y36{bottom:372.856779pt;}
.y103{bottom:373.333794pt;}
.yb2{bottom:373.401895pt;}
.y96{bottom:376.825949pt;}
.yd6{bottom:376.837399pt;}
.y87{bottom:380.080969pt;}
.y7f{bottom:383.741929pt;}
.y119{bottom:389.318992pt;}
.y121{bottom:389.459617pt;}
.y5b{bottom:389.873639pt;}
.y4b{bottom:390.111139pt;}
.y6d{bottom:390.304993pt;}
.y13f{bottom:392.338100pt;}
.yb{bottom:394.554950pt;}
.y23{bottom:395.320120pt;}
.yd5{bottom:396.037390pt;}
.yc4{bottom:396.255760pt;}
.y95{bottom:399.225940pt;}
.y102{bottom:400.213790pt;}
.yf8{bottom:400.827640pt;}
.y12b{bottom:401.566550pt;}
.ye4{bottom:402.415490pt;}
.yb1{bottom:405.401896pt;}
.y2f{bottom:405.976770pt;}
.y1{bottom:407.841880pt;}
.y118{bottom:408.518992pt;}
.y120{bottom:408.659619pt;}
.y40{bottom:410.991130pt;}
.y4a{bottom:414.591140pt;}
.yd4{bottom:415.237390pt;}
.y7e{bottom:418.301930pt;}
.y135{bottom:418.439630pt;}
.y6c{bottom:420.544994pt;}
.yb0{bottom:421.401892pt;}
.y94{bottom:421.625940pt;}
.yc3{bottom:421.855750pt;}
.y22{bottom:424.120111pt;}
.ye3{bottom:426.735491pt;}
.yf7{bottom:427.707641pt;}
.y12a{bottom:428.446556pt;}
.ya{bottom:429.114951pt;}
.y86{bottom:429.360971pt;}
.y5a{bottom:430.086951pt;}
.yd3{bottom:434.437391pt;}
.y3f{bottom:435.471131pt;}
.yaf{bottom:437.401893pt;}
.y13e{bottom:437.991441pt;}
.y49{bottom:439.071141pt;}
.y2e{bottom:439.096761pt;}
.y134{bottom:442.759631pt;}
.y93{bottom:444.025931pt;}
.yc2{bottom:447.455741pt;}
.yac{bottom:450.617241pt;}
.y6b{bottom:450.784995pt;}
.ye2{bottom:451.055491pt;}
.yaa{bottom:451.967622pt;}
.y21{bottom:452.920101pt;}
.y1c{bottom:453.121351pt;}
.yd2{bottom:453.637381pt;}
.yae{bottom:453.721891pt;}
.yf6{bottom:454.587642pt;}
.y129{bottom:455.326552pt;}
.y59{bottom:455.686948pt;}
.y3e{bottom:460.671122pt;}
.y48{bottom:463.551132pt;}
.y9{bottom:463.674952pt;}
.y92{bottom:466.425927pt;}
.yd1{bottom:472.837376pt;}
.ye1{bottom:475.375492pt;}
.y85{bottom:478.640972pt;}
.y58{bottom:481.286942pt;}
.yf5{bottom:481.467642pt;}
.y7d{bottom:487.421933pt;}
.y3d{bottom:488.031128pt;}
.y133{bottom:488.412973pt;}
.y91{bottom:488.825933pt;}
.y128{bottom:490.809200pt;}
.y10d{bottom:490.945983pt;}
.yd0{bottom:492.037373pt;}
.y1b{bottom:495.361353pt;}
.y8{bottom:498.234953pt;}
.yc1{bottom:498.655743pt;}
.ye0{bottom:499.695493pt;}
.ya9{bottom:502.806723pt;}
.y57{bottom:506.886933pt;}
.yf4{bottom:508.347643pt;}
.y20{bottom:510.520109pt;}
.y90{bottom:511.225927pt;}
.ycf{bottom:511.237371pt;}
.y6a{bottom:511.264997pt;}
.y3c{bottom:512.511123pt;}
.y132{bottom:512.732973pt;}
.ya4{bottom:513.206713pt;}
.ya3{bottom:513.206714pt;}
.y10c{bottom:517.825979pt;}
.y2d{bottom:518.670091pt;}
.y7c{bottom:521.981925pt;}
.ya8{bottom:523.606724pt;}
.y127{bottom:523.929196pt;}
.yc0{bottom:524.511744pt;}
.ydf{bottom:524.527494pt;}
.yf2{bottom:527.695825pt;}
.yce{bottom:530.437374pt;}
.y56{bottom:532.486926pt;}
.y7{bottom:532.794954pt;}
.y8f{bottom:533.625926pt;}
.y84{bottom:534.587637pt;}
.y3b{bottom:536.991120pt;}
.y1f{bottom:539.320101pt;}
.y69{bottom:541.504998pt;}
.y10b{bottom:544.705974pt;}
.y13d{bottom:544.719515pt;}
.ycd{bottom:549.637375pt;}
.y2c{bottom:551.790087pt;}
.y55{bottom:558.086925pt;}
.y83{bottom:559.227635pt;}
.y6{bottom:567.354956pt;}
.y1e{bottom:568.120098pt;}
.yee{bottom:569.984540pt;}
.y15{bottom:571.059885pt;}
.y68{bottom:571.744999pt;}
.y3a{bottom:574.804447pt;}
.yf1{bottom:598.952898pt;}
.y10e{bottom:610.616940pt;}
.ya0{bottom:613.450957pt;}
.y76{bottom:613.684547pt;}
.y101{bottom:614.614320pt;}
.y14{bottom:617.139877pt;}
.ybe{bottom:617.942397pt;}
.ydd{bottom:621.196992pt;}
.y54{bottom:623.044137pt;}
.y7a{bottom:623.050011pt;}
.ycb{bottom:625.942397pt;}
.yef{bottom:629.102505pt;}
.y2b{bottom:630.298226pt;}
.y5{bottom:632.724553pt;}
.y39{bottom:633.555947pt;}
.y67{bottom:640.802665pt;}
.y1d{bottom:642.251484pt;}
.h16{height:27.216146pt;}
.h17{height:31.104169pt;}
.h1b{height:38.281250pt;}
.h27{height:38.828125pt;}
.h26{height:38.880209pt;}
.h25{height:42.768232pt;}
.h29{height:46.656251pt;}
.h2a{height:50.544274pt;}
.h2c{height:51.343752pt;}
.h1e{height:53.013333pt;}
.h21{height:53.802670pt;}
.h4{height:61.786523pt;}
.h22{height:61.868450pt;}
.h8{height:62.125004pt;}
.h15{height:62.208337pt;}
.h14{height:62.333337pt;}
.h1f{height:62.720000pt;}
.h10{height:66.007813pt;}
.h12{height:66.096354pt;}
.h11{height:66.229167pt;}
.h23{height:67.200000pt;}
.h24{height:67.200004pt;}
.h7{height:69.984377pt;}
.h6{height:70.125002pt;}
.h2b{height:73.872400pt;}
.h2d{height:74.020838pt;}
.h13{height:75.968752pt;}
.h28{height:77.656251pt;}
.hb{height:77.760417pt;}
.ha{height:77.916667pt;}
.h19{height:81.648440pt;}
.h1a{height:81.812503pt;}
.h18{height:83.432709pt;}
.h1c{height:85.536463pt;}
.h1d{height:85.708338pt;}
.hd{height:89.304688pt;}
.hf{height:89.424480pt;}
.he{height:89.604168pt;}
.h3{height:93.187503pt;}
.h2{height:93.312503pt;}
.h9{height:93.500003pt;}
.h2e{height:112.601570pt;}
.h5{height:143.360009pt;}
.h20{height:146.199097pt;}
.hc{height:159.040001pt;}
.h1{height:161.280005pt;}
.h2f{height:188.160006pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x64{left:37.251969pt;}
.xf{left:38.177045pt;}
.x59{left:40.569554pt;}
.x1f{left:65.968504pt;}
.x1d{left:67.968504pt;}
.xd{left:69.314966pt;}
.xb{left:70.314966pt;}
.x10{left:73.392264pt;}
.x50{left:77.870662pt;}
.x4c{left:79.290603pt;}
.x6{left:84.822183pt;}
.x9{left:86.521045pt;}
.x12{left:87.542573pt;}
.xe{left:89.408717pt;}
.x63{left:90.760423pt;}
.x42{left:95.962706pt;}
.x35{left:97.000003pt;}
.x49{left:102.482943pt;}
.x2a{left:104.963263pt;}
.x41{left:105.900198pt;}
.x16{left:107.068163pt;}
.x1{left:109.310838pt;}
.x11{left:111.543308pt;}
.x1e{left:115.968506pt;}
.x4{left:119.218493pt;}
.x2e{left:121.527564pt;}
.xc{left:126.314968pt;}
.x7{left:133.572184pt;}
.x36{left:139.671879pt;}
.x33{left:145.000005pt;}
.x4a{left:150.482945pt;}
.x17{left:161.724415pt;}
.x2f{left:169.527565pt;}
.x8{left:181.572186pt;}
.x37{left:193.000006pt;}
.x3a{left:204.762031pt;}
.x45{left:210.463711pt;}
.x61{left:241.044628pt;}
.x73{left:242.252448pt;}
.x14{left:245.658438pt;}
.x26{left:256.990148pt;}
.x55{left:263.260628pt;}
.x60{left:264.646978pt;}
.x1c{left:269.914989pt;}
.x76{left:276.672009pt;}
.x32{left:289.579464pt;}
.x62{left:298.044630pt;}
.x5a{left:304.807750pt;}
.x30{left:310.459670pt;}
.x31{left:321.766090pt;}
.x15{left:327.425900pt;}
.x13{left:336.457936pt;}
.x4b{left:360.819352pt;}
.x5{left:372.225842pt;}
.x78{left:400.483543pt;}
.x2{left:405.499993pt;}
.x77{left:417.618543pt;}
.x34{left:428.041414pt;}
.x2d{left:456.258495pt;}
.x43{left:476.648952pt;}
.x6a{left:485.933886pt;}
.x51{left:491.981646pt;}
.x67{left:494.363574pt;}
.x68{left:499.152636pt;}
.x69{left:520.160450pt;}
.x52{left:539.981647pt;}
.xa{left:542.387667pt;}
.x29{left:572.472418pt;}
.x3{left:574.234378pt;}
.x27{left:575.472418pt;}
.x6b{left:579.116510pt;}
.x53{left:587.981649pt;}
.x2b{left:592.448819pt;}
.x3c{left:597.758155pt;}
.x6f{left:600.576831pt;}
.x6d{left:601.675104pt;}
.x6e{left:609.249354pt;}
.x70{left:613.099117pt;}
.x28{left:620.472420pt;}
.x6c{left:621.362605pt;}
.x54{left:626.191620pt;}
.x2c{left:637.448820pt;}
.x1a{left:668.976341pt;}
.x74{left:670.086621pt;}
.x20{left:672.679822pt;}
.x21{left:674.023572pt;}
.x66{left:686.201522pt;}
.x23{left:688.808422pt;}
.x24{left:690.152172pt;}
.x65{left:696.176917pt;}
.x44{left:708.829357pt;}
.x22{left:720.679823pt;}
.x75{left:722.086623pt;}
.x1b{left:723.632593pt;}
.x25{left:736.808424pt;}
.x3d{left:741.259811pt;}
.x38{left:777.706075pt;}
.x19{left:793.545955pt;}
.x56{left:812.044626pt;}
.x58{left:816.685251pt;}
.x5c{left:817.587976pt;}
.x18{left:822.495766pt;}
.x39{left:825.706076pt;}
.x3f{left:830.533191pt;}
.x48{left:832.125581pt;}
.x40{left:833.289057pt;}
.x3e{left:843.261333pt;}
.x4d{left:846.622127pt;}
.x4f{left:849.294002pt;}
.x5b{left:855.541727pt;}
.x57{left:864.044628pt;}
.x5d{left:869.587978pt;}
.x71{left:891.946629pt;}
.x4e{left:898.622129pt;}
.x72{left:909.626429pt;}
.x5e{left:913.587979pt;}
.x5f{left:965.587981pt;}
.x3b{left:987.716202pt;}
.x47{left:1028.075086pt;}
.x46{left:1030.916745pt;}
}




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