
    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_c2157499e5c7ee9bb200a267.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916504;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_b63d957604101eca6f5d24e3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.990234;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_02062f928d406f08ae162fc5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.056000;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_0b083f9ad6215345abc17b28.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.843750;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_d2650d1d81f34bbab6e5a591.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.713000;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_4e1545476da236a05491a08d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.957000;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_fb8692566da3356ee20962c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.981445;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_065dee6629618f11248f4c88.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_aa0d8745bcdcf4b3f8cadc12.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_6fdd15d023632a7a57e114f5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.898438;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_f69b92b5209518f945947f39.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.970215;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);}
.v0{vertical-align:0.000000px;}
.ls3e{letter-spacing:-1.324800px;}
.ls32{letter-spacing:-0.993600px;}
.ls33{letter-spacing:-0.927360px;}
.ls4a{letter-spacing:-0.861120px;}
.ls4e{letter-spacing:-0.794880px;}
.ls2f{letter-spacing:-0.728640px;}
.ls6{letter-spacing:-0.662400px;}
.ls2b{letter-spacing:-0.633600px;}
.ls2d{letter-spacing:-0.596160px;}
.ls51{letter-spacing:-0.529920px;}
.ls34{letter-spacing:-0.463680px;}
.ls24{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.397440px;}
.ls26{letter-spacing:-0.378000px;}
.ls3f{letter-spacing:-0.337680px;}
.ls29{letter-spacing:-0.324000px;}
.ls35{letter-spacing:-0.316800px;}
.ls16{letter-spacing:-0.298800px;}
.ls46{letter-spacing:-0.289440px;}
.ls23{letter-spacing:-0.270000px;}
.ls2c{letter-spacing:-0.264960px;}
.ls9{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.198720px;}
.ls44{letter-spacing:-0.192960px;}
.ls18{letter-spacing:-0.179280px;}
.ls28{letter-spacing:-0.162000px;}
.ls3d{letter-spacing:-0.144720px;}
.ls15{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.132480px;}
.ls11{letter-spacing:-0.119520px;}
.ls3c{letter-spacing:-0.096480px;}
.ls13{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.066240px;}
.ls10{letter-spacing:-0.059760px;}
.ls27{letter-spacing:-0.054000px;}
.ls3b{letter-spacing:-0.048240px;}
.ls5{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.014400px;}
.ls48{letter-spacing:0.048240px;}
.ls1a{letter-spacing:0.054000px;}
.ls2{letter-spacing:0.059760px;}
.ls2e{letter-spacing:0.063360px;}
.ls7{letter-spacing:0.066240px;}
.lsd{letter-spacing:0.095760px;}
.lsc{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.119520px;}
.lsb{letter-spacing:0.132480px;}
.ls3{letter-spacing:0.179280px;}
.ls12{letter-spacing:0.198720px;}
.ls17{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.239040px;}
.ls45{letter-spacing:0.251712px;}
.ls1f{letter-spacing:0.264960px;}
.ls2a{letter-spacing:0.270000px;}
.ls37{letter-spacing:0.270720px;}
.ls1e{letter-spacing:0.284832px;}
.ls19{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.304704px;}
.ls25{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.331200px;}
.ls36{letter-spacing:0.337680px;}
.ls1b{letter-spacing:0.378000px;}
.ls4d{letter-spacing:0.380160px;}
.ls1c{letter-spacing:0.927360px;}
.ls42{letter-spacing:1.656000px;}
.ls30{letter-spacing:2.384640px;}
.ls31{letter-spacing:3.113280px;}
.ls40{letter-spacing:3.841920px;}
.ls41{letter-spacing:4.570560px;}
.ls20{letter-spacing:5.299200px;}
.ls38{letter-spacing:5.961600px;}
.ls43{letter-spacing:6.690240px;}
.ls22{letter-spacing:8.876160px;}
.ls39{letter-spacing:9.604800px;}
.ls3a{letter-spacing:10.333440px;}
.ls47{letter-spacing:11.062080px;}
.ls50{letter-spacing:14.639040px;}
.ls49{letter-spacing:15.367680px;}
.ls4f{letter-spacing:17.487360px;}
.ls4b{letter-spacing:64.319040px;}
.ls4c{letter-spacing:101.016000px;}
.ls4{letter-spacing:849.070080px;}
.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;}
}
.ws3c{word-spacing:-18.584640px;}
.ws7{word-spacing:-16.493760px;}
.ws0{word-spacing:-16.374240px;}
.wsb6{word-spacing:-15.523200px;}
.ws6a{word-spacing:-15.206400px;}
.wsb7{word-spacing:-15.143040px;}
.wsd{word-spacing:-14.832000px;}
.ws3{word-spacing:-14.639040px;}
.ws4{word-spacing:-14.572800px;}
.ws3d{word-spacing:-14.509440px;}
.ws2{word-spacing:-14.175360px;}
.ws1{word-spacing:-13.910400px;}
.ws69{word-spacing:-13.777920px;}
.ws68{word-spacing:-13.711680px;}
.ws6c{word-spacing:-13.651920px;}
.wsb{word-spacing:-13.645440px;}
.ws6{word-spacing:-13.579200px;}
.ws5{word-spacing:-13.446720px;}
.ws6b{word-spacing:-13.314240px;}
.wsba{word-spacing:-13.248000px;}
.ws3e{word-spacing:-13.181760px;}
.wsa5{word-spacing:-13.169520px;}
.ws81{word-spacing:-13.121280px;}
.wscc{word-spacing:-13.049280px;}
.wsdf{word-spacing:-12.916800px;}
.wsb9{word-spacing:-12.850560px;}
.wsb8{word-spacing:-12.651840px;}
.wsc{word-spacing:-12.370320px;}
.wsa{word-spacing:-12.310560px;}
.ws10{word-spacing:-12.250800px;}
.ws3b{word-spacing:-12.204000px;}
.ws9{word-spacing:-12.131280px;}
.ws8{word-spacing:-12.071520px;}
.wse{word-spacing:-11.952000px;}
.ws37{word-spacing:-11.880000px;}
.wsf{word-spacing:-11.832480px;}
.ws3a{word-spacing:-11.826000px;}
.ws39{word-spacing:-11.610000px;}
.ws38{word-spacing:-11.502000px;}
.ws36{word-spacing:-11.448000px;}
.ws18{word-spacing:-4.752000px;}
.ws95{word-spacing:-3.510720px;}
.ws91{word-spacing:-2.980800px;}
.ws5a{word-spacing:-2.782080px;}
.ws59{word-spacing:-2.517120px;}
.ws66{word-spacing:-2.384640px;}
.ws98{word-spacing:-2.252160px;}
.ws46{word-spacing:-2.053440px;}
.ws47{word-spacing:-1.788480px;}
.ws67{word-spacing:-1.656000px;}
.ws50{word-spacing:-1.324800px;}
.ws97{word-spacing:-1.192320px;}
.ws56{word-spacing:-1.059840px;}
.ws12{word-spacing:-0.957600px;}
.ws4c{word-spacing:-0.927360px;}
.ws5b{word-spacing:-0.823680px;}
.ws6d{word-spacing:-0.794880px;}
.ws80{word-spacing:-0.675360px;}
.wsb1{word-spacing:-0.662400px;}
.ws4f{word-spacing:-0.596160px;}
.ws87{word-spacing:-0.463680px;}
.ws7d{word-spacing:-0.443520px;}
.ws43{word-spacing:-0.432000px;}
.ws60{word-spacing:-0.397440px;}
.ws1b{word-spacing:-0.331200px;}
.ws40{word-spacing:-0.324000px;}
.wsa6{word-spacing:-0.289440px;}
.ws13{word-spacing:-0.264960px;}
.ws41{word-spacing:-0.216000px;}
.ws15{word-spacing:-0.198720px;}
.ws82{word-spacing:-0.192960px;}
.ws1e{word-spacing:-0.179280px;}
.ws20{word-spacing:-0.144000px;}
.ws88{word-spacing:-0.132480px;}
.ws21{word-spacing:-0.119520px;}
.ws19{word-spacing:-0.108000px;}
.ws83{word-spacing:-0.096480px;}
.ws1a{word-spacing:-0.095760px;}
.ws14{word-spacing:-0.066240px;}
.ws2b{word-spacing:-0.059760px;}
.ws96{word-spacing:-0.048240px;}
.ws11{word-spacing:0.000000px;}
.ws9e{word-spacing:0.048240px;}
.ws32{word-spacing:0.059760px;}
.ws9d{word-spacing:0.066240px;}
.ws8f{word-spacing:0.096480px;}
.ws54{word-spacing:0.132480px;}
.ws22{word-spacing:0.144000px;}
.ws1c{word-spacing:0.179280px;}
.ws1f{word-spacing:0.198720px;}
.ws1d{word-spacing:0.239040px;}
.ws55{word-spacing:0.264960px;}
.ws28{word-spacing:0.298800px;}
.ws7f{word-spacing:0.331200px;}
.wsa7{word-spacing:0.337680px;}
.ws4d{word-spacing:0.397440px;}
.ws31{word-spacing:0.418320px;}
.ws17{word-spacing:0.463680px;}
.ws4a{word-spacing:0.529920px;}
.ws16{word-spacing:0.594000px;}
.ws5f{word-spacing:0.596160px;}
.ws3f{word-spacing:0.648000px;}
.ws29{word-spacing:0.657360px;}
.ws42{word-spacing:0.702000px;}
.ws30{word-spacing:0.717120px;}
.ws8e{word-spacing:0.728640px;}
.ws93{word-spacing:0.794880px;}
.wsda{word-spacing:0.861120px;}
.ws35{word-spacing:0.896400px;}
.ws6f{word-spacing:0.927360px;}
.ws61{word-spacing:0.993600px;}
.ws2d{word-spacing:1.015920px;}
.ws78{word-spacing:1.059840px;}
.ws71{word-spacing:1.192320px;}
.ws70{word-spacing:1.324800px;}
.ws48{word-spacing:1.523520px;}
.wsd7{word-spacing:1.722240px;}
.ws44{word-spacing:1.788480px;}
.ws49{word-spacing:1.920960px;}
.ws23{word-spacing:2.031840px;}
.wsbb{word-spacing:2.053440px;}
.ws90{word-spacing:2.252160px;}
.ws51{word-spacing:2.517120px;}
.ws4b{word-spacing:2.649600px;}
.ws25{word-spacing:2.748960px;}
.ws65{word-spacing:2.782080px;}
.ws64{word-spacing:2.980800px;}
.ws2c{word-spacing:3.047760px;}
.ws63{word-spacing:3.245760px;}
.ws45{word-spacing:3.378240px;}
.ws72{word-spacing:3.510720px;}
.wsaf{word-spacing:3.709440px;}
.ws84{word-spacing:3.841920px;}
.wsa0{word-spacing:3.974400px;}
.ws52{word-spacing:4.106880px;}
.wsa3{word-spacing:4.239360px;}
.wsd4{word-spacing:4.305600px;}
.ws4e{word-spacing:4.438080px;}
.wsd3{word-spacing:4.570560px;}
.ws99{word-spacing:4.703040px;}
.ws7e{word-spacing:4.835520px;}
.wsa4{word-spacing:4.968000px;}
.ws7b{word-spacing:5.166720px;}
.ws57{word-spacing:5.431680px;}
.ws58{word-spacing:5.564160px;}
.ws27{word-spacing:5.677200px;}
.wsbc{word-spacing:5.696640px;}
.ws76{word-spacing:5.895360px;}
.ws86{word-spacing:6.160320px;}
.ws85{word-spacing:6.292800px;}
.ws77{word-spacing:6.359040px;}
.wsc6{word-spacing:6.557760px;}
.ws7a{word-spacing:6.822720px;}
.ws92{word-spacing:6.955200px;}
.wsb5{word-spacing:7.286400px;}
.wsc2{word-spacing:7.418880px;}
.ws75{word-spacing:7.551360px;}
.wsbd{word-spacing:7.683840px;}
.wsb4{word-spacing:7.816320px;}
.wsb2{word-spacing:8.015040px;}
.wsb3{word-spacing:8.147520px;}
.wsac{word-spacing:8.213760px;}
.wsa2{word-spacing:8.280000px;}
.ws62{word-spacing:8.412480px;}
.ws5c{word-spacing:8.544960px;}
.ws5d{word-spacing:8.743680px;}
.ws5e{word-spacing:9.008640px;}
.ws79{word-spacing:9.141120px;}
.ws24{word-spacing:9.322560px;}
.wsa1{word-spacing:9.472320px;}
.ws8a{word-spacing:9.737280px;}
.ws9a{word-spacing:9.869760px;}
.ws33{word-spacing:10.039680px;}
.ws34{word-spacing:10.099440px;}
.wsdc{word-spacing:10.200960px;}
.ws2e{word-spacing:10.278720px;}
.wsdd{word-spacing:10.333440px;}
.ws2f{word-spacing:10.338480px;}
.ws8d{word-spacing:10.399680px;}
.ws8b{word-spacing:10.465920px;}
.ws8c{word-spacing:10.598400px;}
.ws26{word-spacing:10.756800px;}
.wsab{word-spacing:10.929600px;}
.wsaa{word-spacing:11.194560px;}
.ws6e{word-spacing:11.327040px;}
.ws2a{word-spacing:11.414160px;}
.wsa8{word-spacing:11.658240px;}
.wse0{word-spacing:11.724480px;}
.ws7c{word-spacing:11.923200px;}
.ws89{word-spacing:12.121920px;}
.ws9b{word-spacing:12.718080px;}
.wsb0{word-spacing:12.850560px;}
.wsa9{word-spacing:14.307840px;}
.wsca{word-spacing:14.771520px;}
.wscb{word-spacing:14.904000px;}
.wsad{word-spacing:15.036480px;}
.wsae{word-spacing:15.632640px;}
.ws53{word-spacing:16.361280px;}
.ws94{word-spacing:16.957440px;}
.ws9f{word-spacing:17.354880px;}
.ws9c{word-spacing:17.752320px;}
.ws74{word-spacing:18.083520px;}
.ws73{word-spacing:18.348480px;}
.wsc7{word-spacing:20.534400px;}
.wsc9{word-spacing:20.998080px;}
.wsc8{word-spacing:21.395520px;}
.wsc4{word-spacing:21.528000px;}
.wsc3{word-spacing:22.124160px;}
.wsde{word-spacing:25.303680px;}
.wsd2{word-spacing:27.489600px;}
.wsd0{word-spacing:28.416960px;}
.wsd1{word-spacing:28.549440px;}
.wsdb{word-spacing:42.857280px;}
.wscd{word-spacing:43.718400px;}
.wsc1{word-spacing:51.932160px;}
.wsc0{word-spacing:53.058240px;}
.wsbf{word-spacing:64.186560px;}
.wsbe{word-spacing:64.584000px;}
.wscf{word-spacing:77.832000px;}
.wsce{word-spacing:78.958080px;}
.wse2{word-spacing:91.543680px;}
.wse1{word-spacing:91.941120px;}
.wsd5{word-spacing:99.757440px;}
.wsc5{word-spacing:101.280960px;}
.wse5{word-spacing:138.375360px;}
.wse3{word-spacing:138.839040px;}
.wse4{word-spacing:139.435200px;}
.wsd6{word-spacing:192.029760px;}
.wsd9{word-spacing:237.006720px;}
.wsd8{word-spacing:237.867840px;}
._c{margin-left:-100.110528px;}
._7{margin-left:-2.226240px;}
._0{margin-left:-1.225728px;}
._1{width:1.803168px;}
._3{width:2.948832px;}
._a{width:4.570560px;}
._9{width:7.418880px;}
._5{width:9.954576px;}
._4{width:10.995840px;}
._d{width:16.597152px;}
._8{width:18.735552px;}
._b{width:78.545952px;}
._f{width:238.000320px;}
._e{width:432.334080px;}
._6{width:1262.401920px;}
._2{width:1320.290496px;}
.fc5{color:rgb(35,130,170);}
.fc3{color:rgb(0,112,192);}
.fc4{color:rgb(35,31,32);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(25,100,125);}
.fs8{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs0{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:0.900000px;}
.y7{bottom:4.680000px;}
.y9{bottom:10.620000px;}
.y93{bottom:13.140000px;}
.y12a{bottom:13.140150px;}
.y91{bottom:13.320000px;}
.y37{bottom:57.960000px;}
.y5{bottom:60.664500px;}
.y8{bottom:63.720000px;}
.ya{bottom:74.340000px;}
.y4{bottom:76.500000px;}
.y38{bottom:77.040000px;}
.y36{bottom:77.940000px;}
.y39{bottom:87.660000px;}
.y35{bottom:94.320000px;}
.y3{bottom:95.220000px;}
.y34{bottom:118.260000px;}
.y90{bottom:142.920000px;}
.yeb{bottom:144.180000px;}
.y199{bottom:147.232800px;}
.ybf{bottom:148.484160px;}
.y1c4{bottom:150.120000px;}
.y67{bottom:151.740000px;}
.y141{bottom:154.620000px;}
.y116{bottom:154.800000px;}
.y16e{bottom:157.312800px;}
.yea{bottom:166.839840px;}
.y198{bottom:169.920000px;}
.y115{bottom:170.640000px;}
.ybe{bottom:171.171360px;}
.y1c3{bottom:172.792800px;}
.y66{bottom:174.420000px;}
.y16d{bottom:180.000000px;}
.y140{bottom:181.620000px;}
.y8f{bottom:186.469200px;}
.ye9{bottom:189.692640px;}
.ybd{bottom:193.858560px;}
.y1c2{bottom:195.480000px;}
.y65{bottom:197.107200px;}
.y114{bottom:197.640000px;}
.y197{bottom:201.600000px;}
.y16c{bottom:202.687920px;}
.y13f{bottom:208.440000px;}
.ye8{bottom:212.379840px;}
.y8e{bottom:218.512800px;}
.y64{bottom:219.960000px;}
.y196{bottom:224.452800px;}
.y113{bottom:224.640000px;}
.y16b{bottom:225.540720px;}
.ybc{bottom:225.720000px;}
.y1c1{bottom:227.332800px;}
.ye7{bottom:235.067040px;}
.y13e{bottom:235.440000px;}
.ybb{bottom:241.560000px;}
.y195{bottom:247.140000px;}
.y16a{bottom:248.227920px;}
.y1c0{bottom:250.020000px;}
.y63{bottom:251.632800px;}
.ye6{bottom:257.919840px;}
.y112{bottom:268.198560px;}
.yba{bottom:268.560000px;}
.y62{bottom:274.320000px;}
.y194{bottom:278.827200px;}
.y13d{bottom:279.178560px;}
.y169{bottom:279.907200px;}
.y1bf{bottom:281.707200px;}
.ye5{bottom:289.599120px;}
.yb9{bottom:295.560000px;}
.y61{bottom:297.172800px;}
.y111{bottom:300.060000px;}
.y193{bottom:301.680000px;}
.y168{bottom:302.760000px;}
.y1be{bottom:304.560000px;}
.y13c{bottom:311.040000px;}
.ye4{bottom:312.451920px;}
.y60{bottom:319.860000px;}
.yb8{bottom:322.380000px;}
.y192{bottom:324.367200px;}
.y110{bottom:333.345600px;}
.y167{bottom:334.432800px;}
.ye3{bottom:335.139120px;}
.y1bd{bottom:336.232800px;}
.y13b{bottom:344.145600px;}
.y191{bottom:347.220000px;}
.yb7{bottom:349.380000px;}
.y5f{bottom:351.540000px;}
.y8d{bottom:354.060000px;}
.y10f{bottom:356.032800px;}
.y166{bottom:357.120000px;}
.ye2{bottom:357.826320px;}
.y1bc{bottom:358.920000px;}
.y13a{bottom:366.998400px;}
.y5e{bottom:374.385600px;}
.y10e{bottom:378.720000px;}
.y190{bottom:378.900000px;}
.y165{bottom:379.966320px;}
.ye1{bottom:380.513520px;}
.y139{bottom:389.685600px;}
.y1bb{bottom:390.780720px;}
.yb6{bottom:393.118560px;}
.y5d{bottom:397.072800px;}
.y8c{bottom:398.340000px;}
.y18f{bottom:401.587200px;}
.y164{bottom:402.653520px;}
.ye0{bottom:403.366320px;}
.y10d{bottom:410.572800px;}
.y138{bottom:412.372800px;}
.y5c{bottom:419.760000px;}
.y8b{bottom:420.990480px;}
.y1ba{bottom:422.460000px;}
.y18e{bottom:424.440000px;}
.yb5{bottom:424.980000px;}
.y163{bottom:425.340720px;}
.y10c{bottom:433.260000px;}
.ydf{bottom:435.045600px;}
.y137{bottom:435.225600px;}
.y8a{bottom:443.677680px;}
.y162{bottom:448.193520px;}
.y5b{bottom:451.620000px;}
.y1b9{bottom:454.320000px;}
.y10b{bottom:455.940720px;}
.y18d{bottom:456.127200px;}
.yde{bottom:457.732800px;}
.y136{bottom:457.912800px;}
.yb4{bottom:458.100000px;}
.y161{bottom:470.880720px;}
.y5a{bottom:474.300000px;}
.y89{bottom:475.539120px;}
.y1b8{bottom:476.992800px;}
.y10a{bottom:478.793520px;}
.y18c{bottom:478.980000px;}
.ydd{bottom:480.585600px;}
.y135{bottom:480.600000px;}
.yb3{bottom:480.787200px;}
.y88{bottom:498.226320px;}
.y1b7{bottom:499.680000px;}
.y109{bottom:501.480720px;}
.y160{bottom:502.560000px;}
.ydc{bottom:503.272800px;}
.yb2{bottom:503.640000px;}
.y30{bottom:507.056940px;}
.y59{bottom:508.500000px;}
.y18b{bottom:510.652800px;}
.y134{bottom:512.452800px;}
.y87{bottom:520.913520px;}
.y108{bottom:524.167920px;}
.y15f{bottom:525.412800px;}
.ydb{bottom:525.960000px;}
.yb1{bottom:526.327200px;}
.y1b6{bottom:531.540000px;}
.y2f{bottom:532.433520px;}
.y18a{bottom:533.340000px;}
.y133{bottom:535.140000px;}
.y86{bottom:543.766320px;}
.y107{bottom:547.020720px;}
.y15e{bottom:548.100000px;}
.yb0{bottom:549.180000px;}
.y58{bottom:552.719520px;}
.y1b5{bottom:554.220000px;}
.y2e{bottom:554.933160px;}
.yda{bottom:557.805600px;}
.y132{bottom:557.820720px;}
.y189{bottom:565.192800px;}
.y85{bottom:566.453520px;}
.y15d{bottom:570.787200px;}
.y57{bottom:575.406720px;}
.y2d{bottom:575.640000px;}
.y1b4{bottom:576.907200px;}
.y106{bottom:578.700000px;}
.yd9{bottom:580.492800px;}
.y131{bottom:580.507920px;}
.yaf{bottom:580.860000px;}
.y188{bottom:587.880000px;}
.y15c{bottom:593.640000px;}
.y105{bottom:594.540000px;}
.y56{bottom:598.093920px;}
.y84{bottom:598.132800px;}
.y2c{bottom:598.320000px;}
.y1b3{bottom:599.760000px;}
.yd8{bottom:603.180000px;}
.y130{bottom:603.360720px;}
.yae{bottom:603.547200px;}
.y2b{bottom:618.833160px;}
.y187{bottom:619.725600px;}
.y55{bottom:620.946720px;}
.y83{bottom:620.985600px;}
.y104{bottom:621.540000px;}
.y15b{bottom:625.312800px;}
.yd7{bottom:626.040000px;}
.yad{bottom:626.400000px;}
.y1b2{bottom:631.447200px;}
.y12f{bottom:635.040000px;}
.y2a{bottom:639.540000px;}
.y186{bottom:642.412800px;}
.y54{bottom:643.633920px;}
.y82{bottom:643.672800px;}
.y15a{bottom:648.000000px;}
.y103{bottom:648.540000px;}
.yac{bottom:649.080720px;}
.y12e{bottom:650.880000px;}
.y1b1{bottom:654.300000px;}
.yd6{bottom:657.712800px;}
.y185{bottom:665.100000px;}
.y53{bottom:666.321120px;}
.y81{bottom:666.360000px;}
.y159{bottom:670.844160px;}
.yab{bottom:671.767920px;}
.y12d{bottom:677.880000px;}
.yd5{bottom:680.400000px;}
.y29{bottom:685.800000px;}
.y1b0{bottom:685.980000px;}
.y52{bottom:689.173920px;}
.y102{bottom:692.082000px;}
.y158{bottom:693.531360px;}
.yaa{bottom:694.620720px;}
.y184{bottom:696.944160px;}
.y80{bottom:698.205600px;}
.yd4{bottom:703.244310px;}
.y23{bottom:703.607190px;}
.y12c{bottom:704.880000px;}
.y1af{bottom:708.660000px;}
.y51{bottom:711.861120px;}
.y157{bottom:716.218560px;}
.y28{bottom:718.378200px;}
.y183{bottom:719.631360px;}
.y7f{bottom:720.892800px;}
.y101{bottom:723.943440px;}
.yd3{bottom:725.931510px;}
.ya9{bottom:726.300000px;}
.y1ae{bottom:731.340000px;}
.y12b{bottom:731.880000px;}
.y22{bottom:732.411510px;}
.y50{bottom:734.548320px;}
.y27{bottom:740.340000px;}
.ya8{bottom:742.140000px;}
.y182{bottom:742.318560px;}
.y7e{bottom:743.580000px;}
.y156{bottom:748.080000px;}
.yd2{bottom:748.618710px;}
.y1ad{bottom:754.192800px;}
.y100{bottom:757.245600px;}
.y129{bottom:758.880000px;}
.y21{bottom:761.215830px;}
.y26{bottom:762.481080px;}
.y155{bottom:763.920000px;}
.y4f{bottom:766.409760px;}
.y7d{bottom:766.432800px;}
.ya7{bottom:769.140000px;}
.yd1{bottom:771.471510px;}
.y181{bottom:774.180000px;}
.y1ac{bottom:776.880000px;}
.yff{bottom:779.932800px;}
.y25{bottom:784.442880px;}
.y4e{bottom:789.096960px;}
.y7c{bottom:789.120000px;}
.y20{bottom:790.020150px;}
.y154{bottom:790.920000px;}
.yd0{bottom:794.158710px;}
.ya6{bottom:796.140000px;}
.y128{bottom:802.429200px;}
.yfe{bottom:802.620000px;}
.y24{bottom:806.404680px;}
.y180{bottom:808.380000px;}
.y1ab{bottom:808.725600px;}
.y4d{bottom:811.784160px;}
.y153{bottom:817.740000px;}
.ya5{bottom:823.140000px;}
.y7b{bottom:823.320000px;}
.ycf{bottom:826.020150px;}
.y1f{bottom:829.980000px;}
.y1aa{bottom:831.412800px;}
.y127{bottom:834.290640px;}
.yfd{bottom:834.480000px;}
.yce{bottom:841.860000px;}
.y4c{bottom:843.645600px;}
.y152{bottom:844.740000px;}
.y1d0{bottom:845.098560px;}
.ya4{bottom:850.140000px;}
.y17f{bottom:852.617520px;}
.y1a9{bottom:854.100000px;}
.yfc{bottom:857.152800px;}
.y1e{bottom:863.999640px;}
.y4b{bottom:866.332800px;}
.y7a{bottom:867.585600px;}
.y126{bottom:867.592800px;}
.ycd{bottom:868.860000px;}
.y17e{bottom:875.304720px;}
.y1cf{bottom:876.960000px;}
.yfb{bottom:879.840000px;}
.y1a8{bottom:885.952800px;}
.y151{bottom:888.478560px;}
.y4a{bottom:889.020000px;}
.y79{bottom:890.272800px;}
.y125{bottom:890.280000px;}
.ya3{bottom:893.698560px;}
.y1d{bottom:894.955320px;}
.ycc{bottom:895.860000px;}
.y17d{bottom:897.991920px;}
.yfa{bottom:902.692800px;}
.y1ce{bottom:908.632800px;}
.y1a7{bottom:908.640000px;}
.y49{bottom:911.872800px;}
.y78{bottom:912.960000px;}
.y1c{bottom:917.096400px;}
.y150{bottom:920.340000px;}
.y17c{bottom:920.844720px;}
.y124{bottom:921.960000px;}
.ycb{bottom:922.680000px;}
.y16{bottom:924.466320px;}
.yf9{bottom:925.380000px;}
.ya2{bottom:925.560000px;}
.y1cd{bottom:931.320000px;}
.y48{bottom:934.560000px;}
.y77{bottom:935.812800px;}
.y1b{bottom:939.058200px;}
.y1a6{bottom:940.327200px;}
.y17b{bottom:943.531920px;}
.y123{bottom:944.812800px;}
.yca{bottom:949.680000px;}
.y15{bottom:953.091360px;}
.y14f{bottom:953.467200px;}
.yf8{bottom:957.067200px;}
.y76{bottom:958.500000px;}
.ya1{bottom:958.680000px;}
.y1a{bottom:961.020000px;}
.y1a5{bottom:963.180000px;}
.y17a{bottom:966.219120px;}
.y47{bottom:966.240000px;}
.y122{bottom:967.500000px;}
.y14e{bottom:976.320000px;}
.yf7{bottom:979.920000px;}
.ya0{bottom:981.532800px;}
.y14{bottom:981.895680px;}
.y19{bottom:983.161080px;}
.y1cc{bottom:985.867200px;}
.y179{bottom:989.071920px;}
.y46{bottom:989.092800px;}
.y121{bottom:990.164160px;}
.y75{bottom:990.180000px;}
.yc9{bottom:993.418560px;}
.y1a4{bottom:994.860000px;}
.y14d{bottom:999.000000px;}
.yf6{bottom:1002.592800px;}
.y9f{bottom:1004.220000px;}
.y18{bottom:1005.122880px;}
.y1cb{bottom:1008.720000px;}
.y13{bottom:1010.700000px;}
.y178{bottom:1011.759120px;}
.y45{bottom:1011.780000px;}
.y74{bottom:1013.040000px;}
.y1a3{bottom:1017.547200px;}
.y14c{bottom:1021.687200px;}
.y120{bottom:1022.025600px;}
.yc8{bottom:1025.280000px;}
.y9e{bottom:1027.072800px;}
.y17{bottom:1027.084680px;}
.y44{bottom:1034.453520px;}
.y73{bottom:1035.712800px;}
.y1ca{bottom:1040.392800px;}
.y1a2{bottom:1040.400000px;}
.y177{bottom:1043.438400px;}
.y14b{bottom:1044.540000px;}
.y11f{bottom:1044.712800px;}
.y9d{bottom:1049.760000px;}
.y12{bottom:1050.660000px;}
.yf5{bottom:1057.133520px;}
.y43{bottom:1057.306320px;}
.yc7{bottom:1058.392800px;}
.y72{bottom:1058.400000px;}
.y1c9{bottom:1063.080000px;}
.y176{bottom:1066.291200px;}
.y11e{bottom:1067.400000px;}
.y1a1{bottom:1072.080000px;}
.y9c{bottom:1072.440720px;}
.y14a{bottom:1076.212800px;}
.yf4{bottom:1079.820720px;}
.yc6{bottom:1081.080000px;}
.y71{bottom:1081.252800px;}
.y11{bottom:1083.960000px;}
.y175{bottom:1088.978400px;}
.y42{bottom:1088.985600px;}
.y11d{bottom:1090.252800px;}
.y1a0{bottom:1094.932800px;}
.y9b{bottom:1095.293520px;}
.y149{bottom:1098.900000px;}
.yf3{bottom:1102.507920px;}
.yc5{bottom:1103.932800px;}
.y70{bottom:1103.940000px;}
.y174{bottom:1111.665600px;}
.y41{bottom:1111.672800px;}
.y11c{bottom:1112.940000px;}
.y10{bottom:1113.302340px;}
.y19f{bottom:1117.620000px;}
.y9a{bottom:1117.980720px;}
.y148{bottom:1121.752800px;}
.yf2{bottom:1125.360720px;}
.yc4{bottom:1126.620000px;}
.yf{bottom:1132.560000px;}
.y173{bottom:1134.352800px;}
.y40{bottom:1134.360000px;}
.y6f{bottom:1135.627200px;}
.y99{bottom:1140.667920px;}
.y147{bottom:1144.440000px;}
.y11b{bottom:1144.627200px;}
.y1c8{bottom:1149.300000px;}
.y19e{bottom:1149.307200px;}
.ye{bottom:1150.920000px;}
.yf1{bottom:1157.040000px;}
.y172{bottom:1157.205600px;}
.yc3{bottom:1158.307200px;}
.y6e{bottom:1158.480000px;}
.y98{bottom:1163.520720px;}
.y3f{bottom:1166.220000px;}
.y11a{bottom:1167.480000px;}
.y1c7{bottom:1172.152800px;}
.y19d{bottom:1172.160000px;}
.yf0{bottom:1172.880000px;}
.y146{bottom:1176.120000px;}
.y171{bottom:1179.892800px;}
.y6d{bottom:1181.160000px;}
.y3e{bottom:1188.892800px;}
.y119{bottom:1190.152800px;}
.y1c6{bottom:1194.840000px;}
.y97{bottom:1195.200000px;}
.yd{bottom:1195.560000px;}
.y145{bottom:1198.966320px;}
.yef{bottom:1199.880000px;}
.y170{bottom:1202.580000px;}
.y19c{bottom:1203.840000px;}
.y6c{bottom:1203.847200px;}
.yc2{bottom:1203.847920px;}
.y96{bottom:1211.040000px;}
.y3d{bottom:1211.580000px;}
.y118{bottom:1212.840000px;}
.y144{bottom:1221.653520px;}
.y19b{bottom:1226.527200px;}
.yc1{bottom:1226.535120px;}
.y6b{bottom:1226.700000px;}
.yee{bottom:1226.880000px;}
.y3c{bottom:1234.432800px;}
.y117{bottom:1235.692800px;}
.y16f{bottom:1236.960000px;}
.y95{bottom:1238.040000px;}
.yc{bottom:1238.940000px;}
.y143{bottom:1244.340720px;}
.y19a{bottom:1249.380000px;}
.yc0{bottom:1249.387920px;}
.y3b{bottom:1257.120000px;}
.y6a{bottom:1258.380000px;}
.y31{bottom:1261.440000px;}
.y94{bottom:1265.040000px;}
.yed{bottom:1270.436400px;}
.y142{bottom:1276.020000px;}
.yb{bottom:1276.200000px;}
.y1c5{bottom:1281.060000px;}
.y69{bottom:1281.067200px;}
.y3a{bottom:1291.500000px;}
.y92{bottom:1292.040000px;}
.yec{bottom:1302.480000px;}
.y68{bottom:1303.920000px;}
.y6{bottom:1304.100000px;}
.y2{bottom:1306.980000px;}
.y1{bottom:1328.040000px;}
.y33{bottom:1335.780000px;}
.h6{height:19.800000px;}
.h1d{height:26.100000px;}
.h1f{height:26.101500px;}
.h1b{height:26.278500px;}
.h20{height:26.280000px;}
.h13{height:34.918500px;}
.h7{height:34.920000px;}
.h1c{height:35.708906px;}
.h1e{height:36.415547px;}
.h5{height:38.206055px;}
.h12{height:39.240000px;}
.he{height:42.429600px;}
.h4{height:43.524000px;}
.h19{height:46.368000px;}
.h2{height:46.639687px;}
.h1a{height:47.030400px;}
.h9{height:48.166560px;}
.h11{height:48.192480px;}
.hd{height:48.742031px;}
.h10{height:51.120000px;}
.h3{height:53.389440px;}
.h16{height:53.415360px;}
.h15{height:53.418240px;}
.h24{height:53.444160px;}
.h17{height:53.447040px;}
.h22{height:53.452200px;}
.h21{height:53.452800px;}
.h23{height:53.470080px;}
.h18{height:53.507520px;}
.hf{height:58.032000px;}
.h8{height:67.032000px;}
.h1{height:67.424766px;}
.hc{height:67.989600px;}
.h14{height:68.343750px;}
.ha{height:76.680000px;}
.hb{height:87.048000px;}
.h0{height:1404.000000px;}
.w2{width:48.418500px;}
.w3{width:130.680000px;}
.w1{width:142.918500px;}
.w9{width:180.360000px;}
.w7{width:180.720000px;}
.w5{width:191.518500px;}
.w4{width:382.320000px;}
.w8{width:393.478500px;}
.w6{width:403.560000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:8.100000px;}
.x6{left:10.800000px;}
.x1b{left:50.040000px;}
.x15{left:55.080000px;}
.x19{left:56.340000px;}
.x16{left:61.560000px;}
.x1a{left:62.820000px;}
.x1d{left:68.040000px;}
.x2{left:84.960000px;}
.x1{left:102.960000px;}
.xf{left:106.020000px;}
.xd{left:118.800000px;}
.x9{left:127.440000px;}
.xa{left:138.585240px;}
.x17{left:166.860000px;}
.x12{left:172.080000px;}
.xb{left:263.520000px;}
.x11{left:314.640000px;}
.x3{left:525.240000px;}
.x14{left:554.400000px;}
.x1c{left:565.560000px;}
.x18{left:570.420000px;}
.xc{left:715.320000px;}
.x5{left:719.100000px;}
.x10{left:741.240000px;}
.x4{left:828.720000px;}
.xe{left:832.860000px;}
.x7{left:842.760000px;}
.x8{left:853.920000px;}
.x1e{left:865.080000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3e{letter-spacing:-1.177600pt;}
.ls32{letter-spacing:-0.883200pt;}
.ls33{letter-spacing:-0.824320pt;}
.ls4a{letter-spacing:-0.765440pt;}
.ls4e{letter-spacing:-0.706560pt;}
.ls2f{letter-spacing:-0.647680pt;}
.ls6{letter-spacing:-0.588800pt;}
.ls2b{letter-spacing:-0.563200pt;}
.ls2d{letter-spacing:-0.529920pt;}
.ls51{letter-spacing:-0.471040pt;}
.ls34{letter-spacing:-0.412160pt;}
.ls24{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.353280pt;}
.ls26{letter-spacing:-0.336000pt;}
.ls3f{letter-spacing:-0.300160pt;}
.ls29{letter-spacing:-0.288000pt;}
.ls35{letter-spacing:-0.281600pt;}
.ls16{letter-spacing:-0.265600pt;}
.ls46{letter-spacing:-0.257280pt;}
.ls23{letter-spacing:-0.240000pt;}
.ls2c{letter-spacing:-0.235520pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.176640pt;}
.ls44{letter-spacing:-0.171520pt;}
.ls18{letter-spacing:-0.159360pt;}
.ls28{letter-spacing:-0.144000pt;}
.ls3d{letter-spacing:-0.128640pt;}
.ls15{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.117760pt;}
.ls11{letter-spacing:-0.106240pt;}
.ls3c{letter-spacing:-0.085760pt;}
.ls13{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.058880pt;}
.ls10{letter-spacing:-0.053120pt;}
.ls27{letter-spacing:-0.048000pt;}
.ls3b{letter-spacing:-0.042880pt;}
.ls5{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.012800pt;}
.ls48{letter-spacing:0.042880pt;}
.ls1a{letter-spacing:0.048000pt;}
.ls2{letter-spacing:0.053120pt;}
.ls2e{letter-spacing:0.056320pt;}
.ls7{letter-spacing:0.058880pt;}
.lsd{letter-spacing:0.085120pt;}
.lsc{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.106240pt;}
.lsb{letter-spacing:0.117760pt;}
.ls3{letter-spacing:0.159360pt;}
.ls12{letter-spacing:0.176640pt;}
.ls17{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.212480pt;}
.ls45{letter-spacing:0.223744pt;}
.ls1f{letter-spacing:0.235520pt;}
.ls2a{letter-spacing:0.240000pt;}
.ls37{letter-spacing:0.240640pt;}
.ls1e{letter-spacing:0.253184pt;}
.ls19{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.270848pt;}
.ls25{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.294400pt;}
.ls36{letter-spacing:0.300160pt;}
.ls1b{letter-spacing:0.336000pt;}
.ls4d{letter-spacing:0.337920pt;}
.ls1c{letter-spacing:0.824320pt;}
.ls42{letter-spacing:1.472000pt;}
.ls30{letter-spacing:2.119680pt;}
.ls31{letter-spacing:2.767360pt;}
.ls40{letter-spacing:3.415040pt;}
.ls41{letter-spacing:4.062720pt;}
.ls20{letter-spacing:4.710400pt;}
.ls38{letter-spacing:5.299200pt;}
.ls43{letter-spacing:5.946880pt;}
.ls22{letter-spacing:7.889920pt;}
.ls39{letter-spacing:8.537600pt;}
.ls3a{letter-spacing:9.185280pt;}
.ls47{letter-spacing:9.832960pt;}
.ls50{letter-spacing:13.012480pt;}
.ls49{letter-spacing:13.660160pt;}
.ls4f{letter-spacing:15.544320pt;}
.ls4b{letter-spacing:57.172480pt;}
.ls4c{letter-spacing:89.792000pt;}
.ls4{letter-spacing:754.728960pt;}
.ws3c{word-spacing:-16.519680pt;}
.ws7{word-spacing:-14.661120pt;}
.ws0{word-spacing:-14.554880pt;}
.wsb6{word-spacing:-13.798400pt;}
.ws6a{word-spacing:-13.516800pt;}
.wsb7{word-spacing:-13.460480pt;}
.wsd{word-spacing:-13.184000pt;}
.ws3{word-spacing:-13.012480pt;}
.ws4{word-spacing:-12.953600pt;}
.ws3d{word-spacing:-12.897280pt;}
.ws2{word-spacing:-12.600320pt;}
.ws1{word-spacing:-12.364800pt;}
.ws69{word-spacing:-12.247040pt;}
.ws68{word-spacing:-12.188160pt;}
.ws6c{word-spacing:-12.135040pt;}
.wsb{word-spacing:-12.129280pt;}
.ws6{word-spacing:-12.070400pt;}
.ws5{word-spacing:-11.952640pt;}
.ws6b{word-spacing:-11.834880pt;}
.wsba{word-spacing:-11.776000pt;}
.ws3e{word-spacing:-11.717120pt;}
.wsa5{word-spacing:-11.706240pt;}
.ws81{word-spacing:-11.663360pt;}
.wscc{word-spacing:-11.599360pt;}
.wsdf{word-spacing:-11.481600pt;}
.wsb9{word-spacing:-11.422720pt;}
.wsb8{word-spacing:-11.246080pt;}
.wsc{word-spacing:-10.995840pt;}
.wsa{word-spacing:-10.942720pt;}
.ws10{word-spacing:-10.889600pt;}
.ws3b{word-spacing:-10.848000pt;}
.ws9{word-spacing:-10.783360pt;}
.ws8{word-spacing:-10.730240pt;}
.wse{word-spacing:-10.624000pt;}
.ws37{word-spacing:-10.560000pt;}
.wsf{word-spacing:-10.517760pt;}
.ws3a{word-spacing:-10.512000pt;}
.ws39{word-spacing:-10.320000pt;}
.ws38{word-spacing:-10.224000pt;}
.ws36{word-spacing:-10.176000pt;}
.ws18{word-spacing:-4.224000pt;}
.ws95{word-spacing:-3.120640pt;}
.ws91{word-spacing:-2.649600pt;}
.ws5a{word-spacing:-2.472960pt;}
.ws59{word-spacing:-2.237440pt;}
.ws66{word-spacing:-2.119680pt;}
.ws98{word-spacing:-2.001920pt;}
.ws46{word-spacing:-1.825280pt;}
.ws47{word-spacing:-1.589760pt;}
.ws67{word-spacing:-1.472000pt;}
.ws50{word-spacing:-1.177600pt;}
.ws97{word-spacing:-1.059840pt;}
.ws56{word-spacing:-0.942080pt;}
.ws12{word-spacing:-0.851200pt;}
.ws4c{word-spacing:-0.824320pt;}
.ws5b{word-spacing:-0.732160pt;}
.ws6d{word-spacing:-0.706560pt;}
.ws80{word-spacing:-0.600320pt;}
.wsb1{word-spacing:-0.588800pt;}
.ws4f{word-spacing:-0.529920pt;}
.ws87{word-spacing:-0.412160pt;}
.ws7d{word-spacing:-0.394240pt;}
.ws43{word-spacing:-0.384000pt;}
.ws60{word-spacing:-0.353280pt;}
.ws1b{word-spacing:-0.294400pt;}
.ws40{word-spacing:-0.288000pt;}
.wsa6{word-spacing:-0.257280pt;}
.ws13{word-spacing:-0.235520pt;}
.ws41{word-spacing:-0.192000pt;}
.ws15{word-spacing:-0.176640pt;}
.ws82{word-spacing:-0.171520pt;}
.ws1e{word-spacing:-0.159360pt;}
.ws20{word-spacing:-0.128000pt;}
.ws88{word-spacing:-0.117760pt;}
.ws21{word-spacing:-0.106240pt;}
.ws19{word-spacing:-0.096000pt;}
.ws83{word-spacing:-0.085760pt;}
.ws1a{word-spacing:-0.085120pt;}
.ws14{word-spacing:-0.058880pt;}
.ws2b{word-spacing:-0.053120pt;}
.ws96{word-spacing:-0.042880pt;}
.ws11{word-spacing:0.000000pt;}
.ws9e{word-spacing:0.042880pt;}
.ws32{word-spacing:0.053120pt;}
.ws9d{word-spacing:0.058880pt;}
.ws8f{word-spacing:0.085760pt;}
.ws54{word-spacing:0.117760pt;}
.ws22{word-spacing:0.128000pt;}
.ws1c{word-spacing:0.159360pt;}
.ws1f{word-spacing:0.176640pt;}
.ws1d{word-spacing:0.212480pt;}
.ws55{word-spacing:0.235520pt;}
.ws28{word-spacing:0.265600pt;}
.ws7f{word-spacing:0.294400pt;}
.wsa7{word-spacing:0.300160pt;}
.ws4d{word-spacing:0.353280pt;}
.ws31{word-spacing:0.371840pt;}
.ws17{word-spacing:0.412160pt;}
.ws4a{word-spacing:0.471040pt;}
.ws16{word-spacing:0.528000pt;}
.ws5f{word-spacing:0.529920pt;}
.ws3f{word-spacing:0.576000pt;}
.ws29{word-spacing:0.584320pt;}
.ws42{word-spacing:0.624000pt;}
.ws30{word-spacing:0.637440pt;}
.ws8e{word-spacing:0.647680pt;}
.ws93{word-spacing:0.706560pt;}
.wsda{word-spacing:0.765440pt;}
.ws35{word-spacing:0.796800pt;}
.ws6f{word-spacing:0.824320pt;}
.ws61{word-spacing:0.883200pt;}
.ws2d{word-spacing:0.903040pt;}
.ws78{word-spacing:0.942080pt;}
.ws71{word-spacing:1.059840pt;}
.ws70{word-spacing:1.177600pt;}
.ws48{word-spacing:1.354240pt;}
.wsd7{word-spacing:1.530880pt;}
.ws44{word-spacing:1.589760pt;}
.ws49{word-spacing:1.707520pt;}
.ws23{word-spacing:1.806080pt;}
.wsbb{word-spacing:1.825280pt;}
.ws90{word-spacing:2.001920pt;}
.ws51{word-spacing:2.237440pt;}
.ws4b{word-spacing:2.355200pt;}
.ws25{word-spacing:2.443520pt;}
.ws65{word-spacing:2.472960pt;}
.ws64{word-spacing:2.649600pt;}
.ws2c{word-spacing:2.709120pt;}
.ws63{word-spacing:2.885120pt;}
.ws45{word-spacing:3.002880pt;}
.ws72{word-spacing:3.120640pt;}
.wsaf{word-spacing:3.297280pt;}
.ws84{word-spacing:3.415040pt;}
.wsa0{word-spacing:3.532800pt;}
.ws52{word-spacing:3.650560pt;}
.wsa3{word-spacing:3.768320pt;}
.wsd4{word-spacing:3.827200pt;}
.ws4e{word-spacing:3.944960pt;}
.wsd3{word-spacing:4.062720pt;}
.ws99{word-spacing:4.180480pt;}
.ws7e{word-spacing:4.298240pt;}
.wsa4{word-spacing:4.416000pt;}
.ws7b{word-spacing:4.592640pt;}
.ws57{word-spacing:4.828160pt;}
.ws58{word-spacing:4.945920pt;}
.ws27{word-spacing:5.046400pt;}
.wsbc{word-spacing:5.063680pt;}
.ws76{word-spacing:5.240320pt;}
.ws86{word-spacing:5.475840pt;}
.ws85{word-spacing:5.593600pt;}
.ws77{word-spacing:5.652480pt;}
.wsc6{word-spacing:5.829120pt;}
.ws7a{word-spacing:6.064640pt;}
.ws92{word-spacing:6.182400pt;}
.wsb5{word-spacing:6.476800pt;}
.wsc2{word-spacing:6.594560pt;}
.ws75{word-spacing:6.712320pt;}
.wsbd{word-spacing:6.830080pt;}
.wsb4{word-spacing:6.947840pt;}
.wsb2{word-spacing:7.124480pt;}
.wsb3{word-spacing:7.242240pt;}
.wsac{word-spacing:7.301120pt;}
.wsa2{word-spacing:7.360000pt;}
.ws62{word-spacing:7.477760pt;}
.ws5c{word-spacing:7.595520pt;}
.ws5d{word-spacing:7.772160pt;}
.ws5e{word-spacing:8.007680pt;}
.ws79{word-spacing:8.125440pt;}
.ws24{word-spacing:8.286720pt;}
.wsa1{word-spacing:8.419840pt;}
.ws8a{word-spacing:8.655360pt;}
.ws9a{word-spacing:8.773120pt;}
.ws33{word-spacing:8.924160pt;}
.ws34{word-spacing:8.977280pt;}
.wsdc{word-spacing:9.067520pt;}
.ws2e{word-spacing:9.136640pt;}
.wsdd{word-spacing:9.185280pt;}
.ws2f{word-spacing:9.189760pt;}
.ws8d{word-spacing:9.244160pt;}
.ws8b{word-spacing:9.303040pt;}
.ws8c{word-spacing:9.420800pt;}
.ws26{word-spacing:9.561600pt;}
.wsab{word-spacing:9.715200pt;}
.wsaa{word-spacing:9.950720pt;}
.ws6e{word-spacing:10.068480pt;}
.ws2a{word-spacing:10.145920pt;}
.wsa8{word-spacing:10.362880pt;}
.wse0{word-spacing:10.421760pt;}
.ws7c{word-spacing:10.598400pt;}
.ws89{word-spacing:10.775040pt;}
.ws9b{word-spacing:11.304960pt;}
.wsb0{word-spacing:11.422720pt;}
.wsa9{word-spacing:12.718080pt;}
.wsca{word-spacing:13.130240pt;}
.wscb{word-spacing:13.248000pt;}
.wsad{word-spacing:13.365760pt;}
.wsae{word-spacing:13.895680pt;}
.ws53{word-spacing:14.543360pt;}
.ws94{word-spacing:15.073280pt;}
.ws9f{word-spacing:15.426560pt;}
.ws9c{word-spacing:15.779840pt;}
.ws74{word-spacing:16.074240pt;}
.ws73{word-spacing:16.309760pt;}
.wsc7{word-spacing:18.252800pt;}
.wsc9{word-spacing:18.664960pt;}
.wsc8{word-spacing:19.018240pt;}
.wsc4{word-spacing:19.136000pt;}
.wsc3{word-spacing:19.665920pt;}
.wsde{word-spacing:22.492160pt;}
.wsd2{word-spacing:24.435200pt;}
.wsd0{word-spacing:25.259520pt;}
.wsd1{word-spacing:25.377280pt;}
.wsdb{word-spacing:38.095360pt;}
.wscd{word-spacing:38.860800pt;}
.wsc1{word-spacing:46.161920pt;}
.wsc0{word-spacing:47.162880pt;}
.wsbf{word-spacing:57.054720pt;}
.wsbe{word-spacing:57.408000pt;}
.wscf{word-spacing:69.184000pt;}
.wsce{word-spacing:70.184960pt;}
.wse2{word-spacing:81.372160pt;}
.wse1{word-spacing:81.725440pt;}
.wsd5{word-spacing:88.673280pt;}
.wsc5{word-spacing:90.027520pt;}
.wse5{word-spacing:123.000320pt;}
.wse3{word-spacing:123.412480pt;}
.wse4{word-spacing:123.942400pt;}
.wsd6{word-spacing:170.693120pt;}
.wsd9{word-spacing:210.672640pt;}
.wsd8{word-spacing:211.438080pt;}
._c{margin-left:-88.987136pt;}
._7{margin-left:-1.978880pt;}
._0{margin-left:-1.089536pt;}
._1{width:1.602816pt;}
._3{width:2.621184pt;}
._a{width:4.062720pt;}
._9{width:6.594560pt;}
._5{width:8.848512pt;}
._4{width:9.774080pt;}
._d{width:14.753024pt;}
._8{width:16.653824pt;}
._b{width:69.818624pt;}
._f{width:211.555840pt;}
._e{width:384.296960pt;}
._6{width:1122.135040pt;}
._2{width:1173.591552pt;}
.fs8{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs0{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:0.800000pt;}
.y7{bottom:4.160000pt;}
.y9{bottom:9.440000pt;}
.y93{bottom:11.680000pt;}
.y12a{bottom:11.680133pt;}
.y91{bottom:11.840000pt;}
.y37{bottom:51.520000pt;}
.y5{bottom:53.924000pt;}
.y8{bottom:56.640000pt;}
.ya{bottom:66.080000pt;}
.y4{bottom:68.000000pt;}
.y38{bottom:68.480000pt;}
.y36{bottom:69.280000pt;}
.y39{bottom:77.920000pt;}
.y35{bottom:83.840000pt;}
.y3{bottom:84.640000pt;}
.y34{bottom:105.120000pt;}
.y90{bottom:127.040000pt;}
.yeb{bottom:128.160000pt;}
.y199{bottom:130.873600pt;}
.ybf{bottom:131.985920pt;}
.y1c4{bottom:133.440000pt;}
.y67{bottom:134.880000pt;}
.y141{bottom:137.440000pt;}
.y116{bottom:137.600000pt;}
.y16e{bottom:139.833600pt;}
.yea{bottom:148.302080pt;}
.y198{bottom:151.040000pt;}
.y115{bottom:151.680000pt;}
.ybe{bottom:152.152320pt;}
.y1c3{bottom:153.593600pt;}
.y66{bottom:155.040000pt;}
.y16d{bottom:160.000000pt;}
.y140{bottom:161.440000pt;}
.y8f{bottom:165.750400pt;}
.ye9{bottom:168.615680pt;}
.ybd{bottom:172.318720pt;}
.y1c2{bottom:173.760000pt;}
.y65{bottom:175.206400pt;}
.y114{bottom:175.680000pt;}
.y197{bottom:179.200000pt;}
.y16c{bottom:180.167040pt;}
.y13f{bottom:185.280000pt;}
.ye8{bottom:188.782080pt;}
.y8e{bottom:194.233600pt;}
.y64{bottom:195.520000pt;}
.y196{bottom:199.513600pt;}
.y113{bottom:199.680000pt;}
.y16b{bottom:200.480640pt;}
.ybc{bottom:200.640000pt;}
.y1c1{bottom:202.073600pt;}
.ye7{bottom:208.948480pt;}
.y13e{bottom:209.280000pt;}
.ybb{bottom:214.720000pt;}
.y195{bottom:219.680000pt;}
.y16a{bottom:220.647040pt;}
.y1c0{bottom:222.240000pt;}
.y63{bottom:223.673600pt;}
.ye6{bottom:229.262080pt;}
.y112{bottom:238.398720pt;}
.yba{bottom:238.720000pt;}
.y62{bottom:243.840000pt;}
.y194{bottom:247.846400pt;}
.y13d{bottom:248.158720pt;}
.y169{bottom:248.806400pt;}
.y1bf{bottom:250.406400pt;}
.ye5{bottom:257.421440pt;}
.yb9{bottom:262.720000pt;}
.y61{bottom:264.153600pt;}
.y111{bottom:266.720000pt;}
.y193{bottom:268.160000pt;}
.y168{bottom:269.120000pt;}
.y1be{bottom:270.720000pt;}
.y13c{bottom:276.480000pt;}
.ye4{bottom:277.735040pt;}
.y60{bottom:284.320000pt;}
.yb8{bottom:286.560000pt;}
.y192{bottom:288.326400pt;}
.y110{bottom:296.307200pt;}
.y167{bottom:297.273600pt;}
.ye3{bottom:297.901440pt;}
.y1bd{bottom:298.873600pt;}
.y13b{bottom:305.907200pt;}
.y191{bottom:308.640000pt;}
.yb7{bottom:310.560000pt;}
.y5f{bottom:312.480000pt;}
.y8d{bottom:314.720000pt;}
.y10f{bottom:316.473600pt;}
.y166{bottom:317.440000pt;}
.ye2{bottom:318.067840pt;}
.y1bc{bottom:319.040000pt;}
.y13a{bottom:326.220800pt;}
.y5e{bottom:332.787200pt;}
.y10e{bottom:336.640000pt;}
.y190{bottom:336.800000pt;}
.y165{bottom:337.747840pt;}
.ye1{bottom:338.234240pt;}
.y139{bottom:346.387200pt;}
.y1bb{bottom:347.360640pt;}
.yb6{bottom:349.438720pt;}
.y5d{bottom:352.953600pt;}
.y8c{bottom:354.080000pt;}
.y18f{bottom:356.966400pt;}
.y164{bottom:357.914240pt;}
.ye0{bottom:358.547840pt;}
.y10d{bottom:364.953600pt;}
.y138{bottom:366.553600pt;}
.y5c{bottom:373.120000pt;}
.y8b{bottom:374.213760pt;}
.y1ba{bottom:375.520000pt;}
.y18e{bottom:377.280000pt;}
.yb5{bottom:377.760000pt;}
.y163{bottom:378.080640pt;}
.y10c{bottom:385.120000pt;}
.ydf{bottom:386.707200pt;}
.y137{bottom:386.867200pt;}
.y8a{bottom:394.380160pt;}
.y162{bottom:398.394240pt;}
.y5b{bottom:401.440000pt;}
.y1b9{bottom:403.840000pt;}
.y10b{bottom:405.280640pt;}
.y18d{bottom:405.446400pt;}
.yde{bottom:406.873600pt;}
.y136{bottom:407.033600pt;}
.yb4{bottom:407.200000pt;}
.y161{bottom:418.560640pt;}
.y5a{bottom:421.600000pt;}
.y89{bottom:422.701440pt;}
.y1b8{bottom:423.993600pt;}
.y10a{bottom:425.594240pt;}
.y18c{bottom:425.760000pt;}
.ydd{bottom:427.187200pt;}
.y135{bottom:427.200000pt;}
.yb3{bottom:427.366400pt;}
.y88{bottom:442.867840pt;}
.y1b7{bottom:444.160000pt;}
.y109{bottom:445.760640pt;}
.y160{bottom:446.720000pt;}
.ydc{bottom:447.353600pt;}
.yb2{bottom:447.680000pt;}
.y30{bottom:450.717280pt;}
.y59{bottom:452.000000pt;}
.y18b{bottom:453.913600pt;}
.y134{bottom:455.513600pt;}
.y87{bottom:463.034240pt;}
.y108{bottom:465.927040pt;}
.y15f{bottom:467.033600pt;}
.ydb{bottom:467.520000pt;}
.yb1{bottom:467.846400pt;}
.y1b6{bottom:472.480000pt;}
.y2f{bottom:473.274240pt;}
.y18a{bottom:474.080000pt;}
.y133{bottom:475.680000pt;}
.y86{bottom:483.347840pt;}
.y107{bottom:486.240640pt;}
.y15e{bottom:487.200000pt;}
.yb0{bottom:488.160000pt;}
.y58{bottom:491.306240pt;}
.y1b5{bottom:492.640000pt;}
.y2e{bottom:493.273920pt;}
.yda{bottom:495.827200pt;}
.y132{bottom:495.840640pt;}
.y189{bottom:502.393600pt;}
.y85{bottom:503.514240pt;}
.y15d{bottom:507.366400pt;}
.y57{bottom:511.472640pt;}
.y2d{bottom:511.680000pt;}
.y1b4{bottom:512.806400pt;}
.y106{bottom:514.400000pt;}
.yd9{bottom:515.993600pt;}
.y131{bottom:516.007040pt;}
.yaf{bottom:516.320000pt;}
.y188{bottom:522.560000pt;}
.y15c{bottom:527.680000pt;}
.y105{bottom:528.480000pt;}
.y56{bottom:531.639040pt;}
.y84{bottom:531.673600pt;}
.y2c{bottom:531.840000pt;}
.y1b3{bottom:533.120000pt;}
.yd8{bottom:536.160000pt;}
.y130{bottom:536.320640pt;}
.yae{bottom:536.486400pt;}
.y2b{bottom:550.073920pt;}
.y187{bottom:550.867200pt;}
.y55{bottom:551.952640pt;}
.y83{bottom:551.987200pt;}
.y104{bottom:552.480000pt;}
.y15b{bottom:555.833600pt;}
.yd7{bottom:556.480000pt;}
.yad{bottom:556.800000pt;}
.y1b2{bottom:561.286400pt;}
.y12f{bottom:564.480000pt;}
.y2a{bottom:568.480000pt;}
.y186{bottom:571.033600pt;}
.y54{bottom:572.119040pt;}
.y82{bottom:572.153600pt;}
.y15a{bottom:576.000000pt;}
.y103{bottom:576.480000pt;}
.yac{bottom:576.960640pt;}
.y12e{bottom:578.560000pt;}
.y1b1{bottom:581.600000pt;}
.yd6{bottom:584.633600pt;}
.y185{bottom:591.200000pt;}
.y53{bottom:592.285440pt;}
.y81{bottom:592.320000pt;}
.y159{bottom:596.305920pt;}
.yab{bottom:597.127040pt;}
.y12d{bottom:602.560000pt;}
.yd5{bottom:604.800000pt;}
.y29{bottom:609.600000pt;}
.y1b0{bottom:609.760000pt;}
.y52{bottom:612.599040pt;}
.y102{bottom:615.184000pt;}
.y158{bottom:616.472320pt;}
.yaa{bottom:617.440640pt;}
.y184{bottom:619.505920pt;}
.y80{bottom:620.627200pt;}
.yd4{bottom:625.106053pt;}
.y23{bottom:625.428613pt;}
.y12c{bottom:626.560000pt;}
.y1af{bottom:629.920000pt;}
.y51{bottom:632.765440pt;}
.y157{bottom:636.638720pt;}
.y28{bottom:638.558400pt;}
.y183{bottom:639.672320pt;}
.y7f{bottom:640.793600pt;}
.y101{bottom:643.505280pt;}
.yd3{bottom:645.272453pt;}
.ya9{bottom:645.600000pt;}
.y1ae{bottom:650.080000pt;}
.y12b{bottom:650.560000pt;}
.y22{bottom:651.032453pt;}
.y50{bottom:652.931840pt;}
.y27{bottom:658.080000pt;}
.ya8{bottom:659.680000pt;}
.y182{bottom:659.838720pt;}
.y7e{bottom:660.960000pt;}
.y156{bottom:664.960000pt;}
.yd2{bottom:665.438853pt;}
.y1ad{bottom:670.393600pt;}
.y100{bottom:673.107200pt;}
.y129{bottom:674.560000pt;}
.y21{bottom:676.636293pt;}
.y26{bottom:677.760960pt;}
.y155{bottom:679.040000pt;}
.y4f{bottom:681.253120pt;}
.y7d{bottom:681.273600pt;}
.ya7{bottom:683.680000pt;}
.yd1{bottom:685.752453pt;}
.y181{bottom:688.160000pt;}
.y1ac{bottom:690.560000pt;}
.yff{bottom:693.273600pt;}
.y25{bottom:697.282560pt;}
.y4e{bottom:701.419520pt;}
.y7c{bottom:701.440000pt;}
.y20{bottom:702.240133pt;}
.y154{bottom:703.040000pt;}
.yd0{bottom:705.918853pt;}
.ya6{bottom:707.680000pt;}
.y128{bottom:713.270400pt;}
.yfe{bottom:713.440000pt;}
.y24{bottom:716.804160pt;}
.y180{bottom:718.560000pt;}
.y1ab{bottom:718.867200pt;}
.y4d{bottom:721.585920pt;}
.y153{bottom:726.880000pt;}
.ya5{bottom:731.680000pt;}
.y7b{bottom:731.840000pt;}
.ycf{bottom:734.240133pt;}
.y1f{bottom:737.760000pt;}
.y1aa{bottom:739.033600pt;}
.y127{bottom:741.591680pt;}
.yfd{bottom:741.760000pt;}
.yce{bottom:748.320000pt;}
.y4c{bottom:749.907200pt;}
.y152{bottom:750.880000pt;}
.y1d0{bottom:751.198720pt;}
.ya4{bottom:755.680000pt;}
.y17f{bottom:757.882240pt;}
.y1a9{bottom:759.200000pt;}
.yfc{bottom:761.913600pt;}
.y1e{bottom:767.999680pt;}
.y4b{bottom:770.073600pt;}
.y7a{bottom:771.187200pt;}
.y126{bottom:771.193600pt;}
.ycd{bottom:772.320000pt;}
.y17e{bottom:778.048640pt;}
.y1cf{bottom:779.520000pt;}
.yfb{bottom:782.080000pt;}
.y1a8{bottom:787.513600pt;}
.y151{bottom:789.758720pt;}
.y4a{bottom:790.240000pt;}
.y79{bottom:791.353600pt;}
.y125{bottom:791.360000pt;}
.ya3{bottom:794.398720pt;}
.y1d{bottom:795.515840pt;}
.ycc{bottom:796.320000pt;}
.y17d{bottom:798.215040pt;}
.yfa{bottom:802.393600pt;}
.y1ce{bottom:807.673600pt;}
.y1a7{bottom:807.680000pt;}
.y49{bottom:810.553600pt;}
.y78{bottom:811.520000pt;}
.y1c{bottom:815.196800pt;}
.y150{bottom:818.080000pt;}
.y17c{bottom:818.528640pt;}
.y124{bottom:819.520000pt;}
.ycb{bottom:820.160000pt;}
.y16{bottom:821.747840pt;}
.yf9{bottom:822.560000pt;}
.ya2{bottom:822.720000pt;}
.y1cd{bottom:827.840000pt;}
.y48{bottom:830.720000pt;}
.y77{bottom:831.833600pt;}
.y1b{bottom:834.718400pt;}
.y1a6{bottom:835.846400pt;}
.y17b{bottom:838.695040pt;}
.y123{bottom:839.833600pt;}
.yca{bottom:844.160000pt;}
.y15{bottom:847.192320pt;}
.y14f{bottom:847.526400pt;}
.yf8{bottom:850.726400pt;}
.y76{bottom:852.000000pt;}
.ya1{bottom:852.160000pt;}
.y1a{bottom:854.240000pt;}
.y1a5{bottom:856.160000pt;}
.y17a{bottom:858.861440pt;}
.y47{bottom:858.880000pt;}
.y122{bottom:860.000000pt;}
.y14e{bottom:867.840000pt;}
.yf7{bottom:871.040000pt;}
.ya0{bottom:872.473600pt;}
.y14{bottom:872.796160pt;}
.y19{bottom:873.920960pt;}
.y1cc{bottom:876.326400pt;}
.y179{bottom:879.175040pt;}
.y46{bottom:879.193600pt;}
.y121{bottom:880.145920pt;}
.y75{bottom:880.160000pt;}
.yc9{bottom:883.038720pt;}
.y1a4{bottom:884.320000pt;}
.y14d{bottom:888.000000pt;}
.yf6{bottom:891.193600pt;}
.y9f{bottom:892.640000pt;}
.y18{bottom:893.442560pt;}
.y1cb{bottom:896.640000pt;}
.y13{bottom:898.400000pt;}
.y178{bottom:899.341440pt;}
.y45{bottom:899.360000pt;}
.y74{bottom:900.480000pt;}
.y1a3{bottom:904.486400pt;}
.y14c{bottom:908.166400pt;}
.y120{bottom:908.467200pt;}
.yc8{bottom:911.360000pt;}
.y9e{bottom:912.953600pt;}
.y17{bottom:912.964160pt;}
.y44{bottom:919.514240pt;}
.y73{bottom:920.633600pt;}
.y1ca{bottom:924.793600pt;}
.y1a2{bottom:924.800000pt;}
.y177{bottom:927.500800pt;}
.y14b{bottom:928.480000pt;}
.y11f{bottom:928.633600pt;}
.y9d{bottom:933.120000pt;}
.y12{bottom:933.920000pt;}
.yf5{bottom:939.674240pt;}
.y43{bottom:939.827840pt;}
.yc7{bottom:940.793600pt;}
.y72{bottom:940.800000pt;}
.y1c9{bottom:944.960000pt;}
.y176{bottom:947.814400pt;}
.y11e{bottom:948.800000pt;}
.y1a1{bottom:952.960000pt;}
.y9c{bottom:953.280640pt;}
.y14a{bottom:956.633600pt;}
.yf4{bottom:959.840640pt;}
.yc6{bottom:960.960000pt;}
.y71{bottom:961.113600pt;}
.y11{bottom:963.520000pt;}
.y175{bottom:967.980800pt;}
.y42{bottom:967.987200pt;}
.y11d{bottom:969.113600pt;}
.y1a0{bottom:973.273600pt;}
.y9b{bottom:973.594240pt;}
.y149{bottom:976.800000pt;}
.yf3{bottom:980.007040pt;}
.yc5{bottom:981.273600pt;}
.y70{bottom:981.280000pt;}
.y174{bottom:988.147200pt;}
.y41{bottom:988.153600pt;}
.y11c{bottom:989.280000pt;}
.y10{bottom:989.602080pt;}
.y19f{bottom:993.440000pt;}
.y9a{bottom:993.760640pt;}
.y148{bottom:997.113600pt;}
.yf2{bottom:1000.320640pt;}
.yc4{bottom:1001.440000pt;}
.yf{bottom:1006.720000pt;}
.y173{bottom:1008.313600pt;}
.y40{bottom:1008.320000pt;}
.y6f{bottom:1009.446400pt;}
.y99{bottom:1013.927040pt;}
.y147{bottom:1017.280000pt;}
.y11b{bottom:1017.446400pt;}
.y1c8{bottom:1021.600000pt;}
.y19e{bottom:1021.606400pt;}
.ye{bottom:1023.040000pt;}
.yf1{bottom:1028.480000pt;}
.y172{bottom:1028.627200pt;}
.yc3{bottom:1029.606400pt;}
.y6e{bottom:1029.760000pt;}
.y98{bottom:1034.240640pt;}
.y3f{bottom:1036.640000pt;}
.y11a{bottom:1037.760000pt;}
.y1c7{bottom:1041.913600pt;}
.y19d{bottom:1041.920000pt;}
.yf0{bottom:1042.560000pt;}
.y146{bottom:1045.440000pt;}
.y171{bottom:1048.793600pt;}
.y6d{bottom:1049.920000pt;}
.y3e{bottom:1056.793600pt;}
.y119{bottom:1057.913600pt;}
.y1c6{bottom:1062.080000pt;}
.y97{bottom:1062.400000pt;}
.yd{bottom:1062.720000pt;}
.y145{bottom:1065.747840pt;}
.yef{bottom:1066.560000pt;}
.y170{bottom:1068.960000pt;}
.y19c{bottom:1070.080000pt;}
.y6c{bottom:1070.086400pt;}
.yc2{bottom:1070.087040pt;}
.y96{bottom:1076.480000pt;}
.y3d{bottom:1076.960000pt;}
.y118{bottom:1078.080000pt;}
.y144{bottom:1085.914240pt;}
.y19b{bottom:1090.246400pt;}
.yc1{bottom:1090.253440pt;}
.y6b{bottom:1090.400000pt;}
.yee{bottom:1090.560000pt;}
.y3c{bottom:1097.273600pt;}
.y117{bottom:1098.393600pt;}
.y16f{bottom:1099.520000pt;}
.y95{bottom:1100.480000pt;}
.yc{bottom:1101.280000pt;}
.y143{bottom:1106.080640pt;}
.y19a{bottom:1110.560000pt;}
.yc0{bottom:1110.567040pt;}
.y3b{bottom:1117.440000pt;}
.y6a{bottom:1118.560000pt;}
.y31{bottom:1121.280000pt;}
.y94{bottom:1124.480000pt;}
.yed{bottom:1129.276800pt;}
.y142{bottom:1134.240000pt;}
.yb{bottom:1134.400000pt;}
.y1c5{bottom:1138.720000pt;}
.y69{bottom:1138.726400pt;}
.y3a{bottom:1148.000000pt;}
.y92{bottom:1148.480000pt;}
.yec{bottom:1157.760000pt;}
.y68{bottom:1159.040000pt;}
.y6{bottom:1159.200000pt;}
.y2{bottom:1161.760000pt;}
.y1{bottom:1180.480000pt;}
.y33{bottom:1187.360000pt;}
.h6{height:17.600000pt;}
.h1d{height:23.200000pt;}
.h1f{height:23.201333pt;}
.h1b{height:23.358667pt;}
.h20{height:23.360000pt;}
.h13{height:31.038667pt;}
.h7{height:31.040000pt;}
.h1c{height:31.741250pt;}
.h1e{height:32.369375pt;}
.h5{height:33.960938pt;}
.h12{height:34.880000pt;}
.he{height:37.715200pt;}
.h4{height:38.688000pt;}
.h19{height:41.216000pt;}
.h2{height:41.457500pt;}
.h1a{height:41.804800pt;}
.h9{height:42.814720pt;}
.h11{height:42.837760pt;}
.hd{height:43.326250pt;}
.h10{height:45.440000pt;}
.h3{height:47.457280pt;}
.h16{height:47.480320pt;}
.h15{height:47.482880pt;}
.h24{height:47.505920pt;}
.h17{height:47.508480pt;}
.h22{height:47.513067pt;}
.h21{height:47.513600pt;}
.h23{height:47.528960pt;}
.h18{height:47.562240pt;}
.hf{height:51.584000pt;}
.h8{height:59.584000pt;}
.h1{height:59.933125pt;}
.hc{height:60.435200pt;}
.h14{height:60.750000pt;}
.ha{height:68.160000pt;}
.hb{height:77.376000pt;}
.h0{height:1248.000000pt;}
.w2{width:43.038667pt;}
.w3{width:116.160000pt;}
.w1{width:127.038667pt;}
.w9{width:160.320000pt;}
.w7{width:160.640000pt;}
.w5{width:170.238667pt;}
.w4{width:339.840000pt;}
.w8{width:349.758667pt;}
.w6{width:358.720000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:7.200000pt;}
.x6{left:9.600000pt;}
.x1b{left:44.480000pt;}
.x15{left:48.960000pt;}
.x19{left:50.080000pt;}
.x16{left:54.720000pt;}
.x1a{left:55.840000pt;}
.x1d{left:60.480000pt;}
.x2{left:75.520000pt;}
.x1{left:91.520000pt;}
.xf{left:94.240000pt;}
.xd{left:105.600000pt;}
.x9{left:113.280000pt;}
.xa{left:123.186880pt;}
.x17{left:148.320000pt;}
.x12{left:152.960000pt;}
.xb{left:234.240000pt;}
.x11{left:279.680000pt;}
.x3{left:466.880000pt;}
.x14{left:492.800000pt;}
.x1c{left:502.720000pt;}
.x18{left:507.040000pt;}
.xc{left:635.840000pt;}
.x5{left:639.200000pt;}
.x10{left:658.880000pt;}
.x4{left:736.640000pt;}
.xe{left:740.320000pt;}
.x7{left:749.120000pt;}
.x8{left:759.040000pt;}
.x1e{left:768.960000pt;}
}




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