
    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_85b6110ca64e00c863e0128b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9b6d5e349df924beead2cc64.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_05e94ea5dbfa41c20f3524d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_723d69ea6af815e4f516b090.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b80c8e2f6e4d0a1682c5375b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_2c3b814b7764260d529f6d98.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115234;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_96c1906e30b54033d9a25a9d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_6e03e07cab3f458c437d9cce.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vb{vertical-align:-232.560000px;}
.v3{vertical-align:-52.704000px;}
.vc{vertical-align:-46.800000px;}
.v4{vertical-align:-22.800000px;}
.v7{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.096000px;}
.v9{vertical-align:33.840000px;}
.v5{vertical-align:36.120000px;}
.v2{vertical-align:50.400000px;}
.v8{vertical-align:57.600000px;}
.v6{vertical-align:72.720000px;}
.va{vertical-align:140.400000px;}
.ls32{letter-spacing:-0.355800px;}
.ls15{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.288000px;}
.ls31{letter-spacing:-0.259800px;}
.ls20{letter-spacing:-0.247800px;}
.ls24{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.189600px;}
.ls1f{letter-spacing:-0.181200px;}
.ls22{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.109200px;}
.ls0{letter-spacing:-0.090600px;}
.ls1e{letter-spacing:-0.057300px;}
.ls28{letter-spacing:-0.042600px;}
.ls16{letter-spacing:-0.025920px;}
.lsc{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.017280px;}
.lse{letter-spacing:0.026460px;}
.ls29{letter-spacing:0.036000px;}
.ls25{letter-spacing:0.037440px;}
.lsd{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.109872px;}
.ls1b{letter-spacing:0.139800px;}
.ls2d{letter-spacing:0.163800px;}
.ls1c{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.180288px;}
.ls12{letter-spacing:0.205920px;}
.ls26{letter-spacing:0.208200px;}
.ls33{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.238752px;}
.ls2a{letter-spacing:0.252000px;}
.ls5{letter-spacing:0.270000px;}
.lsb{letter-spacing:0.280200px;}
.ls34{letter-spacing:0.305280px;}
.ls27{letter-spacing:0.341400px;}
.lsf{letter-spacing:0.342720px;}
.ls21{letter-spacing:0.352200px;}
.ls9{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.432000px;}
.ls30{letter-spacing:14.760000px;}
.ls2f{letter-spacing:15.480000px;}
.ls35{letter-spacing:15.791040px;}
.ls2e{letter-spacing:33.346560px;}
.ls4{letter-spacing:34.839936px;}
.ls3{letter-spacing:34.920000px;}
.ls8{letter-spacing:41.040000px;}
.ls19{letter-spacing:47.649600px;}
.ls18{letter-spacing:47.700000px;}
.ls1a{letter-spacing:54.849600px;}
.ls17{letter-spacing:54.900000px;}
.ls2{letter-spacing:63.000000px;}
.ls7{letter-spacing:63.120000px;}
.ls2c{letter-spacing:71.409600px;}
.ls2b{letter-spacing:71.460000px;}
.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;}
}
.ws3{word-spacing:-46.637280px;}
.ws53{word-spacing:-35.068032px;}
.ws56{word-spacing:-35.028000px;}
.wsd{word-spacing:-33.533520px;}
.wsa{word-spacing:-33.426720px;}
.ws16{word-spacing:-31.665312px;}
.ws3b{word-spacing:-30.064032px;}
.ws4{word-spacing:-30.024000px;}
.ws7{word-spacing:-29.736000px;}
.ws11{word-spacing:-28.462752px;}
.ws1{word-spacing:-28.440000px;}
.wse{word-spacing:-28.422720px;}
.ws57{word-spacing:-27.000000px;}
.ws2d{word-spacing:-26.621280px;}
.ws5{word-spacing:-25.020000px;}
.ws9{word-spacing:-23.418720px;}
.ws15{word-spacing:-21.657312px;}
.ws6{word-spacing:-20.016000px;}
.ws55{word-spacing:-18.454752px;}
.ws14{word-spacing:-18.414720px;}
.ws4f{word-spacing:-16.613280px;}
.ws4c{word-spacing:-14.976000px;}
.ws4a{word-spacing:-14.940000px;}
.ws4d{word-spacing:-14.680200px;}
.ws4e{word-spacing:-14.620200px;}
.ws38{word-spacing:-1.076400px;}
.ws33{word-spacing:-0.626760px;}
.ws3d{word-spacing:-0.564000px;}
.ws3c{word-spacing:-0.216000px;}
.ws45{word-spacing:-0.096000px;}
.ws32{word-spacing:-0.018720px;}
.ws2{word-spacing:0.000000px;}
.ws3e{word-spacing:0.012000px;}
.ws34{word-spacing:0.056160px;}
.ws39{word-spacing:0.101280px;}
.ws28{word-spacing:0.360000px;}
.ws2a{word-spacing:0.504000px;}
.ws29{word-spacing:1.452000px;}
.ws25{word-spacing:2.844000px;}
.ws26{word-spacing:3.384000px;}
.ws1a{word-spacing:3.513168px;}
.ws27{word-spacing:3.708000px;}
.ws18{word-spacing:3.781008px;}
.ws19{word-spacing:3.903336px;}
.ws2f{word-spacing:5.133240px;}
.ws2e{word-spacing:5.399640px;}
.ws31{word-spacing:5.741280px;}
.ws30{word-spacing:5.950560px;}
.ws1e{word-spacing:15.732000px;}
.ws36{word-spacing:15.733440px;}
.ws20{word-spacing:16.140000px;}
.ws37{word-spacing:16.367808px;}
.ws1f{word-spacing:16.416000px;}
.ws21{word-spacing:17.064000px;}
.ws42{word-spacing:19.224000px;}
.ws43{word-spacing:19.428000px;}
.ws1b{word-spacing:19.512000px;}
.ws44{word-spacing:19.548000px;}
.ws1c{word-spacing:19.632000px;}
.ws1d{word-spacing:19.692000px;}
.wsc{word-spacing:33.732720px;}
.wsb{word-spacing:33.813612px;}
.ws24{word-spacing:44.604000px;}
.ws22{word-spacing:44.676000px;}
.ws23{word-spacing:45.480000px;}
.ws40{word-spacing:48.183240px;}
.ws41{word-spacing:48.757104px;}
.ws3f{word-spacing:49.334304px;}
.ws13{word-spacing:51.948480px;}
.ws46{word-spacing:52.020288px;}
.ws12{word-spacing:52.029888px;}
.ws2b{word-spacing:55.546560px;}
.ws35{word-spacing:55.626552px;}
.ws10{word-spacing:88.668720px;}
.wsf{word-spacing:88.749792px;}
.ws54{word-spacing:261.260976px;}
.ws2c{word-spacing:304.983840px;}
.ws50{word-spacing:310.244640px;}
.ws52{word-spacing:392.739360px;}
.ws48{word-spacing:429.642480px;}
.ws3a{word-spacing:545.234400px;}
.ws4b{word-spacing:574.945680px;}
.ws51{word-spacing:618.446400px;}
.ws49{word-spacing:839.502336px;}
.ws47{word-spacing:1103.244000px;}
.ws8{word-spacing:1311.993360px;}
.ws17{word-spacing:2971.500960px;}
.ws0{word-spacing:2998.140960px;}
._6{margin-left:-10.456704px;}
._13{margin-left:-8.657280px;}
._2{margin-left:-7.099920px;}
._5{margin-left:-5.032800px;}
._7{margin-left:-3.600000px;}
._0{margin-left:-2.161440px;}
._3{margin-left:-1.082160px;}
._1{width:1.137600px;}
._4{width:2.685600px;}
._f{width:3.941280px;}
._16{width:16.116720px;}
._10{width:25.708320px;}
._11{width:67.428000px;}
._12{width:71.460000px;}
._1a{width:106.067520px;}
._17{width:264.535440px;}
._19{width:437.530080px;}
._15{width:565.238640px;}
._1b{width:570.036000px;}
._18{width:641.862960px;}
._14{width:734.656800px;}
._d{width:815.597280px;}
._c{width:853.221024px;}
._a{width:884.967120px;}
._8{width:892.622400px;}
._b{width:912.738960px;}
._1c{width:1188.737280px;}
._9{width:1241.634240px;}
._e{width:1260.335520px;}
.fc9{color:rgb(0,153,153);}
.fc6{color:transparent;}
.fc4{color:rgb(255,255,0);}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(51,51,153);}
.fc1{color:rgb(0,0,102);}
.fc8{color:rgb(222,222,222);}
.fc7{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(192,192,192);}
.fs0{font-size:48.240000px;}
.fs15{font-size:59.760000px;}
.fs16{font-size:59.904000px;}
.fsd{font-size:66.240000px;}
.fsc{font-size:66.384000px;}
.fs8{font-size:72.000000px;}
.fsf{font-size:77.760000px;}
.fs10{font-size:77.904000px;}
.fs9{font-size:84.240000px;}
.fsa{font-size:84.384000px;}
.fs6{font-size:90.000000px;}
.fs7{font-size:90.144000px;}
.fs13{font-size:95.760000px;}
.fs14{font-size:95.904000px;}
.fsb{font-size:102.240000px;}
.fse{font-size:102.384000px;}
.fs5{font-size:108.000000px;}
.fs12{font-size:108.144000px;}
.fs1{font-size:113.760000px;}
.fs11{font-size:113.904000px;}
.fs2{font-size:120.240000px;}
.fs3{font-size:120.384000px;}
.fs19{font-size:126.000000px;}
.fs17{font-size:126.144000px;}
.fs1b{font-size:144.000000px;}
.fs1a{font-size:144.144000px;}
.fs4{font-size:167.760000px;}
.fs18{font-size:264.240000px;}
.y116{bottom:-14.328000px;}
.y115{bottom:-10.548000px;}
.yff{bottom:-6.948000px;}
.yaa{bottom:-5.832000px;}
.y1{bottom:-1.512000px;}
.y181{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y15a{bottom:4.068000px;}
.y50{bottom:4.392000px;}
.y82{bottom:6.336000px;}
.y140{bottom:10.224000px;}
.y6a{bottom:10.476000px;}
.yfe{bottom:11.052000px;}
.y93{bottom:12.924000px;}
.y29{bottom:13.500000px;}
.yba{bottom:14.328000px;}
.y5{bottom:15.192000px;}
.y196{bottom:15.768000px;}
.yc6{bottom:16.344000px;}
.ya9{bottom:17.928000px;}
.yea{bottom:18.900000px;}
.y180{bottom:19.620000px;}
.ydc{bottom:21.168000px;}
.y139{bottom:23.832000px;}
.y19{bottom:24.300000px;}
.y1a3{bottom:27.108000px;}
.y11b{bottom:28.512000px;}
.yfd{bottom:29.052000px;}
.y4f{bottom:29.592000px;}
.y36{bottom:29.916000px;}
.y81{bottom:30.096000px;}
.y69{bottom:30.276000px;}
.y114{bottom:32.472000px;}
.y195{bottom:35.568000px;}
.y38{bottom:36.000000px;}
.yca{bottom:36.180000px;}
.y92{bottom:37.224000px;}
.y159{bottom:37.332000px;}
.y28{bottom:37.800000px;}
.y13f{bottom:39.060000px;}
.yc5{bottom:39.420000px;}
.ya8{bottom:41.724000px;}
.y118{bottom:42.372000px;}
.y4{bottom:42.552000px;}
.y17f{bottom:43.380000px;}
.ydb{bottom:43.848000px;}
.yfc{bottom:47.088000px;}
.y19d{bottom:47.340000px;}
.y80{bottom:49.896000px;}
.y110{bottom:52.308000px;}
.y138{bottom:52.632000px;}
.y1a2{bottom:53.028000px;}
.y18{bottom:54.000000px;}
.y68{bottom:54.036000px;}
.y169{bottom:55.980000px;}
.y65{bottom:57.492000px;}
.y11a{bottom:57.672000px;}
.y11c{bottom:58.140000px;}
.y194{bottom:59.328000px;}
.y158{bottom:61.092000px;}
.y113{bottom:61.308000px;}
.y91{bottom:61.524000px;}
.yc4{bottom:62.460000px;}
.y4e{bottom:62.532000px;}
.y17e{bottom:63.180000px;}
.yfb{bottom:65.088000px;}
.ya7{bottom:65.484000px;}
.yb9{bottom:66.420000px;}
.yda{bottom:66.528000px;}
.y27{bottom:66.600000px;}
.y19c{bottom:67.140000px;}
.y3{bottom:69.912000px;}
.y117{bottom:69.948000px;}
.y112{bottom:70.308000px;}
.y10f{bottom:70.488000px;}
.y7f{bottom:73.692000px;}
.y35{bottom:74.556000px;}
.y168{bottom:75.780000px;}
.y67{bottom:77.796000px;}
.y37{bottom:78.156000px;}
.ye8{bottom:78.732000px;}
.y1a1{bottom:78.948000px;}
.y193{bottom:79.164000px;}
.ye3{bottom:79.848000px;}
.y137{bottom:81.432000px;}
.y64{bottom:81.972000px;}
.yfa{bottom:83.088000px;}
.y17{bottom:83.700000px;}
.y157{bottom:84.852000px;}
.y14a{bottom:84.924000px;}
.y144{bottom:85.140000px;}
.y119{bottom:86.868000px;}
.y17d{bottom:86.940000px;}
.y34{bottom:87.156000px;}
.ya6{bottom:89.244000px;}
.y111{bottom:90.108000px;}
.y26{bottom:90.360000px;}
.y19b{bottom:90.900000px;}
.y90{bottom:91.260000px;}
.y4d{bottom:91.368000px;}
.yb8{bottom:95.256000px;}
.yc9{bottom:95.616000px;}
.y2{bottom:97.308000px;}
.y7e{bottom:97.452000px;}
.y167{bottom:99.540000px;}
.yf9{bottom:101.088000px;}
.y66{bottom:101.556000px;}
.y192{bottom:102.924000px;}
.y1a0{bottom:104.868000px;}
.y41{bottom:107.640000px;}
.y16{bottom:108.036000px;}
.y156{bottom:108.612000px;}
.y17c{bottom:110.736000px;}
.ye2{bottom:112.284000px;}
.ya5{bottom:113.724000px;}
.yc3{bottom:114.300000px;}
.y25{bottom:115.056000px;}
.yd9{bottom:116.964000px;}
.ya3{bottom:117.216000px;}
.y10e{bottom:118.908000px;}
.yf8{bottom:119.088000px;}
.y13e{bottom:119.232000px;}
.y166{bottom:119.340000px;}
.y149{bottom:120.600000px;}
.y143{bottom:120.780000px;}
.y8f{bottom:120.960000px;}
.y191{bottom:126.684000px;}
.y4c{bottom:127.368000px;}
.yeb{bottom:129.744000px;}
.yb7{bottom:129.816000px;}
.y7d{bottom:130.464000px;}
.y155{bottom:132.408000px;}
.y63{bottom:132.552000px;}
.y17b{bottom:134.496000px;}
.y33{bottom:135.756000px;}
.y78{bottom:136.944000px;}
.yf7{bottom:137.088000px;}
.ya4{bottom:137.124000px;}
.y15{bottom:137.736000px;}
.y13b{bottom:137.772000px;}
.y11f{bottom:139.176000px;}
.yd8{bottom:139.644000px;}
.ya2{bottom:141.012000px;}
.yb2{bottom:141.048000px;}
.yc2{bottom:143.100000px;}
.y165{bottom:143.136000px;}
.y40{bottom:143.640000px;}
.y24{bottom:143.856000px;}
.y13d{bottom:144.432000px;}
.ye1{bottom:144.684000px;}
.y8e{bottom:145.260000px;}
.y190{bottom:146.484000px;}
.y10d{bottom:147.708000px;}
.y32{bottom:148.392000px;}
.y62{bottom:152.355000px;}
.y10c{bottom:153.285000px;}
.y121{bottom:153.750000px;}
.y7c{bottom:154.230000px;}
.y17a{bottom:154.290000px;}
.yf6{bottom:155.085000px;}
.y154{bottom:156.165000px;}
.y19a{bottom:158.250000px;}
.yb6{bottom:158.610000px;}
.y19f{bottom:162.255000px;}
.yd7{bottom:162.330000px;}
.y8{bottom:162.975000px;}
.y4b{bottom:163.365000px;}
.yc8{bottom:163.515000px;}
.ya1{bottom:164.775000px;}
.yc1{bottom:166.170000px;}
.y13a{bottom:166.575000px;}
.y164{bottom:166.890000px;}
.y23{bottom:167.610000px;}
.y11e{bottom:168.330000px;}
.y14{bottom:168.510000px;}
.y13c{bottom:169.635000px;}
.yb1{bottom:170.205000px;}
.y18f{bottom:170.250000px;}
.yf5{bottom:173.130000px;}
.y8d{bottom:174.960000px;}
.y61{bottom:176.145000px;}
.y10b{bottom:176.550000px;}
.y5e{bottom:177.840000px;}
.y7b{bottom:177.990000px;}
.y179{bottom:178.050000px;}
.y146{bottom:178.530000px;}
.y153{bottom:179.925000px;}
.y99{bottom:182.130000px;}
.y120{bottom:182.910000px;}
.yd6{bottom:185.010000px;}
.y3f{bottom:186.840000px;}
.ya0{bottom:188.535000px;}
.ye7{bottom:189.210000px;}
.y163{bottom:190.650000px;}
.yf4{bottom:191.130000px;}
.y22{bottom:192.270000px;}
.yb5{bottom:193.170000px;}
.y18e{bottom:194.040000px;}
.yc0{bottom:195.690000px;}
.y31{bottom:196.995000px;}
.y11d{bottom:197.490000px;}
.y7a{bottom:197.790000px;}
.y4a{bottom:199.365000px;}
.y60{bottom:199.905000px;}
.y178{bottom:201.810000px;}
.y152{bottom:203.685000px;}
.y13{bottom:204.150000px;}
.y8c{bottom:204.690000px;}
.y109{bottom:205.530000px;}
.yd5{bottom:207.690000px;}
.y9f{bottom:208.335000px;}
.yf3{bottom:209.130000px;}
.y30{bottom:209.595000px;}
.y145{bottom:214.170000px;}
.y162{bottom:214.410000px;}
.y18d{bottom:217.800000px;}
.y21{bottom:221.970000px;}
.yb4{bottom:222.015000px;}
.y79{bottom:222.300000px;}
.y108{bottom:223.530000px;}
.y5f{bottom:223.665000px;}
.y177{bottom:225.615000px;}
.y151{bottom:227.445000px;}
.y3e{bottom:230.070000px;}
.y105{bottom:232.350000px;}
.y10a{bottom:232.530000px;}
.y9e{bottom:232.815000px;}
.y8b{bottom:234.390000px;}
.y7{bottom:234.975000px;}
.yb0{bottom:235.005000px;}
.y49{bottom:235.410000px;}
.yd4{bottom:235.440000px;}
.y18c{bottom:237.600000px;}
.y161{bottom:238.170000px;}
.y12{bottom:238.755000px;}
.y133{bottom:239.685000px;}
.ydd{bottom:240.225000px;}
.y107{bottom:241.530000px;}
.y176{bottom:245.415000px;}
.ye9{bottom:248.655000px;}
.y19e{bottom:248.685000px;}
.y12b{bottom:249.840000px;}
.y150{bottom:251.250000px;}
.y20{bottom:252.795000px;}
.y136{bottom:253.590000px;}
.yf0{bottom:254.130000px;}
.y5d{bottom:254.445000px;}
.y9d{bottom:256.245000px;}
.yb3{bottom:257.295000px;}
.y160{bottom:258.015000px;}
.yd3{bottom:258.120000px;}
.y2f{bottom:258.195000px;}
.y124{bottom:258.270000px;}
.y8a{bottom:258.690000px;}
.y77{bottom:259.230000px;}
.y106{bottom:259.350000px;}
.y18b{bottom:261.360000px;}
.y11{bottom:263.055000px;}
.y48{bottom:264.210000px;}
.y3d{bottom:266.070000px;}
.y175{bottom:269.175000px;}
.y2e{bottom:270.825000px;}
.y6{bottom:270.975000px;}
.y5c{bottom:272.265000px;}
.y129{bottom:273.060000px;}
.y71{bottom:274.500000px;}
.y14f{bottom:275.010000px;}
.y12a{bottom:279.000000px;}
.y76{bottom:279.030000px;}
.y148{bottom:280.725000px;}
.yd2{bottom:280.800000px;}
.y15f{bottom:281.775000px;}
.y1f{bottom:281.955000px;}
.y135{bottom:282.390000px;}
.y18a{bottom:285.120000px;}
.y123{bottom:287.430000px;}
.y102{bottom:288.180000px;}
.y104{bottom:288.360000px;}
.y89{bottom:288.390000px;}
.y199{bottom:288.975000px;}
.y10{bottom:292.755000px;}
.y174{bottom:292.935000px;}
.y9c{bottom:293.550000px;}
.y5b{bottom:294.045000px;}
.y58{bottom:294.870000px;}
.y14e{bottom:298.770000px;}
.y70{bottom:298.980000px;}
.y1a6{bottom:299.130000px;}
.y47{bottom:300.210000px;}
.y15e{bottom:301.575000px;}
.y128{bottom:302.220000px;}
.y75{bottom:302.790000px;}
.ye6{bottom:302.835000px;}
.y100{bottom:306.180000px;}
.y101{bottom:306.360000px;}
.yd1{bottom:308.520000px;}
.y189{bottom:308.880000px;}
.y3c{bottom:309.270000px;}
.y134{bottom:311.190000px;}
.y88{bottom:312.690000px;}
.y173{bottom:312.735000px;}
.y5a{bottom:315.825000px;}
.y147{bottom:316.410000px;}
.y122{bottom:316.620000px;}
.y1e{bottom:317.595000px;}
.y9b{bottom:317.850000px;}
.y2d{bottom:319.425000px;}
.yf{bottom:322.455000px;}
.y14d{bottom:322.530000px;}
.y74{bottom:322.590000px;}
.y103{bottom:324.360000px;}
.ydf{bottom:325.260000px;}
.y15d{bottom:325.335000px;}
.yc7{bottom:325.365000px;}
.ybe{bottom:328.215000px;}
.y188{bottom:328.710000px;}
.y46{bottom:329.010000px;}
.yd0{bottom:331.230000px;}
.y2c{bottom:332.025000px;}
.yaf{bottom:333.000000px;}
.ye5{bottom:333.825000px;}
.y172{bottom:336.495000px;}
.y59{bottom:337.605000px;}
.y9a{bottom:342.150000px;}
.y73{bottom:342.390000px;}
.y87{bottom:342.435000px;}
.y15c{bottom:345.135000px;}
.y3b{bottom:345.315000px;}
.y14c{bottom:346.290000px;}
.y1d{bottom:346.755000px;}
.y94{bottom:349.995000px;}
.ye{bottom:352.185000px;}
.y187{bottom:352.470000px;}
.yf2{bottom:352.980000px;}
.ycf{bottom:353.910000px;}
.ybd{bottom:357.375000px;}
.y171{bottom:360.285000px;}
.yf1{bottom:361.980000px;}
.yae{bottom:362.160000px;}
.y57{bottom:364.860000px;}
.y15b{bottom:364.935000px;}
.y45{bottom:365.040000px;}
.y14b{bottom:366.120000px;}
.y132{bottom:366.330000px;}
.y86{bottom:366.735000px;}
.y72{bottom:366.870000px;}
.yde{bottom:367.410000px;}
.y1a5{bottom:371.160000px;}
.y127{bottom:371.445000px;}
.y142{bottom:374.325000px;}
.y186{bottom:376.230000px;}
.y6c{bottom:376.530000px;}
.yce{bottom:376.590000px;}
.y98{bottom:379.155000px;}
.y198{bottom:380.085000px;}
.y1c{bottom:381.345000px;}
.yd{bottom:381.885000px;}
.y12d{bottom:383.505000px;}
.y170{bottom:384.045000px;}
.ybc{bottom:386.565000px;}
.y3a{bottom:388.515000px;}
.y56{bottom:388.620000px;}
.y2b{bottom:389.370000px;}
.yad{bottom:391.320000px;}
.y131{bottom:391.575000px;}
.ye4{bottom:393.270000px;}
.y85{bottom:396.435000px;}
.ycd{bottom:399.270000px;}
.yef{bottom:399.780000px;}
.y185{bottom:399.990000px;}
.y6f{bottom:400.500000px;}
.y126{bottom:400.605000px;}
.y16b{bottom:400.755000px;}
.y6b{bottom:401.010000px;}
.y44{bottom:401.040000px;}
.y12e{bottom:401.370000px;}
.y51{bottom:403.275000px;}
.y16f{bottom:403.845000px;}
.yc{bottom:406.185000px;}
.y1a4{bottom:407.160000px;}
.y55{bottom:408.420000px;}
.y97{bottom:408.675000px;}
.y141{bottom:409.965000px;}
.y1b{bottom:411.045000px;}
.y12c{bottom:412.665000px;}
.y130{bottom:416.775000px;}
.yee{bottom:417.990000px;}
.yac{bottom:420.510000px;}
.y84{bottom:420.735000px;}
.ycc{bottom:421.950000px;}
.ybb{bottom:422.205000px;}
.y184{bottom:423.750000px;}
.y6e{bottom:424.260000px;}
.y39{bottom:424.515000px;}
.y16e{bottom:427.605000px;}
.y54{bottom:428.220000px;}
.y125{bottom:428.505000px;}
.y96{bottom:431.535000px;}
.y16a{bottom:434.595000px;}
.y1a{bottom:435.345000px;}
.ybf{bottom:436.035000px;}
.yb{bottom:436.965000px;}
.y43{bottom:437.040000px;}
.y2a{bottom:440.385000px;}
.y12f{bottom:441.975000px;}
.y183{bottom:447.555000px;}
.y6d{bottom:448.020000px;}
.yed{bottom:450.030000px;}
.ycb{bottom:450.930000px;}
.y16d{bottom:451.365000px;}
.y83{bottom:451.905000px;}
.y53{bottom:451.980000px;}
.ye0{bottom:452.910000px;}
.y197{bottom:453.345000px;}
.yab{bottom:456.150000px;}
.y95{bottom:461.235000px;}
.y42{bottom:465.870000px;}
.ya{bottom:466.125000px;}
.y182{bottom:471.315000px;}
.y52{bottom:471.810000px;}
.y16c{bottom:477.150000px;}
.y9{bottom:494.565000px;}
.yec{bottom:614.490000px;}
.h23{height:58.651172px;}
.h25{height:58.792500px;}
.h20{height:60.226875px;}
.h27{height:62.327813px;}
.h15{height:69.086250px;}
.h14{height:69.236437px;}
.hb{height:75.093750px;}
.h1e{height:75.519844px;}
.h2{height:80.408812px;}
.h17{height:81.101250px;}
.h18{height:81.251437px;}
.h2e{height:84.614062px;}
.h1d{height:85.847344px;}
.hc{height:87.859687px;}
.h1f{height:88.009875px;}
.h9{height:93.867188px;}
.ha{height:94.017375px;}
.h28{height:94.972500px;}
.h24{height:95.371172px;}
.h22{height:97.212000px;}
.h1b{height:99.874688px;}
.h1c{height:100.024875px;}
.h2a{height:102.926250px;}
.h32{height:105.996094px;}
.h13{height:106.633125px;}
.h16{height:106.783312px;}
.h31{height:108.843750px;}
.h4{height:111.649219px;}
.h8{height:112.640625px;}
.h1a{height:112.790813px;}
.h3{height:114.648750px;}
.h29{height:116.251172px;}
.h10{height:118.648125px;}
.h19{height:118.798312px;}
.h5{height:121.179375px;}
.h6{height:121.324500px;}
.h11{height:125.406562px;}
.h12{height:125.556750px;}
.h2f{height:130.419352px;}
.h26{height:131.371172px;}
.h2d{height:131.414062px;}
.h2b{height:131.564250px;}
.h21{height:133.066875px;}
.hd{height:138.259687px;}
.he{height:138.409875px;}
.hf{height:138.421875px;}
.h30{height:150.187500px;}
.h7{height:174.968437px;}
.h2c{height:253.040625px;}
.h0{height:595.260000px;}
.h1{height:595.500000px;}
.w1{width:807.750000px;}
.w2{width:808.019988px;}
.w0{width:808.020000px;}
.x0{left:0.000000px;}
.x1{left:1.619988px;}
.xa{left:8.063988px;}
.x1c{left:10.799988px;}
.x74{left:12.743988px;}
.x3e{left:18.071988px;}
.x70{left:21.203988px;}
.x28{left:23.543988px;}
.x3f{left:24.731988px;}
.x9{left:27.359988px;}
.x14{left:32.003988px;}
.xb{left:33.263988px;}
.xc{left:41.219988px;}
.x75{left:44.063988px;}
.x19{left:49.067988px;}
.x68{left:51.299988px;}
.x1d{left:52.739988px;}
.x6f{left:56.339988px;}
.xd{left:62.459988px;}
.x29{left:64.079988px;}
.x76{left:65.519988px;}
.x63{left:69.119988px;}
.x2a{left:74.555988px;}
.x69{left:77.579988px;}
.x13{left:85.175988px;}
.x1a{left:91.007988px;}
.x61{left:95.039988px;}
.x2b{left:99.791988px;}
.x77{left:102.887988px;}
.x6e{left:104.219988px;}
.x32{left:113.723988px;}
.x60{left:116.855988px;}
.x2f{left:118.223988px;}
.x41{left:125.567988px;}
.x78{left:128.087988px;}
.x5d{left:146.195988px;}
.x34{left:147.599988px;}
.x5f{left:151.229988px;}
.x3d{left:165.164988px;}
.x3c{left:175.319988px;}
.x30{left:178.199988px;}
.x33{left:209.699988px;}
.x18{left:235.979988px;}
.x7b{left:244.079988px;}
.x52{left:248.834988px;}
.x7d{left:257.039988px;}
.x65{left:263.309988px;}
.x6{left:281.309988px;}
.x64{left:292.469988px;}
.x8{left:294.269988px;}
.x1b{left:308.699988px;}
.x6b{left:316.259988px;}
.x53{left:325.004988px;}
.x54{left:334.724988px;}
.x20{left:338.249988px;}
.x1e{left:346.889988px;}
.x6a{left:354.959988px;}
.x21{left:359.849988px;}
.x1f{left:387.389988px;}
.x24{left:389.264988px;}
.x22{left:392.249988px;}
.x16{left:394.919988px;}
.x7a{left:402.764988px;}
.x72{left:404.174988px;}
.x59{left:406.589988px;}
.x23{left:412.049988px;}
.x26{left:414.794988px;}
.x79{left:416.084988px;}
.xe{left:420.659988px;}
.x42{left:423.209988px;}
.x25{left:429.764988px;}
.x17{left:435.959988px;}
.x27{left:439.994988px;}
.x73{left:444.674988px;}
.x11{left:445.889988px;}
.x7c{left:447.149988px;}
.x66{left:448.709988px;}
.xf{left:453.809988px;}
.x15{left:462.959988px;}
.x5c{left:469.949988px;}
.x10{left:475.049988px;}
.x57{left:476.999988px;}
.x5b{left:478.979988px;}
.x7{left:484.379988px;}
.x3{left:487.184988px;}
.x50{left:490.469988px;}
.x5e{left:491.474988px;}
.x58{left:495.539988px;}
.x51{left:509.729988px;}
.x2e{left:515.984988px;}
.x2{left:518.504988px;}
.x37{left:519.944988px;}
.x5{left:521.204988px;}
.x2d{left:532.334988px;}
.x4{left:534.704988px;}
.x4c{left:537.479988px;}
.x67{left:539.819988px;}
.x40{left:546.629988px;}
.x3a{left:549.824988px;}
.x36{left:551.804988px;}
.x62{left:553.064988px;}
.x39{left:555.404988px;}
.x4b{left:560.699988px;}
.x3b{left:567.464988px;}
.x38{left:569.624988px;}
.x56{left:570.779988px;}
.x55{left:574.019988px;}
.x31{left:577.184988px;}
.x35{left:578.264988px;}
.x2c{left:581.864988px;}
.x5a{left:585.719988px;}
.x12{left:596.774988px;}
.x6d{left:633.989988px;}
.x4e{left:638.639988px;}
.x4f{left:649.619988px;}
.x6c{left:654.374988px;}
.x4d{left:656.459988px;}
.x4a{left:695.729988px;}
.x45{left:699.374988px;}
.x43{left:700.634988px;}
.x44{left:701.894988px;}
.x46{left:703.514988px;}
.x49{left:720.029988px;}
.x48{left:750.599988px;}
.x47{left:756.719988px;}
.x71{left:807.869988px;}
@media print{
.vb{vertical-align:-206.720000pt;}
.v3{vertical-align:-46.848000pt;}
.vc{vertical-align:-41.600000pt;}
.v4{vertical-align:-20.266667pt;}
.v7{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.752000pt;}
.v9{vertical-align:30.080000pt;}
.v5{vertical-align:32.106667pt;}
.v2{vertical-align:44.800000pt;}
.v8{vertical-align:51.200000pt;}
.v6{vertical-align:64.640000pt;}
.va{vertical-align:124.800000pt;}
.ls32{letter-spacing:-0.316267pt;}
.ls15{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls31{letter-spacing:-0.230933pt;}
.ls20{letter-spacing:-0.220267pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.168533pt;}
.ls1f{letter-spacing:-0.161067pt;}
.ls22{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.097067pt;}
.ls0{letter-spacing:-0.080533pt;}
.ls1e{letter-spacing:-0.050933pt;}
.ls28{letter-spacing:-0.037867pt;}
.ls16{letter-spacing:-0.023040pt;}
.lsc{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.015360pt;}
.lse{letter-spacing:0.023520pt;}
.ls29{letter-spacing:0.032000pt;}
.ls25{letter-spacing:0.033280pt;}
.lsd{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.097664pt;}
.ls1b{letter-spacing:0.124267pt;}
.ls2d{letter-spacing:0.145600pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.160256pt;}
.ls12{letter-spacing:0.183040pt;}
.ls26{letter-spacing:0.185067pt;}
.ls33{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.212224pt;}
.ls2a{letter-spacing:0.224000pt;}
.ls5{letter-spacing:0.240000pt;}
.lsb{letter-spacing:0.249067pt;}
.ls34{letter-spacing:0.271360pt;}
.ls27{letter-spacing:0.303467pt;}
.lsf{letter-spacing:0.304640pt;}
.ls21{letter-spacing:0.313067pt;}
.ls9{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.384000pt;}
.ls30{letter-spacing:13.120000pt;}
.ls2f{letter-spacing:13.760000pt;}
.ls35{letter-spacing:14.036480pt;}
.ls2e{letter-spacing:29.641387pt;}
.ls4{letter-spacing:30.968832pt;}
.ls3{letter-spacing:31.040000pt;}
.ls8{letter-spacing:36.480000pt;}
.ls19{letter-spacing:42.355200pt;}
.ls18{letter-spacing:42.400000pt;}
.ls1a{letter-spacing:48.755200pt;}
.ls17{letter-spacing:48.800000pt;}
.ls2{letter-spacing:56.000000pt;}
.ls7{letter-spacing:56.106667pt;}
.ls2c{letter-spacing:63.475200pt;}
.ls2b{letter-spacing:63.520000pt;}
.ws3{word-spacing:-41.455360pt;}
.ws53{word-spacing:-31.171584pt;}
.ws56{word-spacing:-31.136000pt;}
.wsd{word-spacing:-29.807573pt;}
.wsa{word-spacing:-29.712640pt;}
.ws16{word-spacing:-28.146944pt;}
.ws3b{word-spacing:-26.723584pt;}
.ws4{word-spacing:-26.688000pt;}
.ws7{word-spacing:-26.432000pt;}
.ws11{word-spacing:-25.300224pt;}
.ws1{word-spacing:-25.280000pt;}
.wse{word-spacing:-25.264640pt;}
.ws57{word-spacing:-24.000000pt;}
.ws2d{word-spacing:-23.663360pt;}
.ws5{word-spacing:-22.240000pt;}
.ws9{word-spacing:-20.816640pt;}
.ws15{word-spacing:-19.250944pt;}
.ws6{word-spacing:-17.792000pt;}
.ws55{word-spacing:-16.404224pt;}
.ws14{word-spacing:-16.368640pt;}
.ws4f{word-spacing:-14.767360pt;}
.ws4c{word-spacing:-13.312000pt;}
.ws4a{word-spacing:-13.280000pt;}
.ws4d{word-spacing:-13.049067pt;}
.ws4e{word-spacing:-12.995733pt;}
.ws38{word-spacing:-0.956800pt;}
.ws33{word-spacing:-0.557120pt;}
.ws3d{word-spacing:-0.501333pt;}
.ws3c{word-spacing:-0.192000pt;}
.ws45{word-spacing:-0.085333pt;}
.ws32{word-spacing:-0.016640pt;}
.ws2{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.010667pt;}
.ws34{word-spacing:0.049920pt;}
.ws39{word-spacing:0.090027pt;}
.ws28{word-spacing:0.320000pt;}
.ws2a{word-spacing:0.448000pt;}
.ws29{word-spacing:1.290667pt;}
.ws25{word-spacing:2.528000pt;}
.ws26{word-spacing:3.008000pt;}
.ws1a{word-spacing:3.122816pt;}
.ws27{word-spacing:3.296000pt;}
.ws18{word-spacing:3.360896pt;}
.ws19{word-spacing:3.469632pt;}
.ws2f{word-spacing:4.562880pt;}
.ws2e{word-spacing:4.799680pt;}
.ws31{word-spacing:5.103360pt;}
.ws30{word-spacing:5.289387pt;}
.ws1e{word-spacing:13.984000pt;}
.ws36{word-spacing:13.985280pt;}
.ws20{word-spacing:14.346667pt;}
.ws37{word-spacing:14.549163pt;}
.ws1f{word-spacing:14.592000pt;}
.ws21{word-spacing:15.168000pt;}
.ws42{word-spacing:17.088000pt;}
.ws43{word-spacing:17.269333pt;}
.ws1b{word-spacing:17.344000pt;}
.ws44{word-spacing:17.376000pt;}
.ws1c{word-spacing:17.450667pt;}
.ws1d{word-spacing:17.504000pt;}
.wsc{word-spacing:29.984640pt;}
.wsb{word-spacing:30.056544pt;}
.ws24{word-spacing:39.648000pt;}
.ws22{word-spacing:39.712000pt;}
.ws23{word-spacing:40.426667pt;}
.ws40{word-spacing:42.829547pt;}
.ws41{word-spacing:43.339648pt;}
.ws3f{word-spacing:43.852715pt;}
.ws13{word-spacing:46.176427pt;}
.ws46{word-spacing:46.240256pt;}
.ws12{word-spacing:46.248789pt;}
.ws2b{word-spacing:49.374720pt;}
.ws35{word-spacing:49.445824pt;}
.ws10{word-spacing:78.816640pt;}
.wsf{word-spacing:78.888704pt;}
.ws54{word-spacing:232.231979pt;}
.ws2c{word-spacing:271.096747pt;}
.ws50{word-spacing:275.773013pt;}
.ws52{word-spacing:349.101653pt;}
.ws48{word-spacing:381.904427pt;}
.ws3a{word-spacing:484.652800pt;}
.ws4b{word-spacing:511.062827pt;}
.ws51{word-spacing:549.730133pt;}
.ws49{word-spacing:746.224299pt;}
.ws47{word-spacing:980.661333pt;}
.ws8{word-spacing:1166.216320pt;}
.ws17{word-spacing:2641.334187pt;}
.ws0{word-spacing:2665.014187pt;}
._6{margin-left:-9.294848pt;}
._13{margin-left:-7.695360pt;}
._2{margin-left:-6.311040pt;}
._5{margin-left:-4.473600pt;}
._7{margin-left:-3.200000pt;}
._0{margin-left:-1.921280pt;}
._3{margin-left:-0.961920pt;}
._1{width:1.011200pt;}
._4{width:2.387200pt;}
._f{width:3.503360pt;}
._16{width:14.325973pt;}
._10{width:22.851840pt;}
._11{width:59.936000pt;}
._12{width:63.520000pt;}
._1a{width:94.282240pt;}
._17{width:235.142613pt;}
._19{width:388.915627pt;}
._15{width:502.434347pt;}
._1b{width:506.698667pt;}
._18{width:570.544853pt;}
._14{width:653.028267pt;}
._d{width:724.975360pt;}
._c{width:758.418688pt;}
._a{width:786.637440pt;}
._8{width:793.442133pt;}
._b{width:811.323520pt;}
._1c{width:1056.655360pt;}
._9{width:1103.674880pt;}
._e{width:1120.298240pt;}
.fs0{font-size:42.880000pt;}
.fs15{font-size:53.120000pt;}
.fs16{font-size:53.248000pt;}
.fsd{font-size:58.880000pt;}
.fsc{font-size:59.008000pt;}
.fs8{font-size:64.000000pt;}
.fsf{font-size:69.120000pt;}
.fs10{font-size:69.248000pt;}
.fs9{font-size:74.880000pt;}
.fsa{font-size:75.008000pt;}
.fs6{font-size:80.000000pt;}
.fs7{font-size:80.128000pt;}
.fs13{font-size:85.120000pt;}
.fs14{font-size:85.248000pt;}
.fsb{font-size:90.880000pt;}
.fse{font-size:91.008000pt;}
.fs5{font-size:96.000000pt;}
.fs12{font-size:96.128000pt;}
.fs1{font-size:101.120000pt;}
.fs11{font-size:101.248000pt;}
.fs2{font-size:106.880000pt;}
.fs3{font-size:107.008000pt;}
.fs19{font-size:112.000000pt;}
.fs17{font-size:112.128000pt;}
.fs1b{font-size:128.000000pt;}
.fs1a{font-size:128.128000pt;}
.fs4{font-size:149.120000pt;}
.fs18{font-size:234.880000pt;}
.y116{bottom:-12.736000pt;}
.y115{bottom:-9.376000pt;}
.yff{bottom:-6.176000pt;}
.yaa{bottom:-5.184000pt;}
.y1{bottom:-1.344000pt;}
.y181{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y15a{bottom:3.616000pt;}
.y50{bottom:3.904000pt;}
.y82{bottom:5.632000pt;}
.y140{bottom:9.088000pt;}
.y6a{bottom:9.312000pt;}
.yfe{bottom:9.824000pt;}
.y93{bottom:11.488000pt;}
.y29{bottom:12.000000pt;}
.yba{bottom:12.736000pt;}
.y5{bottom:13.504000pt;}
.y196{bottom:14.016000pt;}
.yc6{bottom:14.528000pt;}
.ya9{bottom:15.936000pt;}
.yea{bottom:16.800000pt;}
.y180{bottom:17.440000pt;}
.ydc{bottom:18.816000pt;}
.y139{bottom:21.184000pt;}
.y19{bottom:21.600000pt;}
.y1a3{bottom:24.096000pt;}
.y11b{bottom:25.344000pt;}
.yfd{bottom:25.824000pt;}
.y4f{bottom:26.304000pt;}
.y36{bottom:26.592000pt;}
.y81{bottom:26.752000pt;}
.y69{bottom:26.912000pt;}
.y114{bottom:28.864000pt;}
.y195{bottom:31.616000pt;}
.y38{bottom:32.000000pt;}
.yca{bottom:32.160000pt;}
.y92{bottom:33.088000pt;}
.y159{bottom:33.184000pt;}
.y28{bottom:33.600000pt;}
.y13f{bottom:34.720000pt;}
.yc5{bottom:35.040000pt;}
.ya8{bottom:37.088000pt;}
.y118{bottom:37.664000pt;}
.y4{bottom:37.824000pt;}
.y17f{bottom:38.560000pt;}
.ydb{bottom:38.976000pt;}
.yfc{bottom:41.856000pt;}
.y19d{bottom:42.080000pt;}
.y80{bottom:44.352000pt;}
.y110{bottom:46.496000pt;}
.y138{bottom:46.784000pt;}
.y1a2{bottom:47.136000pt;}
.y18{bottom:48.000000pt;}
.y68{bottom:48.032000pt;}
.y169{bottom:49.760000pt;}
.y65{bottom:51.104000pt;}
.y11a{bottom:51.264000pt;}
.y11c{bottom:51.680000pt;}
.y194{bottom:52.736000pt;}
.y158{bottom:54.304000pt;}
.y113{bottom:54.496000pt;}
.y91{bottom:54.688000pt;}
.yc4{bottom:55.520000pt;}
.y4e{bottom:55.584000pt;}
.y17e{bottom:56.160000pt;}
.yfb{bottom:57.856000pt;}
.ya7{bottom:58.208000pt;}
.yb9{bottom:59.040000pt;}
.yda{bottom:59.136000pt;}
.y27{bottom:59.200000pt;}
.y19c{bottom:59.680000pt;}
.y3{bottom:62.144000pt;}
.y117{bottom:62.176000pt;}
.y112{bottom:62.496000pt;}
.y10f{bottom:62.656000pt;}
.y7f{bottom:65.504000pt;}
.y35{bottom:66.272000pt;}
.y168{bottom:67.360000pt;}
.y67{bottom:69.152000pt;}
.y37{bottom:69.472000pt;}
.ye8{bottom:69.984000pt;}
.y1a1{bottom:70.176000pt;}
.y193{bottom:70.368000pt;}
.ye3{bottom:70.976000pt;}
.y137{bottom:72.384000pt;}
.y64{bottom:72.864000pt;}
.yfa{bottom:73.856000pt;}
.y17{bottom:74.400000pt;}
.y157{bottom:75.424000pt;}
.y14a{bottom:75.488000pt;}
.y144{bottom:75.680000pt;}
.y119{bottom:77.216000pt;}
.y17d{bottom:77.280000pt;}
.y34{bottom:77.472000pt;}
.ya6{bottom:79.328000pt;}
.y111{bottom:80.096000pt;}
.y26{bottom:80.320000pt;}
.y19b{bottom:80.800000pt;}
.y90{bottom:81.120000pt;}
.y4d{bottom:81.216000pt;}
.yb8{bottom:84.672000pt;}
.yc9{bottom:84.992000pt;}
.y2{bottom:86.496000pt;}
.y7e{bottom:86.624000pt;}
.y167{bottom:88.480000pt;}
.yf9{bottom:89.856000pt;}
.y66{bottom:90.272000pt;}
.y192{bottom:91.488000pt;}
.y1a0{bottom:93.216000pt;}
.y41{bottom:95.680000pt;}
.y16{bottom:96.032000pt;}
.y156{bottom:96.544000pt;}
.y17c{bottom:98.432000pt;}
.ye2{bottom:99.808000pt;}
.ya5{bottom:101.088000pt;}
.yc3{bottom:101.600000pt;}
.y25{bottom:102.272000pt;}
.yd9{bottom:103.968000pt;}
.ya3{bottom:104.192000pt;}
.y10e{bottom:105.696000pt;}
.yf8{bottom:105.856000pt;}
.y13e{bottom:105.984000pt;}
.y166{bottom:106.080000pt;}
.y149{bottom:107.200000pt;}
.y143{bottom:107.360000pt;}
.y8f{bottom:107.520000pt;}
.y191{bottom:112.608000pt;}
.y4c{bottom:113.216000pt;}
.yeb{bottom:115.328000pt;}
.yb7{bottom:115.392000pt;}
.y7d{bottom:115.968000pt;}
.y155{bottom:117.696000pt;}
.y63{bottom:117.824000pt;}
.y17b{bottom:119.552000pt;}
.y33{bottom:120.672000pt;}
.y78{bottom:121.728000pt;}
.yf7{bottom:121.856000pt;}
.ya4{bottom:121.888000pt;}
.y15{bottom:122.432000pt;}
.y13b{bottom:122.464000pt;}
.y11f{bottom:123.712000pt;}
.yd8{bottom:124.128000pt;}
.ya2{bottom:125.344000pt;}
.yb2{bottom:125.376000pt;}
.yc2{bottom:127.200000pt;}
.y165{bottom:127.232000pt;}
.y40{bottom:127.680000pt;}
.y24{bottom:127.872000pt;}
.y13d{bottom:128.384000pt;}
.ye1{bottom:128.608000pt;}
.y8e{bottom:129.120000pt;}
.y190{bottom:130.208000pt;}
.y10d{bottom:131.296000pt;}
.y32{bottom:131.904000pt;}
.y62{bottom:135.426667pt;}
.y10c{bottom:136.253333pt;}
.y121{bottom:136.666667pt;}
.y7c{bottom:137.093333pt;}
.y17a{bottom:137.146667pt;}
.yf6{bottom:137.853333pt;}
.y154{bottom:138.813333pt;}
.y19a{bottom:140.666667pt;}
.yb6{bottom:140.986667pt;}
.y19f{bottom:144.226667pt;}
.yd7{bottom:144.293333pt;}
.y8{bottom:144.866667pt;}
.y4b{bottom:145.213333pt;}
.yc8{bottom:145.346667pt;}
.ya1{bottom:146.466667pt;}
.yc1{bottom:147.706667pt;}
.y13a{bottom:148.066667pt;}
.y164{bottom:148.346667pt;}
.y23{bottom:148.986667pt;}
.y11e{bottom:149.626667pt;}
.y14{bottom:149.786667pt;}
.y13c{bottom:150.786667pt;}
.yb1{bottom:151.293333pt;}
.y18f{bottom:151.333333pt;}
.yf5{bottom:153.893333pt;}
.y8d{bottom:155.520000pt;}
.y61{bottom:156.573333pt;}
.y10b{bottom:156.933333pt;}
.y5e{bottom:158.080000pt;}
.y7b{bottom:158.213333pt;}
.y179{bottom:158.266667pt;}
.y146{bottom:158.693333pt;}
.y153{bottom:159.933333pt;}
.y99{bottom:161.893333pt;}
.y120{bottom:162.586667pt;}
.yd6{bottom:164.453333pt;}
.y3f{bottom:166.080000pt;}
.ya0{bottom:167.586667pt;}
.ye7{bottom:168.186667pt;}
.y163{bottom:169.466667pt;}
.yf4{bottom:169.893333pt;}
.y22{bottom:170.906667pt;}
.yb5{bottom:171.706667pt;}
.y18e{bottom:172.480000pt;}
.yc0{bottom:173.946667pt;}
.y31{bottom:175.106667pt;}
.y11d{bottom:175.546667pt;}
.y7a{bottom:175.813333pt;}
.y4a{bottom:177.213333pt;}
.y60{bottom:177.693333pt;}
.y178{bottom:179.386667pt;}
.y152{bottom:181.053333pt;}
.y13{bottom:181.466667pt;}
.y8c{bottom:181.946667pt;}
.y109{bottom:182.693333pt;}
.yd5{bottom:184.613333pt;}
.y9f{bottom:185.186667pt;}
.yf3{bottom:185.893333pt;}
.y30{bottom:186.306667pt;}
.y145{bottom:190.373333pt;}
.y162{bottom:190.586667pt;}
.y18d{bottom:193.600000pt;}
.y21{bottom:197.306667pt;}
.yb4{bottom:197.346667pt;}
.y79{bottom:197.600000pt;}
.y108{bottom:198.693333pt;}
.y5f{bottom:198.813333pt;}
.y177{bottom:200.546667pt;}
.y151{bottom:202.173333pt;}
.y3e{bottom:204.506667pt;}
.y105{bottom:206.533333pt;}
.y10a{bottom:206.693333pt;}
.y9e{bottom:206.946667pt;}
.y8b{bottom:208.346667pt;}
.y7{bottom:208.866667pt;}
.yb0{bottom:208.893333pt;}
.y49{bottom:209.253333pt;}
.yd4{bottom:209.280000pt;}
.y18c{bottom:211.200000pt;}
.y161{bottom:211.706667pt;}
.y12{bottom:212.226667pt;}
.y133{bottom:213.053333pt;}
.ydd{bottom:213.533333pt;}
.y107{bottom:214.693333pt;}
.y176{bottom:218.146667pt;}
.ye9{bottom:221.026667pt;}
.y19e{bottom:221.053333pt;}
.y12b{bottom:222.080000pt;}
.y150{bottom:223.333333pt;}
.y20{bottom:224.706667pt;}
.y136{bottom:225.413333pt;}
.yf0{bottom:225.893333pt;}
.y5d{bottom:226.173333pt;}
.y9d{bottom:227.773333pt;}
.yb3{bottom:228.706667pt;}
.y160{bottom:229.346667pt;}
.yd3{bottom:229.440000pt;}
.y2f{bottom:229.506667pt;}
.y124{bottom:229.573333pt;}
.y8a{bottom:229.946667pt;}
.y77{bottom:230.426667pt;}
.y106{bottom:230.533333pt;}
.y18b{bottom:232.320000pt;}
.y11{bottom:233.826667pt;}
.y48{bottom:234.853333pt;}
.y3d{bottom:236.506667pt;}
.y175{bottom:239.266667pt;}
.y2e{bottom:240.733333pt;}
.y6{bottom:240.866667pt;}
.y5c{bottom:242.013333pt;}
.y129{bottom:242.720000pt;}
.y71{bottom:244.000000pt;}
.y14f{bottom:244.453333pt;}
.y12a{bottom:248.000000pt;}
.y76{bottom:248.026667pt;}
.y148{bottom:249.533333pt;}
.yd2{bottom:249.600000pt;}
.y15f{bottom:250.466667pt;}
.y1f{bottom:250.626667pt;}
.y135{bottom:251.013333pt;}
.y18a{bottom:253.440000pt;}
.y123{bottom:255.493333pt;}
.y102{bottom:256.160000pt;}
.y104{bottom:256.320000pt;}
.y89{bottom:256.346667pt;}
.y199{bottom:256.866667pt;}
.y10{bottom:260.226667pt;}
.y174{bottom:260.386667pt;}
.y9c{bottom:260.933333pt;}
.y5b{bottom:261.373333pt;}
.y58{bottom:262.106667pt;}
.y14e{bottom:265.573333pt;}
.y70{bottom:265.760000pt;}
.y1a6{bottom:265.893333pt;}
.y47{bottom:266.853333pt;}
.y15e{bottom:268.066667pt;}
.y128{bottom:268.640000pt;}
.y75{bottom:269.146667pt;}
.ye6{bottom:269.186667pt;}
.y100{bottom:272.160000pt;}
.y101{bottom:272.320000pt;}
.yd1{bottom:274.240000pt;}
.y189{bottom:274.560000pt;}
.y3c{bottom:274.906667pt;}
.y134{bottom:276.613333pt;}
.y88{bottom:277.946667pt;}
.y173{bottom:277.986667pt;}
.y5a{bottom:280.733333pt;}
.y147{bottom:281.253333pt;}
.y122{bottom:281.440000pt;}
.y1e{bottom:282.306667pt;}
.y9b{bottom:282.533333pt;}
.y2d{bottom:283.933333pt;}
.yf{bottom:286.626667pt;}
.y14d{bottom:286.693333pt;}
.y74{bottom:286.746667pt;}
.y103{bottom:288.320000pt;}
.ydf{bottom:289.120000pt;}
.y15d{bottom:289.186667pt;}
.yc7{bottom:289.213333pt;}
.ybe{bottom:291.746667pt;}
.y188{bottom:292.186667pt;}
.y46{bottom:292.453333pt;}
.yd0{bottom:294.426667pt;}
.y2c{bottom:295.133333pt;}
.yaf{bottom:296.000000pt;}
.ye5{bottom:296.733333pt;}
.y172{bottom:299.106667pt;}
.y59{bottom:300.093333pt;}
.y9a{bottom:304.133333pt;}
.y73{bottom:304.346667pt;}
.y87{bottom:304.386667pt;}
.y15c{bottom:306.786667pt;}
.y3b{bottom:306.946667pt;}
.y14c{bottom:307.813333pt;}
.y1d{bottom:308.226667pt;}
.y94{bottom:311.106667pt;}
.ye{bottom:313.053333pt;}
.y187{bottom:313.306667pt;}
.yf2{bottom:313.760000pt;}
.ycf{bottom:314.586667pt;}
.ybd{bottom:317.666667pt;}
.y171{bottom:320.253333pt;}
.yf1{bottom:321.760000pt;}
.yae{bottom:321.920000pt;}
.y57{bottom:324.320000pt;}
.y15b{bottom:324.386667pt;}
.y45{bottom:324.480000pt;}
.y14b{bottom:325.440000pt;}
.y132{bottom:325.626667pt;}
.y86{bottom:325.986667pt;}
.y72{bottom:326.106667pt;}
.yde{bottom:326.586667pt;}
.y1a5{bottom:329.920000pt;}
.y127{bottom:330.173333pt;}
.y142{bottom:332.733333pt;}
.y186{bottom:334.426667pt;}
.y6c{bottom:334.693333pt;}
.yce{bottom:334.746667pt;}
.y98{bottom:337.026667pt;}
.y198{bottom:337.853333pt;}
.y1c{bottom:338.973333pt;}
.yd{bottom:339.453333pt;}
.y12d{bottom:340.893333pt;}
.y170{bottom:341.373333pt;}
.ybc{bottom:343.613333pt;}
.y3a{bottom:345.346667pt;}
.y56{bottom:345.440000pt;}
.y2b{bottom:346.106667pt;}
.yad{bottom:347.840000pt;}
.y131{bottom:348.066667pt;}
.ye4{bottom:349.573333pt;}
.y85{bottom:352.386667pt;}
.ycd{bottom:354.906667pt;}
.yef{bottom:355.360000pt;}
.y185{bottom:355.546667pt;}
.y6f{bottom:356.000000pt;}
.y126{bottom:356.093333pt;}
.y16b{bottom:356.226667pt;}
.y6b{bottom:356.453333pt;}
.y44{bottom:356.480000pt;}
.y12e{bottom:356.773333pt;}
.y51{bottom:358.466667pt;}
.y16f{bottom:358.973333pt;}
.yc{bottom:361.053333pt;}
.y1a4{bottom:361.920000pt;}
.y55{bottom:363.040000pt;}
.y97{bottom:363.266667pt;}
.y141{bottom:364.413333pt;}
.y1b{bottom:365.373333pt;}
.y12c{bottom:366.813333pt;}
.y130{bottom:370.466667pt;}
.yee{bottom:371.546667pt;}
.yac{bottom:373.786667pt;}
.y84{bottom:373.986667pt;}
.ycc{bottom:375.066667pt;}
.ybb{bottom:375.293333pt;}
.y184{bottom:376.666667pt;}
.y6e{bottom:377.120000pt;}
.y39{bottom:377.346667pt;}
.y16e{bottom:380.093333pt;}
.y54{bottom:380.640000pt;}
.y125{bottom:380.893333pt;}
.y96{bottom:383.586667pt;}
.y16a{bottom:386.306667pt;}
.y1a{bottom:386.973333pt;}
.ybf{bottom:387.586667pt;}
.yb{bottom:388.413333pt;}
.y43{bottom:388.480000pt;}
.y2a{bottom:391.453333pt;}
.y12f{bottom:392.866667pt;}
.y183{bottom:397.826667pt;}
.y6d{bottom:398.240000pt;}
.yed{bottom:400.026667pt;}
.ycb{bottom:400.826667pt;}
.y16d{bottom:401.213333pt;}
.y83{bottom:401.693333pt;}
.y53{bottom:401.760000pt;}
.ye0{bottom:402.586667pt;}
.y197{bottom:402.973333pt;}
.yab{bottom:405.466667pt;}
.y95{bottom:409.986667pt;}
.y42{bottom:414.106667pt;}
.ya{bottom:414.333333pt;}
.y182{bottom:418.946667pt;}
.y52{bottom:419.386667pt;}
.y16c{bottom:424.133333pt;}
.y9{bottom:439.613333pt;}
.yec{bottom:546.213333pt;}
.h23{height:52.134375pt;}
.h25{height:52.260000pt;}
.h20{height:53.535000pt;}
.h27{height:55.402500pt;}
.h15{height:61.410000pt;}
.h14{height:61.543500pt;}
.hb{height:66.750000pt;}
.h1e{height:67.128750pt;}
.h2{height:71.474500pt;}
.h17{height:72.090000pt;}
.h18{height:72.223500pt;}
.h2e{height:75.212500pt;}
.h1d{height:76.308750pt;}
.hc{height:78.097500pt;}
.h1f{height:78.231000pt;}
.h9{height:83.437500pt;}
.ha{height:83.571000pt;}
.h28{height:84.420000pt;}
.h24{height:84.774375pt;}
.h22{height:86.410667pt;}
.h1b{height:88.777500pt;}
.h1c{height:88.911000pt;}
.h2a{height:91.490000pt;}
.h32{height:94.218750pt;}
.h13{height:94.785000pt;}
.h16{height:94.918500pt;}
.h31{height:96.750000pt;}
.h4{height:99.243750pt;}
.h8{height:100.125000pt;}
.h1a{height:100.258500pt;}
.h3{height:101.910000pt;}
.h29{height:103.334375pt;}
.h10{height:105.465000pt;}
.h19{height:105.598500pt;}
.h5{height:107.715000pt;}
.h6{height:107.844000pt;}
.h11{height:111.472500pt;}
.h12{height:111.606000pt;}
.h2f{height:115.928312pt;}
.h26{height:116.774375pt;}
.h2d{height:116.812500pt;}
.h2b{height:116.946000pt;}
.h21{height:118.281667pt;}
.hd{height:122.897500pt;}
.he{height:123.031000pt;}
.hf{height:123.041667pt;}
.h30{height:133.500000pt;}
.h7{height:155.527500pt;}
.h2c{height:224.925000pt;}
.h0{height:529.120000pt;}
.h1{height:529.333333pt;}
.w1{width:718.000000pt;}
.w2{width:718.239989pt;}
.w0{width:718.240000pt;}
.x0{left:0.000000pt;}
.x1{left:1.439989pt;}
.xa{left:7.167989pt;}
.x1c{left:9.599989pt;}
.x74{left:11.327989pt;}
.x3e{left:16.063989pt;}
.x70{left:18.847989pt;}
.x28{left:20.927989pt;}
.x3f{left:21.983989pt;}
.x9{left:24.319989pt;}
.x14{left:28.447989pt;}
.xb{left:29.567989pt;}
.xc{left:36.639989pt;}
.x75{left:39.167989pt;}
.x19{left:43.615989pt;}
.x68{left:45.599989pt;}
.x1d{left:46.879989pt;}
.x6f{left:50.079989pt;}
.xd{left:55.519989pt;}
.x29{left:56.959989pt;}
.x76{left:58.239989pt;}
.x63{left:61.439989pt;}
.x2a{left:66.271989pt;}
.x69{left:68.959989pt;}
.x13{left:75.711989pt;}
.x1a{left:80.895989pt;}
.x61{left:84.479989pt;}
.x2b{left:88.703989pt;}
.x77{left:91.455989pt;}
.x6e{left:92.639989pt;}
.x32{left:101.087989pt;}
.x60{left:103.871989pt;}
.x2f{left:105.087989pt;}
.x41{left:111.615989pt;}
.x78{left:113.855989pt;}
.x5d{left:129.951989pt;}
.x34{left:131.199989pt;}
.x5f{left:134.426656pt;}
.x3d{left:146.813323pt;}
.x3c{left:155.839989pt;}
.x30{left:158.399989pt;}
.x33{left:186.399989pt;}
.x18{left:209.759989pt;}
.x7b{left:216.959989pt;}
.x52{left:221.186656pt;}
.x7d{left:228.479989pt;}
.x65{left:234.053323pt;}
.x6{left:250.053323pt;}
.x64{left:259.973323pt;}
.x8{left:261.573323pt;}
.x1b{left:274.399989pt;}
.x6b{left:281.119989pt;}
.x53{left:288.893323pt;}
.x54{left:297.533323pt;}
.x20{left:300.666656pt;}
.x1e{left:308.346656pt;}
.x6a{left:315.519989pt;}
.x21{left:319.866656pt;}
.x1f{left:344.346656pt;}
.x24{left:346.013323pt;}
.x22{left:348.666656pt;}
.x16{left:351.039989pt;}
.x7a{left:358.013323pt;}
.x72{left:359.266656pt;}
.x59{left:361.413323pt;}
.x23{left:366.266656pt;}
.x26{left:368.706656pt;}
.x79{left:369.853323pt;}
.xe{left:373.919989pt;}
.x42{left:376.186656pt;}
.x25{left:382.013323pt;}
.x17{left:387.519989pt;}
.x27{left:391.106656pt;}
.x73{left:395.266656pt;}
.x11{left:396.346656pt;}
.x7c{left:397.466656pt;}
.x66{left:398.853323pt;}
.xf{left:403.386656pt;}
.x15{left:411.519989pt;}
.x5c{left:417.733323pt;}
.x10{left:422.266656pt;}
.x57{left:423.999989pt;}
.x5b{left:425.759989pt;}
.x7{left:430.559989pt;}
.x3{left:433.053323pt;}
.x50{left:435.973323pt;}
.x5e{left:436.866656pt;}
.x58{left:440.479989pt;}
.x51{left:453.093323pt;}
.x2e{left:458.653323pt;}
.x2{left:460.893323pt;}
.x37{left:462.173323pt;}
.x5{left:463.293323pt;}
.x2d{left:473.186656pt;}
.x4{left:475.293323pt;}
.x4c{left:477.759989pt;}
.x67{left:479.839989pt;}
.x40{left:485.893323pt;}
.x3a{left:488.733323pt;}
.x36{left:490.493323pt;}
.x62{left:491.613323pt;}
.x39{left:493.693323pt;}
.x4b{left:498.399989pt;}
.x3b{left:504.413323pt;}
.x38{left:506.333323pt;}
.x56{left:507.359989pt;}
.x55{left:510.239989pt;}
.x31{left:513.053323pt;}
.x35{left:514.013323pt;}
.x2c{left:517.213323pt;}
.x5a{left:520.639989pt;}
.x12{left:530.466656pt;}
.x6d{left:563.546656pt;}
.x4e{left:567.679989pt;}
.x4f{left:577.439989pt;}
.x6c{left:581.666656pt;}
.x4d{left:583.519989pt;}
.x4a{left:618.426656pt;}
.x45{left:621.666656pt;}
.x43{left:622.786656pt;}
.x44{left:623.906656pt;}
.x46{left:625.346656pt;}
.x49{left:640.026656pt;}
.x48{left:667.199989pt;}
.x47{left:672.639989pt;}
.x71{left:718.106656pt;}
}




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