
    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_1f6363a46a7013111ee918af.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.130371;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_c2f0ba468c43b04fcd703208.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f1b4b5f9523a831f0bf2f957.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_b8fffb4fb3680b7bfc423b53.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_6febd1529087172dd965bbf3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4d3f885cf0be36c1404ce8fa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.130371;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_be3f5e8b3ce07978145f8038.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962402;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_9548c8f2c6aab2306500de44.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.983398;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_6d269448f911b16ec8851090.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_16754d1e6a8572e70f4d4337.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.941406;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_b0a52ab90e849676aeebf698.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-76.464000px;}
.v6{vertical-align:-60.912000px;}
.v3{vertical-align:-36.900000px;}
.v1{vertical-align:-30.384000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:3.168000px;}
.v2{vertical-align:32.580000px;}
.v4{vertical-align:62.640000px;}
.v5{vertical-align:75.456000px;}
.v9{vertical-align:105.540000px;}
.va{vertical-align:211.080000px;}
.ls11{letter-spacing:-0.193200px;}
.ls13{letter-spacing:-0.181200px;}
.ls1f{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.132600px;}
.ls1c{letter-spacing:-0.096600px;}
.ls20{letter-spacing:-0.066000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.108600px;}
.lsf{letter-spacing:0.165600px;}
.ls10{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.227808px;}
.ls21{letter-spacing:0.234000px;}
.ls9{letter-spacing:0.288000px;}
.ls1{letter-spacing:57.549600px;}
.ls2{letter-spacing:57.600000px;}
.ls1a{letter-spacing:61.833600px;}
.ls19{letter-spacing:61.884000px;}
.ls1b{letter-spacing:62.064000px;}
.lsd{letter-spacing:65.865600px;}
.lse{letter-spacing:65.916000px;}
.ls1e{letter-spacing:70.149600px;}
.ls1d{letter-spacing:70.200000px;}
.ls4{letter-spacing:85.029600px;}
.ls5{letter-spacing:85.080000px;}
.ls8{letter-spacing:88.416000px;}
.ls15{letter-spacing:89.193600px;}
.ls16{letter-spacing:89.244000px;}
.lsc{letter-spacing:97.509600px;}
.lsb{letter-spacing:97.560000px;}
.ls18{letter-spacing:106.293600px;}
.ls17{letter-spacing:106.344000px;}
.ls7{letter-spacing:111.549600px;}
.ls6{letter-spacing:111.600000px;}
.lsa{letter-spacing:963.670560px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc3{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws16{word-spacing:-59.750784px;}
.ws14{word-spacing:-59.718240px;}
.ws19{word-spacing:-48.816000px;}
.ws1b{word-spacing:-43.478784px;}
.ws12{word-spacing:-43.446240px;}
.ws1a{word-spacing:-37.913760px;}
.wsc{word-spacing:-32.576544px;}
.ws1{word-spacing:-32.544000px;}
.ws11{word-spacing:-29.810304px;}
.ws10{word-spacing:-29.777760px;}
.ws3{word-spacing:-29.322144px;}
.ws4{word-spacing:-29.289600px;}
.ws7{word-spacing:-27.372384px;}
.ws15{word-spacing:-27.206784px;}
.ws8{word-spacing:-27.174240px;}
.ws13{word-spacing:-25.742304px;}
.wse{word-spacing:-25.709760px;}
.ws6{word-spacing:-24.440544px;}
.ws5{word-spacing:-24.408000px;}
.ws18{word-spacing:-20.340000px;}
.ws17{word-spacing:-16.272000px;}
.wsb{word-spacing:-15.002784px;}
.ws9{word-spacing:-14.777040px;}
.wsa{word-spacing:-6.834240px;}
.ws0{word-spacing:0.000000px;}
.ws1e{word-spacing:325.188480px;}
.ws1d{word-spacing:378.280800px;}
.wsf{word-spacing:586.995360px;}
.ws1c{word-spacing:602.124000px;}
.wsd{word-spacing:630.252960px;}
.ws2{word-spacing:1376.409600px;}
._d{margin-left:-18.720000px;}
._11{margin-left:-16.416720px;}
._9{margin-left:-13.975488px;}
._7{margin-left:-11.961792px;}
._8{margin-left:-9.669312px;}
._0{margin-left:-7.587072px;}
._2{margin-left:-5.816448px;}
._4{margin-left:-4.494528px;}
._5{margin-left:-2.908224px;}
._1{margin-left:-1.850688px;}
._6{width:1.071360px;}
._c{width:2.231712px;}
._f{width:3.776064px;}
._12{width:5.050080px;}
._a{width:39.237888px;}
._16{width:40.935168px;}
._3{width:53.162784px;}
._b{width:206.209824px;}
._14{width:305.381184px;}
._18{width:340.878864px;}
._19{width:437.275632px;}
._1a{width:518.416416px;}
._e{width:542.877792px;}
._17{width:549.418128px;}
._10{width:1297.025760px;}
._15{width:2003.954928px;}
._13{width:3110.059872px;}
.fc9{color:transparent;}
.fc6{color:rgb(68,114,196);}
.fc5{color:rgb(46,117,182);}
.fc3{color:rgb(31,31,63);}
.fc2{color:rgb(192,0,0);}
.fc8{color:rgb(85,85,85);}
.fc7{color:rgb(51,51,51);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:30.240000px;}
.fs19{font-size:48.240000px;}
.fsb{font-size:64.800000px;}
.fs16{font-size:66.240000px;}
.fs18{font-size:66.384000px;}
.fs4{font-size:72.000000px;}
.fs20{font-size:90.000000px;}
.fs1f{font-size:90.144000px;}
.fse{font-size:97.200000px;}
.fsc{font-size:108.000000px;}
.fsd{font-size:108.144000px;}
.fs1a{font-size:113.760000px;}
.fs1c{font-size:113.904000px;}
.fs12{font-size:120.240000px;}
.fs13{font-size:120.384000px;}
.fs9{font-size:129.600000px;}
.fsa{font-size:129.744000px;}
.fs11{font-size:131.760000px;}
.fs1b{font-size:131.904000px;}
.fs2{font-size:144.000000px;}
.fs3{font-size:144.144000px;}
.fs22{font-size:156.240000px;}
.fs21{font-size:167.760000px;}
.fs1d{font-size:174.240000px;}
.fs1e{font-size:174.384000px;}
.fs5{font-size:192.240000px;}
.fs6{font-size:192.384000px;}
.fs8{font-size:194.544000px;}
.fs7{font-size:210.240000px;}
.fs15{font-size:216.000000px;}
.fs14{font-size:216.144000px;}
.fs23{font-size:216.720000px;}
.fsf{font-size:239.760000px;}
.fs10{font-size:239.904000px;}
.fs1{font-size:264.240000px;}
.fs0{font-size:264.384000px;}
.y0{bottom:0.000000px;}
.ybd{bottom:12.528000px;}
.y85{bottom:15.768000px;}
.y95{bottom:26.208000px;}
.y176{bottom:26.640000px;}
.yb8{bottom:30.060000px;}
.y141{bottom:30.600000px;}
.y7{bottom:31.392000px;}
.y13c{bottom:32.796000px;}
.ybc{bottom:34.128000px;}
.y84{bottom:35.568000px;}
.y3b{bottom:38.988000px;}
.y129{bottom:46.620000px;}
.y148{bottom:50.508000px;}
.y168{bottom:59.040000px;}
.y52{bottom:65.052000px;}
.y13b{bottom:65.736000px;}
.y17a{bottom:66.168000px;}
.yb7{bottom:69.660000px;}
.y17{bottom:70.920000px;}
.y114{bottom:72.576000px;}
.yf1{bottom:75.492000px;}
.y128{bottom:79.020000px;}
.y16c{bottom:80.640000px;}
.y143{bottom:81.216000px;}
.y3a{bottom:82.188000px;}
.y93{bottom:84.852000px;}
.yd6{bottom:88.740000px;}
.y113{bottom:92.376000px;}
.y51{bottom:97.488000px;}
.y179{bottom:98.604000px;}
.y13a{bottom:98.712000px;}
.y177{bottom:104.364000px;}
.y172{bottom:104.370000px;}
.y16b{bottom:104.400000px;}
.y15c{bottom:104.430000px;}
.y154{bottom:104.475000px;}
.y152{bottom:104.550000px;}
.yf0{bottom:104.652000px;}
.y147{bottom:108.144000px;}
.yb6{bottom:109.296000px;}
.y16{bottom:109.800000px;}
.y127{bottom:111.420000px;}
.y39{bottom:125.388000px;}
.y92{bottom:128.052000px;}
.yd5{bottom:128.340000px;}
.y50{bottom:129.888000px;}
.y178{bottom:131.004000px;}
.y139{bottom:131.652000px;}
.yef{bottom:133.848000px;}
.y171{bottom:134.640000px;}
.yc7{bottom:141.336000px;}
.y14f{bottom:144.072000px;}
.y6{bottom:146.412000px;}
.y15{bottom:148.716000px;}
.yb5{bottom:148.896000px;}
.y4f{bottom:162.285000px;}
.yee{bottom:163.005000px;}
.y138{bottom:164.595000px;}
.y28{bottom:166.350000px;}
.y161{bottom:167.040000px;}
.yd4{bottom:167.940000px;}
.y38{bottom:168.630000px;}
.y91{bottom:171.285000px;}
.y175{bottom:174.210000px;}
.y11b{bottom:174.315000px;}
.y14{bottom:187.590000px;}
.yb4{bottom:188.490000px;}
.y165{bottom:188.640000px;}
.y4e{bottom:194.685000px;}
.y185{bottom:196.815000px;}
.y137{bottom:197.535000px;}
.y11a{bottom:198.975000px;}
.y7c{bottom:199.230000px;}
.y5{bottom:200.265000px;}
.y170{bottom:201.600000px;}
.yc6{bottom:202.890000px;}
.y126{bottom:206.310000px;}
.y174{bottom:206.610000px;}
.y27{bottom:209.595000px;}
.y16a{bottom:210.240000px;}
.y90{bottom:214.485000px;}
.ya9{bottom:223.890000px;}
.yfe{bottom:226.410000px;}
.y4d{bottom:227.085000px;}
.y13f{bottom:227.985000px;}
.y7b{bottom:228.030000px;}
.yb3{bottom:228.090000px;}
.y136{bottom:230.655000px;}
.y111{bottom:233.250000px;}
.y16d{bottom:234.000000px;}
.y15e{bottom:234.030000px;}
.y184{bottom:235.725000px;}
.y125{bottom:238.710000px;}
.y173{bottom:239.010000px;}
.ya8{bottom:239.550000px;}
.y13{bottom:241.410000px;}
.ya1{bottom:246.420000px;}
.y18f{bottom:251.070000px;}
.y26{bottom:252.795000px;}
.y110{bottom:253.050000px;}
.y4{bottom:254.085000px;}
.y37{bottom:256.830000px;}
.y8f{bottom:257.685000px;}
.yfd{bottom:258.810000px;}
.y4c{bottom:259.530000px;}
.y135{bottom:260.925000px;}
.yc5{bottom:264.495000px;}
.y6f{bottom:265.320000px;}
.yb2{bottom:267.735000px;}
.y7a{bottom:271.800000px;}
.y155{bottom:275.040000px;}
.yed{bottom:278.205000px;}
.y5c{bottom:278.535000px;}
.ya4{bottom:280.080000px;}
.y12{bottom:280.290000px;}
.y16f{bottom:282.240000px;}
.y43{bottom:282.675000px;}
.y30{bottom:284.970000px;}
.y18e{bottom:285.630000px;}
.ya0{bottom:289.650000px;}
.y183{bottom:289.725000px;}
.y58{bottom:290.445000px;}
.yfc{bottom:291.210000px;}
.y4b{bottom:291.930000px;}
.y13e{bottom:293.865000px;}
.y134{bottom:294.045000px;}
.y64{bottom:294.405000px;}
.yc4{bottom:295.275000px;}
.y25{bottom:295.995000px;}
.y1e{bottom:296.175000px;}
.y15d{bottom:296.640000px;}
.y14e{bottom:297.510000px;}
.y6e{bottom:297.720000px;}
.y36{bottom:300.030000px;}
.y79{bottom:300.600000px;}
.y8e{bottom:300.885000px;}
.yb1{bottom:307.335000px;}
.y3{bottom:308.085000px;}
.yec{bottom:310.650000px;}
.ya3{bottom:311.400000px;}
.y144{bottom:314.025000px;}
.y16e{bottom:314.640000px;}
.ye2{bottom:315.435000px;}
.y164{bottom:318.240000px;}
.y11{bottom:319.215000px;}
.yfb{bottom:323.610000px;}
.y4a{bottom:325.590000px;}
.y42{bottom:325.905000px;}
.yc3{bottom:326.055000px;}
.y63{bottom:326.805000px;}
.y13d{bottom:327.030000px;}
.y2f{bottom:328.215000px;}
.y182{bottom:328.605000px;}
.y78{bottom:329.400000px;}
.y119{bottom:329.685000px;}
.y145{bottom:329.970000px;}
.y158{bottom:331.275000px;}
.y9f{bottom:332.850000px;}
.y124{bottom:333.615000px;}
.y1d{bottom:335.055000px;}
.y18d{bottom:335.130000px;}
.y24{bottom:339.195000px;}
.y35{bottom:343.260000px;}
.y8d{bottom:344.130000px;}
.y6d{bottom:345.240000px;}
.yb0{bottom:346.935000px;}
.y14d{bottom:350.250000px;}
.yf3{bottom:351.075000px;}
.ya5{bottom:351.975000px;}
.y12c{bottom:353.850000px;}
.y118{bottom:354.345000px;}
.yfa{bottom:356.010000px;}
.y169{bottom:357.840000px;}
.yeb{bottom:357.990000px;}
.y10{bottom:358.095000px;}
.y62{bottom:359.205000px;}
.y47{bottom:363.525000px;}
.y162{bottom:363.630000px;}
.y156{bottom:363.675000px;}
.y123{bottom:366.015000px;}
.y181{bottom:367.485000px;}
.y41{bottom:369.105000px;}
.y18c{bottom:369.720000px;}
.y77{bottom:373.320000px;}
.y1c{bottom:373.965000px;}
.y81{bottom:374.400000px;}
.yd3{bottom:374.790000px;}
.y9e{bottom:376.050000px;}
.y108{bottom:377.385000px;}
.y6c{bottom:377.640000px;}
.ydf{bottom:379.980000px;}
.y12e{bottom:381.675000px;}
.y23{bottom:382.425000px;}
.yaf{bottom:386.535000px;}
.ye1{bottom:386.715000px;}
.yc2{bottom:387.615000px;}
.ybb{bottom:387.975000px;}
.y167{bottom:390.240000px;}
.yea{bottom:390.390000px;}
.y61{bottom:391.650000px;}
.y10f{bottom:393.225000px;}
.y122{bottom:398.415000px;}
.y76{bottom:402.120000px;}
.y80{bottom:403.200000px;}
.y112{bottom:403.815000px;}
.y54{bottom:404.355000px;}
.y8c{bottom:406.440000px;}
.y107{bottom:406.545000px;}
.yd2{bottom:410.430000px;}
.y146{bottom:410.475000px;}
.yf{bottom:411.915000px;}
.y12b{bottom:412.200000px;}
.y40{bottom:412.305000px;}
.y2e{bottom:414.615000px;}
.yde{bottom:415.650000px;}
.yc1{bottom:418.425000px;}
.y18b{bottom:419.220000px;}
.y9d{bottom:419.250000px;}
.y180{bottom:421.350000px;}
.yf2{bottom:422.385000px;}
.y10e{bottom:422.430000px;}
.y166{bottom:422.670000px;}
.ye9{bottom:422.790000px;}
.y6b{bottom:425.010000px;}
.y22{bottom:425.625000px;}
.yae{bottom:426.165000px;}
.y15b{bottom:426.240000px;}
.y34{bottom:431.460000px;}
.y7f{bottom:432.030000px;}
.y53{bottom:433.545000px;}
.yf9{bottom:437.295000px;}
.y55{bottom:441.645000px;}
.y75{bottom:445.890000px;}
.yd1{bottom:446.070000px;}
.y12d{bottom:447.735000px;}
.ya7{bottom:448.740000px;}
.y8b{bottom:449.670000px;}
.ye{bottom:450.795000px;}
.y106{bottom:450.870000px;}
.ydd{bottom:451.290000px;}
.y10d{bottom:451.590000px;}
.y46{bottom:451.770000px;}
.y18a{bottom:453.780000px;}
.y117{bottom:455.010000px;}
.y3f{bottom:455.505000px;}
.y56{bottom:456.225000px;}
.y60{bottom:456.450000px;}
.y6a{bottom:457.410000px;}
.y2d{bottom:457.845000px;}
.ye0{bottom:458.025000px;}
.y17f{bottom:460.230000px;}
.y7e{bottom:460.830000px;}
.ycd{bottom:461.010000px;}
.y9c{bottom:462.495000px;}
.ya6{bottom:464.400000px;}
.y2{bottom:464.610000px;}
.yad{bottom:465.765000px;}
.y163{bottom:465.870000px;}
.yba{bottom:467.175000px;}
.y21{bottom:468.825000px;}
.yf8{bottom:469.695000px;}
.ye8{bottom:470.340000px;}
.y12a{bottom:470.520000px;}
.y33{bottom:474.690000px;}
.y14c{bottom:477.330000px;}
.yc0{bottom:479.985000px;}
.y105{bottom:480.030000px;}
.y10c{bottom:480.750000px;}
.y57{bottom:481.035000px;}
.yd0{bottom:481.710000px;}
.y1b{bottom:481.785000px;}
.ydc{bottom:486.930000px;}
.y5f{bottom:488.850000px;}
.y74{bottom:489.630000px;}
.yd{bottom:489.705000px;}
.y8a{bottom:492.870000px;}
.y121{bottom:493.125000px;}
.y45{bottom:494.970000px;}
.ycc{bottom:496.650000px;}
.y5b{bottom:496.830000px;}
.y160{bottom:498.270000px;}
.y3e{bottom:498.750000px;}
.y2c{bottom:501.045000px;}
.yf7{bottom:502.095000px;}
.ye7{bottom:502.740000px;}
.y189{bottom:503.460000px;}
.y14b{bottom:503.715000px;}
.y69{bottom:504.750000px;}
.yac{bottom:505.365000px;}
.y10b{bottom:509.910000px;}
.y20{bottom:512.070000px;}
.y17e{bottom:514.050000px;}
.yff{bottom:517.065000px;}
.ycf{bottom:517.350000px;}
.y32{bottom:517.890000px;}
.y73{bottom:518.430000px;}
.y1a{bottom:520.710000px;}
.ydb{bottom:522.570000px;}
.y104{bottom:524.130000px;}
.y120{bottom:525.525000px;}
.yc{bottom:528.585000px;}
.y15f{bottom:530.670000px;}
.y59{bottom:531.030000px;}
.y49{bottom:531.570000px;}
.ycb{bottom:532.335000px;}
.y7d{bottom:533.550000px;}
.y153{bottom:534.240000px;}
.y1{bottom:535.935000px;}
.y89{bottom:536.070000px;}
.y188{bottom:538.050000px;}
.y10a{bottom:539.070000px;}
.y2b{bottom:544.245000px;}
.yab{bottom:544.965000px;}
.yb9{bottom:546.405000px;}
.y9b{bottom:548.895000px;}
.yf6{bottom:549.465000px;}
.ye6{bottom:550.080000px;}
.y68{bottom:552.270000px;}
.y133{bottom:552.525000px;}
.y17d{bottom:552.960000px;}
.yce{bottom:553.035000px;}
.y103{bottom:553.290000px;}
.y1f{bottom:555.270000px;}
.y11f{bottom:557.925000px;}
.yda{bottom:558.210000px;}
.y19{bottom:559.590000px;}
.y72{bottom:562.350000px;}
.yca{bottom:567.975000px;}
.y109{bottom:568.230000px;}
.y187{bottom:572.610000px;}
.y15a{bottom:573.915000px;}
.y151{bottom:577.980000px;}
.ybf{bottom:579.030000px;}
.y88{bottom:579.315000px;}
.yf5{bottom:581.865000px;}
.ye5{bottom:582.480000px;}
.yb{bottom:582.585000px;}
.y44{bottom:583.200000px;}
.yaa{bottom:584.610000px;}
.y67{bottom:584.715000px;}
.y3d{bottom:585.150000px;}
.y132{bottom:585.645000px;}
.y2a{bottom:587.445000px;}
.y71{bottom:591.195000px;}
.yd9{bottom:593.895000px;}
.y102{bottom:597.420000px;}
.yc9{bottom:603.615000px;}
.y31{bottom:606.090000px;}
.y159{bottom:606.315000px;}
.y17c{bottom:606.960000px;}
.yf4{bottom:614.265000px;}
.ye4{bottom:614.910000px;}
.ya{bottom:621.465000px;}
.y186{bottom:622.110000px;}
.y87{bottom:622.515000px;}
.y191{bottom:626.610000px;}
.yd8{bottom:629.535000px;}
.ybe{bottom:630.870000px;}
.y66{bottom:630.975000px;}
.y14a{bottom:634.710000px;}
.y70{bottom:634.935000px;}
.y99{bottom:638.205000px;}
.y157{bottom:638.715000px;}
.y101{bottom:641.700000px;}
.ye3{bottom:647.310000px;}
.y11e{bottom:652.830000px;}
.y9{bottom:660.390000px;}
.y86{bottom:665.715000px;}
.y5a{bottom:668.775000px;}
.ya2{bottom:670.395000px;}
.y5e{bottom:670.425000px;}
.y98{bottom:670.605000px;}
.y18{bottom:675.255000px;}
.y131{bottom:681.840000px;}
.y11d{bottom:685.230000px;}
.y140{bottom:690.150000px;}
.y83{bottom:698.550000px;}
.y97{bottom:703.005000px;}
.y149{bottom:706.035000px;}
.y5d{bottom:706.065000px;}
.y116{bottom:709.275000px;}
.y142{bottom:711.900000px;}
.y130{bottom:714.780000px;}
.yc8{bottom:717.840000px;}
.y17b{bottom:724.500000px;}
.y29{bottom:725.835000px;}
.y8{bottom:727.305000px;}
.y190{bottom:728.895000px;}
.y65{bottom:733.290000px;}
.y100{bottom:733.395000px;}
.y96{bottom:735.405000px;}
.y9a{bottom:737.070000px;}
.y94{bottom:737.205000px;}
.y3c{bottom:738.330000px;}
.yd7{bottom:738.795000px;}
.y48{bottom:739.230000px;}
.y11c{bottom:745.590000px;}
.y12f{bottom:747.930000px;}
.y115{bottom:756.255000px;}
.y150{bottom:756.465000px;}
.y82{bottom:756.900000px;}
.h20{height:35.261367px;}
.h1e{height:53.302500px;}
.h1f{height:53.418375px;}
.h5{height:71.613281px;}
.h3d{height:78.943359px;}
.h40{height:79.048617px;}
.h2c{height:86.906250px;}
.h2d{height:87.022125px;}
.h34{height:89.516602px;}
.h33{height:89.659828px;}
.h18{height:90.414844px;}
.h12{height:96.677930px;}
.h2e{height:96.755625px;}
.h2f{height:96.871500px;}
.h10{height:102.832031px;}
.h11{height:102.969141px;}
.h16{height:107.419922px;}
.h17{height:107.563148px;}
.h29{height:108.316406px;}
.h2a{height:108.453516px;}
.h30{height:110.583984px;}
.h22{height:113.148984px;}
.h1a{height:119.594180px;}
.h19{height:119.737406px;}
.h1b{height:123.116836px;}
.hf{height:123.398438px;}
.h15{height:125.455078px;}
.h25{height:131.052305px;}
.h24{height:131.195531px;}
.h27{height:134.912461px;}
.h26{height:135.059906px;}
.h8{height:137.109375px;}
.h7{height:137.246484px;}
.h3{height:143.226562px;}
.h4{height:143.369789px;}
.h28{height:147.069281px;}
.ha{height:147.445312px;}
.hb{height:147.592758px;}
.h45{height:148.763672px;}
.hc{height:153.676406px;}
.he{height:156.115547px;}
.h31{height:165.902344px;}
.h32{height:166.039453px;}
.h35{height:166.858945px;}
.h23{height:175.788984px;}
.h6{height:183.041016px;}
.h9{height:183.178125px;}
.h37{height:191.207461px;}
.h36{height:191.350688px;}
.hd{height:199.198617px;}
.h1d{height:205.664062px;}
.h1c{height:205.801172px;}
.h46{height:215.555977px;}
.h3b{height:226.980000px;}
.h2b{height:228.287109px;}
.h21{height:228.424219px;}
.h13{height:238.472227px;}
.h14{height:238.615453px;}
.h2{height:251.595703px;}
.h1{height:251.732813px;}
.h38{height:296.890687px;}
.h43{height:350.820000px;}
.h3a{height:402.167461px;}
.h39{height:402.430687px;}
.h44{height:448.020000px;}
.h3e{height:453.780000px;}
.h3c{height:534.960000px;}
.h42{height:556.020000px;}
.h3f{height:642.960000px;}
.h41{height:680.580000px;}
.h0{height:810.000000px;}
.w2{width:469.080000px;}
.w3{width:469.260000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x34{left:10.799979px;}
.x94{left:16.020000px;}
.x41{left:24.083979px;}
.x26{left:25.199979px;}
.x93{left:26.891979px;}
.x85{left:27.971979px;}
.x29{left:32.111979px;}
.x8{left:37.187979px;}
.x51{left:39.707979px;}
.x37{left:42.551979px;}
.x4c{left:47.267979px;}
.x30{left:50.903979px;}
.x27{left:52.487979px;}
.x42{left:57.923979px;}
.x2a{left:59.111979px;}
.x9{left:63.611979px;}
.x48{left:67.715979px;}
.x4d{left:74.267979px;}
.x43{left:78.083979px;}
.x99{left:79.955979px;}
.x28{left:86.327979px;}
.xa{left:90.611979px;}
.x11{left:101.231979px;}
.xb{left:109.799979px;}
.x44{left:111.923979px;}
.x5d{left:116.171979px;}
.x55{left:128.519979px;}
.xc{left:136.799979px;}
.x12{left:141.731979px;}
.x4a{left:149.399979px;}
.x71{left:163.544979px;}
.x18{left:177.479979px;}
.x8f{left:182.414979px;}
.x70{left:184.784979px;}
.x4b{left:185.939979px;}
.x86{left:189.794979px;}
.x22{left:201.089979px;}
.x19{left:204.479979px;}
.x59{left:206.489979px;}
.x5c{left:207.749979px;}
.x72{left:209.084979px;}
.x5b{left:211.529979px;}
.x3a{left:212.969979px;}
.x6d{left:217.979979px;}
.x90{left:227.774979px;}
.x56{left:230.969979px;}
.x17{left:232.559979px;}
.x39{left:237.134979px;}
.x6e{left:246.029979px;}
.x10{left:256.604979px;}
.x87{left:259.634979px;}
.x8c{left:261.104979px;}
.x21{left:267.584979px;}
.x6f{left:273.029979px;}
.x5a{left:296.129979px;}
.x98{left:301.650000px;}
.x49{left:315.614979px;}
.x1f{left:333.929979px;}
.x1c{left:337.469979px;}
.x1{left:344.804979px;}
.x16{left:396.104979px;}
.x35{left:408.029979px;}
.x1d{left:431.129979px;}
.xf{left:442.769979px;}
.x6{left:444.929979px;}
.x5{left:462.209979px;}
.x2{left:470.309979px;}
.x3{left:473.369979px;}
.x83{left:478.469979px;}
.x84{left:480.989979px;}
.x7f{left:482.069979px;}
.x3b{left:485.639979px;}
.x2b{left:488.339979px;}
.x81{left:489.449979px;}
.x82{left:492.329979px;}
.x92{left:493.409979px;}
.x31{left:501.194979px;}
.x80{left:512.849979px;}
.x2c{left:515.339979px;}
.x67{left:518.429979px;}
.x5e{left:524.339979px;}
.x96{left:529.769979px;}
.x4e{left:539.969979px;}
.x52{left:543.269979px;}
.x68{left:547.589979px;}
.x23{left:551.594979px;}
.x4f{left:566.969979px;}
.x57{left:598.604979px;}
.x4{left:600.809979px;}
.x58{left:625.604979px;}
.xd{left:668.339979px;}
.x66{left:686.624979px;}
.x65{left:688.244979px;}
.x62{left:696.449979px;}
.x61{left:698.429979px;}
.xe{left:702.209979px;}
.x76{left:719.534979px;}
.x36{left:735.329979px;}
.x75{left:742.934979px;}
.x74{left:744.944979px;}
.x7e{left:747.869979px;}
.x7d{left:749.669979px;}
.x20{left:755.204979px;}
.x73{left:758.084979px;}
.x7b{left:760.649979px;}
.x38{left:764.429979px;}
.x7a{left:770.369979px;}
.x7c{left:774.869979px;}
.x79{left:776.669979px;}
.x32{left:786.569979px;}
.x3c{left:788.684979px;}
.x9a{left:793.439979px;}
.x8d{left:797.039979px;}
.x3e{left:805.064979px;}
.x3f{left:806.324979px;}
.x9b{left:820.439979px;}
.x33{left:827.069979px;}
.x63{left:831.269979px;}
.x64{left:845.129979px;}
.x14{left:894.314979px;}
.x1e{left:906.404979px;}
.x15{left:934.814979px;}
.x1b{left:947.984979px;}
.x95{left:954.000000px;}
.x1a{left:987.764979px;}
.x2d{left:994.289979px;}
.x5f{left:997.589979px;}
.x97{left:998.744979px;}
.x78{left:1008.074979px;}
.x53{left:1009.904979px;}
.x50{left:1013.729979px;}
.x2e{left:1021.289979px;}
.x77{left:1023.299979px;}
.x60{left:1024.589979px;}
.x8b{left:1025.789979px;}
.x54{left:1036.949979px;}
.x8a{left:1038.749979px;}
.x91{left:1056.704979px;}
.x3d{left:1062.389979px;}
.x24{left:1063.979979px;}
.x8e{left:1070.744979px;}
.x13{left:1080.794979px;}
.x40{left:1090.469979px;}
.x6a{left:1094.549979px;}
.x69{left:1122.989979px;}
.x6b{left:1163.549979px;}
.x45{left:1168.409979px;}
.x46{left:1172.549979px;}
.x47{left:1179.929979px;}
.x6c{left:1181.549979px;}
.x25{left:1183.349979px;}
.x88{left:1248.839979px;}
.x89{left:1306.439979px;}
.x2f{left:1311.809979px;}
.x7{left:1321.019979px;}
@media print{
.v8{vertical-align:-67.968000pt;}
.v6{vertical-align:-54.144000pt;}
.v3{vertical-align:-32.800000pt;}
.v1{vertical-align:-27.008000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.816000pt;}
.v2{vertical-align:28.960000pt;}
.v4{vertical-align:55.680000pt;}
.v5{vertical-align:67.072000pt;}
.v9{vertical-align:93.813333pt;}
.va{vertical-align:187.626667pt;}
.ls11{letter-spacing:-0.171733pt;}
.ls13{letter-spacing:-0.161067pt;}
.ls1f{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.117867pt;}
.ls1c{letter-spacing:-0.085867pt;}
.ls20{letter-spacing:-0.058667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.096533pt;}
.lsf{letter-spacing:0.147200pt;}
.ls10{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.202496pt;}
.ls21{letter-spacing:0.208000pt;}
.ls9{letter-spacing:0.256000pt;}
.ls1{letter-spacing:51.155200pt;}
.ls2{letter-spacing:51.200000pt;}
.ls1a{letter-spacing:54.963200pt;}
.ls19{letter-spacing:55.008000pt;}
.ls1b{letter-spacing:55.168000pt;}
.lsd{letter-spacing:58.547200pt;}
.lse{letter-spacing:58.592000pt;}
.ls1e{letter-spacing:62.355200pt;}
.ls1d{letter-spacing:62.400000pt;}
.ls4{letter-spacing:75.581867pt;}
.ls5{letter-spacing:75.626667pt;}
.ls8{letter-spacing:78.592000pt;}
.ls15{letter-spacing:79.283200pt;}
.ls16{letter-spacing:79.328000pt;}
.lsc{letter-spacing:86.675200pt;}
.lsb{letter-spacing:86.720000pt;}
.ls18{letter-spacing:94.483200pt;}
.ls17{letter-spacing:94.528000pt;}
.ls7{letter-spacing:99.155200pt;}
.ls6{letter-spacing:99.200000pt;}
.lsa{letter-spacing:856.596053pt;}
.ws16{word-spacing:-53.111808pt;}
.ws14{word-spacing:-53.082880pt;}
.ws19{word-spacing:-43.392000pt;}
.ws1b{word-spacing:-38.647808pt;}
.ws12{word-spacing:-38.618880pt;}
.ws1a{word-spacing:-33.701120pt;}
.wsc{word-spacing:-28.956928pt;}
.ws1{word-spacing:-28.928000pt;}
.ws11{word-spacing:-26.498048pt;}
.ws10{word-spacing:-26.469120pt;}
.ws3{word-spacing:-26.064128pt;}
.ws4{word-spacing:-26.035200pt;}
.ws7{word-spacing:-24.331008pt;}
.ws15{word-spacing:-24.183808pt;}
.ws8{word-spacing:-24.154880pt;}
.ws13{word-spacing:-22.882048pt;}
.wse{word-spacing:-22.853120pt;}
.ws6{word-spacing:-21.724928pt;}
.ws5{word-spacing:-21.696000pt;}
.ws18{word-spacing:-18.080000pt;}
.ws17{word-spacing:-14.464000pt;}
.wsb{word-spacing:-13.335808pt;}
.ws9{word-spacing:-13.135147pt;}
.wsa{word-spacing:-6.074880pt;}
.ws0{word-spacing:0.000000pt;}
.ws1e{word-spacing:289.056427pt;}
.ws1d{word-spacing:336.249600pt;}
.wsf{word-spacing:521.773653pt;}
.ws1c{word-spacing:535.221333pt;}
.wsd{word-spacing:560.224853pt;}
.ws2{word-spacing:1223.475200pt;}
._d{margin-left:-16.640000pt;}
._11{margin-left:-14.592640pt;}
._9{margin-left:-12.422656pt;}
._7{margin-left:-10.632704pt;}
._8{margin-left:-8.594944pt;}
._0{margin-left:-6.744064pt;}
._2{margin-left:-5.170176pt;}
._4{margin-left:-3.995136pt;}
._5{margin-left:-2.585088pt;}
._1{margin-left:-1.645056pt;}
._6{width:0.952320pt;}
._c{width:1.983744pt;}
._f{width:3.356501pt;}
._12{width:4.488960pt;}
._a{width:34.878123pt;}
._16{width:36.386816pt;}
._3{width:47.255808pt;}
._b{width:183.297621pt;}
._14{width:271.449941pt;}
._18{width:303.003435pt;}
._19{width:388.689451pt;}
._1a{width:460.814592pt;}
._e{width:482.558037pt;}
._17{width:488.371669pt;}
._10{width:1152.911787pt;}
._15{width:1781.293269pt;}
._13{width:2764.497664pt;}
.fs17{font-size:26.880000pt;}
.fs19{font-size:42.880000pt;}
.fsb{font-size:57.600000pt;}
.fs16{font-size:58.880000pt;}
.fs18{font-size:59.008000pt;}
.fs4{font-size:64.000000pt;}
.fs20{font-size:80.000000pt;}
.fs1f{font-size:80.128000pt;}
.fse{font-size:86.400000pt;}
.fsc{font-size:96.000000pt;}
.fsd{font-size:96.128000pt;}
.fs1a{font-size:101.120000pt;}
.fs1c{font-size:101.248000pt;}
.fs12{font-size:106.880000pt;}
.fs13{font-size:107.008000pt;}
.fs9{font-size:115.200000pt;}
.fsa{font-size:115.328000pt;}
.fs11{font-size:117.120000pt;}
.fs1b{font-size:117.248000pt;}
.fs2{font-size:128.000000pt;}
.fs3{font-size:128.128000pt;}
.fs22{font-size:138.880000pt;}
.fs21{font-size:149.120000pt;}
.fs1d{font-size:154.880000pt;}
.fs1e{font-size:155.008000pt;}
.fs5{font-size:170.880000pt;}
.fs6{font-size:171.008000pt;}
.fs8{font-size:172.928000pt;}
.fs7{font-size:186.880000pt;}
.fs15{font-size:192.000000pt;}
.fs14{font-size:192.128000pt;}
.fs23{font-size:192.640000pt;}
.fsf{font-size:213.120000pt;}
.fs10{font-size:213.248000pt;}
.fs1{font-size:234.880000pt;}
.fs0{font-size:235.008000pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:11.136000pt;}
.y85{bottom:14.016000pt;}
.y95{bottom:23.296000pt;}
.y176{bottom:23.680000pt;}
.yb8{bottom:26.720000pt;}
.y141{bottom:27.200000pt;}
.y7{bottom:27.904000pt;}
.y13c{bottom:29.152000pt;}
.ybc{bottom:30.336000pt;}
.y84{bottom:31.616000pt;}
.y3b{bottom:34.656000pt;}
.y129{bottom:41.440000pt;}
.y148{bottom:44.896000pt;}
.y168{bottom:52.480000pt;}
.y52{bottom:57.824000pt;}
.y13b{bottom:58.432000pt;}
.y17a{bottom:58.816000pt;}
.yb7{bottom:61.920000pt;}
.y17{bottom:63.040000pt;}
.y114{bottom:64.512000pt;}
.yf1{bottom:67.104000pt;}
.y128{bottom:70.240000pt;}
.y16c{bottom:71.680000pt;}
.y143{bottom:72.192000pt;}
.y3a{bottom:73.056000pt;}
.y93{bottom:75.424000pt;}
.yd6{bottom:78.880000pt;}
.y113{bottom:82.112000pt;}
.y51{bottom:86.656000pt;}
.y179{bottom:87.648000pt;}
.y13a{bottom:87.744000pt;}
.y177{bottom:92.768000pt;}
.y172{bottom:92.773333pt;}
.y16b{bottom:92.800000pt;}
.y15c{bottom:92.826667pt;}
.y154{bottom:92.866667pt;}
.y152{bottom:92.933333pt;}
.yf0{bottom:93.024000pt;}
.y147{bottom:96.128000pt;}
.yb6{bottom:97.152000pt;}
.y16{bottom:97.600000pt;}
.y127{bottom:99.040000pt;}
.y39{bottom:111.456000pt;}
.y92{bottom:113.824000pt;}
.yd5{bottom:114.080000pt;}
.y50{bottom:115.456000pt;}
.y178{bottom:116.448000pt;}
.y139{bottom:117.024000pt;}
.yef{bottom:118.976000pt;}
.y171{bottom:119.680000pt;}
.yc7{bottom:125.632000pt;}
.y14f{bottom:128.064000pt;}
.y6{bottom:130.144000pt;}
.y15{bottom:132.192000pt;}
.yb5{bottom:132.352000pt;}
.y4f{bottom:144.253333pt;}
.yee{bottom:144.893333pt;}
.y138{bottom:146.306667pt;}
.y28{bottom:147.866667pt;}
.y161{bottom:148.480000pt;}
.yd4{bottom:149.280000pt;}
.y38{bottom:149.893333pt;}
.y91{bottom:152.253333pt;}
.y175{bottom:154.853333pt;}
.y11b{bottom:154.946667pt;}
.y14{bottom:166.746667pt;}
.yb4{bottom:167.546667pt;}
.y165{bottom:167.680000pt;}
.y4e{bottom:173.053333pt;}
.y185{bottom:174.946667pt;}
.y137{bottom:175.586667pt;}
.y11a{bottom:176.866667pt;}
.y7c{bottom:177.093333pt;}
.y5{bottom:178.013333pt;}
.y170{bottom:179.200000pt;}
.yc6{bottom:180.346667pt;}
.y126{bottom:183.386667pt;}
.y174{bottom:183.653333pt;}
.y27{bottom:186.306667pt;}
.y16a{bottom:186.880000pt;}
.y90{bottom:190.653333pt;}
.ya9{bottom:199.013333pt;}
.yfe{bottom:201.253333pt;}
.y4d{bottom:201.853333pt;}
.y13f{bottom:202.653333pt;}
.y7b{bottom:202.693333pt;}
.yb3{bottom:202.746667pt;}
.y136{bottom:205.026667pt;}
.y111{bottom:207.333333pt;}
.y16d{bottom:208.000000pt;}
.y15e{bottom:208.026667pt;}
.y184{bottom:209.533333pt;}
.y125{bottom:212.186667pt;}
.y173{bottom:212.453333pt;}
.ya8{bottom:212.933333pt;}
.y13{bottom:214.586667pt;}
.ya1{bottom:219.040000pt;}
.y18f{bottom:223.173333pt;}
.y26{bottom:224.706667pt;}
.y110{bottom:224.933333pt;}
.y4{bottom:225.853333pt;}
.y37{bottom:228.293333pt;}
.y8f{bottom:229.053333pt;}
.yfd{bottom:230.053333pt;}
.y4c{bottom:230.693333pt;}
.y135{bottom:231.933333pt;}
.yc5{bottom:235.106667pt;}
.y6f{bottom:235.840000pt;}
.yb2{bottom:237.986667pt;}
.y7a{bottom:241.600000pt;}
.y155{bottom:244.480000pt;}
.yed{bottom:247.293333pt;}
.y5c{bottom:247.586667pt;}
.ya4{bottom:248.960000pt;}
.y12{bottom:249.146667pt;}
.y16f{bottom:250.880000pt;}
.y43{bottom:251.266667pt;}
.y30{bottom:253.306667pt;}
.y18e{bottom:253.893333pt;}
.ya0{bottom:257.466667pt;}
.y183{bottom:257.533333pt;}
.y58{bottom:258.173333pt;}
.yfc{bottom:258.853333pt;}
.y4b{bottom:259.493333pt;}
.y13e{bottom:261.213333pt;}
.y134{bottom:261.373333pt;}
.y64{bottom:261.693333pt;}
.yc4{bottom:262.466667pt;}
.y25{bottom:263.106667pt;}
.y1e{bottom:263.266667pt;}
.y15d{bottom:263.680000pt;}
.y14e{bottom:264.453333pt;}
.y6e{bottom:264.640000pt;}
.y36{bottom:266.693333pt;}
.y79{bottom:267.200000pt;}
.y8e{bottom:267.453333pt;}
.yb1{bottom:273.186667pt;}
.y3{bottom:273.853333pt;}
.yec{bottom:276.133333pt;}
.ya3{bottom:276.800000pt;}
.y144{bottom:279.133333pt;}
.y16e{bottom:279.680000pt;}
.ye2{bottom:280.386667pt;}
.y164{bottom:282.880000pt;}
.y11{bottom:283.746667pt;}
.yfb{bottom:287.653333pt;}
.y4a{bottom:289.413333pt;}
.y42{bottom:289.693333pt;}
.yc3{bottom:289.826667pt;}
.y63{bottom:290.493333pt;}
.y13d{bottom:290.693333pt;}
.y2f{bottom:291.746667pt;}
.y182{bottom:292.093333pt;}
.y78{bottom:292.800000pt;}
.y119{bottom:293.053333pt;}
.y145{bottom:293.306667pt;}
.y158{bottom:294.466667pt;}
.y9f{bottom:295.866667pt;}
.y124{bottom:296.546667pt;}
.y1d{bottom:297.826667pt;}
.y18d{bottom:297.893333pt;}
.y24{bottom:301.506667pt;}
.y35{bottom:305.120000pt;}
.y8d{bottom:305.893333pt;}
.y6d{bottom:306.880000pt;}
.yb0{bottom:308.386667pt;}
.y14d{bottom:311.333333pt;}
.yf3{bottom:312.066667pt;}
.ya5{bottom:312.866667pt;}
.y12c{bottom:314.533333pt;}
.y118{bottom:314.973333pt;}
.yfa{bottom:316.453333pt;}
.y169{bottom:318.080000pt;}
.yeb{bottom:318.213333pt;}
.y10{bottom:318.306667pt;}
.y62{bottom:319.293333pt;}
.y47{bottom:323.133333pt;}
.y162{bottom:323.226667pt;}
.y156{bottom:323.266667pt;}
.y123{bottom:325.346667pt;}
.y181{bottom:326.653333pt;}
.y41{bottom:328.093333pt;}
.y18c{bottom:328.640000pt;}
.y77{bottom:331.840000pt;}
.y1c{bottom:332.413333pt;}
.y81{bottom:332.800000pt;}
.yd3{bottom:333.146667pt;}
.y9e{bottom:334.266667pt;}
.y108{bottom:335.453333pt;}
.y6c{bottom:335.680000pt;}
.ydf{bottom:337.760000pt;}
.y12e{bottom:339.266667pt;}
.y23{bottom:339.933333pt;}
.yaf{bottom:343.586667pt;}
.ye1{bottom:343.746667pt;}
.yc2{bottom:344.546667pt;}
.ybb{bottom:344.866667pt;}
.y167{bottom:346.880000pt;}
.yea{bottom:347.013333pt;}
.y61{bottom:348.133333pt;}
.y10f{bottom:349.533333pt;}
.y122{bottom:354.146667pt;}
.y76{bottom:357.440000pt;}
.y80{bottom:358.400000pt;}
.y112{bottom:358.946667pt;}
.y54{bottom:359.426667pt;}
.y8c{bottom:361.280000pt;}
.y107{bottom:361.373333pt;}
.yd2{bottom:364.826667pt;}
.y146{bottom:364.866667pt;}
.yf{bottom:366.146667pt;}
.y12b{bottom:366.400000pt;}
.y40{bottom:366.493333pt;}
.y2e{bottom:368.546667pt;}
.yde{bottom:369.466667pt;}
.yc1{bottom:371.933333pt;}
.y18b{bottom:372.640000pt;}
.y9d{bottom:372.666667pt;}
.y180{bottom:374.533333pt;}
.yf2{bottom:375.453333pt;}
.y10e{bottom:375.493333pt;}
.y166{bottom:375.706667pt;}
.ye9{bottom:375.813333pt;}
.y6b{bottom:377.786667pt;}
.y22{bottom:378.333333pt;}
.yae{bottom:378.813333pt;}
.y15b{bottom:378.880000pt;}
.y34{bottom:383.520000pt;}
.y7f{bottom:384.026667pt;}
.y53{bottom:385.373333pt;}
.yf9{bottom:388.706667pt;}
.y55{bottom:392.573333pt;}
.y75{bottom:396.346667pt;}
.yd1{bottom:396.506667pt;}
.y12d{bottom:397.986667pt;}
.ya7{bottom:398.880000pt;}
.y8b{bottom:399.706667pt;}
.ye{bottom:400.706667pt;}
.y106{bottom:400.773333pt;}
.ydd{bottom:401.146667pt;}
.y10d{bottom:401.413333pt;}
.y46{bottom:401.573333pt;}
.y18a{bottom:403.360000pt;}
.y117{bottom:404.453333pt;}
.y3f{bottom:404.893333pt;}
.y56{bottom:405.533333pt;}
.y60{bottom:405.733333pt;}
.y6a{bottom:406.586667pt;}
.y2d{bottom:406.973333pt;}
.ye0{bottom:407.133333pt;}
.y17f{bottom:409.093333pt;}
.y7e{bottom:409.626667pt;}
.ycd{bottom:409.786667pt;}
.y9c{bottom:411.106667pt;}
.ya6{bottom:412.800000pt;}
.y2{bottom:412.986667pt;}
.yad{bottom:414.013333pt;}
.y163{bottom:414.106667pt;}
.yba{bottom:415.266667pt;}
.y21{bottom:416.733333pt;}
.yf8{bottom:417.506667pt;}
.ye8{bottom:418.080000pt;}
.y12a{bottom:418.240000pt;}
.y33{bottom:421.946667pt;}
.y14c{bottom:424.293333pt;}
.yc0{bottom:426.653333pt;}
.y105{bottom:426.693333pt;}
.y10c{bottom:427.333333pt;}
.y57{bottom:427.586667pt;}
.yd0{bottom:428.186667pt;}
.y1b{bottom:428.253333pt;}
.ydc{bottom:432.826667pt;}
.y5f{bottom:434.533333pt;}
.y74{bottom:435.226667pt;}
.yd{bottom:435.293333pt;}
.y8a{bottom:438.106667pt;}
.y121{bottom:438.333333pt;}
.y45{bottom:439.973333pt;}
.ycc{bottom:441.466667pt;}
.y5b{bottom:441.626667pt;}
.y160{bottom:442.906667pt;}
.y3e{bottom:443.333333pt;}
.y2c{bottom:445.373333pt;}
.yf7{bottom:446.306667pt;}
.ye7{bottom:446.880000pt;}
.y189{bottom:447.520000pt;}
.y14b{bottom:447.746667pt;}
.y69{bottom:448.666667pt;}
.yac{bottom:449.213333pt;}
.y10b{bottom:453.253333pt;}
.y20{bottom:455.173333pt;}
.y17e{bottom:456.933333pt;}
.yff{bottom:459.613333pt;}
.ycf{bottom:459.866667pt;}
.y32{bottom:460.346667pt;}
.y73{bottom:460.826667pt;}
.y1a{bottom:462.853333pt;}
.ydb{bottom:464.506667pt;}
.y104{bottom:465.893333pt;}
.y120{bottom:467.133333pt;}
.yc{bottom:469.853333pt;}
.y15f{bottom:471.706667pt;}
.y59{bottom:472.026667pt;}
.y49{bottom:472.506667pt;}
.ycb{bottom:473.186667pt;}
.y7d{bottom:474.266667pt;}
.y153{bottom:474.880000pt;}
.y1{bottom:476.386667pt;}
.y89{bottom:476.506667pt;}
.y188{bottom:478.266667pt;}
.y10a{bottom:479.173333pt;}
.y2b{bottom:483.773333pt;}
.yab{bottom:484.413333pt;}
.yb9{bottom:485.693333pt;}
.y9b{bottom:487.906667pt;}
.yf6{bottom:488.413333pt;}
.ye6{bottom:488.960000pt;}
.y68{bottom:490.906667pt;}
.y133{bottom:491.133333pt;}
.y17d{bottom:491.520000pt;}
.yce{bottom:491.586667pt;}
.y103{bottom:491.813333pt;}
.y1f{bottom:493.573333pt;}
.y11f{bottom:495.933333pt;}
.yda{bottom:496.186667pt;}
.y19{bottom:497.413333pt;}
.y72{bottom:499.866667pt;}
.yca{bottom:504.866667pt;}
.y109{bottom:505.093333pt;}
.y187{bottom:508.986667pt;}
.y15a{bottom:510.146667pt;}
.y151{bottom:513.760000pt;}
.ybf{bottom:514.693333pt;}
.y88{bottom:514.946667pt;}
.yf5{bottom:517.213333pt;}
.ye5{bottom:517.760000pt;}
.yb{bottom:517.853333pt;}
.y44{bottom:518.400000pt;}
.yaa{bottom:519.653333pt;}
.y67{bottom:519.746667pt;}
.y3d{bottom:520.133333pt;}
.y132{bottom:520.573333pt;}
.y2a{bottom:522.173333pt;}
.y71{bottom:525.506667pt;}
.yd9{bottom:527.906667pt;}
.y102{bottom:531.040000pt;}
.yc9{bottom:536.546667pt;}
.y31{bottom:538.746667pt;}
.y159{bottom:538.946667pt;}
.y17c{bottom:539.520000pt;}
.yf4{bottom:546.013333pt;}
.ye4{bottom:546.586667pt;}
.ya{bottom:552.413333pt;}
.y186{bottom:552.986667pt;}
.y87{bottom:553.346667pt;}
.y191{bottom:556.986667pt;}
.yd8{bottom:559.586667pt;}
.ybe{bottom:560.773333pt;}
.y66{bottom:560.866667pt;}
.y14a{bottom:564.186667pt;}
.y70{bottom:564.386667pt;}
.y99{bottom:567.293333pt;}
.y157{bottom:567.746667pt;}
.y101{bottom:570.400000pt;}
.ye3{bottom:575.386667pt;}
.y11e{bottom:580.293333pt;}
.y9{bottom:587.013333pt;}
.y86{bottom:591.746667pt;}
.y5a{bottom:594.466667pt;}
.ya2{bottom:595.906667pt;}
.y5e{bottom:595.933333pt;}
.y98{bottom:596.093333pt;}
.y18{bottom:600.226667pt;}
.y131{bottom:606.080000pt;}
.y11d{bottom:609.093333pt;}
.y140{bottom:613.466667pt;}
.y83{bottom:620.933333pt;}
.y97{bottom:624.893333pt;}
.y149{bottom:627.586667pt;}
.y5d{bottom:627.613333pt;}
.y116{bottom:630.466667pt;}
.y142{bottom:632.800000pt;}
.y130{bottom:635.360000pt;}
.yc8{bottom:638.080000pt;}
.y17b{bottom:644.000000pt;}
.y29{bottom:645.186667pt;}
.y8{bottom:646.493333pt;}
.y190{bottom:647.906667pt;}
.y65{bottom:651.813333pt;}
.y100{bottom:651.906667pt;}
.y96{bottom:653.693333pt;}
.y9a{bottom:655.173333pt;}
.y94{bottom:655.293333pt;}
.y3c{bottom:656.293333pt;}
.yd7{bottom:656.706667pt;}
.y48{bottom:657.093333pt;}
.y11c{bottom:662.746667pt;}
.y12f{bottom:664.826667pt;}
.y115{bottom:672.226667pt;}
.y150{bottom:672.413333pt;}
.y82{bottom:672.800000pt;}
.h20{height:31.343437pt;}
.h1e{height:47.380000pt;}
.h1f{height:47.483000pt;}
.h5{height:63.656250pt;}
.h3d{height:70.171875pt;}
.h40{height:70.265437pt;}
.h2c{height:77.250000pt;}
.h2d{height:77.353000pt;}
.h34{height:79.570312pt;}
.h33{height:79.697625pt;}
.h18{height:80.368750pt;}
.h12{height:85.935937pt;}
.h2e{height:86.005000pt;}
.h2f{height:86.108000pt;}
.h10{height:91.406250pt;}
.h11{height:91.528125pt;}
.h16{height:95.484375pt;}
.h17{height:95.611688pt;}
.h29{height:96.281250pt;}
.h2a{height:96.403125pt;}
.h30{height:98.296875pt;}
.h22{height:100.576875pt;}
.h1a{height:106.305937pt;}
.h19{height:106.433250pt;}
.h1b{height:109.437187pt;}
.hf{height:109.687500pt;}
.h15{height:111.515625pt;}
.h25{height:116.490937pt;}
.h24{height:116.618250pt;}
.h27{height:119.922187pt;}
.h26{height:120.053250pt;}
.h8{height:121.875000pt;}
.h7{height:121.996875pt;}
.h3{height:127.312500pt;}
.h4{height:127.439813pt;}
.h28{height:130.728250pt;}
.ha{height:131.062500pt;}
.hb{height:131.193562pt;}
.h45{height:132.234375pt;}
.hc{height:136.601250pt;}
.he{height:138.769375pt;}
.h31{height:147.468750pt;}
.h32{height:147.590625pt;}
.h35{height:148.319063pt;}
.h23{height:156.256875pt;}
.h6{height:162.703125pt;}
.h9{height:162.825000pt;}
.h37{height:169.962188pt;}
.h36{height:170.089500pt;}
.hd{height:177.065437pt;}
.h1d{height:182.812500pt;}
.h1c{height:182.934375pt;}
.h46{height:191.605313pt;}
.h3b{height:201.760000pt;}
.h2b{height:202.921875pt;}
.h21{height:203.043750pt;}
.h13{height:211.975312pt;}
.h14{height:212.102625pt;}
.h2{height:223.640625pt;}
.h1{height:223.762500pt;}
.h38{height:263.902833pt;}
.h43{height:311.840000pt;}
.h3a{height:357.482188pt;}
.h39{height:357.716167pt;}
.h44{height:398.240000pt;}
.h3e{height:403.360000pt;}
.h3c{height:475.520000pt;}
.h42{height:494.240000pt;}
.h3f{height:571.520000pt;}
.h41{height:604.960000pt;}
.h0{height:720.000000pt;}
.w2{width:416.960000pt;}
.w3{width:417.120000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x34{left:9.599981pt;}
.x94{left:14.240000pt;}
.x41{left:21.407981pt;}
.x26{left:22.399981pt;}
.x93{left:23.903981pt;}
.x85{left:24.863981pt;}
.x29{left:28.543981pt;}
.x8{left:33.055981pt;}
.x51{left:35.295981pt;}
.x37{left:37.823981pt;}
.x4c{left:42.015981pt;}
.x30{left:45.247981pt;}
.x27{left:46.655981pt;}
.x42{left:51.487981pt;}
.x2a{left:52.543981pt;}
.x9{left:56.543981pt;}
.x48{left:60.191981pt;}
.x4d{left:66.015981pt;}
.x43{left:69.407981pt;}
.x99{left:71.071981pt;}
.x28{left:76.735981pt;}
.xa{left:80.543981pt;}
.x11{left:89.983981pt;}
.xb{left:97.599981pt;}
.x44{left:99.487981pt;}
.x5d{left:103.263981pt;}
.x55{left:114.239981pt;}
.xc{left:121.599981pt;}
.x12{left:125.983981pt;}
.x4a{left:132.799981pt;}
.x71{left:145.373314pt;}
.x18{left:157.759981pt;}
.x8f{left:162.146648pt;}
.x70{left:164.253314pt;}
.x4b{left:165.279981pt;}
.x86{left:168.706648pt;}
.x22{left:178.746648pt;}
.x19{left:181.759981pt;}
.x59{left:183.546648pt;}
.x5c{left:184.666648pt;}
.x72{left:185.853314pt;}
.x5b{left:188.026648pt;}
.x3a{left:189.306648pt;}
.x6d{left:193.759981pt;}
.x90{left:202.466648pt;}
.x56{left:205.306648pt;}
.x17{left:206.719981pt;}
.x39{left:210.786648pt;}
.x6e{left:218.693314pt;}
.x10{left:228.093314pt;}
.x87{left:230.786648pt;}
.x8c{left:232.093314pt;}
.x21{left:237.853314pt;}
.x6f{left:242.693314pt;}
.x5a{left:263.226648pt;}
.x98{left:268.133333pt;}
.x49{left:280.546648pt;}
.x1f{left:296.826648pt;}
.x1c{left:299.973314pt;}
.x1{left:306.493314pt;}
.x16{left:352.093314pt;}
.x35{left:362.693314pt;}
.x1d{left:383.226648pt;}
.xf{left:393.573314pt;}
.x6{left:395.493314pt;}
.x5{left:410.853314pt;}
.x2{left:418.053314pt;}
.x3{left:420.773314pt;}
.x83{left:425.306648pt;}
.x84{left:427.546648pt;}
.x7f{left:428.506648pt;}
.x3b{left:431.679981pt;}
.x2b{left:434.079981pt;}
.x81{left:435.066648pt;}
.x82{left:437.626648pt;}
.x92{left:438.586648pt;}
.x31{left:445.506648pt;}
.x80{left:455.866648pt;}
.x2c{left:458.079981pt;}
.x67{left:460.826648pt;}
.x5e{left:466.079981pt;}
.x96{left:470.906648pt;}
.x4e{left:479.973314pt;}
.x52{left:482.906648pt;}
.x68{left:486.746648pt;}
.x23{left:490.306648pt;}
.x4f{left:503.973314pt;}
.x57{left:532.093314pt;}
.x4{left:534.053314pt;}
.x58{left:556.093314pt;}
.xd{left:594.079981pt;}
.x66{left:610.333314pt;}
.x65{left:611.773314pt;}
.x62{left:619.066648pt;}
.x61{left:620.826648pt;}
.xe{left:624.186648pt;}
.x76{left:639.586648pt;}
.x36{left:653.626648pt;}
.x75{left:660.386648pt;}
.x74{left:662.173314pt;}
.x7e{left:664.773314pt;}
.x7d{left:666.373314pt;}
.x20{left:671.293314pt;}
.x73{left:673.853314pt;}
.x7b{left:676.133314pt;}
.x38{left:679.493314pt;}
.x7a{left:684.773314pt;}
.x7c{left:688.773314pt;}
.x79{left:690.373314pt;}
.x32{left:699.173314pt;}
.x3c{left:701.053314pt;}
.x9a{left:705.279981pt;}
.x8d{left:708.479981pt;}
.x3e{left:715.613314pt;}
.x3f{left:716.733314pt;}
.x9b{left:729.279981pt;}
.x33{left:735.173314pt;}
.x63{left:738.906648pt;}
.x64{left:751.226648pt;}
.x14{left:794.946648pt;}
.x1e{left:805.693314pt;}
.x15{left:830.946648pt;}
.x1b{left:842.653314pt;}
.x95{left:848.000000pt;}
.x1a{left:878.013314pt;}
.x2d{left:883.813314pt;}
.x5f{left:886.746648pt;}
.x97{left:887.773314pt;}
.x78{left:896.066648pt;}
.x53{left:897.693314pt;}
.x50{left:901.093314pt;}
.x2e{left:907.813314pt;}
.x77{left:909.599981pt;}
.x60{left:910.746648pt;}
.x8b{left:911.813314pt;}
.x54{left:921.733314pt;}
.x8a{left:923.333314pt;}
.x91{left:939.293314pt;}
.x3d{left:944.346648pt;}
.x24{left:945.759981pt;}
.x8e{left:951.773314pt;}
.x13{left:960.706648pt;}
.x40{left:969.306648pt;}
.x6a{left:972.933314pt;}
.x69{left:998.213314pt;}
.x6b{left:1034.266648pt;}
.x45{left:1038.586648pt;}
.x46{left:1042.266648pt;}
.x47{left:1048.826648pt;}
.x6c{left:1050.266648pt;}
.x25{left:1051.866648pt;}
.x88{left:1110.079981pt;}
.x89{left:1161.279981pt;}
.x2f{left:1166.053314pt;}
.x7{left:1174.239981pt;}
}




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