
    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_9ff0ff62525cf041df955430.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_11ee61e28d8b6b0cdd562093.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962000;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_ede2ac732a2774ff77863442.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_4b9726782c2ff92fa65ccc0f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.116000;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_4b9726782c2ff92fa65ccc0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.116000;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_163ef94adc860de9963179e1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.054000;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_57d743884053bef1301e1fa9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130000;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_523d3771bfd15334238ab420.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.133000;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_163ef94adc860de9963179e1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.054000;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_739268ca29d8dd37fb454a03.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.995000;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_b4ebcf98a236e1594065935f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.995000;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_ed0b890480760d98f289edd2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.121000;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_4b9726782c2ff92fa65ccc0f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.116000;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_163ef94adc860de9963179e1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.054000;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_45ce6b88320167549a2ec2e2.woff2')format("woff");}.fff{font-family:fff;line-height:1.128000;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_86090cf00c48c654539159d2.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.090000;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:ff11;src:url('chunks/assets/font_4947eb7373d01d8e9ce5da02.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.681000;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:ff12;src:url('chunks/assets/font_cc3e0ab77bfc1db12ee76810.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.973000;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:ff13;src:url('chunks/assets/font_6740d517168ce9906814f4d2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.994000;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;}
.m8{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,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);}
.m7{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3{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;}
.ls4{letter-spacing:-0.306000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.225000px;}
.ls5{letter-spacing:0.306000px;}
.ls3{letter-spacing:0.405000px;}
.ls1{letter-spacing:0.450000px;}
.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;}
}
.wsa{word-spacing:-16.891200px;}
.ws0{word-spacing:-15.129107px;}
.wse{word-spacing:-14.904000px;}
.ws2{word-spacing:-14.256000px;}
.ws3{word-spacing:-13.770000px;}
.ws15{word-spacing:-12.546000px;}
.ws7{word-spacing:-12.240000px;}
.ws11{word-spacing:-11.934000px;}
.ws4{word-spacing:-0.450000px;}
.wsc{word-spacing:-0.405000px;}
.ws16{word-spacing:-0.306000px;}
.ws13{word-spacing:-0.225000px;}
.ws1{word-spacing:0.000000px;}
.ws12{word-spacing:0.306000px;}
.ws17{word-spacing:1.530000px;}
.ws5{word-spacing:17.319600px;}
.ws9{word-spacing:18.849600px;}
.ws8{word-spacing:19.278000px;}
.ws14{word-spacing:85.684706px;}
.wsf{word-spacing:86.359706px;}
.ws6{word-spacing:86.539706px;}
.wsd{word-spacing:87.259706px;}
.wsb{word-spacing:88.294706px;}
.ws10{word-spacing:90.904706px;}
._28{margin-left:-12.552382px;}
._2b{margin-left:-11.307960px;}
._12{margin-left:-7.594200px;}
._10{margin-left:-6.292800px;}
._c{margin-left:-4.781400px;}
._d{margin-left:-3.201242px;}
._14{margin-left:-2.148120px;}
._b{margin-left:-1.035000px;}
._7{width:1.205042px;}
._2{width:2.798807px;}
._e{width:3.832560px;}
._1{width:5.131146px;}
._11{width:6.915600px;}
._8{width:8.668527px;}
._4{width:9.795825px;}
._13{width:11.579760px;}
._a{width:12.750121px;}
._16{width:13.910760px;}
._5{width:15.160205px;}
._1f{width:16.221226px;}
._1d{width:17.361475px;}
._26{width:18.368326px;}
._3{width:19.513905px;}
._1e{width:21.297600px;}
._f{width:22.638600px;}
._1a{width:23.747760px;}
._19{width:24.932160px;}
._18{width:26.719920px;}
._22{width:27.870480px;}
._9{width:29.076495px;}
._25{width:30.807705px;}
._15{width:32.509440px;}
._21{width:34.437240px;}
._27{width:35.575560px;}
._2a{width:37.013760px;}
._24{width:38.262240px;}
._29{width:39.402000px;}
._1b{width:40.496040px;}
._1c{width:44.223120px;}
._2c{width:45.642960px;}
._6{width:47.618592px;}
._20{width:51.540642px;}
._17{width:53.619318px;}
._23{width:55.339165px;}
._2d{width:59.731200px;}
._0{width:793.447219px;}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.872320px;}
.fs6{font-size:42.759552px;}
.fs4{font-size:43.731360px;}
.fs7{font-size:45.000000px;}
.fs2{font-size:48.590400px;}
.fs1{font-size:53.449440px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:54.421248px;}
.fsa{font-size:61.200000px;}
.fsb{font-size:67.200000px;}
.fs0{font-size:68.026560px;}
.fs8{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.307530px;}
.y1e{bottom:47.074950px;}
.y32{bottom:48.137850px;}
.y1b{bottom:51.809514px;}
.y1d{bottom:63.578700px;}
.y1c{bottom:63.649500px;}
.y31{bottom:64.889550px;}
.y1a{bottom:65.584892px;}
.y19{bottom:79.360271px;}
.y18{bottom:93.135649px;}
.y17{bottom:104.906674px;}
.y16{bottom:127.209667px;}
.ye0{bottom:127.693800px;}
.y139{bottom:127.714500px;}
.y14f{bottom:127.755900px;}
.y188{bottom:127.758900px;}
.y95{bottom:127.762800px;}
.y121{bottom:127.764300px;}
.yba{bottom:127.769700px;}
.y56{bottom:127.771200px;}
.yfb{bottom:127.776600px;}
.ya6{bottom:127.778100px;}
.y77{bottom:127.781100px;}
.ydf{bottom:148.700700px;}
.y138{bottom:148.721400px;}
.y76{bottom:148.742100px;}
.yb9{bottom:148.757400px;}
.y55{bottom:148.762800px;}
.y187{bottom:148.765800px;}
.y94{bottom:148.769700px;}
.yce{bottom:148.771200px;}
.y1b3{bottom:148.778100px;}
.yfa{bottom:148.783500px;}
.ya5{bottom:148.785000px;}
.yde{bottom:169.707600px;}
.y137{bottom:169.728300px;}
.y75{bottom:169.749000px;}
.y15f{bottom:169.750500px;}
.yf9{bottom:169.762800px;}
.y93{bottom:169.764300px;}
.y10d{bottom:169.769700px;}
.y1bf{bottom:169.771200px;}
.y186{bottom:169.772700px;}
.y54{bottom:169.774200px;}
.y1a3{bottom:169.776600px;}
.ycd{bottom:169.778100px;}
.ydd{bottom:190.714500px;}
.y136{bottom:190.735200px;}
.y14e{bottom:190.749000px;}
.y74{bottom:190.755900px;}
.y15e{bottom:190.757400px;}
.y1b2{bottom:190.762800px;}
.y53{bottom:190.765800px;}
.ycc{bottom:190.769700px;}
.y92{bottom:190.771200px;}
.y17a{bottom:190.772700px;}
.y10c{bottom:190.776600px;}
.y1be{bottom:190.778100px;}
.y185{bottom:190.779600px;}
.y1a2{bottom:190.783500px;}
.y15{bottom:208.853687px;}
.ydc{bottom:211.721400px;}
.y135{bottom:211.742100px;}
.ycb{bottom:211.749000px;}
.yf8{bottom:211.755900px;}
.y73{bottom:211.762800px;}
.y15d{bottom:211.764300px;}
.y1a1{bottom:211.769700px;}
.y120{bottom:211.771200px;}
.y52{bottom:211.772700px;}
.y91{bottom:211.778100px;}
.y179{bottom:211.779600px;}
.y10b{bottom:211.783500px;}
.y184{bottom:211.786500px;}
.y14{bottom:219.179147px;}
.y13{bottom:229.516754px;}
.ydb{bottom:232.728300px;}
.y51{bottom:232.749000px;}
.yca{bottom:232.755900px;}
.yf7{bottom:232.762800px;}
.y16a{bottom:232.764300px;}
.y72{bottom:232.769700px;}
.y15c{bottom:232.771200px;}
.y1a0{bottom:232.776600px;}
.y11f{bottom:232.778100px;}
.y12{bottom:239.842214px;}
.y11{bottom:250.179822px;}
.yda{bottom:253.735200px;}
.y50{bottom:253.755900px;}
.ya4{bottom:253.762800px;}
.y10a{bottom:253.764300px;}
.yb8{bottom:253.765800px;}
.yf6{bottom:253.769700px;}
.y71{bottom:253.771200px;}
.y1a7{bottom:253.776600px;}
.y19f{bottom:253.783500px;}
.y10{bottom:260.505282px;}
.yf{bottom:270.830742px;}
.yd9{bottom:274.742100px;}
.y14d{bottom:274.757400px;}
.y4f{bottom:274.762800px;}
.y192{bottom:274.764300px;}
.ya3{bottom:274.769700px;}
.yf5{bottom:274.771200px;}
.yb7{bottom:274.772700px;}
.y1b1{bottom:274.774200px;}
.y11e{bottom:274.776600px;}
.y19e{bottom:274.777200px;}
.y70{bottom:274.778100px;}
.ye{bottom:281.168350px;}
.y19d{bottom:295.738200px;}
.ya2{bottom:295.749000px;}
.y109{bottom:295.762800px;}
.y14c{bottom:295.764300px;}
.y4e{bottom:295.769700px;}
.y178{bottom:295.771200px;}
.y15b{bottom:295.772700px;}
.yc9{bottom:295.776600px;}
.yf4{bottom:295.778100px;}
.y1b0{bottom:295.781100px;}
.y11d{bottom:295.783500px;}
.yd{bottom:299.742030px;}
.y1af{bottom:316.742100px;}
.y19c{bottom:316.745100px;}
.ya1{bottom:316.755900px;}
.y6f{bottom:316.757400px;}
.y4d{bottom:316.762800px;}
.y12b{bottom:316.764300px;}
.y90{bottom:316.769700px;}
.y14b{bottom:316.771200px;}
.y169{bottom:316.776600px;}
.y11c{bottom:316.777500px;}
.y177{bottom:316.778100px;}
.y15a{bottom:316.779600px;}
.yc8{bottom:316.783500px;}
.y1ae{bottom:337.749000px;}
.y19b{bottom:337.752000px;}
.y159{bottom:337.755900px;}
.yf3{bottom:337.757400px;}
.ya0{bottom:337.762800px;}
.y6e{bottom:337.764300px;}
.y4c{bottom:337.769700px;}
.y12a{bottom:337.771200px;}
.y8f{bottom:337.776600px;}
.y183{bottom:337.778100px;}
.y11b{bottom:337.783500px;}
.y1ad{bottom:358.755900px;}
.y19a{bottom:358.758900px;}
.y158{bottom:358.762800px;}
.yf2{bottom:358.764300px;}
.y9f{bottom:358.769700px;}
.y6d{bottom:358.771200px;}
.yc7{bottom:358.772700px;}
.y4b{bottom:358.776600px;}
.y129{bottom:358.778100px;}
.y8e{bottom:358.783500px;}
.y182{bottom:379.760400px;}
.y6c{bottom:379.762800px;}
.yb6{bottom:379.764300px;}
.y199{bottom:379.765800px;}
.y11a{bottom:379.769700px;}
.yf1{bottom:379.771200px;}
.y14a{bottom:379.774200px;}
.y134{bottom:379.778100px;}
.y176{bottom:379.779600px;}
.y4a{bottom:379.783500px;}
.y175{bottom:400.755900px;}
.y168{bottom:400.757400px;}
.y119{bottom:400.762800px;}
.y49{bottom:400.764300px;}
.y181{bottom:400.767300px;}
.y6b{bottom:400.769700px;}
.yb5{bottom:400.771200px;}
.y8d{bottom:400.776600px;}
.yf0{bottom:400.778100px;}
.y149{bottom:400.781100px;}
.y148{bottom:421.742100px;}
.yb4{bottom:421.762800px;}
.y6a{bottom:421.764300px;}
.y9e{bottom:421.767300px;}
.yef{bottom:421.769700px;}
.y48{bottom:421.771200px;}
.y180{bottom:421.774200px;}
.y1a6{bottom:421.776600px;}
.yd8{bottom:421.778100px;}
.y8c{bottom:421.783500px;}
.yc{bottom:438.467622px;}
.y17f{bottom:442.735200px;}
.y147{bottom:442.749000px;}
.yee{bottom:442.757400px;}
.y47{bottom:442.762800px;}
.yb3{bottom:442.769700px;}
.y69{bottom:442.771200px;}
.y30{bottom:442.774200px;}
.y128{bottom:442.776600px;}
.y108{bottom:442.778100px;}
.y1a5{bottom:442.783500px;}
.y9d{bottom:463.735200px;}
.y17e{bottom:463.742100px;}
.y146{bottom:463.755900px;}
.y174{bottom:463.758900px;}
.y68{bottom:463.762800px;}
.yb2{bottom:463.764300px;}
.y46{bottom:463.769700px;}
.yd7{bottom:463.771200px;}
.y2f{bottom:463.781100px;}
.y127{bottom:463.783500px;}
.y9c{bottom:484.742100px;}
.y107{bottom:484.749000px;}
.y126{bottom:484.755900px;}
.y2e{bottom:484.757400px;}
.y157{bottom:484.758900px;}
.y145{bottom:484.762800px;}
.y191{bottom:484.764300px;}
.y173{bottom:484.765800px;}
.y67{bottom:484.769700px;}
.y8b{bottom:484.771200px;}
.y1bd{bottom:484.776600px;}
.yd6{bottom:484.778100px;}
.y9b{bottom:505.749000px;}
.y106{bottom:505.755900px;}
.y167{bottom:505.757400px;}
.y8a{bottom:505.762800px;}
.y45{bottom:505.764300px;}
.y156{bottom:505.765800px;}
.yd5{bottom:505.769700px;}
.y190{bottom:505.771200px;}
.y172{bottom:505.772700px;}
.y118{bottom:505.778100px;}
.y1bc{bottom:505.783500px;}
.y171{bottom:526.749000px;}
.y2d{bottom:526.755900px;}
.y105{bottom:526.762800px;}
.y166{bottom:526.764300px;}
.y89{bottom:526.769700px;}
.y44{bottom:526.771200px;}
.y155{bottom:526.772700px;}
.y1bb{bottom:526.783500px;}
.y154{bottom:547.749000px;}
.y170{bottom:547.755900px;}
.yed{bottom:547.757400px;}
.y2c{bottom:547.762800px;}
.y117{bottom:547.764300px;}
.y104{bottom:547.769700px;}
.y88{bottom:547.771200px;}
.y1ba{bottom:547.776600px;}
.y43{bottom:547.778100px;}
.y1c5{bottom:547.785000px;}
.y18f{bottom:568.749000px;}
.y153{bottom:568.755900px;}
.y103{bottom:568.762800px;}
.yec{bottom:568.764300px;}
.y144{bottom:568.767150px;}
.y2b{bottom:568.769700px;}
.y116{bottom:568.771200px;}
.y133{bottom:568.776600px;}
.y87{bottom:568.778100px;}
.y18e{bottom:589.755900px;}
.y66{bottom:589.762800px;}
.y2a{bottom:589.764300px;}
.y86{bottom:589.769700px;}
.y42{bottom:589.771200px;}
.y143{bottom:589.774050px;}
.y1b9{bottom:589.776600px;}
.y125{bottom:589.778100px;}
.y132{bottom:589.783500px;}
.y142{bottom:610.735050px;}
.y198{bottom:610.749000px;}
.y1a4{bottom:610.755900px;}
.y102{bottom:610.757400px;}
.yeb{bottom:610.762800px;}
.y85{bottom:610.764300px;}
.y17d{bottom:610.767150px;}
.y65{bottom:610.769700px;}
.y29{bottom:610.771200px;}
.y131{bottom:610.771500px;}
.y165{bottom:610.776600px;}
.y41{bottom:610.778100px;}
.y1b8{bottom:610.783500px;}
.yb{bottom:621.337592px;}
.y141{bottom:631.741950px;}
.y115{bottom:631.750350px;}
.y197{bottom:631.755900px;}
.y1a9{bottom:631.758750px;}
.y64{bottom:631.762800px;}
.y101{bottom:631.764300px;}
.y40{bottom:631.769700px;}
.y84{bottom:631.771200px;}
.y124{bottom:631.772550px;}
.y1ac{bottom:631.774050px;}
.yb1{bottom:631.776600px;}
.y130{bottom:631.777500px;}
.y28{bottom:631.778100px;}
.y164{bottom:631.783500px;}
.ya{bottom:642.729516px;}
.y140{bottom:652.748850px;}
.y114{bottom:652.757250px;}
.y83{bottom:652.762800px;}
.y16f{bottom:652.764150px;}
.y17c{bottom:652.765650px;}
.y27{bottom:652.769700px;}
.y3f{bottom:652.771200px;}
.yea{bottom:652.776600px;}
.yc6{bottom:652.778100px;}
.y123{bottom:652.779450px;}
.y1ab{bottom:652.780950px;}
.yb0{bottom:652.783500px;}
.y9{bottom:656.492747px;}
.y1aa{bottom:673.741950px;}
.y122{bottom:673.755750px;}
.y9a{bottom:673.757250px;}
.yaf{bottom:673.762800px;}
.y113{bottom:673.764150px;}
.y82{bottom:673.769700px;}
.y16e{bottom:673.771050px;}
.y26{bottom:673.771200px;}
.y17b{bottom:673.772550px;}
.y63{bottom:673.776600px;}
.y3e{bottom:673.778100px;}
.ye9{bottom:673.783500px;}
.y8{bottom:683.314648px;}
.y1a8{bottom:694.748850px;}
.y12f{bottom:694.755750px;}
.yc5{bottom:694.762650px;}
.y81{bottom:694.764150px;}
.y196{bottom:694.768800px;}
.y3d{bottom:694.769700px;}
.y112{bottom:694.771050px;}
.y163{bottom:694.772550px;}
.yd4{bottom:694.776600px;}
.y16d{bottom:694.777950px;}
.y25{bottom:694.778100px;}
.y62{bottom:694.783500px;}
.y7{bottom:697.090026px;}
.y6{bottom:710.865404px;}
.y3c{bottom:715.755750px;}
.y100{bottom:715.760400px;}
.ye8{bottom:715.762650px;}
.y18d{bottom:715.764150px;}
.yae{bottom:715.767150px;}
.yc4{bottom:715.769550px;}
.y24{bottom:715.769700px;}
.y80{bottom:715.771050px;}
.y195{bottom:715.775700px;}
.y1b7{bottom:715.776600px;}
.y61{bottom:715.777800px;}
.y162{bottom:715.779450px;}
.yd3{bottom:715.783500px;}
.y5{bottom:724.640783px;}
.y194{bottom:736.721400px;}
.y60{bottom:736.723500px;}
.y13f{bottom:736.755750px;}
.y16c{bottom:736.757250px;}
.y3b{bottom:736.762650px;}
.yc3{bottom:736.764150px;}
.y1c4{bottom:736.765650px;}
.yff{bottom:736.767300px;}
.ye7{bottom:736.769550px;}
.y18c{bottom:736.771050px;}
.yad{bottom:736.774050px;}
.y23{bottom:736.776600px;}
.y7f{bottom:736.777950px;}
.yd2{bottom:736.783500px;}
.y193{bottom:757.728300px;}
.y5f{bottom:757.730400px;}
.yac{bottom:757.735050px;}
.y1b6{bottom:757.741950px;}
.y111{bottom:757.755750px;}
.y13e{bottom:757.762650px;}
.ye6{bottom:757.764150px;}
.y3a{bottom:757.769550px;}
.yc2{bottom:757.771050px;}
.y1c3{bottom:757.772550px;}
.yfe{bottom:757.774200px;}
.y152{bottom:757.776450px;}
.y18b{bottom:757.777950px;}
.y22{bottom:757.783500px;}
.yfd{bottom:778.735200px;}
.y5e{bottom:778.737300px;}
.yab{bottom:778.741950px;}
.y1b5{bottom:778.748850px;}
.yc1{bottom:778.762650px;}
.y7e{bottom:778.764150px;}
.y13d{bottom:778.769550px;}
.ye5{bottom:778.771050px;}
.y39{bottom:778.776450px;}
.yd1{bottom:778.777950px;}
.y1c2{bottom:778.779450px;}
.y151{bottom:778.783350px;}
.y4{bottom:788.840849px;}
.yfc{bottom:799.742100px;}
.y5d{bottom:799.744200px;}
.yaa{bottom:799.748850px;}
.y1b4{bottom:799.755750px;}
.y161{bottom:799.757400px;}
.y13c{bottom:799.762650px;}
.y37{bottom:799.769550px;}
.y7d{bottom:799.771050px;}
.ye4{bottom:799.777950px;}
.y38{bottom:799.783350px;}
.y3{bottom:809.260964px;}
.yd0{bottom:820.749000px;}
.y5c{bottom:820.751100px;}
.yc0{bottom:820.752600px;}
.ya9{bottom:820.755750px;}
.y7c{bottom:820.762650px;}
.y160{bottom:820.764300px;}
.y12e{bottom:820.766400px;}
.ye3{bottom:820.769550px;}
.y36{bottom:820.776450px;}
.y18a{bottom:820.777950px;}
.y20{bottom:825.334650px;}
.y2{bottom:833.373950px;}
.ycf{bottom:841.755900px;}
.y5b{bottom:841.758000px;}
.ybf{bottom:841.759500px;}
.ya8{bottom:841.762650px;}
.y7b{bottom:841.769550px;}
.y13b{bottom:841.771200px;}
.y12d{bottom:841.773300px;}
.y35{bottom:841.783350px;}
.y1f{bottom:858.337650px;}
.y99{bottom:862.759500px;}
.y7a{bottom:862.762800px;}
.y5a{bottom:862.764900px;}
.ybe{bottom:862.766400px;}
.ya7{bottom:862.769550px;}
.y110{bottom:862.776450px;}
.y13a{bottom:862.778100px;}
.y12c{bottom:862.780200px;}
.y150{bottom:883.764900px;}
.y98{bottom:883.766400px;}
.y79{bottom:883.769700px;}
.y59{bottom:883.771800px;}
.ybd{bottom:883.773300px;}
.y1c1{bottom:883.776450px;}
.y34{bottom:883.783350px;}
.y16b{bottom:904.758000px;}
.ybc{bottom:904.764900px;}
.y10f{bottom:904.771800px;}
.y97{bottom:904.773300px;}
.y78{bottom:904.776600px;}
.y58{bottom:904.778700px;}
.ye2{bottom:904.780800px;}
.y1c0{bottom:904.783350px;}
.y33{bottom:904.783500px;}
.y189{bottom:925.761000px;}
.y96{bottom:925.764900px;}
.ybb{bottom:925.771800px;}
.y57{bottom:925.773300px;}
.y10e{bottom:925.778700px;}
.y21{bottom:925.783500px;}
.ye1{bottom:925.787700px;}
.h7{height:28.804389px;}
.hb{height:32.404938px;}
.h8{height:32.536132px;}
.h6{height:36.005486px;}
.h9{height:36.151258px;}
.hf{height:38.520000px;}
.h5{height:39.606035px;}
.ha{height:40.326145px;}
.h23{height:40.759200px;}
.he{height:41.085000px;}
.h26{height:41.688000px;}
.h12{height:43.207200px;}
.h1d{height:47.246400px;}
.h25{height:47.307600px;}
.h18{height:48.960000px;}
.h11{height:49.734000px;}
.h3{height:50.407681px;}
.h4{height:50.611761px;}
.h13{height:50.918400px;}
.h14{height:50.940000px;}
.h15{height:50.979600px;}
.h17{height:51.285600px;}
.h2b{height:51.295200px;}
.h32{height:51.295800px;}
.h31{height:51.298200px;}
.h2d{height:51.301200px;}
.h29{height:51.301800px;}
.h2a{height:51.306600px;}
.h1a{height:51.307200px;}
.h24{height:51.312600px;}
.h1e{height:51.313200px;}
.h33{height:51.340800px;}
.h1c{height:51.346800px;}
.h28{height:51.350400px;}
.h20{height:51.353400px;}
.h2c{height:51.356400px;}
.h30{height:51.357000px;}
.h2f{height:51.360000px;}
.h2e{height:51.361800px;}
.h1b{height:51.362400px;}
.h21{height:51.363000px;}
.h27{height:51.367800px;}
.h1f{height:51.368400px;}
.h19{height:51.369000px;}
.h22{height:51.408000px;}
.h16{height:61.353600px;}
.h10{height:105.564000px;}
.hc{height:1020.714000px;}
.hd{height:1020.750000px;}
.h2{height:1022.694296px;}
.h1{height:1023.000000px;}
.h0{height:1023.300000px;}
.w1{width:723.000000px;}
.w2{width:723.119100px;}
.w0{width:723.120000px;}
.x0{left:0.000000px;}
.x3{left:37.876217px;}
.xa{left:43.178850px;}
.x1{left:44.763906px;}
.xb{left:83.663850px;}
.xc{left:88.786200px;}
.x8{left:92.940900px;}
.x15{left:97.190724px;}
.x13{left:105.701100px;}
.x2{left:120.516340px;}
.x10{left:142.057800px;}
.x16{left:209.869500px;}
.x17{left:242.901300px;}
.x9{left:281.444850px;}
.x12{left:345.929250px;}
.x4{left:354.673477px;}
.xd{left:367.196250px;}
.xe{left:375.697752px;}
.x18{left:379.936101px;}
.x14{left:388.440750px;}
.x19{left:419.339550px;}
.x7{left:438.916725px;}
.x6{left:587.299950px;}
.xf{left:637.192110px;}
.x5{left:665.804850px;}
.x11{left:668.031000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.272000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.200000pt;}
.ls5{letter-spacing:0.272000pt;}
.ls3{letter-spacing:0.360000pt;}
.ls1{letter-spacing:0.400000pt;}
.wsa{word-spacing:-15.014400pt;}
.ws0{word-spacing:-13.448095pt;}
.wse{word-spacing:-13.248000pt;}
.ws2{word-spacing:-12.672000pt;}
.ws3{word-spacing:-12.240000pt;}
.ws15{word-spacing:-11.152000pt;}
.ws7{word-spacing:-10.880000pt;}
.ws11{word-spacing:-10.608000pt;}
.ws4{word-spacing:-0.400000pt;}
.wsc{word-spacing:-0.360000pt;}
.ws16{word-spacing:-0.272000pt;}
.ws13{word-spacing:-0.200000pt;}
.ws1{word-spacing:0.000000pt;}
.ws12{word-spacing:0.272000pt;}
.ws17{word-spacing:1.360000pt;}
.ws5{word-spacing:15.395200pt;}
.ws9{word-spacing:16.755200pt;}
.ws8{word-spacing:17.136000pt;}
.ws14{word-spacing:76.164183pt;}
.wsf{word-spacing:76.764183pt;}
.ws6{word-spacing:76.924183pt;}
.wsd{word-spacing:77.564183pt;}
.wsb{word-spacing:78.484183pt;}
.ws10{word-spacing:80.804183pt;}
._28{margin-left:-11.157673pt;}
._2b{margin-left:-10.051520pt;}
._12{margin-left:-6.750400pt;}
._10{margin-left:-5.593600pt;}
._c{margin-left:-4.250133pt;}
._d{margin-left:-2.845548pt;}
._14{margin-left:-1.909440pt;}
._b{margin-left:-0.920000pt;}
._7{width:1.071148pt;}
._2{width:2.487828pt;}
._e{width:3.406720pt;}
._1{width:4.561019pt;}
._11{width:6.147200pt;}
._8{width:7.705358pt;}
._4{width:8.707400pt;}
._13{width:10.293120pt;}
._a{width:11.333441pt;}
._16{width:12.365120pt;}
._5{width:13.475738pt;}
._1f{width:14.418867pt;}
._1d{width:15.432422pt;}
._26{width:16.327401pt;}
._3{width:17.345693pt;}
._1e{width:18.931200pt;}
._f{width:20.123200pt;}
._1a{width:21.109120pt;}
._19{width:22.161920pt;}
._18{width:23.751040pt;}
._22{width:24.773760pt;}
._9{width:25.845774pt;}
._25{width:27.384626pt;}
._15{width:28.897280pt;}
._21{width:30.610880pt;}
._27{width:31.622720pt;}
._2a{width:32.901120pt;}
._24{width:34.010880pt;}
._29{width:35.024000pt;}
._1b{width:35.996480pt;}
._1c{width:39.309440pt;}
._2c{width:40.571520pt;}
._6{width:42.327637pt;}
._20{width:45.813904pt;}
._17{width:47.661616pt;}
._23{width:49.190369pt;}
._2d{width:53.094400pt;}
._0{width:705.286417pt;}
.fs3{font-size:34.553173pt;}
.fs6{font-size:38.008491pt;}
.fs4{font-size:38.872320pt;}
.fs7{font-size:40.000000pt;}
.fs2{font-size:43.191467pt;}
.fs1{font-size:47.510613pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:48.374443pt;}
.fsa{font-size:54.400000pt;}
.fsb{font-size:59.733333pt;}
.fs0{font-size:60.468053pt;}
.fs8{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.273360pt;}
.y1e{bottom:41.844400pt;}
.y32{bottom:42.789200pt;}
.y1b{bottom:46.052901pt;}
.y1d{bottom:56.514400pt;}
.y1c{bottom:56.577333pt;}
.y31{bottom:57.679600pt;}
.y1a{bottom:58.297682pt;}
.y19{bottom:70.542463pt;}
.y18{bottom:82.787244pt;}
.y17{bottom:93.250377pt;}
.y16{bottom:113.075260pt;}
.ye0{bottom:113.505600pt;}
.y139{bottom:113.524000pt;}
.y14f{bottom:113.560800pt;}
.y188{bottom:113.563467pt;}
.y95{bottom:113.566933pt;}
.y121{bottom:113.568267pt;}
.yba{bottom:113.573067pt;}
.y56{bottom:113.574400pt;}
.yfb{bottom:113.579200pt;}
.ya6{bottom:113.580533pt;}
.y77{bottom:113.583200pt;}
.ydf{bottom:132.178400pt;}
.y138{bottom:132.196800pt;}
.y76{bottom:132.215200pt;}
.yb9{bottom:132.228800pt;}
.y55{bottom:132.233600pt;}
.y187{bottom:132.236267pt;}
.y94{bottom:132.239733pt;}
.yce{bottom:132.241067pt;}
.y1b3{bottom:132.247200pt;}
.yfa{bottom:132.252000pt;}
.ya5{bottom:132.253333pt;}
.yde{bottom:150.851200pt;}
.y137{bottom:150.869600pt;}
.y75{bottom:150.888000pt;}
.y15f{bottom:150.889333pt;}
.yf9{bottom:150.900267pt;}
.y93{bottom:150.901600pt;}
.y10d{bottom:150.906400pt;}
.y1bf{bottom:150.907733pt;}
.y186{bottom:150.909067pt;}
.y54{bottom:150.910400pt;}
.y1a3{bottom:150.912533pt;}
.ycd{bottom:150.913867pt;}
.ydd{bottom:169.524000pt;}
.y136{bottom:169.542400pt;}
.y14e{bottom:169.554667pt;}
.y74{bottom:169.560800pt;}
.y15e{bottom:169.562133pt;}
.y1b2{bottom:169.566933pt;}
.y53{bottom:169.569600pt;}
.ycc{bottom:169.573067pt;}
.y92{bottom:169.574400pt;}
.y17a{bottom:169.575733pt;}
.y10c{bottom:169.579200pt;}
.y1be{bottom:169.580533pt;}
.y185{bottom:169.581867pt;}
.y1a2{bottom:169.585333pt;}
.y15{bottom:185.647722pt;}
.ydc{bottom:188.196800pt;}
.y135{bottom:188.215200pt;}
.ycb{bottom:188.221333pt;}
.yf8{bottom:188.227467pt;}
.y73{bottom:188.233600pt;}
.y15d{bottom:188.234933pt;}
.y1a1{bottom:188.239733pt;}
.y120{bottom:188.241067pt;}
.y52{bottom:188.242400pt;}
.y91{bottom:188.247200pt;}
.y179{bottom:188.248533pt;}
.y10b{bottom:188.252000pt;}
.y184{bottom:188.254667pt;}
.y14{bottom:194.825908pt;}
.y13{bottom:204.014893pt;}
.ydb{bottom:206.869600pt;}
.y51{bottom:206.888000pt;}
.yca{bottom:206.894133pt;}
.yf7{bottom:206.900267pt;}
.y16a{bottom:206.901600pt;}
.y72{bottom:206.906400pt;}
.y15c{bottom:206.907733pt;}
.y1a0{bottom:206.912533pt;}
.y11f{bottom:206.913867pt;}
.y12{bottom:213.193079pt;}
.y11{bottom:222.382064pt;}
.yda{bottom:225.542400pt;}
.y50{bottom:225.560800pt;}
.ya4{bottom:225.566933pt;}
.y10a{bottom:225.568267pt;}
.yb8{bottom:225.569600pt;}
.yf6{bottom:225.573067pt;}
.y71{bottom:225.574400pt;}
.y1a7{bottom:225.579200pt;}
.y19f{bottom:225.585333pt;}
.y10{bottom:231.560251pt;}
.yf{bottom:240.738437pt;}
.yd9{bottom:244.215200pt;}
.y14d{bottom:244.228800pt;}
.y4f{bottom:244.233600pt;}
.y192{bottom:244.234933pt;}
.ya3{bottom:244.239733pt;}
.yf5{bottom:244.241067pt;}
.yb7{bottom:244.242400pt;}
.y1b1{bottom:244.243733pt;}
.y11e{bottom:244.245867pt;}
.y19e{bottom:244.246400pt;}
.y70{bottom:244.247200pt;}
.ye{bottom:249.927422pt;}
.y19d{bottom:262.878400pt;}
.ya2{bottom:262.888000pt;}
.y109{bottom:262.900267pt;}
.y14c{bottom:262.901600pt;}
.y4e{bottom:262.906400pt;}
.y178{bottom:262.907733pt;}
.y15b{bottom:262.909067pt;}
.yc9{bottom:262.912533pt;}
.yf4{bottom:262.913867pt;}
.y1b0{bottom:262.916533pt;}
.y11d{bottom:262.918667pt;}
.yd{bottom:266.437360pt;}
.y1af{bottom:281.548533pt;}
.y19c{bottom:281.551200pt;}
.ya1{bottom:281.560800pt;}
.y6f{bottom:281.562133pt;}
.y4d{bottom:281.566933pt;}
.y12b{bottom:281.568267pt;}
.y90{bottom:281.573067pt;}
.y14b{bottom:281.574400pt;}
.y169{bottom:281.579200pt;}
.y11c{bottom:281.580000pt;}
.y177{bottom:281.580533pt;}
.y15a{bottom:281.581867pt;}
.yc8{bottom:281.585333pt;}
.y1ae{bottom:300.221333pt;}
.y19b{bottom:300.224000pt;}
.y159{bottom:300.227467pt;}
.yf3{bottom:300.228800pt;}
.ya0{bottom:300.233600pt;}
.y6e{bottom:300.234933pt;}
.y4c{bottom:300.239733pt;}
.y12a{bottom:300.241067pt;}
.y8f{bottom:300.245867pt;}
.y183{bottom:300.247200pt;}
.y11b{bottom:300.252000pt;}
.y1ad{bottom:318.894133pt;}
.y19a{bottom:318.896800pt;}
.y158{bottom:318.900267pt;}
.yf2{bottom:318.901600pt;}
.y9f{bottom:318.906400pt;}
.y6d{bottom:318.907733pt;}
.yc7{bottom:318.909067pt;}
.y4b{bottom:318.912533pt;}
.y129{bottom:318.913867pt;}
.y8e{bottom:318.918667pt;}
.y182{bottom:337.564800pt;}
.y6c{bottom:337.566933pt;}
.yb6{bottom:337.568267pt;}
.y199{bottom:337.569600pt;}
.y11a{bottom:337.573067pt;}
.yf1{bottom:337.574400pt;}
.y14a{bottom:337.577067pt;}
.y134{bottom:337.580533pt;}
.y176{bottom:337.581867pt;}
.y4a{bottom:337.585333pt;}
.y175{bottom:356.227467pt;}
.y168{bottom:356.228800pt;}
.y119{bottom:356.233600pt;}
.y49{bottom:356.234933pt;}
.y181{bottom:356.237600pt;}
.y6b{bottom:356.239733pt;}
.yb5{bottom:356.241067pt;}
.y8d{bottom:356.245867pt;}
.yf0{bottom:356.247200pt;}
.y149{bottom:356.249867pt;}
.y148{bottom:374.881867pt;}
.yb4{bottom:374.900267pt;}
.y6a{bottom:374.901600pt;}
.y9e{bottom:374.904267pt;}
.yef{bottom:374.906400pt;}
.y48{bottom:374.907733pt;}
.y180{bottom:374.910400pt;}
.y1a6{bottom:374.912533pt;}
.yd8{bottom:374.913867pt;}
.y8c{bottom:374.918667pt;}
.yc{bottom:389.748997pt;}
.y17f{bottom:393.542400pt;}
.y147{bottom:393.554667pt;}
.yee{bottom:393.562133pt;}
.y47{bottom:393.566933pt;}
.yb3{bottom:393.573067pt;}
.y69{bottom:393.574400pt;}
.y30{bottom:393.577067pt;}
.y128{bottom:393.579200pt;}
.y108{bottom:393.580533pt;}
.y1a5{bottom:393.585333pt;}
.y9d{bottom:412.209067pt;}
.y17e{bottom:412.215200pt;}
.y146{bottom:412.227467pt;}
.y174{bottom:412.230133pt;}
.y68{bottom:412.233600pt;}
.yb2{bottom:412.234933pt;}
.y46{bottom:412.239733pt;}
.yd7{bottom:412.241067pt;}
.y2f{bottom:412.249867pt;}
.y127{bottom:412.252000pt;}
.y9c{bottom:430.881867pt;}
.y107{bottom:430.888000pt;}
.y126{bottom:430.894133pt;}
.y2e{bottom:430.895467pt;}
.y157{bottom:430.896800pt;}
.y145{bottom:430.900267pt;}
.y191{bottom:430.901600pt;}
.y173{bottom:430.902933pt;}
.y67{bottom:430.906400pt;}
.y8b{bottom:430.907733pt;}
.y1bd{bottom:430.912533pt;}
.yd6{bottom:430.913867pt;}
.y9b{bottom:449.554667pt;}
.y106{bottom:449.560800pt;}
.y167{bottom:449.562133pt;}
.y8a{bottom:449.566933pt;}
.y45{bottom:449.568267pt;}
.y156{bottom:449.569600pt;}
.yd5{bottom:449.573067pt;}
.y190{bottom:449.574400pt;}
.y172{bottom:449.575733pt;}
.y118{bottom:449.580533pt;}
.y1bc{bottom:449.585333pt;}
.y171{bottom:468.221333pt;}
.y2d{bottom:468.227467pt;}
.y105{bottom:468.233600pt;}
.y166{bottom:468.234933pt;}
.y89{bottom:468.239733pt;}
.y44{bottom:468.241067pt;}
.y155{bottom:468.242400pt;}
.y1bb{bottom:468.252000pt;}
.y154{bottom:486.888000pt;}
.y170{bottom:486.894133pt;}
.yed{bottom:486.895467pt;}
.y2c{bottom:486.900267pt;}
.y117{bottom:486.901600pt;}
.y104{bottom:486.906400pt;}
.y88{bottom:486.907733pt;}
.y1ba{bottom:486.912533pt;}
.y43{bottom:486.913867pt;}
.y1c5{bottom:486.920000pt;}
.y18f{bottom:505.554667pt;}
.y153{bottom:505.560800pt;}
.y103{bottom:505.566933pt;}
.yec{bottom:505.568267pt;}
.y144{bottom:505.570800pt;}
.y2b{bottom:505.573067pt;}
.y116{bottom:505.574400pt;}
.y133{bottom:505.579200pt;}
.y87{bottom:505.580533pt;}
.y18e{bottom:524.227467pt;}
.y66{bottom:524.233600pt;}
.y2a{bottom:524.234933pt;}
.y86{bottom:524.239733pt;}
.y42{bottom:524.241067pt;}
.y143{bottom:524.243600pt;}
.y1b9{bottom:524.245867pt;}
.y125{bottom:524.247200pt;}
.y132{bottom:524.252000pt;}
.y142{bottom:542.875600pt;}
.y198{bottom:542.888000pt;}
.y1a4{bottom:542.894133pt;}
.y102{bottom:542.895467pt;}
.yeb{bottom:542.900267pt;}
.y85{bottom:542.901600pt;}
.y17d{bottom:542.904133pt;}
.y65{bottom:542.906400pt;}
.y29{bottom:542.907733pt;}
.y131{bottom:542.908000pt;}
.y165{bottom:542.912533pt;}
.y41{bottom:542.913867pt;}
.y1b8{bottom:542.918667pt;}
.yb{bottom:552.300082pt;}
.y141{bottom:561.548400pt;}
.y115{bottom:561.555867pt;}
.y197{bottom:561.560800pt;}
.y1a9{bottom:561.563333pt;}
.y64{bottom:561.566933pt;}
.y101{bottom:561.568267pt;}
.y40{bottom:561.573067pt;}
.y84{bottom:561.574400pt;}
.y124{bottom:561.575600pt;}
.y1ac{bottom:561.576933pt;}
.yb1{bottom:561.579200pt;}
.y130{bottom:561.580000pt;}
.y28{bottom:561.580533pt;}
.y164{bottom:561.585333pt;}
.ya{bottom:571.315125pt;}
.y140{bottom:580.221200pt;}
.y114{bottom:580.228667pt;}
.y83{bottom:580.233600pt;}
.y16f{bottom:580.234800pt;}
.y17c{bottom:580.236133pt;}
.y27{bottom:580.239733pt;}
.y3f{bottom:580.241067pt;}
.yea{bottom:580.245867pt;}
.yc6{bottom:580.247200pt;}
.y123{bottom:580.248400pt;}
.y1ab{bottom:580.249733pt;}
.yb0{bottom:580.252000pt;}
.y9{bottom:583.549108pt;}
.y1aa{bottom:598.881733pt;}
.y122{bottom:598.894000pt;}
.y9a{bottom:598.895333pt;}
.yaf{bottom:598.900267pt;}
.y113{bottom:598.901467pt;}
.y82{bottom:598.906400pt;}
.y16e{bottom:598.907600pt;}
.y26{bottom:598.907733pt;}
.y17b{bottom:598.908933pt;}
.y63{bottom:598.912533pt;}
.y3e{bottom:598.913867pt;}
.ye9{bottom:598.918667pt;}
.y8{bottom:607.390798pt;}
.y1a8{bottom:617.554533pt;}
.y12f{bottom:617.560667pt;}
.yc5{bottom:617.566800pt;}
.y81{bottom:617.568133pt;}
.y196{bottom:617.572267pt;}
.y3d{bottom:617.573067pt;}
.y112{bottom:617.574267pt;}
.y163{bottom:617.575600pt;}
.yd4{bottom:617.579200pt;}
.y16d{bottom:617.580400pt;}
.y25{bottom:617.580533pt;}
.y62{bottom:617.585333pt;}
.y7{bottom:619.635579pt;}
.y6{bottom:631.880359pt;}
.y3c{bottom:636.227333pt;}
.y100{bottom:636.231467pt;}
.ye8{bottom:636.233467pt;}
.y18d{bottom:636.234800pt;}
.yae{bottom:636.237467pt;}
.yc4{bottom:636.239600pt;}
.y24{bottom:636.239733pt;}
.y80{bottom:636.240933pt;}
.y195{bottom:636.245067pt;}
.y1b7{bottom:636.245867pt;}
.y61{bottom:636.246933pt;}
.y162{bottom:636.248400pt;}
.yd3{bottom:636.252000pt;}
.y5{bottom:644.125140pt;}
.y194{bottom:654.863467pt;}
.y60{bottom:654.865333pt;}
.y13f{bottom:654.894000pt;}
.y16c{bottom:654.895333pt;}
.y3b{bottom:654.900133pt;}
.yc3{bottom:654.901467pt;}
.y1c4{bottom:654.902800pt;}
.yff{bottom:654.904267pt;}
.ye7{bottom:654.906267pt;}
.y18c{bottom:654.907600pt;}
.yad{bottom:654.910267pt;}
.y23{bottom:654.912533pt;}
.y7f{bottom:654.913733pt;}
.yd2{bottom:654.918667pt;}
.y193{bottom:673.536267pt;}
.y5f{bottom:673.538133pt;}
.yac{bottom:673.542267pt;}
.y1b6{bottom:673.548400pt;}
.y111{bottom:673.560667pt;}
.y13e{bottom:673.566800pt;}
.ye6{bottom:673.568133pt;}
.y3a{bottom:673.572933pt;}
.yc2{bottom:673.574267pt;}
.y1c3{bottom:673.575600pt;}
.yfe{bottom:673.577067pt;}
.y152{bottom:673.579067pt;}
.y18b{bottom:673.580400pt;}
.y22{bottom:673.585333pt;}
.yfd{bottom:692.209067pt;}
.y5e{bottom:692.210933pt;}
.yab{bottom:692.215067pt;}
.y1b5{bottom:692.221200pt;}
.yc1{bottom:692.233467pt;}
.y7e{bottom:692.234800pt;}
.y13d{bottom:692.239600pt;}
.ye5{bottom:692.240933pt;}
.y39{bottom:692.245733pt;}
.yd1{bottom:692.247067pt;}
.y1c2{bottom:692.248400pt;}
.y151{bottom:692.251867pt;}
.y4{bottom:701.191866pt;}
.yfc{bottom:710.881867pt;}
.y5d{bottom:710.883733pt;}
.yaa{bottom:710.887867pt;}
.y1b4{bottom:710.894000pt;}
.y161{bottom:710.895467pt;}
.y13c{bottom:710.900133pt;}
.y37{bottom:710.906267pt;}
.y7d{bottom:710.907600pt;}
.ye4{bottom:710.913733pt;}
.y38{bottom:710.918533pt;}
.y3{bottom:719.343079pt;}
.yd0{bottom:729.554667pt;}
.y5c{bottom:729.556533pt;}
.yc0{bottom:729.557867pt;}
.ya9{bottom:729.560667pt;}
.y7c{bottom:729.566800pt;}
.y160{bottom:729.568267pt;}
.y12e{bottom:729.570133pt;}
.ye3{bottom:729.572933pt;}
.y36{bottom:729.579067pt;}
.y18a{bottom:729.580400pt;}
.y20{bottom:733.630800pt;}
.y2{bottom:740.776845pt;}
.ycf{bottom:748.227467pt;}
.y5b{bottom:748.229333pt;}
.ybf{bottom:748.230667pt;}
.ya8{bottom:748.233467pt;}
.y7b{bottom:748.239600pt;}
.y13b{bottom:748.241067pt;}
.y12d{bottom:748.242933pt;}
.y35{bottom:748.251867pt;}
.y1f{bottom:762.966800pt;}
.y99{bottom:766.897333pt;}
.y7a{bottom:766.900267pt;}
.y5a{bottom:766.902133pt;}
.ybe{bottom:766.903467pt;}
.ya7{bottom:766.906267pt;}
.y110{bottom:766.912400pt;}
.y13a{bottom:766.913867pt;}
.y12c{bottom:766.915733pt;}
.y150{bottom:785.568800pt;}
.y98{bottom:785.570133pt;}
.y79{bottom:785.573067pt;}
.y59{bottom:785.574933pt;}
.ybd{bottom:785.576267pt;}
.y1c1{bottom:785.579067pt;}
.y34{bottom:785.585200pt;}
.y16b{bottom:804.229333pt;}
.ybc{bottom:804.235467pt;}
.y10f{bottom:804.241600pt;}
.y97{bottom:804.242933pt;}
.y78{bottom:804.245867pt;}
.y58{bottom:804.247733pt;}
.ye2{bottom:804.249600pt;}
.y1c0{bottom:804.251867pt;}
.y33{bottom:804.252000pt;}
.y189{bottom:822.898667pt;}
.y96{bottom:822.902133pt;}
.ybb{bottom:822.908267pt;}
.y57{bottom:822.909600pt;}
.y10e{bottom:822.914400pt;}
.y21{bottom:822.918667pt;}
.ye1{bottom:822.922400pt;}
.h7{height:25.603901pt;}
.hb{height:28.804389pt;}
.h8{height:28.921006pt;}
.h6{height:32.004877pt;}
.h9{height:32.134451pt;}
.hf{height:34.240000pt;}
.h5{height:35.205364pt;}
.ha{height:35.845462pt;}
.h23{height:36.230400pt;}
.he{height:36.520000pt;}
.h26{height:37.056000pt;}
.h12{height:38.406400pt;}
.h1d{height:41.996800pt;}
.h25{height:42.051200pt;}
.h18{height:43.520000pt;}
.h11{height:44.208000pt;}
.h3{height:44.806828pt;}
.h4{height:44.988232pt;}
.h13{height:45.260800pt;}
.h14{height:45.280000pt;}
.h15{height:45.315200pt;}
.h17{height:45.587200pt;}
.h2b{height:45.595733pt;}
.h32{height:45.596267pt;}
.h31{height:45.598400pt;}
.h2d{height:45.601067pt;}
.h29{height:45.601600pt;}
.h2a{height:45.605867pt;}
.h1a{height:45.606400pt;}
.h24{height:45.611200pt;}
.h1e{height:45.611733pt;}
.h33{height:45.636267pt;}
.h1c{height:45.641600pt;}
.h28{height:45.644800pt;}
.h20{height:45.647467pt;}
.h2c{height:45.650133pt;}
.h30{height:45.650667pt;}
.h2f{height:45.653333pt;}
.h2e{height:45.654933pt;}
.h1b{height:45.655467pt;}
.h21{height:45.656000pt;}
.h27{height:45.660267pt;}
.h1f{height:45.660800pt;}
.h19{height:45.661333pt;}
.h22{height:45.696000pt;}
.h16{height:54.536533pt;}
.h10{height:93.834667pt;}
.hc{height:907.301333pt;}
.hd{height:907.333333pt;}
.h2{height:909.061597pt;}
.h1{height:909.333333pt;}
.h0{height:909.600000pt;}
.w1{width:642.666667pt;}
.w2{width:642.772533pt;}
.w0{width:642.773333pt;}
.x0{left:0.000000pt;}
.x3{left:33.667748pt;}
.xa{left:38.381200pt;}
.x1{left:39.790139pt;}
.xb{left:74.367867pt;}
.xc{left:78.921067pt;}
.x8{left:82.614133pt;}
.x15{left:86.391755pt;}
.x13{left:93.956533pt;}
.x2{left:107.125635pt;}
.x10{left:126.273600pt;}
.x16{left:186.550667pt;}
.x17{left:215.912267pt;}
.x9{left:250.173200pt;}
.x12{left:307.492667pt;}
.x4{left:315.265313pt;}
.xd{left:326.396667pt;}
.xe{left:333.953557pt;}
.x18{left:337.720979pt;}
.x14{left:345.280667pt;}
.x19{left:372.746267pt;}
.x7{left:390.148200pt;}
.x6{left:522.044400pt;}
.xf{left:566.392987pt;}
.x5{left:591.826533pt;}
.x11{left:593.805333pt;}
}




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