
    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_9ada484aa9d0fab1abe3a747.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930176;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_630f1d10c25856ec641f974c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128906;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_14495726dfb864d5bd324b21.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.128906;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_4898bb12ef1453331915b4c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128906;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_874f62b356cbea70c63404c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128906;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_7df17356f887b6a9809ce0c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.100098;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_847b7fda34b963b1902d076e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_4ed9e0a926050d7415dc8444.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_94062ecd9bc16c50dc57dd23.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.212498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212498,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.224998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224998,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.599880px;}
.v3{vertical-align:24.000000px;}
.v2{vertical-align:32.400480px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004860px;}
.ls10{letter-spacing:0.006947px;}
.ls14{letter-spacing:0.007200px;}
.ls13{letter-spacing:0.007260px;}
.lse{letter-spacing:0.010357px;}
.lsc{letter-spacing:0.010440px;}
.lsb{letter-spacing:0.013860px;}
.lsd{letter-spacing:0.539999px;}
.ls11{letter-spacing:0.918000px;}
.ls12{letter-spacing:1.782000px;}
.lsf{letter-spacing:23.957683px;}
.ls1{letter-spacing:26.089212px;}
.ls3{letter-spacing:240.404939px;}
.ls4{letter-spacing:242.853479px;}
.ls5{letter-spacing:293.998739px;}
.ls6{letter-spacing:542.843400px;}
.ls8{letter-spacing:558.390540px;}
.ls9{letter-spacing:563.135400px;}
.ls7{letter-spacing:564.159600px;}
.lsa{letter-spacing:579.256200px;}
.ls15{letter-spacing:970.283952px;}
.ls16{letter-spacing:970.985952px;}
.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;}
}
.ws1d{word-spacing:-14.796000px;}
.ws1b{word-spacing:-14.460000px;}
.ws1c{word-spacing:-13.932000px;}
.ws3{word-spacing:-13.014000px;}
.ws0{word-spacing:-9.399000px;}
.ws2{word-spacing:-9.218251px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:121.968060px;}
.ws17{word-spacing:159.604020px;}
.ws8{word-spacing:168.608340px;}
.ws16{word-spacing:168.648720px;}
.ws13{word-spacing:176.612400px;}
.ws12{word-spacing:185.656200px;}
.ws9{word-spacing:196.807800px;}
.ws6{word-spacing:201.118800px;}
.ws4{word-spacing:205.192800px;}
.ws5{word-spacing:205.306800px;}
.wsa{word-spacing:205.759800px;}
.ws7{word-spacing:208.978860px;}
.wsf{word-spacing:213.404280px;}
.ws10{word-spacing:251.922000px;}
.ws11{word-spacing:255.784980px;}
.ws18{word-spacing:267.167280px;}
.ws1a{word-spacing:268.352400px;}
.ws19{word-spacing:279.971340px;}
.ws14{word-spacing:296.786400px;}
.wse{word-spacing:300.586764px;}
.wsc{word-spacing:304.898340px;}
.wsd{word-spacing:308.972400px;}
.ws15{word-spacing:421.094940px;}
._57{margin-left:-2134.043952px;}
._10{margin-left:-2117.387606px;}
._4d{margin-left:-2102.340190px;}
._48{margin-left:-2086.440000px;}
._11{margin-left:-2041.076352px;}
._51{margin-left:-2003.760000px;}
._4e{margin-left:-1929.540000px;}
._3b{margin-left:-1880.820000px;}
._e{margin-left:-1852.680000px;}
._50{margin-left:-1772.880000px;}
._43{margin-left:-1764.900000px;}
._f{margin-left:-1395.420000px;}
._52{margin-left:-1365.840000px;}
._3c{margin-left:-1125.900000px;}
._42{margin-left:-1065.240000px;}
._39{margin-left:-980.520000px;}
._54{margin-left:-749.952000px;}
._56{margin-left:-724.788000px;}
._53{margin-left:-692.010000px;}
._55{margin-left:-653.832000px;}
._3a{margin-left:-632.100000px;}
._44{margin-left:-468.420000px;}
._41{margin-left:-268.620000px;}
._2b{margin-left:-9.960042px;}
._40{margin-left:-7.802845px;}
._3f{margin-left:-6.599286px;}
._1b{margin-left:-5.400702px;}
._6{margin-left:-4.319891px;}
._3{margin-left:-3.024068px;}
._7{margin-left:-1.889808px;}
._9{width:1.259952px;}
._1{width:2.429998px;}
._2{width:4.050032px;}
._8{width:5.723983px;}
._b{width:6.840006px;}
._c{width:8.519964px;}
._d{width:10.422057px;}
._4{width:11.717931px;}
._a{width:13.380006px;}
._6c{width:14.531709px;}
._26{width:15.599958px;}
._34{width:16.680216px;}
._35{width:17.999892px;}
._49{width:19.619916px;}
._3e{width:20.700198px;}
._2c{width:21.779958px;}
._12{width:22.800072px;}
._36{width:23.879988px;}
._4c{width:25.440072px;}
._38{width:26.460030px;}
._4a{width:28.140168px;}
._47{width:29.160006px;}
._3d{width:30.600066px;}
._5b{width:31.661915px;}
._46{width:33.840072px;}
._4b{width:35.400012px;}
._4f{width:37.199952px;}
._58{width:38.447989px;}
._37{width:39.480132px;}
._71{width:40.570446px;}
._5f{width:42.011981px;}
._61{width:44.549972px;}
._6d{width:45.953968px;}
._6a{width:47.034029px;}
._64{width:48.654371px;}
._5a{width:49.733978px;}
._69{width:51.083876px;}
._60{width:52.757959px;}
._6b{width:53.803998px;}
._62{width:54.805337px;}
._5c{width:56.106042px;}
._59{width:58.697979px;}
._0{width:60.900012px;}
._67{width:62.207906px;}
._5e{width:72.882134px;}
._6f{width:77.075793px;}
._65{width:78.137865px;}
._66{width:79.937873px;}
._70{width:85.180782px;}
._6e{width:86.939301px;}
._63{width:93.950003px;}
._5d{width:117.938496px;}
._45{width:129.278994px;}
._68{width:152.250980px;}
._27{width:153.413376px;}
._1c{width:168.595152px;}
._32{width:179.392854px;}
._33{width:182.761740px;}
._2e{width:212.287200px;}
._17{width:220.482660px;}
._13{width:230.103600px;}
._15{width:232.985340px;}
._18{width:237.416400px;}
._20{width:240.990420px;}
._24{width:244.808400px;}
._14{width:253.547280px;}
._16{width:255.058740px;}
._19{width:259.800000px;}
._1a{width:264.770340px;}
._21{width:285.401970px;}
._30{width:291.768660px;}
._2f{width:293.621940px;}
._1f{width:310.261272px;}
._1d{width:311.415618px;}
._22{width:313.741860px;}
._2d{width:316.937400px;}
._1e{width:329.194200px;}
._25{width:330.900576px;}
._23{width:333.303540px;}
._2a{width:346.592880px;}
._28{width:352.517340px;}
._29{width:372.780540px;}
._31{width:583.368000px;}
._72{width:970.974072px;}
._5{width:981.281436px;}
.fc1{color:rgb(74,77,85);}
.fc0{color:rgb(31,30,32);}
.fs7{font-size:37.800001px;}
.fs6{font-size:38.250003px;}
.fs1{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:64.800000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:63.986245px;}
.y1e{bottom:63.992100px;}
.y3{bottom:63.992545px;}
.y5d{bottom:65.871597px;}
.y2{bottom:65.877452px;}
.y4{bottom:65.877897px;}
.y107{bottom:124.372193px;}
.y1f6{bottom:129.166351px;}
.y121{bottom:129.342750px;}
.ybf{bottom:132.472194px;}
.y1da{bottom:132.706650px;}
.ye2{bottom:132.772201px;}
.y7d{bottom:133.454396px;}
.y1a7{bottom:134.360241px;}
.y3f{bottom:134.722194px;}
.y106{bottom:143.572197px;}
.y140{bottom:146.566349px;}
.y9e{bottom:147.235794px;}
.y1d9{bottom:147.706650px;}
.y1f5{bottom:148.666351px;}
.y1a6{bottom:149.360241px;}
.y15d{bottom:151.094850px;}
.ybe{bottom:151.972200px;}
.y7c{bottom:152.954400px;}
.y3e{bottom:153.472200px;}
.y9d{bottom:161.485800px;}
.y105{bottom:162.022200px;}
.y1d8{bottom:162.706650px;}
.y1a5{bottom:164.360235px;}
.y13f{bottom:167.566350px;}
.ydb{bottom:167.572200px;}
.y120{bottom:170.099835px;}
.y15c{bottom:170.594850px;}
.ybd{bottom:171.172200px;}
.y3d{bottom:172.222200px;}
.y7b{bottom:172.454400px;}
.y1d7{bottom:177.706650px;}
.y1a4{bottom:179.360235px;}
.y104{bottom:180.472200px;}
.y1d{bottom:186.672885px;}
.y13e{bottom:188.566350px;}
.yda{bottom:188.572200px;}
.y15b{bottom:190.094850px;}
.ybc{bottom:190.372185px;}
.y3c{bottom:190.972200px;}
.y7a{bottom:191.504385px;}
.y9c{bottom:192.386400px;}
.y1d6{bottom:192.706650px;}
.y1a3{bottom:194.360250px;}
.y103{bottom:198.922185px;}
.y11f{bottom:204.583350px;}
.y1f4{bottom:205.666350px;}
.y1d5{bottom:207.706650px;}
.y1a2{bottom:209.360250px;}
.ybb{bottom:209.572200px;}
.y15a{bottom:209.594835px;}
.y79{bottom:210.554400px;}
.y102{bottom:217.372185px;}
.y9b{bottom:217.898250px;}
.y11e{bottom:220.783350px;}
.y1c{bottom:220.872900px;}
.y1f3{bottom:221.866335px;}
.y1d4{bottom:222.706650px;}
.y1a1{bottom:224.360250px;}
.y3b{bottom:228.472185px;}
.yba{bottom:228.772200px;}
.y159{bottom:229.094835px;}
.y78{bottom:229.604400px;}
.y13d{bottom:230.566335px;}
.yd9{bottom:230.572200px;}
.y59{bottom:231.239250px;}
.y11b{bottom:235.663050px;}
.y101{bottom:235.822200px;}
.y1b{bottom:237.072900px;}
.y1d3{bottom:237.706650px;}
.y1f2{bottom:238.066335px;}
.y1a0{bottom:239.360250px;}
.y9a{bottom:243.410085px;}
.y3a{bottom:247.222185px;}
.yb9{bottom:247.972185px;}
.y158{bottom:248.594835px;}
.y77{bottom:248.654385px;}
.y58{bottom:250.739250px;}
.y13c{bottom:251.566335px;}
.y1d2{bottom:252.706650px;}
.y11d{bottom:253.183335px;}
.y1a{bottom:253.272900px;}
.y1f1{bottom:254.266335px;}
.y100{bottom:254.272200px;}
.y19f{bottom:254.360250px;}
.y176{bottom:265.372185px;}
.y99{bottom:266.521335px;}
.yb8{bottom:267.172185px;}
.y76{bottom:267.704385px;}
.y1d1{bottom:267.706650px;}
.y157{bottom:268.094835px;}
.y19e{bottom:269.360250px;}
.y11c{bottom:269.383350px;}
.y19{bottom:269.472885px;}
.y57{bottom:270.239250px;}
.y1f0{bottom:270.466350px;}
.yd8{bottom:272.572200px;}
.yff{bottom:272.722185px;}
.y175{bottom:281.572200px;}
.y1d0{bottom:282.706650px;}
.y98{bottom:282.721350px;}
.y19d{bottom:284.360250px;}
.y39{bottom:284.722185px;}
.y18{bottom:285.672885px;}
.ye1{bottom:286.372185px;}
.y1ef{bottom:286.666350px;}
.y75{bottom:286.754400px;}
.y156{bottom:287.594835px;}
.y56{bottom:289.739250px;}
.yfe{bottom:291.172185px;}
.y13b{bottom:293.566335px;}
.yd7{bottom:293.572200px;}
.y1cf{bottom:297.706650px;}
.y11a{bottom:297.769635px;}
.y174{bottom:297.772200px;}
.y19c{bottom:299.360250px;}
.y38{bottom:303.472185px;}
.yb7{bottom:305.572200px;}
.y55{bottom:309.239250px;}
.yfd{bottom:309.622185px;}
.y1ce{bottom:312.706650px;}
.y173{bottom:313.972185px;}
.y19b{bottom:314.360250px;}
.y13a{bottom:314.566335px;}
.yd6{bottom:314.572200px;}
.y17{bottom:318.072900px;}
.y97{bottom:322.932015px;}
.yb6{bottom:324.772200px;}
.y74{bottom:324.854400px;}
.y155{bottom:326.594835px;}
.y1cd{bottom:327.706650px;}
.yfc{bottom:328.072200px;}
.y19a{bottom:329.360250px;}
.y172{bottom:330.172185px;}
.y16{bottom:334.272885px;}
.y139{bottom:335.566335px;}
.y1ee{bottom:338.866335px;}
.y37{bottom:340.972185px;}
.y96{bottom:342.432015px;}
.y1cc{bottom:342.706650px;}
.yb5{bottom:343.972185px;}
.y199{bottom:344.360250px;}
.y154{bottom:346.094835px;}
.y171{bottom:346.372185px;}
.yfb{bottom:346.522200px;}
.y119{bottom:346.780785px;}
.y54{bottom:348.239250px;}
.y15{bottom:350.472885px;}
.y73{bottom:355.755000px;}
.yd5{bottom:356.572200px;}
.y1cb{bottom:357.706650px;}
.y1ed{bottom:358.366335px;}
.y198{bottom:359.360235px;}
.y36{bottom:359.722185px;}
.y95{bottom:361.932015px;}
.ye0{bottom:363.172185px;}
.yfa{bottom:364.972185px;}
.y153{bottom:365.594835px;}
.y118{bottom:366.280785px;}
.y53{bottom:367.739250px;}
.y1ca{bottom:372.706650px;}
.y197{bottom:374.360235px;}
.y138{bottom:377.566335px;}
.yd4{bottom:377.572200px;}
.y35{bottom:378.472185px;}
.y170{bottom:380.572200px;}
.y72{bottom:381.266700px;}
.y94{bottom:381.432015px;}
.yb4{bottom:382.372185px;}
.y14{bottom:382.872900px;}
.y152{bottom:385.094835px;}
.y117{bottom:385.780785px;}
.y52{bottom:387.239220px;}
.y1c9{bottom:387.706650px;}
.y196{bottom:389.360235px;}
.y34{bottom:397.222185px;}
.y1ec{bottom:397.366335px;}
.y137{bottom:398.566365px;}
.yd3{bottom:398.572170px;}
.y93{bottom:400.932030px;}
.yb3{bottom:401.572170px;}
.yf9{bottom:401.872185px;}
.y1c8{bottom:402.706650px;}
.y195{bottom:404.360235px;}
.y151{bottom:404.594835px;}
.y116{bottom:405.280785px;}
.y71{bottom:406.778550px;}
.y1eb{bottom:416.866335px;}
.y1c7{bottom:417.706650px;}
.y194{bottom:419.360235px;}
.y136{bottom:419.566365px;}
.y92{bottom:420.432030px;}
.yb2{bottom:420.772200px;}
.y150{bottom:424.094835px;}
.y115{bottom:424.780785px;}
.y1c6{bottom:432.706650px;}
.y193{bottom:434.360235px;}
.y16f{bottom:434.572170px;}
.y33{bottom:434.722185px;}
.y91{bottom:439.932030px;}
.yb1{bottom:439.972185px;}
.y135{bottom:440.566365px;}
.yd2{bottom:440.572170px;}
.y14f{bottom:443.594835px;}
.y1c5{bottom:447.706650px;}
.y192{bottom:449.360235px;}
.y70{bottom:449.389800px;}
.y51{bottom:449.489220px;}
.y16e{bottom:454.072170px;}
.y1ea{bottom:455.866335px;}
.yf8{bottom:457.222185px;}
.yb0{bottom:459.172215px;}
.y134{bottom:461.566365px;}
.yd1{bottom:461.572170px;}
.y114{bottom:462.280785px;}
.y1c4{bottom:462.706650px;}
.y14e{bottom:463.094835px;}
.y50{bottom:463.739220px;}
.y191{bottom:464.360235px;}
.y6f{bottom:468.889800px;}
.y13{bottom:472.872900px;}
.y1e9{bottom:475.366335px;}
.yf7{bottom:475.672215px;}
.y90{bottom:477.432030px;}
.y1c3{bottom:477.706650px;}
.yaf{bottom:478.372185px;}
.y190{bottom:479.360235px;}
.y113{bottom:480.280785px;}
.y133{bottom:482.566365px;}
.yd0{bottom:482.572170px;}
.y14d{bottom:482.594835px;}
.y6e{bottom:487.939770px;}
.y32{bottom:490.222185px;}
.y12{bottom:490.872900px;}
.y16d{bottom:491.572170px;}
.y1c2{bottom:492.706650px;}
.yf6{bottom:494.122185px;}
.y18f{bottom:494.360235px;}
.y8f{bottom:496.932030px;}
.y4f{bottom:497.117070px;}
.yae{bottom:497.572170px;}
.y14c{bottom:502.094835px;}
.y132{bottom:503.566320px;}
.ycf{bottom:503.572170px;}
.y1c1{bottom:507.706650px;}
.y11{bottom:508.872900px;}
.y31{bottom:508.972185px;}
.y18e{bottom:509.360235px;}
.y16c{bottom:511.072170px;}
.yf5{bottom:512.572170px;}
.y1e8{bottom:514.366335px;}
.y8e{bottom:516.432030px;}
.yad{bottom:516.772200px;}
.y4e{bottom:520.083750px;}
.y14b{bottom:521.594835px;}
.y1c0{bottom:522.706650px;}
.y18d{bottom:524.360235px;}
.y131{bottom:524.566320px;}
.y6d{bottom:526.039770px;}
.y10{bottom:526.872900px;}
.y30{bottom:527.722185px;}
.y16b{bottom:530.572170px;}
.yf4{bottom:531.022200px;}
.y1e7{bottom:533.866335px;}
.y112{bottom:534.280785px;}
.y8d{bottom:535.932030px;}
.ydf{bottom:535.972185px;}
.y1bf{bottom:537.706650px;}
.y18c{bottom:539.360235px;}
.y14a{bottom:541.094835px;}
.y4d{bottom:543.050400px;}
.yf{bottom:544.872900px;}
.y6c{bottom:545.089785px;}
.y130{bottom:545.566320px;}
.yce{bottom:545.572170px;}
.y2f{bottom:546.472185px;}
.yf3{bottom:549.472185px;}
.y16a{bottom:550.072170px;}
.y1be{bottom:552.706650px;}
.y111{bottom:553.780785px;}
.y18b{bottom:554.360235px;}
.yac{bottom:555.172170px;}
.y8c{bottom:555.432030px;}
.y149{bottom:560.594835px;}
.ye{bottom:562.872900px;}
.y6b{bottom:564.139800px;}
.y2e{bottom:565.222185px;}
.y4c{bottom:566.016900px;}
.y12f{bottom:566.566320px;}
.ycd{bottom:566.572170px;}
.y1bd{bottom:567.706650px;}
.yf2{bottom:567.922170px;}
.y18a{bottom:569.360235px;}
.y169{bottom:569.572170px;}
.y1e6{bottom:572.866335px;}
.yab{bottom:574.372185px;}
.y8b{bottom:574.932030px;}
.yd{bottom:580.872900px;}
.y1bc{bottom:582.706650px;}
.y6a{bottom:583.189770px;}
.y2d{bottom:583.972185px;}
.y189{bottom:584.360235px;}
.yf1{bottom:586.372185px;}
.y12e{bottom:587.566320px;}
.ycc{bottom:587.572170px;}
.y4b{bottom:588.983550px;}
.y168{bottom:589.072170px;}
.y1e5{bottom:592.366335px;}
.yde{bottom:593.572170px;}
.y8a{bottom:594.432030px;}
.y1bb{bottom:597.706650px;}
.yc{bottom:598.872900px;}
.y188{bottom:599.360235px;}
.y69{bottom:602.239785px;}
.y2c{bottom:602.722185px;}
.yf0{bottom:604.822170px;}
.y12d{bottom:608.566320px;}
.ycb{bottom:608.572170px;}
.y110{bottom:609.280785px;}
.y1ba{bottom:612.706650px;}
.yaa{bottom:612.772200px;}
.y89{bottom:613.932030px;}
.y187{bottom:614.360235px;}
.yb{bottom:616.872900px;}
.y148{bottom:619.094835px;}
.y68{bottom:621.289770px;}
.y2b{bottom:621.472185px;}
.yef{bottom:623.272200px;}
.y1b9{bottom:627.706650px;}
.y167{bottom:628.072170px;}
.y186{bottom:629.360235px;}
.y12c{bottom:629.566320px;}
.yca{bottom:629.572170px;}
.y4a{bottom:630.322170px;}
.y1e4{bottom:631.366335px;}
.ydd{bottom:631.972185px;}
.y88{bottom:633.432030px;}
.ya{bottom:634.872900px;}
.y2a{bottom:640.222185px;}
.y67{bottom:640.339785px;}
.yee{bottom:641.722185px;}
.y10f{bottom:642.307350px;}
.y1b8{bottom:642.706650px;}
.y185{bottom:644.360235px;}
.y166{bottom:647.572170px;}
.y49{bottom:649.822170px;}
.y12b{bottom:650.566320px;}
.yc9{bottom:650.572170px;}
.y1e3{bottom:650.866335px;}
.ydc{bottom:651.172170px;}
.y9{bottom:652.872900px;}
.y87{bottom:652.932030px;}
.y1b7{bottom:657.706650px;}
.y29{bottom:658.972185px;}
.y184{bottom:659.360235px;}
.y66{bottom:659.389800px;}
.yed{bottom:660.172170px;}
.y147{bottom:666.339570px;}
.y165{bottom:667.072170px;}
.y48{bottom:669.322170px;}
.ya9{bottom:670.372185px;}
.y8{bottom:670.872900px;}
.y12a{bottom:671.566320px;}
.yc8{bottom:671.572170px;}
.y10e{bottom:672.071085px;}
.y86{bottom:672.432030px;}
.y1b6{bottom:672.706650px;}
.y183{bottom:674.360235px;}
.y28{bottom:677.722185px;}
.yec{bottom:678.622185px;}
.y164{bottom:686.572170px;}
.y1b5{bottom:687.706650px;}
.y182{bottom:689.360235px;}
.ya8{bottom:689.572170px;}
.y1e2{bottom:689.866335px;}
.y129{bottom:692.566320px;}
.yc7{bottom:692.572170px;}
.yeb{bottom:697.072170px;}
.y10d{bottom:701.834970px;}
.y1b4{bottom:702.706650px;}
.y146{bottom:704.179635px;}
.y181{bottom:704.360235px;}
.y163{bottom:706.072170px;}
.y47{bottom:708.322170px;}
.ya7{bottom:708.772200px;}
.y1e1{bottom:709.366335px;}
.y85{bottom:709.932030px;}
.y65{bottom:710.689770px;}
.y145{bottom:712.279635px;}
.y128{bottom:713.566320px;}
.yc6{bottom:713.572170px;}
.yea{bottom:715.522200px;}
.y1b3{bottom:717.706650px;}
.y180{bottom:719.360235px;}
.y7{bottom:724.872900px;}
.y162{bottom:725.572170px;}
.y46{bottom:727.822170px;}
.ya6{bottom:727.972185px;}
.y1b2{bottom:732.706650px;}
.y27{bottom:733.972185px;}
.y17f{bottom:734.360235px;}
.yc5{bottom:734.572170px;}
.y84{bottom:740.832600px;}
.y64{bottom:743.716320px;}
.y161{bottom:745.072170px;}
.y10c{bottom:746.572170px;}
.ya5{bottom:747.172170px;}
.y1b1{bottom:747.706650px;}
.y1e0{bottom:748.366335px;}
.y17e{bottom:749.360235px;}
.ye9{bottom:752.422170px;}
.y127{bottom:755.566320px;}
.yc4{bottom:755.572170px;}
.y144{bottom:755.915355px;}
.y6{bottom:757.272900px;}
.y1b0{bottom:762.706650px;}
.y17d{bottom:764.360235px;}
.y160{bottom:764.572170px;}
.y45{bottom:765.322170px;}
.y10b{bottom:766.072170px;}
.y83{bottom:766.344450px;}
.ya4{bottom:766.372185px;}
.y1df{bottom:767.866335px;}
.y26{bottom:768.172215px;}
.ye8{bottom:770.872185px;}
.y63{bottom:773.480070px;}
.y5{bottom:775.272855px;}
.y126{bottom:776.566320px;}
.yc3{bottom:776.572170px;}
.y1af{bottom:777.706605px;}
.y17c{bottom:779.360235px;}
.y15f{bottom:784.072170px;}
.y25{bottom:784.372185px;}
.y44{bottom:784.822170px;}
.ya3{bottom:785.572170px;}
.y1de{bottom:787.366335px;}
.ye7{bottom:789.322170px;}
.y82{bottom:789.455655px;}
.y1ae{bottom:792.706605px;}
.y17b{bottom:794.360235px;}
.y125{bottom:797.566320px;}
.yc2{bottom:797.572170px;}
.y62{bottom:803.243865px;}
.y143{bottom:803.566320px;}
.y15e{bottom:803.572170px;}
.y43{bottom:804.322170px;}
.ya2{bottom:804.772155px;}
.y81{bottom:805.655640px;}
.y1dd{bottom:806.866335px;}
.y1ad{bottom:807.706605px;}
.ye6{bottom:807.772155px;}
.y17a{bottom:809.360235px;}
.y24{bottom:816.772155px;}
.y124{bottom:818.566320px;}
.yc1{bottom:818.572170px;}
.y80{bottom:821.855535px;}
.y1ac{bottom:822.706605px;}
.y142{bottom:823.066320px;}
.y10a{bottom:823.072170px;}
.y42{bottom:823.822170px;}
.ya1{bottom:823.972140px;}
.y179{bottom:824.360235px;}
.ye5{bottom:826.222140px;}
.y1dc{bottom:826.366335px;}
.y23{bottom:832.972140px;}
.y61{bottom:833.007570px;}
.y1ab{bottom:837.706605px;}
.y178{bottom:839.360235px;}
.y123{bottom:839.566320px;}
.y141{bottom:842.566320px;}
.y109{bottom:842.572170px;}
.ya0{bottom:843.172035px;}
.y41{bottom:843.322170px;}
.ye4{bottom:844.672035px;}
.y1db{bottom:845.866335px;}
.y22{bottom:849.172215px;}
.y1aa{bottom:852.706605px;}
.y177{bottom:854.360235px;}
.y5f{bottom:859.372920px;}
.y122{bottom:860.566320px;}
.yc0{bottom:860.572170px;}
.y7f{bottom:862.066320px;}
.y108{bottom:862.072170px;}
.y9f{bottom:862.372185px;}
.y40{bottom:862.822170px;}
.ye3{bottom:863.122185px;}
.y5e{bottom:867.472785px;}
.y1a9{bottom:867.706605px;}
.y60{bottom:875.572905px;}
.y7e{bottom:881.566320px;}
.y21{bottom:881.572170px;}
.y1a8{bottom:882.706605px;}
.y5c{bottom:934.356990px;}
.y20{bottom:934.362855px;}
.y5b{bottom:947.856990px;}
.y1f{bottom:947.862855px;}
.y1{bottom:949.421820px;}
.h2{height:31.500000px;}
.h8{height:34.888186px;}
.h3{height:35.572266px;}
.hf{height:40.842773px;}
.ha{height:43.781250px;}
.h7{height:46.517578px;}
.h6{height:49.253906px;}
.h5{height:54.726562px;}
.h9{height:56.077615px;}
.h4{height:59.104688px;}
.hd{height:62.308594px;}
.he{height:81.653846px;}
.hc{height:81.653966px;}
.hb{height:81.654386px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:722.834970px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:76.535397px;}
.x1{left:93.543297px;}
.x50{left:98.508144px;}
.x63{left:100.535397px;}
.x7{left:102.520797px;}
.x4e{left:103.742695px;}
.x4{left:114.774296px;}
.x47{left:116.204247px;}
.x51{left:117.621002px;}
.x5{left:119.055141px;}
.x5a{left:122.441551px;}
.x8{left:125.963241px;}
.x5e{left:129.320699px;}
.x25{left:130.535397px;}
.x5b{left:132.302845px;}
.x4c{left:138.207595px;}
.x4d{left:139.476597px;}
.x26{left:142.971143px;}
.x41{left:147.543297px;}
.x4f{left:154.525950px;}
.x9{left:155.594400px;}
.x18{left:165.060600px;}
.x45{left:171.594600px;}
.x19{left:173.125185px;}
.x42{left:174.543300px;}
.x55{left:176.916600px;}
.x44{left:179.250900px;}
.xa{left:180.597750px;}
.x34{left:182.068515px;}
.x35{left:190.133085px;}
.x53{left:194.270400px;}
.x54{left:195.460185px;}
.x27{left:197.605635px;}
.x56{left:202.278600px;}
.x57{left:203.468400px;}
.xb{left:205.593285px;}
.x46{left:207.786435px;}
.x28{left:222.601200px;}
.x1a{left:230.879400px;}
.xc{left:234.782550px;}
.x1b{left:241.351635px;}
.x36{left:247.887150px;}
.x29{left:251.790435px;}
.x37{left:258.359550px;}
.x43{left:268.775685px;}
.x1c{left:273.868035px;}
.x1d{left:276.482250px;}
.xd{left:278.030685px;}
.x59{left:286.370250px;}
.x1e{left:287.880585px;}
.x38{left:290.875950px;}
.x39{left:293.489985px;}
.x2a{left:295.038600px;}
.x3a{left:304.888500px;}
.xe{left:306.701250px;}
.x1f{left:308.169135px;}
.x2b{left:323.709135px;}
.x3b{left:325.177050px;}
.x52{left:332.627535px;}
.x48{left:339.943200px;}
.xf{left:346.127385px;}
.x20{left:362.216400px;}
.x5d{left:367.143285px;}
.x60{left:369.921135px;}
.x10{left:371.114985px;}
.x3c{left:379.224150px;}
.x62{left:386.929185px;}
.x2c{left:388.122900px;}
.x5f{left:395.433015px;}
.x61{left:412.440900px;}
.x11{left:416.339535px;}
.x21{left:428.447715px;}
.x2d{left:433.347420px;}
.x12{left:441.919785px;}
.x3d{left:445.455600px;}
.x49{left:446.665335px;}
.x2e{left:458.927670px;}
.x22{left:463.611285px;}
.x23{left:466.225530px;}
.x3{left:469.564635px;}
.x24{left:471.535635px;}
.x13{left:478.476420px;}
.x3e{left:480.619170px;}
.x3f{left:483.233235px;}
.x40{left:488.543520px;}
.x2f{left:495.484365px;}
.x14{left:508.179015px;}
.x30{left:525.186900px;}
.x15{left:530.003535px;}
.x4b{left:541.345320px;}
.x31{left:547.011435px;}
.x4a{left:551.437320px;}
.x16{left:558.081435px;}
.x32{left:575.089320px;}
.x17{left:603.306015px;}
.x33{left:620.313900px;}
.x2{left:621.795270px;}
.x5c{left:622.913085px;}
.x58{left:624.877950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.199893pt;}
.v3{vertical-align:21.333333pt;}
.v2{vertical-align:28.800427pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004320pt;}
.ls10{letter-spacing:0.006175pt;}
.ls14{letter-spacing:0.006400pt;}
.ls13{letter-spacing:0.006453pt;}
.lse{letter-spacing:0.009207pt;}
.lsc{letter-spacing:0.009280pt;}
.lsb{letter-spacing:0.012320pt;}
.lsd{letter-spacing:0.479999pt;}
.ls11{letter-spacing:0.816000pt;}
.ls12{letter-spacing:1.584000pt;}
.lsf{letter-spacing:21.295719pt;}
.ls1{letter-spacing:23.190411pt;}
.ls3{letter-spacing:213.693280pt;}
.ls4{letter-spacing:215.869759pt;}
.ls5{letter-spacing:261.332213pt;}
.ls6{letter-spacing:482.527467pt;}
.ls8{letter-spacing:496.347147pt;}
.ls9{letter-spacing:500.564800pt;}
.ls7{letter-spacing:501.475200pt;}
.lsa{letter-spacing:514.894400pt;}
.ls15{letter-spacing:862.474624pt;}
.ls16{letter-spacing:863.098624pt;}
.ws1d{word-spacing:-13.152000pt;}
.ws1b{word-spacing:-12.853333pt;}
.ws1c{word-spacing:-12.384000pt;}
.ws3{word-spacing:-11.568000pt;}
.ws0{word-spacing:-8.354667pt;}
.ws2{word-spacing:-8.194001pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:108.416053pt;}
.ws17{word-spacing:141.870240pt;}
.ws8{word-spacing:149.874080pt;}
.ws16{word-spacing:149.909973pt;}
.ws13{word-spacing:156.988800pt;}
.ws12{word-spacing:165.027733pt;}
.ws9{word-spacing:174.940267pt;}
.ws6{word-spacing:178.772267pt;}
.ws4{word-spacing:182.393600pt;}
.ws5{word-spacing:182.494933pt;}
.wsa{word-spacing:182.897600pt;}
.ws7{word-spacing:185.758987pt;}
.wsf{word-spacing:189.692693pt;}
.ws10{word-spacing:223.930667pt;}
.ws11{word-spacing:227.364427pt;}
.ws18{word-spacing:237.482027pt;}
.ws1a{word-spacing:238.535467pt;}
.ws19{word-spacing:248.863413pt;}
.ws14{word-spacing:263.810133pt;}
.wse{word-spacing:267.188235pt;}
.wsc{word-spacing:271.020747pt;}
.wsd{word-spacing:274.642133pt;}
.ws15{word-spacing:374.306613pt;}
._57{margin-left:-1896.927957pt;}
._10{margin-left:-1882.122316pt;}
._4d{margin-left:-1868.746836pt;}
._48{margin-left:-1854.613333pt;}
._11{margin-left:-1814.290091pt;}
._51{margin-left:-1781.120000pt;}
._4e{margin-left:-1715.146667pt;}
._3b{margin-left:-1671.840000pt;}
._e{margin-left:-1646.826667pt;}
._50{margin-left:-1575.893333pt;}
._43{margin-left:-1568.800000pt;}
._f{margin-left:-1240.373333pt;}
._52{margin-left:-1214.080000pt;}
._3c{margin-left:-1000.800000pt;}
._42{margin-left:-946.880000pt;}
._39{margin-left:-871.573333pt;}
._54{margin-left:-666.624000pt;}
._56{margin-left:-644.256000pt;}
._53{margin-left:-615.120000pt;}
._55{margin-left:-581.184000pt;}
._3a{margin-left:-561.866667pt;}
._44{margin-left:-416.373333pt;}
._41{margin-left:-238.773333pt;}
._2b{margin-left:-8.853371pt;}
._40{margin-left:-6.935862pt;}
._3f{margin-left:-5.866032pt;}
._1b{margin-left:-4.800624pt;}
._6{margin-left:-3.839903pt;}
._3{margin-left:-2.688061pt;}
._7{margin-left:-1.679829pt;}
._9{width:1.119957pt;}
._1{width:2.159998pt;}
._2{width:3.600029pt;}
._8{width:5.087985pt;}
._b{width:6.080005pt;}
._c{width:7.573301pt;}
._d{width:9.264050pt;}
._4{width:10.415939pt;}
._a{width:11.893339pt;}
._6c{width:12.917074pt;}
._26{width:13.866629pt;}
._34{width:14.826859pt;}
._35{width:15.999904pt;}
._49{width:17.439925pt;}
._3e{width:18.400176pt;}
._2c{width:19.359963pt;}
._12{width:20.266731pt;}
._36{width:21.226656pt;}
._4c{width:22.613397pt;}
._38{width:23.520027pt;}
._4a{width:25.013483pt;}
._47{width:25.920005pt;}
._3d{width:27.200059pt;}
._5b{width:28.143924pt;}
._46{width:30.080064pt;}
._4b{width:31.466677pt;}
._4f{width:33.066624pt;}
._58{width:34.175990pt;}
._37{width:35.093451pt;}
._71{width:36.062619pt;}
._5f{width:37.343983pt;}
._61{width:39.599975pt;}
._6d{width:40.847971pt;}
._6a{width:41.808026pt;}
._64{width:43.248330pt;}
._5a{width:44.207980pt;}
._69{width:45.407890pt;}
._60{width:46.895964pt;}
._6b{width:47.825776pt;}
._62{width:48.715855pt;}
._5c{width:49.872037pt;}
._59{width:52.175981pt;}
._0{width:54.133344pt;}
._67{width:55.295917pt;}
._5e{width:64.784119pt;}
._6f{width:68.511816pt;}
._65{width:69.455880pt;}
._66{width:71.055887pt;}
._70{width:75.716251pt;}
._6e{width:77.279379pt;}
._63{width:83.511114pt;}
._5d{width:104.834219pt;}
._45{width:114.914661pt;}
._68{width:135.334204pt;}
._27{width:136.367445pt;}
._1c{width:149.862357pt;}
._32{width:159.460315pt;}
._33{width:162.454880pt;}
._2e{width:188.699733pt;}
._17{width:195.984587pt;}
._13{width:204.536533pt;}
._15{width:207.098080pt;}
._18{width:211.036800pt;}
._20{width:214.213707pt;}
._24{width:217.607467pt;}
._14{width:225.375360pt;}
._16{width:226.718880pt;}
._19{width:230.933333pt;}
._1a{width:235.351413pt;}
._21{width:253.690640pt;}
._30{width:259.349920pt;}
._2f{width:260.997280pt;}
._1f{width:275.787797pt;}
._1d{width:276.813883pt;}
._22{width:278.881653pt;}
._2d{width:281.722133pt;}
._1e{width:292.617067pt;}
._25{width:294.133845pt;}
._23{width:296.269813pt;}
._2a{width:308.082560pt;}
._28{width:313.348747pt;}
._29{width:331.360480pt;}
._31{width:518.549333pt;}
._72{width:863.088064pt;}
._5{width:872.250165pt;}
.fs7{font-size:33.600001pt;}
.fs6{font-size:34.000003pt;}
.fs1{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:57.600000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:56.876663pt;}
.y1e{bottom:56.881867pt;}
.y3{bottom:56.882263pt;}
.y5d{bottom:58.552531pt;}
.y2{bottom:58.557735pt;}
.y4{bottom:58.558131pt;}
.y107{bottom:110.553060pt;}
.y1f6{bottom:114.814535pt;}
.y121{bottom:114.971333pt;}
.ybf{bottom:117.753061pt;}
.y1da{bottom:117.961467pt;}
.ye2{bottom:118.019735pt;}
.y7d{bottom:118.626129pt;}
.y1a7{bottom:119.431325pt;}
.y3f{bottom:119.753061pt;}
.y106{bottom:127.619731pt;}
.y140{bottom:130.281199pt;}
.y9e{bottom:130.876261pt;}
.y1d9{bottom:131.294800pt;}
.y1f5{bottom:132.147868pt;}
.y1a6{bottom:132.764659pt;}
.y15d{bottom:134.306533pt;}
.ybe{bottom:135.086400pt;}
.y7c{bottom:135.959467pt;}
.y3e{bottom:136.419733pt;}
.y9d{bottom:143.542933pt;}
.y105{bottom:144.019733pt;}
.y1d8{bottom:144.628133pt;}
.y1a5{bottom:146.097987pt;}
.y13f{bottom:148.947867pt;}
.ydb{bottom:148.953067pt;}
.y120{bottom:151.199853pt;}
.y15c{bottom:151.639867pt;}
.ybd{bottom:152.153067pt;}
.y3d{bottom:153.086400pt;}
.y7b{bottom:153.292800pt;}
.y1d7{bottom:157.961467pt;}
.y1a4{bottom:159.431320pt;}
.y104{bottom:160.419733pt;}
.y1d{bottom:165.931453pt;}
.y13e{bottom:167.614533pt;}
.yda{bottom:167.619733pt;}
.y15b{bottom:168.973200pt;}
.ybc{bottom:169.219720pt;}
.y3c{bottom:169.753067pt;}
.y7a{bottom:170.226120pt;}
.y9c{bottom:171.010133pt;}
.y1d6{bottom:171.294800pt;}
.y1a3{bottom:172.764667pt;}
.y103{bottom:176.819720pt;}
.y11f{bottom:181.851867pt;}
.y1f4{bottom:182.814533pt;}
.y1d5{bottom:184.628133pt;}
.y1a2{bottom:186.098000pt;}
.ybb{bottom:186.286400pt;}
.y15a{bottom:186.306520pt;}
.y79{bottom:187.159467pt;}
.y102{bottom:193.219720pt;}
.y9b{bottom:193.687333pt;}
.y11e{bottom:196.251867pt;}
.y1c{bottom:196.331467pt;}
.y1f3{bottom:197.214520pt;}
.y1d4{bottom:197.961467pt;}
.y1a1{bottom:199.431333pt;}
.y3b{bottom:203.086387pt;}
.yba{bottom:203.353067pt;}
.y159{bottom:203.639853pt;}
.y78{bottom:204.092800pt;}
.y13d{bottom:204.947853pt;}
.yd9{bottom:204.953067pt;}
.y59{bottom:205.546000pt;}
.y11b{bottom:209.478267pt;}
.y101{bottom:209.619733pt;}
.y1b{bottom:210.731467pt;}
.y1d3{bottom:211.294800pt;}
.y1f2{bottom:211.614520pt;}
.y1a0{bottom:212.764667pt;}
.y9a{bottom:216.364520pt;}
.y3a{bottom:219.753053pt;}
.yb9{bottom:220.419720pt;}
.y158{bottom:220.973187pt;}
.y77{bottom:221.026120pt;}
.y58{bottom:222.879333pt;}
.y13c{bottom:223.614520pt;}
.y1d2{bottom:224.628133pt;}
.y11d{bottom:225.051853pt;}
.y1a{bottom:225.131467pt;}
.y1f1{bottom:226.014520pt;}
.y100{bottom:226.019733pt;}
.y19f{bottom:226.098000pt;}
.y176{bottom:235.886387pt;}
.y99{bottom:236.907853pt;}
.yb8{bottom:237.486387pt;}
.y76{bottom:237.959453pt;}
.y1d1{bottom:237.961467pt;}
.y157{bottom:238.306520pt;}
.y19e{bottom:239.431333pt;}
.y11c{bottom:239.451867pt;}
.y19{bottom:239.531453pt;}
.y57{bottom:240.212667pt;}
.y1f0{bottom:240.414533pt;}
.yd8{bottom:242.286400pt;}
.yff{bottom:242.419720pt;}
.y175{bottom:250.286400pt;}
.y1d0{bottom:251.294800pt;}
.y98{bottom:251.307867pt;}
.y19d{bottom:252.764667pt;}
.y39{bottom:253.086387pt;}
.y18{bottom:253.931453pt;}
.ye1{bottom:254.553053pt;}
.y1ef{bottom:254.814533pt;}
.y75{bottom:254.892800pt;}
.y156{bottom:255.639853pt;}
.y56{bottom:257.546000pt;}
.yfe{bottom:258.819720pt;}
.y13b{bottom:260.947853pt;}
.yd7{bottom:260.953067pt;}
.y1cf{bottom:264.628133pt;}
.y11a{bottom:264.684120pt;}
.y174{bottom:264.686400pt;}
.y19c{bottom:266.098000pt;}
.y38{bottom:269.753053pt;}
.yb7{bottom:271.619733pt;}
.y55{bottom:274.879333pt;}
.yfd{bottom:275.219720pt;}
.y1ce{bottom:277.961467pt;}
.y173{bottom:279.086387pt;}
.y19b{bottom:279.431333pt;}
.y13a{bottom:279.614520pt;}
.yd6{bottom:279.619733pt;}
.y17{bottom:282.731467pt;}
.y97{bottom:287.050680pt;}
.yb6{bottom:288.686400pt;}
.y74{bottom:288.759467pt;}
.y155{bottom:290.306520pt;}
.y1cd{bottom:291.294800pt;}
.yfc{bottom:291.619733pt;}
.y19a{bottom:292.764667pt;}
.y172{bottom:293.486387pt;}
.y16{bottom:297.131453pt;}
.y139{bottom:298.281187pt;}
.y1ee{bottom:301.214520pt;}
.y37{bottom:303.086387pt;}
.y96{bottom:304.384013pt;}
.y1cc{bottom:304.628133pt;}
.yb5{bottom:305.753053pt;}
.y199{bottom:306.098000pt;}
.y154{bottom:307.639853pt;}
.y171{bottom:307.886387pt;}
.yfb{bottom:308.019733pt;}
.y119{bottom:308.249587pt;}
.y54{bottom:309.546000pt;}
.y15{bottom:311.531453pt;}
.y73{bottom:316.226667pt;}
.yd5{bottom:316.953067pt;}
.y1cb{bottom:317.961467pt;}
.y1ed{bottom:318.547853pt;}
.y198{bottom:319.431320pt;}
.y36{bottom:319.753053pt;}
.y95{bottom:321.717347pt;}
.ye0{bottom:322.819720pt;}
.yfa{bottom:324.419720pt;}
.y153{bottom:324.973187pt;}
.y118{bottom:325.582920pt;}
.y53{bottom:326.879333pt;}
.y1ca{bottom:331.294800pt;}
.y197{bottom:332.764653pt;}
.y138{bottom:335.614520pt;}
.yd4{bottom:335.619733pt;}
.y35{bottom:336.419720pt;}
.y170{bottom:338.286400pt;}
.y72{bottom:338.903733pt;}
.y94{bottom:339.050680pt;}
.yb4{bottom:339.886387pt;}
.y14{bottom:340.331467pt;}
.y152{bottom:342.306520pt;}
.y117{bottom:342.916253pt;}
.y52{bottom:344.212640pt;}
.y1c9{bottom:344.628133pt;}
.y196{bottom:346.097987pt;}
.y34{bottom:353.086387pt;}
.y1ec{bottom:353.214520pt;}
.y137{bottom:354.281213pt;}
.yd3{bottom:354.286373pt;}
.y93{bottom:356.384027pt;}
.yb3{bottom:356.953040pt;}
.yf9{bottom:357.219720pt;}
.y1c8{bottom:357.961467pt;}
.y195{bottom:359.431320pt;}
.y151{bottom:359.639853pt;}
.y116{bottom:360.249587pt;}
.y71{bottom:361.580933pt;}
.y1eb{bottom:370.547853pt;}
.y1c7{bottom:371.294800pt;}
.y194{bottom:372.764653pt;}
.y136{bottom:372.947880pt;}
.y92{bottom:373.717360pt;}
.yb2{bottom:374.019733pt;}
.y150{bottom:376.973187pt;}
.y115{bottom:377.582920pt;}
.y1c6{bottom:384.628133pt;}
.y193{bottom:386.097987pt;}
.y16f{bottom:386.286373pt;}
.y33{bottom:386.419720pt;}
.y91{bottom:391.050693pt;}
.yb1{bottom:391.086387pt;}
.y135{bottom:391.614547pt;}
.yd2{bottom:391.619707pt;}
.y14f{bottom:394.306520pt;}
.y1c5{bottom:397.961467pt;}
.y192{bottom:399.431320pt;}
.y70{bottom:399.457600pt;}
.y51{bottom:399.545973pt;}
.y16e{bottom:403.619707pt;}
.y1ea{bottom:405.214520pt;}
.yf8{bottom:406.419720pt;}
.yb0{bottom:408.153080pt;}
.y134{bottom:410.281213pt;}
.yd1{bottom:410.286373pt;}
.y114{bottom:410.916253pt;}
.y1c4{bottom:411.294800pt;}
.y14e{bottom:411.639853pt;}
.y50{bottom:412.212640pt;}
.y191{bottom:412.764653pt;}
.y6f{bottom:416.790933pt;}
.y13{bottom:420.331467pt;}
.y1e9{bottom:422.547853pt;}
.yf7{bottom:422.819747pt;}
.y90{bottom:424.384027pt;}
.y1c3{bottom:424.628133pt;}
.yaf{bottom:425.219720pt;}
.y190{bottom:426.097987pt;}
.y113{bottom:426.916253pt;}
.y133{bottom:428.947880pt;}
.yd0{bottom:428.953040pt;}
.y14d{bottom:428.973187pt;}
.y6e{bottom:433.724240pt;}
.y32{bottom:435.753053pt;}
.y12{bottom:436.331467pt;}
.y16d{bottom:436.953040pt;}
.y1c2{bottom:437.961467pt;}
.yf6{bottom:439.219720pt;}
.y18f{bottom:439.431320pt;}
.y8f{bottom:441.717360pt;}
.y4f{bottom:441.881840pt;}
.yae{bottom:442.286373pt;}
.y14c{bottom:446.306520pt;}
.y132{bottom:447.614507pt;}
.ycf{bottom:447.619707pt;}
.y1c1{bottom:451.294800pt;}
.y11{bottom:452.331467pt;}
.y31{bottom:452.419720pt;}
.y18e{bottom:452.764653pt;}
.y16c{bottom:454.286373pt;}
.yf5{bottom:455.619707pt;}
.y1e8{bottom:457.214520pt;}
.y8e{bottom:459.050693pt;}
.yad{bottom:459.353067pt;}
.y4e{bottom:462.296667pt;}
.y14b{bottom:463.639853pt;}
.y1c0{bottom:464.628133pt;}
.y18d{bottom:466.097987pt;}
.y131{bottom:466.281173pt;}
.y6d{bottom:467.590907pt;}
.y10{bottom:468.331467pt;}
.y30{bottom:469.086387pt;}
.y16b{bottom:471.619707pt;}
.yf4{bottom:472.019733pt;}
.y1e7{bottom:474.547853pt;}
.y112{bottom:474.916253pt;}
.y8d{bottom:476.384027pt;}
.ydf{bottom:476.419720pt;}
.y1bf{bottom:477.961467pt;}
.y18c{bottom:479.431320pt;}
.y14a{bottom:480.973187pt;}
.y4d{bottom:482.711467pt;}
.yf{bottom:484.331467pt;}
.y6c{bottom:484.524253pt;}
.y130{bottom:484.947840pt;}
.yce{bottom:484.953040pt;}
.y2f{bottom:485.753053pt;}
.yf3{bottom:488.419720pt;}
.y16a{bottom:488.953040pt;}
.y1be{bottom:491.294800pt;}
.y111{bottom:492.249587pt;}
.y18b{bottom:492.764653pt;}
.yac{bottom:493.486373pt;}
.y8c{bottom:493.717360pt;}
.y149{bottom:498.306520pt;}
.ye{bottom:500.331467pt;}
.y6b{bottom:501.457600pt;}
.y2e{bottom:502.419720pt;}
.y4c{bottom:503.126133pt;}
.y12f{bottom:503.614507pt;}
.ycd{bottom:503.619707pt;}
.y1bd{bottom:504.628133pt;}
.yf2{bottom:504.819707pt;}
.y18a{bottom:506.097987pt;}
.y169{bottom:506.286373pt;}
.y1e6{bottom:509.214520pt;}
.yab{bottom:510.553053pt;}
.y8b{bottom:511.050693pt;}
.yd{bottom:516.331467pt;}
.y1bc{bottom:517.961467pt;}
.y6a{bottom:518.390907pt;}
.y2d{bottom:519.086387pt;}
.y189{bottom:519.431320pt;}
.yf1{bottom:521.219720pt;}
.y12e{bottom:522.281173pt;}
.ycc{bottom:522.286373pt;}
.y4b{bottom:523.540933pt;}
.y168{bottom:523.619707pt;}
.y1e5{bottom:526.547853pt;}
.yde{bottom:527.619707pt;}
.y8a{bottom:528.384027pt;}
.y1bb{bottom:531.294800pt;}
.yc{bottom:532.331467pt;}
.y188{bottom:532.764653pt;}
.y69{bottom:535.324253pt;}
.y2c{bottom:535.753053pt;}
.yf0{bottom:537.619707pt;}
.y12d{bottom:540.947840pt;}
.ycb{bottom:540.953040pt;}
.y110{bottom:541.582920pt;}
.y1ba{bottom:544.628133pt;}
.yaa{bottom:544.686400pt;}
.y89{bottom:545.717360pt;}
.y187{bottom:546.097987pt;}
.yb{bottom:548.331467pt;}
.y148{bottom:550.306520pt;}
.y68{bottom:552.257573pt;}
.y2b{bottom:552.419720pt;}
.yef{bottom:554.019733pt;}
.y1b9{bottom:557.961467pt;}
.y167{bottom:558.286373pt;}
.y186{bottom:559.431320pt;}
.y12c{bottom:559.614507pt;}
.yca{bottom:559.619707pt;}
.y4a{bottom:560.286373pt;}
.y1e4{bottom:561.214520pt;}
.ydd{bottom:561.753053pt;}
.y88{bottom:563.050693pt;}
.ya{bottom:564.331467pt;}
.y2a{bottom:569.086387pt;}
.y67{bottom:569.190920pt;}
.yee{bottom:570.419720pt;}
.y10f{bottom:570.939867pt;}
.y1b8{bottom:571.294800pt;}
.y185{bottom:572.764653pt;}
.y166{bottom:575.619707pt;}
.y49{bottom:577.619707pt;}
.y12b{bottom:578.281173pt;}
.yc9{bottom:578.286373pt;}
.y1e3{bottom:578.547853pt;}
.ydc{bottom:578.819707pt;}
.y9{bottom:580.331467pt;}
.y87{bottom:580.384027pt;}
.y1b7{bottom:584.628133pt;}
.y29{bottom:585.753053pt;}
.y184{bottom:586.097987pt;}
.y66{bottom:586.124267pt;}
.yed{bottom:586.819707pt;}
.y147{bottom:592.301840pt;}
.y165{bottom:592.953040pt;}
.y48{bottom:594.953040pt;}
.ya9{bottom:595.886387pt;}
.y8{bottom:596.331467pt;}
.y12a{bottom:596.947840pt;}
.yc8{bottom:596.953040pt;}
.y10e{bottom:597.396520pt;}
.y86{bottom:597.717360pt;}
.y1b6{bottom:597.961467pt;}
.y183{bottom:599.431320pt;}
.y28{bottom:602.419720pt;}
.yec{bottom:603.219720pt;}
.y164{bottom:610.286373pt;}
.y1b5{bottom:611.294800pt;}
.y182{bottom:612.764653pt;}
.ya8{bottom:612.953040pt;}
.y1e2{bottom:613.214520pt;}
.y129{bottom:615.614507pt;}
.yc7{bottom:615.619707pt;}
.yeb{bottom:619.619707pt;}
.y10d{bottom:623.853307pt;}
.y1b4{bottom:624.628133pt;}
.y146{bottom:625.937453pt;}
.y181{bottom:626.097987pt;}
.y163{bottom:627.619707pt;}
.y47{bottom:629.619707pt;}
.ya7{bottom:630.019733pt;}
.y1e1{bottom:630.547853pt;}
.y85{bottom:631.050693pt;}
.y65{bottom:631.724240pt;}
.y145{bottom:633.137453pt;}
.y128{bottom:634.281173pt;}
.yc6{bottom:634.286373pt;}
.yea{bottom:636.019733pt;}
.y1b3{bottom:637.961467pt;}
.y180{bottom:639.431320pt;}
.y7{bottom:644.331467pt;}
.y162{bottom:644.953040pt;}
.y46{bottom:646.953040pt;}
.ya6{bottom:647.086387pt;}
.y1b2{bottom:651.294800pt;}
.y27{bottom:652.419720pt;}
.y17f{bottom:652.764653pt;}
.yc5{bottom:652.953040pt;}
.y84{bottom:658.517867pt;}
.y64{bottom:661.081173pt;}
.y161{bottom:662.286373pt;}
.y10c{bottom:663.619707pt;}
.ya5{bottom:664.153040pt;}
.y1b1{bottom:664.628133pt;}
.y1e0{bottom:665.214520pt;}
.y17e{bottom:666.097987pt;}
.ye9{bottom:668.819707pt;}
.y127{bottom:671.614507pt;}
.yc4{bottom:671.619707pt;}
.y144{bottom:671.924760pt;}
.y6{bottom:673.131467pt;}
.y1b0{bottom:677.961467pt;}
.y17d{bottom:679.431320pt;}
.y160{bottom:679.619707pt;}
.y45{bottom:680.286373pt;}
.y10b{bottom:680.953040pt;}
.y83{bottom:681.195067pt;}
.ya4{bottom:681.219720pt;}
.y1df{bottom:682.547853pt;}
.y26{bottom:682.819747pt;}
.ye8{bottom:685.219720pt;}
.y63{bottom:687.537840pt;}
.y5{bottom:689.131427pt;}
.y126{bottom:690.281173pt;}
.yc3{bottom:690.286373pt;}
.y1af{bottom:691.294760pt;}
.y17c{bottom:692.764653pt;}
.y15f{bottom:696.953040pt;}
.y25{bottom:697.219720pt;}
.y44{bottom:697.619707pt;}
.ya3{bottom:698.286373pt;}
.y1de{bottom:699.881187pt;}
.ye7{bottom:701.619707pt;}
.y82{bottom:701.738360pt;}
.y1ae{bottom:704.628093pt;}
.y17b{bottom:706.097987pt;}
.y125{bottom:708.947840pt;}
.yc2{bottom:708.953040pt;}
.y62{bottom:713.994547pt;}
.y143{bottom:714.281173pt;}
.y15e{bottom:714.286373pt;}
.y43{bottom:714.953040pt;}
.ya2{bottom:715.353027pt;}
.y81{bottom:716.138347pt;}
.y1dd{bottom:717.214520pt;}
.y1ad{bottom:717.961427pt;}
.ye6{bottom:718.019693pt;}
.y17a{bottom:719.431320pt;}
.y24{bottom:726.019693pt;}
.y124{bottom:727.614507pt;}
.yc1{bottom:727.619707pt;}
.y80{bottom:730.538253pt;}
.y1ac{bottom:731.294760pt;}
.y142{bottom:731.614507pt;}
.y10a{bottom:731.619707pt;}
.y42{bottom:732.286373pt;}
.ya1{bottom:732.419680pt;}
.y179{bottom:732.764653pt;}
.ye5{bottom:734.419680pt;}
.y1dc{bottom:734.547853pt;}
.y23{bottom:740.419680pt;}
.y61{bottom:740.451173pt;}
.y1ab{bottom:744.628093pt;}
.y178{bottom:746.097987pt;}
.y123{bottom:746.281173pt;}
.y141{bottom:748.947840pt;}
.y109{bottom:748.953040pt;}
.ya0{bottom:749.486253pt;}
.y41{bottom:749.619707pt;}
.ye4{bottom:750.819587pt;}
.y1db{bottom:751.881187pt;}
.y22{bottom:754.819747pt;}
.y1aa{bottom:757.961427pt;}
.y177{bottom:759.431320pt;}
.y5f{bottom:763.887040pt;}
.y122{bottom:764.947840pt;}
.yc0{bottom:764.953040pt;}
.y7f{bottom:766.281173pt;}
.y108{bottom:766.286373pt;}
.y9f{bottom:766.553053pt;}
.y40{bottom:766.953040pt;}
.ye3{bottom:767.219720pt;}
.y5e{bottom:771.086920pt;}
.y1a9{bottom:771.294760pt;}
.y60{bottom:778.287027pt;}
.y7e{bottom:783.614507pt;}
.y21{bottom:783.619707pt;}
.y1a8{bottom:784.628093pt;}
.y5c{bottom:830.539547pt;}
.y20{bottom:830.544760pt;}
.y5b{bottom:842.539547pt;}
.y1f{bottom:842.544760pt;}
.y1{bottom:843.930507pt;}
.h2{height:28.000000pt;}
.h8{height:31.011721pt;}
.h3{height:31.619792pt;}
.hf{height:36.304688pt;}
.ha{height:38.916667pt;}
.h7{height:41.348958pt;}
.h6{height:43.781250pt;}
.h5{height:48.645833pt;}
.h9{height:49.846769pt;}
.h4{height:52.537500pt;}
.hd{height:55.385417pt;}
.he{height:72.581197pt;}
.hc{height:72.581303pt;}
.hb{height:72.581677pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:642.519973pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:68.031464pt;}
.x1{left:83.149597pt;}
.x50{left:87.562795pt;}
.x63{left:89.364797pt;}
.x7{left:91.129597pt;}
.x4e{left:92.215729pt;}
.x4{left:102.021596pt;}
.x47{left:103.292664pt;}
.x51{left:104.552001pt;}
.x5{left:105.826792pt;}
.x5a{left:108.836935pt;}
.x8{left:111.967325pt;}
.x5e{left:114.951732pt;}
.x25{left:116.031464pt;}
.x5b{left:117.602529pt;}
.x4c{left:122.851196pt;}
.x4d{left:123.979197pt;}
.x26{left:127.085460pt;}
.x41{left:131.149597pt;}
.x4f{left:137.356400pt;}
.x9{left:138.306133pt;}
.x18{left:146.720533pt;}
.x45{left:152.528533pt;}
.x19{left:153.889053pt;}
.x42{left:155.149600pt;}
.x55{left:157.259200pt;}
.x44{left:159.334133pt;}
.xa{left:160.531333pt;}
.x34{left:161.838680pt;}
.x35{left:169.007187pt;}
.x53{left:172.684800pt;}
.x54{left:173.742387pt;}
.x27{left:175.649453pt;}
.x56{left:179.803200pt;}
.x57{left:180.860800pt;}
.xb{left:182.749587pt;}
.x46{left:184.699053pt;}
.x28{left:197.867733pt;}
.x1a{left:205.226133pt;}
.xc{left:208.695600pt;}
.x1b{left:214.534787pt;}
.x36{left:220.344133pt;}
.x29{left:223.813720pt;}
.x37{left:229.652933pt;}
.x43{left:238.911720pt;}
.x1c{left:243.438253pt;}
.x1d{left:245.762000pt;}
.xd{left:247.138387pt;}
.x59{left:254.551333pt;}
.x1e{left:255.893853pt;}
.x38{left:258.556400pt;}
.x39{left:260.879987pt;}
.x2a{left:262.256533pt;}
.x3a{left:271.012000pt;}
.xe{left:272.623333pt;}
.x1f{left:273.928120pt;}
.x2b{left:287.741453pt;}
.x3b{left:289.046267pt;}
.x52{left:295.668920pt;}
.x48{left:302.171733pt;}
.xf{left:307.668787pt;}
.x20{left:321.970133pt;}
.x5d{left:326.349587pt;}
.x60{left:328.818787pt;}
.x10{left:329.879987pt;}
.x3c{left:337.088133pt;}
.x62{left:343.937053pt;}
.x2c{left:344.998133pt;}
.x5f{left:351.496013pt;}
.x61{left:366.614133pt;}
.x11{left:370.079587pt;}
.x21{left:380.842413pt;}
.x2d{left:385.197707pt;}
.x12{left:392.817587pt;}
.x3d{left:395.960533pt;}
.x49{left:397.035853pt;}
.x2e{left:407.935707pt;}
.x22{left:412.098920pt;}
.x23{left:414.422693pt;}
.x3{left:417.390787pt;}
.x24{left:419.142787pt;}
.x13{left:425.312373pt;}
.x3e{left:427.217040pt;}
.x3f{left:429.540653pt;}
.x40{left:434.260907pt;}
.x2f{left:440.430547pt;}
.x14{left:451.714680pt;}
.x30{left:466.832800pt;}
.x15{left:471.114253pt;}
.x4b{left:481.195840pt;}
.x31{left:486.232387pt;}
.x4a{left:490.166507pt;}
.x16{left:496.072387pt;}
.x32{left:511.190507pt;}
.x17{left:536.272013pt;}
.x33{left:551.390133pt;}
.x2{left:552.706907pt;}
.x5c{left:553.700520pt;}
.x58{left:555.447067pt;}
}




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