
    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_010691a3e72fa6c85c4a4c72.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.114000;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_bb167daaa6e63397e09716b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.174000;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_0c03e642ad89b33668cce1bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.185000;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_c483f695a068f95ca94fab71.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.200900;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_e14bb1e9166bb2d90aa446a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.698000;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_e14bb1e9166bb2d90aa446a6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.698000;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_45ba4419a31b25a568fdd375.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172000;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_b66eed797651e2adb0eeeac8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.196000;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_ddcceba094e9bf31d45d3b0d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.034000;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_3c13d4127ba85f68014436b5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.036000;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_323832aa8a4cfed44dea1ca2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.638333;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.980000px;}
.v4{vertical-align:-3.150000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.150000px;}
.v1{vertical-align:19.980600px;}
.v6{vertical-align:32.977800px;}
.v3{vertical-align:37.944000px;}
.ls56{letter-spacing:-4.185000px;}
.ls42{letter-spacing:-4.017600px;}
.ls53{letter-spacing:-3.723000px;}
.ls3f{letter-spacing:-1.836000px;}
.ls35{letter-spacing:-1.434180px;}
.ls54{letter-spacing:-1.350000px;}
.ls3a{letter-spacing:-1.260000px;}
.ls31{letter-spacing:-1.200000px;}
.lsc{letter-spacing:-1.071000px;}
.ls36{letter-spacing:-0.780000px;}
.ls47{letter-spacing:-0.720000px;}
.ls29{letter-spacing:-0.600000px;}
.ls37{letter-spacing:-0.540000px;}
.ls40{letter-spacing:-0.480000px;}
.ls46{letter-spacing:-0.420000px;}
.ls43{letter-spacing:-0.390600px;}
.ls28{letter-spacing:-0.360000px;}
.ls4e{letter-spacing:-0.324000px;}
.ls20{letter-spacing:-0.300000px;}
.ls44{letter-spacing:-0.279000px;}
.ls11{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.180000px;}
.ls2c{letter-spacing:-0.167400px;}
.lsa{letter-spacing:-0.153000px;}
.ls10{letter-spacing:-0.120000px;}
.lsf{letter-spacing:-0.060000px;}
.ls32{letter-spacing:-0.055800px;}
.ls51{letter-spacing:-0.054000px;}
.lsb{letter-spacing:-0.051000px;}
.ls8{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.000300px;}
.ls13{letter-spacing:0.022200px;}
.ls0{letter-spacing:0.051000px;}
.ls17{letter-spacing:0.060000px;}
.ls3c{letter-spacing:0.081600px;}
.ls2a{letter-spacing:0.083700px;}
.ls41{letter-spacing:0.104940px;}
.ls6{letter-spacing:0.120000px;}
.ls4c{letter-spacing:0.144000px;}
.ls3b{letter-spacing:0.150000px;}
.ls45{letter-spacing:0.162000px;}
.ls3e{letter-spacing:0.167400px;}
.ls5{letter-spacing:0.180000px;}
.ls4a{letter-spacing:0.210000px;}
.ls38{letter-spacing:0.216000px;}
.ls33{letter-spacing:0.223200px;}
.ls21{letter-spacing:0.240000px;}
.ls1{letter-spacing:0.255000px;}
.ls2d{letter-spacing:0.270000px;}
.ls3d{letter-spacing:0.279000px;}
.ls4{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.306000px;}
.ls2f{letter-spacing:0.306900px;}
.ls50{letter-spacing:0.357000px;}
.ls16{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.420000px;}
.ls1a{letter-spacing:0.480000px;}
.ls18{letter-spacing:0.540000px;}
.ls1d{letter-spacing:0.570000px;}
.ls19{letter-spacing:0.600000px;}
.ls26{letter-spacing:0.660000px;}
.ls15{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.732600px;}
.ls1c{letter-spacing:0.780000px;}
.ls1b{letter-spacing:0.840000px;}
.ls30{letter-spacing:0.864000px;}
.ls25{letter-spacing:0.870000px;}
.ls27{letter-spacing:0.900000px;}
.ls24{letter-spacing:0.960000px;}
.lsd{letter-spacing:0.969000px;}
.ls23{letter-spacing:1.020000px;}
.ls1f{letter-spacing:1.080000px;}
.lse{letter-spacing:1.200000px;}
.ls9{letter-spacing:1.326000px;}
.ls22{letter-spacing:1.458000px;}
.ls2b{letter-spacing:1.512000px;}
.ls34{letter-spacing:1.566000px;}
.ls39{letter-spacing:1.728000px;}
.ls55{letter-spacing:1.740000px;}
.ls4d{letter-spacing:1.836000px;}
.ls4f{letter-spacing:1.944000px;}
.ls1e{letter-spacing:1.998000px;}
.ls4b{letter-spacing:2.052000px;}
.ls48{letter-spacing:2.214000px;}
.ls3{letter-spacing:2.295000px;}
.ls49{letter-spacing:2.376000px;}
.ls52{letter-spacing:2.754000px;}
.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;}
}
.wsba{word-spacing:-15.174000px;}
.ws25{word-spacing:-14.796000px;}
.wscc{word-spacing:-14.742000px;}
.wsc5{word-spacing:-14.634000px;}
.ws86{word-spacing:-14.526000px;}
.ws72{word-spacing:-14.364000px;}
.ws52{word-spacing:-14.310000px;}
.wsd3{word-spacing:-14.025000px;}
.ws3{word-spacing:-13.566000px;}
.wsc0{word-spacing:-13.200000px;}
.wsa1{word-spacing:-12.960000px;}
.ws26{word-spacing:-12.900000px;}
.wse0{word-spacing:-12.258000px;}
.ws2{word-spacing:-12.240000px;}
.ws94{word-spacing:-11.997000px;}
.wsbf{word-spacing:-11.880000px;}
.ws87{word-spacing:-11.580000px;}
.ws0{word-spacing:-11.577000px;}
.ws6{word-spacing:-11.460000px;}
.wsd1{word-spacing:-11.340000px;}
.ws5{word-spacing:-11.280000px;}
.ws7{word-spacing:-11.220000px;}
.ws8{word-spacing:-11.100000px;}
.wsa2{word-spacing:-11.040000px;}
.ws3c{word-spacing:-10.980000px;}
.wsdc{word-spacing:-10.965000px;}
.ws3d{word-spacing:-10.920000px;}
.wsa3{word-spacing:-10.860000px;}
.wsae{word-spacing:-10.800000px;}
.ws4{word-spacing:-10.710000px;}
.ws3e{word-spacing:-10.680000px;}
.wsd2{word-spacing:-10.659000px;}
.wsa4{word-spacing:-10.560000px;}
.wsd4{word-spacing:-10.200000px;}
.ws67{word-spacing:-10.080000px;}
.ws1{word-spacing:-9.588000px;}
.ws54{word-spacing:-8.901000px;}
.ws53{word-spacing:-7.345800px;}
.ws9d{word-spacing:-2.845800px;}
.ws2b{word-spacing:-1.980000px;}
.ws1e{word-spacing:-1.920000px;}
.ws9e{word-spacing:-1.897200px;}
.ws23{word-spacing:-1.860000px;}
.ws6a{word-spacing:-1.800000px;}
.ws64{word-spacing:-1.785600px;}
.ws8a{word-spacing:-1.740000px;}
.ws3a{word-spacing:-1.680000px;}
.ws10{word-spacing:-1.632000px;}
.wsa8{word-spacing:-1.620000px;}
.ws9c{word-spacing:-1.618200px;}
.wsf{word-spacing:-1.581000px;}
.wsb9{word-spacing:-1.560000px;}
.ws47{word-spacing:-1.500000px;}
.ws8f{word-spacing:-1.440000px;}
.wsd0{word-spacing:-1.380000px;}
.wsc{word-spacing:-1.326000px;}
.ws4e{word-spacing:-1.320000px;}
.ws22{word-spacing:-1.260000px;}
.ws18{word-spacing:-1.200000px;}
.ws60{word-spacing:-1.140000px;}
.ws3f{word-spacing:-1.080000px;}
.ws6c{word-spacing:-1.020000px;}
.ws2a{word-spacing:-0.960000px;}
.ws46{word-spacing:-0.900000px;}
.wsff{word-spacing:-0.892800px;}
.ws51{word-spacing:-0.840000px;}
.ws9a{word-spacing:-0.781200px;}
.ws58{word-spacing:-0.780000px;}
.ws9{word-spacing:-0.754800px;}
.ws28{word-spacing:-0.720000px;}
.wsc8{word-spacing:-0.714000px;}
.wse{word-spacing:-0.663000px;}
.ws6e{word-spacing:-0.660000px;}
.ws12{word-spacing:-0.612000px;}
.ws33{word-spacing:-0.600000px;}
.ws4d{word-spacing:-0.540000px;}
.ws3b{word-spacing:-0.480000px;}
.ws81{word-spacing:-0.420000px;}
.ws59{word-spacing:-0.360000px;}
.wsdf{word-spacing:-0.306000px;}
.ws4b{word-spacing:-0.300000px;}
.ws1a{word-spacing:-0.240000px;}
.ws71{word-spacing:-0.223200px;}
.ws17{word-spacing:-0.204000px;}
.ws90{word-spacing:-0.180000px;}
.ws21{word-spacing:-0.120000px;}
.ws85{word-spacing:-0.111600px;}
.ws98{word-spacing:-0.104940px;}
.ws91{word-spacing:-0.060000px;}
.ws7c{word-spacing:-0.055800px;}
.wsa{word-spacing:-0.044400px;}
.wsb{word-spacing:0.000000px;}
.ws11{word-spacing:0.051000px;}
.ws1f{word-spacing:0.060000px;}
.ws69{word-spacing:0.120000px;}
.ws65{word-spacing:0.167400px;}
.ws50{word-spacing:0.180000px;}
.wsd8{word-spacing:0.240000px;}
.ws7d{word-spacing:0.279000px;}
.wsca{word-spacing:0.360000px;}
.ws9b{word-spacing:0.390600px;}
.ws16{word-spacing:0.408000px;}
.ws96{word-spacing:0.420000px;}
.ws39{word-spacing:0.480000px;}
.ws80{word-spacing:0.540000px;}
.ws24{word-spacing:0.600000px;}
.wsa0{word-spacing:0.613800px;}
.wsd9{word-spacing:0.660000px;}
.ws57{word-spacing:0.720000px;}
.ws82{word-spacing:0.780000px;}
.ws4a{word-spacing:0.840000px;}
.ws7e{word-spacing:0.892800px;}
.ws1c{word-spacing:0.900000px;}
.ws84{word-spacing:0.960000px;}
.ws1b{word-spacing:1.020000px;}
.ws6d{word-spacing:1.080000px;}
.ws2f{word-spacing:1.140000px;}
.wsc4{word-spacing:1.200000px;}
.ws70{word-spacing:1.227600px;}
.ws78{word-spacing:1.260000px;}
.ws74{word-spacing:1.294260px;}
.wsd7{word-spacing:1.320000px;}
.ws5f{word-spacing:1.380000px;}
.ws6b{word-spacing:1.440000px;}
.ws56{word-spacing:1.500000px;}
.ws61{word-spacing:1.560000px;}
.wsd{word-spacing:1.581000px;}
.ws43{word-spacing:1.620000px;}
.ws13{word-spacing:1.632000px;}
.ws4f{word-spacing:1.680000px;}
.ws4c{word-spacing:1.740000px;}
.ws66{word-spacing:1.785600px;}
.ws42{word-spacing:1.800000px;}
.ws20{word-spacing:1.860000px;}
.ws14{word-spacing:1.887000px;}
.ws1d{word-spacing:1.920000px;}
.ws41{word-spacing:1.980000px;}
.ws9f{word-spacing:2.008800px;}
.ws37{word-spacing:2.040000px;}
.ws19{word-spacing:2.100000px;}
.ws32{word-spacing:2.160000px;}
.ws38{word-spacing:2.220000px;}
.ws5b{word-spacing:2.280000px;}
.ws15{word-spacing:2.295000px;}
.ws6f{word-spacing:2.343600px;}
.wsdb{word-spacing:2.397000px;}
.ws31{word-spacing:2.400000px;}
.ws5a{word-spacing:2.460000px;}
.ws89{word-spacing:2.520000px;}
.ws75{word-spacing:2.580000px;}
.ws8b{word-spacing:2.640000px;}
.ws45{word-spacing:2.700000px;}
.ws49{word-spacing:2.760000px;}
.wsda{word-spacing:2.805000px;}
.ws44{word-spacing:2.820000px;}
.ws2e{word-spacing:2.880000px;}
.wsc3{word-spacing:2.940000px;}
.ws8e{word-spacing:3.000000px;}
.ws30{word-spacing:3.060000px;}
.ws77{word-spacing:3.120000px;}
.ws2d{word-spacing:3.180000px;}
.wsc9{word-spacing:3.240000px;}
.ws34{word-spacing:3.300000px;}
.ws29{word-spacing:3.360000px;}
.ws99{word-spacing:3.420000px;}
.ws8d{word-spacing:3.540000px;}
.wsb8{word-spacing:3.660000px;}
.wsdd{word-spacing:3.723000px;}
.ws83{word-spacing:3.780000px;}
.ws5c{word-spacing:3.840000px;}
.ws36{word-spacing:3.900000px;}
.wsac{word-spacing:4.080000px;}
.ws5d{word-spacing:4.140000px;}
.ws8c{word-spacing:4.200000px;}
.ws62{word-spacing:4.260000px;}
.wsc2{word-spacing:4.320000px;}
.ws35{word-spacing:4.380000px;}
.ws76{word-spacing:4.440000px;}
.wsd6{word-spacing:4.560000px;}
.ws63{word-spacing:4.620000px;}
.ws97{word-spacing:4.680000px;}
.ws48{word-spacing:5.280000px;}
.wsa7{word-spacing:5.340000px;}
.ws2c{word-spacing:5.940000px;}
.wsa6{word-spacing:6.000000px;}
.ws7a{word-spacing:7.800000px;}
.ws5e{word-spacing:9.660000px;}
.wsaa{word-spacing:11.100000px;}
.ws79{word-spacing:11.280000px;}
.wsa9{word-spacing:14.580000px;}
.wsad{word-spacing:15.120000px;}
.wsab{word-spacing:16.560000px;}
.ws7b{word-spacing:21.120000px;}
.wsf3{word-spacing:236.536200px;}
.wsf6{word-spacing:236.815200px;}
.wsf0{word-spacing:238.600800px;}
.wsf2{word-spacing:239.214600px;}
.wsf1{word-spacing:239.828400px;}
.wsef{word-spacing:239.995800px;}
.wsfa{word-spacing:240.832800px;}
.wsf9{word-spacing:253.108800px;}
.wsf4{word-spacing:261.311400px;}
.wsf5{word-spacing:261.925200px;}
.wsf8{word-spacing:273.308400px;}
.wse4{word-spacing:282.682800px;}
.wse7{word-spacing:291.834000px;}
.wsec{word-spacing:305.226000px;}
.wsfc{word-spacing:305.616600px;}
.wsed{word-spacing:309.132000px;}
.wse5{word-spacing:309.411000px;}
.wsfd{word-spacing:309.522600px;}
.wsf7{word-spacing:309.801600px;}
.wse9{word-spacing:313.317000px;}
.wsfb{word-spacing:313.707600px;}
.wse6{word-spacing:319.566600px;}
.wse8{word-spacing:322.524000px;}
.wseb{word-spacing:323.751600px;}
.ws93{word-spacing:348.805800px;}
.wsea{word-spacing:350.256600px;}
.ws92{word-spacing:360.300600px;}
.wse2{word-spacing:438.755400px;}
.wse3{word-spacing:442.661400px;}
.wse1{word-spacing:472.068000px;}
.wscd{word-spacing:576.469800px;}
.wsce{word-spacing:577.697400px;}
.wsc6{word-spacing:584.951400px;}
.wsb6{word-spacing:604.840200px;}
.wsbb{word-spacing:606.267000px;}
.wsaf{word-spacing:606.349200px;}
.wsb0{word-spacing:607.159800px;}
.wsb4{word-spacing:608.387400px;}
.wsbc{word-spacing:613.130400px;}
.wsbd{word-spacing:614.358000px;}
.wsb5{word-spacing:697.647600px;}
.wsb3{word-spacing:718.477800px;}
.wsb1{word-spacing:762.147600px;}
.wsb2{word-spacing:781.357800px;}
.wsb7{word-spacing:903.906000px;}
.wsc1{word-spacing:904.230000px;}
.wsfe{word-spacing:905.310000px;}
.ws40{word-spacing:905.472000px;}
.ws68{word-spacing:906.606000px;}
.ws7f{word-spacing:907.902000px;}
.wsd5{word-spacing:908.496000px;}
.wscb{word-spacing:908.982000px;}
.wsde{word-spacing:911.034000px;}
.ws95{word-spacing:912.006000px;}
.wsbe{word-spacing:1259.226000px;}
.ws27{word-spacing:1259.604000px;}
.wscf{word-spacing:1259.658000px;}
.wsc7{word-spacing:1259.766000px;}
.ws88{word-spacing:1259.874000px;}
.ws73{word-spacing:1259.982000px;}
.ws55{word-spacing:1260.036000px;}
.wsa5{word-spacing:1261.386000px;}
.wsee{word-spacing:1262.142000px;}
._43{margin-left:-1262.904000px;}
._2d{margin-left:-1261.077300px;}
._d{margin-left:-1259.412600px;}
._21{margin-left:-20.859600px;}
._2f{margin-left:-16.800000px;}
._2e{margin-left:-14.820000px;}
._1f{margin-left:-11.520000px;}
._2{margin-left:-7.221600px;}
._6{margin-left:-5.600100px;}
._5{margin-left:-4.090200px;}
._0{margin-left:-2.889600px;}
._1{margin-left:-1.440000px;}
._3{width:1.718700px;}
._4{width:3.304800px;}
._e{width:4.337400px;}
._11{width:6.480000px;}
._8{width:8.520000px;}
._a{width:13.980000px;}
._27{width:15.840000px;}
._25{width:17.100000px;}
._26{width:19.080000px;}
._28{width:21.300000px;}
._20{width:24.840000px;}
._17{width:25.975200px;}
._1c{width:32.551200px;}
._30{width:35.700000px;}
._29{width:38.160000px;}
._f{width:44.335200px;}
._24{width:46.320000px;}
._1a{width:49.131300px;}
._23{width:51.224400px;}
._22{width:52.228800px;}
._12{width:59.370600px;}
._1d{width:71.200800px;}
._1b{width:73.265400px;}
._31{width:140.712000px;}
._b{width:152.220000px;}
._9{width:159.540000px;}
._c{width:166.020000px;}
._57{width:167.194800px;}
._18{width:193.333500px;}
._19{width:214.672200px;}
._4a{width:236.664600px;}
._55{width:256.066200px;}
._49{width:260.418600px;}
._7{width:263.100000px;}
._61{width:266.333400px;}
._63{width:273.118200px;}
._58{width:274.280400px;}
._62{width:280.060200px;}
._52{width:283.296600px;}
._60{width:293.061600px;}
._4e{width:319.053600px;}
._44{width:333.907200px;}
._4b{width:335.860200px;}
._5a{width:346.302900px;}
._4d{width:350.066400px;}
._15{width:351.604800px;}
._50{width:353.827800px;}
._4c{width:357.008400px;}
._2c{width:368.992800px;}
._16{width:371.583900px;}
._59{width:373.533300px;}
._5f{width:374.752800px;}
._48{width:382.629900px;}
._2a{width:384.478800px;}
._45{width:388.440600px;}
._46{width:390.860100px;}
._10{width:393.120000px;}
._47{width:459.668400px;}
._40{width:465.957000px;}
._42{width:484.957200px;}
._41{width:492.446400px;}
._14{width:493.531500px;}
._3f{width:500.676600px;}
._53{width:609.136200px;}
._34{width:620.541000px;}
._3e{width:623.219400px;}
._39{width:631.701000px;}
._35{width:639.796800px;}
._38{width:642.782400px;}
._13{width:643.809600px;}
._37{width:658.797000px;}
._36{width:660.349200px;}
._2b{width:668.015400px;}
._5c{width:673.896600px;}
._54{width:681.158700px;}
._5b{width:688.125600px;}
._3d{width:722.224200px;}
._3c{width:730.271400px;}
._5d{width:740.354400px;}
._3b{width:754.644000px;}
._32{width:756.313200px;}
._3a{width:762.691200px;}
._56{width:797.148000px;}
._33{width:811.766400px;}
._1e{width:830.173200px;}
._51{width:908.870400px;}
._5e{width:919.126800px;}
._4f{width:930.018600px;}
.fc2{color:rgb(135,135,135);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:22.200000px;}
.fs6{font-size:34.980000px;}
.fs7{font-size:41.400000px;}
.fs2{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:55.800000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:90.536400px;}
.y47{bottom:90.554850px;}
.y7f{bottom:90.561000px;}
.y51{bottom:90.567000px;}
.y25{bottom:91.318050px;}
.y8c{bottom:91.478400px;}
.y11c{bottom:92.000550px;}
.y10b{bottom:94.637550px;}
.ydb{bottom:94.675800px;}
.yab{bottom:96.855300px;}
.y86{bottom:101.222550px;}
.y11b{bottom:101.486550px;}
.y4c{bottom:107.792550px;}
.y46{bottom:107.811000px;}
.y50{bottom:107.817000px;}
.y7e{bottom:107.817150px;}
.y24{bottom:109.768050px;}
.y10a{bottom:111.888300px;}
.yda{bottom:111.926550px;}
.yaa{bottom:114.106050px;}
.y8b{bottom:116.734650px;}
.y118{bottom:120.444600px;}
.y7d{bottom:125.036400px;}
.y4b{bottom:125.048700px;}
.y45{bottom:125.067150px;}
.y85{bottom:126.501000px;}
.y23{bottom:128.218050px;}
.y109{bottom:129.139050px;}
.yd9{bottom:129.177300px;}
.y11a{bottom:129.930600px;}
.ya9{bottom:131.356800px;}
.y8a{bottom:135.706650px;}
.y119{bottom:139.416600px;}
.y7c{bottom:142.292550px;}
.y4a{bottom:142.304850px;}
.y4f{bottom:142.317150px;}
.y84{bottom:146.254950px;}
.y108{bottom:146.389800px;}
.yd8{bottom:146.428050px;}
.y22{bottom:146.668050px;}
.ya8{bottom:148.607550px;}
.y89{bottom:154.678650px;}
.y7b{bottom:159.548700px;}
.y49{bottom:159.561000px;}
.y4e{bottom:159.567300px;}
.y107{bottom:163.640550px;}
.yd7{bottom:163.678800px;}
.y21{bottom:165.118050px;}
.ya7{bottom:165.858300px;}
.y83{bottom:166.008900px;}
.y117{bottom:167.860650px;}
.y88{bottom:173.650650px;}
.y7a{bottom:176.804850px;}
.y48{bottom:176.817150px;}
.y116{bottom:177.346650px;}
.y106{bottom:180.891300px;}
.yd6{bottom:180.929550px;}
.ya6{bottom:183.109050px;}
.y20{bottom:183.568050px;}
.y82{bottom:185.762850px;}
.y87{bottom:192.622650px;}
.y79{bottom:194.061000px;}
.y113{bottom:196.304700px;}
.y105{bottom:198.142050px;}
.yd5{bottom:198.180300px;}
.ya5{bottom:200.359800px;}
.y1f{bottom:202.018050px;}
.y81{bottom:205.516800px;}
.y115{bottom:205.790700px;}
.y78{bottom:211.317150px;}
.y114{bottom:215.276700px;}
.y104{bottom:215.392800px;}
.yd4{bottom:215.431050px;}
.ya4{bottom:217.610550px;}
.y1e{bottom:220.468050px;}
.y80{bottom:225.270750px;}
.y103{bottom:232.643550px;}
.yd3{bottom:232.681800px;}
.ya3{bottom:234.861300px;}
.y1d{bottom:238.918050px;}
.y112{bottom:243.720750px;}
.y102{bottom:249.894300px;}
.yd2{bottom:249.932550px;}
.y77{bottom:252.494100px;}
.y1c{bottom:257.368050px;}
.y101{bottom:267.145050px;}
.yd1{bottom:267.183300px;}
.ya2{bottom:269.362800px;}
.y76{bottom:269.744850px;}
.y44{bottom:275.818050px;}
.y111{bottom:275.818200px;}
.y100{bottom:284.395800px;}
.yd0{bottom:284.434050px;}
.y1b{bottom:294.268050px;}
.y75{bottom:294.908700px;}
.y71{bottom:294.922650px;}
.y6d{bottom:294.936600px;}
.y69{bottom:294.950550px;}
.yff{bottom:301.646550px;}
.ycf{bottom:301.684800px;}
.y74{bottom:311.411550px;}
.y70{bottom:311.425500px;}
.y6c{bottom:311.439450px;}
.y68{bottom:311.453400px;}
.y1a{bottom:312.718050px;}
.yfe{bottom:318.897300px;}
.yce{bottom:318.935550px;}
.y65{bottom:319.711800px;}
.ya1{bottom:321.115050px;}
.y73{bottom:327.914400px;}
.y6f{bottom:327.928350px;}
.y6b{bottom:327.942300px;}
.y67{bottom:327.956250px;}
.y136{bottom:329.925450px;}
.y19{bottom:331.168050px;}
.y110{bottom:333.910650px;}
.yfd{bottom:336.148050px;}
.ycd{bottom:336.186300px;}
.ya0{bottom:338.365800px;}
.y135{bottom:339.411450px;}
.y10f{bottom:343.396650px;}
.y72{bottom:344.417250px;}
.y6e{bottom:344.431200px;}
.y6a{bottom:344.445150px;}
.y66{bottom:344.459100px;}
.y94{bottom:345.526500px;}
.y18{bottom:349.618050px;}
.yfc{bottom:353.398800px;}
.ycc{bottom:353.437050px;}
.y9f{bottom:355.616550px;}
.y132{bottom:358.369500px;}
.y64{bottom:363.431100px;}
.y60{bottom:363.445050px;}
.y5c{bottom:363.459000px;}
.y58{bottom:363.472950px;}
.y134{bottom:367.855500px;}
.y43{bottom:368.068050px;}
.yfb{bottom:370.649550px;}
.ycb{bottom:370.687800px;}
.y93{bottom:370.782750px;}
.y10e{bottom:371.840700px;}
.y9e{bottom:372.867300px;}
.y133{bottom:377.341500px;}
.y63{bottom:379.933950px;}
.y5f{bottom:379.947900px;}
.y5b{bottom:379.961850px;}
.y57{bottom:379.975800px;}
.y10d{bottom:381.326700px;}
.y17{bottom:386.518050px;}
.yfa{bottom:387.900300px;}
.yca{bottom:387.938550px;}
.y54{bottom:388.234200px;}
.y92{bottom:389.754750px;}
.y9d{bottom:390.118050px;}
.y62{bottom:396.436800px;}
.y5e{bottom:396.450750px;}
.y5a{bottom:396.464700px;}
.y56{bottom:396.478650px;}
.y16{bottom:404.968050px;}
.yf9{bottom:405.151050px;}
.yc9{bottom:405.189300px;}
.y131{bottom:405.785550px;}
.y91{bottom:408.726750px;}
.y10c{bottom:409.770750px;}
.y61{bottom:412.939650px;}
.y5d{bottom:412.953600px;}
.y59{bottom:412.967550px;}
.y55{bottom:412.981500px;}
.y130{bottom:415.271550px;}
.yf8{bottom:422.401800px;}
.yc8{bottom:422.440050px;}
.y42{bottom:423.418050px;}
.y90{bottom:427.698750px;}
.y53{bottom:431.953500px;}
.y12d{bottom:435.192150px;}
.yf7{bottom:439.652550px;}
.yc7{bottom:439.690800px;}
.y52{bottom:441.439500px;}
.y15{bottom:441.868050px;}
.y12f{bottom:443.715600px;}
.y8f{bottom:446.670750px;}
.y12e{bottom:454.164150px;}
.yf6{bottom:456.903300px;}
.yc6{bottom:456.941550px;}
.y41{bottom:460.318050px;}
.yf5{bottom:474.154050px;}
.yc5{bottom:474.192300px;}
.y40{bottom:478.768050px;}
.y12c{bottom:483.570750px;}
.y14{bottom:483.790950px;}
.yf4{bottom:491.404800px;}
.yc4{bottom:491.443050px;}
.y9b{bottom:491.684400px;}
.y3f{bottom:497.218050px;}
.y13{bottom:501.041700px;}
.yf3{bottom:508.655550px;}
.yc3{bottom:508.693800px;}
.y3e{bottom:515.668050px;}
.y9a{bottom:516.940650px;}
.yf2{bottom:525.906300px;}
.yc2{bottom:525.944550px;}
.y3d{bottom:534.118050px;}
.y12{bottom:535.543200px;}
.y99{bottom:535.912650px;}
.yf1{bottom:543.157050px;}
.yc1{bottom:543.195300px;}
.y3c{bottom:552.568050px;}
.y11{bottom:552.793950px;}
.y98{bottom:554.884650px;}
.yf0{bottom:560.407800px;}
.yc0{bottom:560.446050px;}
.y12b{bottom:561.222300px;}
.y3b{bottom:571.018050px;}
.y97{bottom:573.856650px;}
.y8d{bottom:574.232700px;}
.y8e{bottom:575.909850px;}
.yef{bottom:577.658550px;}
.ybf{bottom:577.696800px;}
.y10{bottom:587.295450px;}
.y3a{bottom:589.468050px;}
.y12a{bottom:590.001150px;}
.y96{bottom:592.828650px;}
.yee{bottom:594.909300px;}
.ybe{bottom:594.947550px;}
.yf{bottom:604.546200px;}
.y39{bottom:607.918050px;}
.y129{bottom:608.973150px;}
.yed{bottom:612.160050px;}
.ybd{bottom:612.198300px;}
.ye{bottom:621.796950px;}
.y38{bottom:626.368050px;}
.y128{bottom:627.945150px;}
.yec{bottom:629.410800px;}
.ybc{bottom:629.449050px;}
.yd{bottom:639.047700px;}
.y37{bottom:644.818050px;}
.yeb{bottom:646.661550px;}
.ybb{bottom:646.699800px;}
.y127{bottom:646.917150px;}
.y95{bottom:648.831150px;}
.y9c{bottom:651.618600px;}
.yc{bottom:656.298450px;}
.y36{bottom:663.268050px;}
.yea{bottom:663.912300px;}
.yba{bottom:663.950550px;}
.y126{bottom:665.889150px;}
.yb{bottom:673.549200px;}
.ye9{bottom:681.163050px;}
.yb9{bottom:681.201300px;}
.y35{bottom:681.718050px;}
.y125{bottom:682.344750px;}
.ya{bottom:690.799950px;}
.ye8{bottom:698.413800px;}
.yb8{bottom:698.452050px;}
.y34{bottom:700.168050px;}
.y124{bottom:701.316750px;}
.y9{bottom:708.050700px;}
.ye7{bottom:715.664550px;}
.yb7{bottom:715.702800px;}
.y33{bottom:718.618050px;}
.y123{bottom:720.288750px;}
.y8{bottom:725.301450px;}
.ye6{bottom:732.915300px;}
.yb6{bottom:732.953550px;}
.y32{bottom:737.068050px;}
.y122{bottom:739.260750px;}
.y7{bottom:742.552200px;}
.ye5{bottom:750.166050px;}
.yb5{bottom:750.204300px;}
.y31{bottom:755.518050px;}
.y121{bottom:758.232750px;}
.y6{bottom:759.802950px;}
.ye4{bottom:767.416800px;}
.yb4{bottom:767.455050px;}
.y30{bottom:773.968050px;}
.y5{bottom:777.053700px;}
.y120{bottom:777.204750px;}
.ye3{bottom:784.667550px;}
.yb3{bottom:784.705800px;}
.y2f{bottom:792.418050px;}
.y4{bottom:794.297700px;}
.y11f{bottom:796.176750px;}
.ye2{bottom:801.918300px;}
.yb2{bottom:801.956550px;}
.y2e{bottom:810.868050px;}
.y11e{bottom:815.148750px;}
.ye1{bottom:819.169050px;}
.yb1{bottom:819.207300px;}
.y3{bottom:819.803700px;}
.y2d{bottom:829.318050px;}
.y11d{bottom:834.120750px;}
.ye0{bottom:836.419800px;}
.yb0{bottom:836.458050px;}
.y2c{bottom:847.768050px;}
.ydf{bottom:853.670550px;}
.yaf{bottom:853.708800px;}
.y27{bottom:857.391000px;}
.y26{bottom:864.889050px;}
.y2b{bottom:866.218050px;}
.y2{bottom:870.815700px;}
.yde{bottom:870.921300px;}
.yae{bottom:870.959550px;}
.y2a{bottom:884.668050px;}
.ydd{bottom:888.172050px;}
.yad{bottom:888.210300px;}
.y1{bottom:896.303700px;}
.y29{bottom:903.118050px;}
.ydc{bottom:905.422800px;}
.yac{bottom:905.461050px;}
.y28{bottom:955.942350px;}
.h8{height:15.295800px;}
.h12{height:39.066000px;}
.hd{height:42.742800px;}
.h10{height:42.810000px;}
.h4{height:45.492000px;}
.h13{height:45.543000px;}
.he{height:45.696000px;}
.h5{height:45.900000px;}
.hb{height:49.996800px;}
.hf{height:50.119800px;}
.h15{height:50.174400px;}
.h9{height:50.868000px;}
.h6{height:53.520000px;}
.h11{height:53.760000px;}
.h7{height:54.000000px;}
.ha{height:56.520000px;}
.h3{height:67.824000px;}
.hc{height:80.686800px;}
.h16{height:82.974600px;}
.h2{height:85.632000px;}
.h14{height:87.940800px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x8{left:25.310100px;}
.x7{left:28.379250px;}
.x5{left:72.283500px;}
.x1{left:80.787450px;}
.x11{left:85.039350px;}
.x6{left:93.538500px;}
.x2{left:102.042450px;}
.x9{left:123.293100px;}
.xb{left:161.585700px;}
.xa{left:202.166250px;}
.x15{left:213.457500px;}
.x14{left:232.806150px;}
.x17{left:250.545000px;}
.xc{left:278.514600px;}
.x16{left:328.935600px;}
.x12{left:353.414100px;}
.xf{left:361.912050px;}
.x13{left:366.164100px;}
.x10{left:374.662050px;}
.xd{left:395.443500px;}
.xe{left:512.372400px;}
.x4{left:650.349450px;}
.x3{left:653.418600px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v4{vertical-align:-2.800000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.800000pt;}
.v1{vertical-align:17.760533pt;}
.v6{vertical-align:29.313600pt;}
.v3{vertical-align:33.728000pt;}
.ls56{letter-spacing:-3.720000pt;}
.ls42{letter-spacing:-3.571200pt;}
.ls53{letter-spacing:-3.309333pt;}
.ls3f{letter-spacing:-1.632000pt;}
.ls35{letter-spacing:-1.274827pt;}
.ls54{letter-spacing:-1.200000pt;}
.ls3a{letter-spacing:-1.120000pt;}
.ls31{letter-spacing:-1.066667pt;}
.lsc{letter-spacing:-0.952000pt;}
.ls36{letter-spacing:-0.693333pt;}
.ls47{letter-spacing:-0.640000pt;}
.ls29{letter-spacing:-0.533333pt;}
.ls37{letter-spacing:-0.480000pt;}
.ls40{letter-spacing:-0.426667pt;}
.ls46{letter-spacing:-0.373333pt;}
.ls43{letter-spacing:-0.347200pt;}
.ls28{letter-spacing:-0.320000pt;}
.ls4e{letter-spacing:-0.288000pt;}
.ls20{letter-spacing:-0.266667pt;}
.ls44{letter-spacing:-0.248000pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls2c{letter-spacing:-0.148800pt;}
.lsa{letter-spacing:-0.136000pt;}
.ls10{letter-spacing:-0.106667pt;}
.lsf{letter-spacing:-0.053333pt;}
.ls32{letter-spacing:-0.049600pt;}
.ls51{letter-spacing:-0.048000pt;}
.lsb{letter-spacing:-0.045333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.000267pt;}
.ls13{letter-spacing:0.019733pt;}
.ls0{letter-spacing:0.045333pt;}
.ls17{letter-spacing:0.053333pt;}
.ls3c{letter-spacing:0.072533pt;}
.ls2a{letter-spacing:0.074400pt;}
.ls41{letter-spacing:0.093280pt;}
.ls6{letter-spacing:0.106667pt;}
.ls4c{letter-spacing:0.128000pt;}
.ls3b{letter-spacing:0.133333pt;}
.ls45{letter-spacing:0.144000pt;}
.ls3e{letter-spacing:0.148800pt;}
.ls5{letter-spacing:0.160000pt;}
.ls4a{letter-spacing:0.186667pt;}
.ls38{letter-spacing:0.192000pt;}
.ls33{letter-spacing:0.198400pt;}
.ls21{letter-spacing:0.213333pt;}
.ls1{letter-spacing:0.226667pt;}
.ls2d{letter-spacing:0.240000pt;}
.ls3d{letter-spacing:0.248000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.272000pt;}
.ls2f{letter-spacing:0.272800pt;}
.ls50{letter-spacing:0.317333pt;}
.ls16{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.373333pt;}
.ls1a{letter-spacing:0.426667pt;}
.ls18{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:0.506667pt;}
.ls19{letter-spacing:0.533333pt;}
.ls26{letter-spacing:0.586667pt;}
.ls15{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.651200pt;}
.ls1c{letter-spacing:0.693333pt;}
.ls1b{letter-spacing:0.746667pt;}
.ls30{letter-spacing:0.768000pt;}
.ls25{letter-spacing:0.773333pt;}
.ls27{letter-spacing:0.800000pt;}
.ls24{letter-spacing:0.853333pt;}
.lsd{letter-spacing:0.861333pt;}
.ls23{letter-spacing:0.906667pt;}
.ls1f{letter-spacing:0.960000pt;}
.lse{letter-spacing:1.066667pt;}
.ls9{letter-spacing:1.178667pt;}
.ls22{letter-spacing:1.296000pt;}
.ls2b{letter-spacing:1.344000pt;}
.ls34{letter-spacing:1.392000pt;}
.ls39{letter-spacing:1.536000pt;}
.ls55{letter-spacing:1.546667pt;}
.ls4d{letter-spacing:1.632000pt;}
.ls4f{letter-spacing:1.728000pt;}
.ls1e{letter-spacing:1.776000pt;}
.ls4b{letter-spacing:1.824000pt;}
.ls48{letter-spacing:1.968000pt;}
.ls3{letter-spacing:2.040000pt;}
.ls49{letter-spacing:2.112000pt;}
.ls52{letter-spacing:2.448000pt;}
.wsba{word-spacing:-13.488000pt;}
.ws25{word-spacing:-13.152000pt;}
.wscc{word-spacing:-13.104000pt;}
.wsc5{word-spacing:-13.008000pt;}
.ws86{word-spacing:-12.912000pt;}
.ws72{word-spacing:-12.768000pt;}
.ws52{word-spacing:-12.720000pt;}
.wsd3{word-spacing:-12.466667pt;}
.ws3{word-spacing:-12.058667pt;}
.wsc0{word-spacing:-11.733333pt;}
.wsa1{word-spacing:-11.520000pt;}
.ws26{word-spacing:-11.466667pt;}
.wse0{word-spacing:-10.896000pt;}
.ws2{word-spacing:-10.880000pt;}
.ws94{word-spacing:-10.664000pt;}
.wsbf{word-spacing:-10.560000pt;}
.ws87{word-spacing:-10.293333pt;}
.ws0{word-spacing:-10.290667pt;}
.ws6{word-spacing:-10.186667pt;}
.wsd1{word-spacing:-10.080000pt;}
.ws5{word-spacing:-10.026667pt;}
.ws7{word-spacing:-9.973333pt;}
.ws8{word-spacing:-9.866667pt;}
.wsa2{word-spacing:-9.813333pt;}
.ws3c{word-spacing:-9.760000pt;}
.wsdc{word-spacing:-9.746667pt;}
.ws3d{word-spacing:-9.706667pt;}
.wsa3{word-spacing:-9.653333pt;}
.wsae{word-spacing:-9.600000pt;}
.ws4{word-spacing:-9.520000pt;}
.ws3e{word-spacing:-9.493333pt;}
.wsd2{word-spacing:-9.474667pt;}
.wsa4{word-spacing:-9.386667pt;}
.wsd4{word-spacing:-9.066667pt;}
.ws67{word-spacing:-8.960000pt;}
.ws1{word-spacing:-8.522667pt;}
.ws54{word-spacing:-7.912000pt;}
.ws53{word-spacing:-6.529600pt;}
.ws9d{word-spacing:-2.529600pt;}
.ws2b{word-spacing:-1.760000pt;}
.ws1e{word-spacing:-1.706667pt;}
.ws9e{word-spacing:-1.686400pt;}
.ws23{word-spacing:-1.653333pt;}
.ws6a{word-spacing:-1.600000pt;}
.ws64{word-spacing:-1.587200pt;}
.ws8a{word-spacing:-1.546667pt;}
.ws3a{word-spacing:-1.493333pt;}
.ws10{word-spacing:-1.450667pt;}
.wsa8{word-spacing:-1.440000pt;}
.ws9c{word-spacing:-1.438400pt;}
.wsf{word-spacing:-1.405333pt;}
.wsb9{word-spacing:-1.386667pt;}
.ws47{word-spacing:-1.333333pt;}
.ws8f{word-spacing:-1.280000pt;}
.wsd0{word-spacing:-1.226667pt;}
.wsc{word-spacing:-1.178667pt;}
.ws4e{word-spacing:-1.173333pt;}
.ws22{word-spacing:-1.120000pt;}
.ws18{word-spacing:-1.066667pt;}
.ws60{word-spacing:-1.013333pt;}
.ws3f{word-spacing:-0.960000pt;}
.ws6c{word-spacing:-0.906667pt;}
.ws2a{word-spacing:-0.853333pt;}
.ws46{word-spacing:-0.800000pt;}
.wsff{word-spacing:-0.793600pt;}
.ws51{word-spacing:-0.746667pt;}
.ws9a{word-spacing:-0.694400pt;}
.ws58{word-spacing:-0.693333pt;}
.ws9{word-spacing:-0.670933pt;}
.ws28{word-spacing:-0.640000pt;}
.wsc8{word-spacing:-0.634667pt;}
.wse{word-spacing:-0.589333pt;}
.ws6e{word-spacing:-0.586667pt;}
.ws12{word-spacing:-0.544000pt;}
.ws33{word-spacing:-0.533333pt;}
.ws4d{word-spacing:-0.480000pt;}
.ws3b{word-spacing:-0.426667pt;}
.ws81{word-spacing:-0.373333pt;}
.ws59{word-spacing:-0.320000pt;}
.wsdf{word-spacing:-0.272000pt;}
.ws4b{word-spacing:-0.266667pt;}
.ws1a{word-spacing:-0.213333pt;}
.ws71{word-spacing:-0.198400pt;}
.ws17{word-spacing:-0.181333pt;}
.ws90{word-spacing:-0.160000pt;}
.ws21{word-spacing:-0.106667pt;}
.ws85{word-spacing:-0.099200pt;}
.ws98{word-spacing:-0.093280pt;}
.ws91{word-spacing:-0.053333pt;}
.ws7c{word-spacing:-0.049600pt;}
.wsa{word-spacing:-0.039467pt;}
.wsb{word-spacing:0.000000pt;}
.ws11{word-spacing:0.045333pt;}
.ws1f{word-spacing:0.053333pt;}
.ws69{word-spacing:0.106667pt;}
.ws65{word-spacing:0.148800pt;}
.ws50{word-spacing:0.160000pt;}
.wsd8{word-spacing:0.213333pt;}
.ws7d{word-spacing:0.248000pt;}
.wsca{word-spacing:0.320000pt;}
.ws9b{word-spacing:0.347200pt;}
.ws16{word-spacing:0.362667pt;}
.ws96{word-spacing:0.373333pt;}
.ws39{word-spacing:0.426667pt;}
.ws80{word-spacing:0.480000pt;}
.ws24{word-spacing:0.533333pt;}
.wsa0{word-spacing:0.545600pt;}
.wsd9{word-spacing:0.586667pt;}
.ws57{word-spacing:0.640000pt;}
.ws82{word-spacing:0.693333pt;}
.ws4a{word-spacing:0.746667pt;}
.ws7e{word-spacing:0.793600pt;}
.ws1c{word-spacing:0.800000pt;}
.ws84{word-spacing:0.853333pt;}
.ws1b{word-spacing:0.906667pt;}
.ws6d{word-spacing:0.960000pt;}
.ws2f{word-spacing:1.013333pt;}
.wsc4{word-spacing:1.066667pt;}
.ws70{word-spacing:1.091200pt;}
.ws78{word-spacing:1.120000pt;}
.ws74{word-spacing:1.150453pt;}
.wsd7{word-spacing:1.173333pt;}
.ws5f{word-spacing:1.226667pt;}
.ws6b{word-spacing:1.280000pt;}
.ws56{word-spacing:1.333333pt;}
.ws61{word-spacing:1.386667pt;}
.wsd{word-spacing:1.405333pt;}
.ws43{word-spacing:1.440000pt;}
.ws13{word-spacing:1.450667pt;}
.ws4f{word-spacing:1.493333pt;}
.ws4c{word-spacing:1.546667pt;}
.ws66{word-spacing:1.587200pt;}
.ws42{word-spacing:1.600000pt;}
.ws20{word-spacing:1.653333pt;}
.ws14{word-spacing:1.677333pt;}
.ws1d{word-spacing:1.706667pt;}
.ws41{word-spacing:1.760000pt;}
.ws9f{word-spacing:1.785600pt;}
.ws37{word-spacing:1.813333pt;}
.ws19{word-spacing:1.866667pt;}
.ws32{word-spacing:1.920000pt;}
.ws38{word-spacing:1.973333pt;}
.ws5b{word-spacing:2.026667pt;}
.ws15{word-spacing:2.040000pt;}
.ws6f{word-spacing:2.083200pt;}
.wsdb{word-spacing:2.130667pt;}
.ws31{word-spacing:2.133333pt;}
.ws5a{word-spacing:2.186667pt;}
.ws89{word-spacing:2.240000pt;}
.ws75{word-spacing:2.293333pt;}
.ws8b{word-spacing:2.346667pt;}
.ws45{word-spacing:2.400000pt;}
.ws49{word-spacing:2.453333pt;}
.wsda{word-spacing:2.493333pt;}
.ws44{word-spacing:2.506667pt;}
.ws2e{word-spacing:2.560000pt;}
.wsc3{word-spacing:2.613333pt;}
.ws8e{word-spacing:2.666667pt;}
.ws30{word-spacing:2.720000pt;}
.ws77{word-spacing:2.773333pt;}
.ws2d{word-spacing:2.826667pt;}
.wsc9{word-spacing:2.880000pt;}
.ws34{word-spacing:2.933333pt;}
.ws29{word-spacing:2.986667pt;}
.ws99{word-spacing:3.040000pt;}
.ws8d{word-spacing:3.146667pt;}
.wsb8{word-spacing:3.253333pt;}
.wsdd{word-spacing:3.309333pt;}
.ws83{word-spacing:3.360000pt;}
.ws5c{word-spacing:3.413333pt;}
.ws36{word-spacing:3.466667pt;}
.wsac{word-spacing:3.626667pt;}
.ws5d{word-spacing:3.680000pt;}
.ws8c{word-spacing:3.733333pt;}
.ws62{word-spacing:3.786667pt;}
.wsc2{word-spacing:3.840000pt;}
.ws35{word-spacing:3.893333pt;}
.ws76{word-spacing:3.946667pt;}
.wsd6{word-spacing:4.053333pt;}
.ws63{word-spacing:4.106667pt;}
.ws97{word-spacing:4.160000pt;}
.ws48{word-spacing:4.693333pt;}
.wsa7{word-spacing:4.746667pt;}
.ws2c{word-spacing:5.280000pt;}
.wsa6{word-spacing:5.333333pt;}
.ws7a{word-spacing:6.933333pt;}
.ws5e{word-spacing:8.586667pt;}
.wsaa{word-spacing:9.866667pt;}
.ws79{word-spacing:10.026667pt;}
.wsa9{word-spacing:12.960000pt;}
.wsad{word-spacing:13.440000pt;}
.wsab{word-spacing:14.720000pt;}
.ws7b{word-spacing:18.773333pt;}
.wsf3{word-spacing:210.254400pt;}
.wsf6{word-spacing:210.502400pt;}
.wsf0{word-spacing:212.089600pt;}
.wsf2{word-spacing:212.635200pt;}
.wsf1{word-spacing:213.180800pt;}
.wsef{word-spacing:213.329600pt;}
.wsfa{word-spacing:214.073600pt;}
.wsf9{word-spacing:224.985600pt;}
.wsf4{word-spacing:232.276800pt;}
.wsf5{word-spacing:232.822400pt;}
.wsf8{word-spacing:242.940800pt;}
.wse4{word-spacing:251.273600pt;}
.wse7{word-spacing:259.408000pt;}
.wsec{word-spacing:271.312000pt;}
.wsfc{word-spacing:271.659200pt;}
.wsed{word-spacing:274.784000pt;}
.wse5{word-spacing:275.032000pt;}
.wsfd{word-spacing:275.131200pt;}
.wsf7{word-spacing:275.379200pt;}
.wse9{word-spacing:278.504000pt;}
.wsfb{word-spacing:278.851200pt;}
.wse6{word-spacing:284.059200pt;}
.wse8{word-spacing:286.688000pt;}
.wseb{word-spacing:287.779200pt;}
.ws93{word-spacing:310.049600pt;}
.wsea{word-spacing:311.339200pt;}
.ws92{word-spacing:320.267200pt;}
.wse2{word-spacing:390.004800pt;}
.wse3{word-spacing:393.476800pt;}
.wse1{word-spacing:419.616000pt;}
.wscd{word-spacing:512.417600pt;}
.wsce{word-spacing:513.508800pt;}
.wsc6{word-spacing:519.956800pt;}
.wsb6{word-spacing:537.635733pt;}
.wsbb{word-spacing:538.904000pt;}
.wsaf{word-spacing:538.977067pt;}
.wsb0{word-spacing:539.697600pt;}
.wsb4{word-spacing:540.788800pt;}
.wsbc{word-spacing:545.004800pt;}
.wsbd{word-spacing:546.096000pt;}
.wsb5{word-spacing:620.131200pt;}
.wsb3{word-spacing:638.646933pt;}
.wsb1{word-spacing:677.464533pt;}
.wsb2{word-spacing:694.540267pt;}
.wsb7{word-spacing:803.472000pt;}
.wsc1{word-spacing:803.760000pt;}
.wsfe{word-spacing:804.720000pt;}
.ws40{word-spacing:804.864000pt;}
.ws68{word-spacing:805.872000pt;}
.ws7f{word-spacing:807.024000pt;}
.wsd5{word-spacing:807.552000pt;}
.wscb{word-spacing:807.984000pt;}
.wsde{word-spacing:809.808000pt;}
.ws95{word-spacing:810.672000pt;}
.wsbe{word-spacing:1119.312000pt;}
.ws27{word-spacing:1119.648000pt;}
.wscf{word-spacing:1119.696000pt;}
.wsc7{word-spacing:1119.792000pt;}
.ws88{word-spacing:1119.888000pt;}
.ws73{word-spacing:1119.984000pt;}
.ws55{word-spacing:1120.032000pt;}
.wsa5{word-spacing:1121.232000pt;}
.wsee{word-spacing:1121.904000pt;}
._43{margin-left:-1122.581333pt;}
._2d{margin-left:-1120.957600pt;}
._d{margin-left:-1119.477867pt;}
._21{margin-left:-18.541867pt;}
._2f{margin-left:-14.933333pt;}
._2e{margin-left:-13.173333pt;}
._1f{margin-left:-10.240000pt;}
._2{margin-left:-6.419200pt;}
._6{margin-left:-4.977867pt;}
._5{margin-left:-3.635733pt;}
._0{margin-left:-2.568533pt;}
._1{margin-left:-1.280000pt;}
._3{width:1.527733pt;}
._4{width:2.937600pt;}
._e{width:3.855467pt;}
._11{width:5.760000pt;}
._8{width:7.573333pt;}
._a{width:12.426667pt;}
._27{width:14.080000pt;}
._25{width:15.200000pt;}
._26{width:16.960000pt;}
._28{width:18.933333pt;}
._20{width:22.080000pt;}
._17{width:23.089067pt;}
._1c{width:28.934400pt;}
._30{width:31.733333pt;}
._29{width:33.920000pt;}
._f{width:39.409067pt;}
._24{width:41.173333pt;}
._1a{width:43.672267pt;}
._23{width:45.532800pt;}
._22{width:46.425600pt;}
._12{width:52.773867pt;}
._1d{width:63.289600pt;}
._1b{width:65.124800pt;}
._31{width:125.077333pt;}
._b{width:135.306667pt;}
._9{width:141.813333pt;}
._c{width:147.573333pt;}
._57{width:148.617600pt;}
._18{width:171.852000pt;}
._19{width:190.819733pt;}
._4a{width:210.368533pt;}
._55{width:227.614400pt;}
._49{width:231.483200pt;}
._7{width:233.866667pt;}
._61{width:236.740800pt;}
._63{width:242.771733pt;}
._58{width:243.804800pt;}
._62{width:248.942400pt;}
._52{width:251.819200pt;}
._60{width:260.499200pt;}
._4e{width:283.603200pt;}
._44{width:296.806400pt;}
._4b{width:298.542400pt;}
._5a{width:307.824800pt;}
._4d{width:311.170133pt;}
._15{width:312.537600pt;}
._50{width:314.513600pt;}
._4c{width:317.340800pt;}
._2c{width:327.993600pt;}
._16{width:330.296800pt;}
._59{width:332.029600pt;}
._5f{width:333.113600pt;}
._48{width:340.115467pt;}
._2a{width:341.758933pt;}
._45{width:345.280533pt;}
._46{width:347.431200pt;}
._10{width:349.440000pt;}
._47{width:408.594133pt;}
._40{width:414.184000pt;}
._42{width:431.073067pt;}
._41{width:437.730133pt;}
._14{width:438.694667pt;}
._3f{width:445.045867pt;}
._53{width:541.454400pt;}
._34{width:551.592000pt;}
._3e{width:553.972800pt;}
._39{width:561.512000pt;}
._35{width:568.708267pt;}
._38{width:571.362133pt;}
._13{width:572.275200pt;}
._37{width:585.597333pt;}
._36{width:586.977067pt;}
._2b{width:593.791467pt;}
._5c{width:599.019200pt;}
._54{width:605.474400pt;}
._5b{width:611.667200pt;}
._3d{width:641.977067pt;}
._3c{width:649.130133pt;}
._5d{width:658.092800pt;}
._3b{width:670.794667pt;}
._32{width:672.278400pt;}
._3a{width:677.947733pt;}
._56{width:708.576000pt;}
._33{width:721.570133pt;}
._1e{width:737.931733pt;}
._51{width:807.884800pt;}
._5e{width:817.001600pt;}
._4f{width:826.683200pt;}
.fs4{font-size:19.733333pt;}
.fs6{font-size:31.093333pt;}
.fs7{font-size:36.800000pt;}
.fs2{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:49.600000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:80.476800pt;}
.y47{bottom:80.493200pt;}
.y7f{bottom:80.498667pt;}
.y51{bottom:80.504000pt;}
.y25{bottom:81.171600pt;}
.y8c{bottom:81.314133pt;}
.y11c{bottom:81.778267pt;}
.y10b{bottom:84.122267pt;}
.ydb{bottom:84.156267pt;}
.yab{bottom:86.093600pt;}
.y86{bottom:89.975600pt;}
.y11b{bottom:90.210267pt;}
.y4c{bottom:95.815600pt;}
.y46{bottom:95.832000pt;}
.y50{bottom:95.837333pt;}
.y7e{bottom:95.837467pt;}
.y24{bottom:97.571600pt;}
.y10a{bottom:99.456267pt;}
.yda{bottom:99.490267pt;}
.yaa{bottom:101.427600pt;}
.y8b{bottom:103.764133pt;}
.y118{bottom:107.061867pt;}
.y7d{bottom:111.143467pt;}
.y4b{bottom:111.154400pt;}
.y45{bottom:111.170800pt;}
.y85{bottom:112.445333pt;}
.y23{bottom:113.971600pt;}
.y109{bottom:114.790267pt;}
.yd9{bottom:114.824267pt;}
.y11a{bottom:115.493867pt;}
.ya9{bottom:116.761600pt;}
.y8a{bottom:120.628133pt;}
.y119{bottom:123.925867pt;}
.y7c{bottom:126.482267pt;}
.y4a{bottom:126.493200pt;}
.y4f{bottom:126.504133pt;}
.y84{bottom:130.004400pt;}
.y108{bottom:130.124267pt;}
.yd8{bottom:130.158267pt;}
.y22{bottom:130.371600pt;}
.ya8{bottom:132.095600pt;}
.y89{bottom:137.492133pt;}
.y7b{bottom:141.821067pt;}
.y49{bottom:141.832000pt;}
.y4e{bottom:141.837600pt;}
.y107{bottom:145.458267pt;}
.yd7{bottom:145.492267pt;}
.y21{bottom:146.771600pt;}
.ya7{bottom:147.429600pt;}
.y83{bottom:147.563467pt;}
.y117{bottom:149.209467pt;}
.y88{bottom:154.356133pt;}
.y7a{bottom:157.159867pt;}
.y48{bottom:157.170800pt;}
.y116{bottom:157.641467pt;}
.y106{bottom:160.792267pt;}
.yd6{bottom:160.826267pt;}
.ya6{bottom:162.763600pt;}
.y20{bottom:163.171600pt;}
.y82{bottom:165.122533pt;}
.y87{bottom:171.220133pt;}
.y79{bottom:172.498667pt;}
.y113{bottom:174.493067pt;}
.y105{bottom:176.126267pt;}
.yd5{bottom:176.160267pt;}
.ya5{bottom:178.097600pt;}
.y1f{bottom:179.571600pt;}
.y81{bottom:182.681600pt;}
.y115{bottom:182.925067pt;}
.y78{bottom:187.837467pt;}
.y114{bottom:191.357067pt;}
.y104{bottom:191.460267pt;}
.yd4{bottom:191.494267pt;}
.ya4{bottom:193.431600pt;}
.y1e{bottom:195.971600pt;}
.y80{bottom:200.240667pt;}
.y103{bottom:206.794267pt;}
.yd3{bottom:206.828267pt;}
.ya3{bottom:208.765600pt;}
.y1d{bottom:212.371600pt;}
.y112{bottom:216.640667pt;}
.y102{bottom:222.128267pt;}
.yd2{bottom:222.162267pt;}
.y77{bottom:224.439200pt;}
.y1c{bottom:228.771600pt;}
.y101{bottom:237.462267pt;}
.yd1{bottom:237.496267pt;}
.ya2{bottom:239.433600pt;}
.y76{bottom:239.773200pt;}
.y44{bottom:245.171600pt;}
.y111{bottom:245.171733pt;}
.y100{bottom:252.796267pt;}
.yd0{bottom:252.830267pt;}
.y1b{bottom:261.571600pt;}
.y75{bottom:262.141067pt;}
.y71{bottom:262.153467pt;}
.y6d{bottom:262.165867pt;}
.y69{bottom:262.178267pt;}
.yff{bottom:268.130267pt;}
.ycf{bottom:268.164267pt;}
.y74{bottom:276.810267pt;}
.y70{bottom:276.822667pt;}
.y6c{bottom:276.835067pt;}
.y68{bottom:276.847467pt;}
.y1a{bottom:277.971600pt;}
.yfe{bottom:283.464267pt;}
.yce{bottom:283.498267pt;}
.y65{bottom:284.188267pt;}
.ya1{bottom:285.435600pt;}
.y73{bottom:291.479467pt;}
.y6f{bottom:291.491867pt;}
.y6b{bottom:291.504267pt;}
.y67{bottom:291.516667pt;}
.y136{bottom:293.267067pt;}
.y19{bottom:294.371600pt;}
.y110{bottom:296.809467pt;}
.yfd{bottom:298.798267pt;}
.ycd{bottom:298.832267pt;}
.ya0{bottom:300.769600pt;}
.y135{bottom:301.699067pt;}
.y10f{bottom:305.241467pt;}
.y72{bottom:306.148667pt;}
.y6e{bottom:306.161067pt;}
.y6a{bottom:306.173467pt;}
.y66{bottom:306.185867pt;}
.y94{bottom:307.134667pt;}
.y18{bottom:310.771600pt;}
.yfc{bottom:314.132267pt;}
.ycc{bottom:314.166267pt;}
.y9f{bottom:316.103600pt;}
.y132{bottom:318.550667pt;}
.y64{bottom:323.049867pt;}
.y60{bottom:323.062267pt;}
.y5c{bottom:323.074667pt;}
.y58{bottom:323.087067pt;}
.y134{bottom:326.982667pt;}
.y43{bottom:327.171600pt;}
.yfb{bottom:329.466267pt;}
.ycb{bottom:329.500267pt;}
.y93{bottom:329.584667pt;}
.y10e{bottom:330.525067pt;}
.y9e{bottom:331.437600pt;}
.y133{bottom:335.414667pt;}
.y63{bottom:337.719067pt;}
.y5f{bottom:337.731467pt;}
.y5b{bottom:337.743867pt;}
.y57{bottom:337.756267pt;}
.y10d{bottom:338.957067pt;}
.y17{bottom:343.571600pt;}
.yfa{bottom:344.800267pt;}
.yca{bottom:344.834267pt;}
.y54{bottom:345.097067pt;}
.y92{bottom:346.448667pt;}
.y9d{bottom:346.771600pt;}
.y62{bottom:352.388267pt;}
.y5e{bottom:352.400667pt;}
.y5a{bottom:352.413067pt;}
.y56{bottom:352.425467pt;}
.y16{bottom:359.971600pt;}
.yf9{bottom:360.134267pt;}
.yc9{bottom:360.168267pt;}
.y131{bottom:360.698267pt;}
.y91{bottom:363.312667pt;}
.y10c{bottom:364.240667pt;}
.y61{bottom:367.057467pt;}
.y5d{bottom:367.069867pt;}
.y59{bottom:367.082267pt;}
.y55{bottom:367.094667pt;}
.y130{bottom:369.130267pt;}
.yf8{bottom:375.468267pt;}
.yc8{bottom:375.502267pt;}
.y42{bottom:376.371600pt;}
.y90{bottom:380.176667pt;}
.y53{bottom:383.958667pt;}
.y12d{bottom:386.837467pt;}
.yf7{bottom:390.802267pt;}
.yc7{bottom:390.836267pt;}
.y52{bottom:392.390667pt;}
.y15{bottom:392.771600pt;}
.y12f{bottom:394.413867pt;}
.y8f{bottom:397.040667pt;}
.y12e{bottom:403.701467pt;}
.yf6{bottom:406.136267pt;}
.yc6{bottom:406.170267pt;}
.y41{bottom:409.171600pt;}
.yf5{bottom:421.470267pt;}
.yc5{bottom:421.504267pt;}
.y40{bottom:425.571600pt;}
.y12c{bottom:429.840667pt;}
.y14{bottom:430.036400pt;}
.yf4{bottom:436.804267pt;}
.yc4{bottom:436.838267pt;}
.y9b{bottom:437.052800pt;}
.y3f{bottom:441.971600pt;}
.y13{bottom:445.370400pt;}
.yf3{bottom:452.138267pt;}
.yc3{bottom:452.172267pt;}
.y3e{bottom:458.371600pt;}
.y9a{bottom:459.502800pt;}
.yf2{bottom:467.472267pt;}
.yc2{bottom:467.506267pt;}
.y3d{bottom:474.771600pt;}
.y12{bottom:476.038400pt;}
.y99{bottom:476.366800pt;}
.yf1{bottom:482.806267pt;}
.yc1{bottom:482.840267pt;}
.y3c{bottom:491.171600pt;}
.y11{bottom:491.372400pt;}
.y98{bottom:493.230800pt;}
.yf0{bottom:498.140267pt;}
.yc0{bottom:498.174267pt;}
.y12b{bottom:498.864267pt;}
.y3b{bottom:507.571600pt;}
.y97{bottom:510.094800pt;}
.y8d{bottom:510.429067pt;}
.y8e{bottom:511.919867pt;}
.yef{bottom:513.474267pt;}
.ybf{bottom:513.508267pt;}
.y10{bottom:522.040400pt;}
.y3a{bottom:523.971600pt;}
.y12a{bottom:524.445467pt;}
.y96{bottom:526.958800pt;}
.yee{bottom:528.808267pt;}
.ybe{bottom:528.842267pt;}
.yf{bottom:537.374400pt;}
.y39{bottom:540.371600pt;}
.y129{bottom:541.309467pt;}
.yed{bottom:544.142267pt;}
.ybd{bottom:544.176267pt;}
.ye{bottom:552.708400pt;}
.y38{bottom:556.771600pt;}
.y128{bottom:558.173467pt;}
.yec{bottom:559.476267pt;}
.ybc{bottom:559.510267pt;}
.yd{bottom:568.042400pt;}
.y37{bottom:573.171600pt;}
.yeb{bottom:574.810267pt;}
.ybb{bottom:574.844267pt;}
.y127{bottom:575.037467pt;}
.y95{bottom:576.738800pt;}
.y9c{bottom:579.216533pt;}
.yc{bottom:583.376400pt;}
.y36{bottom:589.571600pt;}
.yea{bottom:590.144267pt;}
.yba{bottom:590.178267pt;}
.y126{bottom:591.901467pt;}
.yb{bottom:598.710400pt;}
.ye9{bottom:605.478267pt;}
.yb9{bottom:605.512267pt;}
.y35{bottom:605.971600pt;}
.y125{bottom:606.528667pt;}
.ya{bottom:614.044400pt;}
.ye8{bottom:620.812267pt;}
.yb8{bottom:620.846267pt;}
.y34{bottom:622.371600pt;}
.y124{bottom:623.392667pt;}
.y9{bottom:629.378400pt;}
.ye7{bottom:636.146267pt;}
.yb7{bottom:636.180267pt;}
.y33{bottom:638.771600pt;}
.y123{bottom:640.256667pt;}
.y8{bottom:644.712400pt;}
.ye6{bottom:651.480267pt;}
.yb6{bottom:651.514267pt;}
.y32{bottom:655.171600pt;}
.y122{bottom:657.120667pt;}
.y7{bottom:660.046400pt;}
.ye5{bottom:666.814267pt;}
.yb5{bottom:666.848267pt;}
.y31{bottom:671.571600pt;}
.y121{bottom:673.984667pt;}
.y6{bottom:675.380400pt;}
.ye4{bottom:682.148267pt;}
.yb4{bottom:682.182267pt;}
.y30{bottom:687.971600pt;}
.y5{bottom:690.714400pt;}
.y120{bottom:690.848667pt;}
.ye3{bottom:697.482267pt;}
.yb3{bottom:697.516267pt;}
.y2f{bottom:704.371600pt;}
.y4{bottom:706.042400pt;}
.y11f{bottom:707.712667pt;}
.ye2{bottom:712.816267pt;}
.yb2{bottom:712.850267pt;}
.y2e{bottom:720.771600pt;}
.y11e{bottom:724.576667pt;}
.ye1{bottom:728.150267pt;}
.yb1{bottom:728.184267pt;}
.y3{bottom:728.714400pt;}
.y2d{bottom:737.171600pt;}
.y11d{bottom:741.440667pt;}
.ye0{bottom:743.484267pt;}
.yb0{bottom:743.518267pt;}
.y2c{bottom:753.571600pt;}
.ydf{bottom:758.818267pt;}
.yaf{bottom:758.852267pt;}
.y27{bottom:762.125333pt;}
.y26{bottom:768.790267pt;}
.y2b{bottom:769.971600pt;}
.y2{bottom:774.058400pt;}
.yde{bottom:774.152267pt;}
.yae{bottom:774.186267pt;}
.y2a{bottom:786.371600pt;}
.ydd{bottom:789.486267pt;}
.yad{bottom:789.520267pt;}
.y1{bottom:796.714400pt;}
.y29{bottom:802.771600pt;}
.ydc{bottom:804.820267pt;}
.yac{bottom:804.854267pt;}
.y28{bottom:849.726533pt;}
.h8{height:13.596267pt;}
.h12{height:34.725333pt;}
.hd{height:37.993600pt;}
.h10{height:38.053333pt;}
.h4{height:40.437333pt;}
.h13{height:40.482667pt;}
.he{height:40.618667pt;}
.h5{height:40.800000pt;}
.hb{height:44.441600pt;}
.hf{height:44.550933pt;}
.h15{height:44.599467pt;}
.h9{height:45.216000pt;}
.h6{height:47.573333pt;}
.h11{height:47.786667pt;}
.h7{height:48.000000pt;}
.ha{height:50.240000pt;}
.h3{height:60.288000pt;}
.hc{height:71.721600pt;}
.h16{height:73.755200pt;}
.h2{height:76.117333pt;}
.h14{height:78.169600pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x8{left:22.497867pt;}
.x7{left:25.226000pt;}
.x5{left:64.252000pt;}
.x1{left:71.811067pt;}
.x11{left:75.590533pt;}
.x6{left:83.145333pt;}
.x2{left:90.704400pt;}
.x9{left:109.593867pt;}
.xb{left:143.631733pt;}
.xa{left:179.703333pt;}
.x15{left:189.740000pt;}
.x14{left:206.938800pt;}
.x17{left:222.706667pt;}
.xc{left:247.568533pt;}
.x16{left:292.387200pt;}
.x12{left:314.145867pt;}
.xf{left:321.699600pt;}
.x13{left:325.479200pt;}
.x10{left:333.032933pt;}
.xd{left:351.505333pt;}
.xe{left:455.442133pt;}
.x4{left:578.088400pt;}
.x3{left:580.816533pt;}
}




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