
    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_d88f9e7b0933bb69df998d6c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_864794d552a4a367ab4e9434.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_dc95eb865b89963dfd5e8f91.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_b2e456c41dc509200386af6b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202000;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_24d5380e5a86508141ad9c2d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.854004;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_ca64675abd024d6ee74ac3ec.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_2d1bce4439a0b55c8bed0c92.woff')format("woff");}.ff7{font-family:ff7;line-height:0.853516;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_5157644e846fb03c72fc8c5d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_b6230b9b42952c8293ac1863.woff')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_0300db0b99baed92c5f078dc.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b53ae4bb10bd1b1ebe48f79e.woff')format("woff");}.ffb{font-family:ffb;line-height:1.372070;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_a287c28d6fff6381cbfccdb1.woff')format("woff");}.ffc{font-family:ffc;line-height:1.095215;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_3ae040d6cf81bf63d955c3db.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_8d78b10f7ab91a94991267ae.woff')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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_0205ae9f147610b076b6767b.woff')format("woff");}.fff{font-family:fff;line-height:1.104004;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_34dc2066af07c3867aed309a.woff')format("woff");}.ff10{font-family:ff10;line-height:1.123047;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_2b99a4ab8db5621ed4e994ed.woff')format("woff");}.ff11{font-family:ff11;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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:-118.080000px;}
.v4{vertical-align:-83.520000px;}
.v5{vertical-align:-82.080000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls2a{letter-spacing:-2.880000px;}
.ls14{letter-spacing:-2.736000px;}
.ls24{letter-spacing:-2.376000px;}
.ls29{letter-spacing:-2.088000px;}
.ls26{letter-spacing:-1.728000px;}
.ls39{letter-spacing:-1.584000px;}
.ls22{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-1.296000px;}
.ls25{letter-spacing:-0.978000px;}
.ls10{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.648000px;}
.ls5{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.144000px;}
.ls2b{letter-spacing:0.192000px;}
.ls2e{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.288000px;}
.ls2c{letter-spacing:0.300000px;}
.ls8{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.648000px;}
.ls4{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.990000px;}
.ls17{letter-spacing:1.152000px;}
.ls13{letter-spacing:1.296000px;}
.ls15{letter-spacing:1.440000px;}
.ls12{letter-spacing:1.584000px;}
.ls16{letter-spacing:1.944000px;}
.ls2f{letter-spacing:2.064000px;}
.ls9{letter-spacing:2.160000px;}
.ls3d{letter-spacing:3.418560px;}
.ls23{letter-spacing:3.600000px;}
.lsc{letter-spacing:5.040000px;}
.ls3e{letter-spacing:9.180000px;}
.ls3c{letter-spacing:9.360000px;}
.ls41{letter-spacing:9.660000px;}
.ls3b{letter-spacing:9.720000px;}
.ls3f{letter-spacing:10.260000px;}
.ls40{letter-spacing:10.380000px;}
.ls33{letter-spacing:14.544000px;}
.ls3{letter-spacing:33.264000px;}
.ls30{letter-spacing:37.584000px;}
.ls34{letter-spacing:41.904000px;}
.lse{letter-spacing:44.784000px;}
.ls31{letter-spacing:46.224000px;}
.ls32{letter-spacing:50.544000px;}
.lsd{letter-spacing:54.864000px;}
.ls3a{letter-spacing:63.826560px;}
.ls19{letter-spacing:74.160000px;}
.ls1e{letter-spacing:104.400000px;}
.ls36{letter-spacing:141.276000px;}
.ls35{letter-spacing:145.596000px;}
.ls37{letter-spacing:154.380000px;}
.ls38{letter-spacing:158.700000px;}
.ls1f{letter-spacing:183.600000px;}
.ls1b{letter-spacing:236.880000px;}
.ls1c{letter-spacing:251.280000px;}
.ls1a{letter-spacing:268.560000px;}
.ls1d{letter-spacing:317.520000px;}
.ls20{letter-spacing:340.680000px;}
.ls0{letter-spacing:398.316000px;}
.ls2d{letter-spacing:771.396000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-72.000000px;}
.ws1d{word-spacing:-60.480000px;}
.ws22{word-spacing:-37.201440px;}
.ws21{word-spacing:-37.081440px;}
.ws1e{word-spacing:-36.541440px;}
.ws23{word-spacing:-36.481440px;}
.ws1f{word-spacing:-36.181440px;}
.ws20{word-spacing:-36.001440px;}
.ws24{word-spacing:-27.541440px;}
.ws16{word-spacing:-20.622000px;}
.ws1c{word-spacing:-20.232000px;}
.ws9{word-spacing:-20.016000px;}
.wsd{word-spacing:-19.584000px;}
.wsf{word-spacing:-19.440000px;}
.wsb{word-spacing:-19.296000px;}
.ws10{word-spacing:-19.152000px;}
.ws2{word-spacing:-18.720000px;}
.wse{word-spacing:-18.648000px;}
.ws5{word-spacing:-18.504000px;}
.ws19{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws18{word-spacing:-17.856000px;}
.ws12{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws11{word-spacing:-17.496000px;}
.ws3{word-spacing:-17.352000px;}
.wsa{word-spacing:-17.064000px;}
.ws7{word-spacing:-16.704000px;}
.ws14{word-spacing:-16.560000px;}
.ws17{word-spacing:-16.272000px;}
.ws1a{word-spacing:-15.912000px;}
.ws15{word-spacing:-15.624000px;}
.wsc{word-spacing:-15.264000px;}
.ws1b{word-spacing:-15.120000px;}
.ws6{word-spacing:-12.600000px;}
.ws0{word-spacing:0.000000px;}
._2f{margin-left:-18.725760px;}
._f{margin-left:-16.200000px;}
._e{margin-left:-14.568000px;}
._6{margin-left:-13.044000px;}
._d{margin-left:-11.412000px;}
._8{margin-left:-10.356000px;}
._3{margin-left:-8.700000px;}
._a{margin-left:-7.490400px;}
._7{margin-left:-5.760000px;}
._c{margin-left:-4.272000px;}
._12{margin-left:-3.228000px;}
._9{margin-left:-2.220000px;}
._0{margin-left:-1.080000px;}
._1{width:1.284000px;}
._2{width:2.294400px;}
._11{width:3.816000px;}
._b{width:4.908000px;}
._10{width:6.108000px;}
._20{width:8.083200px;}
._16{width:9.168000px;}
._14{width:10.584000px;}
._13{width:11.664000px;}
._15{width:13.032000px;}
._18{width:14.484000px;}
._19{width:15.612000px;}
._1a{width:16.680000px;}
._22{width:19.356000px;}
._21{width:20.676000px;}
._1d{width:22.176000px;}
._17{width:23.544000px;}
._28{width:25.053600px;}
._1b{width:26.424000px;}
._2a{width:27.453600px;}
._1c{width:28.728000px;}
._1e{width:30.612000px;}
._1f{width:32.580000px;}
._23{width:34.620000px;}
._29{width:35.868000px;}
._26{width:37.224000px;}
._27{width:38.460000px;}
._24{width:39.801600px;}
._25{width:41.560800px;}
._2b{width:52.056000px;}
._2c{width:53.172000px;}
._2d{width:97.788000px;}
._2e{width:115.495200px;}
._5{width:144.684000px;}
._30{width:172.577280px;}
._4{width:198.156000px;}
.fc6{color:rgb(17,85,204);}
.fc5{color:rgb(70,120,134);}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(15,71,97);}
.fc1{color:rgb(165,0,33);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:47.520000px;}
.fs4{font-size:53.130000px;}
.fsa{font-size:60.480000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:75.893905px;}
.fs2{font-size:83.520000px;}
.fs9{font-size:86.400000px;}
.fs3{font-size:93.606000px;}
.fs5{font-size:96.480000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y123{bottom:3.960000px;}
.yf3{bottom:4.320000px;}
.yef{bottom:4.680000px;}
.y31{bottom:5.386500px;}
.yc4{bottom:5.400000px;}
.ya9{bottom:6.840000px;}
.yee{bottom:7.200000px;}
.y2a{bottom:8.126100px;}
.yaa{bottom:12.600000px;}
.yc1{bottom:15.480000px;}
.yc0{bottom:15.840000px;}
.y134{bottom:16.200000px;}
.y121{bottom:16.554000px;}
.y120{bottom:16.605000px;}
.y30{bottom:21.325500px;}
.yf1{bottom:24.840000px;}
.ya8{bottom:25.200000px;}
.ybc{bottom:25.230000px;}
.y135{bottom:25.560000px;}
.y132{bottom:25.920000px;}
.yc3{bottom:26.280000px;}
.y29{bottom:36.207900px;}
.y2f{bottom:37.264500px;}
.y26{bottom:39.073650px;}
.yc2{bottom:43.560000px;}
.yaf{bottom:45.360000px;}
.yfc{bottom:45.714000px;}
.yf2{bottom:45.720000px;}
.yb7{bottom:45.750000px;}
.yf5{bottom:46.110000px;}
.y103{bottom:46.125000px;}
.y2e{bottom:53.203500px;}
.y131{bottom:53.640000px;}
.ybe{bottom:56.190000px;}
.y5f{bottom:57.240000px;}
.y28{bottom:64.289700px;}
.yae{bottom:66.240000px;}
.yb6{bottom:66.270000px;}
.yfb{bottom:66.594000px;}
.yac{bottom:66.600000px;}
.ybb{bottom:66.630000px;}
.y102{bottom:66.645000px;}
.y2d{bottom:69.142500px;}
.yb3{bottom:77.070000px;}
.y5e{bottom:78.156000px;}
.y130{bottom:81.360000px;}
.y2c{bottom:85.081500px;}
.yad{bottom:86.790000px;}
.y108{bottom:87.120000px;}
.yb5{bottom:87.150000px;}
.yfa{bottom:87.159000px;}
.yba{bottom:87.510000px;}
.y101{bottom:87.525000px;}
.y27{bottom:92.371500px;}
.y2b{bottom:101.020500px;}
.yb4{bottom:107.670000px;}
.yb1{bottom:108.030000px;}
.yf9{bottom:108.039000px;}
.y100{bottom:108.045000px;}
.y12f{bottom:108.720000px;}
.y11e{bottom:112.719000px;}
.y53{bottom:115.596000px;}
.y1c1{bottom:115.605000px;}
.yeb{bottom:116.676000px;}
.y25{bottom:117.756000px;}
.yf6{bottom:119.196000px;}
.y19f{bottom:120.276000px;}
.y1e1{bottom:122.796000px;}
.y81{bottom:123.156000px;}
.y18c{bottom:124.236000px;}
.ycf{bottom:126.036000px;}
.y105{bottom:128.190000px;}
.yf7{bottom:128.199000px;}
.y107{bottom:128.205000px;}
.yb0{bottom:128.550000px;}
.yf8{bottom:128.559000px;}
.yfe{bottom:128.565000px;}
.yb9{bottom:128.910000px;}
.yff{bottom:128.925000px;}
.y1c8{bottom:129.636000px;}
.y170{bottom:131.076000px;}
.y9f{bottom:135.036000px;}
.y148{bottom:136.476000px;}
.y24{bottom:138.636000px;}
.y164{bottom:141.156000px;}
.y11d{bottom:141.876000px;}
.y52{bottom:146.556000px;}
.yea{bottom:147.996000px;}
.y10a{bottom:149.070000px;}
.y116{bottom:149.076000px;}
.y10b{bottom:149.430000px;}
.yb8{bottom:149.475000px;}
.ya3{bottom:154.110000px;}
.y80{bottom:154.470000px;}
.y18b{bottom:155.190000px;}
.yce{bottom:156.990000px;}
.y23{bottom:159.150000px;}
.y9e{bottom:165.990000px;}
.y11a{bottom:167.430000px;}
.y147{bottom:167.790000px;}
.y16f{bottom:169.230000px;}
.y1c7{bottom:171.030000px;}
.y1e0{bottom:174.630000px;}
.y51{bottom:177.510000px;}
.y163{bottom:178.230000px;}
.y11f{bottom:178.590000px;}
.ye9{bottom:178.950000px;}
.y22{bottom:180.030000px;}
.y7f{bottom:185.430000px;}
.y18a{bottom:186.150000px;}
.ycd{bottom:187.950000px;}
.y1b4{bottom:189.750000px;}
.y9d{bottom:196.995000px;}
.y119{bottom:198.435000px;}
.y146{bottom:198.795000px;}
.y21{bottom:200.595000px;}
.y16e{bottom:208.155000px;}
.y50{bottom:208.875000px;}
.ye8{bottom:209.955000px;}
.y115{bottom:211.035000px;}
.y1c6{bottom:212.475000px;}
.y162{bottom:215.715000px;}
.yd2{bottom:216.075000px;}
.y7e{bottom:216.435000px;}
.y189{bottom:217.515000px;}
.y19e{bottom:218.595000px;}
.ycc{bottom:218.955000px;}
.y1b3{bottom:221.115000px;}
.y20{bottom:221.475000px;}
.y1df{bottom:226.515000px;}
.y9c{bottom:227.955000px;}
.y118{bottom:229.395000px;}
.y145{bottom:229.755000px;}
.y4f{bottom:239.835000px;}
.ye7{bottom:240.915000px;}
.y1f{bottom:241.995000px;}
.y16d{bottom:242.715000px;}
.yd1{bottom:247.035000px;}
.y7d{bottom:247.395000px;}
.y1c5{bottom:249.555000px;}
.ycb{bottom:249.915000px;}
.y161{bottom:252.795000px;}
.y1de{bottom:257.835000px;}
.y117{bottom:260.355000px;}
.y144{bottom:260.715000px;}
.y1e{bottom:262.875000px;}
.y188{bottom:266.475000px;}
.y19d{bottom:267.555000px;}
.y9b{bottom:268.995000px;}
.y1b2{bottom:270.075000px;}
.y4e{bottom:270.795000px;}
.ye6{bottom:272.235000px;}
.y114{bottom:273.315000px;}
.ya1{bottom:278.355000px;}
.y7c{bottom:278.715000px;}
.yf4{bottom:280.515000px;}
.yca{bottom:281.235000px;}
.y1d{bottom:283.395000px;}
.y1dd{bottom:288.795000px;}
.y160{bottom:289.875000px;}
.y143{bottom:292.035000px;}
.y9a{bottom:299.955000px;}
.y4d{bottom:301.755000px;}
.ye5{bottom:303.195000px;}
.y113{bottom:304.275000px;}
.y1c{bottom:304.635000px;}
.ya0{bottom:309.315000px;}
.y7b{bottom:309.675000px;}
.y1c4{bottom:311.475000px;}
.yc9{bottom:311.835000px;}
.y187{bottom:315.435000px;}
.y19c{bottom:316.515000px;}
.y1b1{bottom:319.035000px;}
.y1dc{bottom:320.145000px;}
.y142{bottom:323.025000px;}
.y1b{bottom:324.825000px;}
.y15f{bottom:327.345000px;}
.y4c{bottom:333.105000px;}
.ye4{bottom:334.185000px;}
.y112{bottom:335.265000px;}
.ya5{bottom:340.305000px;}
.y7a{bottom:340.665000px;}
.y99{bottom:341.025000px;}
.y1c3{bottom:342.825000px;}
.yc8{bottom:343.185000px;}
.y1a{bottom:346.425000px;}
.y141{bottom:353.985000px;}
.y1db{bottom:355.425000px;}
.yf0{bottom:359.385000px;}
.y4b{bottom:364.065000px;}
.y15e{bottom:364.425000px;}
.ye3{bottom:365.145000px;}
.y19b{bottom:365.505000px;}
.y111{bottom:366.225000px;}
.y1b0{bottom:368.025000px;}
.y19{bottom:370.545000px;}
.y79{bottom:371.265000px;}
.y86{bottom:371.625000px;}
.y98{bottom:371.985000px;}
.y1c2{bottom:373.785000px;}
.yc7{bottom:374.145000px;}
.y186{bottom:377.745000px;}
.y140{bottom:384.945000px;}
.y1c0{bottom:390.705000px;}
.y16a{bottom:391.425000px;}
.y11c{bottom:392.145000px;}
.y18{bottom:394.665000px;}
.y4a{bottom:395.025000px;}
.ye2{bottom:396.465000px;}
.y1da{bottom:396.825000px;}
.y110{bottom:397.545000px;}
.y15d{bottom:401.505000px;}
.y78{bottom:402.585000px;}
.y85{bottom:402.945000px;}
.yc6{bottom:405.465000px;}
.y185{bottom:408.705000px;}
.y11b{bottom:412.665000px;}
.y19a{bottom:414.825000px;}
.y13f{bottom:415.905000px;}
.y1af{bottom:416.985000px;}
.y17{bottom:418.785000px;}
.y49{bottom:425.985000px;}
.ye1{bottom:427.425000px;}
.y10f{bottom:428.505000px;}
.y77{bottom:433.545000px;}
.y84{bottom:433.905000px;}
.y15c{bottom:435.705000px;}
.yc5{bottom:436.425000px;}
.yed{bottom:437.865000px;}
.y1d9{bottom:438.225000px;}
.y184{bottom:439.665000px;}
.y16{bottom:442.905000px;}
.y199{bottom:445.785000px;}
.y13e{bottom:447.270000px;}
.y15b{bottom:456.630000px;}
.y48{bottom:457.350000px;}
.ye0{bottom:458.430000px;}
.y10e{bottom:459.510000px;}
.ybf{bottom:461.670000px;}
.y76{bottom:464.910000px;}
.y1ae{bottom:466.350000px;}
.y15{bottom:467.070000px;}
.y13d{bottom:467.790000px;}
.y183{bottom:470.670000px;}
.y97{bottom:474.990000px;}
.yec{bottom:475.350000px;}
.y15a{bottom:477.150000px;}
.y1d8{bottom:479.670000px;}
.y47{bottom:488.310000px;}
.y13c{bottom:488.670000px;}
.ydf{bottom:489.390000px;}
.y10d{bottom:490.470000px;}
.y14{bottom:491.190000px;}
.y75{bottom:495.870000px;}
.y1ad{bottom:497.310000px;}
.y182{bottom:501.990000px;}
.y159{bottom:502.350000px;}
.y96{bottom:505.950000px;}
.y198{bottom:508.110000px;}
.y13b{bottom:509.190000px;}
.y10c{bottom:511.350000px;}
.y13{bottom:515.310000px;}
.y46{bottom:519.270000px;}
.yde{bottom:520.710000px;}
.y1d7{bottom:521.070000px;}
.ybd{bottom:521.790000px;}
.y74{bottom:526.830000px;}
.y83{bottom:527.190000px;}
.y1ac{bottom:528.270000px;}
.y181{bottom:532.950000px;}
.y109{bottom:536.550000px;}
.y95{bottom:537.270000px;}
.y1bf{bottom:538.350000px;}
.y197{bottom:539.430000px;}
.y158{bottom:539.790000px;}
.y45{bottom:550.230000px;}
.y13a{bottom:550.590000px;}
.y12{bottom:551.310000px;}
.ydd{bottom:551.670000px;}
.y73{bottom:558.150000px;}
.y1ab{bottom:559.590000px;}
.y180{bottom:563.910000px;}
.y94{bottom:568.230000px;}
.y1be{bottom:568.950000px;}
.y196{bottom:570.390000px;}
.y157{bottom:576.900000px;}
.y44{bottom:581.580000px;}
.ydc{bottom:582.660000px;}
.y11{bottom:587.700000px;}
.y72{bottom:589.140000px;}
.y17f{bottom:594.900000px;}
.y93{bottom:599.220000px;}
.y1bd{bottom:599.940000px;}
.y16c{bottom:601.380000px;}
.y195{bottom:601.740000px;}
.y1aa{bottom:608.580000px;}
.y10{bottom:611.460000px;}
.y43{bottom:612.540000px;}
.y139{bottom:612.900000px;}
.ydb{bottom:613.620000px;}
.y156{bottom:613.980000px;}
.y71{bottom:620.100000px;}
.y1d6{bottom:624.420000px;}
.y92{bottom:630.180000px;}
.y1bc{bottom:631.260000px;}
.yf{bottom:631.980000px;}
.y194{bottom:632.700000px;}
.y42{bottom:643.500000px;}
.y138{bottom:643.860000px;}
.y17e{bottom:644.220000px;}
.yda{bottom:644.940000px;}
.y70{bottom:651.420000px;}
.ye{bottom:652.860000px;}
.y1a9{bottom:657.540000px;}
.y91{bottom:661.140000px;}
.y193{bottom:664.020000px;}
.y1d5{bottom:665.820000px;}
.yd{bottom:673.380000px;}
.y41{bottom:674.460000px;}
.y137{bottom:674.820000px;}
.yd9{bottom:675.900000px;}
.y1bb{bottom:680.580000px;}
.y6f{bottom:682.380000px;}
.yb2{bottom:683.100000px;}
.y155{bottom:688.500000px;}
.y17d{bottom:693.180000px;}
.yc{bottom:694.260000px;}
.y192{bottom:694.980000px;}
.y136{bottom:695.700000px;}
.y90{bottom:702.210000px;}
.y40{bottom:705.810000px;}
.y1a8{bottom:706.530000px;}
.yd8{bottom:706.890000px;}
.y1d4{bottom:707.250000px;}
.ya2{bottom:713.010000px;}
.y6e{bottom:713.370000px;}
.y12e{bottom:714.450000px;}
.yb{bottom:716.610000px;}
.y106{bottom:718.770000px;}
.y17c{bottom:724.170000px;}
.y154{bottom:725.610000px;}
.y1ba{bottom:729.570000px;}
.y8f{bottom:733.170000px;}
.y3f{bottom:736.770000px;}
.yd7{bottom:737.850000px;}
.ya4{bottom:743.970000px;}
.y6d{bottom:744.330000px;}
.y1ea{bottom:745.050000px;}
.y169{bottom:747.210000px;}
.ya{bottom:747.570000px;}
.y1d3{bottom:748.650000px;}
.y17b{bottom:755.130000px;}
.y153{bottom:763.050000px;}
.y8e{bottom:764.130000px;}
.y3e{bottom:767.730000px;}
.yd6{bottom:769.170000px;}
.y133{bottom:769.530000px;}
.y6c{bottom:775.650000px;}
.y1e9{bottom:776.010000px;}
.y9{bottom:778.530000px;}
.y17a{bottom:786.450000px;}
.y1a7{bottom:786.810000px;}
.y1d2{bottom:790.050000px;}
.y191{bottom:793.290000px;}
.y152{bottom:797.250000px;}
.y3d{bottom:798.690000px;}
.yd5{bottom:800.130000px;}
.y1e8{bottom:802.650000px;}
.y8d{bottom:805.170000px;}
.yd0{bottom:806.250000px;}
.y6b{bottom:806.610000px;}
.y8{bottom:809.490000px;}
.y1b9{bottom:809.850000px;}
.y179{bottom:817.410000px;}
.y151{bottom:828.255000px;}
.y3c{bottom:830.055000px;}
.yd4{bottom:831.135000px;}
.y1d1{bottom:831.495000px;}
.y1a6{bottom:835.815000px;}
.y8c{bottom:836.175000px;}
.y87{bottom:837.255000px;}
.y6a{bottom:837.615000px;}
.y5d{bottom:838.335000px;}
.y7{bottom:840.855000px;}
.y190{bottom:841.935000px;}
.y150{bottom:858.855000px;}
.y12d{bottom:859.215000px;}
.y3b{bottom:861.015000px;}
.yd3{bottom:864.975000px;}
.yab{bottom:865.335000px;}
.y178{bottom:866.415000px;}
.y8b{bottom:867.495000px;}
.y5c{bottom:868.215000px;}
.y69{bottom:868.575000px;}
.y1d0{bottom:872.895000px;}
.y12c{bottom:879.735000px;}
.y104{bottom:880.095000px;}
.y18f{bottom:883.695000px;}
.y1a5{bottom:884.775000px;}
.y16b{bottom:889.455000px;}
.y14f{bottom:889.815000px;}
.y3a{bottom:891.975000px;}
.y8a{bottom:898.455000px;}
.y5b{bottom:899.535000px;}
.y68{bottom:899.895000px;}
.y12b{bottom:900.615000px;}
.y6{bottom:901.335000px;}
.y1b8{bottom:907.815000px;}
.y1e7{bottom:909.975000px;}
.y14e{bottom:911.055000px;}
.y1cf{bottom:914.295000px;}
.y177{bottom:915.375000px;}
.y5{bottom:922.215000px;}
.y39{bottom:922.935000px;}
.y18e{bottom:925.455000px;}
.y89{bottom:929.415000px;}
.y5a{bottom:930.495000px;}
.y67{bottom:930.855000px;}
.y12a{bottom:931.575000px;}
.y1a4{bottom:933.735000px;}
.y1e6{bottom:941.295000px;}
.y14d{bottom:942.015000px;}
.y4{bottom:942.735000px;}
.y176{bottom:946.695000px;}
.y1ce{bottom:951.405000px;}
.y38{bottom:954.285000px;}
.y1b7{bottom:956.805000px;}
.y88{bottom:960.405000px;}
.y59{bottom:961.485000px;}
.y66{bottom:961.845000px;}
.y129{bottom:962.565000px;}
.y3{bottom:963.645000px;}
.y14c{bottom:973.005000px;}
.y18d{bottom:974.805000px;}
.y1e5{bottom:976.605000px;}
.y175{bottom:977.685000px;}
.y1cd{bottom:982.725000px;}
.y1a3{bottom:983.085000px;}
.y2{bottom:983.805000px;}
.y37{bottom:985.245000px;}
.y58{bottom:992.445000px;}
.y65{bottom:992.805000px;}
.y128{bottom:993.525000px;}
.y1{bottom:1000.725000px;}
.y14b{bottom:1003.965000px;}
.y1b6{bottom:1005.765000px;}
.y174{bottom:1008.645000px;}
.y1cc{bottom:1013.685000px;}
.y36{bottom:1016.205000px;}
.y57{bottom:1023.405000px;}
.y64{bottom:1023.765000px;}
.y127{bottom:1024.845000px;}
.ya7{bottom:1026.645000px;}
.y1a2{bottom:1031.685000px;}
.y1b5{bottom:1037.085000px;}
.y173{bottom:1039.605000px;}
.y14a{bottom:1041.045000px;}
.yfd{bottom:1041.405000px;}
.y1e4{bottom:1044.645000px;}
.y126{bottom:1045.365000px;}
.y35{bottom:1047.165000px;}
.y1cb{bottom:1048.965000px;}
.y56{bottom:1054.725000px;}
.y63{bottom:1055.085000px;}
.ya6{bottom:1065.165000px;}
.y125{bottom:1070.565000px;}
.y1e3{bottom:1075.605000px;}
.y1a1{bottom:1081.050000px;}
.y168{bottom:1082.490000px;}
.y34{bottom:1085.730000px;}
.y62{bottom:1086.090000px;}
.y1ca{bottom:1090.410000px;}
.y172{bottom:1101.930000px;}
.y167{bottom:1103.370000px;}
.y124{bottom:1107.690000px;}
.y55{bottom:1116.690000px;}
.y61{bottom:1117.050000px;}
.y33{bottom:1123.890000px;}
.y1e2{bottom:1127.130000px;}
.y166{bottom:1128.570000px;}
.y1a0{bottom:1130.010000px;}
.y1c9{bottom:1131.810000px;}
.y171{bottom:1140.450000px;}
.y122{bottom:1145.130000px;}
.y54{bottom:1147.650000px;}
.y60{bottom:1148.010000px;}
.y165{bottom:1165.650000px;}
.y149{bottom:1173.210000px;}
.y32{bottom:1178.970000px;}
.y82{bottom:1179.330000px;}
.h20{height:20.520000px;}
.h27{height:20.556000px;}
.h21{height:20.880000px;}
.h22{height:20.916000px;}
.h18{height:23.796000px;}
.h13{height:25.200000px;}
.h25{height:32.760000px;}
.h1e{height:33.120000px;}
.h1d{height:33.156000px;}
.h16{height:43.560000px;}
.h9{height:50.579760px;}
.h26{height:51.120000px;}
.h10{height:52.695866px;}
.hc{height:55.987031px;}
.h1f{height:59.357813px;}
.h19{height:61.920000px;}
.h1a{height:62.316000px;}
.he{height:64.546875px;}
.hd{height:70.628906px;}
.h2{height:70.664062px;}
.h11{height:71.824219px;}
.h3{height:72.562500px;}
.hf{height:73.998281px;}
.hb{height:74.953125px;}
.h12{height:75.093750px;}
.ha{height:81.546328px;}
.h6{height:81.970312px;}
.h5{height:84.172500px;}
.h17{height:84.796875px;}
.h8{height:89.112912px;}
.h24{height:100.625625px;}
.h4{height:108.843750px;}
.h1c{height:112.716000px;}
.h7{height:114.163350px;}
.h23{height:131.076000px;}
.h28{height:131.796000px;}
.h14{height:144.756000px;}
.h1b{height:145.116000px;}
.h15{height:165.675000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:3.240000px;}
.wd{width:3.960000px;}
.wf{width:47.520000px;}
.we{width:47.556000px;}
.w11{width:47.880000px;}
.w10{width:47.916000px;}
.w5{width:73.080000px;}
.w6{width:104.832000px;}
.w4{width:118.162304px;}
.w3{width:120.573370px;}
.w8{width:126.036000px;}
.w9{width:141.192000px;}
.w17{width:146.232000px;}
.w1a{width:157.395000px;}
.w19{width:159.510000px;}
.w18{width:168.915000px;}
.w16{width:186.195000px;}
.wb{width:211.395000px;}
.w15{width:223.635000px;}
.w14{width:223.665000px;}
.w7{width:285.585000px;}
.wa{width:312.225000px;}
.w1b{width:609.375000px;}
.w12{width:632.775000px;}
.wc{width:635.655000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2e{left:1.080000px;}
.x16{left:6.843000px;}
.x1d{left:8.643000px;}
.x24{left:12.270000px;}
.x1f{left:18.030000px;}
.x23{left:21.630000px;}
.x22{left:24.120000px;}
.x18{left:27.030000px;}
.x1e{left:30.270000px;}
.x2a{left:31.719000px;}
.x20{left:34.590000px;}
.x4d{left:41.439000px;}
.x4e{left:43.605000px;}
.x21{left:45.720000px;}
.x4a{left:47.919000px;}
.x4c{left:49.365000px;}
.x46{left:50.799000px;}
.x47{left:52.560000px;}
.x49{left:54.765000px;}
.x4f{left:56.205000px;}
.x50{left:59.040000px;}
.x4b{left:61.965000px;}
.x1c{left:63.000000px;}
.x25{left:75.960000px;}
.x27{left:78.120000px;}
.x26{left:87.840000px;}
.x43{left:91.125000px;}
.x40{left:104.109000px;}
.x45{left:106.950000px;}
.x44{left:109.149000px;}
.x3{left:127.475987px;}
.x29{left:129.276000px;}
.x7{left:132.408755px;}
.x3b{left:140.829000px;}
.x1a{left:142.590000px;}
.x3c{left:144.069000px;}
.x15{left:149.472000px;}
.xa{left:154.514987px;}
.xf{left:160.994987px;}
.x12{left:162.794987px;}
.x2f{left:178.275000px;}
.x11{left:180.434987px;}
.xb{left:181.514987px;}
.x28{left:190.874987px;}
.xc{left:208.514987px;}
.x17{left:223.995000px;}
.x30{left:227.235000px;}
.xd{left:235.544987px;}
.x8{left:255.391692px;}
.x5{left:257.504987px;}
.x3e{left:261.104987px;}
.xe{left:262.544987px;}
.x2b{left:271.905000px;}
.x31{left:276.585000px;}
.x32{left:325.545000px;}
.x2{left:327.344987px;}
.x19{left:330.630000px;}
.x6{left:334.589987px;}
.x9{left:349.349987px;}
.x41{left:354.390000px;}
.x14{left:371.669987px;}
.x33{left:374.550000px;}
.x34{left:423.540000px;}
.x13{left:437.579987px;}
.x10{left:441.899987px;}
.x52{left:444.779987px;}
.x4{left:446.579987px;}
.x35{left:472.860000px;}
.x53{left:476.099987px;}
.x36{left:521.850000px;}
.x51{left:530.129987px;}
.x1{left:559.649987px;}
.x37{left:570.810000px;}
.x42{left:579.450000px;}
.x2c{left:585.570000px;}
.x48{left:608.250000px;}
.x1b{left:617.655000px;}
.x38{left:619.815000px;}
.x39{left:669.135000px;}
.x3f{left:715.964987px;}
.x3a{left:718.125000px;}
.x54{left:751.964987px;}
.x3d{left:763.125000px;}
.x2d{left:765.645000px;}
@media print{
.v1{vertical-align:-104.960000pt;}
.v4{vertical-align:-74.240000pt;}
.v5{vertical-align:-72.960000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls2a{letter-spacing:-2.560000pt;}
.ls14{letter-spacing:-2.432000pt;}
.ls24{letter-spacing:-2.112000pt;}
.ls29{letter-spacing:-1.856000pt;}
.ls26{letter-spacing:-1.536000pt;}
.ls39{letter-spacing:-1.408000pt;}
.ls22{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-1.152000pt;}
.ls25{letter-spacing:-0.869333pt;}
.ls10{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.576000pt;}
.ls5{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls2b{letter-spacing:0.170667pt;}
.ls2e{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.256000pt;}
.ls2c{letter-spacing:0.266667pt;}
.ls8{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.576000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.880000pt;}
.ls17{letter-spacing:1.024000pt;}
.ls13{letter-spacing:1.152000pt;}
.ls15{letter-spacing:1.280000pt;}
.ls12{letter-spacing:1.408000pt;}
.ls16{letter-spacing:1.728000pt;}
.ls2f{letter-spacing:1.834667pt;}
.ls9{letter-spacing:1.920000pt;}
.ls3d{letter-spacing:3.038720pt;}
.ls23{letter-spacing:3.200000pt;}
.lsc{letter-spacing:4.480000pt;}
.ls3e{letter-spacing:8.160000pt;}
.ls3c{letter-spacing:8.320000pt;}
.ls41{letter-spacing:8.586667pt;}
.ls3b{letter-spacing:8.640000pt;}
.ls3f{letter-spacing:9.120000pt;}
.ls40{letter-spacing:9.226667pt;}
.ls33{letter-spacing:12.928000pt;}
.ls3{letter-spacing:29.568000pt;}
.ls30{letter-spacing:33.408000pt;}
.ls34{letter-spacing:37.248000pt;}
.lse{letter-spacing:39.808000pt;}
.ls31{letter-spacing:41.088000pt;}
.ls32{letter-spacing:44.928000pt;}
.lsd{letter-spacing:48.768000pt;}
.ls3a{letter-spacing:56.734720pt;}
.ls19{letter-spacing:65.920000pt;}
.ls1e{letter-spacing:92.800000pt;}
.ls36{letter-spacing:125.578667pt;}
.ls35{letter-spacing:129.418667pt;}
.ls37{letter-spacing:137.226667pt;}
.ls38{letter-spacing:141.066667pt;}
.ls1f{letter-spacing:163.200000pt;}
.ls1b{letter-spacing:210.560000pt;}
.ls1c{letter-spacing:223.360000pt;}
.ls1a{letter-spacing:238.720000pt;}
.ls1d{letter-spacing:282.240000pt;}
.ls20{letter-spacing:302.826667pt;}
.ls0{letter-spacing:354.058667pt;}
.ls2d{letter-spacing:685.685333pt;}
.ws13{word-spacing:-64.000000pt;}
.ws1d{word-spacing:-53.760000pt;}
.ws22{word-spacing:-33.067947pt;}
.ws21{word-spacing:-32.961280pt;}
.ws1e{word-spacing:-32.481280pt;}
.ws23{word-spacing:-32.427947pt;}
.ws1f{word-spacing:-32.161280pt;}
.ws20{word-spacing:-32.001280pt;}
.ws24{word-spacing:-24.481280pt;}
.ws16{word-spacing:-18.330667pt;}
.ws1c{word-spacing:-17.984000pt;}
.ws9{word-spacing:-17.792000pt;}
.wsd{word-spacing:-17.408000pt;}
.wsf{word-spacing:-17.280000pt;}
.wsb{word-spacing:-17.152000pt;}
.ws10{word-spacing:-17.024000pt;}
.ws2{word-spacing:-16.640000pt;}
.wse{word-spacing:-16.576000pt;}
.ws5{word-spacing:-16.448000pt;}
.ws19{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws18{word-spacing:-15.872000pt;}
.ws12{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws11{word-spacing:-15.552000pt;}
.ws3{word-spacing:-15.424000pt;}
.wsa{word-spacing:-15.168000pt;}
.ws7{word-spacing:-14.848000pt;}
.ws14{word-spacing:-14.720000pt;}
.ws17{word-spacing:-14.464000pt;}
.ws1a{word-spacing:-14.144000pt;}
.ws15{word-spacing:-13.888000pt;}
.wsc{word-spacing:-13.568000pt;}
.ws1b{word-spacing:-13.440000pt;}
.ws6{word-spacing:-11.200000pt;}
.ws0{word-spacing:0.000000pt;}
._2f{margin-left:-16.645120pt;}
._f{margin-left:-14.400000pt;}
._e{margin-left:-12.949333pt;}
._6{margin-left:-11.594667pt;}
._d{margin-left:-10.144000pt;}
._8{margin-left:-9.205333pt;}
._3{margin-left:-7.733333pt;}
._a{margin-left:-6.658133pt;}
._7{margin-left:-5.120000pt;}
._c{margin-left:-3.797333pt;}
._12{margin-left:-2.869333pt;}
._9{margin-left:-1.973333pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.141333pt;}
._2{width:2.039467pt;}
._11{width:3.392000pt;}
._b{width:4.362667pt;}
._10{width:5.429333pt;}
._20{width:7.185067pt;}
._16{width:8.149333pt;}
._14{width:9.408000pt;}
._13{width:10.368000pt;}
._15{width:11.584000pt;}
._18{width:12.874667pt;}
._19{width:13.877333pt;}
._1a{width:14.826667pt;}
._22{width:17.205333pt;}
._21{width:18.378667pt;}
._1d{width:19.712000pt;}
._17{width:20.928000pt;}
._28{width:22.269867pt;}
._1b{width:23.488000pt;}
._2a{width:24.403200pt;}
._1c{width:25.536000pt;}
._1e{width:27.210667pt;}
._1f{width:28.960000pt;}
._23{width:30.773333pt;}
._29{width:31.882667pt;}
._26{width:33.088000pt;}
._27{width:34.186667pt;}
._24{width:35.379200pt;}
._25{width:36.942933pt;}
._2b{width:46.272000pt;}
._2c{width:47.264000pt;}
._2d{width:86.922667pt;}
._2e{width:102.662400pt;}
._5{width:128.608000pt;}
._30{width:153.402027pt;}
._4{width:176.138667pt;}
.fs7{font-size:42.240000pt;}
.fs4{font-size:47.226667pt;}
.fsa{font-size:53.760000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:67.461249pt;}
.fs2{font-size:74.240000pt;}
.fs9{font-size:76.800000pt;}
.fs3{font-size:83.205333pt;}
.fs5{font-size:85.760000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y123{bottom:3.520000pt;}
.yf3{bottom:3.840000pt;}
.yef{bottom:4.160000pt;}
.y31{bottom:4.788000pt;}
.yc4{bottom:4.800000pt;}
.ya9{bottom:6.080000pt;}
.yee{bottom:6.400000pt;}
.y2a{bottom:7.223200pt;}
.yaa{bottom:11.200000pt;}
.yc1{bottom:13.760000pt;}
.yc0{bottom:14.080000pt;}
.y134{bottom:14.400000pt;}
.y121{bottom:14.714667pt;}
.y120{bottom:14.760000pt;}
.y30{bottom:18.956000pt;}
.yf1{bottom:22.080000pt;}
.ya8{bottom:22.400000pt;}
.ybc{bottom:22.426667pt;}
.y135{bottom:22.720000pt;}
.y132{bottom:23.040000pt;}
.yc3{bottom:23.360000pt;}
.y29{bottom:32.184800pt;}
.y2f{bottom:33.124000pt;}
.y26{bottom:34.732133pt;}
.yc2{bottom:38.720000pt;}
.yaf{bottom:40.320000pt;}
.yfc{bottom:40.634667pt;}
.yf2{bottom:40.640000pt;}
.yb7{bottom:40.666667pt;}
.yf5{bottom:40.986667pt;}
.y103{bottom:41.000000pt;}
.y2e{bottom:47.292000pt;}
.y131{bottom:47.680000pt;}
.ybe{bottom:49.946667pt;}
.y5f{bottom:50.880000pt;}
.y28{bottom:57.146400pt;}
.yae{bottom:58.880000pt;}
.yb6{bottom:58.906667pt;}
.yfb{bottom:59.194667pt;}
.yac{bottom:59.200000pt;}
.ybb{bottom:59.226667pt;}
.y102{bottom:59.240000pt;}
.y2d{bottom:61.460000pt;}
.yb3{bottom:68.506667pt;}
.y5e{bottom:69.472000pt;}
.y130{bottom:72.320000pt;}
.y2c{bottom:75.628000pt;}
.yad{bottom:77.146667pt;}
.y108{bottom:77.440000pt;}
.yb5{bottom:77.466667pt;}
.yfa{bottom:77.474667pt;}
.yba{bottom:77.786667pt;}
.y101{bottom:77.800000pt;}
.y27{bottom:82.108000pt;}
.y2b{bottom:89.796000pt;}
.yb4{bottom:95.706667pt;}
.yb1{bottom:96.026667pt;}
.yf9{bottom:96.034667pt;}
.y100{bottom:96.040000pt;}
.y12f{bottom:96.640000pt;}
.y11e{bottom:100.194667pt;}
.y53{bottom:102.752000pt;}
.y1c1{bottom:102.760000pt;}
.yeb{bottom:103.712000pt;}
.y25{bottom:104.672000pt;}
.yf6{bottom:105.952000pt;}
.y19f{bottom:106.912000pt;}
.y1e1{bottom:109.152000pt;}
.y81{bottom:109.472000pt;}
.y18c{bottom:110.432000pt;}
.ycf{bottom:112.032000pt;}
.y105{bottom:113.946667pt;}
.yf7{bottom:113.954667pt;}
.y107{bottom:113.960000pt;}
.yb0{bottom:114.266667pt;}
.yf8{bottom:114.274667pt;}
.yfe{bottom:114.280000pt;}
.yb9{bottom:114.586667pt;}
.yff{bottom:114.600000pt;}
.y1c8{bottom:115.232000pt;}
.y170{bottom:116.512000pt;}
.y9f{bottom:120.032000pt;}
.y148{bottom:121.312000pt;}
.y24{bottom:123.232000pt;}
.y164{bottom:125.472000pt;}
.y11d{bottom:126.112000pt;}
.y52{bottom:130.272000pt;}
.yea{bottom:131.552000pt;}
.y10a{bottom:132.506667pt;}
.y116{bottom:132.512000pt;}
.y10b{bottom:132.826667pt;}
.yb8{bottom:132.866667pt;}
.ya3{bottom:136.986667pt;}
.y80{bottom:137.306667pt;}
.y18b{bottom:137.946667pt;}
.yce{bottom:139.546667pt;}
.y23{bottom:141.466667pt;}
.y9e{bottom:147.546667pt;}
.y11a{bottom:148.826667pt;}
.y147{bottom:149.146667pt;}
.y16f{bottom:150.426667pt;}
.y1c7{bottom:152.026667pt;}
.y1e0{bottom:155.226667pt;}
.y51{bottom:157.786667pt;}
.y163{bottom:158.426667pt;}
.y11f{bottom:158.746667pt;}
.ye9{bottom:159.066667pt;}
.y22{bottom:160.026667pt;}
.y7f{bottom:164.826667pt;}
.y18a{bottom:165.466667pt;}
.ycd{bottom:167.066667pt;}
.y1b4{bottom:168.666667pt;}
.y9d{bottom:175.106667pt;}
.y119{bottom:176.386667pt;}
.y146{bottom:176.706667pt;}
.y21{bottom:178.306667pt;}
.y16e{bottom:185.026667pt;}
.y50{bottom:185.666667pt;}
.ye8{bottom:186.626667pt;}
.y115{bottom:187.586667pt;}
.y1c6{bottom:188.866667pt;}
.y162{bottom:191.746667pt;}
.yd2{bottom:192.066667pt;}
.y7e{bottom:192.386667pt;}
.y189{bottom:193.346667pt;}
.y19e{bottom:194.306667pt;}
.ycc{bottom:194.626667pt;}
.y1b3{bottom:196.546667pt;}
.y20{bottom:196.866667pt;}
.y1df{bottom:201.346667pt;}
.y9c{bottom:202.626667pt;}
.y118{bottom:203.906667pt;}
.y145{bottom:204.226667pt;}
.y4f{bottom:213.186667pt;}
.ye7{bottom:214.146667pt;}
.y1f{bottom:215.106667pt;}
.y16d{bottom:215.746667pt;}
.yd1{bottom:219.586667pt;}
.y7d{bottom:219.906667pt;}
.y1c5{bottom:221.826667pt;}
.ycb{bottom:222.146667pt;}
.y161{bottom:224.706667pt;}
.y1de{bottom:229.186667pt;}
.y117{bottom:231.426667pt;}
.y144{bottom:231.746667pt;}
.y1e{bottom:233.666667pt;}
.y188{bottom:236.866667pt;}
.y19d{bottom:237.826667pt;}
.y9b{bottom:239.106667pt;}
.y1b2{bottom:240.066667pt;}
.y4e{bottom:240.706667pt;}
.ye6{bottom:241.986667pt;}
.y114{bottom:242.946667pt;}
.ya1{bottom:247.426667pt;}
.y7c{bottom:247.746667pt;}
.yf4{bottom:249.346667pt;}
.yca{bottom:249.986667pt;}
.y1d{bottom:251.906667pt;}
.y1dd{bottom:256.706667pt;}
.y160{bottom:257.666667pt;}
.y143{bottom:259.586667pt;}
.y9a{bottom:266.626667pt;}
.y4d{bottom:268.226667pt;}
.ye5{bottom:269.506667pt;}
.y113{bottom:270.466667pt;}
.y1c{bottom:270.786667pt;}
.ya0{bottom:274.946667pt;}
.y7b{bottom:275.266667pt;}
.y1c4{bottom:276.866667pt;}
.yc9{bottom:277.186667pt;}
.y187{bottom:280.386667pt;}
.y19c{bottom:281.346667pt;}
.y1b1{bottom:283.586667pt;}
.y1dc{bottom:284.573333pt;}
.y142{bottom:287.133333pt;}
.y1b{bottom:288.733333pt;}
.y15f{bottom:290.973333pt;}
.y4c{bottom:296.093333pt;}
.ye4{bottom:297.053333pt;}
.y112{bottom:298.013333pt;}
.ya5{bottom:302.493333pt;}
.y7a{bottom:302.813333pt;}
.y99{bottom:303.133333pt;}
.y1c3{bottom:304.733333pt;}
.yc8{bottom:305.053333pt;}
.y1a{bottom:307.933333pt;}
.y141{bottom:314.653333pt;}
.y1db{bottom:315.933333pt;}
.yf0{bottom:319.453333pt;}
.y4b{bottom:323.613333pt;}
.y15e{bottom:323.933333pt;}
.ye3{bottom:324.573333pt;}
.y19b{bottom:324.893333pt;}
.y111{bottom:325.533333pt;}
.y1b0{bottom:327.133333pt;}
.y19{bottom:329.373333pt;}
.y79{bottom:330.013333pt;}
.y86{bottom:330.333333pt;}
.y98{bottom:330.653333pt;}
.y1c2{bottom:332.253333pt;}
.yc7{bottom:332.573333pt;}
.y186{bottom:335.773333pt;}
.y140{bottom:342.173333pt;}
.y1c0{bottom:347.293333pt;}
.y16a{bottom:347.933333pt;}
.y11c{bottom:348.573333pt;}
.y18{bottom:350.813333pt;}
.y4a{bottom:351.133333pt;}
.ye2{bottom:352.413333pt;}
.y1da{bottom:352.733333pt;}
.y110{bottom:353.373333pt;}
.y15d{bottom:356.893333pt;}
.y78{bottom:357.853333pt;}
.y85{bottom:358.173333pt;}
.yc6{bottom:360.413333pt;}
.y185{bottom:363.293333pt;}
.y11b{bottom:366.813333pt;}
.y19a{bottom:368.733333pt;}
.y13f{bottom:369.693333pt;}
.y1af{bottom:370.653333pt;}
.y17{bottom:372.253333pt;}
.y49{bottom:378.653333pt;}
.ye1{bottom:379.933333pt;}
.y10f{bottom:380.893333pt;}
.y77{bottom:385.373333pt;}
.y84{bottom:385.693333pt;}
.y15c{bottom:387.293333pt;}
.yc5{bottom:387.933333pt;}
.yed{bottom:389.213333pt;}
.y1d9{bottom:389.533333pt;}
.y184{bottom:390.813333pt;}
.y16{bottom:393.693333pt;}
.y199{bottom:396.253333pt;}
.y13e{bottom:397.573333pt;}
.y15b{bottom:405.893333pt;}
.y48{bottom:406.533333pt;}
.ye0{bottom:407.493333pt;}
.y10e{bottom:408.453333pt;}
.ybf{bottom:410.373333pt;}
.y76{bottom:413.253333pt;}
.y1ae{bottom:414.533333pt;}
.y15{bottom:415.173333pt;}
.y13d{bottom:415.813333pt;}
.y183{bottom:418.373333pt;}
.y97{bottom:422.213333pt;}
.yec{bottom:422.533333pt;}
.y15a{bottom:424.133333pt;}
.y1d8{bottom:426.373333pt;}
.y47{bottom:434.053333pt;}
.y13c{bottom:434.373333pt;}
.ydf{bottom:435.013333pt;}
.y10d{bottom:435.973333pt;}
.y14{bottom:436.613333pt;}
.y75{bottom:440.773333pt;}
.y1ad{bottom:442.053333pt;}
.y182{bottom:446.213333pt;}
.y159{bottom:446.533333pt;}
.y96{bottom:449.733333pt;}
.y198{bottom:451.653333pt;}
.y13b{bottom:452.613333pt;}
.y10c{bottom:454.533333pt;}
.y13{bottom:458.053333pt;}
.y46{bottom:461.573333pt;}
.yde{bottom:462.853333pt;}
.y1d7{bottom:463.173333pt;}
.ybd{bottom:463.813333pt;}
.y74{bottom:468.293333pt;}
.y83{bottom:468.613333pt;}
.y1ac{bottom:469.573333pt;}
.y181{bottom:473.733333pt;}
.y109{bottom:476.933333pt;}
.y95{bottom:477.573333pt;}
.y1bf{bottom:478.533333pt;}
.y197{bottom:479.493333pt;}
.y158{bottom:479.813333pt;}
.y45{bottom:489.093333pt;}
.y13a{bottom:489.413333pt;}
.y12{bottom:490.053333pt;}
.ydd{bottom:490.373333pt;}
.y73{bottom:496.133333pt;}
.y1ab{bottom:497.413333pt;}
.y180{bottom:501.253333pt;}
.y94{bottom:505.093333pt;}
.y1be{bottom:505.733333pt;}
.y196{bottom:507.013333pt;}
.y157{bottom:512.800000pt;}
.y44{bottom:516.960000pt;}
.ydc{bottom:517.920000pt;}
.y11{bottom:522.400000pt;}
.y72{bottom:523.680000pt;}
.y17f{bottom:528.800000pt;}
.y93{bottom:532.640000pt;}
.y1bd{bottom:533.280000pt;}
.y16c{bottom:534.560000pt;}
.y195{bottom:534.880000pt;}
.y1aa{bottom:540.960000pt;}
.y10{bottom:543.520000pt;}
.y43{bottom:544.480000pt;}
.y139{bottom:544.800000pt;}
.ydb{bottom:545.440000pt;}
.y156{bottom:545.760000pt;}
.y71{bottom:551.200000pt;}
.y1d6{bottom:555.040000pt;}
.y92{bottom:560.160000pt;}
.y1bc{bottom:561.120000pt;}
.yf{bottom:561.760000pt;}
.y194{bottom:562.400000pt;}
.y42{bottom:572.000000pt;}
.y138{bottom:572.320000pt;}
.y17e{bottom:572.640000pt;}
.yda{bottom:573.280000pt;}
.y70{bottom:579.040000pt;}
.ye{bottom:580.320000pt;}
.y1a9{bottom:584.480000pt;}
.y91{bottom:587.680000pt;}
.y193{bottom:590.240000pt;}
.y1d5{bottom:591.840000pt;}
.yd{bottom:598.560000pt;}
.y41{bottom:599.520000pt;}
.y137{bottom:599.840000pt;}
.yd9{bottom:600.800000pt;}
.y1bb{bottom:604.960000pt;}
.y6f{bottom:606.560000pt;}
.yb2{bottom:607.200000pt;}
.y155{bottom:612.000000pt;}
.y17d{bottom:616.160000pt;}
.yc{bottom:617.120000pt;}
.y192{bottom:617.760000pt;}
.y136{bottom:618.400000pt;}
.y90{bottom:624.186667pt;}
.y40{bottom:627.386667pt;}
.y1a8{bottom:628.026667pt;}
.yd8{bottom:628.346667pt;}
.y1d4{bottom:628.666667pt;}
.ya2{bottom:633.786667pt;}
.y6e{bottom:634.106667pt;}
.y12e{bottom:635.066667pt;}
.yb{bottom:636.986667pt;}
.y106{bottom:638.906667pt;}
.y17c{bottom:643.706667pt;}
.y154{bottom:644.986667pt;}
.y1ba{bottom:648.506667pt;}
.y8f{bottom:651.706667pt;}
.y3f{bottom:654.906667pt;}
.yd7{bottom:655.866667pt;}
.ya4{bottom:661.306667pt;}
.y6d{bottom:661.626667pt;}
.y1ea{bottom:662.266667pt;}
.y169{bottom:664.186667pt;}
.ya{bottom:664.506667pt;}
.y1d3{bottom:665.466667pt;}
.y17b{bottom:671.226667pt;}
.y153{bottom:678.266667pt;}
.y8e{bottom:679.226667pt;}
.y3e{bottom:682.426667pt;}
.yd6{bottom:683.706667pt;}
.y133{bottom:684.026667pt;}
.y6c{bottom:689.466667pt;}
.y1e9{bottom:689.786667pt;}
.y9{bottom:692.026667pt;}
.y17a{bottom:699.066667pt;}
.y1a7{bottom:699.386667pt;}
.y1d2{bottom:702.266667pt;}
.y191{bottom:705.146667pt;}
.y152{bottom:708.666667pt;}
.y3d{bottom:709.946667pt;}
.yd5{bottom:711.226667pt;}
.y1e8{bottom:713.466667pt;}
.y8d{bottom:715.706667pt;}
.yd0{bottom:716.666667pt;}
.y6b{bottom:716.986667pt;}
.y8{bottom:719.546667pt;}
.y1b9{bottom:719.866667pt;}
.y179{bottom:726.586667pt;}
.y151{bottom:736.226667pt;}
.y3c{bottom:737.826667pt;}
.yd4{bottom:738.786667pt;}
.y1d1{bottom:739.106667pt;}
.y1a6{bottom:742.946667pt;}
.y8c{bottom:743.266667pt;}
.y87{bottom:744.226667pt;}
.y6a{bottom:744.546667pt;}
.y5d{bottom:745.186667pt;}
.y7{bottom:747.426667pt;}
.y190{bottom:748.386667pt;}
.y150{bottom:763.426667pt;}
.y12d{bottom:763.746667pt;}
.y3b{bottom:765.346667pt;}
.yd3{bottom:768.866667pt;}
.yab{bottom:769.186667pt;}
.y178{bottom:770.146667pt;}
.y8b{bottom:771.106667pt;}
.y5c{bottom:771.746667pt;}
.y69{bottom:772.066667pt;}
.y1d0{bottom:775.906667pt;}
.y12c{bottom:781.986667pt;}
.y104{bottom:782.306667pt;}
.y18f{bottom:785.506667pt;}
.y1a5{bottom:786.466667pt;}
.y16b{bottom:790.626667pt;}
.y14f{bottom:790.946667pt;}
.y3a{bottom:792.866667pt;}
.y8a{bottom:798.626667pt;}
.y5b{bottom:799.586667pt;}
.y68{bottom:799.906667pt;}
.y12b{bottom:800.546667pt;}
.y6{bottom:801.186667pt;}
.y1b8{bottom:806.946667pt;}
.y1e7{bottom:808.866667pt;}
.y14e{bottom:809.826667pt;}
.y1cf{bottom:812.706667pt;}
.y177{bottom:813.666667pt;}
.y5{bottom:819.746667pt;}
.y39{bottom:820.386667pt;}
.y18e{bottom:822.626667pt;}
.y89{bottom:826.146667pt;}
.y5a{bottom:827.106667pt;}
.y67{bottom:827.426667pt;}
.y12a{bottom:828.066667pt;}
.y1a4{bottom:829.986667pt;}
.y1e6{bottom:836.706667pt;}
.y14d{bottom:837.346667pt;}
.y4{bottom:837.986667pt;}
.y176{bottom:841.506667pt;}
.y1ce{bottom:845.693333pt;}
.y38{bottom:848.253333pt;}
.y1b7{bottom:850.493333pt;}
.y88{bottom:853.693333pt;}
.y59{bottom:854.653333pt;}
.y66{bottom:854.973333pt;}
.y129{bottom:855.613333pt;}
.y3{bottom:856.573333pt;}
.y14c{bottom:864.893333pt;}
.y18d{bottom:866.493333pt;}
.y1e5{bottom:868.093333pt;}
.y175{bottom:869.053333pt;}
.y1cd{bottom:873.533333pt;}
.y1a3{bottom:873.853333pt;}
.y2{bottom:874.493333pt;}
.y37{bottom:875.773333pt;}
.y58{bottom:882.173333pt;}
.y65{bottom:882.493333pt;}
.y128{bottom:883.133333pt;}
.y1{bottom:889.533333pt;}
.y14b{bottom:892.413333pt;}
.y1b6{bottom:894.013333pt;}
.y174{bottom:896.573333pt;}
.y1cc{bottom:901.053333pt;}
.y36{bottom:903.293333pt;}
.y57{bottom:909.693333pt;}
.y64{bottom:910.013333pt;}
.y127{bottom:910.973333pt;}
.ya7{bottom:912.573333pt;}
.y1a2{bottom:917.053333pt;}
.y1b5{bottom:921.853333pt;}
.y173{bottom:924.093333pt;}
.y14a{bottom:925.373333pt;}
.yfd{bottom:925.693333pt;}
.y1e4{bottom:928.573333pt;}
.y126{bottom:929.213333pt;}
.y35{bottom:930.813333pt;}
.y1cb{bottom:932.413333pt;}
.y56{bottom:937.533333pt;}
.y63{bottom:937.853333pt;}
.ya6{bottom:946.813333pt;}
.y125{bottom:951.613333pt;}
.y1e3{bottom:956.093333pt;}
.y1a1{bottom:960.933333pt;}
.y168{bottom:962.213333pt;}
.y34{bottom:965.093333pt;}
.y62{bottom:965.413333pt;}
.y1ca{bottom:969.253333pt;}
.y172{bottom:979.493333pt;}
.y167{bottom:980.773333pt;}
.y124{bottom:984.613333pt;}
.y55{bottom:992.613333pt;}
.y61{bottom:992.933333pt;}
.y33{bottom:999.013333pt;}
.y1e2{bottom:1001.893333pt;}
.y166{bottom:1003.173333pt;}
.y1a0{bottom:1004.453333pt;}
.y1c9{bottom:1006.053333pt;}
.y171{bottom:1013.733333pt;}
.y122{bottom:1017.893333pt;}
.y54{bottom:1020.133333pt;}
.y60{bottom:1020.453333pt;}
.y165{bottom:1036.133333pt;}
.y149{bottom:1042.853333pt;}
.y32{bottom:1047.973333pt;}
.y82{bottom:1048.293333pt;}
.h20{height:18.240000pt;}
.h27{height:18.272000pt;}
.h21{height:18.560000pt;}
.h22{height:18.592000pt;}
.h18{height:21.152000pt;}
.h13{height:22.400000pt;}
.h25{height:29.120000pt;}
.h1e{height:29.440000pt;}
.h1d{height:29.472000pt;}
.h16{height:38.720000pt;}
.h9{height:44.959787pt;}
.h26{height:45.440000pt;}
.h10{height:46.840769pt;}
.hc{height:49.766250pt;}
.h1f{height:52.762500pt;}
.h19{height:55.040000pt;}
.h1a{height:55.392000pt;}
.he{height:57.375000pt;}
.hd{height:62.781250pt;}
.h2{height:62.812500pt;}
.h11{height:63.843750pt;}
.h3{height:64.500000pt;}
.hf{height:65.776250pt;}
.hb{height:66.625000pt;}
.h12{height:66.750000pt;}
.ha{height:72.485625pt;}
.h6{height:72.862500pt;}
.h5{height:74.820000pt;}
.h17{height:75.375000pt;}
.h8{height:79.211477pt;}
.h24{height:89.445000pt;}
.h4{height:96.750000pt;}
.h1c{height:100.192000pt;}
.h7{height:101.478533pt;}
.h23{height:116.512000pt;}
.h28{height:117.152000pt;}
.h14{height:128.672000pt;}
.h1b{height:128.992000pt;}
.h15{height:147.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:2.880000pt;}
.wd{width:3.520000pt;}
.wf{width:42.240000pt;}
.we{width:42.272000pt;}
.w11{width:42.560000pt;}
.w10{width:42.592000pt;}
.w5{width:64.960000pt;}
.w6{width:93.184000pt;}
.w4{width:105.033159pt;}
.w3{width:107.176329pt;}
.w8{width:112.032000pt;}
.w9{width:125.504000pt;}
.w17{width:129.984000pt;}
.w1a{width:139.906667pt;}
.w19{width:141.786667pt;}
.w18{width:150.146667pt;}
.w16{width:165.506667pt;}
.wb{width:187.906667pt;}
.w15{width:198.786667pt;}
.w14{width:198.813333pt;}
.w7{width:253.853333pt;}
.wa{width:277.533333pt;}
.w1b{width:541.666667pt;}
.w12{width:562.466667pt;}
.wc{width:565.026667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2e{left:0.960000pt;}
.x16{left:6.082667pt;}
.x1d{left:7.682667pt;}
.x24{left:10.906667pt;}
.x1f{left:16.026667pt;}
.x23{left:19.226667pt;}
.x22{left:21.440000pt;}
.x18{left:24.026667pt;}
.x1e{left:26.906667pt;}
.x2a{left:28.194667pt;}
.x20{left:30.746667pt;}
.x4d{left:36.834667pt;}
.x4e{left:38.760000pt;}
.x21{left:40.640000pt;}
.x4a{left:42.594667pt;}
.x4c{left:43.880000pt;}
.x46{left:45.154667pt;}
.x47{left:46.720000pt;}
.x49{left:48.680000pt;}
.x4f{left:49.960000pt;}
.x50{left:52.480000pt;}
.x4b{left:55.080000pt;}
.x1c{left:56.000000pt;}
.x25{left:67.520000pt;}
.x27{left:69.440000pt;}
.x26{left:78.080000pt;}
.x43{left:81.000000pt;}
.x40{left:92.541333pt;}
.x45{left:95.066667pt;}
.x44{left:97.021333pt;}
.x3{left:113.311988pt;}
.x29{left:114.912000pt;}
.x7{left:117.696671pt;}
.x3b{left:125.181333pt;}
.x1a{left:126.746667pt;}
.x3c{left:128.061333pt;}
.x15{left:132.864000pt;}
.xa{left:137.346655pt;}
.xf{left:143.106655pt;}
.x12{left:144.706655pt;}
.x2f{left:158.466667pt;}
.x11{left:160.386655pt;}
.xb{left:161.346655pt;}
.x28{left:169.666655pt;}
.xc{left:185.346655pt;}
.x17{left:199.106667pt;}
.x30{left:201.986667pt;}
.xd{left:209.373322pt;}
.x8{left:227.014837pt;}
.x5{left:228.893322pt;}
.x3e{left:232.093322pt;}
.xe{left:233.373322pt;}
.x2b{left:241.693333pt;}
.x31{left:245.853333pt;}
.x32{left:289.373333pt;}
.x2{left:290.973322pt;}
.x19{left:293.893333pt;}
.x6{left:297.413322pt;}
.x9{left:310.533322pt;}
.x41{left:315.013333pt;}
.x14{left:330.373322pt;}
.x33{left:332.933333pt;}
.x34{left:376.480000pt;}
.x13{left:388.959988pt;}
.x10{left:392.799988pt;}
.x52{left:395.359988pt;}
.x4{left:396.959988pt;}
.x35{left:420.320000pt;}
.x53{left:423.199988pt;}
.x36{left:463.866667pt;}
.x51{left:471.226655pt;}
.x1{left:497.466655pt;}
.x37{left:507.386667pt;}
.x42{left:515.066667pt;}
.x2c{left:520.506667pt;}
.x48{left:540.666667pt;}
.x1b{left:549.026667pt;}
.x38{left:550.946667pt;}
.x39{left:594.786667pt;}
.x3f{left:636.413322pt;}
.x3a{left:638.333333pt;}
.x54{left:668.413322pt;}
.x3d{left:678.333333pt;}
.x2d{left:680.573333pt;}
}




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