
    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_1d9821de4b4bae448537a375.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_69d0782553abb4a59ef43852.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_647afd396a610c224e602558.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3fbbc4fbfc003e21e7e35eaa.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_7e27675718f86b0df3f0e73b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.766602;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_c8b430cd9862f6f6cf78c919.woff')format("woff");}.ff7{font-family:ff7;line-height:1.055664;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_0688118b70ef144aa76f2716.woff')format("woff");}.ff8{font-family:ff8;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c16b00009b2add015c71d772.woff')format("woff");}.ffa{font-family:ffa;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.240000px;}
.ls10{letter-spacing:-0.960000px;}
.ls1b{letter-spacing:-0.948000px;}
.lse{letter-spacing:-0.780000px;}
.lsb{letter-spacing:-0.579600px;}
.ls7{letter-spacing:-0.570000px;}
.ls18{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.463800px;}
.ls27{letter-spacing:-0.414000px;}
.ls14{letter-spacing:-0.303000px;}
.ls19{letter-spacing:-0.248400px;}
.ls1a{letter-spacing:-0.240600px;}
.ls28{letter-spacing:-0.226800px;}
.ls8{letter-spacing:-0.175800px;}
.ls5{letter-spacing:-0.132600px;}
.ls1f{letter-spacing:-0.112200px;}
.ls13{letter-spacing:-0.107400px;}
.lsd{letter-spacing:-0.067200px;}
.ls21{letter-spacing:-0.064800px;}
.lsf{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.014400px;}
.ls26{letter-spacing:0.037200px;}
.ls4{letter-spacing:0.038880px;}
.ls22{letter-spacing:0.064200px;}
.ls17{letter-spacing:0.140400px;}
.ls1{letter-spacing:0.149760px;}
.ls0{letter-spacing:0.150000px;}
.lsc{letter-spacing:0.174000px;}
.ls2{letter-spacing:0.174240px;}
.ls9{letter-spacing:0.175200px;}
.ls11{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.186600px;}
.ls1d{letter-spacing:0.288600px;}
.lsa{letter-spacing:0.306000px;}
.ls24{letter-spacing:0.401760px;}
.ls16{letter-spacing:0.433440px;}
.ls1c{letter-spacing:0.479400px;}
.ls29{letter-spacing:0.479520px;}
.ls2f{letter-spacing:0.599520px;}
.ls30{letter-spacing:0.659520px;}
.ls15{letter-spacing:1.026000px;}
.ls12{letter-spacing:1.116000px;}
.ls25{letter-spacing:3.945600px;}
.ls23{letter-spacing:4.665600px;}
.ls2d{letter-spacing:12.186720px;}
.ls2e{letter-spacing:12.414240px;}
.ls2c{letter-spacing:42.426720px;}
.ls20{letter-spacing:46.026720px;}
.ls2b{letter-spacing:64.026720px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.ws11{word-spacing:-41.760000px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws5{word-spacing:-13.811760px;}
.wsb{word-spacing:-13.692360px;}
.ws13{word-spacing:-13.680960px;}
.wsf{word-spacing:-13.569960px;}
.ws4{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.447440px;}
.wse{word-spacing:-13.440960px;}
.ws7{word-spacing:-13.398360px;}
.wsc{word-spacing:-13.393560px;}
.ws12{word-spacing:-13.278960px;}
.wsa{word-spacing:-13.265160px;}
.ws9{word-spacing:-13.257360px;}
.ws8{word-spacing:-13.202760px;}
.ws6{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._21{margin-left:-196.738560px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._26{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._25{margin-left:-145.392000px;}
._10{margin-left:-142.046400px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-116.242560px;}
._24{margin-left:-109.266240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._22{margin-left:-80.367360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._23{margin-left:-35.130240px;}
._19{margin-left:-32.468640px;}
._29{margin-left:-4.086960px;}
._27{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._28{width:1.317240px;}
._2c{width:2.658840px;}
._2a{width:3.926160px;}
._2b{width:5.169840px;}
._32{width:6.491760px;}
._34{width:7.562400px;}
._2f{width:8.687280px;}
._33{width:9.813720px;}
._2d{width:11.234880px;}
._2e{width:12.250800px;}
._35{width:15.261240px;}
._37{width:16.598160px;}
._31{width:17.724360px;}
._30{width:19.506240px;}
._39{width:21.570840px;}
._3d{width:23.043240px;}
._3e{width:24.067800px;}
._3a{width:27.367560px;}
._3b{width:35.436000px;}
._38{width:37.589040px;}
._3c{width:64.600560px;}
._36{width:189.132480px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(238,0,0);}
.fc3{color:rgb(1,2,2);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:6.660000px;}
.y95{bottom:6.705000px;}
.y7d{bottom:17.100000px;}
.y80{bottom:17.280000px;}
.y7e{bottom:27.720000px;}
.y6{bottom:61.380000px;}
.y135{bottom:99.756000px;}
.y79{bottom:100.656000px;}
.y2d{bottom:101.556000px;}
.yaa{bottom:107.316000px;}
.yf8{bottom:109.116000px;}
.y77{bottom:112.716000px;}
.y134{bottom:117.216000px;}
.y127{bottom:117.756000px;}
.y78{bottom:121.716000px;}
.y2c{bottom:122.616000px;}
.yd4{bottom:123.696000px;}
.yf7{bottom:130.176000px;}
.y76{bottom:133.776000px;}
.ya9{bottom:134.316000px;}
.y126{bottom:138.816000px;}
.y9e{bottom:141.516000px;}
.y5c{bottom:142.776000px;}
.y2b{bottom:143.676000px;}
.yd3{bottom:144.756000px;}
.yf6{bottom:151.230000px;}
.y75{bottom:154.830000px;}
.y125{bottom:159.870000px;}
.ya8{bottom:161.490000px;}
.y9d{bottom:162.570000px;}
.y5b{bottom:163.830000px;}
.y2a{bottom:164.730000px;}
.yd2{bottom:165.810000px;}
.yf5{bottom:172.290000px;}
.y74{bottom:175.890000px;}
.y124{bottom:180.930000px;}
.y9c{bottom:183.630000px;}
.y5a{bottom:184.890000px;}
.y29{bottom:185.790000px;}
.yd1{bottom:186.870000px;}
.ya7{bottom:188.490000px;}
.yf4{bottom:193.350000px;}
.y133{bottom:195.870000px;}
.y73{bottom:196.950000px;}
.y123{bottom:201.990000px;}
.y9b{bottom:204.690000px;}
.y59{bottom:205.950000px;}
.y28{bottom:206.850000px;}
.yd0{bottom:207.930000px;}
.yf3{bottom:214.410000px;}
.ya6{bottom:215.490000px;}
.y132{bottom:216.930000px;}
.y72{bottom:218.010000px;}
.y122{bottom:223.050000px;}
.y9a{bottom:225.750000px;}
.y58{bottom:227.010000px;}
.y27{bottom:227.910000px;}
.ycf{bottom:228.990000px;}
.yf2{bottom:235.470000px;}
.y131{bottom:237.990000px;}
.y71{bottom:239.070000px;}
.ya5{bottom:242.670000px;}
.y121{bottom:244.110000px;}
.yce{bottom:246.090000px;}
.y99{bottom:246.810000px;}
.y57{bottom:248.070000px;}
.y26{bottom:248.970000px;}
.yf1{bottom:256.530000px;}
.y130{bottom:259.050000px;}
.y70{bottom:260.130000px;}
.y120{bottom:265.170000px;}
.y98{bottom:267.870000px;}
.y56{bottom:269.130000px;}
.ya4{bottom:269.670000px;}
.y25{bottom:270.030000px;}
.yf0{bottom:277.590000px;}
.y12f{bottom:280.110000px;}
.y6f{bottom:281.190000px;}
.y11f{bottom:286.230000px;}
.y97{bottom:288.930000px;}
.y55{bottom:290.190000px;}
.y24{bottom:291.090000px;}
.ya3{bottom:296.670000px;}
.yef{bottom:298.650000px;}
.y12e{bottom:301.170000px;}
.y6e{bottom:302.250000px;}
.y11e{bottom:307.290000px;}
.y96{bottom:308.190000px;}
.y54{bottom:311.250000px;}
.y23{bottom:312.150000px;}
.yee{bottom:319.710000px;}
.y12d{bottom:322.230000px;}
.y6d{bottom:323.310000px;}
.ya2{bottom:323.850000px;}
.y11d{bottom:328.350000px;}
.y53{bottom:332.310000px;}
.y22{bottom:333.210000px;}
.y94{bottom:335.370000px;}
.yed{bottom:340.815000px;}
.y12c{bottom:343.335000px;}
.y6c{bottom:344.415000px;}
.y11c{bottom:349.275000px;}
.ya1{bottom:350.895000px;}
.y52{bottom:353.415000px;}
.y21{bottom:354.315000px;}
.ycd{bottom:358.635000px;}
.yec{bottom:361.875000px;}
.y93{bottom:362.415000px;}
.y12b{bottom:364.395000px;}
.y6b{bottom:365.475000px;}
.y11b{bottom:370.335000px;}
.y51{bottom:374.475000px;}
.y20{bottom:375.375000px;}
.ya0{bottom:377.895000px;}
.ycc{bottom:379.695000px;}
.y12a{bottom:382.755000px;}
.yeb{bottom:382.935000px;}
.y6a{bottom:386.535000px;}
.y92{bottom:389.415000px;}
.y11a{bottom:391.395000px;}
.y50{bottom:395.535000px;}
.y1f{bottom:396.435000px;}
.ycb{bottom:400.755000px;}
.y129{bottom:400.935000px;}
.yea{bottom:403.995000px;}
.y9f{bottom:405.075000px;}
.y69{bottom:407.595000px;}
.y119{bottom:412.455000px;}
.y4f{bottom:416.595000px;}
.y1e{bottom:417.495000px;}
.y128{bottom:419.295000px;}
.yca{bottom:421.815000px;}
.ye9{bottom:425.055000px;}
.y68{bottom:428.655000px;}
.y118{bottom:433.515000px;}
.y4e{bottom:437.655000px;}
.y1d{bottom:438.555000px;}
.yc9{bottom:442.875000px;}
.y91{bottom:443.595000px;}
.ye8{bottom:446.115000px;}
.y67{bottom:449.715000px;}
.y117{bottom:454.575000px;}
.y4d{bottom:458.715000px;}
.y1c{bottom:459.615000px;}
.yc8{bottom:463.935000px;}
.ye7{bottom:467.175000px;}
.y90{bottom:470.595000px;}
.y66{bottom:470.775000px;}
.y116{bottom:475.635000px;}
.y4c{bottom:479.775000px;}
.y1b{bottom:483.015000px;}
.yc7{bottom:484.995000px;}
.ye6{bottom:488.235000px;}
.y65{bottom:491.835000px;}
.y115{bottom:496.695000px;}
.y4b{bottom:500.835000px;}
.y8f{bottom:503.175000px;}
.yc6{bottom:506.055000px;}
.ye5{bottom:509.295000px;}
.y1a{bottom:512.895000px;}
.y114{bottom:517.755000px;}
.y4a{bottom:521.895000px;}
.y8e{bottom:524.235000px;}
.yc5{bottom:527.115000px;}
.ye4{bottom:530.355000px;}
.y19{bottom:533.955000px;}
.y113{bottom:538.815000px;}
.y49{bottom:542.955000px;}
.y8d{bottom:545.295000px;}
.yc4{bottom:548.175000px;}
.ye3{bottom:551.415000px;}
.y18{bottom:555.015000px;}
.y112{bottom:559.875000px;}
.y48{bottom:564.015000px;}
.y8c{bottom:566.355000px;}
.yc3{bottom:569.235000px;}
.ye2{bottom:572.475000px;}
.y64{bottom:575.895000px;}
.y17{bottom:576.075000px;}
.y111{bottom:580.935000px;}
.y47{bottom:584.925000px;}
.y8b{bottom:587.445000px;}
.yc2{bottom:590.325000px;}
.ye1{bottom:593.565000px;}
.y63{bottom:596.985000px;}
.y16{bottom:597.165000px;}
.y110{bottom:602.025000px;}
.y46{bottom:605.985000px;}
.y8a{bottom:606.705000px;}
.yc1{bottom:611.385000px;}
.ye0{bottom:614.625000px;}
.y62{bottom:618.045000px;}
.y15{bottom:618.225000px;}
.y10f{bottom:623.085000px;}
.y45{bottom:627.045000px;}
.yc0{bottom:632.445000px;}
.y89{bottom:633.885000px;}
.ydf{bottom:635.685000px;}
.y61{bottom:639.105000px;}
.y14{bottom:639.285000px;}
.y10e{bottom:644.145000px;}
.y44{bottom:648.105000px;}
.ybf{bottom:653.505000px;}
.yde{bottom:654.945000px;}
.y60{bottom:660.165000px;}
.y13{bottom:660.345000px;}
.y88{bottom:660.885000px;}
.y10d{bottom:665.205000px;}
.y43{bottom:669.165000px;}
.ybe{bottom:674.565000px;}
.y5f{bottom:681.225000px;}
.y12{bottom:681.405000px;}
.ydd{bottom:681.945000px;}
.y10c{bottom:686.265000px;}
.y87{bottom:687.885000px;}
.y42{bottom:690.225000px;}
.ybd{bottom:695.625000px;}
.y5e{bottom:702.285000px;}
.y11{bottom:702.465000px;}
.y10b{bottom:707.325000px;}
.ydc{bottom:708.945000px;}
.y41{bottom:711.285000px;}
.ybc{bottom:716.685000px;}
.y5d{bottom:723.345000px;}
.y10{bottom:723.525000px;}
.y10a{bottom:728.385000px;}
.y40{bottom:732.345000px;}
.y86{bottom:736.125000px;}
.ybb{bottom:737.745000px;}
.yf{bottom:744.585000px;}
.y109{bottom:749.445000px;}
.y3f{bottom:753.405000px;}
.yba{bottom:758.805000px;}
.y85{bottom:763.125000px;}
.ye{bottom:765.645000px;}
.y108{bottom:770.505000px;}
.y3e{bottom:774.465000px;}
.yb9{bottom:779.865000px;}
.yd{bottom:786.705000px;}
.ydb{bottom:790.125000px;}
.y107{bottom:791.565000px;}
.y3d{bottom:795.525000px;}
.yb8{bottom:800.925000px;}
.yc{bottom:809.925000px;}
.y84{bottom:811.185000px;}
.y106{bottom:812.625000px;}
.y3c{bottom:816.585000px;}
.yda{bottom:817.305000px;}
.yb7{bottom:821.985000px;}
.yb{bottom:831.030000px;}
.y105{bottom:833.730000px;}
.y3b{bottom:837.690000px;}
.y83{bottom:838.410000px;}
.yb6{bottom:843.090000px;}
.yd9{bottom:844.350000px;}
.ya{bottom:852.990000px;}
.y104{bottom:854.790000px;}
.y3a{bottom:858.750000px;}
.yb5{bottom:864.150000px;}
.y82{bottom:865.410000px;}
.yd8{bottom:871.350000px;}
.y9{bottom:875.310000px;}
.y103{bottom:875.850000px;}
.y39{bottom:879.810000px;}
.yb4{bottom:885.210000px;}
.y102{bottom:896.910000px;}
.yd7{bottom:898.350000px;}
.y8{bottom:900.510000px;}
.y38{bottom:900.870000px;}
.yb3{bottom:906.270000px;}
.y81{bottom:913.470000px;}
.y101{bottom:917.970000px;}
.y37{bottom:921.930000px;}
.yd6{bottom:925.530000px;}
.yb2{bottom:927.330000px;}
.y7{bottom:934.170000px;}
.y100{bottom:939.030000px;}
.y36{bottom:942.990000px;}
.yb1{bottom:948.390000px;}
.yd5{bottom:952.530000px;}
.yff{bottom:960.090000px;}
.y7f{bottom:961.530000px;}
.y35{bottom:964.050000px;}
.yb0{bottom:969.450000px;}
.y5{bottom:974.310000px;}
.yfe{bottom:981.150000px;}
.y34{bottom:985.110000px;}
.yaf{bottom:990.510000px;}
.yfd{bottom:1002.930000px;}
.y33{bottom:1006.170000px;}
.y4{bottom:1006.530000px;}
.y7c{bottom:1009.770000px;}
.yae{bottom:1011.570000px;}
.yfc{bottom:1024.170000px;}
.y32{bottom:1027.230000px;}
.yad{bottom:1032.630000px;}
.y3{bottom:1038.750000px;}
.yfb{bottom:1045.950000px;}
.y31{bottom:1048.290000px;}
.yac{bottom:1051.890000px;}
.y7a{bottom:1057.830000px;}
.yfa{bottom:1067.910000px;}
.y30{bottom:1069.350000px;}
.y2{bottom:1070.790000px;}
.yab{bottom:1078.920000px;}
.yf9{bottom:1089.720000px;}
.y2f{bottom:1090.440000px;}
.y1{bottom:1104.840000px;}
.y2e{bottom:1118.340000px;}
.ha{height:21.060000px;}
.h8{height:21.096000px;}
.h9{height:42.120000px;}
.h7{height:52.260820px;}
.h4{height:59.439023px;}
.h6{height:61.189805px;}
.h2{height:65.884219px;}
.h5{height:67.824844px;}
.h1{height:86.255508px;}
.h3{height:98.051133px;}
.h0{height:1188.000000px;}
.w7{width:36.540000px;}
.wc{width:41.940000px;}
.wb{width:42.120000px;}
.w9{width:45.720000px;}
.w8{width:45.756000px;}
.w2{width:48.456000px;}
.w12{width:54.180000px;}
.wa{width:64.620000px;}
.w17{width:72.000000px;}
.w15{width:82.656000px;}
.w16{width:97.956000px;}
.w6{width:106.200000px;}
.w14{width:108.360000px;}
.w13{width:116.856000px;}
.we{width:125.316000px;}
.wf{width:126.936000px;}
.w11{width:127.080000px;}
.wd{width:127.440000px;}
.w3{width:161.130000px;}
.w10{width:175.170000px;}
.w5{width:275.655000px;}
.w4{width:306.750000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:1.080000px;}
.x20{left:11.519986px;}
.x6{left:53.999986px;}
.xa{left:57.420000px;}
.x1b{left:80.999986px;}
.x8{left:90.035986px;}
.x7{left:108.035986px;}
.xc{left:109.656000px;}
.x28{left:126.395986px;}
.x22{left:128.736000px;}
.x5{left:176.969986px;}
.x23{left:186.690000px;}
.x9{left:206.669986px;}
.xf{left:219.450000px;}
.x1c{left:241.770000px;}
.x10{left:259.770000px;}
.x3{left:272.234986px;}
.xd{left:274.575000px;}
.x24{left:307.335000px;}
.x11{left:309.315000px;}
.x2{left:350.534986px;}
.x12{left:358.815000px;}
.x1d{left:370.875000px;}
.x13{left:408.315000px;}
.x4{left:419.114986px;}
.x14{left:457.845000px;}
.x1{left:479.264986px;}
.x1e{left:501.585000px;}
.x25{left:505.905000px;}
.x15{left:526.245000px;}
.x16{left:575.745000px;}
.xe{left:585.105000px;}
.x26{left:615.705000px;}
.x17{left:625.245000px;}
.x18{left:674.790000px;}
.x1f{left:680.550000px;}
.x21{left:703.769986px;}
.x27{left:717.450000px;}
.x19{left:720.690000px;}
.x1a{left:766.410000px;}
.x29{left:851.759986px;}
@media print{
.v1{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.880000pt;}
.ls10{letter-spacing:-0.853333pt;}
.ls1b{letter-spacing:-0.842667pt;}
.lse{letter-spacing:-0.693333pt;}
.lsb{letter-spacing:-0.515200pt;}
.ls7{letter-spacing:-0.506667pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls27{letter-spacing:-0.368000pt;}
.ls14{letter-spacing:-0.269333pt;}
.ls19{letter-spacing:-0.220800pt;}
.ls1a{letter-spacing:-0.213867pt;}
.ls28{letter-spacing:-0.201600pt;}
.ls8{letter-spacing:-0.156267pt;}
.ls5{letter-spacing:-0.117867pt;}
.ls1f{letter-spacing:-0.099733pt;}
.ls13{letter-spacing:-0.095467pt;}
.lsd{letter-spacing:-0.059733pt;}
.ls21{letter-spacing:-0.057600pt;}
.lsf{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.012800pt;}
.ls26{letter-spacing:0.033067pt;}
.ls4{letter-spacing:0.034560pt;}
.ls22{letter-spacing:0.057067pt;}
.ls17{letter-spacing:0.124800pt;}
.ls1{letter-spacing:0.133120pt;}
.ls0{letter-spacing:0.133333pt;}
.lsc{letter-spacing:0.154667pt;}
.ls2{letter-spacing:0.154880pt;}
.ls9{letter-spacing:0.155733pt;}
.ls11{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.165867pt;}
.ls1d{letter-spacing:0.256533pt;}
.lsa{letter-spacing:0.272000pt;}
.ls24{letter-spacing:0.357120pt;}
.ls16{letter-spacing:0.385280pt;}
.ls1c{letter-spacing:0.426133pt;}
.ls29{letter-spacing:0.426240pt;}
.ls2f{letter-spacing:0.532907pt;}
.ls30{letter-spacing:0.586240pt;}
.ls15{letter-spacing:0.912000pt;}
.ls12{letter-spacing:0.992000pt;}
.ls25{letter-spacing:3.507200pt;}
.ls23{letter-spacing:4.147200pt;}
.ls2d{letter-spacing:10.832640pt;}
.ls2e{letter-spacing:11.034880pt;}
.ls2c{letter-spacing:37.712640pt;}
.ls20{letter-spacing:40.912640pt;}
.ls2b{letter-spacing:56.912640pt;}
.ws10{word-spacing:-53.120000pt;}
.ws11{word-spacing:-37.120000pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws5{word-spacing:-12.277120pt;}
.wsb{word-spacing:-12.170987pt;}
.ws13{word-spacing:-12.160853pt;}
.wsf{word-spacing:-12.062187pt;}
.ws4{word-spacing:-12.005120pt;}
.wsd{word-spacing:-11.953280pt;}
.wse{word-spacing:-11.947520pt;}
.ws7{word-spacing:-11.909653pt;}
.wsc{word-spacing:-11.905387pt;}
.ws12{word-spacing:-11.803520pt;}
.wsa{word-spacing:-11.791253pt;}
.ws9{word-spacing:-11.784320pt;}
.ws8{word-spacing:-11.735787pt;}
.ws6{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._21{margin-left:-174.878720pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._26{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._25{margin-left:-129.237333pt;}
._10{margin-left:-126.263467pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-103.326720pt;}
._24{margin-left:-97.125547pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._22{margin-left:-71.437653pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._23{margin-left:-31.226880pt;}
._19{margin-left:-28.861013pt;}
._29{margin-left:-3.632853pt;}
._27{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._28{width:1.170880pt;}
._2c{width:2.363413pt;}
._2a{width:3.489920pt;}
._2b{width:4.595413pt;}
._32{width:5.770453pt;}
._34{width:6.722133pt;}
._2f{width:7.722027pt;}
._33{width:8.723307pt;}
._2d{width:9.986560pt;}
._2e{width:10.889600pt;}
._35{width:13.565547pt;}
._37{width:14.753920pt;}
._31{width:15.754987pt;}
._30{width:17.338880pt;}
._39{width:19.174080pt;}
._3d{width:20.482880pt;}
._3e{width:21.393600pt;}
._3a{width:24.326720pt;}
._3b{width:31.498667pt;}
._38{width:33.412480pt;}
._3c{width:57.422720pt;}
._36{width:168.117760pt;}
.fs2{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:5.920000pt;}
.y95{bottom:5.960000pt;}
.y7d{bottom:15.200000pt;}
.y80{bottom:15.360000pt;}
.y7e{bottom:24.640000pt;}
.y6{bottom:54.560000pt;}
.y135{bottom:88.672000pt;}
.y79{bottom:89.472000pt;}
.y2d{bottom:90.272000pt;}
.yaa{bottom:95.392000pt;}
.yf8{bottom:96.992000pt;}
.y77{bottom:100.192000pt;}
.y134{bottom:104.192000pt;}
.y127{bottom:104.672000pt;}
.y78{bottom:108.192000pt;}
.y2c{bottom:108.992000pt;}
.yd4{bottom:109.952000pt;}
.yf7{bottom:115.712000pt;}
.y76{bottom:118.912000pt;}
.ya9{bottom:119.392000pt;}
.y126{bottom:123.392000pt;}
.y9e{bottom:125.792000pt;}
.y5c{bottom:126.912000pt;}
.y2b{bottom:127.712000pt;}
.yd3{bottom:128.672000pt;}
.yf6{bottom:134.426667pt;}
.y75{bottom:137.626667pt;}
.y125{bottom:142.106667pt;}
.ya8{bottom:143.546667pt;}
.y9d{bottom:144.506667pt;}
.y5b{bottom:145.626667pt;}
.y2a{bottom:146.426667pt;}
.yd2{bottom:147.386667pt;}
.yf5{bottom:153.146667pt;}
.y74{bottom:156.346667pt;}
.y124{bottom:160.826667pt;}
.y9c{bottom:163.226667pt;}
.y5a{bottom:164.346667pt;}
.y29{bottom:165.146667pt;}
.yd1{bottom:166.106667pt;}
.ya7{bottom:167.546667pt;}
.yf4{bottom:171.866667pt;}
.y133{bottom:174.106667pt;}
.y73{bottom:175.066667pt;}
.y123{bottom:179.546667pt;}
.y9b{bottom:181.946667pt;}
.y59{bottom:183.066667pt;}
.y28{bottom:183.866667pt;}
.yd0{bottom:184.826667pt;}
.yf3{bottom:190.586667pt;}
.ya6{bottom:191.546667pt;}
.y132{bottom:192.826667pt;}
.y72{bottom:193.786667pt;}
.y122{bottom:198.266667pt;}
.y9a{bottom:200.666667pt;}
.y58{bottom:201.786667pt;}
.y27{bottom:202.586667pt;}
.ycf{bottom:203.546667pt;}
.yf2{bottom:209.306667pt;}
.y131{bottom:211.546667pt;}
.y71{bottom:212.506667pt;}
.ya5{bottom:215.706667pt;}
.y121{bottom:216.986667pt;}
.yce{bottom:218.746667pt;}
.y99{bottom:219.386667pt;}
.y57{bottom:220.506667pt;}
.y26{bottom:221.306667pt;}
.yf1{bottom:228.026667pt;}
.y130{bottom:230.266667pt;}
.y70{bottom:231.226667pt;}
.y120{bottom:235.706667pt;}
.y98{bottom:238.106667pt;}
.y56{bottom:239.226667pt;}
.ya4{bottom:239.706667pt;}
.y25{bottom:240.026667pt;}
.yf0{bottom:246.746667pt;}
.y12f{bottom:248.986667pt;}
.y6f{bottom:249.946667pt;}
.y11f{bottom:254.426667pt;}
.y97{bottom:256.826667pt;}
.y55{bottom:257.946667pt;}
.y24{bottom:258.746667pt;}
.ya3{bottom:263.706667pt;}
.yef{bottom:265.466667pt;}
.y12e{bottom:267.706667pt;}
.y6e{bottom:268.666667pt;}
.y11e{bottom:273.146667pt;}
.y96{bottom:273.946667pt;}
.y54{bottom:276.666667pt;}
.y23{bottom:277.466667pt;}
.yee{bottom:284.186667pt;}
.y12d{bottom:286.426667pt;}
.y6d{bottom:287.386667pt;}
.ya2{bottom:287.866667pt;}
.y11d{bottom:291.866667pt;}
.y53{bottom:295.386667pt;}
.y22{bottom:296.186667pt;}
.y94{bottom:298.106667pt;}
.yed{bottom:302.946667pt;}
.y12c{bottom:305.186667pt;}
.y6c{bottom:306.146667pt;}
.y11c{bottom:310.466667pt;}
.ya1{bottom:311.906667pt;}
.y52{bottom:314.146667pt;}
.y21{bottom:314.946667pt;}
.ycd{bottom:318.786667pt;}
.yec{bottom:321.666667pt;}
.y93{bottom:322.146667pt;}
.y12b{bottom:323.906667pt;}
.y6b{bottom:324.866667pt;}
.y11b{bottom:329.186667pt;}
.y51{bottom:332.866667pt;}
.y20{bottom:333.666667pt;}
.ya0{bottom:335.906667pt;}
.ycc{bottom:337.506667pt;}
.y12a{bottom:340.226667pt;}
.yeb{bottom:340.386667pt;}
.y6a{bottom:343.586667pt;}
.y92{bottom:346.146667pt;}
.y11a{bottom:347.906667pt;}
.y50{bottom:351.586667pt;}
.y1f{bottom:352.386667pt;}
.ycb{bottom:356.226667pt;}
.y129{bottom:356.386667pt;}
.yea{bottom:359.106667pt;}
.y9f{bottom:360.066667pt;}
.y69{bottom:362.306667pt;}
.y119{bottom:366.626667pt;}
.y4f{bottom:370.306667pt;}
.y1e{bottom:371.106667pt;}
.y128{bottom:372.706667pt;}
.yca{bottom:374.946667pt;}
.ye9{bottom:377.826667pt;}
.y68{bottom:381.026667pt;}
.y118{bottom:385.346667pt;}
.y4e{bottom:389.026667pt;}
.y1d{bottom:389.826667pt;}
.yc9{bottom:393.666667pt;}
.y91{bottom:394.306667pt;}
.ye8{bottom:396.546667pt;}
.y67{bottom:399.746667pt;}
.y117{bottom:404.066667pt;}
.y4d{bottom:407.746667pt;}
.y1c{bottom:408.546667pt;}
.yc8{bottom:412.386667pt;}
.ye7{bottom:415.266667pt;}
.y90{bottom:418.306667pt;}
.y66{bottom:418.466667pt;}
.y116{bottom:422.786667pt;}
.y4c{bottom:426.466667pt;}
.y1b{bottom:429.346667pt;}
.yc7{bottom:431.106667pt;}
.ye6{bottom:433.986667pt;}
.y65{bottom:437.186667pt;}
.y115{bottom:441.506667pt;}
.y4b{bottom:445.186667pt;}
.y8f{bottom:447.266667pt;}
.yc6{bottom:449.826667pt;}
.ye5{bottom:452.706667pt;}
.y1a{bottom:455.906667pt;}
.y114{bottom:460.226667pt;}
.y4a{bottom:463.906667pt;}
.y8e{bottom:465.986667pt;}
.yc5{bottom:468.546667pt;}
.ye4{bottom:471.426667pt;}
.y19{bottom:474.626667pt;}
.y113{bottom:478.946667pt;}
.y49{bottom:482.626667pt;}
.y8d{bottom:484.706667pt;}
.yc4{bottom:487.266667pt;}
.ye3{bottom:490.146667pt;}
.y18{bottom:493.346667pt;}
.y112{bottom:497.666667pt;}
.y48{bottom:501.346667pt;}
.y8c{bottom:503.426667pt;}
.yc3{bottom:505.986667pt;}
.ye2{bottom:508.866667pt;}
.y64{bottom:511.906667pt;}
.y17{bottom:512.066667pt;}
.y111{bottom:516.386667pt;}
.y47{bottom:519.933333pt;}
.y8b{bottom:522.173333pt;}
.yc2{bottom:524.733333pt;}
.ye1{bottom:527.613333pt;}
.y63{bottom:530.653333pt;}
.y16{bottom:530.813333pt;}
.y110{bottom:535.133333pt;}
.y46{bottom:538.653333pt;}
.y8a{bottom:539.293333pt;}
.yc1{bottom:543.453333pt;}
.ye0{bottom:546.333333pt;}
.y62{bottom:549.373333pt;}
.y15{bottom:549.533333pt;}
.y10f{bottom:553.853333pt;}
.y45{bottom:557.373333pt;}
.yc0{bottom:562.173333pt;}
.y89{bottom:563.453333pt;}
.ydf{bottom:565.053333pt;}
.y61{bottom:568.093333pt;}
.y14{bottom:568.253333pt;}
.y10e{bottom:572.573333pt;}
.y44{bottom:576.093333pt;}
.ybf{bottom:580.893333pt;}
.yde{bottom:582.173333pt;}
.y60{bottom:586.813333pt;}
.y13{bottom:586.973333pt;}
.y88{bottom:587.453333pt;}
.y10d{bottom:591.293333pt;}
.y43{bottom:594.813333pt;}
.ybe{bottom:599.613333pt;}
.y5f{bottom:605.533333pt;}
.y12{bottom:605.693333pt;}
.ydd{bottom:606.173333pt;}
.y10c{bottom:610.013333pt;}
.y87{bottom:611.453333pt;}
.y42{bottom:613.533333pt;}
.ybd{bottom:618.333333pt;}
.y5e{bottom:624.253333pt;}
.y11{bottom:624.413333pt;}
.y10b{bottom:628.733333pt;}
.ydc{bottom:630.173333pt;}
.y41{bottom:632.253333pt;}
.ybc{bottom:637.053333pt;}
.y5d{bottom:642.973333pt;}
.y10{bottom:643.133333pt;}
.y10a{bottom:647.453333pt;}
.y40{bottom:650.973333pt;}
.y86{bottom:654.333333pt;}
.ybb{bottom:655.773333pt;}
.yf{bottom:661.853333pt;}
.y109{bottom:666.173333pt;}
.y3f{bottom:669.693333pt;}
.yba{bottom:674.493333pt;}
.y85{bottom:678.333333pt;}
.ye{bottom:680.573333pt;}
.y108{bottom:684.893333pt;}
.y3e{bottom:688.413333pt;}
.yb9{bottom:693.213333pt;}
.yd{bottom:699.293333pt;}
.ydb{bottom:702.333333pt;}
.y107{bottom:703.613333pt;}
.y3d{bottom:707.133333pt;}
.yb8{bottom:711.933333pt;}
.yc{bottom:719.933333pt;}
.y84{bottom:721.053333pt;}
.y106{bottom:722.333333pt;}
.y3c{bottom:725.853333pt;}
.yda{bottom:726.493333pt;}
.yb7{bottom:730.653333pt;}
.yb{bottom:738.693333pt;}
.y105{bottom:741.093333pt;}
.y3b{bottom:744.613333pt;}
.y83{bottom:745.253333pt;}
.yb6{bottom:749.413333pt;}
.yd9{bottom:750.533333pt;}
.ya{bottom:758.213333pt;}
.y104{bottom:759.813333pt;}
.y3a{bottom:763.333333pt;}
.yb5{bottom:768.133333pt;}
.y82{bottom:769.253333pt;}
.yd8{bottom:774.533333pt;}
.y9{bottom:778.053333pt;}
.y103{bottom:778.533333pt;}
.y39{bottom:782.053333pt;}
.yb4{bottom:786.853333pt;}
.y102{bottom:797.253333pt;}
.yd7{bottom:798.533333pt;}
.y8{bottom:800.453333pt;}
.y38{bottom:800.773333pt;}
.yb3{bottom:805.573333pt;}
.y81{bottom:811.973333pt;}
.y101{bottom:815.973333pt;}
.y37{bottom:819.493333pt;}
.yd6{bottom:822.693333pt;}
.yb2{bottom:824.293333pt;}
.y7{bottom:830.373333pt;}
.y100{bottom:834.693333pt;}
.y36{bottom:838.213333pt;}
.yb1{bottom:843.013333pt;}
.yd5{bottom:846.693333pt;}
.yff{bottom:853.413333pt;}
.y7f{bottom:854.693333pt;}
.y35{bottom:856.933333pt;}
.yb0{bottom:861.733333pt;}
.y5{bottom:866.053333pt;}
.yfe{bottom:872.133333pt;}
.y34{bottom:875.653333pt;}
.yaf{bottom:880.453333pt;}
.yfd{bottom:891.493333pt;}
.y33{bottom:894.373333pt;}
.y4{bottom:894.693333pt;}
.y7c{bottom:897.573333pt;}
.yae{bottom:899.173333pt;}
.yfc{bottom:910.373333pt;}
.y32{bottom:913.093333pt;}
.yad{bottom:917.893333pt;}
.y3{bottom:923.333333pt;}
.yfb{bottom:929.733333pt;}
.y31{bottom:931.813333pt;}
.yac{bottom:935.013333pt;}
.y7a{bottom:940.293333pt;}
.yfa{bottom:949.253333pt;}
.y30{bottom:950.533333pt;}
.y2{bottom:951.813333pt;}
.yab{bottom:959.040000pt;}
.yf9{bottom:968.640000pt;}
.y2f{bottom:969.280000pt;}
.y1{bottom:982.080000pt;}
.y2e{bottom:994.080000pt;}
.ha{height:18.720000pt;}
.h8{height:18.752000pt;}
.h9{height:37.440000pt;}
.h7{height:46.454062pt;}
.h4{height:52.834688pt;}
.h6{height:54.390938pt;}
.h2{height:58.563750pt;}
.h5{height:60.288750pt;}
.h1{height:76.671562pt;}
.h3{height:87.156562pt;}
.h0{height:1056.000000pt;}
.w7{width:32.480000pt;}
.wc{width:37.280000pt;}
.wb{width:37.440000pt;}
.w9{width:40.640000pt;}
.w8{width:40.672000pt;}
.w2{width:43.072000pt;}
.w12{width:48.160000pt;}
.wa{width:57.440000pt;}
.w17{width:64.000000pt;}
.w15{width:73.472000pt;}
.w16{width:87.072000pt;}
.w6{width:94.400000pt;}
.w14{width:96.320000pt;}
.w13{width:103.872000pt;}
.we{width:111.392000pt;}
.wf{width:112.832000pt;}
.w11{width:112.960000pt;}
.wd{width:113.280000pt;}
.w3{width:143.226667pt;}
.w10{width:155.706667pt;}
.w5{width:245.026667pt;}
.w4{width:272.666667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:0.960000pt;}
.x20{left:10.239988pt;}
.x6{left:47.999988pt;}
.xa{left:51.040000pt;}
.x1b{left:71.999988pt;}
.x8{left:80.031988pt;}
.x7{left:96.031988pt;}
.xc{left:97.472000pt;}
.x28{left:112.351988pt;}
.x22{left:114.432000pt;}
.x5{left:157.306655pt;}
.x23{left:165.946667pt;}
.x9{left:183.706655pt;}
.xf{left:195.066667pt;}
.x1c{left:214.906667pt;}
.x10{left:230.906667pt;}
.x3{left:241.986655pt;}
.xd{left:244.066667pt;}
.x24{left:273.186667pt;}
.x11{left:274.946667pt;}
.x2{left:311.586655pt;}
.x12{left:318.946667pt;}
.x1d{left:329.666667pt;}
.x13{left:362.946667pt;}
.x4{left:372.546655pt;}
.x14{left:406.973333pt;}
.x1{left:426.013321pt;}
.x1e{left:445.853333pt;}
.x25{left:449.693333pt;}
.x15{left:467.773333pt;}
.x16{left:511.773333pt;}
.xe{left:520.093333pt;}
.x26{left:547.293333pt;}
.x17{left:555.773333pt;}
.x18{left:599.813333pt;}
.x1f{left:604.933333pt;}
.x21{left:625.573321pt;}
.x27{left:637.733333pt;}
.x19{left:640.613333pt;}
.x1a{left:681.253333pt;}
.x29{left:757.119988pt;}
}




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