
    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_def3918aea17097b9f85ff5b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_75d5ae2b5e0c89f47fa29c6d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_7afd498f3f87b79d418bb7f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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_830d2d0253a0e1fd3a0a657b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.592000;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_3ea90d90e9ab9913c25af2c5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.592000;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_1357d2459b49bdd82dd070bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.575000;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_94e3121f16c7583f87e064ea.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0ab3c9240d039e1121f2dce2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_b53cb0e127b98c55f46d3978.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_4ca7990d9a9619923c70908b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;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_6b424123da9d9fb527dc5b5b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.575000;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_255160d20b307170677a8502.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.575000;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_9559f6ac7ea28e27ce973236.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.979492;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_658d38e0ccc04b294cba6065.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284180;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:fff;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_648073ec10665b04194d74f6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.908203;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;}
.m1{transform:matrix(0.241460,0.000000,-0.064694,0.241484,0,0);-ms-transform:matrix(0.241460,0.000000,-0.064694,0.241484,0,0);-webkit-transform:matrix(0.241460,0.000000,-0.064694,0.241484,0,0);}
.m0{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.vc{vertical-align:-82.080000px;}
.v7{vertical-align:-80.640000px;}
.va{vertical-align:-70.560000px;}
.v1{vertical-align:-61.920000px;}
.v6{vertical-align:-47.520000px;}
.v5{vertical-align:-30.240000px;}
.vb{vertical-align:-27.360000px;}
.v9{vertical-align:-24.480000px;}
.v3{vertical-align:-12.960000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.960000px;}
.v4{vertical-align:30.240000px;}
.v8{vertical-align:33.120000px;}
.ls7{letter-spacing:0.000000px;}
.lse{letter-spacing:0.003612px;}
.ls6{letter-spacing:0.022176px;}
.ls8{letter-spacing:0.078859px;}
.ls4{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.721272px;}
.ls5{letter-spacing:0.721872px;}
.lsc{letter-spacing:0.722016px;}
.lsa{letter-spacing:0.722448px;}
.ls1{letter-spacing:2.162304px;}
.ls0{letter-spacing:5.401296px;}
.lsd{letter-spacing:33.269329px;}
.ls9{letter-spacing:87.994801px;}
.lsb{letter-spacing:1130.154227px;}
.ls3{letter-spacing:1288.210621px;}
.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;}
}
.ws8{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.559850px;}
.ws3{word-spacing:-15.120000px;}
.ws0{word-spacing:-13.679850px;}
.ws5{word-spacing:-10.872000px;}
.ws1{word-spacing:-10.440000px;}
.ws6{word-spacing:-10.002149px;}
.ws9{word-spacing:-9.000000px;}
.ws4{word-spacing:-4.680000px;}
.ws7{word-spacing:0.000000px;}
._46{margin-left:-2056.101139px;}
._1f{margin-left:-1862.679616px;}
._47{margin-left:-1647.656329px;}
._48{margin-left:-1595.724959px;}
._40{margin-left:-1466.861515px;}
._3f{margin-left:-1434.304580px;}
._26{margin-left:-1336.350582px;}
._45{margin-left:-1201.652405px;}
._23{margin-left:-1165.960145px;}
._31{margin-left:-1088.025253px;}
._30{margin-left:-1080.029152px;}
._3a{margin-left:-1054.195385px;}
._12{margin-left:-912.963312px;}
._34{margin-left:-860.717206px;}
._35{margin-left:-850.086976px;}
._29{margin-left:-776.805819px;}
._2a{margin-left:-757.840874px;}
._5{margin-left:-666.852623px;}
._9{margin-left:-593.743197px;}
._3b{margin-left:-591.408024px;}
._3d{margin-left:-589.913923px;}
._20{margin-left:-509.732122px;}
._43{margin-left:-506.933844px;}
._2c{margin-left:-502.426073px;}
._36{margin-left:-465.087658px;}
._37{margin-left:-460.625413px;}
._2e{margin-left:-438.557407px;}
._49{margin-left:-371.901430px;}
._42{margin-left:-295.150664px;}
._4a{margin-left:-247.836806px;}
._11{margin-left:-234.115278px;}
._7{margin-left:-219.942052px;}
._27{margin-left:-202.254127px;}
._19{margin-left:-191.234592px;}
._39{margin-left:-178.176913px;}
._2b{margin-left:-165.089404px;}
._38{margin-left:-161.217271px;}
._4e{margin-left:-132.162059px;}
._4c{margin-left:-130.235107px;}
._4d{margin-left:-129.105793px;}
._21{margin-left:-127.596868px;}
._3e{margin-left:-124.211494px;}
._28{margin-left:-119.043039px;}
._4f{margin-left:-115.934246px;}
._22{margin-left:-94.970646px;}
._4b{margin-left:-81.649152px;}
._1{margin-left:-78.136362px;}
._13{margin-left:-66.400005px;}
._2f{margin-left:-64.927231px;}
._1a{margin-left:-52.274736px;}
._41{margin-left:-50.553282px;}
._1c{margin-left:-37.822697px;}
._1e{margin-left:-36.232952px;}
._44{margin-left:-34.225344px;}
._33{margin-left:-30.164166px;}
._32{margin-left:-28.760519px;}
._2d{margin-left:-19.076947px;}
._24{margin-left:-14.307710px;}
._c{margin-left:-11.573282px;}
._d{margin-left:-9.180013px;}
._25{margin-left:-7.646298px;}
._a{margin-left:-6.402242px;}
._0{margin-left:-5.011200px;}
._b{margin-left:-3.900960px;}
._e{margin-left:-2.655629px;}
._4{margin-left:-1.308958px;}
._3{width:1.229893px;}
._2{width:2.914534px;}
._5d{width:4.040447px;}
._14{width:5.503680px;}
._15{width:6.976408px;}
._18{width:8.555857px;}
._59{width:9.612160px;}
._58{width:11.007248px;}
._16{width:12.074398px;}
._17{width:13.982702px;}
._5a{width:15.668986px;}
._54{width:16.760430px;}
._53{width:19.461439px;}
._52{width:20.844162px;}
._5b{width:22.527916px;}
._57{width:24.097118px;}
._55{width:25.286831px;}
._56{width:26.503065px;}
._3c{width:27.820548px;}
._1d{width:29.501922px;}
._1b{width:31.028695px;}
._61{width:32.111411px;}
._69{width:33.268346px;}
._62{width:34.414325px;}
._50{width:36.272643px;}
._5c{width:38.043088px;}
._6a{width:39.872183px;}
._6b{width:41.659775px;}
._63{width:43.350931px;}
._64{width:44.753420px;}
._5f{width:46.563598px;}
._5e{width:47.656801px;}
._60{width:48.657901px;}
._67{width:51.457118px;}
._68{width:52.786451px;}
._6c{width:54.130908px;}
._6d{width:55.268547px;}
._65{width:63.901617px;}
._66{width:65.478429px;}
._10{width:171.957482px;}
._51{width:204.141602px;}
._6{width:238.345353px;}
._f{width:417.520475px;}
._6e{width:790.754133px;}
._8{width:1170.118530px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs3{font-size:18.720000px;}
.fsd{font-size:24.480000px;}
.fs6{font-size:30.240000px;}
.fsc{font-size:36.000000px;}
.fse{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs4{font-size:47.520000px;}
.fs2{font-size:49.195719px;}
.fs5{font-size:54.719400px;}
.fsb{font-size:60.480000px;}
.fs1{font-size:66.239400px;}
.fsa{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.fs8{font-size:90.720000px;}
.y4d{bottom:-13.680000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:3.600000px;}
.y2f{bottom:3.960000px;}
.y4{bottom:47.880000px;}
.y77{bottom:48.960000px;}
.y76{bottom:72.719850px;}
.y103{bottom:73.080000px;}
.y2b{bottom:77.400000px;}
.yd8{bottom:82.800000px;}
.y102{bottom:89.640000px;}
.y9f{bottom:91.440000px;}
.yd7{bottom:98.280000px;}
.yf3{bottom:100.080000px;}
.y4c{bottom:109.800000px;}
.y75{bottom:110.520000px;}
.y9e{bottom:111.960000px;}
.yd6{bottom:113.760000px;}
.y2a{bottom:117.000000px;}
.yc2{bottom:119.160000px;}
.y4b{bottom:122.760000px;}
.yf2{bottom:124.200000px;}
.y74{bottom:131.040000px;}
.y9d{bottom:132.840000px;}
.yd5{bottom:135.360000px;}
.y29{bottom:137.880000px;}
.yc1{bottom:140.040000px;}
.y4a{bottom:148.320000px;}
.yd4{bottom:150.840000px;}
.y73{bottom:151.920000px;}
.yf1{bottom:152.640000px;}
.y9c{bottom:153.360000px;}
.yff{bottom:155.520000px;}
.yc0{bottom:160.560000px;}
.yd3{bottom:161.640000px;}
.yf0{bottom:162.720000px;}
.y28{bottom:163.440000px;}
.y49{bottom:172.080000px;}
.y72{bottom:172.440000px;}
.y9b{bottom:174.240000px;}
.ybf{bottom:181.440000px;}
.yd2{bottom:182.160000px;}
.yef{bottom:183.240000px;}
.y27{bottom:193.320000px;}
.y9a{bottom:194.760000px;}
.y48{bottom:195.120000px;}
.yfe{bottom:197.280000px;}
.ybe{bottom:201.960000px;}
.ydc{bottom:202.320000px;}
.yd1{bottom:203.040000px;}
.yee{bottom:204.120000px;}
.y71{bottom:213.840000px;}
.y99{bottom:215.640000px;}
.y47{bottom:218.160000px;}
.y26{bottom:218.520000px;}
.ybd{bottom:222.840000px;}
.yd0{bottom:223.560000px;}
.yed{bottom:224.640000px;}
.y70{bottom:234.720000px;}
.y98{bottom:236.160000px;}
.yfd{bottom:239.040000px;}
.y46{bottom:241.200000px;}
.ybc{bottom:243.360000px;}
.y25{bottom:243.720000px;}
.ycf{bottom:244.440000px;}
.yec{bottom:245.520000px;}
.y96{bottom:255.240000px;}
.y6f{bottom:256.680000px;}
.y97{bottom:257.040000px;}
.yfc{bottom:259.560000px;}
.y45{bottom:264.240000px;}
.yce{bottom:264.960000px;}
.yeb{bottom:266.040000px;}
.y24{bottom:269.280000px;}
.y95{bottom:276.120000px;}
.y6e{bottom:277.560000px;}
.yfb{bottom:280.440000px;}
.ybb{bottom:284.760000px;}
.ycd{bottom:285.840000px;}
.yea{bottom:286.920000px;}
.y44{bottom:287.280000px;}
.y23{bottom:289.800000px;}
.y123{bottom:293.040000px;}
.y94{bottom:296.640000px;}
.y6d{bottom:298.440000px;}
.yfa{bottom:300.960000px;}
.yba{bottom:305.640000px;}
.ycc{bottom:306.360000px;}
.ye9{bottom:307.440000px;}
.y43{bottom:310.320000px;}
.y22{bottom:310.680000px;}
.y122{bottom:311.760000px;}
.y93{bottom:317.520000px;}
.y6c{bottom:318.960000px;}
.yf9{bottom:321.840000px;}
.yb9{bottom:326.160000px;}
.ycb{bottom:326.880000px;}
.ye8{bottom:328.320000px;}
.y121{bottom:330.840000px;}
.y21{bottom:331.200000px;}
.y42{bottom:333.360000px;}
.y92{bottom:338.040000px;}
.y6b{bottom:339.840000px;}
.yf8{bottom:342.360000px;}
.yb8{bottom:347.040000px;}
.yca{bottom:347.760000px;}
.ye7{bottom:348.840000px;}
.y120{bottom:349.920000px;}
.y20{bottom:352.080000px;}
.y41{bottom:357.840000px;}
.y91{bottom:358.920000px;}
.y6a{bottom:360.360000px;}
.yf7{bottom:363.240000px;}
.yb7{bottom:367.560000px;}
.yc9{bottom:368.280000px;}
.y11f{bottom:369.000000px;}
.ye6{bottom:369.720000px;}
.y1f{bottom:372.600000px;}
.y90{bottom:379.440000px;}
.y40{bottom:380.880000px;}
.y69{bottom:381.240000px;}
.y11e{bottom:387.720000px;}
.yb6{bottom:388.440000px;}
.yc8{bottom:389.160000px;}
.ye5{bottom:390.240000px;}
.y1e{bottom:393.480000px;}
.y8f{bottom:400.320000px;}
.y68{bottom:401.760000px;}
.y3f{bottom:402.480000px;}
.yf6{bottom:404.640000px;}
.y11d{bottom:406.800000px;}
.yb5{bottom:408.960000px;}
.yc7{bottom:409.680000px;}
.ye4{bottom:411.120000px;}
.y1d{bottom:414.000000px;}
.y8e{bottom:420.840000px;}
.y67{bottom:422.640000px;}
.y3e{bottom:423.720000px;}
.y11c{bottom:425.880000px;}
.yb4{bottom:429.840000px;}
.ye3{bottom:431.640000px;}
.yc6{bottom:432.000000px;}
.y1c{bottom:439.200000px;}
.y8d{bottom:441.720000px;}
.yf5{bottom:442.080000px;}
.y66{bottom:443.160000px;}
.y3d{bottom:443.520000px;}
.y11b{bottom:444.600000px;}
.yb3{bottom:450.360000px;}
.yc5{bottom:451.080000px;}
.ye2{bottom:452.520000px;}
.y8c{bottom:462.240000px;}
.y3c{bottom:463.320000px;}
.y11a{bottom:463.680000px;}
.y65{bottom:464.040000px;}
.yc4{bottom:465.120000px;}
.y1b{bottom:468.360000px;}
.yb2{bottom:471.240000px;}
.ye1{bottom:473.040000px;}
.yc3{bottom:481.320000px;}
.y119{bottom:482.760000px;}
.y3b{bottom:483.120000px;}
.y64{bottom:484.560000px;}
.yb1{bottom:491.760000px;}
.ye0{bottom:493.920000px;}
.y1a{bottom:495.720000px;}
.y118{bottom:501.480000px;}
.y3a{bottom:502.920000px;}
.y8b{bottom:503.640000px;}
.y63{bottom:505.440000px;}
.ydf{bottom:510.120000px;}
.yb0{bottom:512.280000px;}
.y19{bottom:519.120000px;}
.y117{bottom:520.560000px;}
.y39{bottom:522.720000px;}
.y8a{bottom:524.520000px;}
.y62{bottom:525.960000px;}
.yaf{bottom:533.160000px;}
.y116{bottom:539.640000px;}
.y18{bottom:542.160000px;}
.y38{bottom:542.520000px;}
.ydb{bottom:544.320000px;}
.y89{bottom:545.040000px;}
.y61{bottom:546.840000px;}
.yae{bottom:553.680000px;}
.y115{bottom:558.720000px;}
.y37{bottom:562.680000px;}
.yda{bottom:565.200000px;}
.y88{bottom:565.920000px;}
.y60{bottom:567.360000px;}
.y17{bottom:569.520000px;}
.yad{bottom:576.000000px;}
.y114{bottom:577.440000px;}
.y36{bottom:582.480000px;}
.y87{bottom:586.440000px;}
.y5f{bottom:588.240000px;}
.y113{bottom:596.520000px;}
.y16{bottom:596.880000px;}
.y35{bottom:602.280000px;}
.y86{bottom:607.320000px;}
.y5e{bottom:608.760000px;}
.y112{bottom:615.600000px;}
.yac{bottom:617.760000px;}
.y34{bottom:622.080000px;}
.y15{bottom:623.880000px;}
.y85{bottom:627.840000px;}
.y5d{bottom:629.640000px;}
.y111{bottom:634.320000px;}
.yab{bottom:638.280000px;}
.y33{bottom:641.880000px;}
.y84{bottom:648.720000px;}
.y5c{bottom:650.160000px;}
.y14{bottom:651.240000px;}
.y110{bottom:653.400000px;}
.yaa{bottom:659.160000px;}
.y32{bottom:662.400000px;}
.y83{bottom:669.240000px;}
.y5b{bottom:671.040000px;}
.y10f{bottom:672.480000px;}
.y13{bottom:678.600000px;}
.ya9{bottom:679.680000px;}
.y31{bottom:680.040000px;}
.y30{bottom:682.200000px;}
.y2e{bottom:686.520000px;}
.y2c{bottom:686.880000px;}
.y82{bottom:690.120000px;}
.y5a{bottom:691.560000px;}
.ya8{bottom:700.200000px;}
.y12{bottom:701.640000px;}
.y10e{bottom:710.280000px;}
.y81{bottom:710.640000px;}
.y59{bottom:712.440000px;}
.y11{bottom:721.080000px;}
.y10d{bottom:729.360000px;}
.y80{bottom:731.520000px;}
.y58{bottom:732.960000px;}
.ya7{bottom:741.600000px;}
.y10{bottom:747.720000px;}
.y10c{bottom:748.440000px;}
.y7f{bottom:752.040000px;}
.y57{bottom:753.840000px;}
.yf{bottom:758.520000px;}
.ya6{bottom:762.480000px;}
.y10b{bottom:767.160000px;}
.y7e{bottom:772.920000px;}
.y56{bottom:774.360000px;}
.ye{bottom:776.160000px;}
.ya5{bottom:783.000000px;}
.y10a{bottom:786.240000px;}
.yd{bottom:790.200000px;}
.y7d{bottom:793.440000px;}
.yd9{bottom:794.880000px;}
.y55{bottom:795.240000px;}
.ya4{bottom:803.880000px;}
.y109{bottom:805.320000px;}
.y7c{bottom:814.320000px;}
.y54{bottom:815.760000px;}
.yc{bottom:816.120000px;}
.y108{bottom:824.040000px;}
.ya3{bottom:824.400000px;}
.y7b{bottom:834.840000px;}
.yde{bottom:835.920000px;}
.y53{bottom:836.640000px;}
.yb{bottom:840.240000px;}
.y107{bottom:843.120000px;}
.ya2{bottom:845.280000px;}
.y7a{bottom:855.720000px;}
.ydd{bottom:856.440000px;}
.y52{bottom:857.160000px;}
.y106{bottom:862.200000px;}
.ya{bottom:863.640000px;}
.ya1{bottom:867.240000px;}
.y101{bottom:876.240000px;}
.y79{bottom:877.680000px;}
.y51{bottom:878.040000px;}
.y105{bottom:881.280000px;}
.ya0{bottom:886.320000px;}
.y3{bottom:889.560000px;}
.y100{bottom:897.120000px;}
.yf4{bottom:898.200000px;}
.y50{bottom:898.560000px;}
.y104{bottom:900.000000px;}
.y9{bottom:905.040000px;}
.y2{bottom:913.680000px;}
.y4f{bottom:919.080000px;}
.y78{bottom:919.440000px;}
.y8{bottom:920.520000px;}
.y7{bottom:932.040000px;}
.y1{bottom:937.800000px;}
.y6{bottom:939.240000px;}
.y4e{bottom:944.640000px;}
.y5{bottom:952.920000px;}
.h18{height:2.880000px;}
.h15{height:5.805000px;}
.h11{height:18.360000px;}
.h14{height:18.372656px;}
.h13{height:18.720000px;}
.ha{height:19.974240px;}
.h4{height:20.292480px;}
.h21{height:24.025781px;}
.h7{height:30.476250px;}
.h1c{height:35.332031px;}
.h22{height:38.158594px;}
.hc{height:40.985156px;}
.h17{height:44.148819px;}
.h5{height:51.511680px;}
.h3{height:53.328160px;}
.h1b{height:53.677380px;}
.h1f{height:53.704099px;}
.h6{height:58.385600px;}
.h16{height:59.357813px;}
.hd{height:65.010349px;}
.h12{height:66.756895px;}
.h19{height:70.628906px;}
.hf{height:70.664062px;}
.h2{height:70.677440px;}
.hb{height:72.326250px;}
.h10{height:72.562500px;}
.h1d{height:75.093750px;}
.he{height:76.824000px;}
.h20{height:79.758281px;}
.h1e{height:81.011250px;}
.h1{height:81.929531px;}
.h1a{height:89.115840px;}
.h8{height:90.535680px;}
.h9{height:96.798240px;}
.h0{height:1020.000000px;}
.w2{width:4.320000px;}
.wa{width:6.480000px;}
.w9{width:7.200000px;}
.w7{width:18.720000px;}
.w6{width:60.120000px;}
.w1{width:68.400000px;}
.w4{width:69.840000px;}
.w8{width:75.600000px;}
.w3{width:87.840000px;}
.w5{width:92.160000px;}
.w0{width:723.000000px;}
.x0{left:0.000000px;}
.x1f{left:37.440000px;}
.x20{left:79.920000px;}
.x12{left:84.960000px;}
.x9{left:87.120000px;}
.x2e{left:95.760000px;}
.x31{left:97.920000px;}
.x1c{left:103.320000px;}
.xe{left:104.760000px;}
.x2d{left:109.080000px;}
.x13{left:110.880000px;}
.x34{left:117.360000px;}
.xb{left:118.800000px;}
.x3{left:120.600000px;}
.x2c{left:127.439850px;}
.x6{left:151.200000px;}
.xa{left:156.960000px;}
.x22{left:162.360000px;}
.x4{left:164.520000px;}
.x7{left:167.040000px;}
.x14{left:179.280000px;}
.x35{left:181.080000px;}
.x15{left:183.600000px;}
.xf{left:203.040000px;}
.x5{left:245.880000px;}
.x16{left:271.440000px;}
.xd{left:312.120000px;}
.x17{left:341.280000px;}
.x1d{left:343.800000px;}
.x18{left:345.600000px;}
.x2{left:349.920000px;}
.x8{left:352.080000px;}
.xc{left:356.040000px;}
.x28{left:398.520000px;}
.x30{left:411.480000px;}
.x19{left:437.760000px;}
.x25{left:455.040000px;}
.x1a{left:497.880000px;}
.x1b{left:516.600000px;}
.x29{left:554.760000px;}
.x2b{left:561.600000px;}
.x10{left:568.080000px;}
.x27{left:604.440000px;}
.x1{left:617.760000px;}
.x11{left:619.200000px;}
.x2a{left:621.000000px;}
.x21{left:624.600000px;}
.x23{left:636.120000px;}
.x24{left:637.200000px;}
.x33{left:638.280000px;}
.x2f{left:658.800000px;}
.x26{left:662.040000px;}
.x1e{left:664.560000px;}
.x32{left:671.400000px;}
@media print{
.vc{vertical-align:-72.960000pt;}
.v7{vertical-align:-71.680000pt;}
.va{vertical-align:-62.720000pt;}
.v1{vertical-align:-55.040000pt;}
.v6{vertical-align:-42.240000pt;}
.v5{vertical-align:-26.880000pt;}
.vb{vertical-align:-24.320000pt;}
.v9{vertical-align:-21.760000pt;}
.v3{vertical-align:-11.520000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:11.520000pt;}
.v4{vertical-align:26.880000pt;}
.v8{vertical-align:29.440000pt;}
.ls7{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.003211pt;}
.ls6{letter-spacing:0.019712pt;}
.ls8{letter-spacing:0.070097pt;}
.ls4{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.641131pt;}
.ls5{letter-spacing:0.641664pt;}
.lsc{letter-spacing:0.641792pt;}
.lsa{letter-spacing:0.642176pt;}
.ls1{letter-spacing:1.922048pt;}
.ls0{letter-spacing:4.801152pt;}
.lsd{letter-spacing:29.572736pt;}
.ls9{letter-spacing:78.217601pt;}
.lsb{letter-spacing:1004.581535pt;}
.ls3{letter-spacing:1145.076108pt;}
.ws8{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.719867pt;}
.ws3{word-spacing:-13.440000pt;}
.ws0{word-spacing:-12.159867pt;}
.ws5{word-spacing:-9.664000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.890799pt;}
.ws9{word-spacing:-8.000000pt;}
.ws4{word-spacing:-4.160000pt;}
.ws7{word-spacing:0.000000pt;}
._46{margin-left:-1827.645457pt;}
._1f{margin-left:-1655.715215pt;}
._47{margin-left:-1464.583404pt;}
._48{margin-left:-1418.422186pt;}
._40{margin-left:-1303.876903pt;}
._3f{margin-left:-1274.937404pt;}
._26{margin-left:-1187.867184pt;}
._45{margin-left:-1068.135471pt;}
._23{margin-left:-1036.409018pt;}
._31{margin-left:-967.133558pt;}
._30{margin-left:-960.025913pt;}
._3a{margin-left:-937.062564pt;}
._12{margin-left:-811.522944pt;}
._34{margin-left:-765.081961pt;}
._35{margin-left:-755.632868pt;}
._29{margin-left:-690.494061pt;}
._2a{margin-left:-673.636332pt;}
._5{margin-left:-592.757887pt;}
._9{margin-left:-527.771730pt;}
._3b{margin-left:-525.696021pt;}
._3d{margin-left:-524.367931pt;}
._20{margin-left:-453.095220pt;}
._43{margin-left:-450.607862pt;}
._2c{margin-left:-446.600953pt;}
._36{margin-left:-413.411252pt;}
._37{margin-left:-409.444812pt;}
._2e{margin-left:-389.828806pt;}
._49{margin-left:-330.579048pt;}
._42{margin-left:-262.356146pt;}
._4a{margin-left:-220.299383pt;}
._11{margin-left:-208.102470pt;}
._7{margin-left:-195.504046pt;}
._27{margin-left:-179.781446pt;}
._19{margin-left:-169.986304pt;}
._39{margin-left:-158.379478pt;}
._2b{margin-left:-146.746136pt;}
._38{margin-left:-143.304241pt;}
._4e{margin-left:-117.477386pt;}
._4c{margin-left:-115.764540pt;}
._4d{margin-left:-114.760705pt;}
._21{margin-left:-113.419438pt;}
._3e{margin-left:-110.410217pt;}
._28{margin-left:-105.816034pt;}
._4f{margin-left:-103.052663pt;}
._22{margin-left:-84.418352pt;}
._4b{margin-left:-72.577024pt;}
._1{margin-left:-69.454544pt;}
._13{margin-left:-59.022227pt;}
._2f{margin-left:-57.713094pt;}
._1a{margin-left:-46.466432pt;}
._41{margin-left:-44.936250pt;}
._1c{margin-left:-33.620175pt;}
._1e{margin-left:-32.207068pt;}
._44{margin-left:-30.422528pt;}
._33{margin-left:-26.812592pt;}
._32{margin-left:-25.564906pt;}
._2d{margin-left:-16.957286pt;}
._24{margin-left:-12.717965pt;}
._c{margin-left:-10.287362pt;}
._d{margin-left:-8.160011pt;}
._25{margin-left:-6.796710pt;}
._a{margin-left:-5.690882pt;}
._0{margin-left:-4.454400pt;}
._b{margin-left:-3.467520pt;}
._e{margin-left:-2.360559pt;}
._4{margin-left:-1.163518pt;}
._3{width:1.093238pt;}
._2{width:2.590697pt;}
._5d{width:3.591508pt;}
._14{width:4.892160pt;}
._15{width:6.201252pt;}
._18{width:7.605206pt;}
._59{width:8.544143pt;}
._58{width:9.784220pt;}
._16{width:10.732798pt;}
._17{width:12.429068pt;}
._5a{width:13.927988pt;}
._54{width:14.898160pt;}
._53{width:17.299057pt;}
._52{width:18.528144pt;}
._5b{width:20.024814pt;}
._57{width:21.419661pt;}
._55{width:22.477184pt;}
._56{width:23.558280pt;}
._3c{width:24.729376pt;}
._1d{width:26.223930pt;}
._1b{width:27.581062pt;}
._61{width:28.543477pt;}
._69{width:29.571863pt;}
._62{width:30.590511pt;}
._50{width:32.242349pt;}
._5c{width:33.816078pt;}
._6a{width:35.441941pt;}
._6b{width:37.030911pt;}
._63{width:38.534161pt;}
._64{width:39.780818pt;}
._5f{width:41.389865pt;}
._5e{width:42.361601pt;}
._60{width:43.251467pt;}
._67{width:45.739661pt;}
._68{width:46.921289pt;}
._6c{width:48.116363pt;}
._6d{width:49.127598pt;}
._65{width:56.801437pt;}
._66{width:58.203048pt;}
._10{width:152.851095pt;}
._51{width:181.459202pt;}
._6{width:211.862536pt;}
._f{width:371.129311pt;}
._6e{width:702.892563pt;}
._8{width:1040.105360pt;}
.fs7{font-size:5.120000pt;}
.fs3{font-size:16.640000pt;}
.fsd{font-size:21.760000pt;}
.fs6{font-size:26.880000pt;}
.fsc{font-size:32.000000pt;}
.fse{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:43.729528pt;}
.fs5{font-size:48.639467pt;}
.fsb{font-size:53.760000pt;}
.fs1{font-size:58.879467pt;}
.fsa{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.fs8{font-size:80.640000pt;}
.y4d{bottom:-12.160000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:3.200000pt;}
.y2f{bottom:3.520000pt;}
.y4{bottom:42.560000pt;}
.y77{bottom:43.520000pt;}
.y76{bottom:64.639867pt;}
.y103{bottom:64.960000pt;}
.y2b{bottom:68.800000pt;}
.yd8{bottom:73.600000pt;}
.y102{bottom:79.680000pt;}
.y9f{bottom:81.280000pt;}
.yd7{bottom:87.360000pt;}
.yf3{bottom:88.960000pt;}
.y4c{bottom:97.600000pt;}
.y75{bottom:98.240000pt;}
.y9e{bottom:99.520000pt;}
.yd6{bottom:101.120000pt;}
.y2a{bottom:104.000000pt;}
.yc2{bottom:105.920000pt;}
.y4b{bottom:109.120000pt;}
.yf2{bottom:110.400000pt;}
.y74{bottom:116.480000pt;}
.y9d{bottom:118.080000pt;}
.yd5{bottom:120.320000pt;}
.y29{bottom:122.560000pt;}
.yc1{bottom:124.480000pt;}
.y4a{bottom:131.840000pt;}
.yd4{bottom:134.080000pt;}
.y73{bottom:135.040000pt;}
.yf1{bottom:135.680000pt;}
.y9c{bottom:136.320000pt;}
.yff{bottom:138.240000pt;}
.yc0{bottom:142.720000pt;}
.yd3{bottom:143.680000pt;}
.yf0{bottom:144.640000pt;}
.y28{bottom:145.280000pt;}
.y49{bottom:152.960000pt;}
.y72{bottom:153.280000pt;}
.y9b{bottom:154.880000pt;}
.ybf{bottom:161.280000pt;}
.yd2{bottom:161.920000pt;}
.yef{bottom:162.880000pt;}
.y27{bottom:171.840000pt;}
.y9a{bottom:173.120000pt;}
.y48{bottom:173.440000pt;}
.yfe{bottom:175.360000pt;}
.ybe{bottom:179.520000pt;}
.ydc{bottom:179.840000pt;}
.yd1{bottom:180.480000pt;}
.yee{bottom:181.440000pt;}
.y71{bottom:190.080000pt;}
.y99{bottom:191.680000pt;}
.y47{bottom:193.920000pt;}
.y26{bottom:194.240000pt;}
.ybd{bottom:198.080000pt;}
.yd0{bottom:198.720000pt;}
.yed{bottom:199.680000pt;}
.y70{bottom:208.640000pt;}
.y98{bottom:209.920000pt;}
.yfd{bottom:212.480000pt;}
.y46{bottom:214.400000pt;}
.ybc{bottom:216.320000pt;}
.y25{bottom:216.640000pt;}
.ycf{bottom:217.280000pt;}
.yec{bottom:218.240000pt;}
.y96{bottom:226.880000pt;}
.y6f{bottom:228.160000pt;}
.y97{bottom:228.480000pt;}
.yfc{bottom:230.720000pt;}
.y45{bottom:234.880000pt;}
.yce{bottom:235.520000pt;}
.yeb{bottom:236.480000pt;}
.y24{bottom:239.360000pt;}
.y95{bottom:245.440000pt;}
.y6e{bottom:246.720000pt;}
.yfb{bottom:249.280000pt;}
.ybb{bottom:253.120000pt;}
.ycd{bottom:254.080000pt;}
.yea{bottom:255.040000pt;}
.y44{bottom:255.360000pt;}
.y23{bottom:257.600000pt;}
.y123{bottom:260.480000pt;}
.y94{bottom:263.680000pt;}
.y6d{bottom:265.280000pt;}
.yfa{bottom:267.520000pt;}
.yba{bottom:271.680000pt;}
.ycc{bottom:272.320000pt;}
.ye9{bottom:273.280000pt;}
.y43{bottom:275.840000pt;}
.y22{bottom:276.160000pt;}
.y122{bottom:277.120000pt;}
.y93{bottom:282.240000pt;}
.y6c{bottom:283.520000pt;}
.yf9{bottom:286.080000pt;}
.yb9{bottom:289.920000pt;}
.ycb{bottom:290.560000pt;}
.ye8{bottom:291.840000pt;}
.y121{bottom:294.080000pt;}
.y21{bottom:294.400000pt;}
.y42{bottom:296.320000pt;}
.y92{bottom:300.480000pt;}
.y6b{bottom:302.080000pt;}
.yf8{bottom:304.320000pt;}
.yb8{bottom:308.480000pt;}
.yca{bottom:309.120000pt;}
.ye7{bottom:310.080000pt;}
.y120{bottom:311.040000pt;}
.y20{bottom:312.960000pt;}
.y41{bottom:318.080000pt;}
.y91{bottom:319.040000pt;}
.y6a{bottom:320.320000pt;}
.yf7{bottom:322.880000pt;}
.yb7{bottom:326.720000pt;}
.yc9{bottom:327.360000pt;}
.y11f{bottom:328.000000pt;}
.ye6{bottom:328.640000pt;}
.y1f{bottom:331.200000pt;}
.y90{bottom:337.280000pt;}
.y40{bottom:338.560000pt;}
.y69{bottom:338.880000pt;}
.y11e{bottom:344.640000pt;}
.yb6{bottom:345.280000pt;}
.yc8{bottom:345.920000pt;}
.ye5{bottom:346.880000pt;}
.y1e{bottom:349.760000pt;}
.y8f{bottom:355.840000pt;}
.y68{bottom:357.120000pt;}
.y3f{bottom:357.760000pt;}
.yf6{bottom:359.680000pt;}
.y11d{bottom:361.600000pt;}
.yb5{bottom:363.520000pt;}
.yc7{bottom:364.160000pt;}
.ye4{bottom:365.440000pt;}
.y1d{bottom:368.000000pt;}
.y8e{bottom:374.080000pt;}
.y67{bottom:375.680000pt;}
.y3e{bottom:376.640000pt;}
.y11c{bottom:378.560000pt;}
.yb4{bottom:382.080000pt;}
.ye3{bottom:383.680000pt;}
.yc6{bottom:384.000000pt;}
.y1c{bottom:390.400000pt;}
.y8d{bottom:392.640000pt;}
.yf5{bottom:392.960000pt;}
.y66{bottom:393.920000pt;}
.y3d{bottom:394.240000pt;}
.y11b{bottom:395.200000pt;}
.yb3{bottom:400.320000pt;}
.yc5{bottom:400.960000pt;}
.ye2{bottom:402.240000pt;}
.y8c{bottom:410.880000pt;}
.y3c{bottom:411.840000pt;}
.y11a{bottom:412.160000pt;}
.y65{bottom:412.480000pt;}
.yc4{bottom:413.440000pt;}
.y1b{bottom:416.320000pt;}
.yb2{bottom:418.880000pt;}
.ye1{bottom:420.480000pt;}
.yc3{bottom:427.840000pt;}
.y119{bottom:429.120000pt;}
.y3b{bottom:429.440000pt;}
.y64{bottom:430.720000pt;}
.yb1{bottom:437.120000pt;}
.ye0{bottom:439.040000pt;}
.y1a{bottom:440.640000pt;}
.y118{bottom:445.760000pt;}
.y3a{bottom:447.040000pt;}
.y8b{bottom:447.680000pt;}
.y63{bottom:449.280000pt;}
.ydf{bottom:453.440000pt;}
.yb0{bottom:455.360000pt;}
.y19{bottom:461.440000pt;}
.y117{bottom:462.720000pt;}
.y39{bottom:464.640000pt;}
.y8a{bottom:466.240000pt;}
.y62{bottom:467.520000pt;}
.yaf{bottom:473.920000pt;}
.y116{bottom:479.680000pt;}
.y18{bottom:481.920000pt;}
.y38{bottom:482.240000pt;}
.ydb{bottom:483.840000pt;}
.y89{bottom:484.480000pt;}
.y61{bottom:486.080000pt;}
.yae{bottom:492.160000pt;}
.y115{bottom:496.640000pt;}
.y37{bottom:500.160000pt;}
.yda{bottom:502.400000pt;}
.y88{bottom:503.040000pt;}
.y60{bottom:504.320000pt;}
.y17{bottom:506.240000pt;}
.yad{bottom:512.000000pt;}
.y114{bottom:513.280000pt;}
.y36{bottom:517.760000pt;}
.y87{bottom:521.280000pt;}
.y5f{bottom:522.880000pt;}
.y113{bottom:530.240000pt;}
.y16{bottom:530.560000pt;}
.y35{bottom:535.360000pt;}
.y86{bottom:539.840000pt;}
.y5e{bottom:541.120000pt;}
.y112{bottom:547.200000pt;}
.yac{bottom:549.120000pt;}
.y34{bottom:552.960000pt;}
.y15{bottom:554.560000pt;}
.y85{bottom:558.080000pt;}
.y5d{bottom:559.680000pt;}
.y111{bottom:563.840000pt;}
.yab{bottom:567.360000pt;}
.y33{bottom:570.560000pt;}
.y84{bottom:576.640000pt;}
.y5c{bottom:577.920000pt;}
.y14{bottom:578.880000pt;}
.y110{bottom:580.800000pt;}
.yaa{bottom:585.920000pt;}
.y32{bottom:588.800000pt;}
.y83{bottom:594.880000pt;}
.y5b{bottom:596.480000pt;}
.y10f{bottom:597.760000pt;}
.y13{bottom:603.200000pt;}
.ya9{bottom:604.160000pt;}
.y31{bottom:604.480000pt;}
.y30{bottom:606.400000pt;}
.y2e{bottom:610.240000pt;}
.y2c{bottom:610.560000pt;}
.y82{bottom:613.440000pt;}
.y5a{bottom:614.720000pt;}
.ya8{bottom:622.400000pt;}
.y12{bottom:623.680000pt;}
.y10e{bottom:631.360000pt;}
.y81{bottom:631.680000pt;}
.y59{bottom:633.280000pt;}
.y11{bottom:640.960000pt;}
.y10d{bottom:648.320000pt;}
.y80{bottom:650.240000pt;}
.y58{bottom:651.520000pt;}
.ya7{bottom:659.200000pt;}
.y10{bottom:664.640000pt;}
.y10c{bottom:665.280000pt;}
.y7f{bottom:668.480000pt;}
.y57{bottom:670.080000pt;}
.yf{bottom:674.240000pt;}
.ya6{bottom:677.760000pt;}
.y10b{bottom:681.920000pt;}
.y7e{bottom:687.040000pt;}
.y56{bottom:688.320000pt;}
.ye{bottom:689.920000pt;}
.ya5{bottom:696.000000pt;}
.y10a{bottom:698.880000pt;}
.yd{bottom:702.400000pt;}
.y7d{bottom:705.280000pt;}
.yd9{bottom:706.560000pt;}
.y55{bottom:706.880000pt;}
.ya4{bottom:714.560000pt;}
.y109{bottom:715.840000pt;}
.y7c{bottom:723.840000pt;}
.y54{bottom:725.120000pt;}
.yc{bottom:725.440000pt;}
.y108{bottom:732.480000pt;}
.ya3{bottom:732.800000pt;}
.y7b{bottom:742.080000pt;}
.yde{bottom:743.040000pt;}
.y53{bottom:743.680000pt;}
.yb{bottom:746.880000pt;}
.y107{bottom:749.440000pt;}
.ya2{bottom:751.360000pt;}
.y7a{bottom:760.640000pt;}
.ydd{bottom:761.280000pt;}
.y52{bottom:761.920000pt;}
.y106{bottom:766.400000pt;}
.ya{bottom:767.680000pt;}
.ya1{bottom:770.880000pt;}
.y101{bottom:778.880000pt;}
.y79{bottom:780.160000pt;}
.y51{bottom:780.480000pt;}
.y105{bottom:783.360000pt;}
.ya0{bottom:787.840000pt;}
.y3{bottom:790.720000pt;}
.y100{bottom:797.440000pt;}
.yf4{bottom:798.400000pt;}
.y50{bottom:798.720000pt;}
.y104{bottom:800.000000pt;}
.y9{bottom:804.480000pt;}
.y2{bottom:812.160000pt;}
.y4f{bottom:816.960000pt;}
.y78{bottom:817.280000pt;}
.y8{bottom:818.240000pt;}
.y7{bottom:828.480000pt;}
.y1{bottom:833.600000pt;}
.y6{bottom:834.880000pt;}
.y4e{bottom:839.680000pt;}
.y5{bottom:847.040000pt;}
.h18{height:2.560000pt;}
.h15{height:5.160000pt;}
.h11{height:16.320000pt;}
.h14{height:16.331250pt;}
.h13{height:16.640000pt;}
.ha{height:17.754880pt;}
.h4{height:18.037760pt;}
.h21{height:21.356250pt;}
.h7{height:27.090000pt;}
.h1c{height:31.406250pt;}
.h22{height:33.918750pt;}
.hc{height:36.431250pt;}
.h17{height:39.243395pt;}
.h5{height:45.788160pt;}
.h3{height:47.402808pt;}
.h1b{height:47.713227pt;}
.h1f{height:47.736977pt;}
.h6{height:51.898311pt;}
.h16{height:52.762500pt;}
.hd{height:57.786977pt;}
.h12{height:59.339462pt;}
.h19{height:62.781250pt;}
.hf{height:62.812500pt;}
.h2{height:62.824391pt;}
.hb{height:64.290000pt;}
.h10{height:64.500000pt;}
.h1d{height:66.750000pt;}
.he{height:68.288000pt;}
.h20{height:70.896250pt;}
.h1e{height:72.010000pt;}
.h1{height:72.826250pt;}
.h1a{height:79.214080pt;}
.h8{height:80.476160pt;}
.h9{height:86.042880pt;}
.h0{height:906.666667pt;}
.w2{width:3.840000pt;}
.wa{width:5.760000pt;}
.w9{width:6.400000pt;}
.w7{width:16.640000pt;}
.w6{width:53.440000pt;}
.w1{width:60.800000pt;}
.w4{width:62.080000pt;}
.w8{width:67.200000pt;}
.w3{width:78.080000pt;}
.w5{width:81.920000pt;}
.w0{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1f{left:33.280000pt;}
.x20{left:71.040000pt;}
.x12{left:75.520000pt;}
.x9{left:77.440000pt;}
.x2e{left:85.120000pt;}
.x31{left:87.040000pt;}
.x1c{left:91.840000pt;}
.xe{left:93.120000pt;}
.x2d{left:96.960000pt;}
.x13{left:98.560000pt;}
.x34{left:104.320000pt;}
.xb{left:105.600000pt;}
.x3{left:107.200000pt;}
.x2c{left:113.279867pt;}
.x6{left:134.400000pt;}
.xa{left:139.520000pt;}
.x22{left:144.320000pt;}
.x4{left:146.240000pt;}
.x7{left:148.480000pt;}
.x14{left:159.360000pt;}
.x35{left:160.960000pt;}
.x15{left:163.200000pt;}
.xf{left:180.480000pt;}
.x5{left:218.560000pt;}
.x16{left:241.280000pt;}
.xd{left:277.440000pt;}
.x17{left:303.360000pt;}
.x1d{left:305.600000pt;}
.x18{left:307.200000pt;}
.x2{left:311.040000pt;}
.x8{left:312.960000pt;}
.xc{left:316.480000pt;}
.x28{left:354.240000pt;}
.x30{left:365.760000pt;}
.x19{left:389.120000pt;}
.x25{left:404.480000pt;}
.x1a{left:442.560000pt;}
.x1b{left:459.200000pt;}
.x29{left:493.120000pt;}
.x2b{left:499.200000pt;}
.x10{left:504.960000pt;}
.x27{left:537.280000pt;}
.x1{left:549.120000pt;}
.x11{left:550.400000pt;}
.x2a{left:552.000000pt;}
.x21{left:555.200000pt;}
.x23{left:565.440000pt;}
.x24{left:566.400000pt;}
.x33{left:567.360000pt;}
.x2f{left:585.600000pt;}
.x26{left:588.480000pt;}
.x1e{left:590.720000pt;}
.x32{left:596.800000pt;}
}




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