
    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_65356ee10062c90e2e629d4b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9d634fd9e13ff8e0195243e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976074;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_cd74920ab666e232683c6daa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976074;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_8628c5d0f928b50695182d37.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.967285;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_4e34d521d3790501eee5f751.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_653ad23d51d7933410494372.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.960449;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_7ae7c1a6595d3f3711e32704.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bba492aa4d8a7e374bc92cda.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fffe32a2229b2ef80790a411.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d289ef34792df093da33b417.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_68f9722d2642ef8ea9305715.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a925205e72d24384d300f557.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7da334dffe4f967c85b34d21.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.752441;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:ffe;src:url('chunks/assets/font_a55c7dec690aec04aaa78477.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.776855;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:fff;src:url('chunks/assets/font_d0676e12777de9c42a979e4b.woff2')format("woff");}.fff{font-family:fff;line-height:0.776855;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:ff10;src:url('chunks/assets/font_b57dc980143a0a3085fad65a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.709961;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:ff11;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;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:ff12;src:url('chunks/assets/font_489e3c46567101790777f857.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.030273;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:ff13;src:url('chunks/assets/font_273f959a307e5dab57143194.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.030273;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:ff14;src:url('chunks/assets/font_be033852e80bcb61448ca6d0.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.030273;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:ff15;src:url('chunks/assets/font_faa6964b24d185dd24b139fa.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.030273;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:ff16;src:url('chunks/assets/font_9eeb2d341b504ebe8d7862b6.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.090332;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:ff17;src:url('chunks/assets/font_6b71a0350c12c26343618314.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.090332;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:ff18;src:url('chunks/assets/font_8571e567fb3d7349e034494a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls27{letter-spacing:-1.644000px;}
.ls28{letter-spacing:-1.560000px;}
.ls21{letter-spacing:-0.804000px;}
.ls41{letter-spacing:-0.690000px;}
.ls1e{letter-spacing:-0.636000px;}
.ls1d{letter-spacing:-0.588000px;}
.ls9{letter-spacing:-0.528000px;}
.lsa{letter-spacing:-0.504000px;}
.ls2f{letter-spacing:-0.462000px;}
.ls2b{letter-spacing:-0.444000px;}
.ls3b{letter-spacing:-0.378000px;}
.ls31{letter-spacing:-0.372000px;}
.ls1f{letter-spacing:-0.360000px;}
.ls3e{letter-spacing:-0.336000px;}
.ls2c{letter-spacing:-0.240000px;}
.ls3a{letter-spacing:-0.204000px;}
.ls2d{letter-spacing:-0.192000px;}
.lsd{letter-spacing:-0.144000px;}
.ls2a{letter-spacing:-0.120000px;}
.lsc{letter-spacing:-0.096000px;}
.ls42{letter-spacing:-0.066000px;}
.ls26{letter-spacing:-0.060000px;}
.ls20{letter-spacing:-0.048000px;}
.ls32{letter-spacing:-0.030000px;}
.ls7{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.012000px;}
.ls30{letter-spacing:0.084000px;}
.ls39{letter-spacing:0.096000px;}
.ls16{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.156000px;}
.lse{letter-spacing:0.204000px;}
.ls2e{letter-spacing:0.216000px;}
.ls37{letter-spacing:0.228000px;}
.ls6{letter-spacing:0.276000px;}
.ls34{letter-spacing:0.312000px;}
.ls24{letter-spacing:0.348000px;}
.ls22{letter-spacing:0.396000px;}
.ls14{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.468000px;}
.ls25{letter-spacing:0.492000px;}
.ls3f{letter-spacing:0.516000px;}
.ls8{letter-spacing:0.528000px;}
.lsf{letter-spacing:0.582000px;}
.ls43{letter-spacing:0.624000px;}
.ls5{letter-spacing:0.684000px;}
.ls3{letter-spacing:0.708000px;}
.lsb{letter-spacing:0.720000px;}
.ls40{letter-spacing:0.768000px;}
.ls10{letter-spacing:0.888000px;}
.ls13{letter-spacing:0.924000px;}
.ls12{letter-spacing:0.984000px;}
.ls11{letter-spacing:0.996000px;}
.ls36{letter-spacing:1.356000px;}
.ls2{letter-spacing:1.656000px;}
.ls1c{letter-spacing:2.424000px;}
.ls33{letter-spacing:4.632000px;}
.ls29{letter-spacing:4.752000px;}
.ls15{letter-spacing:5.484000px;}
.ls38{letter-spacing:6.228000px;}
.ls19{letter-spacing:8.484000px;}
.ls3c{letter-spacing:9.348000px;}
.ls18{letter-spacing:9.924000px;}
.ls17{letter-spacing:15.228000px;}
.ls1b{letter-spacing:17.484000px;}
.ls1a{letter-spacing:18.228000px;}
.ls3d{letter-spacing:54.984000px;}
.ls35{letter-spacing:65.484000px;}
.ls0{letter-spacing:168.228000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(89,89,89),0 0.015em rgb(89,89,89),0.015em 0 rgb(89,89,89),0 -0.015em  rgb(89,89,89);}
.sc1{text-shadow:-0.015em 0 rgb(128,128,128),0 0.015em rgb(128,128,128),0.015em 0 rgb(128,128,128),0 -0.015em  rgb(128,128,128);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(89,89,89);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(128,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-72.000000px;}
.ws1d{word-spacing:-71.808000px;}
.wsb{word-spacing:-20.484000px;}
.wsc{word-spacing:-20.016000px;}
.ws6{word-spacing:-18.984000px;}
.ws5{word-spacing:-16.992000px;}
.ws14{word-spacing:-16.956000px;}
.ws0{word-spacing:-16.896000px;}
.ws17{word-spacing:-16.764000px;}
.ws13{word-spacing:-16.668000px;}
.ws31{word-spacing:-16.584000px;}
.wsa{word-spacing:-16.548000px;}
.wsd{word-spacing:-16.416000px;}
.ws1{word-spacing:-16.368000px;}
.ws15{word-spacing:-16.284000px;}
.ws3{word-spacing:-16.272000px;}
.ws11{word-spacing:-16.224000px;}
.ws16{word-spacing:-16.212000px;}
.ws19{word-spacing:-16.152000px;}
.ws7{word-spacing:-16.128000px;}
.ws10{word-spacing:-15.912000px;}
.ws1a{word-spacing:-15.828000px;}
.ws4{word-spacing:-15.768000px;}
.ws33{word-spacing:-15.744000px;}
.wse{word-spacing:-15.684000px;}
.wsf{word-spacing:-15.636000px;}
.ws9{word-spacing:-15.498000px;}
.ws12{word-spacing:-15.468000px;}
.ws1e{word-spacing:-15.132000px;}
.ws1b{word-spacing:-14.916000px;}
.ws21{word-spacing:-14.886000px;}
.ws18{word-spacing:-14.712000px;}
.ws1c{word-spacing:-14.676000px;}
.ws20{word-spacing:-14.544000px;}
.ws1f{word-spacing:-14.454000px;}
.ws29{word-spacing:-13.980000px;}
.ws27{word-spacing:-13.464000px;}
.ws26{word-spacing:-13.032000px;}
.ws2a{word-spacing:-12.960000px;}
.ws28{word-spacing:-12.876000px;}
.ws23{word-spacing:-12.204000px;}
.ws24{word-spacing:-11.826000px;}
.ws32{word-spacing:-11.472000px;}
.ws22{word-spacing:-10.848000px;}
.ws25{word-spacing:-10.512000px;}
.ws30{word-spacing:-10.110000px;}
.ws2c{word-spacing:-10.098000px;}
.ws2f{word-spacing:-10.032000px;}
.ws2b{word-spacing:-9.774000px;}
.ws2d{word-spacing:-9.720000px;}
.ws2e{word-spacing:-9.408000px;}
.ws8{word-spacing:0.000000px;}
._e{margin-left:-19.242000px;}
._12{margin-left:-14.694000px;}
._11{margin-left:-13.188000px;}
._10{margin-left:-11.052000px;}
._27{margin-left:-9.444000px;}
._c{margin-left:-8.424000px;}
._14{margin-left:-7.224000px;}
._f{margin-left:-5.958000px;}
._d{margin-left:-4.200000px;}
._6{margin-left:-2.664000px;}
._0{margin-left:-1.176000px;}
._3{width:1.176000px;}
._5{width:2.190000px;}
._7{width:3.732000px;}
._b{width:4.920000px;}
._9{width:5.964000px;}
._a{width:7.560000px;}
._13{width:8.886000px;}
._1f{width:10.368000px;}
._1c{width:11.706000px;}
._1a{width:12.816000px;}
._19{width:14.040000px;}
._23{width:15.246000px;}
._1e{width:17.352000px;}
._22{width:18.912000px;}
._26{width:19.920000px;}
._21{width:20.928000px;}
._1b{width:22.512000px;}
._39{width:24.150000px;}
._1d{width:25.152000px;}
._15{width:26.808000px;}
._16{width:27.816000px;}
._17{width:29.460000px;}
._18{width:30.690000px;}
._25{width:38.376000px;}
._24{width:39.384000px;}
._4b{width:54.048000px;}
._49{width:55.224000px;}
._4a{width:56.742000px;}
._36{width:60.238200px;}
._2c{width:63.720000px;}
._3c{width:64.968000px;}
._4d{width:71.688000px;}
._4c{width:73.056000px;}
._31{width:74.268000px;}
._3a{width:75.528000px;}
._3b{width:76.794000px;}
._3d{width:104.712000px;}
._3e{width:106.050000px;}
._38{width:112.350000px;}
._45{width:120.168000px;}
._46{width:121.218000px;}
._40{width:123.906000px;}
._41{width:125.376000px;}
._3f{width:126.432000px;}
._42{width:145.944000px;}
._37{width:164.466000px;}
._2d{width:167.466000px;}
._43{width:171.936000px;}
._44{width:173.334000px;}
._32{width:174.546000px;}
._48{width:178.272000px;}
._47{width:179.352000px;}
._2a{width:206.931600px;}
._2f{width:210.270000px;}
._29{width:212.291250px;}
._2e{width:216.426000px;}
._28{width:218.071350px;}
._34{width:222.726000px;}
._33{width:227.910000px;}
._35{width:236.285850px;}
._2b{width:239.286000px;}
._30{width:246.366000px;}
._1{width:463.284000px;}
._4{width:646.404000px;}
._2{width:809.844000px;}
._8{width:848.178000px;}
._20{width:850.410000px;}
.fc6{color:rgb(31,77,120);}
.fc5{color:rgb(46,116,181);}
.fc3{color:rgb(83,129,53);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:54.150000px;}
.fs7{font-size:60.150000px;}
.fs4{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:72.150000px;}
.fs2{font-size:84.000000px;}
.fs3{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:3.750000px;}
.y209{bottom:3.765000px;}
.y212{bottom:3.780000px;}
.y280{bottom:4.125000px;}
.yff{bottom:4.500000px;}
.y1b{bottom:4.860000px;}
.yb{bottom:4.875000px;}
.y70{bottom:4.890000px;}
.y6a{bottom:4.905000px;}
.y7d{bottom:4.920000px;}
.y18e{bottom:5.235000px;}
.y1d7{bottom:5.250000px;}
.y2d2{bottom:5.265000px;}
.yef{bottom:5.625000px;}
.y102{bottom:5.640000px;}
.y103{bottom:5.655000px;}
.y13d{bottom:5.670000px;}
.y158{bottom:5.985000px;}
.ye3{bottom:6.000000px;}
.yeb{bottom:6.007500px;}
.ye9{bottom:6.015000px;}
.y290{bottom:6.045000px;}
.y12e{bottom:6.360000px;}
.y127{bottom:6.375000px;}
.yf2{bottom:6.750000px;}
.y13c{bottom:6.795000px;}
.yec{bottom:7.117500px;}
.y31{bottom:7.125000px;}
.yea{bottom:7.170000px;}
.y2c8{bottom:7.500000px;}
.y2d{bottom:8.625000px;}
.y2ac{bottom:9.735000px;}
.y33{bottom:9.750000px;}
.y2f{bottom:9.780000px;}
.y117{bottom:12.375000px;}
.y151{bottom:12.750000px;}
.y18{bottom:13.125000px;}
.y182{bottom:13.875000px;}
.y135{bottom:14.625000px;}
.y1a6{bottom:15.750000px;}
.y1b4{bottom:15.757500px;}
.y16{bottom:16.875000px;}
.y1cf{bottom:17.632500px;}
.y2b6{bottom:20.250000px;}
.y2bc{bottom:20.295000px;}
.y23c{bottom:21.375000px;}
.y253{bottom:21.450000px;}
.y235{bottom:21.525000px;}
.ydf{bottom:21.750000px;}
.y2aa{bottom:22.125000px;}
.yfe{bottom:24.750000px;}
.y7{bottom:25.500000px;}
.y27f{bottom:25.875000px;}
.y125{bottom:26.625000px;}
.y1d3{bottom:26.655000px;}
.y1db{bottom:26.985000px;}
.y123{bottom:26.992500px;}
.y21{bottom:27.000000px;}
.y1a3{bottom:27.045000px;}
.y18d{bottom:27.360000px;}
.y1aa{bottom:27.375000px;}
.y2d4{bottom:27.390000px;}
.yfa{bottom:27.405000px;}
.y106{bottom:27.750000px;}
.y101{bottom:27.795000px;}
.y1d5{bottom:28.125000px;}
.ye7{bottom:28.132500px;}
.y156{bottom:28.485000px;}
.y168{bottom:28.500000px;}
.y122{bottom:28.507500px;}
.y16c{bottom:28.875000px;}
.y2c7{bottom:29.250000px;}
.y119{bottom:30.000000px;}
.y136{bottom:30.030000px;}
.y11f{bottom:30.375000px;}
.y6{bottom:31.875000px;}
.y206{bottom:35.610000px;}
.y9{bottom:37.500000px;}
.y2a9{bottom:38.625000px;}
.y204{bottom:43.860000px;}
.yfc{bottom:46.875000px;}
.y165{bottom:47.250000px;}
.y133{bottom:48.000000px;}
.y11a{bottom:48.735000px;}
.y20{bottom:48.750000px;}
.y1e0{bottom:48.780000px;}
.y120{bottom:49.125000px;}
.y1d2{bottom:49.530000px;}
.yf5{bottom:49.875000px;}
.ye1{bottom:50.250000px;}
.y11c{bottom:50.295000px;}
.y11e{bottom:50.625000px;}
.y153{bottom:51.000000px;}
.y2c6{bottom:51.375000px;}
.y205{bottom:52.155000px;}
.y23b{bottom:54.375000px;}
.y27e{bottom:54.412500px;}
.y252{bottom:54.450000px;}
.y234{bottom:54.525000px;}
.y5{bottom:54.787500px;}
.y207{bottom:60.405000px;}
.y1a1{bottom:61.125000px;}
.y12c{bottom:70.500000px;}
.y1d1{bottom:71.280000px;}
.y12b{bottom:72.000000px;}
.y1de{bottom:72.030000px;}
.y2c5{bottom:73.125000px;}
.y1a0{bottom:82.875000px;}
.y185{bottom:84.420000px;}
.y23a{bottom:87.375000px;}
.y251{bottom:87.480000px;}
.y233{bottom:87.525000px;}
.y194{bottom:96.030000px;}
.y4{bottom:103.162500px;}
.y184{bottom:106.545000px;}
.y193{bottom:117.780000px;}
.y24f{bottom:120.150000px;}
.y237{bottom:121.125000px;}
.y24e{bottom:121.245000px;}
.y230{bottom:121.320000px;}
.yed{bottom:122.662500px;}
.y238{bottom:126.870000px;}
.y9c{bottom:127.162500px;}
.y231{bottom:135.195000px;}
.y1a7{bottom:135.412500px;}
.y201{bottom:135.787500px;}
.y22e{bottom:136.912500px;}
.y191{bottom:141.030000px;}
.y121{bottom:141.787500px;}
.y2d6{bottom:142.950000px;}
.y26c{bottom:143.287500px;}
.ye6{bottom:144.787500px;}
.y2a0{bottom:145.537500px;}
.y180{bottom:152.280000px;}
.y1a8{bottom:152.287500px;}
.y2c3{bottom:153.450000px;}
.y62{bottom:154.170000px;}
.yd3{bottom:159.420000px;}
.y9b{bottom:160.170000px;}
.y224{bottom:161.295000px;}
.y14d{bottom:163.545000px;}
.y2fb{bottom:163.920000px;}
.y26b{bottom:166.530000px;}
.ye8{bottom:166.905000px;}
.y2c2{bottom:168.075000px;}
.y200{bottom:168.780000px;}
.y22d{bottom:169.920000px;}
.y61{bottom:176.325000px;}
.y1b2{bottom:180.075000px;}
.y1ce{bottom:180.825000px;}
.yd2{bottom:181.200000px;}
.y2c1{bottom:182.700000px;}
.y17f{bottom:185.325000px;}
.y14c{bottom:185.700000px;}
.y11d{bottom:186.450000px;}
.y2d5{bottom:187.575000px;}
.ye5{bottom:189.075000px;}
.y26a{bottom:189.825000px;}
.y9a{bottom:193.200000px;}
.y223{bottom:194.325000px;}
.y1cd{bottom:195.450000px;}
.y2c0{bottom:197.325000px;}
.y29f{bottom:198.075000px;}
.y60{bottom:198.450000px;}
.y1ff{bottom:201.825000px;}
.y1b3{bottom:202.950000px;}
.yd1{bottom:203.325000px;}
.y14b{bottom:207.825000px;}
.ye0{bottom:211.200000px;}
.y2bf{bottom:212.325000px;}
.y269{bottom:213.075000px;}
.y17e{bottom:218.325000px;}
.y5f{bottom:220.200000px;}
.y1cc{bottom:222.450000px;}
.yd0{bottom:225.450000px;}
.y99{bottom:226.200000px;}
.y222{bottom:227.325000px;}
.y14a{bottom:229.575000px;}
.y2fa{bottom:229.950000px;}
.y2d3{bottom:232.230000px;}
.ye4{bottom:233.325000px;}
.y1fe{bottom:234.825000px;}
.y22c{bottom:235.950000px;}
.y268{bottom:236.325000px;}
.y1f{bottom:238.200000px;}
.yac{bottom:240.075000px;}
.y5e{bottom:242.325000px;}
.y2be{bottom:246.855000px;}
.ycf{bottom:247.200000px;}
.y1b1{bottom:248.325000px;}
.y17d{bottom:251.325000px;}
.y149{bottom:251.700000px;}
.y11b{bottom:253.200000px;}
.ye2{bottom:255.450000px;}
.y98{bottom:259.200000px;}
.y221{bottom:260.325000px;}
.y29e{bottom:262.575000px;}
.y5d{bottom:264.075000px;}
.y1fd{bottom:267.825000px;}
.y22b{bottom:268.950000px;}
.yce{bottom:269.325000px;}
.y2bd{bottom:269.355000px;}
.y1b0{bottom:271.200000px;}
.yab{bottom:273.075000px;}
.y148{bottom:273.450000px;}
.y2f9{bottom:273.825000px;}
.y2d1{bottom:276.855000px;}
.y29d{bottom:277.200000px;}
.yde{bottom:277.575000px;}
.y17c{bottom:284.325000px;}
.y250{bottom:285.045000px;}
.y267{bottom:285.450000px;}
.y5c{bottom:286.200000px;}
.y1cb{bottom:288.075000px;}
.ycd{bottom:291.075000px;}
.y239{bottom:291.900000px;}
.y97{bottom:292.200000px;}
.y2bb{bottom:292.605000px;}
.y220{bottom:293.325000px;}
.y1af{bottom:293.700000px;}
.y147{bottom:295.575000px;}
.y232{bottom:300.045000px;}
.y1fc{bottom:300.825000px;}
.y22a{bottom:301.950000px;}
.y24c{bottom:302.325000px;}
.y1e{bottom:304.995000px;}
.yaa{bottom:306.120000px;}
.y29c{bottom:307.605000px;}
.y5b{bottom:307.980000px;}
.y1ad{bottom:316.620000px;}
.y17b{bottom:317.355000px;}
.ycc{bottom:317.730000px;}
.ydd{bottom:319.245000px;}
.y118{bottom:319.995000px;}
.y1ca{bottom:321.105000px;}
.y266{bottom:321.480000px;}
.y2d0{bottom:321.525000px;}
.y96{bottom:325.245000px;}
.y21f{bottom:326.370000px;}
.y2ba{bottom:326.400000px;}
.y1d{bottom:327.495000px;}
.y5a{bottom:330.120000px;}
.y293{bottom:331.275000px;}
.y1fb{bottom:333.870000px;}
.ydc{bottom:334.980000px;}
.y24b{bottom:335.370000px;}
.y1ed{bottom:336.495000px;}
.ya9{bottom:339.120000px;}
.y146{bottom:339.495000px;}
.ycb{bottom:339.870000px;}
.y2b9{bottom:349.650000px;}
.y1c{bottom:350.370000px;}
.y59{bottom:352.245000px;}
.y1c9{bottom:354.120000px;}
.y265{bottom:354.480000px;}
.y292{bottom:354.525000px;}
.ydb{bottom:355.230000px;}
.y95{bottom:358.230000px;}
.y21e{bottom:359.370000px;}
.y145{bottom:361.605000px;}
.y1ae{bottom:361.995000px;}
.yca{bottom:366.120000px;}
.y1fa{bottom:366.495000px;}
.y2cf{bottom:366.525000px;}
.y229{bottom:367.620000px;}
.y24a{bottom:368.355000px;}
.y1ec{bottom:369.495000px;}
.ya8{bottom:371.730000px;}
.y1a{bottom:373.245000px;}
.y58{bottom:373.995000px;}
.yda{bottom:377.370000px;}
.y291{bottom:377.775000px;}
.y144{bottom:383.370000px;}
.y2b8{bottom:383.400000px;}
.y2f8{bottom:383.745000px;}
.y1a9{bottom:384.870000px;}
.y116{bottom:386.745000px;}
.y1c8{bottom:387.120000px;}
.y264{bottom:387.495000px;}
.yc9{bottom:388.230000px;}
.y228{bottom:388.605000px;}
.y94{bottom:390.870000px;}
.y21d{bottom:392.355000px;}
.y19{bottom:395.745000px;}
.y57{bottom:396.120000px;}
.yd9{bottom:399.120000px;}
.y1f9{bottom:399.495000px;}
.y28f{bottom:401.025000px;}
.y249{bottom:401.370000px;}
.y1eb{bottom:402.495000px;}
.ya7{bottom:404.745000px;}
.y143{bottom:405.495000px;}
.y2b7{bottom:406.695000px;}
.y1ac{bottom:407.370000px;}
.yc8{bottom:409.995000px;}
.y227{bottom:410.745000px;}
.y2ce{bottom:411.195000px;}
.y236{bottom:412.125000px;}
.y17a{bottom:416.370000px;}
.y56{bottom:417.870000px;}
.y1c7{bottom:420.120000px;}
.yd8{bottom:421.245000px;}
.y142{bottom:423.120000px;}
.y93{bottom:423.870000px;}
.y28e{bottom:424.320000px;}
.y21c{bottom:424.995000px;}
.y115{bottom:426.870000px;}
.y2f7{bottom:427.620000px;}
.y2b5{bottom:429.945000px;}
.y1ab{bottom:430.245000px;}
.yc7{bottom:432.150000px;}
.y1f8{bottom:432.525000px;}
.y248{bottom:434.400000px;}
.y1ea{bottom:435.525000px;}
.ya6{bottom:437.775000px;}
.y55{bottom:440.025000px;}
.y114{bottom:443.025000px;}
.yd7{bottom:443.400000px;}
.y141{bottom:446.400000px;}
.y28d{bottom:447.570000px;}
.y179{bottom:449.025000px;}
.y2f6{bottom:449.775000px;}
.y19f{bottom:452.775000px;}
.y1c6{bottom:453.150000px;}
.yc6{bottom:454.275000px;}
.y2cd{bottom:455.820000px;}
.y92{bottom:456.900000px;}
.y21b{bottom:458.025000px;}
.y54{bottom:462.150000px;}
.y263{bottom:462.525000px;}
.y2b4{bottom:463.695000px;}
.y113{bottom:464.775000px;}
.yd6{bottom:465.150000px;}
.y1f7{bottom:465.525000px;}
.y247{bottom:467.400000px;}
.y1e9{bottom:468.525000px;}
.ya5{bottom:470.775000px;}
.y28c{bottom:470.820000px;}
.y2f5{bottom:471.525000px;}
.yc5{bottom:476.025000px;}
.y21a{bottom:476.775000px;}
.y16e{bottom:477.900000px;}
.y178{bottom:482.025000px;}
.y53{bottom:483.900000px;}
.y1c5{bottom:486.150000px;}
.yd5{bottom:486.900000px;}
.y2b3{bottom:486.945000px;}
.y13f{bottom:487.650000px;}
.y91{bottom:489.900000px;}
.y2f4{bottom:493.650000px;}
.y28b{bottom:494.100000px;}
.y16b{bottom:494.400000px;}
.y1a5{bottom:497.775000px;}
.yc4{bottom:498.150000px;}
.y1f6{bottom:498.525000px;}
.y219{bottom:500.025000px;}
.y246{bottom:500.400000px;}
.y2cc{bottom:500.475000px;}
.y1e8{bottom:501.525000px;}
.ya4{bottom:503.775000px;}
.y262{bottom:505.275000px;}
.y52{bottom:506.025000px;}
.y112{bottom:509.025000px;}
.y2b2{bottom:510.225000px;}
.y140{bottom:510.900000px;}
.y177{bottom:515.025000px;}
.y2f3{bottom:515.400000px;}
.y16d{bottom:516.900000px;}
.yd4{bottom:517.275000px;}
.y28a{bottom:517.350000px;}
.y7f{bottom:518.400000px;}
.y1c4{bottom:519.150000px;}
.yc3{bottom:519.900000px;}
.y90{bottom:522.900000px;}
.y218{bottom:523.275000px;}
.y51{bottom:527.775000px;}
.y111{bottom:530.775000px;}
.y1f5{bottom:531.525000px;}
.y245{bottom:533.400000px;}
.y2b1{bottom:533.475000px;}
.y13e{bottom:534.150000px;}
.y1e7{bottom:534.525000px;}
.ya3{bottom:536.775000px;}
.y2f2{bottom:537.525000px;}
.y16a{bottom:539.400000px;}
.y7e{bottom:540.525000px;}
.y289{bottom:540.600000px;}
.yc2{bottom:542.025000px;}
.y1a2{bottom:542.400000px;}
.y2cb{bottom:545.100000px;}
.y217{bottom:546.525000px;}
.y176{bottom:548.025000px;}
.y50{bottom:549.900000px;}
.y1c3{bottom:552.150000px;}
.y110{bottom:552.900000px;}
.y8f{bottom:555.900000px;}
.y2b0{bottom:556.725000px;}
.y13b{bottom:557.400000px;}
.y7c{bottom:558.150000px;}
.y29b{bottom:558.525000px;}
.y2f1{bottom:559.275000px;}
.y167{bottom:561.570000px;}
.yc1{bottom:563.820000px;}
.y288{bottom:563.850000px;}
.y1f4{bottom:564.570000px;}
.y1a4{bottom:564.945000px;}
.y244{bottom:566.070000px;}
.y306{bottom:566.445000px;}
.y1e6{bottom:567.570000px;}
.ya2{bottom:568.695000px;}
.y216{bottom:569.820000px;}
.y4f{bottom:572.070000px;}
.y10f{bottom:574.695000px;}
.y2af{bottom:579.975000px;}
.y13a{bottom:580.695000px;}
.y7b{bottom:581.070000px;}
.y2f0{bottom:581.445000px;}
.y29a{bottom:583.695000px;}
.y169{bottom:584.070000px;}
.y1c2{bottom:584.820000px;}
.yc0{bottom:585.945000px;}
.y287{bottom:587.130000px;}
.ya1{bottom:587.820000px;}
.y305{bottom:588.570000px;}
.y8e{bottom:588.945000px;}
.y2ca{bottom:590.130000px;}
.y215{bottom:593.070000px;}
.y4e{bottom:593.820000px;}
.y299{bottom:594.945000px;}
.y10e{bottom:596.820000px;}
.y1f3{bottom:597.570000px;}
.y243{bottom:599.070000px;}
.y1e5{bottom:600.195000px;}
.y2ae{bottom:603.255000px;}
.y2ef{bottom:603.570000px;}
.y7a{bottom:603.945000px;}
.y2da{bottom:605.880000px;}
.y164{bottom:606.570000px;}
.ybf{bottom:608.070000px;}
.ya0{bottom:608.820000px;}
.y190{bottom:609.570000px;}
.y304{bottom:610.320000px;}
.y286{bottom:610.380000px;}
.y175{bottom:614.070000px;}
.y4d{bottom:615.945000px;}
.y214{bottom:616.320000px;}
.y1c1{bottom:617.820000px;}
.y10d{bottom:618.945000px;}
.y8d{bottom:621.945000px;}
.y261{bottom:623.070000px;}
.y2ee{bottom:625.320000px;}
.y79{bottom:626.445000px;}
.y2ad{bottom:626.505000px;}
.y1e4{bottom:626.820000px;}
.y138{bottom:627.195000px;}
.y166{bottom:629.070000px;}
.ybe{bottom:629.820000px;}
.y1f2{bottom:630.570000px;}
.y242{bottom:632.070000px;}
.y19e{bottom:632.445000px;}
.y285{bottom:633.630000px;}
.y2c9{bottom:634.770000px;}
.y4c{bottom:637.695000px;}
.y213{bottom:639.570000px;}
.y10c{bottom:640.695000px;}
.y27b{bottom:641.445000px;}
.y174{bottom:647.070000px;}
.y2ed{bottom:647.445000px;}
.y78{bottom:649.320000px;}
.y2ab{bottom:649.770000px;}
.y139{bottom:650.445000px;}
.y2d9{bottom:650.520000px;}
.y1c0{bottom:650.820000px;}
.ybd{bottom:651.945000px;}
.y303{bottom:654.195000px;}
.y8c{bottom:654.945000px;}
.y19d{bottom:655.320000px;}
.y260{bottom:656.070000px;}
.y284{bottom:656.895000px;}
.y10b{bottom:662.820000px;}
.y1f1{bottom:663.195000px;}
.y1e3{bottom:664.320000px;}
.y241{bottom:665.070000px;}
.y4b{bottom:669.195000px;}
.y163{bottom:669.945000px;}
.y77{bottom:671.820000px;}
.y2a8{bottom:673.050000px;}
.ybc{bottom:673.695000px;}
.y302{bottom:676.320000px;}
.y192{bottom:677.820000px;}
.y2c4{bottom:679.425000px;}
.y173{bottom:680.070000px;}
.y283{bottom:680.175000px;}
.y8b{bottom:680.820000px;}
.y1e2{bottom:682.320000px;}
.y1bf{bottom:683.820000px;}
.y10a{bottom:684.570000px;}
.y27a{bottom:685.320000px;}
.y211{bottom:686.070000px;}
.y25f{bottom:689.100000px;}
.y4a{bottom:690.975000px;}
.y2ec{bottom:691.350000px;}
.y76{bottom:694.725000px;}
.y2d8{bottom:695.550000px;}
.ybb{bottom:695.850000px;}
.y137{bottom:696.975000px;}
.y240{bottom:698.100000px;}
.y301{bottom:698.475000px;}
.y19c{bottom:700.725000px;}
.y1f0{bottom:703.350000px;}
.y282{bottom:703.425000px;}
.y109{bottom:706.725000px;}
.y279{bottom:707.475000px;}
.y210{bottom:709.350000px;}
.y162{bottom:711.975000px;}
.y172{bottom:713.100000px;}
.y2eb{bottom:713.475000px;}
.y8a{bottom:716.850000px;}
.y75{bottom:717.600000px;}
.yba{bottom:717.975000px;}
.y132{bottom:720.225000px;}
.y49{bottom:722.100000px;}
.y19b{bottom:723.225000px;}
.y1ef{bottom:725.475000px;}
.y14{bottom:726.600000px;}
.y1e1{bottom:726.975000px;}
.y2a7{bottom:728.550000px;}
.y108{bottom:728.850000px;}
.y278{bottom:729.225000px;}
.y15f{bottom:729.975000px;}
.y23f{bottom:731.100000px;}
.y20f{bottom:732.600000px;}
.y2ea{bottom:735.225000px;}
.y226{bottom:735.975000px;}
.yb9{bottom:739.725000px;}
.y74{bottom:740.100000px;}
.y2d7{bottom:740.175000px;}
.y300{bottom:742.350000px;}
.y48{bottom:743.850000px;}
.y171{bottom:745.725000px;}
.y19a{bottom:746.100000px;}
.y105{bottom:746.475000px;}
.y13{bottom:748.725000px;}
.y89{bottom:749.850000px;}
.y277{bottom:751.350000px;}
.y23e{bottom:751.725000px;}
.y161{bottom:752.475000px;}
.y20e{bottom:755.850000px;}
.y2e9{bottom:757.350000px;}
.y225{bottom:758.100000px;}
.y22f{bottom:760.500000px;}
.y134{bottom:761.100000px;}
.yb8{bottom:761.850000px;}
.y73{bottom:762.975000px;}
.y2a6{bottom:763.095000px;}
.y25e{bottom:764.100000px;}
.y107{bottom:768.600000px;}
.y199{bottom:768.975000px;}
.y12{bottom:770.475000px;}
.y1dd{bottom:771.600000px;}
.y1ee{bottom:772.725000px;}
.y47{bottom:773.100000px;}
.y281{bottom:773.580000px;}
.y23d{bottom:773.850000px;}
.y160{bottom:774.975000px;}
.y24d{bottom:775.500000px;}
.y170{bottom:778.725000px;}
.y20d{bottom:779.100000px;}
.y88{bottom:782.850000px;}
.yb7{bottom:783.600000px;}
.y72{bottom:785.475000px;}
.y2ff{bottom:786.225000px;}
.y17{bottom:787.725000px;}
.y104{bottom:790.725000px;}
.y198{bottom:791.475000px;}
.y1df{bottom:794.850000px;}
.y276{bottom:795.225000px;}
.y25d{bottom:796.725000px;}
.y15e{bottom:797.475000px;}
.y2e8{bottom:801.225000px;}
.y20c{bottom:802.350000px;}
.y3c{bottom:803.100000px;}
.y131{bottom:803.475000px;}
.y46{bottom:804.600000px;}
.y2fe{bottom:807.975000px;}
.y71{bottom:808.350000px;}
.y87{bottom:809.475000px;}
.yb6{bottom:810.225000px;}
.y100{bottom:811.725000px;}
.y27d{bottom:812.205000px;}
.y197{bottom:814.350000px;}
.y1be{bottom:815.850000px;}
.y15d{bottom:820.005000px;}
.y2e7{bottom:823.380000px;}
.y130{bottom:824.130000px;}
.y3b{bottom:825.270000px;}
.y20b{bottom:825.630000px;}
.y27c{bottom:826.830000px;}
.y25c{bottom:829.755000px;}
.y2fd{bottom:830.130000px;}
.y6f{bottom:831.255000px;}
.y45{bottom:833.880000px;}
.y15{bottom:835.005000px;}
.y196{bottom:836.880000px;}
.y15a{bottom:842.505000px;}
.y3a{bottom:842.880000px;}
.y16f{bottom:844.755000px;}
.y2e6{bottom:845.130000px;}
.yb5{bottom:846.270000px;}
.y86{bottom:846.630000px;}
.y20a{bottom:848.880000px;}
.y1bd{bottom:848.895000px;}
.y2fc{bottom:852.270000px;}
.y275{bottom:853.380000px;}
.y6e{bottom:853.755000px;}
.yfb{bottom:856.005000px;}
.y195{bottom:859.755000px;}
.y1dc{bottom:861.630000px;}
.y25b{bottom:862.755000px;}
.y44{bottom:863.145000px;}
.y12f{bottom:863.880000px;}
.y15c{bottom:865.005000px;}
.y39{bottom:865.755000px;}
.y2e5{bottom:867.255000px;}
.y208{bottom:872.130000px;}
.y2a5{bottom:874.005000px;}
.y274{bottom:875.880000px;}
.y6d{bottom:876.630000px;}
.yb4{bottom:877.755000px;}
.yfd{bottom:878.130000px;}
.y85{bottom:879.630000px;}
.y1bc{bottom:881.505000px;}
.y15b{bottom:887.505000px;}
.y38{bottom:888.630000px;}
.y2e4{bottom:889.005000px;}
.y43{bottom:894.630000px;}
.y203{bottom:895.395000px;}
.y2a4{bottom:896.130000px;}
.y6c{bottom:899.130000px;}
.y11{bottom:902.880000px;}
.y183{bottom:904.380000px;}
.y18c{bottom:904.395000px;}
.y25a{bottom:904.755000px;}
.y2a{bottom:905.505000px;}
.y1da{bottom:906.270000px;}
.y159{bottom:910.005000px;}
.y155{bottom:910.020000px;}
.yb3{bottom:910.755000px;}
.y2e3{bottom:911.130000px;}
.y37{bottom:912.630000px;}
.y1bb{bottom:914.505000px;}
.y2a3{bottom:917.880000px;}
.yf9{bottom:919.020000px;}
.y6b{bottom:922.005000px;}
.y273{bottom:922.380000px;}
.y42{bottom:925.755000px;}
.y29{bottom:927.255000px;}
.y18f{bottom:927.270000px;}
.y12d{bottom:930.645000px;}
.y157{bottom:932.520000px;}
.y2e2{bottom:933.255000px;}
.y36{bottom:937.020000px;}
.y259{bottom:937.755000px;}
.y2a2{bottom:940.005000px;}
.yb2{bottom:943.755000px;}
.y69{bottom:944.895000px;}
.y84{bottom:945.675000px;}
.y1ba{bottom:947.550000px;}
.y18b{bottom:949.800000px;}
.y1d8{bottom:950.925000px;}
.y12a{bottom:953.550000px;}
.y41{bottom:955.050000px;}
.y28{bottom:958.800000px;}
.y2a1{bottom:962.175000px;}
.y35{bottom:965.925000px;}
.y68{bottom:967.425000px;}
.y272{bottom:968.925000px;}
.y258{bottom:970.800000px;}
.y187{bottom:972.675000px;}
.y1d9{bottom:974.175000px;}
.yb1{bottom:976.800000px;}
.y2e1{bottom:977.175000px;}
.y152{bottom:977.550000px;}
.y83{bottom:978.675000px;}
.y1b9{bottom:979.425000px;}
.yf8{bottom:982.050000px;}
.y298{bottom:983.925000px;}
.y40{bottom:984.300000px;}
.y34{bottom:988.050000px;}
.y27{bottom:989.175000px;}
.y67{bottom:990.300000px;}
.y271{bottom:992.175000px;}
.y18a{bottom:995.550000px;}
.y1b8{bottom:995.925000px;}
.y202{bottom:997.050000px;}
.y1d4{bottom:997.425000px;}
.y2e0{bottom:998.925000px;}
.yf4{bottom:1000.050000px;}
.y257{bottom:1003.800000px;}
.y297{bottom:1006.050000px;}
.y32{bottom:1007.550000px;}
.yb0{bottom:1009.800000px;}
.y82{bottom:1011.675000px;}
.y66{bottom:1012.800000px;}
.y270{bottom:1015.425000px;}
.y3f{bottom:1015.800000px;}
.y189{bottom:1018.050000px;}
.y1b6{bottom:1018.425000px;}
.y26{bottom:1019.550000px;}
.y2df{bottom:1021.050000px;}
.yf7{bottom:1022.175000px;}
.y154{bottom:1022.550000px;}
.y10{bottom:1024.800000px;}
.y296{bottom:1027.800000px;}
.y65{bottom:1035.675000px;}
.y256{bottom:1036.800000px;}
.y9f{bottom:1038.675000px;}
.y30{bottom:1040.550000px;}
.y1b7{bottom:1041.300000px;}
.y129{bottom:1042.050000px;}
.y1d6{bottom:1042.425000px;}
.yaf{bottom:1042.800000px;}
.y2de{bottom:1043.175000px;}
.yf6{bottom:1044.300000px;}
.y81{bottom:1044.675000px;}
.y150{bottom:1045.050000px;}
.yf{bottom:1046.925000px;}
.y25{bottom:1049.550000px;}
.y295{bottom:1049.925000px;}
.y64{bottom:1058.550000px;}
.y26f{bottom:1061.925000px;}
.y188{bottom:1062.675000px;}
.y1b5{bottom:1064.175000px;}
.y128{bottom:1064.925000px;}
.y1d0{bottom:1065.675000px;}
.yf3{bottom:1066.425000px;}
.y2e{bottom:1068.300000px;}
.ye{bottom:1069.050000px;}
.y255{bottom:1069.425000px;}
.y9e{bottom:1071.675000px;}
.y294{bottom:1072.050000px;}
.yae{bottom:1075.455000px;}
.y3e{bottom:1077.705000px;}
.y24{bottom:1079.955000px;}
.y63{bottom:1081.080000px;}
.y26e{bottom:1085.205000px;}
.y186{bottom:1085.580000px;}
.yd{bottom:1086.705000px;}
.y2dd{bottom:1087.080000px;}
.y126{bottom:1087.455000px;}
.yf1{bottom:1088.580000px;}
.y14f{bottom:1093.830000px;}
.y2c{bottom:1101.330000px;}
.y254{bottom:1101.705000px;}
.y80{bottom:1103.955000px;}
.y9d{bottom:1104.705000px;}
.yad{bottom:1108.455000px;}
.y3d{bottom:1108.830000px;}
.yc{bottom:1109.580000px;}
.y23{bottom:1109.955000px;}
.y124{bottom:1110.330000px;}
.yf0{bottom:1110.705000px;}
.y2dc{bottom:1112.955000px;}
.y14e{bottom:1115.955000px;}
.y26d{bottom:1131.705000px;}
.ya{bottom:1132.080000px;}
.yee{bottom:1132.830000px;}
.y22{bottom:1134.705000px;}
.y2b{bottom:1137.705000px;}
.y2db{bottom:1139.205000px;}
.y181{bottom:1143.705000px;}
.y3{bottom:1167.705000px;}
.y2{bottom:1182.330000px;}
.y1{bottom:1196.955000px;}
.h21{height:20.250000px;}
.h1a{height:21.375000px;}
.h1c{height:21.412500px;}
.h6{height:21.750000px;}
.h12{height:21.772500px;}
.h14{height:21.787500px;}
.h3c{height:22.110000px;}
.h5{height:22.125000px;}
.h26{height:22.147500px;}
.h15{height:22.162500px;}
.h2c{height:22.485000px;}
.h28{height:22.500000px;}
.h2a{height:22.522500px;}
.h2d{height:22.537500px;}
.h10{height:27.000000px;}
.h2f{height:28.500000px;}
.hd{height:29.250000px;}
.h34{height:31.125000px;}
.h11{height:32.250000px;}
.hf{height:32.287500px;}
.h58{height:33.000000px;}
.h59{height:33.037500px;}
.h43{height:34.912500px;}
.h22{height:36.000000px;}
.h2{height:36.703125px;}
.h18{height:37.162500px;}
.h20{height:40.125000px;}
.h2e{height:40.500000px;}
.h1d{height:41.317383px;}
.h1e{height:42.772500px;}
.h3{height:43.500000px;}
.h1b{height:43.537500px;}
.h13{height:43.875000px;}
.h45{height:43.897500px;}
.h24{height:43.912500px;}
.h33{height:44.250000px;}
.h31{height:44.272500px;}
.h5b{height:44.287500px;}
.h41{height:44.625000px;}
.h38{height:44.647500px;}
.h42{height:45.000000px;}
.h56{height:45.641602px;}
.h2b{height:45.750000px;}
.h29{height:45.772500px;}
.h57{height:46.801758px;}
.h9{height:47.287500px;}
.h7{height:47.625000px;}
.h17{height:49.148438px;}
.h54{height:49.992188px;}
.h55{height:51.375000px;}
.h49{height:53.709961px;}
.h4b{height:53.859155px;}
.h4{height:55.054688px;}
.h48{height:55.291992px;}
.h36{height:57.937500px;}
.h4c{height:59.826929px;}
.h50{height:60.855469px;}
.h1f{height:62.250000px;}
.h51{height:62.402344px;}
.h32{height:62.625000px;}
.h27{height:63.375000px;}
.h19{height:65.625000px;}
.hc{height:65.645508px;}
.h23{height:66.000000px;}
.hb{height:66.037500px;}
.h3e{height:66.412500px;}
.h30{height:66.750000px;}
.h40{height:67.162500px;}
.h3b{height:67.500000px;}
.h16{height:67.579102px;}
.h1{height:71.613281px;}
.he{height:73.722656px;}
.h4d{height:73.876245px;}
.h8{height:79.980469px;}
.h25{height:87.750000px;}
.h44{height:88.537500px;}
.h46{height:89.287500px;}
.h5a{height:90.037500px;}
.h47{height:96.787500px;}
.h37{height:112.162500px;}
.ha{height:122.871094px;}
.h3d{height:156.045000px;}
.h35{height:203.325000px;}
.h3a{height:225.825000px;}
.h39{height:294.075000px;}
.h4f{height:313.500000px;}
.h3f{height:316.620000px;}
.h4e{height:320.625000px;}
.h4a{height:328.500000px;}
.h52{height:892.875000px;}
.h53{height:893.250000px;}
.h0{height:1263.000000px;}
.w5f{width:60.412500px;}
.w38{width:65.662500px;}
.w55{width:69.750000px;}
.w4f{width:70.125000px;}
.w16{width:70.912500px;}
.wd{width:71.662500px;}
.w50{width:72.787500px;}
.w59{width:74.287500px;}
.w36{width:74.625000px;}
.w15{width:77.662500px;}
.w33{width:78.412500px;}
.w37{width:78.787500px;}
.w54{width:79.162500px;}
.w4c{width:79.530000px;}
.w5d{width:79.537500px;}
.w51{width:82.875000px;}
.w17{width:83.287500px;}
.w5a{width:84.375000px;}
.w45{width:84.750000px;}
.w4e{width:85.537500px;}
.w1c{width:88.162500px;}
.w46{width:88.537500px;}
.w35{width:89.287500px;}
.w56{width:91.162500px;}
.w5e{width:94.162500px;}
.w53{width:94.537500px;}
.w30{width:95.287500px;}
.w4a{width:95.662500px;}
.w2d{width:96.412500px;}
.w4b{width:100.875000px;}
.w47{width:101.287500px;}
.w23{width:102.412500px;}
.w24{width:106.537500px;}
.we{width:106.912500px;}
.w52{width:108.787500px;}
.w1a{width:111.450000px;}
.w58{width:112.537500px;}
.w32{width:112.912500px;}
.w34{width:113.325000px;}
.w44{width:114.412500px;}
.w49{width:116.287500px;}
.w2e{width:116.325000px;}
.w60{width:116.662500px;}
.w28{width:116.700000px;}
.w31{width:117.450000px;}
.w5c{width:120.787500px;}
.w27{width:122.325000px;}
.w5b{width:124.912500px;}
.w20{width:128.287500px;}
.w1b{width:135.075000px;}
.w11{width:137.700000px;}
.w48{width:143.287500px;}
.w2b{width:148.200000px;}
.w1e{width:162.075000px;}
.w2f{width:168.450000px;}
.wa{width:178.950000px;}
.w4d{width:180.825000px;}
.w14{width:181.200000px;}
.w57{width:184.905000px;}
.w18{width:189.075000px;}
.w3e{width:195.075000px;}
.w2c{width:202.950000px;}
.w42{width:208.545000px;}
.w4{width:208.575000px;}
.w13{width:209.325000px;}
.w5{width:209.370000px;}
.wf{width:211.995000px;}
.w22{width:216.495000px;}
.w29{width:223.575000px;}
.w8{width:243.495000px;}
.w21{width:244.620000px;}
.w25{width:248.745000px;}
.w1f{width:256.575000px;}
.w43{width:272.700000px;}
.w3d{width:273.105000px;}
.w26{width:288.495000px;}
.w10{width:309.120000px;}
.w19{width:321.870000px;}
.w2a{width:361.275000px;}
.w9{width:431.445000px;}
.w1d{width:442.695000px;}
.w41{width:467.775000px;}
.w3{width:467.850000px;}
.w6{width:491.070000px;}
.wb{width:519.975000px;}
.w12{width:535.725000px;}
.w3b{width:540.750000px;}
.w3a{width:543.375000px;}
.w3c{width:547.125000px;}
.w7{width:677.175000px;}
.w39{width:701.175000px;}
.wc{width:702.300000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.w40{width:1262.999981px;}
.w3f{width:1263.000000px;}
.x8b{left:-1.875000px;}
.x0{left:0.000000px;}
.x58{left:1.125000px;}
.x95{left:2.625000px;}
.x5a{left:5.625000px;}
.xe{left:7.125000px;}
.x5{left:8.250000px;}
.x1d{left:9.375000px;}
.x8a{left:10.500000px;}
.x13{left:12.000000px;}
.x23{left:14.250000px;}
.x4b{left:15.780000px;}
.x20{left:17.250000px;}
.x4f{left:18.375000px;}
.x43{left:20.625000px;}
.x5b{left:22.125000px;}
.x27{left:23.625000px;}
.x4e{left:25.155000px;}
.x7e{left:26.250000px;}
.x25{left:27.750000px;}
.x37{left:28.860000px;}
.x28{left:30.750000px;}
.x21{left:32.250000px;}
.x1f{left:33.750000px;}
.x38{left:36.360000px;}
.x46{left:37.875000px;}
.x44{left:39.375000px;}
.x12{left:41.287500px;}
.x4c{left:43.545000px;}
.x39{left:45.405000px;}
.x24{left:47.610000px;}
.x26{left:48.795000px;}
.x3b{left:50.250000px;}
.x45{left:51.375000px;}
.x6b{left:53.100000px;}
.x3a{left:55.125000px;}
.x3d{left:57.375000px;}
.x22{left:59.280000px;}
.x3c{left:60.750000px;}
.x2c{left:66.030000px;}
.x33{left:69.000000px;}
.x3f{left:71.250000px;}
.x4d{left:73.170000px;}
.x2e{left:74.280000px;}
.x3e{left:77.625000px;}
.x2d{left:82.530000px;}
.x5f{left:87.412500px;}
.x51{left:89.670000px;}
.x35{left:99.405000px;}
.x49{left:104.295000px;}
.x50{left:105.795000px;}
.x4{left:108.037487px;}
.xd{left:110.287500px;}
.x40{left:111.787500px;}
.x47{left:117.037500px;}
.x29{left:119.280000px;}
.x7{left:132.030000px;}
.x1a{left:135.450000px;}
.x19{left:139.949987px;}
.x14{left:144.074987px;}
.x31{left:146.700000px;}
.x71{left:150.450000px;}
.x5c{left:162.074987px;}
.x6f{left:171.750000px;}
.x6a{left:174.000000px;}
.x6c{left:175.125000px;}
.x10{left:182.700000px;}
.xb{left:190.582500px;}
.x60{left:201.825000px;}
.x17{left:210.449987px;}
.x52{left:224.745000px;}
.x70{left:226.875000px;}
.x5e{left:239.369987px;}
.x2f{left:243.120000px;}
.x15{left:247.245000px;}
.x8c{left:250.575000px;}
.x80{left:252.119987px;}
.x54{left:256.245000px;}
.x68{left:261.494987px;}
.xa{left:274.237500px;}
.x61{left:281.745000px;}
.xf{left:289.995000px;}
.x2{left:306.899987px;}
.x32{left:308.775000px;}
.x82{left:310.620000px;}
.x8{left:318.900000px;}
.x2a{left:324.525000px;}
.x30{left:331.275000px;}
.x75{left:338.370000px;}
.x1b{left:344.775000px;}
.x6e{left:350.774987px;}
.xc{left:353.025000px;}
.x41{left:356.400000px;}
.x8d{left:363.120000px;}
.x48{left:365.775000px;}
.x83{left:380.745000px;}
.x62{left:396.570000px;}
.x72{left:423.570000px;}
.x8e{left:437.400000px;}
.x53{left:448.320000px;}
.x76{left:452.775000px;}
.x55{left:459.195000px;}
.x63{left:487.350000px;}
.x34{left:489.975000px;}
.x11{left:503.100000px;}
.x8f{left:521.775000px;}
.x1c{left:525.975000px;}
.x84{left:536.400000px;}
.x77{left:537.525000px;}
.x59{left:554.475000px;}
.x56{left:555.600000px;}
.x64{left:563.475000px;}
.x9{left:568.724987px;}
.x42{left:572.895000px;}
.x6{left:575.895000px;}
.x1{left:590.879987px;}
.x1e{left:603.645000px;}
.x36{left:618.270000px;}
.x3{left:619.379987px;}
.x78{left:626.070000px;}
.x65{left:643.770000px;}
.x74{left:644.819981px;}
.x2b{left:646.395000px;}
.x4a{left:654.270000px;}
.x57{left:671.925000px;}
.x18{left:674.924987px;}
.x66{left:710.925000px;}
.x69{left:717.674987px;}
.x67{left:718.799987px;}
.x6d{left:721.049987px;}
.x79{left:727.350000px;}
.x85{left:739.725000px;}
.x90{left:767.475000px;}
.x16{left:775.829987px;}
.x7f{left:776.954987px;}
.x86{left:818.130000px;}
.x91{left:847.005000px;}
.x7a{left:870.630000px;}
.x81{left:871.874987px;}
.x5d{left:886.874987px;}
.x87{left:901.005000px;}
.x92{left:931.380000px;}
.x73{left:961.049981px;}
.x88{left:980.175000px;}
.x7b{left:986.925000px;}
.x93{left:1025.550000px;}
.x89{left:1049.925000px;}
.x7c{left:1082.595000px;}
.x94{left:1085.970000px;}
.x7d{left:1183.470000px;}
@media print{
.v2{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls27{letter-spacing:-1.461333pt;}
.ls28{letter-spacing:-1.386667pt;}
.ls21{letter-spacing:-0.714667pt;}
.ls41{letter-spacing:-0.613333pt;}
.ls1e{letter-spacing:-0.565333pt;}
.ls1d{letter-spacing:-0.522667pt;}
.ls9{letter-spacing:-0.469333pt;}
.lsa{letter-spacing:-0.448000pt;}
.ls2f{letter-spacing:-0.410667pt;}
.ls2b{letter-spacing:-0.394667pt;}
.ls3b{letter-spacing:-0.336000pt;}
.ls31{letter-spacing:-0.330667pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls3e{letter-spacing:-0.298667pt;}
.ls2c{letter-spacing:-0.213333pt;}
.ls3a{letter-spacing:-0.181333pt;}
.ls2d{letter-spacing:-0.170667pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls2a{letter-spacing:-0.106667pt;}
.lsc{letter-spacing:-0.085333pt;}
.ls42{letter-spacing:-0.058667pt;}
.ls26{letter-spacing:-0.053333pt;}
.ls20{letter-spacing:-0.042667pt;}
.ls32{letter-spacing:-0.026667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.010667pt;}
.ls30{letter-spacing:0.074667pt;}
.ls39{letter-spacing:0.085333pt;}
.ls16{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.138667pt;}
.lse{letter-spacing:0.181333pt;}
.ls2e{letter-spacing:0.192000pt;}
.ls37{letter-spacing:0.202667pt;}
.ls6{letter-spacing:0.245333pt;}
.ls34{letter-spacing:0.277333pt;}
.ls24{letter-spacing:0.309333pt;}
.ls22{letter-spacing:0.352000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.416000pt;}
.ls25{letter-spacing:0.437333pt;}
.ls3f{letter-spacing:0.458667pt;}
.ls8{letter-spacing:0.469333pt;}
.lsf{letter-spacing:0.517333pt;}
.ls43{letter-spacing:0.554667pt;}
.ls5{letter-spacing:0.608000pt;}
.ls3{letter-spacing:0.629333pt;}
.lsb{letter-spacing:0.640000pt;}
.ls40{letter-spacing:0.682667pt;}
.ls10{letter-spacing:0.789333pt;}
.ls13{letter-spacing:0.821333pt;}
.ls12{letter-spacing:0.874667pt;}
.ls11{letter-spacing:0.885333pt;}
.ls36{letter-spacing:1.205333pt;}
.ls2{letter-spacing:1.472000pt;}
.ls1c{letter-spacing:2.154667pt;}
.ls33{letter-spacing:4.117333pt;}
.ls29{letter-spacing:4.224000pt;}
.ls15{letter-spacing:4.874667pt;}
.ls38{letter-spacing:5.536000pt;}
.ls19{letter-spacing:7.541333pt;}
.ls3c{letter-spacing:8.309333pt;}
.ls18{letter-spacing:8.821333pt;}
.ls17{letter-spacing:13.536000pt;}
.ls1b{letter-spacing:15.541333pt;}
.ls1a{letter-spacing:16.202667pt;}
.ls3d{letter-spacing:48.874667pt;}
.ls35{letter-spacing:58.208000pt;}
.ls0{letter-spacing:149.536000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws1d{word-spacing:-63.829333pt;}
.wsb{word-spacing:-18.208000pt;}
.wsc{word-spacing:-17.792000pt;}
.ws6{word-spacing:-16.874667pt;}
.ws5{word-spacing:-15.104000pt;}
.ws14{word-spacing:-15.072000pt;}
.ws0{word-spacing:-15.018667pt;}
.ws17{word-spacing:-14.901333pt;}
.ws13{word-spacing:-14.816000pt;}
.ws31{word-spacing:-14.741333pt;}
.wsa{word-spacing:-14.709333pt;}
.wsd{word-spacing:-14.592000pt;}
.ws1{word-spacing:-14.549333pt;}
.ws15{word-spacing:-14.474667pt;}
.ws3{word-spacing:-14.464000pt;}
.ws11{word-spacing:-14.421333pt;}
.ws16{word-spacing:-14.410667pt;}
.ws19{word-spacing:-14.357333pt;}
.ws7{word-spacing:-14.336000pt;}
.ws10{word-spacing:-14.144000pt;}
.ws1a{word-spacing:-14.069333pt;}
.ws4{word-spacing:-14.016000pt;}
.ws33{word-spacing:-13.994667pt;}
.wse{word-spacing:-13.941333pt;}
.wsf{word-spacing:-13.898667pt;}
.ws9{word-spacing:-13.776000pt;}
.ws12{word-spacing:-13.749333pt;}
.ws1e{word-spacing:-13.450667pt;}
.ws1b{word-spacing:-13.258667pt;}
.ws21{word-spacing:-13.232000pt;}
.ws18{word-spacing:-13.077333pt;}
.ws1c{word-spacing:-13.045333pt;}
.ws20{word-spacing:-12.928000pt;}
.ws1f{word-spacing:-12.848000pt;}
.ws29{word-spacing:-12.426667pt;}
.ws27{word-spacing:-11.968000pt;}
.ws26{word-spacing:-11.584000pt;}
.ws2a{word-spacing:-11.520000pt;}
.ws28{word-spacing:-11.445333pt;}
.ws23{word-spacing:-10.848000pt;}
.ws24{word-spacing:-10.512000pt;}
.ws32{word-spacing:-10.197333pt;}
.ws22{word-spacing:-9.642667pt;}
.ws25{word-spacing:-9.344000pt;}
.ws30{word-spacing:-8.986667pt;}
.ws2c{word-spacing:-8.976000pt;}
.ws2f{word-spacing:-8.917333pt;}
.ws2b{word-spacing:-8.688000pt;}
.ws2d{word-spacing:-8.640000pt;}
.ws2e{word-spacing:-8.362667pt;}
.ws8{word-spacing:0.000000pt;}
._e{margin-left:-17.104000pt;}
._12{margin-left:-13.061333pt;}
._11{margin-left:-11.722667pt;}
._10{margin-left:-9.824000pt;}
._27{margin-left:-8.394667pt;}
._c{margin-left:-7.488000pt;}
._14{margin-left:-6.421333pt;}
._f{margin-left:-5.296000pt;}
._d{margin-left:-3.733333pt;}
._6{margin-left:-2.368000pt;}
._0{margin-left:-1.045333pt;}
._3{width:1.045333pt;}
._5{width:1.946667pt;}
._7{width:3.317333pt;}
._b{width:4.373333pt;}
._9{width:5.301333pt;}
._a{width:6.720000pt;}
._13{width:7.898667pt;}
._1f{width:9.216000pt;}
._1c{width:10.405333pt;}
._1a{width:11.392000pt;}
._19{width:12.480000pt;}
._23{width:13.552000pt;}
._1e{width:15.424000pt;}
._22{width:16.810667pt;}
._26{width:17.706667pt;}
._21{width:18.602667pt;}
._1b{width:20.010667pt;}
._39{width:21.466667pt;}
._1d{width:22.357333pt;}
._15{width:23.829333pt;}
._16{width:24.725333pt;}
._17{width:26.186667pt;}
._18{width:27.280000pt;}
._25{width:34.112000pt;}
._24{width:35.008000pt;}
._4b{width:48.042667pt;}
._49{width:49.088000pt;}
._4a{width:50.437333pt;}
._36{width:53.545067pt;}
._2c{width:56.640000pt;}
._3c{width:57.749333pt;}
._4d{width:63.722667pt;}
._4c{width:64.938667pt;}
._31{width:66.016000pt;}
._3a{width:67.136000pt;}
._3b{width:68.261333pt;}
._3d{width:93.077333pt;}
._3e{width:94.266667pt;}
._38{width:99.866667pt;}
._45{width:106.816000pt;}
._46{width:107.749333pt;}
._40{width:110.138667pt;}
._41{width:111.445333pt;}
._3f{width:112.384000pt;}
._42{width:129.728000pt;}
._37{width:146.192000pt;}
._2d{width:148.858667pt;}
._43{width:152.832000pt;}
._44{width:154.074667pt;}
._32{width:155.152000pt;}
._48{width:158.464000pt;}
._47{width:159.424000pt;}
._2a{width:183.939200pt;}
._2f{width:186.906667pt;}
._29{width:188.703333pt;}
._2e{width:192.378667pt;}
._28{width:193.841200pt;}
._34{width:197.978667pt;}
._33{width:202.586667pt;}
._35{width:210.031867pt;}
._2b{width:212.698667pt;}
._30{width:218.992000pt;}
._1{width:411.808000pt;}
._4{width:574.581333pt;}
._2{width:719.861333pt;}
._8{width:753.936000pt;}
._20{width:755.920000pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:48.133333pt;}
.fs7{font-size:53.466667pt;}
.fs4{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:64.133333pt;}
.fs2{font-size:74.666667pt;}
.fs3{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.333333pt;}
.y209{bottom:3.346667pt;}
.y212{bottom:3.360000pt;}
.y280{bottom:3.666667pt;}
.yff{bottom:4.000000pt;}
.y1b{bottom:4.320000pt;}
.yb{bottom:4.333333pt;}
.y70{bottom:4.346667pt;}
.y6a{bottom:4.360000pt;}
.y7d{bottom:4.373333pt;}
.y18e{bottom:4.653333pt;}
.y1d7{bottom:4.666667pt;}
.y2d2{bottom:4.680000pt;}
.yef{bottom:5.000000pt;}
.y102{bottom:5.013333pt;}
.y103{bottom:5.026667pt;}
.y13d{bottom:5.040000pt;}
.y158{bottom:5.320000pt;}
.ye3{bottom:5.333333pt;}
.yeb{bottom:5.340000pt;}
.ye9{bottom:5.346667pt;}
.y290{bottom:5.373333pt;}
.y12e{bottom:5.653333pt;}
.y127{bottom:5.666667pt;}
.yf2{bottom:6.000000pt;}
.y13c{bottom:6.040000pt;}
.yec{bottom:6.326667pt;}
.y31{bottom:6.333333pt;}
.yea{bottom:6.373333pt;}
.y2c8{bottom:6.666667pt;}
.y2d{bottom:7.666667pt;}
.y2ac{bottom:8.653333pt;}
.y33{bottom:8.666667pt;}
.y2f{bottom:8.693333pt;}
.y117{bottom:11.000000pt;}
.y151{bottom:11.333333pt;}
.y18{bottom:11.666667pt;}
.y182{bottom:12.333333pt;}
.y135{bottom:13.000000pt;}
.y1a6{bottom:14.000000pt;}
.y1b4{bottom:14.006667pt;}
.y16{bottom:15.000000pt;}
.y1cf{bottom:15.673333pt;}
.y2b6{bottom:18.000000pt;}
.y2bc{bottom:18.040000pt;}
.y23c{bottom:19.000000pt;}
.y253{bottom:19.066667pt;}
.y235{bottom:19.133333pt;}
.ydf{bottom:19.333333pt;}
.y2aa{bottom:19.666667pt;}
.yfe{bottom:22.000000pt;}
.y7{bottom:22.666667pt;}
.y27f{bottom:23.000000pt;}
.y125{bottom:23.666667pt;}
.y1d3{bottom:23.693333pt;}
.y1db{bottom:23.986667pt;}
.y123{bottom:23.993333pt;}
.y21{bottom:24.000000pt;}
.y1a3{bottom:24.040000pt;}
.y18d{bottom:24.320000pt;}
.y1aa{bottom:24.333333pt;}
.y2d4{bottom:24.346667pt;}
.yfa{bottom:24.360000pt;}
.y106{bottom:24.666667pt;}
.y101{bottom:24.706667pt;}
.y1d5{bottom:25.000000pt;}
.ye7{bottom:25.006667pt;}
.y156{bottom:25.320000pt;}
.y168{bottom:25.333333pt;}
.y122{bottom:25.340000pt;}
.y16c{bottom:25.666667pt;}
.y2c7{bottom:26.000000pt;}
.y119{bottom:26.666667pt;}
.y136{bottom:26.693333pt;}
.y11f{bottom:27.000000pt;}
.y6{bottom:28.333333pt;}
.y206{bottom:31.653333pt;}
.y9{bottom:33.333333pt;}
.y2a9{bottom:34.333333pt;}
.y204{bottom:38.986667pt;}
.yfc{bottom:41.666667pt;}
.y165{bottom:42.000000pt;}
.y133{bottom:42.666667pt;}
.y11a{bottom:43.320000pt;}
.y20{bottom:43.333333pt;}
.y1e0{bottom:43.360000pt;}
.y120{bottom:43.666667pt;}
.y1d2{bottom:44.026667pt;}
.yf5{bottom:44.333333pt;}
.ye1{bottom:44.666667pt;}
.y11c{bottom:44.706667pt;}
.y11e{bottom:45.000000pt;}
.y153{bottom:45.333333pt;}
.y2c6{bottom:45.666667pt;}
.y205{bottom:46.360000pt;}
.y23b{bottom:48.333333pt;}
.y27e{bottom:48.366667pt;}
.y252{bottom:48.400000pt;}
.y234{bottom:48.466667pt;}
.y5{bottom:48.700000pt;}
.y207{bottom:53.693333pt;}
.y1a1{bottom:54.333333pt;}
.y12c{bottom:62.666667pt;}
.y1d1{bottom:63.360000pt;}
.y12b{bottom:64.000000pt;}
.y1de{bottom:64.026667pt;}
.y2c5{bottom:65.000000pt;}
.y1a0{bottom:73.666667pt;}
.y185{bottom:75.040000pt;}
.y23a{bottom:77.666667pt;}
.y251{bottom:77.760000pt;}
.y233{bottom:77.800000pt;}
.y194{bottom:85.360000pt;}
.y4{bottom:91.700000pt;}
.y184{bottom:94.706667pt;}
.y193{bottom:104.693333pt;}
.y24f{bottom:106.800000pt;}
.y237{bottom:107.666667pt;}
.y24e{bottom:107.773333pt;}
.y230{bottom:107.840000pt;}
.yed{bottom:109.033333pt;}
.y238{bottom:112.773333pt;}
.y9c{bottom:113.033333pt;}
.y231{bottom:120.173333pt;}
.y1a7{bottom:120.366667pt;}
.y201{bottom:120.700000pt;}
.y22e{bottom:121.700000pt;}
.y191{bottom:125.360000pt;}
.y121{bottom:126.033333pt;}
.y2d6{bottom:127.066667pt;}
.y26c{bottom:127.366667pt;}
.ye6{bottom:128.700000pt;}
.y2a0{bottom:129.366667pt;}
.y180{bottom:135.360000pt;}
.y1a8{bottom:135.366667pt;}
.y2c3{bottom:136.400000pt;}
.y62{bottom:137.040000pt;}
.yd3{bottom:141.706667pt;}
.y9b{bottom:142.373333pt;}
.y224{bottom:143.373333pt;}
.y14d{bottom:145.373333pt;}
.y2fb{bottom:145.706667pt;}
.y26b{bottom:148.026667pt;}
.ye8{bottom:148.360000pt;}
.y2c2{bottom:149.400000pt;}
.y200{bottom:150.026667pt;}
.y22d{bottom:151.040000pt;}
.y61{bottom:156.733333pt;}
.y1b2{bottom:160.066667pt;}
.y1ce{bottom:160.733333pt;}
.yd2{bottom:161.066667pt;}
.y2c1{bottom:162.400000pt;}
.y17f{bottom:164.733333pt;}
.y14c{bottom:165.066667pt;}
.y11d{bottom:165.733333pt;}
.y2d5{bottom:166.733333pt;}
.ye5{bottom:168.066667pt;}
.y26a{bottom:168.733333pt;}
.y9a{bottom:171.733333pt;}
.y223{bottom:172.733333pt;}
.y1cd{bottom:173.733333pt;}
.y2c0{bottom:175.400000pt;}
.y29f{bottom:176.066667pt;}
.y60{bottom:176.400000pt;}
.y1ff{bottom:179.400000pt;}
.y1b3{bottom:180.400000pt;}
.yd1{bottom:180.733333pt;}
.y14b{bottom:184.733333pt;}
.ye0{bottom:187.733333pt;}
.y2bf{bottom:188.733333pt;}
.y269{bottom:189.400000pt;}
.y17e{bottom:194.066667pt;}
.y5f{bottom:195.733333pt;}
.y1cc{bottom:197.733333pt;}
.yd0{bottom:200.400000pt;}
.y99{bottom:201.066667pt;}
.y222{bottom:202.066667pt;}
.y14a{bottom:204.066667pt;}
.y2fa{bottom:204.400000pt;}
.y2d3{bottom:206.426667pt;}
.ye4{bottom:207.400000pt;}
.y1fe{bottom:208.733333pt;}
.y22c{bottom:209.733333pt;}
.y268{bottom:210.066667pt;}
.y1f{bottom:211.733333pt;}
.yac{bottom:213.400000pt;}
.y5e{bottom:215.400000pt;}
.y2be{bottom:219.426667pt;}
.ycf{bottom:219.733333pt;}
.y1b1{bottom:220.733333pt;}
.y17d{bottom:223.400000pt;}
.y149{bottom:223.733333pt;}
.y11b{bottom:225.066667pt;}
.ye2{bottom:227.066667pt;}
.y98{bottom:230.400000pt;}
.y221{bottom:231.400000pt;}
.y29e{bottom:233.400000pt;}
.y5d{bottom:234.733333pt;}
.y1fd{bottom:238.066667pt;}
.y22b{bottom:239.066667pt;}
.yce{bottom:239.400000pt;}
.y2bd{bottom:239.426667pt;}
.y1b0{bottom:241.066667pt;}
.yab{bottom:242.733333pt;}
.y148{bottom:243.066667pt;}
.y2f9{bottom:243.400000pt;}
.y2d1{bottom:246.093333pt;}
.y29d{bottom:246.400000pt;}
.yde{bottom:246.733333pt;}
.y17c{bottom:252.733333pt;}
.y250{bottom:253.373333pt;}
.y267{bottom:253.733333pt;}
.y5c{bottom:254.400000pt;}
.y1cb{bottom:256.066667pt;}
.ycd{bottom:258.733333pt;}
.y239{bottom:259.466667pt;}
.y97{bottom:259.733333pt;}
.y2bb{bottom:260.093333pt;}
.y220{bottom:260.733333pt;}
.y1af{bottom:261.066667pt;}
.y147{bottom:262.733333pt;}
.y232{bottom:266.706667pt;}
.y1fc{bottom:267.400000pt;}
.y22a{bottom:268.400000pt;}
.y24c{bottom:268.733333pt;}
.y1e{bottom:271.106667pt;}
.yaa{bottom:272.106667pt;}
.y29c{bottom:273.426667pt;}
.y5b{bottom:273.760000pt;}
.y1ad{bottom:281.440000pt;}
.y17b{bottom:282.093333pt;}
.ycc{bottom:282.426667pt;}
.ydd{bottom:283.773333pt;}
.y118{bottom:284.440000pt;}
.y1ca{bottom:285.426667pt;}
.y266{bottom:285.760000pt;}
.y2d0{bottom:285.800000pt;}
.y96{bottom:289.106667pt;}
.y21f{bottom:290.106667pt;}
.y2ba{bottom:290.133333pt;}
.y1d{bottom:291.106667pt;}
.y5a{bottom:293.440000pt;}
.y293{bottom:294.466667pt;}
.y1fb{bottom:296.773333pt;}
.ydc{bottom:297.760000pt;}
.y24b{bottom:298.106667pt;}
.y1ed{bottom:299.106667pt;}
.ya9{bottom:301.440000pt;}
.y146{bottom:301.773333pt;}
.ycb{bottom:302.106667pt;}
.y2b9{bottom:310.800000pt;}
.y1c{bottom:311.440000pt;}
.y59{bottom:313.106667pt;}
.y1c9{bottom:314.773333pt;}
.y265{bottom:315.093333pt;}
.y292{bottom:315.133333pt;}
.ydb{bottom:315.760000pt;}
.y95{bottom:318.426667pt;}
.y21e{bottom:319.440000pt;}
.y145{bottom:321.426667pt;}
.y1ae{bottom:321.773333pt;}
.yca{bottom:325.440000pt;}
.y1fa{bottom:325.773333pt;}
.y2cf{bottom:325.800000pt;}
.y229{bottom:326.773333pt;}
.y24a{bottom:327.426667pt;}
.y1ec{bottom:328.440000pt;}
.ya8{bottom:330.426667pt;}
.y1a{bottom:331.773333pt;}
.y58{bottom:332.440000pt;}
.yda{bottom:335.440000pt;}
.y291{bottom:335.800000pt;}
.y144{bottom:340.773333pt;}
.y2b8{bottom:340.800000pt;}
.y2f8{bottom:341.106667pt;}
.y1a9{bottom:342.106667pt;}
.y116{bottom:343.773333pt;}
.y1c8{bottom:344.106667pt;}
.y264{bottom:344.440000pt;}
.yc9{bottom:345.093333pt;}
.y228{bottom:345.426667pt;}
.y94{bottom:347.440000pt;}
.y21d{bottom:348.760000pt;}
.y19{bottom:351.773333pt;}
.y57{bottom:352.106667pt;}
.yd9{bottom:354.773333pt;}
.y1f9{bottom:355.106667pt;}
.y28f{bottom:356.466667pt;}
.y249{bottom:356.773333pt;}
.y1eb{bottom:357.773333pt;}
.ya7{bottom:359.773333pt;}
.y143{bottom:360.440000pt;}
.y2b7{bottom:361.506667pt;}
.y1ac{bottom:362.106667pt;}
.yc8{bottom:364.440000pt;}
.y227{bottom:365.106667pt;}
.y2ce{bottom:365.506667pt;}
.y236{bottom:366.333333pt;}
.y17a{bottom:370.106667pt;}
.y56{bottom:371.440000pt;}
.y1c7{bottom:373.440000pt;}
.yd8{bottom:374.440000pt;}
.y142{bottom:376.106667pt;}
.y93{bottom:376.773333pt;}
.y28e{bottom:377.173333pt;}
.y21c{bottom:377.773333pt;}
.y115{bottom:379.440000pt;}
.y2f7{bottom:380.106667pt;}
.y2b5{bottom:382.173333pt;}
.y1ab{bottom:382.440000pt;}
.yc7{bottom:384.133333pt;}
.y1f8{bottom:384.466667pt;}
.y248{bottom:386.133333pt;}
.y1ea{bottom:387.133333pt;}
.ya6{bottom:389.133333pt;}
.y55{bottom:391.133333pt;}
.y114{bottom:393.800000pt;}
.yd7{bottom:394.133333pt;}
.y141{bottom:396.800000pt;}
.y28d{bottom:397.840000pt;}
.y179{bottom:399.133333pt;}
.y2f6{bottom:399.800000pt;}
.y19f{bottom:402.466667pt;}
.y1c6{bottom:402.800000pt;}
.yc6{bottom:403.800000pt;}
.y2cd{bottom:405.173333pt;}
.y92{bottom:406.133333pt;}
.y21b{bottom:407.133333pt;}
.y54{bottom:410.800000pt;}
.y263{bottom:411.133333pt;}
.y2b4{bottom:412.173333pt;}
.y113{bottom:413.133333pt;}
.yd6{bottom:413.466667pt;}
.y1f7{bottom:413.800000pt;}
.y247{bottom:415.466667pt;}
.y1e9{bottom:416.466667pt;}
.ya5{bottom:418.466667pt;}
.y28c{bottom:418.506667pt;}
.y2f5{bottom:419.133333pt;}
.yc5{bottom:423.133333pt;}
.y21a{bottom:423.800000pt;}
.y16e{bottom:424.800000pt;}
.y178{bottom:428.466667pt;}
.y53{bottom:430.133333pt;}
.y1c5{bottom:432.133333pt;}
.yd5{bottom:432.800000pt;}
.y2b3{bottom:432.840000pt;}
.y13f{bottom:433.466667pt;}
.y91{bottom:435.466667pt;}
.y2f4{bottom:438.800000pt;}
.y28b{bottom:439.200000pt;}
.y16b{bottom:439.466667pt;}
.y1a5{bottom:442.466667pt;}
.yc4{bottom:442.800000pt;}
.y1f6{bottom:443.133333pt;}
.y219{bottom:444.466667pt;}
.y246{bottom:444.800000pt;}
.y2cc{bottom:444.866667pt;}
.y1e8{bottom:445.800000pt;}
.ya4{bottom:447.800000pt;}
.y262{bottom:449.133333pt;}
.y52{bottom:449.800000pt;}
.y112{bottom:452.466667pt;}
.y2b2{bottom:453.533333pt;}
.y140{bottom:454.133333pt;}
.y177{bottom:457.800000pt;}
.y2f3{bottom:458.133333pt;}
.y16d{bottom:459.466667pt;}
.yd4{bottom:459.800000pt;}
.y28a{bottom:459.866667pt;}
.y7f{bottom:460.800000pt;}
.y1c4{bottom:461.466667pt;}
.yc3{bottom:462.133333pt;}
.y90{bottom:464.800000pt;}
.y218{bottom:465.133333pt;}
.y51{bottom:469.133333pt;}
.y111{bottom:471.800000pt;}
.y1f5{bottom:472.466667pt;}
.y245{bottom:474.133333pt;}
.y2b1{bottom:474.200000pt;}
.y13e{bottom:474.800000pt;}
.y1e7{bottom:475.133333pt;}
.ya3{bottom:477.133333pt;}
.y2f2{bottom:477.800000pt;}
.y16a{bottom:479.466667pt;}
.y7e{bottom:480.466667pt;}
.y289{bottom:480.533333pt;}
.yc2{bottom:481.800000pt;}
.y1a2{bottom:482.133333pt;}
.y2cb{bottom:484.533333pt;}
.y217{bottom:485.800000pt;}
.y176{bottom:487.133333pt;}
.y50{bottom:488.800000pt;}
.y1c3{bottom:490.800000pt;}
.y110{bottom:491.466667pt;}
.y8f{bottom:494.133333pt;}
.y2b0{bottom:494.866667pt;}
.y13b{bottom:495.466667pt;}
.y7c{bottom:496.133333pt;}
.y29b{bottom:496.466667pt;}
.y2f1{bottom:497.133333pt;}
.y167{bottom:499.173333pt;}
.yc1{bottom:501.173333pt;}
.y288{bottom:501.200000pt;}
.y1f4{bottom:501.840000pt;}
.y1a4{bottom:502.173333pt;}
.y244{bottom:503.173333pt;}
.y306{bottom:503.506667pt;}
.y1e6{bottom:504.506667pt;}
.ya2{bottom:505.506667pt;}
.y216{bottom:506.506667pt;}
.y4f{bottom:508.506667pt;}
.y10f{bottom:510.840000pt;}
.y2af{bottom:515.533333pt;}
.y13a{bottom:516.173333pt;}
.y7b{bottom:516.506667pt;}
.y2f0{bottom:516.840000pt;}
.y29a{bottom:518.840000pt;}
.y169{bottom:519.173333pt;}
.y1c2{bottom:519.840000pt;}
.yc0{bottom:520.840000pt;}
.y287{bottom:521.893333pt;}
.ya1{bottom:522.506667pt;}
.y305{bottom:523.173333pt;}
.y8e{bottom:523.506667pt;}
.y2ca{bottom:524.560000pt;}
.y215{bottom:527.173333pt;}
.y4e{bottom:527.840000pt;}
.y299{bottom:528.840000pt;}
.y10e{bottom:530.506667pt;}
.y1f3{bottom:531.173333pt;}
.y243{bottom:532.506667pt;}
.y1e5{bottom:533.506667pt;}
.y2ae{bottom:536.226667pt;}
.y2ef{bottom:536.506667pt;}
.y7a{bottom:536.840000pt;}
.y2da{bottom:538.560000pt;}
.y164{bottom:539.173333pt;}
.ybf{bottom:540.506667pt;}
.ya0{bottom:541.173333pt;}
.y190{bottom:541.840000pt;}
.y304{bottom:542.506667pt;}
.y286{bottom:542.560000pt;}
.y175{bottom:545.840000pt;}
.y4d{bottom:547.506667pt;}
.y214{bottom:547.840000pt;}
.y1c1{bottom:549.173333pt;}
.y10d{bottom:550.173333pt;}
.y8d{bottom:552.840000pt;}
.y261{bottom:553.840000pt;}
.y2ee{bottom:555.840000pt;}
.y79{bottom:556.840000pt;}
.y2ad{bottom:556.893333pt;}
.y1e4{bottom:557.173333pt;}
.y138{bottom:557.506667pt;}
.y166{bottom:559.173333pt;}
.ybe{bottom:559.840000pt;}
.y1f2{bottom:560.506667pt;}
.y242{bottom:561.840000pt;}
.y19e{bottom:562.173333pt;}
.y285{bottom:563.226667pt;}
.y2c9{bottom:564.240000pt;}
.y4c{bottom:566.840000pt;}
.y213{bottom:568.506667pt;}
.y10c{bottom:569.506667pt;}
.y27b{bottom:570.173333pt;}
.y174{bottom:575.173333pt;}
.y2ed{bottom:575.506667pt;}
.y78{bottom:577.173333pt;}
.y2ab{bottom:577.573333pt;}
.y139{bottom:578.173333pt;}
.y2d9{bottom:578.240000pt;}
.y1c0{bottom:578.506667pt;}
.ybd{bottom:579.506667pt;}
.y303{bottom:581.506667pt;}
.y8c{bottom:582.173333pt;}
.y19d{bottom:582.506667pt;}
.y260{bottom:583.173333pt;}
.y284{bottom:583.906667pt;}
.y10b{bottom:589.173333pt;}
.y1f1{bottom:589.506667pt;}
.y1e3{bottom:590.506667pt;}
.y241{bottom:591.173333pt;}
.y4b{bottom:594.840000pt;}
.y163{bottom:595.506667pt;}
.y77{bottom:597.173333pt;}
.y2a8{bottom:598.266667pt;}
.ybc{bottom:598.840000pt;}
.y302{bottom:601.173333pt;}
.y192{bottom:602.506667pt;}
.y2c4{bottom:603.933333pt;}
.y173{bottom:604.506667pt;}
.y283{bottom:604.600000pt;}
.y8b{bottom:605.173333pt;}
.y1e2{bottom:606.506667pt;}
.y1bf{bottom:607.840000pt;}
.y10a{bottom:608.506667pt;}
.y27a{bottom:609.173333pt;}
.y211{bottom:609.840000pt;}
.y25f{bottom:612.533333pt;}
.y4a{bottom:614.200000pt;}
.y2ec{bottom:614.533333pt;}
.y76{bottom:617.533333pt;}
.y2d8{bottom:618.266667pt;}
.ybb{bottom:618.533333pt;}
.y137{bottom:619.533333pt;}
.y240{bottom:620.533333pt;}
.y301{bottom:620.866667pt;}
.y19c{bottom:622.866667pt;}
.y1f0{bottom:625.200000pt;}
.y282{bottom:625.266667pt;}
.y109{bottom:628.200000pt;}
.y279{bottom:628.866667pt;}
.y210{bottom:630.533333pt;}
.y162{bottom:632.866667pt;}
.y172{bottom:633.866667pt;}
.y2eb{bottom:634.200000pt;}
.y8a{bottom:637.200000pt;}
.y75{bottom:637.866667pt;}
.yba{bottom:638.200000pt;}
.y132{bottom:640.200000pt;}
.y49{bottom:641.866667pt;}
.y19b{bottom:642.866667pt;}
.y1ef{bottom:644.866667pt;}
.y14{bottom:645.866667pt;}
.y1e1{bottom:646.200000pt;}
.y2a7{bottom:647.600000pt;}
.y108{bottom:647.866667pt;}
.y278{bottom:648.200000pt;}
.y15f{bottom:648.866667pt;}
.y23f{bottom:649.866667pt;}
.y20f{bottom:651.200000pt;}
.y2ea{bottom:653.533333pt;}
.y226{bottom:654.200000pt;}
.yb9{bottom:657.533333pt;}
.y74{bottom:657.866667pt;}
.y2d7{bottom:657.933333pt;}
.y300{bottom:659.866667pt;}
.y48{bottom:661.200000pt;}
.y171{bottom:662.866667pt;}
.y19a{bottom:663.200000pt;}
.y105{bottom:663.533333pt;}
.y13{bottom:665.533333pt;}
.y89{bottom:666.533333pt;}
.y277{bottom:667.866667pt;}
.y23e{bottom:668.200000pt;}
.y161{bottom:668.866667pt;}
.y20e{bottom:671.866667pt;}
.y2e9{bottom:673.200000pt;}
.y225{bottom:673.866667pt;}
.y22f{bottom:676.000000pt;}
.y134{bottom:676.533333pt;}
.yb8{bottom:677.200000pt;}
.y73{bottom:678.200000pt;}
.y2a6{bottom:678.306667pt;}
.y25e{bottom:679.200000pt;}
.y107{bottom:683.200000pt;}
.y199{bottom:683.533333pt;}
.y12{bottom:684.866667pt;}
.y1dd{bottom:685.866667pt;}
.y1ee{bottom:686.866667pt;}
.y47{bottom:687.200000pt;}
.y281{bottom:687.626667pt;}
.y23d{bottom:687.866667pt;}
.y160{bottom:688.866667pt;}
.y24d{bottom:689.333333pt;}
.y170{bottom:692.200000pt;}
.y20d{bottom:692.533333pt;}
.y88{bottom:695.866667pt;}
.yb7{bottom:696.533333pt;}
.y72{bottom:698.200000pt;}
.y2ff{bottom:698.866667pt;}
.y17{bottom:700.200000pt;}
.y104{bottom:702.866667pt;}
.y198{bottom:703.533333pt;}
.y1df{bottom:706.533333pt;}
.y276{bottom:706.866667pt;}
.y25d{bottom:708.200000pt;}
.y15e{bottom:708.866667pt;}
.y2e8{bottom:712.200000pt;}
.y20c{bottom:713.200000pt;}
.y3c{bottom:713.866667pt;}
.y131{bottom:714.200000pt;}
.y46{bottom:715.200000pt;}
.y2fe{bottom:718.200000pt;}
.y71{bottom:718.533333pt;}
.y87{bottom:719.533333pt;}
.yb6{bottom:720.200000pt;}
.y100{bottom:721.533333pt;}
.y27d{bottom:721.960000pt;}
.y197{bottom:723.866667pt;}
.y1be{bottom:725.200000pt;}
.y15d{bottom:728.893333pt;}
.y2e7{bottom:731.893333pt;}
.y130{bottom:732.560000pt;}
.y3b{bottom:733.573333pt;}
.y20b{bottom:733.893333pt;}
.y27c{bottom:734.960000pt;}
.y25c{bottom:737.560000pt;}
.y2fd{bottom:737.893333pt;}
.y6f{bottom:738.893333pt;}
.y45{bottom:741.226667pt;}
.y15{bottom:742.226667pt;}
.y196{bottom:743.893333pt;}
.y15a{bottom:748.893333pt;}
.y3a{bottom:749.226667pt;}
.y16f{bottom:750.893333pt;}
.y2e6{bottom:751.226667pt;}
.yb5{bottom:752.240000pt;}
.y86{bottom:752.560000pt;}
.y20a{bottom:754.560000pt;}
.y1bd{bottom:754.573333pt;}
.y2fc{bottom:757.573333pt;}
.y275{bottom:758.560000pt;}
.y6e{bottom:758.893333pt;}
.yfb{bottom:760.893333pt;}
.y195{bottom:764.226667pt;}
.y1dc{bottom:765.893333pt;}
.y25b{bottom:766.893333pt;}
.y44{bottom:767.240000pt;}
.y12f{bottom:767.893333pt;}
.y15c{bottom:768.893333pt;}
.y39{bottom:769.560000pt;}
.y2e5{bottom:770.893333pt;}
.y208{bottom:775.226667pt;}
.y2a5{bottom:776.893333pt;}
.y274{bottom:778.560000pt;}
.y6d{bottom:779.226667pt;}
.yb4{bottom:780.226667pt;}
.yfd{bottom:780.560000pt;}
.y85{bottom:781.893333pt;}
.y1bc{bottom:783.560000pt;}
.y15b{bottom:788.893333pt;}
.y38{bottom:789.893333pt;}
.y2e4{bottom:790.226667pt;}
.y43{bottom:795.226667pt;}
.y203{bottom:795.906667pt;}
.y2a4{bottom:796.560000pt;}
.y6c{bottom:799.226667pt;}
.y11{bottom:802.560000pt;}
.y183{bottom:803.893333pt;}
.y18c{bottom:803.906667pt;}
.y25a{bottom:804.226667pt;}
.y2a{bottom:804.893333pt;}
.y1da{bottom:805.573333pt;}
.y159{bottom:808.893333pt;}
.y155{bottom:808.906667pt;}
.yb3{bottom:809.560000pt;}
.y2e3{bottom:809.893333pt;}
.y37{bottom:811.226667pt;}
.y1bb{bottom:812.893333pt;}
.y2a3{bottom:815.893333pt;}
.yf9{bottom:816.906667pt;}
.y6b{bottom:819.560000pt;}
.y273{bottom:819.893333pt;}
.y42{bottom:822.893333pt;}
.y29{bottom:824.226667pt;}
.y18f{bottom:824.240000pt;}
.y12d{bottom:827.240000pt;}
.y157{bottom:828.906667pt;}
.y2e2{bottom:829.560000pt;}
.y36{bottom:832.906667pt;}
.y259{bottom:833.560000pt;}
.y2a2{bottom:835.560000pt;}
.yb2{bottom:838.893333pt;}
.y69{bottom:839.906667pt;}
.y84{bottom:840.600000pt;}
.y1ba{bottom:842.266667pt;}
.y18b{bottom:844.266667pt;}
.y1d8{bottom:845.266667pt;}
.y12a{bottom:847.600000pt;}
.y41{bottom:848.933333pt;}
.y28{bottom:852.266667pt;}
.y2a1{bottom:855.266667pt;}
.y35{bottom:858.600000pt;}
.y68{bottom:859.933333pt;}
.y272{bottom:861.266667pt;}
.y258{bottom:862.933333pt;}
.y187{bottom:864.600000pt;}
.y1d9{bottom:865.933333pt;}
.yb1{bottom:868.266667pt;}
.y2e1{bottom:868.600000pt;}
.y152{bottom:868.933333pt;}
.y83{bottom:869.933333pt;}
.y1b9{bottom:870.600000pt;}
.yf8{bottom:872.933333pt;}
.y298{bottom:874.600000pt;}
.y40{bottom:874.933333pt;}
.y34{bottom:878.266667pt;}
.y27{bottom:879.266667pt;}
.y67{bottom:880.266667pt;}
.y271{bottom:881.933333pt;}
.y18a{bottom:884.933333pt;}
.y1b8{bottom:885.266667pt;}
.y202{bottom:886.266667pt;}
.y1d4{bottom:886.600000pt;}
.y2e0{bottom:887.933333pt;}
.yf4{bottom:888.933333pt;}
.y257{bottom:892.266667pt;}
.y297{bottom:894.266667pt;}
.y32{bottom:895.600000pt;}
.yb0{bottom:897.600000pt;}
.y82{bottom:899.266667pt;}
.y66{bottom:900.266667pt;}
.y270{bottom:902.600000pt;}
.y3f{bottom:902.933333pt;}
.y189{bottom:904.933333pt;}
.y1b6{bottom:905.266667pt;}
.y26{bottom:906.266667pt;}
.y2df{bottom:907.600000pt;}
.yf7{bottom:908.600000pt;}
.y154{bottom:908.933333pt;}
.y10{bottom:910.933333pt;}
.y296{bottom:913.600000pt;}
.y65{bottom:920.600000pt;}
.y256{bottom:921.600000pt;}
.y9f{bottom:923.266667pt;}
.y30{bottom:924.933333pt;}
.y1b7{bottom:925.600000pt;}
.y129{bottom:926.266667pt;}
.y1d6{bottom:926.600000pt;}
.yaf{bottom:926.933333pt;}
.y2de{bottom:927.266667pt;}
.yf6{bottom:928.266667pt;}
.y81{bottom:928.600000pt;}
.y150{bottom:928.933333pt;}
.yf{bottom:930.600000pt;}
.y25{bottom:932.933333pt;}
.y295{bottom:933.266667pt;}
.y64{bottom:940.933333pt;}
.y26f{bottom:943.933333pt;}
.y188{bottom:944.600000pt;}
.y1b5{bottom:945.933333pt;}
.y128{bottom:946.600000pt;}
.y1d0{bottom:947.266667pt;}
.yf3{bottom:947.933333pt;}
.y2e{bottom:949.600000pt;}
.ye{bottom:950.266667pt;}
.y255{bottom:950.600000pt;}
.y9e{bottom:952.600000pt;}
.y294{bottom:952.933333pt;}
.yae{bottom:955.960000pt;}
.y3e{bottom:957.960000pt;}
.y24{bottom:959.960000pt;}
.y63{bottom:960.960000pt;}
.y26e{bottom:964.626667pt;}
.y186{bottom:964.960000pt;}
.yd{bottom:965.960000pt;}
.y2dd{bottom:966.293333pt;}
.y126{bottom:966.626667pt;}
.yf1{bottom:967.626667pt;}
.y14f{bottom:972.293333pt;}
.y2c{bottom:978.960000pt;}
.y254{bottom:979.293333pt;}
.y80{bottom:981.293333pt;}
.y9d{bottom:981.960000pt;}
.yad{bottom:985.293333pt;}
.y3d{bottom:985.626667pt;}
.yc{bottom:986.293333pt;}
.y23{bottom:986.626667pt;}
.y124{bottom:986.960000pt;}
.yf0{bottom:987.293333pt;}
.y2dc{bottom:989.293333pt;}
.y14e{bottom:991.960000pt;}
.y26d{bottom:1005.960000pt;}
.ya{bottom:1006.293333pt;}
.yee{bottom:1006.960000pt;}
.y22{bottom:1008.626667pt;}
.y2b{bottom:1011.293333pt;}
.y2db{bottom:1012.626667pt;}
.y181{bottom:1016.626667pt;}
.y3{bottom:1037.960000pt;}
.y2{bottom:1050.960000pt;}
.y1{bottom:1063.960000pt;}
.h21{height:18.000000pt;}
.h1a{height:19.000000pt;}
.h1c{height:19.033333pt;}
.h6{height:19.333333pt;}
.h12{height:19.353333pt;}
.h14{height:19.366667pt;}
.h3c{height:19.653333pt;}
.h5{height:19.666667pt;}
.h26{height:19.686667pt;}
.h15{height:19.700000pt;}
.h2c{height:19.986667pt;}
.h28{height:20.000000pt;}
.h2a{height:20.020000pt;}
.h2d{height:20.033333pt;}
.h10{height:24.000000pt;}
.h2f{height:25.333333pt;}
.hd{height:26.000000pt;}
.h34{height:27.666667pt;}
.h11{height:28.666667pt;}
.hf{height:28.700000pt;}
.h58{height:29.333333pt;}
.h59{height:29.366667pt;}
.h43{height:31.033333pt;}
.h22{height:32.000000pt;}
.h2{height:32.625000pt;}
.h18{height:33.033333pt;}
.h20{height:35.666667pt;}
.h2e{height:36.000000pt;}
.h1d{height:36.726562pt;}
.h1e{height:38.020000pt;}
.h3{height:38.666667pt;}
.h1b{height:38.700000pt;}
.h13{height:39.000000pt;}
.h45{height:39.020000pt;}
.h24{height:39.033333pt;}
.h33{height:39.333333pt;}
.h31{height:39.353333pt;}
.h5b{height:39.366667pt;}
.h41{height:39.666667pt;}
.h38{height:39.686667pt;}
.h42{height:40.000000pt;}
.h56{height:40.570312pt;}
.h2b{height:40.666667pt;}
.h29{height:40.686667pt;}
.h57{height:41.601562pt;}
.h9{height:42.033333pt;}
.h7{height:42.333333pt;}
.h17{height:43.687500pt;}
.h54{height:44.437500pt;}
.h55{height:45.666667pt;}
.h49{height:47.742188pt;}
.h4b{height:47.874805pt;}
.h4{height:48.937500pt;}
.h48{height:49.148438pt;}
.h36{height:51.500000pt;}
.h4c{height:53.179492pt;}
.h50{height:54.093750pt;}
.h1f{height:55.333333pt;}
.h51{height:55.468750pt;}
.h32{height:55.666667pt;}
.h27{height:56.333333pt;}
.h19{height:58.333333pt;}
.hc{height:58.351562pt;}
.h23{height:58.666667pt;}
.hb{height:58.700000pt;}
.h3e{height:59.033333pt;}
.h30{height:59.333333pt;}
.h40{height:59.700000pt;}
.h3b{height:60.000000pt;}
.h16{height:60.070312pt;}
.h1{height:63.656250pt;}
.he{height:65.531250pt;}
.h4d{height:65.667773pt;}
.h8{height:71.093750pt;}
.h25{height:78.000000pt;}
.h44{height:78.700000pt;}
.h46{height:79.366667pt;}
.h5a{height:80.033333pt;}
.h47{height:86.033333pt;}
.h37{height:99.700000pt;}
.ha{height:109.218750pt;}
.h3d{height:138.706667pt;}
.h35{height:180.733333pt;}
.h3a{height:200.733333pt;}
.h39{height:261.400000pt;}
.h4f{height:278.666667pt;}
.h3f{height:281.440000pt;}
.h4e{height:285.000000pt;}
.h4a{height:292.000000pt;}
.h52{height:793.666667pt;}
.h53{height:794.000000pt;}
.h0{height:1122.666667pt;}
.w5f{width:53.700000pt;}
.w38{width:58.366667pt;}
.w55{width:62.000000pt;}
.w4f{width:62.333333pt;}
.w16{width:63.033333pt;}
.wd{width:63.700000pt;}
.w50{width:64.700000pt;}
.w59{width:66.033333pt;}
.w36{width:66.333333pt;}
.w15{width:69.033333pt;}
.w33{width:69.700000pt;}
.w37{width:70.033333pt;}
.w54{width:70.366667pt;}
.w4c{width:70.693333pt;}
.w5d{width:70.700000pt;}
.w51{width:73.666667pt;}
.w17{width:74.033333pt;}
.w5a{width:75.000000pt;}
.w45{width:75.333333pt;}
.w4e{width:76.033333pt;}
.w1c{width:78.366667pt;}
.w46{width:78.700000pt;}
.w35{width:79.366667pt;}
.w56{width:81.033333pt;}
.w5e{width:83.700000pt;}
.w53{width:84.033333pt;}
.w30{width:84.700000pt;}
.w4a{width:85.033333pt;}
.w2d{width:85.700000pt;}
.w4b{width:89.666667pt;}
.w47{width:90.033333pt;}
.w23{width:91.033333pt;}
.w24{width:94.700000pt;}
.we{width:95.033333pt;}
.w52{width:96.700000pt;}
.w1a{width:99.066667pt;}
.w58{width:100.033333pt;}
.w32{width:100.366667pt;}
.w34{width:100.733333pt;}
.w44{width:101.700000pt;}
.w49{width:103.366667pt;}
.w2e{width:103.400000pt;}
.w60{width:103.700000pt;}
.w28{width:103.733333pt;}
.w31{width:104.400000pt;}
.w5c{width:107.366667pt;}
.w27{width:108.733333pt;}
.w5b{width:111.033333pt;}
.w20{width:114.033333pt;}
.w1b{width:120.066667pt;}
.w11{width:122.400000pt;}
.w48{width:127.366667pt;}
.w2b{width:131.733333pt;}
.w1e{width:144.066667pt;}
.w2f{width:149.733333pt;}
.wa{width:159.066667pt;}
.w4d{width:160.733333pt;}
.w14{width:161.066667pt;}
.w57{width:164.360000pt;}
.w18{width:168.066667pt;}
.w3e{width:173.400000pt;}
.w2c{width:180.400000pt;}
.w42{width:185.373333pt;}
.w4{width:185.400000pt;}
.w13{width:186.066667pt;}
.w5{width:186.106667pt;}
.wf{width:188.440000pt;}
.w22{width:192.440000pt;}
.w29{width:198.733333pt;}
.w8{width:216.440000pt;}
.w21{width:217.440000pt;}
.w25{width:221.106667pt;}
.w1f{width:228.066667pt;}
.w43{width:242.400000pt;}
.w3d{width:242.760000pt;}
.w26{width:256.440000pt;}
.w10{width:274.773333pt;}
.w19{width:286.106667pt;}
.w2a{width:321.133333pt;}
.w9{width:383.506667pt;}
.w1d{width:393.506667pt;}
.w41{width:415.800000pt;}
.w3{width:415.866667pt;}
.w6{width:436.506667pt;}
.wb{width:462.200000pt;}
.w12{width:476.200000pt;}
.w3b{width:480.666667pt;}
.w3a{width:483.000000pt;}
.w3c{width:486.333333pt;}
.w7{width:601.933333pt;}
.w39{width:623.266667pt;}
.wc{width:624.266667pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.w40{width:1122.666650pt;}
.w3f{width:1122.666667pt;}
.x8b{left:-1.666667pt;}
.x0{left:0.000000pt;}
.x58{left:1.000000pt;}
.x95{left:2.333333pt;}
.x5a{left:5.000000pt;}
.xe{left:6.333333pt;}
.x5{left:7.333333pt;}
.x1d{left:8.333333pt;}
.x8a{left:9.333333pt;}
.x13{left:10.666667pt;}
.x23{left:12.666667pt;}
.x4b{left:14.026667pt;}
.x20{left:15.333333pt;}
.x4f{left:16.333333pt;}
.x43{left:18.333333pt;}
.x5b{left:19.666667pt;}
.x27{left:21.000000pt;}
.x4e{left:22.360000pt;}
.x7e{left:23.333333pt;}
.x25{left:24.666667pt;}
.x37{left:25.653333pt;}
.x28{left:27.333333pt;}
.x21{left:28.666667pt;}
.x1f{left:30.000000pt;}
.x38{left:32.320000pt;}
.x46{left:33.666667pt;}
.x44{left:35.000000pt;}
.x12{left:36.700000pt;}
.x4c{left:38.706667pt;}
.x39{left:40.360000pt;}
.x24{left:42.320000pt;}
.x26{left:43.373333pt;}
.x3b{left:44.666667pt;}
.x45{left:45.666667pt;}
.x6b{left:47.200000pt;}
.x3a{left:49.000000pt;}
.x3d{left:51.000000pt;}
.x22{left:52.693333pt;}
.x3c{left:54.000000pt;}
.x2c{left:58.693333pt;}
.x33{left:61.333333pt;}
.x3f{left:63.333333pt;}
.x4d{left:65.040000pt;}
.x2e{left:66.026667pt;}
.x3e{left:69.000000pt;}
.x2d{left:73.360000pt;}
.x5f{left:77.700000pt;}
.x51{left:79.706667pt;}
.x35{left:88.360000pt;}
.x49{left:92.706667pt;}
.x50{left:94.040000pt;}
.x4{left:96.033322pt;}
.xd{left:98.033333pt;}
.x40{left:99.366667pt;}
.x47{left:104.033333pt;}
.x29{left:106.026667pt;}
.x7{left:117.360000pt;}
.x1a{left:120.400000pt;}
.x19{left:124.399988pt;}
.x14{left:128.066655pt;}
.x31{left:130.400000pt;}
.x71{left:133.733333pt;}
.x5c{left:144.066655pt;}
.x6f{left:152.666667pt;}
.x6a{left:154.666667pt;}
.x6c{left:155.666667pt;}
.x10{left:162.400000pt;}
.xb{left:169.406667pt;}
.x60{left:179.400000pt;}
.x17{left:187.066655pt;}
.x52{left:199.773333pt;}
.x70{left:201.666667pt;}
.x5e{left:212.773322pt;}
.x2f{left:216.106667pt;}
.x15{left:219.773333pt;}
.x8c{left:222.733333pt;}
.x80{left:224.106655pt;}
.x54{left:227.773333pt;}
.x68{left:232.439988pt;}
.xa{left:243.766667pt;}
.x61{left:250.440000pt;}
.xf{left:257.773333pt;}
.x2{left:272.799988pt;}
.x32{left:274.466667pt;}
.x82{left:276.106667pt;}
.x8{left:283.466667pt;}
.x2a{left:288.466667pt;}
.x30{left:294.466667pt;}
.x75{left:300.773333pt;}
.x1b{left:306.466667pt;}
.x6e{left:311.799988pt;}
.xc{left:313.800000pt;}
.x41{left:316.800000pt;}
.x8d{left:322.773333pt;}
.x48{left:325.133333pt;}
.x83{left:338.440000pt;}
.x62{left:352.506667pt;}
.x72{left:376.506667pt;}
.x8e{left:388.800000pt;}
.x53{left:398.506667pt;}
.x76{left:402.466667pt;}
.x55{left:408.173333pt;}
.x63{left:433.200000pt;}
.x34{left:435.533333pt;}
.x11{left:447.200000pt;}
.x8f{left:463.800000pt;}
.x1c{left:467.533333pt;}
.x84{left:476.800000pt;}
.x77{left:477.800000pt;}
.x59{left:492.866667pt;}
.x56{left:493.866667pt;}
.x64{left:500.866667pt;}
.x9{left:505.533322pt;}
.x42{left:509.240000pt;}
.x6{left:511.906667pt;}
.x1{left:525.226655pt;}
.x1e{left:536.573333pt;}
.x36{left:549.573333pt;}
.x3{left:550.559988pt;}
.x78{left:556.506667pt;}
.x65{left:572.240000pt;}
.x74{left:573.173317pt;}
.x2b{left:574.573333pt;}
.x4a{left:581.573333pt;}
.x57{left:597.266667pt;}
.x18{left:599.933322pt;}
.x66{left:631.933333pt;}
.x69{left:637.933322pt;}
.x67{left:638.933322pt;}
.x6d{left:640.933322pt;}
.x79{left:646.533333pt;}
.x85{left:657.533333pt;}
.x90{left:682.200000pt;}
.x16{left:689.626655pt;}
.x7f{left:690.626655pt;}
.x86{left:727.226667pt;}
.x91{left:752.893333pt;}
.x7a{left:773.893333pt;}
.x81{left:774.999988pt;}
.x5d{left:788.333322pt;}
.x87{left:800.893333pt;}
.x92{left:827.893333pt;}
.x73{left:854.266650pt;}
.x88{left:871.266667pt;}
.x7b{left:877.266667pt;}
.x93{left:911.600000pt;}
.x89{left:933.266667pt;}
.x7c{left:962.306667pt;}
.x94{left:965.306667pt;}
.x7d{left:1051.973333pt;}
}




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