
    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_933b47cb666e60a0da2024c7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_5bd8a67d7f093b790ffb4bd6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.012695;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_ed0eb8cde7f3819b83d51b6e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.981445;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_6356c45a860602b89e55c8f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_9c436b2cc84d133dd99c5886.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.904297;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_aa517bddb3f089bf07dd5cdd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_5240de9a0bf6d54f9bff8c06.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_6c8942f4f2d9eebbd4077f1d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_8630ac335f7e4f85671952c0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944000;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_5336fedcca8f4912bbe9ed97.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.746094;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_72aae33e9b80db89bb5d54e8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_843811f36e971f478803aeeb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b586a7ed3b83c0863f2ac173.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.935547;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_65d0071639273cabb6b7f321.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_87a98666b1918c1006796885.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.192811,-0.159135,0.159134,0.192811,0,0);-ms-transform:matrix(0.192811,-0.159135,0.159134,0.192811,0,0);-webkit-transform:matrix(0.192811,-0.159135,0.159134,0.192811,0,0);}
.m2{transform:matrix(0.209101,-0.137028,0.137115,0.209044,0,0);-ms-transform:matrix(0.209101,-0.137028,0.137115,0.209044,0,0);-webkit-transform:matrix(0.209101,-0.137028,0.137115,0.209044,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-50.733483px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.001919px;}
.ls10{letter-spacing:0.002835px;}
.ls9{letter-spacing:0.020741px;}
.lsa{letter-spacing:0.020745px;}
.lsd{letter-spacing:0.032220px;}
.ls6{letter-spacing:0.032310px;}
.ls0{letter-spacing:0.032355px;}
.ls5{letter-spacing:0.032400px;}
.ls16{letter-spacing:0.052416px;}
.ls11{letter-spacing:0.086490px;}
.ls12{letter-spacing:0.115425px;}
.lsf{letter-spacing:0.157500px;}
.ls8{letter-spacing:78.000356px;}
.ls2{letter-spacing:78.000428px;}
.ls13{letter-spacing:106.500000px;}
.ls15{letter-spacing:107.986129px;}
.lse{letter-spacing:107.986185px;}
.lsb{letter-spacing:108.000354px;}
.ls4{letter-spacing:108.000408px;}
.ls3{letter-spacing:108.000426px;}
.ls7{letter-spacing:143.976564px;}
.lsc{letter-spacing:945.544607px;}
.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;}
}
.ws14{word-spacing:-44.640001px;}
.ws5{word-spacing:-28.476005px;}
.ws2{word-spacing:-28.476001px;}
.ws1c{word-spacing:-26.916561px;}
.ws1a{word-spacing:-26.401335px;}
.ws6{word-spacing:-25.764002px;}
.wsa{word-spacing:-25.296000px;}
.wsc{word-spacing:-24.930001px;}
.ws1{word-spacing:-24.408001px;}
.wsd{word-spacing:-23.808002px;}
.ws16{word-spacing:-23.268000px;}
.ws7{word-spacing:-22.320001px;}
.ws17{word-spacing:-21.696001px;}
.wsf{word-spacing:-21.606002px;}
.ws15{word-spacing:-20.832000px;}
.ws8{word-spacing:-20.340001px;}
.ws18{word-spacing:-19.933199px;}
.ws10{word-spacing:-19.344001px;}
.ws12{word-spacing:-18.984000px;}
.wsb{word-spacing:-18.282001px;}
.ws13{word-spacing:-14.916001px;}
.ws1e{word-spacing:-14.880000px;}
.ws4{word-spacing:-11.634000px;}
.ws1b{word-spacing:-0.119100px;}
.ws19{word-spacing:-0.116820px;}
.ws9{word-spacing:-0.078000px;}
.ws3{word-spacing:-0.042000px;}
.ws0{word-spacing:0.000000px;}
.ws11{word-spacing:86.380170px;}
.wse{word-spacing:86.380184px;}
.ws1d{word-spacing:91.419588px;}
._4{margin-left:-10.800001px;}
._5{margin-left:-9.636001px;}
._b{margin-left:-8.508001px;}
._8{margin-left:-7.380000px;}
._6{margin-left:-5.832000px;}
._2{margin-left:-4.752000px;}
._3{margin-left:-2.970000px;}
._0{margin-left:-1.944000px;}
._1{width:1.728000px;}
._c{width:3.094194px;}
._a{width:4.320000px;}
._13{width:5.520000px;}
._14{width:6.570000px;}
._16{width:8.040000px;}
._11{width:9.060000px;}
._17{width:11.820000px;}
._12{width:13.620000px;}
._f{width:16.167802px;}
._18{width:17.343802px;}
._10{width:21.903802px;}
._d{width:25.215802px;}
._e{width:26.334381px;}
._19{width:27.545620px;}
._7{width:108.022165px;}
._9{width:330.200994px;}
._15{width:2793.180020px;}
.fc12{color:rgb(47,111,167);}
.fc10{color:rgb(37,43,54);}
.fcf{color:rgb(34,0,204);}
.fc11{color:rgb(91,155,213);}
.fce{color:rgb(68,112,167);}
.fc0{color:rgb(0,0,0);}
.fc3{color:rgb(102,102,102);}
.fc13{color:rgb(31,31,31);}
.fc1{color:rgb(89,89,89);}
.fc4{color:rgb(237,125,49);}
.fc5{color:rgb(255,255,255);}
.fcd{color:transparent;}
.fc8{color:rgb(68,84,106);}
.fc2{color:rgb(242,98,36);}
.fcb{color:rgb(204,204,204);}
.fc6{color:rgb(0,151,167);}
.fc7{color:rgb(47,92,160);}
.fc9{color:rgb(255,0,0);}
.fca{color:rgb(5,99,193);}
.fcc{color:rgb(45,44,90);}
.fsb{font-size:42.000000px;}
.fs10{font-size:48.000003px;}
.fs8{font-size:54.000002px;}
.fs12{font-size:60.000000px;}
.fs9{font-size:63.000002px;}
.fs2{font-size:66.000004px;}
.fs3{font-size:72.000002px;}
.fsc{font-size:78.000005px;}
.fs1{font-size:84.000000px;}
.fs18{font-size:88.199994px;}
.fs11{font-size:90.000003px;}
.fs7{font-size:96.000006px;}
.fs13{font-size:102.000000px;}
.fs5{font-size:108.000003px;}
.fsf{font-size:114.000007px;}
.fs19{font-size:116.820067px;}
.fs1a{font-size:119.099825px;}
.fs14{font-size:120.000001px;}
.fsa{font-size:126.000004px;}
.fse{font-size:126.000020px;}
.fs6{font-size:132.000007px;}
.fs16{font-size:162.000005px;}
.fsd{font-size:174.000012px;}
.fs15{font-size:180.000006px;}
.fs4{font-size:198.000006px;}
.fs0{font-size:216.000007px;}
.fs17{font-size:252.000008px;}
.y0{bottom:0.000000px;}
.y4{bottom:15.259369px;}
.y94{bottom:26.141213px;}
.y71{bottom:28.124981px;}
.y27{bottom:40.944537px;}
.yc9{bottom:44.471794px;}
.y13{bottom:45.288212px;}
.y23{bottom:45.424827px;}
.y1f{bottom:46.818106px;}
.ya{bottom:47.246337px;}
.y4f{bottom:48.218578px;}
.ya7{bottom:48.295726px;}
.y80{bottom:50.609873px;}
.yd5{bottom:51.384875px;}
.ya1{bottom:51.734178px;}
.y93{bottom:53.141214px;}
.y2c{bottom:57.634240px;}
.y1e{bottom:59.418101px;}
.y2f{bottom:60.072170px;}
.yf3{bottom:62.122269px;}
.y6b{bottom:63.354808px;}
.y26{bottom:64.344538px;}
.y54{bottom:69.463068px;}
.ybf{bottom:70.294710px;}
.y1d{bottom:72.018098px;}
.yaf{bottom:74.316470px;}
.y12{bottom:74.538212px;}
.yd4{bottom:74.784887px;}
.y4e{bottom:75.218579px;}
.ya6{bottom:75.295727px;}
.y7f{bottom:75.809869px;}
.y2e{bottom:78.072171px;}
.y92{bottom:80.141214px;}
.yf2{bottom:82.822269px;}
.y102{bottom:82.822303px;}
.y68{bottom:83.154808px;}
.y1c{bottom:84.618099px;}
.y25{bottom:87.744538px;}
.y43{bottom:88.859627px;}
.y53{bottom:91.063068px;}
.y28{bottom:93.776892px;}
.y1b{bottom:97.218098px;}
.y7e{bottom:101.009875px;}
.y4d{bottom:102.218580px;}
.ya5{bottom:102.295728px;}
.yf1{bottom:103.522259px;}
.y101{bottom:103.522293px;}
.y11{bottom:105.273209px;}
.y91{bottom:107.141215px;}
.y39{bottom:108.104069px;}
.y1a{bottom:109.818097px;}
.y9{bottom:112.046322px;}
.y60{bottom:118.743534px;}
.y69{bottom:119.509904px;}
.y42{bottom:120.359628px;}
.yd3{bottom:121.584888px;}
.y7d{bottom:126.209869px;}
.y10c{bottom:126.787282px;}
.y14{bottom:128.744165px;}
.y4c{bottom:129.218580px;}
.ya4{bottom:129.670736px;}
.ye1{bottom:133.158412px;}
.y90{bottom:134.516224px;}
.yf0{bottom:139.222268px;}
.y100{bottom:139.222301px;}
.y7a{bottom:139.937003px;}
.y8{bottom:144.446329px;}
.y10{bottom:144.648210px;}
.yd2{bottom:144.984900px;}
.ya0{bottom:146.315831px;}
.y57{bottom:147.337909px;}
.y10b{bottom:147.487283px;}
.y38{bottom:150.884052px;}
.y7c{bottom:151.409868px;}
.y41{bottom:151.859629px;}
.y4b{bottom:156.218581px;}
.yc8{bottom:157.026462px;}
.yef{bottom:159.922257px;}
.yff{bottom:159.922302px;}
.y79{bottom:173.057004px;}
.y9f{bottom:173.315832px;}
.ye0{bottom:173.632909px;}
.ya3{bottom:174.295730px;}
.y98{bottom:174.446277px;}
.y7{bottom:176.846323px;}
.y8f{bottom:179.141218px;}
.yee{bottom:180.622258px;}
.yfe{bottom:180.622303px;}
.y10a{bottom:183.187303px;}
.y4a{bottom:183.218582px;}
.y67{bottom:187.960166px;}
.yd1{bottom:191.784902px;}
.y37{bottom:193.664023px;}
.yc7{bottom:196.146471px;}
.y9e{bottom:200.315833px;}
.y97{bottom:201.446278px;}
.ydf{bottom:201.669710px;}
.y109{bottom:203.887281px;}
.yf5{bottom:204.536801px;}
.y8e{bottom:206.516221px;}
.yf{bottom:206.518330px;}
.y40{bottom:206.984631px;}
.y6{bottom:209.246321px;}
.y78{bottom:212.177001px;}
.y55{bottom:214.412706px;}
.yb6{bottom:214.616001px;}
.yd0{bottom:215.184902px;}
.yed{bottom:216.322266px;}
.yfd{bottom:216.322289px;}
.y5e{bottom:218.546675px;}
.y66{bottom:218.560161px;}
.y36{bottom:224.444001px;}
.y9d{bottom:227.315834px;}
.y96{bottom:228.821287px;}
.yba{bottom:230.824849px;}
.y89{bottom:232.925654px;}
.y70{bottom:234.764741px;}
.yfc{bottom:237.022267px;}
.ybe{bottom:237.781158px;}
.y49{bottom:238.343584px;}
.ycf{bottom:238.584914px;}
.yb5{bottom:239.815995px;}
.y108{bottom:239.902267px;}
.yc6{bottom:241.266487px;}
.yde{bottom:241.706538px;}
.yf4{bottom:243.458742px;}
.y15{bottom:244.918454px;}
.y77{bottom:245.297013px;}
.y65{bottom:249.160157px;}
.yec{bottom:252.022252px;}
.y9c{bottom:254.315835px;}
.yb9{bottom:256.024845px;}
.yfb{bottom:257.722268px;}
.yac{bottom:258.334864px;}
.y88{bottom:259.925654px;}
.ybd{bottom:260.146890px;}
.y107{bottom:261.322268px;}
.y3f{bottom:262.109633px;}
.yb4{bottom:265.015992px;}
.y35{bottom:267.224007px;}
.y61{bottom:269.257334px;}
.ydd{bottom:269.743361px;}
.y6f{bottom:270.764742px;}
.yeb{bottom:272.722242px;}
.y95{bottom:273.821284px;}
.y76{bottom:278.417014px;}
.y64{bottom:279.760154px;}
.yb8{bottom:281.224835px;}
.y9b{bottom:281.315836px;}
.y56{bottom:281.487503px;}
.y106{bottom:282.022257px;}
.yab{bottom:283.084865px;}
.ybc{bottom:285.346880px;}
.yce{bottom:285.384905px;}
.y5d{bottom:285.621517px;}
.yc5{bottom:286.386492px;}
.y87{bottom:286.925655px;}
.yb3{bottom:290.215981px;}
.yfa{bottom:293.422254px;}
.y48{bottom:293.468586px;}
.y3e{bottom:293.609634px;}
.ydc{bottom:297.780173px;}
.y3{bottom:304.409873px;}
.y6e{bottom:306.764743px;}
.yaa{bottom:307.834865px;}
.yea{bottom:308.422228px;}
.yb7{bottom:308.584835px;}
.y9a{bottom:308.690844px;}
.ycd{bottom:308.784905px;}
.y34{bottom:310.004023px;}
.y2b{bottom:310.206197px;}
.y75{bottom:311.537016px;}
.ybb{bottom:312.706881px;}
.y86{bottom:313.925656px;}
.yb2{bottom:317.575982px;}
.y105{bottom:317.722243px;}
.y5f{bottom:320.573254px;}
.y47{bottom:324.968587px;}
.y3d{bottom:325.109635px;}
.ye9{bottom:329.122229px;}
.yf9{bottom:329.122240px;}
.yc4{bottom:331.506497px;}
.ya9{bottom:332.584868px;}
.ydb{bottom:337.816978px;}
.y85{bottom:340.925657px;}
.y58{bottom:348.562323px;}
.ye8{bottom:349.822218px;}
.yf8{bottom:349.822229px;}
.y74{bottom:350.657013px;}
.y5c{bottom:352.696303px;}
.y33{bottom:352.784028px;}
.y99{bottom:353.690841px;}
.y6d{bottom:354.044748px;}
.y46{bottom:356.468588px;}
.y3c{bottom:356.609636px;}
.y104{bottom:359.122233px;}
.y8d{bottom:362.548691px;}
.y18{bottom:363.868037px;}
.y16{bottom:367.249653px;}
.y84{bottom:367.925658px;}
.ycc{bottom:374.675151px;}
.yc3{bottom:376.626491px;}
.yda{bottom:377.853789px;}
.y52{bottom:378.585449px;}
.y103{bottom:379.822223px;}
.ye7{bottom:385.522204px;}
.yf7{bottom:385.522227px;}
.y45{bottom:387.968589px;}
.y2a{bottom:388.002683px;}
.y3b{bottom:388.109637px;}
.y8c{bottom:389.548692px;}
.y73{bottom:389.777017px;}
.y83{bottom:394.925659px;}
.y32{bottom:395.564026px;}
.y19{bottom:403.062395px;}
.yd9{bottom:405.890607px;}
.ye6{bottom:406.222200px;}
.ycb{bottom:407.843150px;}
.y2{bottom:408.578506px;}
.y59{bottom:415.637120px;}
.y8b{bottom:416.923700px;}
.y5b{bottom:419.771100px;}
.yf6{bottom:421.222213px;}
.yc2{bottom:421.746492px;}
.y82{bottom:422.300667px;}
.y72{bottom:422.897012px;}
.y51{bottom:425.565455px;}
.y31{bottom:426.344029px;}
.y22{bottom:435.144561px;}
.ye{bottom:435.156850px;}
.y29{bottom:439.752685px;}
.ye5{bottom:441.922202px;}
.y44{bottom:443.093592px;}
.y3a{bottom:443.609640px;}
.yd8{bottom:445.927427px;}
.yc1{bottom:454.866486px;}
.yae{bottom:458.480345px;}
.yca{bottom:458.691649px;}
.y21{bottom:459.624564px;}
.y8a{bottom:461.923697px;}
.ye4{bottom:462.622203px;}
.yd{bottom:464.406847px;}
.y81{bottom:467.300664px;}
.y30{bottom:469.124029px;}
.y50{bottom:472.545448px;}
.y1{bottom:473.378499px;}
.yd7{bottom:473.964244px;}
.yb1{bottom:478.330041px;}
.y5a{bottom:482.714876px;}
.y6a{bottom:484.488706px;}
.y6c{bottom:487.216508px;}
.y20{bottom:488.424562px;}
.ye3{bottom:490.582200px;}
.yc{bottom:495.141848px;}
.yad{bottom:496.280345px;}
.y62{bottom:516.335078px;}
.y5{bottom:521.629401px;}
.ya2{bottom:522.482662px;}
.yc0{bottom:522.932526px;}
.yb0{bottom:526.930039px;}
.y17{bottom:528.150304px;}
.y7b{bottom:529.930510px;}
.ya8{bottom:533.818819px;}
.y24{bottom:534.196513px;}
.yb{bottom:535.598891px;}
.ye2{bottom:541.688692px;}
.y2d{bottom:543.846118px;}
.yd6{bottom:548.877352px;}
.y63{bottom:561.154014px;}
.h10{height:30.597656px;}
.h11{height:31.332000px;}
.h32{height:34.945315px;}
.h19{height:34.968752px;}
.hb{height:39.339845px;}
.h1b{height:43.710938px;}
.h3c{height:45.896486px;}
.h30{height:47.373049px;}
.h3b{height:47.402344px;}
.h26{height:48.082034px;}
.h3a{height:48.134766px;}
.hc{height:50.541506px;}
.h3{height:51.679689px;}
.h27{height:52.142581px;}
.h21{height:52.277345px;}
.h2b{height:56.786137px;}
.h13{height:56.824223px;}
.h39{height:57.761721px;}
.h24{height:57.876004px;}
.h22{height:60.292969px;}
.h23{height:60.990234px;}
.h2a{height:61.154297px;}
.he{height:61.195312px;}
.h2c{height:61.623051px;}
.h15{height:62.575200px;}
.h36{height:63.307613px;}
.h1f{height:64.599611px;}
.h1d{height:65.346682px;}
.h1e{height:65.566408px;}
.h2{height:67.388672px;}
.ha{height:68.906254px;}
.h34{height:70.125004px;}
.h1a{height:72.202151px;}
.h8{height:73.828127px;}
.h12{height:77.015630px;}
.h5{height:78.416018px;}
.h6{height:78.626956px;}
.h7{height:78.679690px;}
.h18{height:81.826177px;}
.h25{height:81.829102px;}
.h29{height:82.031251px;}
.h17{height:82.772466px;}
.h1c{height:83.273442px;}
.h37{height:83.850341px;}
.h38{height:85.486691px;}
.hf{height:86.642581px;}
.h28{height:87.128907px;}
.h9{height:90.234380px;}
.h2f{height:90.439456px;}
.hd{height:91.485354px;}
.h16{height:91.485366px;}
.h31{height:96.269532px;}
.h20{height:124.892586px;}
.h33{height:129.963871px;}
.h14{height:139.590830px;}
.h4{height:142.119145px;}
.h2e{height:144.404301px;}
.h2d{height:158.844732px;}
.h1{height:173.285162px;}
.h35{height:180.878912px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x3b{left:7.875000px;}
.x21{left:10.125000px;}
.x11{left:15.321851px;}
.x10{left:17.571851px;}
.x2d{left:20.226379px;}
.x22{left:22.779022px;}
.x58{left:23.929134px;}
.x1b{left:26.695866px;}
.x5{left:32.251564px;}
.x16{left:34.370081px;}
.x59{left:35.734253px;}
.x6{left:36.944846px;}
.x1e{left:41.562491px;}
.x52{left:44.125986px;}
.x46{left:47.022639px;}
.x26{left:49.842521px;}
.x3a{left:54.033218px;}
.xd{left:55.469083px;}
.x27{left:57.252433px;}
.x47{left:62.248094px;}
.x3c{left:65.373280px;}
.x39{left:66.682087px;}
.x1{left:71.423733px;}
.x4f{left:72.758860px;}
.x12{left:74.272359px;}
.x7{left:86.252954px;}
.x2{left:88.720612px;}
.x28{left:90.342523px;}
.x55{left:93.603828px;}
.x54{left:98.125987px;}
.x5a{left:107.677724px;}
.x57{left:120.531846px;}
.x1a{left:124.839573px;}
.x23{left:126.965547px;}
.x24{left:134.471406px;}
.x56{left:140.723403px;}
.x5b{left:143.734256px;}
.x1f{left:150.568570px;}
.x53{left:152.125989px;}
.x3d{left:173.242656px;}
.xc{left:177.815579px;}
.x4a{left:189.268172px;}
.x25{left:198.965549px;}
.x3{left:203.433070px;}
.x48{left:249.149933px;}
.x49{left:264.375388px;}
.x4{left:269.322013px;}
.x3f{left:321.437002px;}
.x14{left:324.699805px;}
.x2e{left:417.931270px;}
.x30{left:421.049533px;}
.x50{left:439.573818px;}
.x4e{left:449.306114px;}
.x15{left:450.992152px;}
.x18{left:457.123548px;}
.x2f{left:482.581264px;}
.x19{left:492.386810px;}
.x42{left:508.266759px;}
.x43{left:523.492213px;}
.x44{left:538.024607px;}
.x17{left:550.124433px;}
.x45{left:553.250062px;}
.x8{left:575.158496px;}
.x9{left:585.850390px;}
.x3e{left:591.280556px;}
.xb{left:629.158498px;}
.xa{left:639.850397px;}
.x4d{left:700.127955px;}
.x1c{left:706.603365px;}
.x4b{left:710.335598px;}
.x32{left:725.515786px;}
.x1d{left:728.215825px;}
.x33{left:734.288423px;}
.x31{left:735.292374px;}
.x37{left:747.664449px;}
.x29{left:761.952737px;}
.x38{left:767.279556px;}
.x2a{left:769.362649px;}
.x40{left:772.647662px;}
.x2b{left:775.362650px;}
.x13{left:779.867125px;}
.xf{left:781.787799px;}
.x41{left:787.873117px;}
.x2c{left:815.952739px;}
.x4c{left:829.760033px;}
.x5c{left:854.235252px;}
.x5d{left:862.092523px;}
.xe{left:870.043602px;}
.x36{left:898.399660px;}
.x34{left:903.803148px;}
.x35{left:907.399660px;}
.x51{left:946.169322px;}
.x20{left:1040.050946px;}
@media print{
.v1{vertical-align:-45.096429pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.001706pt;}
.ls10{letter-spacing:0.002520pt;}
.ls9{letter-spacing:0.018436pt;}
.lsa{letter-spacing:0.018440pt;}
.lsd{letter-spacing:0.028640pt;}
.ls6{letter-spacing:0.028720pt;}
.ls0{letter-spacing:0.028760pt;}
.ls5{letter-spacing:0.028800pt;}
.ls16{letter-spacing:0.046592pt;}
.ls11{letter-spacing:0.076880pt;}
.ls12{letter-spacing:0.102600pt;}
.lsf{letter-spacing:0.140000pt;}
.ls8{letter-spacing:69.333650pt;}
.ls2{letter-spacing:69.333714pt;}
.ls13{letter-spacing:94.666667pt;}
.ls15{letter-spacing:95.987671pt;}
.lse{letter-spacing:95.987720pt;}
.lsb{letter-spacing:96.000315pt;}
.ls4{letter-spacing:96.000363pt;}
.ls3{letter-spacing:96.000379pt;}
.ls7{letter-spacing:127.979168pt;}
.lsc{letter-spacing:840.484095pt;}
.ws14{word-spacing:-39.680001pt;}
.ws5{word-spacing:-25.312004pt;}
.ws2{word-spacing:-25.312001pt;}
.ws1c{word-spacing:-23.925832pt;}
.ws1a{word-spacing:-23.467853pt;}
.ws6{word-spacing:-22.901335pt;}
.wsa{word-spacing:-22.485333pt;}
.wsc{word-spacing:-22.160001pt;}
.ws1{word-spacing:-21.696001pt;}
.wsd{word-spacing:-21.162668pt;}
.ws16{word-spacing:-20.682667pt;}
.ws7{word-spacing:-19.840001pt;}
.ws17{word-spacing:-19.285335pt;}
.wsf{word-spacing:-19.205335pt;}
.ws15{word-spacing:-18.517333pt;}
.ws8{word-spacing:-18.080001pt;}
.ws18{word-spacing:-17.718399pt;}
.ws10{word-spacing:-17.194668pt;}
.ws12{word-spacing:-16.874667pt;}
.wsb{word-spacing:-16.250668pt;}
.ws13{word-spacing:-13.258667pt;}
.ws1e{word-spacing:-13.226667pt;}
.ws4{word-spacing:-10.341333pt;}
.ws1b{word-spacing:-0.105867pt;}
.ws19{word-spacing:-0.103840pt;}
.ws9{word-spacing:-0.069333pt;}
.ws3{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.ws11{word-spacing:76.782373pt;}
.wse{word-spacing:76.782385pt;}
.ws1d{word-spacing:81.261856pt;}
._4{margin-left:-9.600001pt;}
._5{margin-left:-8.565334pt;}
._b{margin-left:-7.562667pt;}
._8{margin-left:-6.560000pt;}
._6{margin-left:-5.184000pt;}
._2{margin-left:-4.224000pt;}
._3{margin-left:-2.640000pt;}
._0{margin-left:-1.728000pt;}
._1{width:1.536000pt;}
._c{width:2.750395pt;}
._a{width:3.840000pt;}
._13{width:4.906667pt;}
._14{width:5.840000pt;}
._16{width:7.146667pt;}
._11{width:8.053333pt;}
._17{width:10.506667pt;}
._12{width:12.106667pt;}
._f{width:14.371379pt;}
._18{width:15.416713pt;}
._10{width:19.470046pt;}
._d{width:22.414046pt;}
._e{width:23.408338pt;}
._19{width:24.484995pt;}
._7{width:96.019702pt;}
._9{width:293.511995pt;}
._15{width:2482.826684pt;}
.fsb{font-size:37.333333pt;}
.fs10{font-size:42.666669pt;}
.fs8{font-size:48.000002pt;}
.fs12{font-size:53.333334pt;}
.fs9{font-size:56.000002pt;}
.fs2{font-size:58.666670pt;}
.fs3{font-size:64.000002pt;}
.fsc{font-size:69.333338pt;}
.fs1{font-size:74.666666pt;}
.fs18{font-size:78.399995pt;}
.fs11{font-size:80.000003pt;}
.fs7{font-size:85.333339pt;}
.fs13{font-size:90.666667pt;}
.fs5{font-size:96.000003pt;}
.fsf{font-size:101.333339pt;}
.fs19{font-size:103.840059pt;}
.fs1a{font-size:105.866511pt;}
.fs14{font-size:106.666667pt;}
.fsa{font-size:112.000004pt;}
.fse{font-size:112.000018pt;}
.fs6{font-size:117.333340pt;}
.fs16{font-size:144.000005pt;}
.fsd{font-size:154.666677pt;}
.fs15{font-size:160.000005pt;}
.fs4{font-size:176.000006pt;}
.fs0{font-size:192.000006pt;}
.fs17{font-size:224.000007pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:13.563883pt;}
.y94{bottom:23.236633pt;}
.y71{bottom:24.999984pt;}
.y27{bottom:36.395144pt;}
.yc9{bottom:39.530484pt;}
.y13{bottom:40.256188pt;}
.y23{bottom:40.377624pt;}
.y1f{bottom:41.616094pt;}
.ya{bottom:41.996744pt;}
.y4f{bottom:42.860958pt;}
.ya7{bottom:42.929534pt;}
.y80{bottom:44.986554pt;}
.yd5{bottom:45.675444pt;}
.ya1{bottom:45.985936pt;}
.y93{bottom:47.236634pt;}
.y2c{bottom:51.230435pt;}
.y1e{bottom:52.816089pt;}
.y2f{bottom:53.397484pt;}
.yf3{bottom:55.219794pt;}
.y6b{bottom:56.315385pt;}
.y26{bottom:57.195145pt;}
.y54{bottom:61.744950pt;}
.ybf{bottom:62.484187pt;}
.y1d{bottom:64.016087pt;}
.yaf{bottom:66.059085pt;}
.y12{bottom:66.256189pt;}
.yd4{bottom:66.475455pt;}
.y4e{bottom:66.860959pt;}
.ya6{bottom:66.929535pt;}
.y7f{bottom:67.386550pt;}
.y2e{bottom:69.397485pt;}
.y92{bottom:71.236635pt;}
.yf2{bottom:73.619795pt;}
.y102{bottom:73.619825pt;}
.y68{bottom:73.915385pt;}
.y1c{bottom:75.216088pt;}
.y25{bottom:77.995145pt;}
.y43{bottom:78.986335pt;}
.y53{bottom:80.944949pt;}
.y28{bottom:83.357237pt;}
.y1b{bottom:86.416087pt;}
.y7e{bottom:89.786556pt;}
.y4d{bottom:90.860960pt;}
.ya5{bottom:90.929536pt;}
.yf1{bottom:92.019786pt;}
.y101{bottom:92.019816pt;}
.y11{bottom:93.576186pt;}
.y91{bottom:95.236636pt;}
.y39{bottom:96.092506pt;}
.y1a{bottom:97.616086pt;}
.y9{bottom:99.596731pt;}
.y60{bottom:105.549808pt;}
.y69{bottom:106.231026pt;}
.y42{bottom:106.986336pt;}
.yd3{bottom:108.075456pt;}
.y7d{bottom:112.186550pt;}
.y10c{bottom:112.699806pt;}
.y14{bottom:114.439257pt;}
.y4c{bottom:114.860960pt;}
.ya4{bottom:115.262876pt;}
.ye1{bottom:118.363033pt;}
.y90{bottom:119.569977pt;}
.yf0{bottom:123.753127pt;}
.y100{bottom:123.753157pt;}
.y7a{bottom:124.388447pt;}
.y8{bottom:128.396737pt;}
.y10{bottom:128.576187pt;}
.yd2{bottom:128.875467pt;}
.ya0{bottom:130.058517pt;}
.y57{bottom:130.967030pt;}
.y10b{bottom:131.099807pt;}
.y38{bottom:134.119157pt;}
.y7c{bottom:134.586549pt;}
.y41{bottom:134.986337pt;}
.y4b{bottom:138.860961pt;}
.yc8{bottom:139.579077pt;}
.yef{bottom:142.153117pt;}
.yff{bottom:142.153157pt;}
.y79{bottom:153.828448pt;}
.y9f{bottom:154.058518pt;}
.ye0{bottom:154.340364pt;}
.ya3{bottom:154.929538pt;}
.y98{bottom:155.063358pt;}
.y7{bottom:157.196732pt;}
.y8f{bottom:159.236638pt;}
.yee{bottom:160.553118pt;}
.yfe{bottom:160.553158pt;}
.y10a{bottom:162.833158pt;}
.y4a{bottom:162.860962pt;}
.y67{bottom:167.075703pt;}
.yd1{bottom:170.475468pt;}
.y37{bottom:172.145798pt;}
.yc7{bottom:174.352418pt;}
.y9e{bottom:178.058518pt;}
.y97{bottom:179.063358pt;}
.ydf{bottom:179.261964pt;}
.y109{bottom:181.233139pt;}
.yf5{bottom:181.810490pt;}
.y8e{bottom:183.569975pt;}
.yf{bottom:183.571849pt;}
.y40{bottom:183.986339pt;}
.y6{bottom:185.996730pt;}
.y78{bottom:188.601779pt;}
.y55{bottom:190.589072pt;}
.yb6{bottom:190.769779pt;}
.yd0{bottom:191.275469pt;}
.yed{bottom:192.286459pt;}
.yfd{bottom:192.286479pt;}
.y5e{bottom:194.263711pt;}
.y66{bottom:194.275699pt;}
.y36{bottom:199.505779pt;}
.y9d{bottom:202.058519pt;}
.y96{bottom:203.396699pt;}
.yba{bottom:205.177643pt;}
.y89{bottom:207.045025pt;}
.y70{bottom:208.679769pt;}
.yfc{bottom:210.686459pt;}
.ybe{bottom:211.361029pt;}
.y49{bottom:211.860963pt;}
.ycf{bottom:212.075480pt;}
.yb5{bottom:213.169774pt;}
.y108{bottom:213.246460pt;}
.yc6{bottom:214.459100pt;}
.yde{bottom:214.850256pt;}
.yf4{bottom:216.407771pt;}
.y15{bottom:217.705293pt;}
.y77{bottom:218.041790pt;}
.y65{bottom:221.475695pt;}
.yec{bottom:224.019780pt;}
.y9c{bottom:226.058520pt;}
.yb9{bottom:227.577640pt;}
.yfb{bottom:229.086460pt;}
.yac{bottom:229.630990pt;}
.y88{bottom:231.045026pt;}
.ybd{bottom:231.241680pt;}
.y107{bottom:232.286460pt;}
.y3f{bottom:232.986340pt;}
.yb4{bottom:235.569770pt;}
.y35{bottom:237.532450pt;}
.y61{bottom:239.339852pt;}
.ydd{bottom:239.771876pt;}
.y6f{bottom:240.679770pt;}
.yeb{bottom:242.419770pt;}
.y95{bottom:243.396697pt;}
.y76{bottom:247.481791pt;}
.y64{bottom:248.675693pt;}
.yb8{bottom:249.977631pt;}
.y9b{bottom:250.058521pt;}
.y56{bottom:250.211114pt;}
.y106{bottom:250.686451pt;}
.yab{bottom:251.630991pt;}
.ybc{bottom:253.641671pt;}
.yce{bottom:253.675471pt;}
.y5d{bottom:253.885793pt;}
.yc5{bottom:254.565771pt;}
.y87{bottom:255.045027pt;}
.yb3{bottom:257.969761pt;}
.yfa{bottom:260.819781pt;}
.y48{bottom:260.860965pt;}
.y3e{bottom:260.986341pt;}
.ydc{bottom:264.693487pt;}
.y3{bottom:270.586553pt;}
.y6e{bottom:272.679771pt;}
.yaa{bottom:273.630991pt;}
.yea{bottom:274.153091pt;}
.yb7{bottom:274.297631pt;}
.y9a{bottom:274.391862pt;}
.ycd{bottom:274.475472pt;}
.y34{bottom:275.559132pt;}
.y2b{bottom:275.738842pt;}
.y75{bottom:276.921792pt;}
.ybb{bottom:277.961672pt;}
.y86{bottom:279.045028pt;}
.yb2{bottom:282.289762pt;}
.y105{bottom:282.419772pt;}
.y5f{bottom:284.954004pt;}
.y47{bottom:288.860966pt;}
.y3d{bottom:288.986342pt;}
.ye9{bottom:292.553092pt;}
.yf9{bottom:292.553102pt;}
.yc4{bottom:294.672442pt;}
.ya9{bottom:295.630994pt;}
.ydb{bottom:300.281758pt;}
.y85{bottom:303.045028pt;}
.y58{bottom:309.833176pt;}
.ye8{bottom:310.953083pt;}
.yf8{bottom:310.953093pt;}
.y74{bottom:311.695123pt;}
.y5c{bottom:313.507825pt;}
.y33{bottom:313.585803pt;}
.y99{bottom:314.391859pt;}
.y6d{bottom:314.706443pt;}
.y46{bottom:316.860967pt;}
.y3c{bottom:316.986343pt;}
.y104{bottom:319.219763pt;}
.y8d{bottom:322.265503pt;}
.y18{bottom:323.438255pt;}
.y16{bottom:326.444136pt;}
.y84{bottom:327.045029pt;}
.ycc{bottom:333.044578pt;}
.yc3{bottom:334.779103pt;}
.yda{bottom:335.870034pt;}
.y52{bottom:336.520399pt;}
.y103{bottom:337.619754pt;}
.ye7{bottom:342.686404pt;}
.yf7{bottom:342.686424pt;}
.y45{bottom:344.860968pt;}
.y2a{bottom:344.891274pt;}
.y3b{bottom:344.986344pt;}
.y8c{bottom:346.265504pt;}
.y73{bottom:346.468460pt;}
.y83{bottom:351.045030pt;}
.y32{bottom:351.612468pt;}
.y19{bottom:358.277684pt;}
.yd9{bottom:360.791650pt;}
.ye6{bottom:361.086400pt;}
.ycb{bottom:362.527244pt;}
.y2{bottom:363.180894pt;}
.y59{bottom:369.455218pt;}
.y8b{bottom:370.598845pt;}
.y5b{bottom:373.129867pt;}
.yf6{bottom:374.419745pt;}
.yc2{bottom:374.885771pt;}
.y82{bottom:375.378371pt;}
.y72{bottom:375.908455pt;}
.y51{bottom:378.280405pt;}
.y31{bottom:378.972470pt;}
.y22{bottom:386.795165pt;}
.ye{bottom:386.806089pt;}
.y29{bottom:390.891275pt;}
.ye5{bottom:392.819735pt;}
.y44{bottom:393.860970pt;}
.y3a{bottom:394.319680pt;}
.yd8{bottom:396.379935pt;}
.yc1{bottom:404.325766pt;}
.yae{bottom:407.538085pt;}
.yca{bottom:407.725910pt;}
.y21{bottom:408.555168pt;}
.y8a{bottom:410.598842pt;}
.ye4{bottom:411.219736pt;}
.yd{bottom:412.806086pt;}
.y81{bottom:415.378368pt;}
.y30{bottom:416.999137pt;}
.y50{bottom:420.040398pt;}
.y1{bottom:420.780888pt;}
.yd7{bottom:421.301550pt;}
.yb1{bottom:425.182258pt;}
.y5a{bottom:429.079889pt;}
.y6a{bottom:430.656628pt;}
.y6c{bottom:433.081341pt;}
.y20{bottom:434.155167pt;}
.ye3{bottom:436.073067pt;}
.yc{bottom:440.126087pt;}
.yad{bottom:441.138085pt;}
.y62{bottom:458.964513pt;}
.y5{bottom:463.670579pt;}
.ya2{bottom:464.429033pt;}
.yc0{bottom:464.828912pt;}
.yb0{bottom:468.382257pt;}
.y17{bottom:469.466937pt;}
.y7b{bottom:471.049342pt;}
.ya8{bottom:474.505617pt;}
.y24{bottom:474.841345pt;}
.yb{bottom:476.087903pt;}
.ye2{bottom:481.501059pt;}
.y2d{bottom:483.418771pt;}
.yd6{bottom:487.890979pt;}
.y63{bottom:498.803568pt;}
.h10{height:27.197917pt;}
.h11{height:27.850667pt;}
.h32{height:31.062502pt;}
.h19{height:31.083335pt;}
.hb{height:34.968751pt;}
.h1b{height:38.854167pt;}
.h3c{height:40.796876pt;}
.h30{height:42.109377pt;}
.h3b{height:42.135417pt;}
.h26{height:42.739586pt;}
.h3a{height:42.786459pt;}
.hc{height:44.925783pt;}
.h3{height:45.937501pt;}
.h27{height:46.348961pt;}
.h21{height:46.468751pt;}
.h2b{height:50.476566pt;}
.h13{height:50.510420pt;}
.h39{height:51.343752pt;}
.h24{height:51.445337pt;}
.h22{height:53.593750pt;}
.h23{height:54.213541pt;}
.h2a{height:54.359375pt;}
.he{height:54.395833pt;}
.h2c{height:54.776046pt;}
.h15{height:55.622400pt;}
.h36{height:56.273434pt;}
.h1f{height:57.421877pt;}
.h1d{height:58.085939pt;}
.h1e{height:58.281252pt;}
.h2{height:59.901041pt;}
.ha{height:61.250004pt;}
.h34{height:62.333337pt;}
.h1a{height:64.179690pt;}
.h8{height:65.625002pt;}
.h12{height:68.458338pt;}
.h5{height:69.703127pt;}
.h6{height:69.890627pt;}
.h7{height:69.937502pt;}
.h18{height:72.734379pt;}
.h25{height:72.736979pt;}
.h29{height:72.916667pt;}
.h17{height:73.575525pt;}
.h1c{height:74.020838pt;}
.h37{height:74.533636pt;}
.h38{height:75.988170pt;}
.hf{height:77.015627pt;}
.h28{height:77.447917pt;}
.h9{height:80.208338pt;}
.h2f{height:80.390628pt;}
.hd{height:81.320315pt;}
.h16{height:81.320326pt;}
.h31{height:85.572917pt;}
.h20{height:111.015632pt;}
.h33{height:115.523441pt;}
.h14{height:124.080737pt;}
.h4{height:126.328129pt;}
.h2e{height:128.359379pt;}
.h2d{height:141.195317pt;}
.h1{height:154.031255pt;}
.h35{height:160.781255pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:7.000000pt;}
.x21{left:9.000000pt;}
.x11{left:13.619423pt;}
.x10{left:15.619423pt;}
.x2d{left:17.979004pt;}
.x22{left:20.248020pt;}
.x58{left:21.270342pt;}
.x1b{left:23.729659pt;}
.x5{left:28.668057pt;}
.x16{left:30.551183pt;}
.x59{left:31.763780pt;}
.x6{left:32.839863pt;}
.x1e{left:36.944436pt;}
.x52{left:39.223098pt;}
.x46{left:41.797901pt;}
.x26{left:44.304463pt;}
.x3a{left:48.029528pt;}
.xd{left:49.305852pt;}
.x27{left:50.891052pt;}
.x47{left:55.331639pt;}
.x3c{left:58.109582pt;}
.x39{left:59.272966pt;}
.x1{left:63.487763pt;}
.x4f{left:64.674542pt;}
.x12{left:66.019875pt;}
.x7{left:76.669292pt;}
.x2{left:78.862767pt;}
.x28{left:80.304465pt;}
.x55{left:83.203403pt;}
.x54{left:87.223100pt;}
.x5a{left:95.713532pt;}
.x57{left:107.139418pt;}
.x1a{left:110.968510pt;}
.x23{left:112.858264pt;}
.x24{left:119.530139pt;}
.x56{left:125.087469pt;}
.x5b{left:127.763783pt;}
.x1f{left:133.838729pt;}
.x53{left:135.223101pt;}
.x3d{left:153.993472pt;}
.xc{left:158.058292pt;}
.x4a{left:168.238375pt;}
.x25{left:176.858266pt;}
.x3{left:180.829396pt;}
.x48{left:221.466607pt;}
.x49{left:235.000345pt;}
.x4{left:239.397345pt;}
.x3f{left:285.721779pt;}
.x14{left:288.622049pt;}
.x2e{left:371.494462pt;}
.x30{left:374.266252pt;}
.x50{left:390.732283pt;}
.x4e{left:399.383213pt;}
.x15{left:400.881913pt;}
.x18{left:406.332043pt;}
.x2f{left:428.961124pt;}
.x19{left:437.677164pt;}
.x42{left:451.792674pt;}
.x43{left:465.326412pt;}
.x44{left:478.244095pt;}
.x17{left:488.999496pt;}
.x45{left:491.777833pt;}
.x8{left:511.251996pt;}
.x9{left:520.755903pt;}
.x3e{left:525.582717pt;}
.xb{left:559.251998pt;}
.xa{left:568.755908pt;}
.x4d{left:622.335960pt;}
.x1c{left:628.091880pt;}
.x4b{left:631.409420pt;}
.x32{left:644.902921pt;}
.x1d{left:647.302956pt;}
.x33{left:652.700821pt;}
.x31{left:653.593221pt;}
.x37{left:664.590621pt;}
.x29{left:677.291322pt;}
.x38{left:682.026272pt;}
.x2a{left:683.877910pt;}
.x40{left:686.797922pt;}
.x2b{left:689.211244pt;}
.x13{left:693.215222pt;}
.xf{left:694.922488pt;}
.x41{left:700.331659pt;}
.x2c{left:725.291323pt;}
.x4c{left:737.564474pt;}
.x5c{left:759.320224pt;}
.x5d{left:766.304465pt;}
.xe{left:773.372091pt;}
.x36{left:798.577476pt;}
.x34{left:803.380576pt;}
.x35{left:806.577476pt;}
.x51{left:841.039397pt;}
.x20{left:924.489730pt;}
}




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