
    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_876b71239541e3939132f667.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.207031;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_b902f0504eef75bb5fb1c143.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_1854260d82ebe4092294ab59.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_9d64944c716272b1641e2ac7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_091c356ab43bd6f75e7e39a1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_ff73177fd2a2101d830b8f43.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.060059;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_cd4c9e32cbd07e5656f80fbc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_4049dc6c94e209a3145f0aa6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.207031;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4448c317e625461655987162.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064941;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);}
.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);}
.v3{vertical-align:-75.720000px;}
.v14{vertical-align:-52.560000px;}
.v16{vertical-align:-15.840000px;}
.va{vertical-align:-13.680000px;}
.v2{vertical-align:-12.240000px;}
.v10{vertical-align:-10.800000px;}
.v11{vertical-align:-8.640000px;}
.v8{vertical-align:-7.200000px;}
.v5{vertical-align:-5.760000px;}
.ve{vertical-align:-4.320000px;}
.vc{vertical-align:-2.880000px;}
.v15{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.440000px;}
.vb{vertical-align:2.880000px;}
.v4{vertical-align:5.040000px;}
.v7{vertical-align:7.200000px;}
.vd{vertical-align:8.640000px;}
.vf{vertical-align:10.800000px;}
.v12{vertical-align:12.240000px;}
.v9{vertical-align:13.680000px;}
.v1{vertical-align:15.120000px;}
.v17{vertical-align:19.440000px;}
.v13{vertical-align:54.720000px;}
.ls4c{letter-spacing:-0.960000px;}
.ls42{letter-spacing:-0.792000px;}
.ls4e{letter-spacing:-0.696000px;}
.ls46{letter-spacing:-0.618000px;}
.ls40{letter-spacing:-0.478200px;}
.ls4{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.270000px;}
.ls5{letter-spacing:-0.241800px;}
.ls47{letter-spacing:-0.233400px;}
.ls4a{letter-spacing:-0.227400px;}
.ls4b{letter-spacing:-0.150000px;}
.ls7{letter-spacing:-0.106800px;}
.ls3d{letter-spacing:-0.094800px;}
.ls8{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.023040px;}
.ls10{letter-spacing:0.048960px;}
.ls43{letter-spacing:0.075000px;}
.ls1c{letter-spacing:0.118080px;}
.ls41{letter-spacing:0.122400px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.252000px;}
.ls4d{letter-spacing:0.305280px;}
.ls49{letter-spacing:0.308400px;}
.ls29{letter-spacing:0.319680px;}
.ls27{letter-spacing:0.339840px;}
.ls15{letter-spacing:0.365760px;}
.ls35{letter-spacing:0.590400px;}
.ls39{letter-spacing:0.633600px;}
.lsc{letter-spacing:0.720000px;}
.ls38{letter-spacing:0.768960px;}
.ls33{letter-spacing:0.858240px;}
.ls31{letter-spacing:1.085760px;}
.ls2a{letter-spacing:1.353600px;}
.ls18{letter-spacing:1.356480px;}
.ls37{letter-spacing:1.379520px;}
.lsf{letter-spacing:1.488960px;}
.ls34{letter-spacing:1.558080px;}
.ls1a{letter-spacing:1.578240px;}
.ls24{letter-spacing:1.779840px;}
.lsd{letter-spacing:2.160000px;}
.ls13{letter-spacing:2.880000px;}
.ls12{letter-spacing:3.219840px;}
.ls28{letter-spacing:3.245760px;}
.ls2d{letter-spacing:3.355200px;}
.ls32{letter-spacing:3.493440px;}
.ls36{letter-spacing:3.600000px;}
.ls23{letter-spacing:3.965760px;}
.ls17{letter-spacing:4.233600px;}
.ls2c{letter-spacing:4.236480px;}
.ls1f{letter-spacing:4.368960px;}
.ls26{letter-spacing:4.438080px;}
.ls1d{letter-spacing:4.484160px;}
.ls2e{letter-spacing:4.795200px;}
.ls3a{letter-spacing:5.676480px;}
.ls2f{letter-spacing:5.783040px;}
.ls3b{letter-spacing:6.125760px;}
.lse{letter-spacing:6.845760px;}
.ls2b{letter-spacing:7.246080px;}
.ls11{letter-spacing:7.565760px;}
.ls21{letter-spacing:9.385920px;}
.ls14{letter-spacing:9.408960px;}
.lsa{letter-spacing:9.567360px;}
.ls1e{letter-spacing:10.080000px;}
.ls30{letter-spacing:10.103040px;}
.ls19{letter-spacing:10.105920px;}
.lsb{letter-spacing:10.825920px;}
.ls22{letter-spacing:10.964160px;}
.ls20{letter-spacing:12.960000px;}
.ls1b{letter-spacing:13.008960px;}
.ls45{letter-spacing:16.865280px;}
.ls48{letter-spacing:24.065280px;}
.ls3f{letter-spacing:39.185280px;}
.ls44{letter-spacing:39.905280px;}
.ls3e{letter-spacing:43.505280px;}
.ls9{letter-spacing:1008.007200px;}
.ls25{letter-spacing:1943.088960px;}
.ls3c{letter-spacing:1977.648960px;}
.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;}
}
.wsd{word-spacing:-66.873600px;}
.wsb{word-spacing:-66.240000px;}
.wsc{word-spacing:-50.400000px;}
.ws14{word-spacing:-14.881200px;}
.ws10{word-spacing:-14.647800px;}
.ws12{word-spacing:-14.595840px;}
.ws11{word-spacing:-14.572800px;}
.ws16{word-spacing:-14.422800px;}
.ws15{word-spacing:-14.345400px;}
.ws13{word-spacing:-14.339400px;}
.wsf{word-spacing:-14.331000px;}
.ws18{word-spacing:-13.876800px;}
.ws17{word-spacing:-13.780800px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.140000px;}
.ws6{word-spacing:-13.040400px;}
.ws2{word-spacing:-12.060000px;}
.wse{word-spacing:-10.134600px;}
.ws3{word-spacing:-9.187200px;}
.wsa{word-spacing:-9.092400px;}
.ws4{word-spacing:-8.945400px;}
.ws5{word-spacing:-8.172000px;}
.ws8{word-spacing:-7.920000px;}
.ws7{word-spacing:-7.884000px;}
.ws9{word-spacing:0.000000px;}
._44{margin-left:-217.707120px;}
._49{margin-left:-186.772800px;}
._4a{margin-left:-172.520400px;}
._4d{margin-left:-170.764560px;}
._2a{margin-left:-162.892800px;}
._2d{margin-left:-161.818560px;}
._4c{margin-left:-154.441440px;}
._4b{margin-left:-153.425040px;}
._45{margin-left:-150.469200px;}
._46{margin-left:-148.028400px;}
._35{margin-left:-146.567280px;}
._2f{margin-left:-145.054800px;}
._2e{margin-left:-143.203680px;}
._33{margin-left:-142.194240px;}
._43{margin-left:-139.548240px;}
._39{margin-left:-137.995200px;}
._38{margin-left:-135.876960px;}
._29{margin-left:-131.688000px;}
._27{margin-left:-130.492800px;}
._3b{margin-left:-122.523840px;}
._3a{margin-left:-121.132800px;}
._37{margin-left:-118.843200px;}
._36{margin-left:-117.652800px;}
._2c{margin-left:-115.915680px;}
._41{margin-left:-103.852800px;}
._48{margin-left:-86.461680px;}
._47{margin-left:-84.289920px;}
._32{margin-left:-80.812800px;}
._31{margin-left:-79.056720px;}
._26{margin-left:-77.394240px;}
._40{margin-left:-71.556480px;}
._3f{margin-left:-70.012800px;}
._3e{margin-left:-64.609920px;}
._30{margin-left:-19.258560px;}
._28{margin-left:-10.800000px;}
._25{margin-left:-9.360000px;}
._34{margin-left:-7.920000px;}
._2b{margin-left:-6.865200px;}
._42{margin-left:-5.760000px;}
._1e{margin-left:-4.424400px;}
._10{margin-left:-2.988000px;}
._2{margin-left:-1.278000px;}
._1{width:1.668000px;}
._7{width:2.735520px;}
._6{width:4.082400px;}
._1a{width:5.171520px;}
._12{width:6.371760px;}
._11{width:7.833840px;}
._f{width:9.322560px;}
._8{width:10.697040px;}
._9{width:12.071520px;}
._22{width:13.314240px;}
._e{width:15.005040px;}
._d{width:16.015680px;}
._19{width:17.330400px;}
._b{width:18.829680px;}
._c{width:19.835040px;}
._1b{width:21.298320px;}
._51{width:22.338000px;}
._50{width:23.581440px;}
._16{width:24.654720px;}
._15{width:25.696800px;}
._1f{width:26.771280px;}
._4e{width:28.218240px;}
._4f{width:29.322000px;}
._52{width:30.382560px;}
._1d{width:31.976880px;}
._1c{width:33.047280px;}
._17{width:34.122960px;}
._23{width:35.476560px;}
._3c{width:36.810000px;}
._53{width:38.352960px;}
._54{width:39.763440px;}
._18{width:43.424400px;}
._13{width:44.526480px;}
._14{width:45.895680px;}
._20{width:47.621280px;}
._a{width:49.122720px;}
._58{width:50.490000px;}
._57{width:51.524640px;}
._56{width:60.079680px;}
._55{width:61.158960px;}
._0{width:75.000000px;}
._24{width:76.077120px;}
._59{width:105.785280px;}
._3{width:181.080000px;}
._4{width:196.809840px;}
._5{width:202.852800px;}
._3d{width:824.201520px;}
._21{width:1056.007200px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.y54{bottom:-26.100000px;}
.y53{bottom:-5.400000px;}
.y0{bottom:0.000000px;}
.y52{bottom:13.320000px;}
.y51{bottom:23.940000px;}
.y50{bottom:34.560000px;}
.y4f{bottom:45.000000px;}
.y8{bottom:56.520000px;}
.y4e{bottom:62.640000px;}
.y7{bottom:70.596000px;}
.y6{bottom:84.636000px;}
.yaa{bottom:113.796000px;}
.y90{bottom:114.516000px;}
.y4d{bottom:115.560000px;}
.y4c{bottom:129.600000px;}
.ya9{bottom:133.236000px;}
.y8f{bottom:133.956000px;}
.y3e{bottom:137.916000px;}
.y4b{bottom:143.820000px;}
.ya8{bottom:152.490000px;}
.y8e{bottom:153.210000px;}
.yd8{bottom:153.570000px;}
.y3d{bottom:157.350000px;}
.y4a{bottom:157.860000px;}
.y49{bottom:171.900000px;}
.ya7{bottom:171.930000px;}
.y8d{bottom:172.650000px;}
.yd7{bottom:172.830000px;}
.y3c{bottom:176.610000px;}
.y48{bottom:185.940000px;}
.ya6{bottom:191.190000px;}
.y8c{bottom:191.910000px;}
.yd6{bottom:192.270000px;}
.y3b{bottom:196.050000px;}
.y47{bottom:199.980000px;}
.y8a{bottom:208.110000px;}
.y88{bottom:208.650000px;}
.y8b{bottom:209.190000px;}
.ya5{bottom:210.630000px;}
.y89{bottom:211.350000px;}
.yd5{bottom:211.530000px;}
.y3a{bottom:215.310000px;}
.y46{bottom:215.325000px;}
.ya4{bottom:229.890000px;}
.y87{bottom:230.250000px;}
.yd4{bottom:230.790000px;}
.y39{bottom:234.750000px;}
.y45{bottom:234.765000px;}
.y44{bottom:248.985000px;}
.ya3{bottom:249.330000px;}
.y86{bottom:249.690000px;}
.yd3{bottom:250.230000px;}
.y38{bottom:254.010000px;}
.y43{bottom:263.025000px;}
.ya2{bottom:268.590000px;}
.y85{bottom:268.950000px;}
.yd2{bottom:269.490000px;}
.y37{bottom:273.270000px;}
.y42{bottom:277.065000px;}
.ya1{bottom:287.850000px;}
.y84{bottom:288.390000px;}
.yd1{bottom:288.930000px;}
.y41{bottom:291.105000px;}
.y36{bottom:292.710000px;}
.y40{bottom:305.505000px;}
.ya0{bottom:307.290000px;}
.y83{bottom:307.650000px;}
.yd0{bottom:308.190000px;}
.y35{bottom:311.970000px;}
.y9f{bottom:326.550000px;}
.y82{bottom:326.910000px;}
.ycf{bottom:327.630000px;}
.y34{bottom:331.050000px;}
.y9e{bottom:346.035000px;}
.y81{bottom:346.395000px;}
.yce{bottom:346.935000px;}
.y33{bottom:348.735000px;}
.y9d{bottom:365.295000px;}
.y80{bottom:365.655000px;}
.y32{bottom:366.375000px;}
.y31{bottom:383.835000px;}
.y9c{bottom:384.735000px;}
.y7f{bottom:385.095000px;}
.ycd{bottom:385.635000px;}
.y30{bottom:401.475000px;}
.y9b{bottom:403.995000px;}
.y7e{bottom:404.355000px;}
.ycc{bottom:405.075000px;}
.y2f{bottom:419.115000px;}
.y9a{bottom:423.435000px;}
.y7d{bottom:423.795000px;}
.ycb{bottom:424.335000px;}
.y2e{bottom:436.755000px;}
.y99{bottom:442.695000px;}
.y7c{bottom:443.055000px;}
.yca{bottom:443.775000px;}
.y2d{bottom:454.215000px;}
.y98{bottom:462.135000px;}
.y7b{bottom:462.495000px;}
.yc9{bottom:463.035000px;}
.y2c{bottom:471.855000px;}
.y97{bottom:481.395000px;}
.y7a{bottom:481.755000px;}
.yc8{bottom:482.475000px;}
.y2b{bottom:489.495000px;}
.y96{bottom:500.835000px;}
.y79{bottom:501.195000px;}
.yc7{bottom:501.735000px;}
.y2a{bottom:506.955000px;}
.y95{bottom:520.095000px;}
.y78{bottom:520.455000px;}
.yc6{bottom:520.995000px;}
.y29{bottom:524.595000px;}
.y94{bottom:539.535000px;}
.y77{bottom:539.895000px;}
.yc5{bottom:540.435000px;}
.y28{bottom:542.235000px;}
.y93{bottom:558.795000px;}
.y76{bottom:559.155000px;}
.y27{bottom:559.695000px;}
.y26{bottom:577.335000px;}
.y92{bottom:578.055000px;}
.y75{bottom:578.595000px;}
.yc4{bottom:579.135000px;}
.y74{bottom:595.155000px;}
.y73{bottom:595.695000px;}
.y25{bottom:597.135000px;}
.y91{bottom:597.495000px;}
.y72{bottom:597.855000px;}
.yc3{bottom:598.395000px;}
.y24{bottom:614.805000px;}
.y71{bottom:616.785000px;}
.yc2{bottom:617.865000px;}
.y23{bottom:632.445000px;}
.y70{bottom:636.225000px;}
.yc1{bottom:637.125000px;}
.y22{bottom:649.905000px;}
.y6f{bottom:655.485000px;}
.yc0{bottom:656.565000px;}
.y3f{bottom:660.705000px;}
.y21{bottom:667.545000px;}
.y6e{bottom:674.925000px;}
.ybf{bottom:675.825000px;}
.y20{bottom:685.185000px;}
.y6d{bottom:694.185000px;}
.ybe{bottom:695.265000px;}
.y1f{bottom:702.825000px;}
.y6c{bottom:713.625000px;}
.ybd{bottom:714.525000px;}
.y1e{bottom:720.285000px;}
.y6b{bottom:732.885000px;}
.ybc{bottom:733.965000px;}
.y1d{bottom:737.925000px;}
.y6a{bottom:752.325000px;}
.ybb{bottom:753.225000px;}
.y1c{bottom:755.565000px;}
.y69{bottom:771.585000px;}
.yba{bottom:772.665000px;}
.y1b{bottom:773.025000px;}
.y1a{bottom:790.665000px;}
.y68{bottom:791.025000px;}
.yb9{bottom:791.925000px;}
.y19{bottom:808.305000px;}
.y67{bottom:810.285000px;}
.yb8{bottom:814.065000px;}
.y18{bottom:825.765000px;}
.y66{bottom:829.725000px;}
.yb7{bottom:836.205000px;}
.y17{bottom:843.405000px;}
.y65{bottom:848.985000px;}
.yb6{bottom:858.525000px;}
.y16{bottom:861.045000px;}
.y64{bottom:868.245000px;}
.y15{bottom:878.550000px;}
.yb5{bottom:880.710000px;}
.y63{bottom:887.730000px;}
.y14{bottom:896.190000px;}
.yb4{bottom:903.030000px;}
.y62{bottom:906.990000px;}
.y13{bottom:913.830000px;}
.yb3{bottom:925.170000px;}
.y61{bottom:926.430000px;}
.y12{bottom:931.470000px;}
.y60{bottom:945.690000px;}
.yb2{bottom:947.490000px;}
.y11{bottom:948.930000px;}
.y5f{bottom:965.130000px;}
.y10{bottom:966.570000px;}
.yb1{bottom:969.810000px;}
.yf{bottom:984.390000px;}
.yb0{bottom:991.950000px;}
.y5e{bottom:1003.830000px;}
.ye{bottom:1008.510000px;}
.yaf{bottom:1014.270000px;}
.y5d{bottom:1023.090000px;}
.yd{bottom:1024.710000px;}
.yae{bottom:1036.410000px;}
.y5c{bottom:1042.530000px;}
.yc{bottom:1043.970000px;}
.yad{bottom:1058.730000px;}
.y5b{bottom:1061.790000px;}
.yb{bottom:1062.510000px;}
.yac{bottom:1078.170000px;}
.y5a{bottom:1081.230000px;}
.ya{bottom:1085.370000px;}
.yab{bottom:1100.310000px;}
.y59{bottom:1100.490000px;}
.y9{bottom:1108.230000px;}
.y58{bottom:1119.930000px;}
.y5{bottom:1133.250000px;}
.y57{bottom:1139.220000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y56{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y55{bottom:1197.540000px;}
.ha{height:30.480469px;}
.h7{height:33.480703px;}
.h3{height:40.843828px;}
.h9{height:50.273438px;}
.h5{height:50.597578px;}
.h2{height:53.736328px;}
.h6{height:56.084062px;}
.hb{height:58.819922px;}
.h4{height:65.837812px;}
.h12{height:65.916562px;}
.h16{height:74.556562px;}
.h11{height:77.436562px;}
.h10{height:78.156562px;}
.hc{height:79.596562px;}
.he{height:81.036562px;}
.h15{height:81.756563px;}
.hd{height:82.476562px;}
.h18{height:83.196562px;}
.h14{height:85.356562px;}
.h19{height:86.076562px;}
.h17{height:87.516563px;}
.hf{height:90.396563px;}
.h13{height:129.276562px;}
.h8{height:318.270000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:209.190000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x9{left:113.076000px;}
.x2{left:116.135987px;}
.x23{left:118.835987px;}
.xa{left:134.994000px;}
.x1d{left:140.075987px;}
.x22{left:144.935987px;}
.x4{left:146.555987px;}
.x20{left:150.509987px;}
.x1e{left:155.549987px;}
.x6{left:158.069987px;}
.x8{left:162.029987px;}
.x21{left:171.929987px;}
.x1c{left:181.649987px;}
.x5{left:204.329987px;}
.x1f{left:216.029987px;}
.x1a{left:295.814987px;}
.x13{left:304.454987px;}
.x19{left:325.154987px;}
.x7{left:335.774987px;}
.x12{left:343.334987px;}
.x18{left:357.734987px;}
.x11{left:363.314987px;}
.x17{left:397.154987px;}
.x10{left:398.594987px;}
.x3{left:446.474987px;}
.xf{left:463.214987px;}
.x1b{left:496.364987px;}
.xe{left:627.944987px;}
.xd{left:668.309987px;}
.x16{left:671.504987px;}
.x15{left:695.309987px;}
.xc{left:697.289987px;}
.x14{left:755.249987px;}
.xb{left:769.829987px;}
@media print{
.v3{vertical-align:-67.306667pt;}
.v14{vertical-align:-46.720000pt;}
.v16{vertical-align:-14.080000pt;}
.va{vertical-align:-12.160000pt;}
.v2{vertical-align:-10.880000pt;}
.v10{vertical-align:-9.600000pt;}
.v11{vertical-align:-7.680000pt;}
.v8{vertical-align:-6.400000pt;}
.v5{vertical-align:-5.120000pt;}
.ve{vertical-align:-3.840000pt;}
.vc{vertical-align:-2.560000pt;}
.v15{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.280000pt;}
.vb{vertical-align:2.560000pt;}
.v4{vertical-align:4.480000pt;}
.v7{vertical-align:6.400000pt;}
.vd{vertical-align:7.680000pt;}
.vf{vertical-align:9.600000pt;}
.v12{vertical-align:10.880000pt;}
.v9{vertical-align:12.160000pt;}
.v1{vertical-align:13.440000pt;}
.v17{vertical-align:17.280000pt;}
.v13{vertical-align:48.640000pt;}
.ls4c{letter-spacing:-0.853333pt;}
.ls42{letter-spacing:-0.704000pt;}
.ls4e{letter-spacing:-0.618667pt;}
.ls46{letter-spacing:-0.549333pt;}
.ls40{letter-spacing:-0.425067pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:-0.214933pt;}
.ls47{letter-spacing:-0.207467pt;}
.ls4a{letter-spacing:-0.202133pt;}
.ls4b{letter-spacing:-0.133333pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls3d{letter-spacing:-0.084267pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.020480pt;}
.ls10{letter-spacing:0.043520pt;}
.ls43{letter-spacing:0.066667pt;}
.ls1c{letter-spacing:0.104960pt;}
.ls41{letter-spacing:0.108800pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.224000pt;}
.ls4d{letter-spacing:0.271360pt;}
.ls49{letter-spacing:0.274133pt;}
.ls29{letter-spacing:0.284160pt;}
.ls27{letter-spacing:0.302080pt;}
.ls15{letter-spacing:0.325120pt;}
.ls35{letter-spacing:0.524800pt;}
.ls39{letter-spacing:0.563200pt;}
.lsc{letter-spacing:0.640000pt;}
.ls38{letter-spacing:0.683520pt;}
.ls33{letter-spacing:0.762880pt;}
.ls31{letter-spacing:0.965120pt;}
.ls2a{letter-spacing:1.203200pt;}
.ls18{letter-spacing:1.205760pt;}
.ls37{letter-spacing:1.226240pt;}
.lsf{letter-spacing:1.323520pt;}
.ls34{letter-spacing:1.384960pt;}
.ls1a{letter-spacing:1.402880pt;}
.ls24{letter-spacing:1.582080pt;}
.lsd{letter-spacing:1.920000pt;}
.ls13{letter-spacing:2.560000pt;}
.ls12{letter-spacing:2.862080pt;}
.ls28{letter-spacing:2.885120pt;}
.ls2d{letter-spacing:2.982400pt;}
.ls32{letter-spacing:3.105280pt;}
.ls36{letter-spacing:3.200000pt;}
.ls23{letter-spacing:3.525120pt;}
.ls17{letter-spacing:3.763200pt;}
.ls2c{letter-spacing:3.765760pt;}
.ls1f{letter-spacing:3.883520pt;}
.ls26{letter-spacing:3.944960pt;}
.ls1d{letter-spacing:3.985920pt;}
.ls2e{letter-spacing:4.262400pt;}
.ls3a{letter-spacing:5.045760pt;}
.ls2f{letter-spacing:5.140480pt;}
.ls3b{letter-spacing:5.445120pt;}
.lse{letter-spacing:6.085120pt;}
.ls2b{letter-spacing:6.440960pt;}
.ls11{letter-spacing:6.725120pt;}
.ls21{letter-spacing:8.343040pt;}
.ls14{letter-spacing:8.363520pt;}
.lsa{letter-spacing:8.504320pt;}
.ls1e{letter-spacing:8.960000pt;}
.ls30{letter-spacing:8.980480pt;}
.ls19{letter-spacing:8.983040pt;}
.lsb{letter-spacing:9.623040pt;}
.ls22{letter-spacing:9.745920pt;}
.ls20{letter-spacing:11.520000pt;}
.ls1b{letter-spacing:11.563520pt;}
.ls45{letter-spacing:14.991360pt;}
.ls48{letter-spacing:21.391360pt;}
.ls3f{letter-spacing:34.831360pt;}
.ls44{letter-spacing:35.471360pt;}
.ls3e{letter-spacing:38.671360pt;}
.ls9{letter-spacing:896.006400pt;}
.ls25{letter-spacing:1727.190187pt;}
.ls3c{letter-spacing:1757.910187pt;}
.wsd{word-spacing:-59.443200pt;}
.wsb{word-spacing:-58.880000pt;}
.wsc{word-spacing:-44.800000pt;}
.ws14{word-spacing:-13.227733pt;}
.ws10{word-spacing:-13.020267pt;}
.ws12{word-spacing:-12.974080pt;}
.ws11{word-spacing:-12.953600pt;}
.ws16{word-spacing:-12.820267pt;}
.ws15{word-spacing:-12.751467pt;}
.ws13{word-spacing:-12.746133pt;}
.wsf{word-spacing:-12.738667pt;}
.ws18{word-spacing:-12.334933pt;}
.ws17{word-spacing:-12.249600pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws6{word-spacing:-11.591467pt;}
.ws2{word-spacing:-10.720000pt;}
.wse{word-spacing:-9.008533pt;}
.ws3{word-spacing:-8.166400pt;}
.wsa{word-spacing:-8.082133pt;}
.ws4{word-spacing:-7.951467pt;}
.ws5{word-spacing:-7.264000pt;}
.ws8{word-spacing:-7.040000pt;}
.ws7{word-spacing:-7.008000pt;}
.ws9{word-spacing:0.000000pt;}
._44{margin-left:-193.517440pt;}
._49{margin-left:-166.020267pt;}
._4a{margin-left:-153.351467pt;}
._4d{margin-left:-151.790720pt;}
._2a{margin-left:-144.793600pt;}
._2d{margin-left:-143.838720pt;}
._4c{margin-left:-137.281280pt;}
._4b{margin-left:-136.377813pt;}
._45{margin-left:-133.750400pt;}
._46{margin-left:-131.580800pt;}
._35{margin-left:-130.282027pt;}
._2f{margin-left:-128.937600pt;}
._2e{margin-left:-127.292160pt;}
._33{margin-left:-126.394880pt;}
._43{margin-left:-124.042880pt;}
._39{margin-left:-122.662400pt;}
._38{margin-left:-120.779520pt;}
._29{margin-left:-117.056000pt;}
._27{margin-left:-115.993600pt;}
._3b{margin-left:-108.910080pt;}
._3a{margin-left:-107.673600pt;}
._37{margin-left:-105.638400pt;}
._36{margin-left:-104.580267pt;}
._2c{margin-left:-103.036160pt;}
._41{margin-left:-92.313600pt;}
._48{margin-left:-76.854827pt;}
._47{margin-left:-74.924373pt;}
._32{margin-left:-71.833600pt;}
._31{margin-left:-70.272640pt;}
._26{margin-left:-68.794880pt;}
._40{margin-left:-63.605760pt;}
._3f{margin-left:-62.233600pt;}
._3e{margin-left:-57.431040pt;}
._30{margin-left:-17.118720pt;}
._28{margin-left:-9.600000pt;}
._25{margin-left:-8.320000pt;}
._34{margin-left:-7.040000pt;}
._2b{margin-left:-6.102400pt;}
._42{margin-left:-5.120000pt;}
._1e{margin-left:-3.932800pt;}
._10{margin-left:-2.656000pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.482667pt;}
._7{width:2.431573pt;}
._6{width:3.628800pt;}
._1a{width:4.596907pt;}
._12{width:5.663787pt;}
._11{width:6.963413pt;}
._f{width:8.286720pt;}
._8{width:9.508480pt;}
._9{width:10.730240pt;}
._22{width:11.834880pt;}
._e{width:13.337813pt;}
._d{width:14.236160pt;}
._19{width:15.404800pt;}
._b{width:16.737493pt;}
._c{width:17.631147pt;}
._1b{width:18.931840pt;}
._51{width:19.856000pt;}
._50{width:20.961280pt;}
._16{width:21.915307pt;}
._15{width:22.841600pt;}
._1f{width:23.796693pt;}
._4e{width:25.082880pt;}
._4f{width:26.064000pt;}
._52{width:27.006720pt;}
._1d{width:28.423893pt;}
._1c{width:29.375360pt;}
._17{width:30.331520pt;}
._23{width:31.534720pt;}
._3c{width:32.720000pt;}
._53{width:34.091520pt;}
._54{width:35.345280pt;}
._18{width:38.599467pt;}
._13{width:39.579093pt;}
._14{width:40.796160pt;}
._20{width:42.330027pt;}
._a{width:43.664640pt;}
._58{width:44.880000pt;}
._57{width:45.799680pt;}
._56{width:53.404160pt;}
._55{width:54.363520pt;}
._0{width:66.666667pt;}
._24{width:67.624107pt;}
._59{width:94.031360pt;}
._3{width:160.960000pt;}
._4{width:174.942080pt;}
._5{width:180.313600pt;}
._3d{width:732.623573pt;}
._21{width:938.673067pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.y54{bottom:-23.200000pt;}
.y53{bottom:-4.800000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:11.840000pt;}
.y51{bottom:21.280000pt;}
.y50{bottom:30.720000pt;}
.y4f{bottom:40.000000pt;}
.y8{bottom:50.240000pt;}
.y4e{bottom:55.680000pt;}
.y7{bottom:62.752000pt;}
.y6{bottom:75.232000pt;}
.yaa{bottom:101.152000pt;}
.y90{bottom:101.792000pt;}
.y4d{bottom:102.720000pt;}
.y4c{bottom:115.200000pt;}
.ya9{bottom:118.432000pt;}
.y8f{bottom:119.072000pt;}
.y3e{bottom:122.592000pt;}
.y4b{bottom:127.840000pt;}
.ya8{bottom:135.546667pt;}
.y8e{bottom:136.186667pt;}
.yd8{bottom:136.506667pt;}
.y3d{bottom:139.866667pt;}
.y4a{bottom:140.320000pt;}
.y49{bottom:152.800000pt;}
.ya7{bottom:152.826667pt;}
.y8d{bottom:153.466667pt;}
.yd7{bottom:153.626667pt;}
.y3c{bottom:156.986667pt;}
.y48{bottom:165.280000pt;}
.ya6{bottom:169.946667pt;}
.y8c{bottom:170.586667pt;}
.yd6{bottom:170.906667pt;}
.y3b{bottom:174.266667pt;}
.y47{bottom:177.760000pt;}
.y8a{bottom:184.986667pt;}
.y88{bottom:185.466667pt;}
.y8b{bottom:185.946667pt;}
.ya5{bottom:187.226667pt;}
.y89{bottom:187.866667pt;}
.yd5{bottom:188.026667pt;}
.y3a{bottom:191.386667pt;}
.y46{bottom:191.400000pt;}
.ya4{bottom:204.346667pt;}
.y87{bottom:204.666667pt;}
.yd4{bottom:205.146667pt;}
.y39{bottom:208.666667pt;}
.y45{bottom:208.680000pt;}
.y44{bottom:221.320000pt;}
.ya3{bottom:221.626667pt;}
.y86{bottom:221.946667pt;}
.yd3{bottom:222.426667pt;}
.y38{bottom:225.786667pt;}
.y43{bottom:233.800000pt;}
.ya2{bottom:238.746667pt;}
.y85{bottom:239.066667pt;}
.yd2{bottom:239.546667pt;}
.y37{bottom:242.906667pt;}
.y42{bottom:246.280000pt;}
.ya1{bottom:255.866667pt;}
.y84{bottom:256.346667pt;}
.yd1{bottom:256.826667pt;}
.y41{bottom:258.760000pt;}
.y36{bottom:260.186667pt;}
.y40{bottom:271.560000pt;}
.ya0{bottom:273.146667pt;}
.y83{bottom:273.466667pt;}
.yd0{bottom:273.946667pt;}
.y35{bottom:277.306667pt;}
.y9f{bottom:290.266667pt;}
.y82{bottom:290.586667pt;}
.ycf{bottom:291.226667pt;}
.y34{bottom:294.266667pt;}
.y9e{bottom:307.586667pt;}
.y81{bottom:307.906667pt;}
.yce{bottom:308.386667pt;}
.y33{bottom:309.986667pt;}
.y9d{bottom:324.706667pt;}
.y80{bottom:325.026667pt;}
.y32{bottom:325.666667pt;}
.y31{bottom:341.186667pt;}
.y9c{bottom:341.986667pt;}
.y7f{bottom:342.306667pt;}
.ycd{bottom:342.786667pt;}
.y30{bottom:356.866667pt;}
.y9b{bottom:359.106667pt;}
.y7e{bottom:359.426667pt;}
.ycc{bottom:360.066667pt;}
.y2f{bottom:372.546667pt;}
.y9a{bottom:376.386667pt;}
.y7d{bottom:376.706667pt;}
.ycb{bottom:377.186667pt;}
.y2e{bottom:388.226667pt;}
.y99{bottom:393.506667pt;}
.y7c{bottom:393.826667pt;}
.yca{bottom:394.466667pt;}
.y2d{bottom:403.746667pt;}
.y98{bottom:410.786667pt;}
.y7b{bottom:411.106667pt;}
.yc9{bottom:411.586667pt;}
.y2c{bottom:419.426667pt;}
.y97{bottom:427.906667pt;}
.y7a{bottom:428.226667pt;}
.yc8{bottom:428.866667pt;}
.y2b{bottom:435.106667pt;}
.y96{bottom:445.186667pt;}
.y79{bottom:445.506667pt;}
.yc7{bottom:445.986667pt;}
.y2a{bottom:450.626667pt;}
.y95{bottom:462.306667pt;}
.y78{bottom:462.626667pt;}
.yc6{bottom:463.106667pt;}
.y29{bottom:466.306667pt;}
.y94{bottom:479.586667pt;}
.y77{bottom:479.906667pt;}
.yc5{bottom:480.386667pt;}
.y28{bottom:481.986667pt;}
.y93{bottom:496.706667pt;}
.y76{bottom:497.026667pt;}
.y27{bottom:497.506667pt;}
.y26{bottom:513.186667pt;}
.y92{bottom:513.826667pt;}
.y75{bottom:514.306667pt;}
.yc4{bottom:514.786667pt;}
.y74{bottom:529.026667pt;}
.y73{bottom:529.506667pt;}
.y25{bottom:530.786667pt;}
.y91{bottom:531.106667pt;}
.y72{bottom:531.426667pt;}
.yc3{bottom:531.906667pt;}
.y24{bottom:546.493333pt;}
.y71{bottom:548.253333pt;}
.yc2{bottom:549.213333pt;}
.y23{bottom:562.173333pt;}
.y70{bottom:565.533333pt;}
.yc1{bottom:566.333333pt;}
.y22{bottom:577.693333pt;}
.y6f{bottom:582.653333pt;}
.yc0{bottom:583.613333pt;}
.y3f{bottom:587.293333pt;}
.y21{bottom:593.373333pt;}
.y6e{bottom:599.933333pt;}
.ybf{bottom:600.733333pt;}
.y20{bottom:609.053333pt;}
.y6d{bottom:617.053333pt;}
.ybe{bottom:618.013333pt;}
.y1f{bottom:624.733333pt;}
.y6c{bottom:634.333333pt;}
.ybd{bottom:635.133333pt;}
.y1e{bottom:640.253333pt;}
.y6b{bottom:651.453333pt;}
.ybc{bottom:652.413333pt;}
.y1d{bottom:655.933333pt;}
.y6a{bottom:668.733333pt;}
.ybb{bottom:669.533333pt;}
.y1c{bottom:671.613333pt;}
.y69{bottom:685.853333pt;}
.yba{bottom:686.813333pt;}
.y1b{bottom:687.133333pt;}
.y1a{bottom:702.813333pt;}
.y68{bottom:703.133333pt;}
.yb9{bottom:703.933333pt;}
.y19{bottom:718.493333pt;}
.y67{bottom:720.253333pt;}
.yb8{bottom:723.613333pt;}
.y18{bottom:734.013333pt;}
.y66{bottom:737.533333pt;}
.yb7{bottom:743.293333pt;}
.y17{bottom:749.693333pt;}
.y65{bottom:754.653333pt;}
.yb6{bottom:763.133333pt;}
.y16{bottom:765.373333pt;}
.y64{bottom:771.773333pt;}
.y15{bottom:780.933333pt;}
.yb5{bottom:782.853333pt;}
.y63{bottom:789.093333pt;}
.y14{bottom:796.613333pt;}
.yb4{bottom:802.693333pt;}
.y62{bottom:806.213333pt;}
.y13{bottom:812.293333pt;}
.yb3{bottom:822.373333pt;}
.y61{bottom:823.493333pt;}
.y12{bottom:827.973333pt;}
.y60{bottom:840.613333pt;}
.yb2{bottom:842.213333pt;}
.y11{bottom:843.493333pt;}
.y5f{bottom:857.893333pt;}
.y10{bottom:859.173333pt;}
.yb1{bottom:862.053333pt;}
.yf{bottom:875.013333pt;}
.yb0{bottom:881.733333pt;}
.y5e{bottom:892.293333pt;}
.ye{bottom:896.453333pt;}
.yaf{bottom:901.573333pt;}
.y5d{bottom:909.413333pt;}
.yd{bottom:910.853333pt;}
.yae{bottom:921.253333pt;}
.y5c{bottom:926.693333pt;}
.yc{bottom:927.973333pt;}
.yad{bottom:941.093333pt;}
.y5b{bottom:943.813333pt;}
.yb{bottom:944.453333pt;}
.yac{bottom:958.373333pt;}
.y5a{bottom:961.093333pt;}
.ya{bottom:964.773333pt;}
.yab{bottom:978.053333pt;}
.y59{bottom:978.213333pt;}
.y9{bottom:985.093333pt;}
.y58{bottom:995.493333pt;}
.y5{bottom:1007.333333pt;}
.y57{bottom:1012.640000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y56{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y55{bottom:1064.480000pt;}
.ha{height:27.093750pt;}
.h7{height:29.760625pt;}
.h3{height:36.305625pt;}
.h9{height:44.687500pt;}
.h5{height:44.975625pt;}
.h2{height:47.765625pt;}
.h6{height:49.852500pt;}
.hb{height:52.284375pt;}
.h4{height:58.522500pt;}
.h12{height:58.592500pt;}
.h16{height:66.272500pt;}
.h11{height:68.832500pt;}
.h10{height:69.472500pt;}
.hc{height:70.752500pt;}
.he{height:72.032500pt;}
.h15{height:72.672500pt;}
.hd{height:73.312500pt;}
.h18{height:73.952500pt;}
.h14{height:75.872500pt;}
.h19{height:76.512500pt;}
.h17{height:77.792500pt;}
.hf{height:80.352500pt;}
.h13{height:114.912500pt;}
.h8{height:282.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:185.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x9{left:100.512000pt;}
.x2{left:103.231988pt;}
.x23{left:105.631988pt;}
.xa{left:119.994667pt;}
.x1d{left:124.511988pt;}
.x22{left:128.831988pt;}
.x4{left:130.271988pt;}
.x20{left:133.786655pt;}
.x1e{left:138.266655pt;}
.x6{left:140.506655pt;}
.x8{left:144.026655pt;}
.x21{left:152.826655pt;}
.x1c{left:161.466655pt;}
.x5{left:181.626655pt;}
.x1f{left:192.026655pt;}
.x1a{left:262.946655pt;}
.x13{left:270.626655pt;}
.x19{left:289.026655pt;}
.x7{left:298.466655pt;}
.x12{left:305.186655pt;}
.x18{left:317.986655pt;}
.x11{left:322.946655pt;}
.x17{left:353.026655pt;}
.x10{left:354.306655pt;}
.x3{left:396.866655pt;}
.xf{left:411.746655pt;}
.x1b{left:441.213322pt;}
.xe{left:558.173322pt;}
.xd{left:594.053322pt;}
.x16{left:596.893322pt;}
.x15{left:618.053322pt;}
.xc{left:619.813322pt;}
.x14{left:671.333322pt;}
.xb{left:684.293322pt;}
}




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