
    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_df9d7a1a13b5808aa89b755e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d5054476e80fed8115be4946.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_335f06b42d2979db948cbf78.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_183c32c643d3758f2e2d1753.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_5071c93095aa2758b8f1b193.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_b293accf3f3ced9306d5fd9c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_affa14fc380a52d6ffa141e6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944336;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_01ebf688041d924194cccf66.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_24bb8927090104de26ce5702.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_787349ce144a7e9e016b298e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.946777;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_628e8c30c857053c941ec1b7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.946777;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_7961c05e475491aef5450235.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c7428155857f31c289c3df27.woff2')format("woff");}.fff{font-family:fff;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_0a5cfb378e93d85d0df7fd7a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_927db5dff919b6dd4dd19b28.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_dc1352e352c835ef2eef4a59.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.960449;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a34045c98804f3d165f8a70f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.921387;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:ff14;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff16{font-family:ff16;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;}
.m2{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);}
.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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls10{letter-spacing:-4.680000px;}
.ls14{letter-spacing:-2.520000px;}
.lse{letter-spacing:-2.316000px;}
.ls1b{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.324000px;}
.ls19{letter-spacing:-0.214800px;}
.ls1c{letter-spacing:-0.091200px;}
.lsa{letter-spacing:-0.090000px;}
.ls11{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls18{letter-spacing:0.037440px;}
.ls15{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.054000px;}
.ls17{letter-spacing:0.082560px;}
.ls12{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls16{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.342000px;}
.lsf{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.439920px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls5{letter-spacing:0.894240px;}
.ls1f{letter-spacing:16.506720px;}
.ls7{letter-spacing:41.706720px;}
.ls6{letter-spacing:44.586720px;}
.ls1e{letter-spacing:46.026720px;}
.ls8{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-59.760000px;}
.ws6{word-spacing:-21.271200px;}
.ws4{word-spacing:-16.626360px;}
.ws5{word-spacing:-16.493760px;}
.ws9{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.238800px;}
.wse{word-spacing:-15.046800px;}
.ws18{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws15{word-spacing:-14.580000px;}
.wsd{word-spacing:-13.505760px;}
.ws2{word-spacing:-12.546000px;}
.ws11{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.258000px;}
.ws3{word-spacing:-12.186000px;}
.ws0{word-spacing:-12.114000px;}
.wsb{word-spacing:-10.260000px;}
.ws16{word-spacing:-9.720000px;}
.ws7{word-spacing:-8.786880px;}
.ws8{word-spacing:-8.136000px;}
.ws10{word-spacing:0.000000px;}
.ws17{word-spacing:64.560000px;}
.ws14{word-spacing:168.414000px;}
.ws13{word-spacing:182.058000px;}
._16{margin-left:-8.270160px;}
._17{margin-left:-7.219200px;}
._4{margin-left:-5.557680px;}
._5{margin-left:-4.279440px;}
._3{margin-left:-3.210000px;}
._2{margin-left:-2.106000px;}
._0{margin-left:-1.080000px;}
._1{width:1.038000px;}
._c{width:2.173440px;}
._b{width:3.204960px;}
._11{width:4.454880px;}
._6{width:5.861520px;}
._12{width:6.942720px;}
._13{width:7.965600px;}
._14{width:8.974080px;}
._10{width:10.517760px;}
._a{width:12.339120px;}
._9{width:13.364160px;}
._8{width:16.856640px;}
._7{width:17.928000px;}
._d{width:18.981600px;}
._15{width:20.079360px;}
._1f{width:21.357120px;}
._1d{width:22.387920px;}
._1c{width:23.963760px;}
._1e{width:25.435680px;}
._f{width:29.260320px;}
._e{width:30.597120px;}
._19{width:208.062000px;}
._1a{width:402.464640px;}
._1b{width:423.209040px;}
._18{width:619.176000px;}
.fc8{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc6{color:rgb(47,84,150);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc7{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:54.144000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y29{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y3a{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y38{bottom:10.620000px;}
.y1b{bottom:12.240000px;}
.yba{bottom:13.245000px;}
.yc{bottom:13.860000px;}
.yd9{bottom:17.280000px;}
.y4{bottom:17.316000px;}
.ydb{bottom:17.325000px;}
.y124{bottom:17.745000px;}
.y28{bottom:18.540000px;}
.y2{bottom:20.196000px;}
.yf7{bottom:21.240000px;}
.y39{bottom:22.140000px;}
.yc6{bottom:22.536000px;}
.y19{bottom:23.940000px;}
.y37{bottom:25.200000px;}
.y35{bottom:29.370000px;}
.yb{bottom:30.240000px;}
.yb1{bottom:30.810000px;}
.y5{bottom:31.320000px;}
.y27{bottom:36.930000px;}
.y18{bottom:40.365000px;}
.yc4{bottom:44.970000px;}
.y34{bottom:46.470000px;}
.ya{bottom:46.620000px;}
.y123{bottom:48.030000px;}
.y1{bottom:53.820000px;}
.y26{bottom:54.570000px;}
.y17{bottom:56.925000px;}
.yb2{bottom:58.140000px;}
.ybd{bottom:62.535000px;}
.y33{bottom:63.750000px;}
.y11b{bottom:67.965000px;}
.y25{bottom:71.850000px;}
.y16{bottom:73.305000px;}
.y9{bottom:73.470000px;}
.y32{bottom:81.030000px;}
.yb3{bottom:85.500000px;}
.y15{bottom:85.725000px;}
.y24{bottom:88.950000px;}
.y8{bottom:93.090000px;}
.y31{bottom:98.310000px;}
.y160{bottom:99.936000px;}
.y14{bottom:100.485000px;}
.y8c{bottom:101.376000px;}
.ybe{bottom:102.495000px;}
.y53{bottom:102.996000px;}
.y11c{bottom:104.070000px;}
.y23{bottom:106.770000px;}
.yad{bottom:110.016000px;}
.y7{bottom:111.450000px;}
.yf6{bottom:112.356000px;}
.yb4{bottom:112.830000px;}
.y30{bottom:115.590000px;}
.y13{bottom:115.785000px;}
.y15f{bottom:117.216000px;}
.y8b{bottom:118.656000px;}
.y52{bottom:121.356000px;}
.yac{bottom:124.056000px;}
.y22{bottom:124.230000px;}
.ybb{bottom:124.350000px;}
.ybc{bottom:124.380000px;}
.yf5{bottom:126.396000px;}
.y2f{bottom:132.870000px;}
.y119{bottom:134.136000px;}
.y15e{bottom:134.496000px;}
.y12{bottom:134.865000px;}
.y8a{bottom:135.936000px;}
.y51{bottom:138.636000px;}
.y11d{bottom:140.145000px;}
.yb5{bottom:140.190000px;}
.y21{bottom:141.690000px;}
.ybf{bottom:142.455000px;}
.y2e{bottom:149.970000px;}
.y118{bottom:151.410000px;}
.y15d{bottom:151.590000px;}
.y89{bottom:153.030000px;}
.y50{bottom:155.730000px;}
.y20{bottom:158.970000px;}
.y11{bottom:161.505000px;}
.y2d{bottom:167.250000px;}
.yb6{bottom:167.505000px;}
.y15c{bottom:168.870000px;}
.y117{bottom:169.770000px;}
.y88{bottom:170.310000px;}
.yc5{bottom:173.910000px;}
.y4f{bottom:174.090000px;}
.y11e{bottom:176.220000px;}
.y1f{bottom:176.610000px;}
.yaf{bottom:179.850000px;}
.yc0{bottom:182.415000px;}
.y2c{bottom:184.530000px;}
.y10{bottom:185.805000px;}
.y15b{bottom:186.150000px;}
.y116{bottom:186.870000px;}
.y87{bottom:187.590000px;}
.y4e{bottom:192.450000px;}
.yb7{bottom:194.865000px;}
.y2b{bottom:201.810000px;}
.y86{bottom:202.350000px;}
.y15a{bottom:203.430000px;}
.y1e{bottom:203.970000px;}
.y115{bottom:205.230000px;}
.y4d{bottom:209.730000px;}
.y11f{bottom:212.295000px;}
.y2a{bottom:219.090000px;}
.y85{bottom:220.350000px;}
.y159{bottom:220.710000px;}
.y1d{bottom:221.790000px;}
.yb8{bottom:222.195000px;}
.yc1{bottom:222.405000px;}
.y114{bottom:222.510000px;}
.y4c{bottom:227.010000px;}
.y158{bottom:237.990000px;}
.y84{bottom:238.350000px;}
.yb0{bottom:240.555000px;}
.y113{bottom:240.870000px;}
.y4b{bottom:245.370000px;}
.y120{bottom:248.370000px;}
.yb9{bottom:249.555000px;}
.y157{bottom:255.090000px;}
.y83{bottom:256.350000px;}
.y112{bottom:258.150000px;}
.yc2{bottom:262.365000px;}
.y4a{bottom:263.550000px;}
.y156{bottom:272.370000px;}
.y82{bottom:274.350000px;}
.y111{bottom:275.250000px;}
.y49{bottom:281.910000px;}
.y121{bottom:284.430000px;}
.y155{bottom:289.650000px;}
.y81{bottom:292.350000px;}
.y110{bottom:292.530000px;}
.y48{bottom:299.190000px;}
.yc3{bottom:302.325000px;}
.y154{bottom:306.930000px;}
.y80{bottom:310.350000px;}
.y10f{bottom:310.890000px;}
.y47{bottom:316.470000px;}
.y122{bottom:320.505000px;}
.y153{bottom:324.210000px;}
.y10e{bottom:328.170000px;}
.y7f{bottom:331.590000px;}
.y46{bottom:333.750000px;}
.y152{bottom:341.355000px;}
.y10d{bottom:345.495000px;}
.y7e{bottom:348.915000px;}
.y45{bottom:350.895000px;}
.y151{bottom:358.635000px;}
.y10c{bottom:363.855000px;}
.y7d{bottom:366.195000px;}
.y44{bottom:371.775000px;}
.y150{bottom:375.915000px;}
.y10b{bottom:380.955000px;}
.y7c{bottom:383.295000px;}
.y43{bottom:389.415000px;}
.y14f{bottom:393.195000px;}
.y10a{bottom:399.315000px;}
.y7b{bottom:400.575000px;}
.y42{bottom:406.695000px;}
.y14e{bottom:410.475000px;}
.yf4{bottom:416.595000px;}
.y7a{bottom:417.855000px;}
.y41{bottom:423.975000px;}
.y14d{bottom:427.755000px;}
.yf3{bottom:433.875000px;}
.y109{bottom:434.955000px;}
.y79{bottom:435.135000px;}
.y40{bottom:441.255000px;}
.y14c{bottom:444.855000px;}
.yf2{bottom:450.975000px;}
.y78{bottom:452.415000px;}
.y108{bottom:453.315000px;}
.yab{bottom:453.855000px;}
.y3f{bottom:458.355000px;}
.y14b{bottom:462.135000px;}
.y185{bottom:466.095000px;}
.y90{bottom:467.175000px;}
.yf1{bottom:468.255000px;}
.yaa{bottom:468.975000px;}
.y107{bottom:471.495000px;}
.y3e{bottom:475.635000px;}
.y14a{bottom:479.415000px;}
.y184{bottom:484.095000px;}
.y8f{bottom:485.175000px;}
.yf0{bottom:485.535000px;}
.ya9{bottom:486.975000px;}
.y106{bottom:489.855000px;}
.y3d{bottom:492.915000px;}
.y149{bottom:496.695000px;}
.yef{bottom:500.295000px;}
.y183{bottom:501.555000px;}
.y8e{bottom:503.175000px;}
.ya8{bottom:504.975000px;}
.y105{bottom:507.135000px;}
.y3c{bottom:510.195000px;}
.y148{bottom:517.575000px;}
.yee{bottom:518.295000px;}
.y182{bottom:518.835000px;}
.y8d{bottom:521.175000px;}
.y11a{bottom:521.280000px;}
.ya7{bottom:522.975000px;}
.y3b{bottom:527.475000px;}
.y147{bottom:535.215000px;}
.y181{bottom:536.115000px;}
.yed{bottom:536.295000px;}
.y36{bottom:541.515000px;}
.ya6{bottom:544.215000px;}
.y77{bottom:549.795000px;}
.y146{bottom:552.315000px;}
.y180{bottom:553.395000px;}
.yec{bottom:554.295000px;}
.ya5{bottom:561.495000px;}
.y76{bottom:566.895000px;}
.y145{bottom:569.595000px;}
.y17f{bottom:570.675000px;}
.yeb{bottom:575.535000px;}
.y1c{bottom:578.055000px;}
.ya4{bottom:578.775000px;}
.y75{bottom:584.175000px;}
.y144{bottom:586.875000px;}
.y17e{bottom:587.775000px;}
.yea{bottom:592.815000px;}
.ya3{bottom:595.875000px;}
.y74{bottom:601.455000px;}
.y17d{bottom:605.085000px;}
.y143{bottom:607.785000px;}
.ye9{bottom:610.125000px;}
.ya2{bottom:613.185000px;}
.y73{bottom:618.765000px;}
.y17c{bottom:622.365000px;}
.y142{bottom:625.425000px;}
.ye8{bottom:627.225000px;}
.ya1{bottom:630.465000px;}
.y72{bottom:636.045000px;}
.y17b{bottom:639.645000px;}
.y141{bottom:642.705000px;}
.ye7{bottom:644.505000px;}
.ya0{bottom:647.745000px;}
.y71{bottom:653.325000px;}
.y17a{bottom:656.925000px;}
.y140{bottom:659.805000px;}
.ye6{bottom:661.785000px;}
.y9f{bottom:665.025000px;}
.y70{bottom:672.045000px;}
.y179{bottom:674.025000px;}
.ye5{bottom:676.545000px;}
.y13f{bottom:677.085000px;}
.y9e{bottom:682.305000px;}
.y178{bottom:691.305000px;}
.y6f{bottom:692.385000px;}
.ye4{bottom:694.545000px;}
.y13e{bottom:697.965000px;}
.y9d{bottom:699.405000px;}
.y177{bottom:708.585000px;}
.y6e{bottom:709.665000px;}
.ye3{bottom:712.545000px;}
.y13d{bottom:713.085000px;}
.y9c{bottom:714.165000px;}
.y176{bottom:725.865000px;}
.y6d{bottom:726.945000px;}
.ye2{bottom:730.545000px;}
.y13c{bottom:731.085000px;}
.y9b{bottom:732.165000px;}
.y175{bottom:743.145000px;}
.y6c{bottom:744.225000px;}
.y13b{bottom:749.085000px;}
.y9a{bottom:750.165000px;}
.ye1{bottom:751.785000px;}
.y174{bottom:760.425000px;}
.y6b{bottom:761.505000px;}
.y13a{bottom:767.085000px;}
.y99{bottom:768.165000px;}
.ye0{bottom:769.065000px;}
.y173{bottom:777.525000px;}
.y6a{bottom:778.785000px;}
.y139{bottom:785.085000px;}
.y98{bottom:786.165000px;}
.ydf{bottom:786.345000px;}
.y172{bottom:794.805000px;}
.y69{bottom:796.965000px;}
.y138{bottom:803.085000px;}
.yde{bottom:803.625000px;}
.y97{bottom:807.405000px;}
.y1a{bottom:811.185000px;}
.y171{bottom:812.085000px;}
.y68{bottom:814.245000px;}
.ydd{bottom:820.725000px;}
.y96{bottom:824.325000px;}
.yae{bottom:824.580000px;}
.y170{bottom:829.365000px;}
.y67{bottom:832.605000px;}
.ydc{bottom:838.725000px;}
.yf{bottom:840.525000px;}
.y137{bottom:845.205000px;}
.y16f{bottom:846.645000px;}
.y66{bottom:849.885000px;}
.yda{bottom:853.845000px;}
.y136{bottom:862.845000px;}
.y16e{bottom:863.925000px;}
.y104{bottom:865.365000px;}
.y65{bottom:867.165000px;}
.yd8{bottom:871.890000px;}
.y135{bottom:879.990000px;}
.y16d{bottom:881.070000px;}
.y103{bottom:885.210000px;}
.y64{bottom:885.390000px;}
.yd7{bottom:889.890000px;}
.y134{bottom:897.270000px;}
.y16c{bottom:898.350000px;}
.y63{bottom:903.750000px;}
.y102{bottom:905.190000px;}
.yd6{bottom:907.890000px;}
.y133{bottom:914.550000px;}
.y16b{bottom:915.630000px;}
.y62{bottom:922.110000px;}
.y101{bottom:925.170000px;}
.yd5{bottom:929.130000px;}
.y132{bottom:931.830000px;}
.y16a{bottom:932.910000px;}
.y61{bottom:939.390000px;}
.y100{bottom:945.150000px;}
.yd4{bottom:946.410000px;}
.y131{bottom:949.110000px;}
.y169{bottom:950.190000px;}
.y60{bottom:957.750000px;}
.yd3{bottom:963.690000px;}
.yff{bottom:965.130000px;}
.y130{bottom:966.390000px;}
.y168{bottom:967.470000px;}
.y5f{bottom:975.930000px;}
.yd2{bottom:980.970000px;}
.y12f{bottom:983.490000px;}
.y167{bottom:984.570000px;}
.yfe{bottom:985.110000px;}
.y5e{bottom:993.210000px;}
.yd1{bottom:998.070000px;}
.y12e{bottom:1000.770000px;}
.y166{bottom:1001.850000px;}
.yfd{bottom:1005.090000px;}
.y5d{bottom:1010.490000px;}
.yd0{bottom:1015.350000px;}
.y12d{bottom:1018.050000px;}
.y165{bottom:1019.130000px;}
.yfc{bottom:1025.070000px;}
.y5c{bottom:1028.850000px;}
.ycf{bottom:1030.110000px;}
.y12c{bottom:1035.330000px;}
.y164{bottom:1036.410000px;}
.yd{bottom:1041.450000px;}
.yfb{bottom:1045.050000px;}
.y5b{bottom:1046.130000px;}
.yce{bottom:1048.110000px;}
.y12b{bottom:1052.610000px;}
.y163{bottom:1053.690000px;}
.yfa{bottom:1062.330000px;}
.y5a{bottom:1063.410000px;}
.ycd{bottom:1066.110000px;}
.y6{bottom:1066.830000px;}
.y12a{bottom:1069.710000px;}
.y162{bottom:1070.790000px;}
.y59{bottom:1081.590000px;}
.yf9{bottom:1083.210000px;}
.ycc{bottom:1084.110000px;}
.y129{bottom:1086.990000px;}
.y161{bottom:1088.070000px;}
.yf8{bottom:1098.330000px;}
.y58{bottom:1099.950000px;}
.y95{bottom:1101.210000px;}
.y128{bottom:1104.270000px;}
.ycb{bottom:1105.350000px;}
.y94{bottom:1116.330000px;}
.y57{bottom:1118.310000px;}
.y127{bottom:1121.550000px;}
.yca{bottom:1122.630000px;}
.y93{bottom:1134.330000px;}
.y56{bottom:1136.670000px;}
.y126{bottom:1138.860000px;}
.yc9{bottom:1139.940000px;}
.y92{bottom:1152.360000px;}
.y55{bottom:1155.060000px;}
.y125{bottom:1156.140000px;}
.yc8{bottom:1157.220000px;}
.y91{bottom:1170.360000px;}
.y54{bottom:1173.240000px;}
.yc7{bottom:1174.320000px;}
.h23{height:17.280000px;}
.h24{height:17.316000px;}
.hb{height:25.020000px;}
.h14{height:29.340000px;}
.h12{height:32.103633px;}
.h2{height:32.976000px;}
.h27{height:35.316000px;}
.h8{height:36.180000px;}
.h1d{height:36.540000px;}
.h1f{height:42.164648px;}
.h1b{height:42.186445px;}
.h1c{height:43.215117px;}
.h22{height:43.506914px;}
.h1a{height:43.681992px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h4{height:47.223633px;}
.h17{height:47.980898px;}
.h20{height:48.995859px;}
.h28{height:49.115859px;}
.h19{height:49.742227px;}
.h1e{height:52.260820px;}
.h13{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h2a{height:55.439437px;}
.h18{height:56.574492px;}
.h21{height:56.900391px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h15{height:73.722656px;}
.he{height:86.255508px;}
.h7{height:121.536000px;}
.hc{height:200.910000px;}
.h16{height:233.130000px;}
.h25{height:269.820000px;}
.h26{height:322.740000px;}
.h29{height:340.920000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w2b{width:112.176000px;}
.w26{width:121.536000px;}
.w21{width:123.660000px;}
.w1e{width:123.696000px;}
.w1f{width:123.840000px;}
.w20{width:123.876000px;}
.w13{width:124.020000px;}
.w10{width:135.576000px;}
.w1c{width:146.916000px;}
.w5{width:151.950000px;}
.w25{width:154.650000px;}
.w28{width:156.270000px;}
.w29{width:156.420000px;}
.w1a{width:170.130000px;}
.w19{width:173.730000px;}
.w18{width:185.790000px;}
.wc{width:185.970000px;}
.wd{width:186.150000px;}
.w1b{width:214.770000px;}
.w14{width:215.895000px;}
.w11{width:221.970000px;}
.w8{width:223.275000px;}
.w1d{width:225.210000px;}
.w23{width:246.630000px;}
.wb{width:248.250000px;}
.we{width:248.430000px;}
.wa{width:248.475000px;}
.w22{width:251.895000px;}
.w12{width:262.515000px;}
.w27{width:313.590000px;}
.wf{width:497.415000px;}
.w17{width:502.920000px;}
.w9{width:524.055000px;}
.w15{width:529.995000px;}
.w2a{width:541.080000px;}
.w6{width:595.365000px;}
.w2c{width:633.525000px;}
.w16{width:634.500000px;}
.w2{width:673.530000px;}
.w24{width:746.610000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.560000px;}
.x2{left:8.640000px;}
.x3c{left:9.825000px;}
.x13{left:12.600000px;}
.x3b{left:16.665000px;}
.x29{left:33.150000px;}
.x3e{left:34.776000px;}
.x27{left:41.760000px;}
.xc{left:43.416000px;}
.x2b{left:48.525000px;}
.x2c{left:64.470000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.xf{left:103.710000px;}
.xe{left:104.970000px;}
.x14{left:108.035987px;}
.x10{left:119.910000px;}
.x40{left:124.235987px;}
.x25{left:129.060000px;}
.x15{left:135.035987px;}
.x28{left:147.810000px;}
.x16{left:162.029987px;}
.x3a{left:175.860000px;}
.x3f{left:186.330000px;}
.x17{left:189.029987px;}
.x2a{left:194.940000px;}
.x31{left:197.670000px;}
.x18{left:207.749987px;}
.x20{left:209.550000px;}
.x11{left:215.175000px;}
.x6{left:224.850000px;}
.x35{left:228.630000px;}
.x3d{left:253.335000px;}
.x1c{left:260.130000px;}
.x2d{left:265.830000px;}
.x9{left:288.435000px;}
.x23{left:289.875000px;}
.x12{left:296.175000px;}
.xd{left:312.735000px;}
.x19{left:322.455000px;}
.x32{left:325.875000px;}
.x7{left:348.195000px;}
.x36{left:350.895000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x21{left:432.435000px;}
.x2e{left:434.235000px;}
.x1d{left:446.835000px;}
.xa{left:455.700000px;}
.x26{left:466.845000px;}
.x37{left:506.265000px;}
.x1a{left:571.605000px;}
.x33{left:573.225000px;}
.x30{left:594.645000px;}
.x2f{left:605.085000px;}
.x1e{left:633.705000px;}
.x38{left:663.450000px;}
.x34{left:683.969987px;}
.x22{left:695.850000px;}
.x24{left:698.009987px;}
.x39{left:717.089987px;}
.x3{left:745.890000px;}
.x1f{left:763.889987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls10{letter-spacing:-4.160000pt;}
.ls14{letter-spacing:-2.240000pt;}
.lse{letter-spacing:-2.058667pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.288000pt;}
.ls19{letter-spacing:-0.190933pt;}
.ls1c{letter-spacing:-0.081067pt;}
.lsa{letter-spacing:-0.080000pt;}
.ls11{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls18{letter-spacing:0.033280pt;}
.ls15{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.048000pt;}
.ls17{letter-spacing:0.073387pt;}
.ls12{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls16{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.304000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.391040pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls5{letter-spacing:0.794880pt;}
.ls1f{letter-spacing:14.672640pt;}
.ls7{letter-spacing:37.072640pt;}
.ls6{letter-spacing:39.632640pt;}
.ls1e{letter-spacing:40.912640pt;}
.ls8{letter-spacing:56.912640pt;}
.wsf{word-spacing:-53.120000pt;}
.ws6{word-spacing:-18.907733pt;}
.ws4{word-spacing:-14.778987pt;}
.ws5{word-spacing:-14.661120pt;}
.ws9{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.374933pt;}
.ws18{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws15{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.005120pt;}
.ws2{word-spacing:-11.152000pt;}
.ws11{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.896000pt;}
.ws3{word-spacing:-10.832000pt;}
.ws0{word-spacing:-10.768000pt;}
.wsb{word-spacing:-9.120000pt;}
.ws16{word-spacing:-8.640000pt;}
.ws7{word-spacing:-7.810560pt;}
.ws8{word-spacing:-7.232000pt;}
.ws10{word-spacing:0.000000pt;}
.ws17{word-spacing:57.386667pt;}
.ws14{word-spacing:149.701333pt;}
.ws13{word-spacing:161.829333pt;}
._16{margin-left:-7.351253pt;}
._17{margin-left:-6.417067pt;}
._4{margin-left:-4.940160pt;}
._5{margin-left:-3.803947pt;}
._3{margin-left:-2.853333pt;}
._2{margin-left:-1.872000pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.922667pt;}
._c{width:1.931947pt;}
._b{width:2.848853pt;}
._11{width:3.959893pt;}
._6{width:5.210240pt;}
._12{width:6.171307pt;}
._13{width:7.080533pt;}
._14{width:7.976960pt;}
._10{width:9.349120pt;}
._a{width:10.968107pt;}
._9{width:11.879253pt;}
._8{width:14.983680pt;}
._7{width:15.936000pt;}
._d{width:16.872533pt;}
._15{width:17.848320pt;}
._1f{width:18.984107pt;}
._1d{width:19.900373pt;}
._1c{width:21.301120pt;}
._1e{width:22.609493pt;}
._f{width:26.009173pt;}
._e{width:27.197440pt;}
._19{width:184.944000pt;}
._1a{width:357.746347pt;}
._1b{width:376.185813pt;}
._18{width:550.378667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y3a{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y38{bottom:9.440000pt;}
.y1b{bottom:10.880000pt;}
.yba{bottom:11.773333pt;}
.yc{bottom:12.320000pt;}
.yd9{bottom:15.360000pt;}
.y4{bottom:15.392000pt;}
.ydb{bottom:15.400000pt;}
.y124{bottom:15.773333pt;}
.y28{bottom:16.480000pt;}
.y2{bottom:17.952000pt;}
.yf7{bottom:18.880000pt;}
.y39{bottom:19.680000pt;}
.yc6{bottom:20.032000pt;}
.y19{bottom:21.280000pt;}
.y37{bottom:22.400000pt;}
.y35{bottom:26.106667pt;}
.yb{bottom:26.880000pt;}
.yb1{bottom:27.386667pt;}
.y5{bottom:27.840000pt;}
.y27{bottom:32.826667pt;}
.y18{bottom:35.880000pt;}
.yc4{bottom:39.973333pt;}
.y34{bottom:41.306667pt;}
.ya{bottom:41.440000pt;}
.y123{bottom:42.693333pt;}
.y1{bottom:47.840000pt;}
.y26{bottom:48.506667pt;}
.y17{bottom:50.600000pt;}
.yb2{bottom:51.680000pt;}
.ybd{bottom:55.586667pt;}
.y33{bottom:56.666667pt;}
.y11b{bottom:60.413333pt;}
.y25{bottom:63.866667pt;}
.y16{bottom:65.160000pt;}
.y9{bottom:65.306667pt;}
.y32{bottom:72.026667pt;}
.yb3{bottom:76.000000pt;}
.y15{bottom:76.200000pt;}
.y24{bottom:79.066667pt;}
.y8{bottom:82.746667pt;}
.y31{bottom:87.386667pt;}
.y160{bottom:88.832000pt;}
.y14{bottom:89.320000pt;}
.y8c{bottom:90.112000pt;}
.ybe{bottom:91.106667pt;}
.y53{bottom:91.552000pt;}
.y11c{bottom:92.506667pt;}
.y23{bottom:94.906667pt;}
.yad{bottom:97.792000pt;}
.y7{bottom:99.066667pt;}
.yf6{bottom:99.872000pt;}
.yb4{bottom:100.293333pt;}
.y30{bottom:102.746667pt;}
.y13{bottom:102.920000pt;}
.y15f{bottom:104.192000pt;}
.y8b{bottom:105.472000pt;}
.y52{bottom:107.872000pt;}
.yac{bottom:110.272000pt;}
.y22{bottom:110.426667pt;}
.ybb{bottom:110.533333pt;}
.ybc{bottom:110.560000pt;}
.yf5{bottom:112.352000pt;}
.y2f{bottom:118.106667pt;}
.y119{bottom:119.232000pt;}
.y15e{bottom:119.552000pt;}
.y12{bottom:119.880000pt;}
.y8a{bottom:120.832000pt;}
.y51{bottom:123.232000pt;}
.y11d{bottom:124.573333pt;}
.yb5{bottom:124.613333pt;}
.y21{bottom:125.946667pt;}
.ybf{bottom:126.626667pt;}
.y2e{bottom:133.306667pt;}
.y118{bottom:134.586667pt;}
.y15d{bottom:134.746667pt;}
.y89{bottom:136.026667pt;}
.y50{bottom:138.426667pt;}
.y20{bottom:141.306667pt;}
.y11{bottom:143.560000pt;}
.y2d{bottom:148.666667pt;}
.yb6{bottom:148.893333pt;}
.y15c{bottom:150.106667pt;}
.y117{bottom:150.906667pt;}
.y88{bottom:151.386667pt;}
.yc5{bottom:154.586667pt;}
.y4f{bottom:154.746667pt;}
.y11e{bottom:156.640000pt;}
.y1f{bottom:156.986667pt;}
.yaf{bottom:159.866667pt;}
.yc0{bottom:162.146667pt;}
.y2c{bottom:164.026667pt;}
.y10{bottom:165.160000pt;}
.y15b{bottom:165.466667pt;}
.y116{bottom:166.106667pt;}
.y87{bottom:166.746667pt;}
.y4e{bottom:171.066667pt;}
.yb7{bottom:173.213333pt;}
.y2b{bottom:179.386667pt;}
.y86{bottom:179.866667pt;}
.y15a{bottom:180.826667pt;}
.y1e{bottom:181.306667pt;}
.y115{bottom:182.426667pt;}
.y4d{bottom:186.426667pt;}
.y11f{bottom:188.706667pt;}
.y2a{bottom:194.746667pt;}
.y85{bottom:195.866667pt;}
.y159{bottom:196.186667pt;}
.y1d{bottom:197.146667pt;}
.yb8{bottom:197.506667pt;}
.yc1{bottom:197.693333pt;}
.y114{bottom:197.786667pt;}
.y4c{bottom:201.786667pt;}
.y158{bottom:211.546667pt;}
.y84{bottom:211.866667pt;}
.yb0{bottom:213.826667pt;}
.y113{bottom:214.106667pt;}
.y4b{bottom:218.106667pt;}
.y120{bottom:220.773333pt;}
.yb9{bottom:221.826667pt;}
.y157{bottom:226.746667pt;}
.y83{bottom:227.866667pt;}
.y112{bottom:229.466667pt;}
.yc2{bottom:233.213333pt;}
.y4a{bottom:234.266667pt;}
.y156{bottom:242.106667pt;}
.y82{bottom:243.866667pt;}
.y111{bottom:244.666667pt;}
.y49{bottom:250.586667pt;}
.y121{bottom:252.826667pt;}
.y155{bottom:257.466667pt;}
.y81{bottom:259.866667pt;}
.y110{bottom:260.026667pt;}
.y48{bottom:265.946667pt;}
.yc3{bottom:268.733333pt;}
.y154{bottom:272.826667pt;}
.y80{bottom:275.866667pt;}
.y10f{bottom:276.346667pt;}
.y47{bottom:281.306667pt;}
.y122{bottom:284.893333pt;}
.y153{bottom:288.186667pt;}
.y10e{bottom:291.706667pt;}
.y7f{bottom:294.746667pt;}
.y46{bottom:296.666667pt;}
.y152{bottom:303.426667pt;}
.y10d{bottom:307.106667pt;}
.y7e{bottom:310.146667pt;}
.y45{bottom:311.906667pt;}
.y151{bottom:318.786667pt;}
.y10c{bottom:323.426667pt;}
.y7d{bottom:325.506667pt;}
.y44{bottom:330.466667pt;}
.y150{bottom:334.146667pt;}
.y10b{bottom:338.626667pt;}
.y7c{bottom:340.706667pt;}
.y43{bottom:346.146667pt;}
.y14f{bottom:349.506667pt;}
.y10a{bottom:354.946667pt;}
.y7b{bottom:356.066667pt;}
.y42{bottom:361.506667pt;}
.y14e{bottom:364.866667pt;}
.yf4{bottom:370.306667pt;}
.y7a{bottom:371.426667pt;}
.y41{bottom:376.866667pt;}
.y14d{bottom:380.226667pt;}
.yf3{bottom:385.666667pt;}
.y109{bottom:386.626667pt;}
.y79{bottom:386.786667pt;}
.y40{bottom:392.226667pt;}
.y14c{bottom:395.426667pt;}
.yf2{bottom:400.866667pt;}
.y78{bottom:402.146667pt;}
.y108{bottom:402.946667pt;}
.yab{bottom:403.426667pt;}
.y3f{bottom:407.426667pt;}
.y14b{bottom:410.786667pt;}
.y185{bottom:414.306667pt;}
.y90{bottom:415.266667pt;}
.yf1{bottom:416.226667pt;}
.yaa{bottom:416.866667pt;}
.y107{bottom:419.106667pt;}
.y3e{bottom:422.786667pt;}
.y14a{bottom:426.146667pt;}
.y184{bottom:430.306667pt;}
.y8f{bottom:431.266667pt;}
.yf0{bottom:431.586667pt;}
.ya9{bottom:432.866667pt;}
.y106{bottom:435.426667pt;}
.y3d{bottom:438.146667pt;}
.y149{bottom:441.506667pt;}
.yef{bottom:444.706667pt;}
.y183{bottom:445.826667pt;}
.y8e{bottom:447.266667pt;}
.ya8{bottom:448.866667pt;}
.y105{bottom:450.786667pt;}
.y3c{bottom:453.506667pt;}
.y148{bottom:460.066667pt;}
.yee{bottom:460.706667pt;}
.y182{bottom:461.186667pt;}
.y8d{bottom:463.266667pt;}
.y11a{bottom:463.360000pt;}
.ya7{bottom:464.866667pt;}
.y3b{bottom:468.866667pt;}
.y147{bottom:475.746667pt;}
.y181{bottom:476.546667pt;}
.yed{bottom:476.706667pt;}
.y36{bottom:481.346667pt;}
.ya6{bottom:483.746667pt;}
.y77{bottom:488.706667pt;}
.y146{bottom:490.946667pt;}
.y180{bottom:491.906667pt;}
.yec{bottom:492.706667pt;}
.ya5{bottom:499.106667pt;}
.y76{bottom:503.906667pt;}
.y145{bottom:506.306667pt;}
.y17f{bottom:507.266667pt;}
.yeb{bottom:511.586667pt;}
.y1c{bottom:513.826667pt;}
.ya4{bottom:514.466667pt;}
.y75{bottom:519.266667pt;}
.y144{bottom:521.666667pt;}
.y17e{bottom:522.466667pt;}
.yea{bottom:526.946667pt;}
.ya3{bottom:529.666667pt;}
.y74{bottom:534.626667pt;}
.y17d{bottom:537.853333pt;}
.y143{bottom:540.253333pt;}
.ye9{bottom:542.333333pt;}
.ya2{bottom:545.053333pt;}
.y73{bottom:550.013333pt;}
.y17c{bottom:553.213333pt;}
.y142{bottom:555.933333pt;}
.ye8{bottom:557.533333pt;}
.ya1{bottom:560.413333pt;}
.y72{bottom:565.373333pt;}
.y17b{bottom:568.573333pt;}
.y141{bottom:571.293333pt;}
.ye7{bottom:572.893333pt;}
.ya0{bottom:575.773333pt;}
.y71{bottom:580.733333pt;}
.y17a{bottom:583.933333pt;}
.y140{bottom:586.493333pt;}
.ye6{bottom:588.253333pt;}
.y9f{bottom:591.133333pt;}
.y70{bottom:597.373333pt;}
.y179{bottom:599.133333pt;}
.ye5{bottom:601.373333pt;}
.y13f{bottom:601.853333pt;}
.y9e{bottom:606.493333pt;}
.y178{bottom:614.493333pt;}
.y6f{bottom:615.453333pt;}
.ye4{bottom:617.373333pt;}
.y13e{bottom:620.413333pt;}
.y9d{bottom:621.693333pt;}
.y177{bottom:629.853333pt;}
.y6e{bottom:630.813333pt;}
.ye3{bottom:633.373333pt;}
.y13d{bottom:633.853333pt;}
.y9c{bottom:634.813333pt;}
.y176{bottom:645.213333pt;}
.y6d{bottom:646.173333pt;}
.ye2{bottom:649.373333pt;}
.y13c{bottom:649.853333pt;}
.y9b{bottom:650.813333pt;}
.y175{bottom:660.573333pt;}
.y6c{bottom:661.533333pt;}
.y13b{bottom:665.853333pt;}
.y9a{bottom:666.813333pt;}
.ye1{bottom:668.253333pt;}
.y174{bottom:675.933333pt;}
.y6b{bottom:676.893333pt;}
.y13a{bottom:681.853333pt;}
.y99{bottom:682.813333pt;}
.ye0{bottom:683.613333pt;}
.y173{bottom:691.133333pt;}
.y6a{bottom:692.253333pt;}
.y139{bottom:697.853333pt;}
.y98{bottom:698.813333pt;}
.ydf{bottom:698.973333pt;}
.y172{bottom:706.493333pt;}
.y69{bottom:708.413333pt;}
.y138{bottom:713.853333pt;}
.yde{bottom:714.333333pt;}
.y97{bottom:717.693333pt;}
.y1a{bottom:721.053333pt;}
.y171{bottom:721.853333pt;}
.y68{bottom:723.773333pt;}
.ydd{bottom:729.533333pt;}
.y96{bottom:732.733333pt;}
.yae{bottom:732.960000pt;}
.y170{bottom:737.213333pt;}
.y67{bottom:740.093333pt;}
.ydc{bottom:745.533333pt;}
.yf{bottom:747.133333pt;}
.y137{bottom:751.293333pt;}
.y16f{bottom:752.573333pt;}
.y66{bottom:755.453333pt;}
.yda{bottom:758.973333pt;}
.y136{bottom:766.973333pt;}
.y16e{bottom:767.933333pt;}
.y104{bottom:769.213333pt;}
.y65{bottom:770.813333pt;}
.yd8{bottom:775.013333pt;}
.y135{bottom:782.213333pt;}
.y16d{bottom:783.173333pt;}
.y103{bottom:786.853333pt;}
.y64{bottom:787.013333pt;}
.yd7{bottom:791.013333pt;}
.y134{bottom:797.573333pt;}
.y16c{bottom:798.533333pt;}
.y63{bottom:803.333333pt;}
.y102{bottom:804.613333pt;}
.yd6{bottom:807.013333pt;}
.y133{bottom:812.933333pt;}
.y16b{bottom:813.893333pt;}
.y62{bottom:819.653333pt;}
.y101{bottom:822.373333pt;}
.yd5{bottom:825.893333pt;}
.y132{bottom:828.293333pt;}
.y16a{bottom:829.253333pt;}
.y61{bottom:835.013333pt;}
.y100{bottom:840.133333pt;}
.yd4{bottom:841.253333pt;}
.y131{bottom:843.653333pt;}
.y169{bottom:844.613333pt;}
.y60{bottom:851.333333pt;}
.yd3{bottom:856.613333pt;}
.yff{bottom:857.893333pt;}
.y130{bottom:859.013333pt;}
.y168{bottom:859.973333pt;}
.y5f{bottom:867.493333pt;}
.yd2{bottom:871.973333pt;}
.y12f{bottom:874.213333pt;}
.y167{bottom:875.173333pt;}
.yfe{bottom:875.653333pt;}
.y5e{bottom:882.853333pt;}
.yd1{bottom:887.173333pt;}
.y12e{bottom:889.573333pt;}
.y166{bottom:890.533333pt;}
.yfd{bottom:893.413333pt;}
.y5d{bottom:898.213333pt;}
.yd0{bottom:902.533333pt;}
.y12d{bottom:904.933333pt;}
.y165{bottom:905.893333pt;}
.yfc{bottom:911.173333pt;}
.y5c{bottom:914.533333pt;}
.ycf{bottom:915.653333pt;}
.y12c{bottom:920.293333pt;}
.y164{bottom:921.253333pt;}
.yd{bottom:925.733333pt;}
.yfb{bottom:928.933333pt;}
.y5b{bottom:929.893333pt;}
.yce{bottom:931.653333pt;}
.y12b{bottom:935.653333pt;}
.y163{bottom:936.613333pt;}
.yfa{bottom:944.293333pt;}
.y5a{bottom:945.253333pt;}
.ycd{bottom:947.653333pt;}
.y6{bottom:948.293333pt;}
.y12a{bottom:950.853333pt;}
.y162{bottom:951.813333pt;}
.y59{bottom:961.413333pt;}
.yf9{bottom:962.853333pt;}
.ycc{bottom:963.653333pt;}
.y129{bottom:966.213333pt;}
.y161{bottom:967.173333pt;}
.yf8{bottom:976.293333pt;}
.y58{bottom:977.733333pt;}
.y95{bottom:978.853333pt;}
.y128{bottom:981.573333pt;}
.ycb{bottom:982.533333pt;}
.y94{bottom:992.293333pt;}
.y57{bottom:994.053333pt;}
.y127{bottom:996.933333pt;}
.yca{bottom:997.893333pt;}
.y93{bottom:1008.293333pt;}
.y56{bottom:1010.373333pt;}
.y126{bottom:1012.320000pt;}
.yc9{bottom:1013.280000pt;}
.y92{bottom:1024.320000pt;}
.y55{bottom:1026.720000pt;}
.y125{bottom:1027.680000pt;}
.yc8{bottom:1028.640000pt;}
.y91{bottom:1040.320000pt;}
.y54{bottom:1042.880000pt;}
.yc7{bottom:1043.840000pt;}
.h23{height:15.360000pt;}
.h24{height:15.392000pt;}
.hb{height:22.240000pt;}
.h14{height:26.080000pt;}
.h12{height:28.536563pt;}
.h2{height:29.312000pt;}
.h27{height:31.392000pt;}
.h8{height:32.160000pt;}
.h1d{height:32.480000pt;}
.h1f{height:37.479688pt;}
.h1b{height:37.499062pt;}
.h1c{height:38.413438pt;}
.h22{height:38.672812pt;}
.h1a{height:38.828437pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h4{height:41.976562pt;}
.h17{height:42.649687pt;}
.h20{height:43.551875pt;}
.h28{height:43.658542pt;}
.h19{height:44.215312pt;}
.h1e{height:46.454062pt;}
.h13{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h2a{height:49.279500pt;}
.h18{height:50.288438pt;}
.h21{height:50.578125pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h15{height:65.531250pt;}
.he{height:76.671562pt;}
.h7{height:108.032000pt;}
.hc{height:178.586667pt;}
.h16{height:207.226667pt;}
.h25{height:239.840000pt;}
.h26{height:286.880000pt;}
.h29{height:303.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w2b{width:99.712000pt;}
.w26{width:108.032000pt;}
.w21{width:109.920000pt;}
.w1e{width:109.952000pt;}
.w1f{width:110.080000pt;}
.w20{width:110.112000pt;}
.w13{width:110.240000pt;}
.w10{width:120.512000pt;}
.w1c{width:130.592000pt;}
.w5{width:135.066667pt;}
.w25{width:137.466667pt;}
.w28{width:138.906667pt;}
.w29{width:139.040000pt;}
.w1a{width:151.226667pt;}
.w19{width:154.426667pt;}
.w18{width:165.146667pt;}
.wc{width:165.306667pt;}
.wd{width:165.466667pt;}
.w1b{width:190.906667pt;}
.w14{width:191.906667pt;}
.w11{width:197.306667pt;}
.w8{width:198.466667pt;}
.w1d{width:200.186667pt;}
.w23{width:219.226667pt;}
.wb{width:220.666667pt;}
.we{width:220.826667pt;}
.wa{width:220.866667pt;}
.w22{width:223.906667pt;}
.w12{width:233.346667pt;}
.w27{width:278.746667pt;}
.wf{width:442.146667pt;}
.w17{width:447.040000pt;}
.w9{width:465.826667pt;}
.w15{width:471.106667pt;}
.w2a{width:480.960000pt;}
.w6{width:529.213333pt;}
.w2c{width:563.133333pt;}
.w16{width:564.000000pt;}
.w2{width:598.693333pt;}
.w24{width:663.653333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.720000pt;}
.x2{left:7.680000pt;}
.x3c{left:8.733333pt;}
.x13{left:11.200000pt;}
.x3b{left:14.813333pt;}
.x29{left:29.466667pt;}
.x3e{left:30.912000pt;}
.x27{left:37.120000pt;}
.xc{left:38.592000pt;}
.x2b{left:43.133333pt;}
.x2c{left:57.306667pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.xf{left:92.186667pt;}
.xe{left:93.306667pt;}
.x14{left:96.031988pt;}
.x10{left:106.586667pt;}
.x40{left:110.431988pt;}
.x25{left:114.720000pt;}
.x15{left:120.031988pt;}
.x28{left:131.386667pt;}
.x16{left:144.026655pt;}
.x3a{left:156.320000pt;}
.x3f{left:165.626667pt;}
.x17{left:168.026655pt;}
.x2a{left:173.280000pt;}
.x31{left:175.706667pt;}
.x18{left:184.666655pt;}
.x20{left:186.266667pt;}
.x11{left:191.266667pt;}
.x6{left:199.866667pt;}
.x35{left:203.226667pt;}
.x3d{left:225.186667pt;}
.x1c{left:231.226667pt;}
.x2d{left:236.293333pt;}
.x9{left:256.386667pt;}
.x23{left:257.666667pt;}
.x12{left:263.266667pt;}
.xd{left:277.986667pt;}
.x19{left:286.626667pt;}
.x32{left:289.666667pt;}
.x7{left:309.506667pt;}
.x36{left:311.906667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x21{left:384.386667pt;}
.x2e{left:385.986667pt;}
.x1d{left:397.186667pt;}
.xa{left:405.066667pt;}
.x26{left:414.973333pt;}
.x37{left:450.013333pt;}
.x1a{left:508.093333pt;}
.x33{left:509.533333pt;}
.x30{left:528.573333pt;}
.x2f{left:537.853333pt;}
.x1e{left:563.293333pt;}
.x38{left:589.733333pt;}
.x34{left:607.973322pt;}
.x22{left:618.533333pt;}
.x24{left:620.453322pt;}
.x39{left:637.413322pt;}
.x3{left:663.013333pt;}
.x1f{left:679.013322pt;}
}




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