
    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_dae5a0550a9a14bf169a58e4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_19fb97e1d31480614b645814.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_81a4861e6fd2f25c9469143d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.995117;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_fa40c48afde2f3af1911e705.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_f4d19f58896d17d693d194a7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_082863d6dd2804bef6816550.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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_e1c0fa3bbdc353e439fab5bb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.020020;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_385698a4510580fe9878ea3b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.030273;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_cbcbfff3b0fceeeedc2f36f3.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f3b376b26aa2ff92ada6de3b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b16fee5f3dab1575f19f52b3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.962402;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);}
.v2{vertical-align:-61.800000px;}
.v5{vertical-align:-22.500000px;}
.v7{vertical-align:-8.820000px;}
.v8{vertical-align:-7.380000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:22.500000px;}
.v6{vertical-align:28.500000px;}
.v3{vertical-align:35.820000px;}
.v1{vertical-align:130.620000px;}
.ls5{letter-spacing:-4.974000px;}
.ls8{letter-spacing:-1.632000px;}
.ls14{letter-spacing:-1.410000px;}
.ls23{letter-spacing:-0.642000px;}
.ls18{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.473400px;}
.ls1f{letter-spacing:-0.362400px;}
.ls21{letter-spacing:-0.273600px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.212400px;}
.ls7{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.720750px;}
.ls1c{letter-spacing:1.476000px;}
.ls1b{letter-spacing:1.518000px;}
.ls0{letter-spacing:1.668000px;}
.lsa{letter-spacing:1.908000px;}
.ls9{letter-spacing:2.016000px;}
.ls22{letter-spacing:38.572500px;}
.ls11{letter-spacing:47.418300px;}
.ls13{letter-spacing:74.538300px;}
.ls6{letter-spacing:80.947500px;}
.ls12{letter-spacing:98.902500px;}
.ls19{letter-spacing:103.770000px;}
.ls1a{letter-spacing:103.822500px;}
.ls2{letter-spacing:111.667500px;}
.ls16{letter-spacing:116.370000px;}
.ls15{letter-spacing:116.422500px;}
.ls1d{letter-spacing:118.593600px;}
.ls1e{letter-spacing:118.643550px;}
.ls20{letter-spacing:119.520000px;}
.lsc{letter-spacing:119.542500px;}
.lse{letter-spacing:119.550000px;}
.lsb{letter-spacing:119.572500px;}
.lsd{letter-spacing:119.602500px;}
.lsf{letter-spacing:122.125200px;}
.ls10{letter-spacing:122.171100px;}
.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;}
}
.ws20{word-spacing:-193.800000px;}
.ws16{word-spacing:-73.934100px;}
.ws0{word-spacing:-60.131400px;}
.ws5{word-spacing:-53.876400px;}
.ws21{word-spacing:-53.602800px;}
.ws12{word-spacing:-52.466400px;}
.ws7{word-spacing:-46.370400px;}
.ws26{word-spacing:-43.826700px;}
.ws4{word-spacing:-40.794450px;}
.ws15{word-spacing:-36.574800px;}
.ws14{word-spacing:-36.362400px;}
.ws25{word-spacing:-36.320700px;}
.ws24{word-spacing:-35.678700px;}
.ws22{word-spacing:-33.860400px;}
.ws23{word-spacing:-33.818700px;}
.wsb{word-spacing:-30.065700px;}
.ws13{word-spacing:-28.814700px;}
.wsa{word-spacing:-27.492900px;}
.wsd{word-spacing:-26.312700px;}
.ws3{word-spacing:-25.020000px;}
.wsf{word-spacing:-22.032000px;}
.ws10{word-spacing:-21.965700px;}
.ws11{word-spacing:-21.954450px;}
.ws1e{word-spacing:-21.308700px;}
.wse{word-spacing:-20.057700px;}
.ws19{word-spacing:-15.279000px;}
.ws17{word-spacing:-2.875050px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:46.633200px;}
.ws6{word-spacing:97.738200px;}
.ws1b{word-spacing:107.622900px;}
.ws1d{word-spacing:112.661850px;}
.ws8{word-spacing:116.036100px;}
.ws9{word-spacing:120.956100px;}
.ws18{word-spacing:123.072450px;}
.ws2{word-spacing:166.436100px;}
.ws1a{word-spacing:203.904000px;}
.ws1c{word-spacing:217.176000px;}
.ws1f{word-spacing:232.896000px;}
._1d{margin-left:-101.150400px;}
._6{margin-left:-23.837400px;}
._16{margin-left:-18.798600px;}
._f{margin-left:-17.385300px;}
._19{margin-left:-16.346400px;}
._e{margin-left:-14.994600px;}
._9{margin-left:-11.656500px;}
._0{margin-left:-10.598700px;}
._15{margin-left:-9.177450px;}
._10{margin-left:-8.139600px;}
._8{margin-left:-6.690750px;}
._c{margin-left:-5.636700px;}
._7{margin-left:-4.445100px;}
._1{margin-left:-3.028200px;}
._3{margin-left:-1.514100px;}
._2{width:1.081500px;}
._5{width:2.163000px;}
._4{width:3.244500px;}
._a{width:4.454100px;}
._d{width:5.546400px;}
._1f{width:7.673700px;}
._20{width:30.372600px;}
._23{width:32.056500px;}
._1b{width:37.861200px;}
._1c{width:39.036000px;}
._1a{width:41.024550px;}
._1e{width:49.353900px;}
._17{width:50.867700px;}
._18{width:52.272300px;}
._22{width:118.643550px;}
._b{width:151.614600px;}
._14{width:372.577200px;}
._13{width:413.270250px;}
._11{width:699.224700px;}
._12{width:892.631100px;}
._21{width:3244.736100px;}
.fc6{color:rgb(2,130,164);}
.fc4{color:rgb(87,87,86);}
.fc2{color:rgb(53,43,47);}
.fc1{color:rgb(4,131,164);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(64,64,64);}
.fc0{color:rgb(255,255,255);}
.fs14{font-size:49.500000px;}
.fse{font-size:72.000000px;}
.fsf{font-size:72.150000px;}
.fs15{font-size:76.650000px;}
.fs7{font-size:90.000000px;}
.fs5{font-size:90.150000px;}
.fsd{font-size:94.650000px;}
.fs12{font-size:103.650000px;}
.fsc{font-size:108.150000px;}
.fs6{font-size:121.650000px;}
.fs10{font-size:121.800000px;}
.fsa{font-size:130.650000px;}
.fs11{font-size:130.800000px;}
.fs8{font-size:144.150000px;}
.fs9{font-size:144.300000px;}
.fs16{font-size:157.650000px;}
.fsb{font-size:157.800000px;}
.fs2{font-size:166.650000px;}
.fs1{font-size:166.800000px;}
.fs4{font-size:193.650000px;}
.fs3{font-size:193.800000px;}
.fs0{font-size:216.300000px;}
.fs13{font-size:265.950000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:26.550000px;}
.yab{bottom:34.162500px;}
.yf{bottom:34.237500px;}
.y8f{bottom:106.537500px;}
.y46{bottom:114.150000px;}
.y5a{bottom:115.912500px;}
.y64{bottom:128.025000px;}
.y6e{bottom:140.062500px;}
.yaf{bottom:142.912500px;}
.y45{bottom:146.812500px;}
.y10{bottom:148.575000px;}
.yd8{bottom:148.800000px;}
.y8a{bottom:150.930000px;}
.y59{bottom:151.995000px;}
.yc3{bottom:152.475000px;}
.y8e{bottom:157.230000px;}
.ycf{bottom:157.275000px;}
.ye1{bottom:159.600000px;}
.y63{bottom:164.055000px;}
.ye8{bottom:165.975000px;}
.y7{bottom:173.025000px;}
.y6d{bottom:176.130000px;}
.y44{bottom:179.475000px;}
.y88{bottom:183.600000px;}
.yda{bottom:187.275000px;}
.y58{bottom:188.025000px;}
.yce{bottom:189.930000px;}
.yba{bottom:199.800000px;}
.yd7{bottom:202.875000px;}
.y7d{bottom:205.425000px;}
.ya3{bottom:211.380000px;}
.ye0{bottom:213.675000px;}
.y43{bottom:215.550000px;}
.y87{bottom:216.255000px;}
.ye7{bottom:218.925000px;}
.ycd{bottom:228.255000px;}
.yd9{bottom:232.350000px;}
.y9b{bottom:237.045000px;}
.y6{bottom:237.225000px;}
.ya8{bottom:238.425000px;}
.y42{bottom:248.220000px;}
.y86{bottom:250.050000px;}
.y13{bottom:253.950000px;}
.ya2{bottom:255.300000px;}
.yd6{bottom:256.950000px;}
.yc4{bottom:258.375000px;}
.y1b{bottom:259.755000px;}
.y62{bottom:263.220000px;}
.y9a{bottom:265.200000px;}
.ycc{bottom:265.425000px;}
.ydf{bottom:267.750000px;}
.ye6{bottom:271.875000px;}
.yc2{bottom:273.120000px;}
.y6c{bottom:275.250000px;}
.ya7{bottom:277.845000px;}
.y77{bottom:279.975000px;}
.y83{bottom:282.750000px;}
.yed{bottom:283.500000px;}
.y41{bottom:285.375000px;}
.y4e{bottom:285.945000px;}
.y99{bottom:292.230000px;}
.y28{bottom:296.655000px;}
.y61{bottom:299.250000px;}
.yb9{bottom:300.120000px;}
.yb8{bottom:300.495000px;}
.y14{bottom:300.780000px;}
.y5{bottom:301.470000px;}
.y4d{bottom:305.100000px;}
.ya1{bottom:308.250000px;}
.y76{bottom:309.255000px;}
.y1a{bottom:309.300000px;}
.yd5{bottom:311.025000px;}
.y7c{bottom:311.325000px;}
.y50{bottom:313.695000px;}
.y82{bottom:315.405000px;}
.y40{bottom:318.045000px;}
.y98{bottom:320.400000px;}
.ya6{bottom:321.795000px;}
.yc1{bottom:323.775000px;}
.y6b{bottom:324.825000px;}
.yd{bottom:329.775000px;}
.y2f{bottom:330.120000px;}
.y23{bottom:335.250000px;}
.y57{bottom:336.750000px;}
.y75{bottom:338.550000px;}
.yec{bottom:338.700000px;}
.ycb{bottom:340.905000px;}
.y60{bottom:348.825000px;}
.y81{bottom:349.200000px;}
.yaa{bottom:354.075000px;}
.y3f{bottom:355.245000px;}
.y12{bottom:359.400000px;}
.y19{bottom:360.000000px;}
.ye2{bottom:360.300000px;}
.y6a{bottom:360.900000px;}
.ya0{bottom:362.325000px;}
.yd4{bottom:365.100000px;}
.yc5{bottom:365.325000px;}
.y7b{bottom:365.400000px;}
.y27{bottom:366.525000px;}
.y74{bottom:367.845000px;}
.y56{bottom:372.780000px;}
.yca{bottom:373.575000px;}
.yc0{bottom:374.475000px;}
.ya5{bottom:375.870000px;}
.y22{bottom:378.075000px;}
.ye5{bottom:378.900000px;}
.y2e{bottom:380.775000px;}
.y37{bottom:381.000000px;}
.y80{bottom:381.870000px;}
.y4c{bottom:384.870000px;}
.y3e{bottom:386.775000px;}
.yeb{bottom:387.150000px;}
.yc{bottom:387.225000px;}
.y73{bottom:397.125000px;}
.y5f{bottom:398.400000px;}
.yb7{bottom:401.130000px;}
.y97{bottom:402.645000px;}
.y4b{bottom:404.025000px;}
.y55{bottom:408.825000px;}
.y69{bottom:410.445000px;}
.y9f{bottom:415.275000px;}
.y7a{bottom:418.350000px;}
.yd3{bottom:419.175000px;}
.y3d{bottom:419.445000px;}
.y4f{bottom:421.755000px;}
.ybf{bottom:425.175000px;}
.y72{bottom:426.405000px;}
.ya4{bottom:428.820000px;}
.y96{bottom:429.675000px;}
.y21{bottom:433.275000px;}
.yc9{bottom:433.875000px;}
.y26{bottom:435.225000px;}
.yea{bottom:435.600000px;}
.y85{bottom:437.745000px;}
.yb{bottom:444.675000px;}
.y2d{bottom:445.005000px;}
.y5e{bottom:447.975000px;}
.y7f{bottom:453.630000px;}
.y89{bottom:453.900000px;}
.y71{bottom:455.700000px;}
.y95{bottom:457.845000px;}
.y54{bottom:458.400000px;}
.y11{bottom:459.495000px;}
.y68{bottom:460.005000px;}
.y4a{bottom:461.400000px;}
.y4{bottom:463.155000px;}
.yde{bottom:465.630000px;}
.y3c{bottom:467.880000px;}
.y9e{bottom:468.225000px;}
.y84{bottom:470.400000px;}
.y79{bottom:471.300000px;}
.yd2{bottom:473.250000px;}
.ye9{bottom:475.005000px;}
.ybe{bottom:475.875000px;}
.y20{bottom:476.100000px;}
.ya9{bottom:481.755000px;}
.ye4{bottom:484.800000px;}
.y94{bottom:484.875000px;}
.y70{bottom:484.995000px;}
.y18{bottom:485.070000px;}
.y53{bottom:494.445000px;}
.y2c{bottom:495.720000px;}
.y47{bottom:497.280000px;}
.y5d{bottom:497.550000px;}
.yb6{bottom:499.575000px;}
.yb5{bottom:501.825000px;}
.y49{bottom:501.975000px;}
.ya{bottom:502.155000px;}
.y25{bottom:505.095000px;}
.y67{bottom:509.595000px;}
.yae{bottom:516.945000px;}
.y33{bottom:518.595000px;}
.ydd{bottom:519.720000px;}
.y1f{bottom:520.005000px;}
.y3{bottom:520.620000px;}
.y9d{bottom:521.175000px;}
.ye3{bottom:524.205000px;}
.ybd{bottom:525.450000px;}
.yd1{bottom:527.325000px;}
.y48{bottom:527.880000px;}
.y8d{bottom:534.825000px;}
.y17{bottom:535.755000px;}
.y52{bottom:544.005000px;}
.y66{bottom:545.625000px;}
.y2b{bottom:546.420000px;}
.y5c{bottom:547.080000px;}
.y36{bottom:548.220000px;}
.y7e{bottom:555.630000px;}
.yc8{bottom:557.595000px;}
.y9{bottom:560.745000px;}
.y24{bottom:563.655000px;}
.y8c{bottom:564.120000px;}
.y6f{bottom:564.675000px;}
.y93{bottom:567.120000px;}
.yad{bottom:567.630000px;}
.y32{bottom:569.295000px;}
.ydc{bottom:573.780000px;}
.y9c{bottom:574.125000px;}
.y1e{bottom:575.220000px;}
.ybc{bottom:576.150000px;}
.y3b{bottom:577.155000px;}
.y2{bottom:579.225000px;}
.y35{bottom:580.875000px;}
.yd0{bottom:581.400000px;}
.y16{bottom:586.470000px;}
.yb4{bottom:593.505000px;}
.y51{bottom:593.595000px;}
.y65{bottom:595.200000px;}
.y92{bottom:595.275000px;}
.y5b{bottom:596.655000px;}
.yc7{bottom:607.170000px;}
.y3a{bottom:609.825000px;}
.yb3{bottom:611.550000px;}
.y30{bottom:614.850000px;}
.y91{bottom:622.320000px;}
.y8b{bottom:626.745000px;}
.ybb{bottom:626.850000px;}
.ydb{bottom:627.870000px;}
.y31{bottom:633.675000px;}
.y1{bottom:637.800000px;}
.y34{bottom:641.100000px;}
.yc6{bottom:643.200000px;}
.y90{bottom:650.475000px;}
.y2a{bottom:651.405000px;}
.y78{bottom:653.970000px;}
.y39{bottom:658.275000px;}
.y1d{bottom:661.245000px;}
.y8{bottom:663.345000px;}
.y29{bottom:668.880000px;}
.y15{bottom:680.700000px;}
.yb1{bottom:694.200000px;}
.yac{bottom:700.155000px;}
.yb2{bottom:701.280000px;}
.ye{bottom:705.780000px;}
.yb0{bottom:727.650000px;}
.y38{bottom:734.370000px;}
.h14{height:52.628906px;}
.h15{height:52.738550px;}
.h2a{height:56.027856px;}
.h27{height:58.682373px;}
.ha{height:67.675781px;}
.h7{height:67.788574px;}
.h2b{height:68.383696px;}
.h13{height:69.185083px;}
.h29{height:70.233003px;}
.h22{height:75.763696px;}
.h9{height:75.976025px;}
.h21{height:77.939941px;}
.h12{height:79.053003px;}
.h26{height:88.558550px;}
.h8{height:88.920923px;}
.h17{height:89.030566px;}
.h18{height:89.752515px;}
.h19{height:91.409985px;}
.h16{height:91.475098px;}
.h1d{height:91.587891px;}
.he{height:95.499536px;}
.h1a{height:95.609180px;}
.h2f{height:98.242676px;}
.h2e{height:98.355469px;}
.h28{height:104.263696px;}
.hc{height:105.367456px;}
.hd{height:105.477100px;}
.h20{height:107.569116px;}
.hb{height:108.394043px;}
.h1f{height:108.506836px;}
.h31{height:118.545410px;}
.h11{height:118.658203px;}
.hf{height:120.996606px;}
.h3{height:121.813989px;}
.h2{height:121.923633px;}
.h24{height:123.063867px;}
.h1e{height:124.560571px;}
.h1c{height:129.948267px;}
.h1b{height:130.097461px;}
.h6{height:141.549829px;}
.h5{height:141.659473px;}
.h25{height:145.615723px;}
.h4{height:145.728516px;}
.h30{height:158.106006px;}
.h1{height:162.647461px;}
.h2d{height:165.754907px;}
.h2c{height:165.904102px;}
.h23{height:194.398022px;}
.h10{height:251.616606px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x12{left:44.699979px;}
.x3e{left:46.912479px;}
.x37{left:57.937479px;}
.x47{left:60.937479px;}
.x48{left:62.024979px;}
.x1{left:63.787479px;}
.x2{left:65.662479px;}
.x7{left:68.137479px;}
.x2f{left:73.724979px;}
.x13{left:74.812479px;}
.x46{left:77.399979px;}
.x14{left:79.124979px;}
.x2e{left:88.799979px;}
.x3a{left:93.524979px;}
.x30{left:100.724979px;}
.x49{left:102.562479px;}
.x21{left:104.324979px;}
.x25{left:109.462479px;}
.x38{left:110.812479px;}
.x15{left:119.624979px;}
.x26{left:122.962479px;}
.x11{left:130.724979px;}
.x24{left:132.599979px;}
.x3b{left:134.062479px;}
.xd{left:145.462479px;}
.xe{left:189.899979px;}
.x3d{left:385.694979px;}
.x36{left:390.074979px;}
.x35{left:463.004979px;}
.x39{left:483.299979px;}
.x22{left:510.974979px;}
.x28{left:532.349979px;}
.x4{left:536.969979px;}
.x5{left:540.569979px;}
.x29{left:545.879979px;}
.x23{left:551.519979px;}
.xa{left:553.619979px;}
.x32{left:563.174979px;}
.xb{left:594.149979px;}
.x27{left:595.904979px;}
.xf{left:619.649979px;}
.x31{left:637.754979px;}
.xc{left:694.049979px;}
.x2d{left:696.374979px;}
.x6{left:854.579979px;}
.x16{left:858.074979px;}
.x20{left:913.049979px;}
.x1f{left:914.969979px;}
.x4a{left:922.049979px;}
.x4b{left:924.404979px;}
.x2b{left:955.274979px;}
.x2c{left:968.774979px;}
.x40{left:983.954979px;}
.x34{left:998.624979px;}
.x2a{left:1025.819979px;}
.x42{left:1053.149979px;}
.x44{left:1056.329979px;}
.x10{left:1060.544979px;}
.x41{left:1063.844979px;}
.x1a{left:1099.874979px;}
.x43{left:1102.049979px;}
.x45{left:1103.549979px;}
.x3f{left:1106.069979px;}
.x33{left:1115.249979px;}
.x1b{left:1121.249979px;}
.x17{left:1166.249979px;}
.x19{left:1208.849979px;}
.x9{left:1210.079979px;}
.x3{left:1214.324979px;}
.x18{left:1220.774979px;}
.x1e{left:1230.074979px;}
.x1d{left:1296.524979px;}
.x1c{left:1319.399979px;}
.x3c{left:1338.254979px;}
.x8{left:1364.699979px;}
@media print{
.v2{vertical-align:-54.933333pt;}
.v5{vertical-align:-20.000000pt;}
.v7{vertical-align:-7.840000pt;}
.v8{vertical-align:-6.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:20.000000pt;}
.v6{vertical-align:25.333333pt;}
.v3{vertical-align:31.840000pt;}
.v1{vertical-align:116.106667pt;}
.ls5{letter-spacing:-4.421333pt;}
.ls8{letter-spacing:-1.450667pt;}
.ls14{letter-spacing:-1.253333pt;}
.ls23{letter-spacing:-0.570667pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.420800pt;}
.ls1f{letter-spacing:-0.322133pt;}
.ls21{letter-spacing:-0.243200pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.188800pt;}
.ls7{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.640667pt;}
.ls1c{letter-spacing:1.312000pt;}
.ls1b{letter-spacing:1.349333pt;}
.ls0{letter-spacing:1.482667pt;}
.lsa{letter-spacing:1.696000pt;}
.ls9{letter-spacing:1.792000pt;}
.ls22{letter-spacing:34.286667pt;}
.ls11{letter-spacing:42.149600pt;}
.ls13{letter-spacing:66.256267pt;}
.ls6{letter-spacing:71.953333pt;}
.ls12{letter-spacing:87.913333pt;}
.ls19{letter-spacing:92.240000pt;}
.ls1a{letter-spacing:92.286667pt;}
.ls2{letter-spacing:99.260000pt;}
.ls16{letter-spacing:103.440000pt;}
.ls15{letter-spacing:103.486667pt;}
.ls1d{letter-spacing:105.416533pt;}
.ls1e{letter-spacing:105.460933pt;}
.ls20{letter-spacing:106.240000pt;}
.lsc{letter-spacing:106.260000pt;}
.lse{letter-spacing:106.266667pt;}
.lsb{letter-spacing:106.286667pt;}
.lsd{letter-spacing:106.313333pt;}
.lsf{letter-spacing:108.555733pt;}
.ls10{letter-spacing:108.596533pt;}
.ws20{word-spacing:-172.266667pt;}
.ws16{word-spacing:-65.719200pt;}
.ws0{word-spacing:-53.450133pt;}
.ws5{word-spacing:-47.890133pt;}
.ws21{word-spacing:-47.646933pt;}
.ws12{word-spacing:-46.636800pt;}
.ws7{word-spacing:-41.218133pt;}
.ws26{word-spacing:-38.957067pt;}
.ws4{word-spacing:-36.261733pt;}
.ws15{word-spacing:-32.510933pt;}
.ws14{word-spacing:-32.322133pt;}
.ws25{word-spacing:-32.285067pt;}
.ws24{word-spacing:-31.714400pt;}
.ws22{word-spacing:-30.098133pt;}
.ws23{word-spacing:-30.061067pt;}
.wsb{word-spacing:-26.725067pt;}
.ws13{word-spacing:-25.613067pt;}
.wsa{word-spacing:-24.438133pt;}
.wsd{word-spacing:-23.389067pt;}
.ws3{word-spacing:-22.240000pt;}
.wsf{word-spacing:-19.584000pt;}
.ws10{word-spacing:-19.525067pt;}
.ws11{word-spacing:-19.515067pt;}
.ws1e{word-spacing:-18.941067pt;}
.wse{word-spacing:-17.829067pt;}
.ws19{word-spacing:-13.581333pt;}
.ws17{word-spacing:-2.555600pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:41.451733pt;}
.ws6{word-spacing:86.878400pt;}
.ws1b{word-spacing:95.664800pt;}
.ws1d{word-spacing:100.143867pt;}
.ws8{word-spacing:103.143200pt;}
.ws9{word-spacing:107.516533pt;}
.ws18{word-spacing:109.397733pt;}
.ws2{word-spacing:147.943200pt;}
.ws1a{word-spacing:181.248000pt;}
.ws1c{word-spacing:193.045333pt;}
.ws1f{word-spacing:207.018667pt;}
._1d{margin-left:-89.911467pt;}
._6{margin-left:-21.188800pt;}
._16{margin-left:-16.709867pt;}
._f{margin-left:-15.453600pt;}
._19{margin-left:-14.530133pt;}
._e{margin-left:-13.328533pt;}
._9{margin-left:-10.361333pt;}
._0{margin-left:-9.421067pt;}
._15{margin-left:-8.157733pt;}
._10{margin-left:-7.235200pt;}
._8{margin-left:-5.947333pt;}
._c{margin-left:-5.010400pt;}
._7{margin-left:-3.951200pt;}
._1{margin-left:-2.691733pt;}
._3{margin-left:-1.345867pt;}
._2{width:0.961333pt;}
._5{width:1.922667pt;}
._4{width:2.884000pt;}
._a{width:3.959200pt;}
._d{width:4.930133pt;}
._1f{width:6.821067pt;}
._20{width:26.997867pt;}
._23{width:28.494667pt;}
._1b{width:33.654400pt;}
._1c{width:34.698667pt;}
._1a{width:36.466267pt;}
._1e{width:43.870133pt;}
._17{width:45.215733pt;}
._18{width:46.464267pt;}
._22{width:105.460933pt;}
._b{width:134.768533pt;}
._14{width:331.179733pt;}
._13{width:367.351333pt;}
._11{width:621.533067pt;}
._12{width:793.449867pt;}
._21{width:2884.209867pt;}
.fs14{font-size:44.000000pt;}
.fse{font-size:64.000000pt;}
.fsf{font-size:64.133333pt;}
.fs15{font-size:68.133333pt;}
.fs7{font-size:80.000000pt;}
.fs5{font-size:80.133333pt;}
.fsd{font-size:84.133333pt;}
.fs12{font-size:92.133333pt;}
.fsc{font-size:96.133333pt;}
.fs6{font-size:108.133333pt;}
.fs10{font-size:108.266667pt;}
.fsa{font-size:116.133333pt;}
.fs11{font-size:116.266667pt;}
.fs8{font-size:128.133333pt;}
.fs9{font-size:128.266667pt;}
.fs16{font-size:140.133333pt;}
.fsb{font-size:140.266667pt;}
.fs2{font-size:148.133333pt;}
.fs1{font-size:148.266667pt;}
.fs4{font-size:172.133333pt;}
.fs3{font-size:172.266667pt;}
.fs0{font-size:192.266667pt;}
.fs13{font-size:236.400000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:23.600000pt;}
.yab{bottom:30.366667pt;}
.yf{bottom:30.433333pt;}
.y8f{bottom:94.700000pt;}
.y46{bottom:101.466667pt;}
.y5a{bottom:103.033333pt;}
.y64{bottom:113.800000pt;}
.y6e{bottom:124.500000pt;}
.yaf{bottom:127.033333pt;}
.y45{bottom:130.500000pt;}
.y10{bottom:132.066667pt;}
.yd8{bottom:132.266667pt;}
.y8a{bottom:134.160000pt;}
.y59{bottom:135.106667pt;}
.yc3{bottom:135.533333pt;}
.y8e{bottom:139.760000pt;}
.ycf{bottom:139.800000pt;}
.ye1{bottom:141.866667pt;}
.y63{bottom:145.826667pt;}
.ye8{bottom:147.533333pt;}
.y7{bottom:153.800000pt;}
.y6d{bottom:156.560000pt;}
.y44{bottom:159.533333pt;}
.y88{bottom:163.200000pt;}
.yda{bottom:166.466667pt;}
.y58{bottom:167.133333pt;}
.yce{bottom:168.826667pt;}
.yba{bottom:177.600000pt;}
.yd7{bottom:180.333333pt;}
.y7d{bottom:182.600000pt;}
.ya3{bottom:187.893333pt;}
.ye0{bottom:189.933333pt;}
.y43{bottom:191.600000pt;}
.y87{bottom:192.226667pt;}
.ye7{bottom:194.600000pt;}
.ycd{bottom:202.893333pt;}
.yd9{bottom:206.533333pt;}
.y9b{bottom:210.706667pt;}
.y6{bottom:210.866667pt;}
.ya8{bottom:211.933333pt;}
.y42{bottom:220.640000pt;}
.y86{bottom:222.266667pt;}
.y13{bottom:225.733333pt;}
.ya2{bottom:226.933333pt;}
.yd6{bottom:228.400000pt;}
.yc4{bottom:229.666667pt;}
.y1b{bottom:230.893333pt;}
.y62{bottom:233.973333pt;}
.y9a{bottom:235.733333pt;}
.ycc{bottom:235.933333pt;}
.ydf{bottom:238.000000pt;}
.ye6{bottom:241.666667pt;}
.yc2{bottom:242.773333pt;}
.y6c{bottom:244.666667pt;}
.ya7{bottom:246.973333pt;}
.y77{bottom:248.866667pt;}
.y83{bottom:251.333333pt;}
.yed{bottom:252.000000pt;}
.y41{bottom:253.666667pt;}
.y4e{bottom:254.173333pt;}
.y99{bottom:259.760000pt;}
.y28{bottom:263.693333pt;}
.y61{bottom:266.000000pt;}
.yb9{bottom:266.773333pt;}
.yb8{bottom:267.106667pt;}
.y14{bottom:267.360000pt;}
.y5{bottom:267.973333pt;}
.y4d{bottom:271.200000pt;}
.ya1{bottom:274.000000pt;}
.y76{bottom:274.893333pt;}
.y1a{bottom:274.933333pt;}
.yd5{bottom:276.466667pt;}
.y7c{bottom:276.733333pt;}
.y50{bottom:278.840000pt;}
.y82{bottom:280.360000pt;}
.y40{bottom:282.706667pt;}
.y98{bottom:284.800000pt;}
.ya6{bottom:286.040000pt;}
.yc1{bottom:287.800000pt;}
.y6b{bottom:288.733333pt;}
.yd{bottom:293.133333pt;}
.y2f{bottom:293.440000pt;}
.y23{bottom:298.000000pt;}
.y57{bottom:299.333333pt;}
.y75{bottom:300.933333pt;}
.yec{bottom:301.066667pt;}
.ycb{bottom:303.026667pt;}
.y60{bottom:310.066667pt;}
.y81{bottom:310.400000pt;}
.yaa{bottom:314.733333pt;}
.y3f{bottom:315.773333pt;}
.y12{bottom:319.466667pt;}
.y19{bottom:320.000000pt;}
.ye2{bottom:320.266667pt;}
.y6a{bottom:320.800000pt;}
.ya0{bottom:322.066667pt;}
.yd4{bottom:324.533333pt;}
.yc5{bottom:324.733333pt;}
.y7b{bottom:324.800000pt;}
.y27{bottom:325.800000pt;}
.y74{bottom:326.973333pt;}
.y56{bottom:331.360000pt;}
.yca{bottom:332.066667pt;}
.yc0{bottom:332.866667pt;}
.ya5{bottom:334.106667pt;}
.y22{bottom:336.066667pt;}
.ye5{bottom:336.800000pt;}
.y2e{bottom:338.466667pt;}
.y37{bottom:338.666667pt;}
.y80{bottom:339.440000pt;}
.y4c{bottom:342.106667pt;}
.y3e{bottom:343.800000pt;}
.yeb{bottom:344.133333pt;}
.yc{bottom:344.200000pt;}
.y73{bottom:353.000000pt;}
.y5f{bottom:354.133333pt;}
.yb7{bottom:356.560000pt;}
.y97{bottom:357.906667pt;}
.y4b{bottom:359.133333pt;}
.y55{bottom:363.400000pt;}
.y69{bottom:364.840000pt;}
.y9f{bottom:369.133333pt;}
.y7a{bottom:371.866667pt;}
.yd3{bottom:372.600000pt;}
.y3d{bottom:372.840000pt;}
.y4f{bottom:374.893333pt;}
.ybf{bottom:377.933333pt;}
.y72{bottom:379.026667pt;}
.ya4{bottom:381.173333pt;}
.y96{bottom:381.933333pt;}
.y21{bottom:385.133333pt;}
.yc9{bottom:385.666667pt;}
.y26{bottom:386.866667pt;}
.yea{bottom:387.200000pt;}
.y85{bottom:389.106667pt;}
.yb{bottom:395.266667pt;}
.y2d{bottom:395.560000pt;}
.y5e{bottom:398.200000pt;}
.y7f{bottom:403.226667pt;}
.y89{bottom:403.466667pt;}
.y71{bottom:405.066667pt;}
.y95{bottom:406.973333pt;}
.y54{bottom:407.466667pt;}
.y11{bottom:408.440000pt;}
.y68{bottom:408.893333pt;}
.y4a{bottom:410.133333pt;}
.y4{bottom:411.693333pt;}
.yde{bottom:413.893333pt;}
.y3c{bottom:415.893333pt;}
.y9e{bottom:416.200000pt;}
.y84{bottom:418.133333pt;}
.y79{bottom:418.933333pt;}
.yd2{bottom:420.666667pt;}
.ye9{bottom:422.226667pt;}
.ybe{bottom:423.000000pt;}
.y20{bottom:423.200000pt;}
.ya9{bottom:428.226667pt;}
.ye4{bottom:430.933333pt;}
.y94{bottom:431.000000pt;}
.y70{bottom:431.106667pt;}
.y18{bottom:431.173333pt;}
.y53{bottom:439.506667pt;}
.y2c{bottom:440.640000pt;}
.y47{bottom:442.026667pt;}
.y5d{bottom:442.266667pt;}
.yb6{bottom:444.066667pt;}
.yb5{bottom:446.066667pt;}
.y49{bottom:446.200000pt;}
.ya{bottom:446.360000pt;}
.y25{bottom:448.973333pt;}
.y67{bottom:452.973333pt;}
.yae{bottom:459.506667pt;}
.y33{bottom:460.973333pt;}
.ydd{bottom:461.973333pt;}
.y1f{bottom:462.226667pt;}
.y3{bottom:462.773333pt;}
.y9d{bottom:463.266667pt;}
.ye3{bottom:465.960000pt;}
.ybd{bottom:467.066667pt;}
.yd1{bottom:468.733333pt;}
.y48{bottom:469.226667pt;}
.y8d{bottom:475.400000pt;}
.y17{bottom:476.226667pt;}
.y52{bottom:483.560000pt;}
.y66{bottom:485.000000pt;}
.y2b{bottom:485.706667pt;}
.y5c{bottom:486.293333pt;}
.y36{bottom:487.306667pt;}
.y7e{bottom:493.893333pt;}
.yc8{bottom:495.640000pt;}
.y9{bottom:498.440000pt;}
.y24{bottom:501.026667pt;}
.y8c{bottom:501.440000pt;}
.y6f{bottom:501.933333pt;}
.y93{bottom:504.106667pt;}
.yad{bottom:504.560000pt;}
.y32{bottom:506.040000pt;}
.ydc{bottom:510.026667pt;}
.y9c{bottom:510.333333pt;}
.y1e{bottom:511.306667pt;}
.ybc{bottom:512.133333pt;}
.y3b{bottom:513.026667pt;}
.y2{bottom:514.866667pt;}
.y35{bottom:516.333333pt;}
.yd0{bottom:516.800000pt;}
.y16{bottom:521.306667pt;}
.yb4{bottom:527.560000pt;}
.y51{bottom:527.640000pt;}
.y65{bottom:529.066667pt;}
.y92{bottom:529.133333pt;}
.y5b{bottom:530.360000pt;}
.yc7{bottom:539.706667pt;}
.y3a{bottom:542.066667pt;}
.yb3{bottom:543.600000pt;}
.y30{bottom:546.533333pt;}
.y91{bottom:553.173333pt;}
.y8b{bottom:557.106667pt;}
.ybb{bottom:557.200000pt;}
.ydb{bottom:558.106667pt;}
.y31{bottom:563.266667pt;}
.y1{bottom:566.933333pt;}
.y34{bottom:569.866667pt;}
.yc6{bottom:571.733333pt;}
.y90{bottom:578.200000pt;}
.y2a{bottom:579.026667pt;}
.y78{bottom:581.306667pt;}
.y39{bottom:585.133333pt;}
.y1d{bottom:587.773333pt;}
.y8{bottom:589.640000pt;}
.y29{bottom:594.560000pt;}
.y15{bottom:605.066667pt;}
.yb1{bottom:617.066667pt;}
.yac{bottom:622.360000pt;}
.yb2{bottom:623.360000pt;}
.ye{bottom:627.360000pt;}
.yb0{bottom:646.800000pt;}
.y38{bottom:652.773333pt;}
.h14{height:46.781250pt;}
.h15{height:46.878711pt;}
.h2a{height:49.802539pt;}
.h27{height:52.162109pt;}
.ha{height:60.156250pt;}
.h7{height:60.256510pt;}
.h2b{height:60.785508pt;}
.h13{height:61.497852pt;}
.h29{height:62.429336pt;}
.h22{height:67.345508pt;}
.h9{height:67.534245pt;}
.h21{height:69.279948pt;}
.h12{height:70.269336pt;}
.h26{height:78.718711pt;}
.h8{height:79.040820pt;}
.h17{height:79.138281pt;}
.h18{height:79.780013pt;}
.h19{height:81.253320pt;}
.h16{height:81.311198pt;}
.h1d{height:81.411458pt;}
.he{height:84.888477pt;}
.h1a{height:84.985937pt;}
.h2f{height:87.326823pt;}
.h2e{height:87.427083pt;}
.h28{height:92.678841pt;}
.hc{height:93.659961pt;}
.hd{height:93.757422pt;}
.h20{height:95.616992pt;}
.hb{height:96.350260pt;}
.h1f{height:96.450521pt;}
.h31{height:105.373698pt;}
.h11{height:105.473958pt;}
.hf{height:107.552539pt;}
.h3{height:108.279102pt;}
.h2{height:108.376562pt;}
.h24{height:109.390104pt;}
.h1e{height:110.720508pt;}
.h1c{height:115.509570pt;}
.h1b{height:115.642188pt;}
.h6{height:125.822070pt;}
.h5{height:125.919531pt;}
.h25{height:129.436198pt;}
.h4{height:129.536458pt;}
.h30{height:140.538672pt;}
.h1{height:144.575521pt;}
.h2d{height:147.337695pt;}
.h2c{height:147.470313pt;}
.h23{height:172.798242pt;}
.h10{height:223.659206pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x12{left:39.733314pt;}
.x3e{left:41.699981pt;}
.x37{left:51.499981pt;}
.x47{left:54.166648pt;}
.x48{left:55.133314pt;}
.x1{left:56.699981pt;}
.x2{left:58.366648pt;}
.x7{left:60.566648pt;}
.x2f{left:65.533314pt;}
.x13{left:66.499981pt;}
.x46{left:68.799981pt;}
.x14{left:70.333314pt;}
.x2e{left:78.933314pt;}
.x3a{left:83.133314pt;}
.x30{left:89.533314pt;}
.x49{left:91.166648pt;}
.x21{left:92.733314pt;}
.x25{left:97.299981pt;}
.x38{left:98.499981pt;}
.x15{left:106.333314pt;}
.x26{left:109.299981pt;}
.x11{left:116.199981pt;}
.x24{left:117.866648pt;}
.x3b{left:119.166648pt;}
.xd{left:129.299981pt;}
.xe{left:168.799981pt;}
.x3d{left:342.839981pt;}
.x36{left:346.733314pt;}
.x35{left:411.559981pt;}
.x39{left:429.599981pt;}
.x22{left:454.199981pt;}
.x28{left:473.199981pt;}
.x4{left:477.306648pt;}
.x5{left:480.506648pt;}
.x29{left:485.226648pt;}
.x23{left:490.239981pt;}
.xa{left:492.106648pt;}
.x32{left:500.599981pt;}
.xb{left:528.133314pt;}
.x27{left:529.693314pt;}
.xf{left:550.799981pt;}
.x31{left:566.893314pt;}
.xc{left:616.933314pt;}
.x2d{left:618.999981pt;}
.x6{left:759.626648pt;}
.x16{left:762.733314pt;}
.x20{left:811.599981pt;}
.x1f{left:813.306648pt;}
.x4a{left:819.599981pt;}
.x4b{left:821.693314pt;}
.x2b{left:849.133314pt;}
.x2c{left:861.133314pt;}
.x40{left:874.626648pt;}
.x34{left:887.666648pt;}
.x2a{left:911.839981pt;}
.x42{left:936.133314pt;}
.x44{left:938.959981pt;}
.x10{left:942.706648pt;}
.x41{left:945.639981pt;}
.x1a{left:977.666648pt;}
.x43{left:979.599981pt;}
.x45{left:980.933314pt;}
.x3f{left:983.173314pt;}
.x33{left:991.333314pt;}
.x1b{left:996.666648pt;}
.x17{left:1036.666648pt;}
.x19{left:1074.533314pt;}
.x9{left:1075.626648pt;}
.x3{left:1079.399981pt;}
.x18{left:1085.133314pt;}
.x1e{left:1093.399981pt;}
.x1d{left:1152.466648pt;}
.x1c{left:1172.799981pt;}
.x3c{left:1189.559981pt;}
.x8{left:1213.066648pt;}
}




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