
    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_12803b2125e464dc1be86e14.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_9fca390b5a2044b8cf31f7c2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.203000;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_3dd835ed5a66618d4cc74171.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_aa621046ecc4ef96cf0c7080.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_c5f145b1f9db8bd993ef65dc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.483000;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_5cb552f62b257df86f58816b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.930000;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_2648d5ff8a9abd89813f17fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.756000;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_c4ae14b133f1475034575047.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938000;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_e709aa0f7945941f377e87d0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938000;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_3788fdaf2981f45969ee0ccc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.718000;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_02912d81924e2d85a8818990.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.113000;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_c1d58b14f020636016c7d82e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.223000;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_a5cbc294545855118c7232e8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666000;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_470c811cf711c07d7ad6e884.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.714000;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_c4074619db3c7c579078015a.woff2')format("woff");}.fff{font-family:fff;line-height:1.005000;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_da8555f6e10571f9ea0a6d98.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.023000;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;}
.m5{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);}
.m4{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);}
.m7{transform:matrix(0.000000,-0.250019,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250019,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250019,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,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);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.487915px;}
.v4{vertical-align:20.933350px;}
.v2{vertical-align:26.399780px;}
.v5{vertical-align:54.000000px;}
.ls6{letter-spacing:-1.058400px;}
.ls15{letter-spacing:-0.779496px;}
.ls7{letter-spacing:-0.294000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000002px;}
.ls3{letter-spacing:0.000004px;}
.ls2{letter-spacing:0.000008px;}
.ls1{letter-spacing:0.000177px;}
.ls36{letter-spacing:0.225000px;}
.ls1c{letter-spacing:0.350773px;}
.ls1d{letter-spacing:0.389748px;}
.lse{letter-spacing:0.506672px;}
.ls34{letter-spacing:0.558424px;}
.ls22{letter-spacing:0.559734px;}
.ls28{letter-spacing:0.562800px;}
.ls31{letter-spacing:0.564472px;}
.lsb{letter-spacing:0.567916px;}
.ls18{letter-spacing:0.612460px;}
.ls17{letter-spacing:0.623597px;}
.ls2c{letter-spacing:0.624578px;}
.ls32{letter-spacing:0.638198px;}
.ls20{letter-spacing:0.639696px;}
.ls26{letter-spacing:0.643200px;}
.ls2f{letter-spacing:0.645110px;}
.ls14{letter-spacing:0.757861px;}
.lsf{letter-spacing:0.759639px;}
.ls11{letter-spacing:0.763800px;}
.ls13{letter-spacing:0.766069px;}
.lsc{letter-spacing:0.818471px;}
.lsd{letter-spacing:0.857446px;}
.ls9{letter-spacing:1.224920px;}
.ls12{letter-spacing:1.249156px;}
.ls1e{letter-spacing:1.325143px;}
.ls33{letter-spacing:1.356172px;}
.ls21{letter-spacing:1.359354px;}
.ls27{letter-spacing:1.366800px;}
.ls30{letter-spacing:1.370860px;}
.ls16{letter-spacing:1.636942px;}
.ls1f{letter-spacing:1.893059px;}
.ls2d{letter-spacing:1.930513px;}
.ls0{letter-spacing:5.460000px;}
.ls35{letter-spacing:13.487997px;}
.ls1a{letter-spacing:25.762343px;}
.ls25{letter-spacing:27.048511px;}
.ls24{letter-spacing:27.399284px;}
.ls1b{letter-spacing:30.984966px;}
.ls19{letter-spacing:39.130696px;}
.ls2e{letter-spacing:39.169674px;}
.ls2b{letter-spacing:41.196365px;}
.ls23{letter-spacing:41.235337px;}
.ls29{letter-spacing:48.718500px;}
.ls10{letter-spacing:48.913374px;}
.ls2a{letter-spacing:49.069271px;}
.lsa{letter-spacing:52.849826px;}
.ls8{letter-spacing:896.999996px;}
.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:-63.684821px;}
.ws4f{word-spacing:-59.904265px;}
.ws48{word-spacing:-59.748368px;}
.ws4e{word-spacing:-53.629328px;}
.ws49{word-spacing:-52.070331px;}
.ws50{word-spacing:-52.031359px;}
.ws53{word-spacing:-50.004668px;}
.ws3d{word-spacing:-49.965691px;}
.ws3f{word-spacing:-41.819960px;}
.ws4a{word-spacing:-38.234279px;}
.ws4b{word-spacing:-37.883506px;}
.ws3e{word-spacing:-36.597337px;}
.ws52{word-spacing:-17.033940px;}
.ws3b{word-spacing:-16.703460px;}
.ws51{word-spacing:-16.409362px;}
.ws3a{word-spacing:-16.091000px;}
.ws6{word-spacing:-13.818000px;}
.ws2{word-spacing:-13.140000px;}
.ws55{word-spacing:-12.579653px;}
.ws4d{word-spacing:-12.542400px;}
.ws1{word-spacing:-12.483600px;}
.ws47{word-spacing:-12.474072px;}
.ws38{word-spacing:-12.471936px;}
.ws57{word-spacing:-12.444869px;}
.ws45{word-spacing:-12.160138px;}
.ws54{word-spacing:-11.974862px;}
.ws4c{word-spacing:-11.939400px;}
.ws46{word-spacing:-11.874357px;}
.ws56{word-spacing:-11.846558px;}
.ws44{word-spacing:-11.692440px;}
.ws39{word-spacing:-11.458591px;}
.ws43{word-spacing:-11.185768px;}
.ws40{word-spacing:-10.834994px;}
.ws0{word-spacing:-10.117800px;}
.ws37{word-spacing:-10.055498px;}
.ws67{word-spacing:-9.936000px;}
.ws42{word-spacing:-9.855006px;}
.ws7{word-spacing:-9.855000px;}
.ws66{word-spacing:-9.696000px;}
.ws97{word-spacing:-9.315000px;}
.ws41{word-spacing:-9.287090px;}
.ws3{word-spacing:-9.198000px;}
.wsb{word-spacing:-2.772000px;}
.wsa{word-spacing:-2.310000px;}
.ws61{word-spacing:-1.930513px;}
.ws5b{word-spacing:-1.893059px;}
.ws70{word-spacing:-1.822800px;}
.ws5a{word-spacing:-0.857446px;}
.ws5e{word-spacing:-0.818471px;}
.ws9{word-spacing:-0.780000px;}
.ws62{word-spacing:-0.645110px;}
.ws5f{word-spacing:-0.643200px;}
.ws5c{word-spacing:-0.639696px;}
.ws64{word-spacing:-0.638198px;}
.ws7f{word-spacing:-0.588000px;}
.ws63{word-spacing:-0.564472px;}
.ws60{word-spacing:-0.562800px;}
.ws5d{word-spacing:-0.559734px;}
.ws65{word-spacing:-0.558424px;}
.ws59{word-spacing:-0.506672px;}
.ws58{word-spacing:-0.389748px;}
.ws8b{word-spacing:-0.352800px;}
.ws83{word-spacing:-0.235200px;}
.wsb9{word-spacing:-0.225000px;}
.ws4{word-spacing:-0.058800px;}
.ws95{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.ws1f{word-spacing:0.058800px;}
.ws6d{word-spacing:0.294000px;}
.wsf{word-spacing:0.352800px;}
.wsb0{word-spacing:0.411600px;}
.ws81{word-spacing:0.529200px;}
.ws35{word-spacing:0.646800px;}
.wsb7{word-spacing:0.705600px;}
.wse{word-spacing:0.764400px;}
.ws6e{word-spacing:0.882000px;}
.ws28{word-spacing:0.940800px;}
.ws5{word-spacing:0.999600px;}
.wsb1{word-spacing:1.058400px;}
.ws27{word-spacing:1.234800px;}
.ws9a{word-spacing:1.587600px;}
.wsc{word-spacing:1.764000px;}
.ws96{word-spacing:1.782000px;}
.ws7b{word-spacing:2.058000px;}
.ws71{word-spacing:2.116800px;}
.ws6c{word-spacing:2.175600px;}
.ws23{word-spacing:2.528394px;}
.ws82{word-spacing:2.587200px;}
.ws79{word-spacing:2.646000px;}
.wsb3{word-spacing:2.763600px;}
.ws87{word-spacing:2.881200px;}
.ws7c{word-spacing:2.940000px;}
.ws22{word-spacing:2.998794px;}
.ws80{word-spacing:3.116400px;}
.ws75{word-spacing:3.175200px;}
.ws76{word-spacing:3.528000px;}
.ws12{word-spacing:3.880800px;}
.ws15{word-spacing:4.292400px;}
.ws74{word-spacing:4.351200px;}
.ws73{word-spacing:4.410000px;}
.wsb4{word-spacing:4.468800px;}
.ws92{word-spacing:4.704000px;}
.ws26{word-spacing:4.998000px;}
.ws78{word-spacing:5.174400px;}
.wsa9{word-spacing:5.233200px;}
.ws16{word-spacing:5.292000px;}
.ws9c{word-spacing:5.350800px;}
.ws29{word-spacing:5.409600px;}
.ws84{word-spacing:5.468400px;}
.ws2a{word-spacing:5.586000px;}
.ws7d{word-spacing:5.644800px;}
.ws72{word-spacing:5.762400px;}
.ws91{word-spacing:5.880000px;}
.wsaa{word-spacing:5.997600px;}
.ws9d{word-spacing:6.232800px;}
.ws1d{word-spacing:6.291600px;}
.ws19{word-spacing:6.409200px;}
.ws14{word-spacing:6.585600px;}
.ws7a{word-spacing:6.644400px;}
.wsad{word-spacing:6.762000px;}
.wsac{word-spacing:6.820800px;}
.wsa1{word-spacing:6.879600px;}
.ws10{word-spacing:7.056000px;}
.wsa6{word-spacing:7.173600px;}
.wsa3{word-spacing:7.232400px;}
.wsb8{word-spacing:7.467600px;}
.ws9b{word-spacing:7.526400px;}
.ws1a{word-spacing:7.585200px;}
.ws8d{word-spacing:7.644000px;}
.ws20{word-spacing:7.702800px;}
.ws2f{word-spacing:7.938000px;}
.ws30{word-spacing:8.055600px;}
.ws77{word-spacing:8.173200px;}
.wsa4{word-spacing:8.290800px;}
.ws2e{word-spacing:8.584800px;}
.ws13{word-spacing:8.761200px;}
.ws8e{word-spacing:8.820000px;}
.ws17{word-spacing:8.878800px;}
.ws90{word-spacing:8.996400px;}
.ws36{word-spacing:9.114000px;}
.ws93{word-spacing:9.172800px;}
.ws86{word-spacing:9.290400px;}
.wsa8{word-spacing:9.584400px;}
.ws1c{word-spacing:9.760800px;}
.ws6f{word-spacing:9.819600px;}
.wsd{word-spacing:9.878400px;}
.ws21{word-spacing:9.996000px;}
.ws6b{word-spacing:10.290000px;}
.ws34{word-spacing:10.701600px;}
.ws8c{word-spacing:10.760400px;}
.ws31{word-spacing:11.054400px;}
.ws9f{word-spacing:11.172000px;}
.wsae{word-spacing:11.289600px;}
.ws6a{word-spacing:11.642400px;}
.wsaf{word-spacing:11.760000px;}
.ws94{word-spacing:12.054000px;}
.wsa2{word-spacing:12.171600px;}
.ws9e{word-spacing:12.230400px;}
.ws8f{word-spacing:12.465600px;}
.ws2b{word-spacing:12.700800px;}
.wsb6{word-spacing:12.818400px;}
.ws88{word-spacing:13.171200px;}
.ws89{word-spacing:13.230000px;}
.ws2d{word-spacing:13.465200px;}
.ws24{word-spacing:13.759200px;}
.ws8a{word-spacing:13.876800px;}
.wsa7{word-spacing:13.994400px;}
.ws18{word-spacing:14.170800px;}
.ws98{word-spacing:14.288400px;}
.ws2c{word-spacing:14.464800px;}
.ws1b{word-spacing:14.876400px;}
.ws11{word-spacing:15.346800px;}
.ws1e{word-spacing:16.287601px;}
.ws85{word-spacing:16.875600px;}
.wsa0{word-spacing:16.993200px;}
.wsa5{word-spacing:17.110800px;}
.wsb2{word-spacing:17.875200px;}
.wsb5{word-spacing:18.992400px;}
.ws25{word-spacing:20.521200px;}
.wsab{word-spacing:20.815200px;}
.ws32{word-spacing:21.756000px;}
.ws33{word-spacing:22.990800px;}
.ws99{word-spacing:23.226001px;}
.ws7e{word-spacing:34.221601px;}
.ws69{word-spacing:83.184010px;}
.ws68{word-spacing:121.200000px;}
._f{margin-left:-41.274307px;}
._c{margin-left:-39.169659px;}
._e{margin-left:-30.984968px;}
._10{margin-left:-27.399282px;}
._d{margin-left:-25.762343px;}
._23{margin-left:-6.957056px;}
._7{margin-left:-5.816088px;}
._3{margin-left:-4.356114px;}
._4{margin-left:-3.265242px;}
._0{margin-left:-1.972819px;}
._1{width:1.872056px;}
._2{width:3.632282px;}
._6{width:5.703590px;}
._20{width:6.769328px;}
._11{width:8.598166px;}
._8{width:9.652686px;}
._a{width:11.667525px;}
._9{width:13.733465px;}
._5{width:15.767921px;}
._21{width:17.942899px;}
._24{width:22.896113px;}
._22{width:44.856113px;}
._1a{width:78.863999px;}
._17{width:97.588797px;}
._18{width:112.991977px;}
._1e{width:116.452796px;}
._19{width:122.736000px;}
._1f{width:123.984001px;}
._1c{width:226.992009px;}
._13{width:245.088005px;}
._12{width:257.760005px;}
._16{width:258.768005px;}
._14{width:270.815977px;}
._1b{width:273.840000px;}
._15{width:282.192005px;}
._1d{width:305.616000px;}
._b{width:522.436239px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(62,62,62);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:27.839401px;}
.fsa{font-size:31.500000px;}
.fse{font-size:33.406800px;}
.fsb{font-size:38.974800px;}
.fs13{font-size:39.887401px;}
.fsf{font-size:39.980999px;}
.fs10{font-size:40.199999px;}
.fs12{font-size:40.319401px;}
.fs7{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fs14{font-size:54.000000px;}
.fsc{font-size:55.678202px;}
.fs11{font-size:56.779798px;}
.fs8{font-size:58.800001px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800001px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y13{bottom:75.191248px;}
.y12{bottom:87.192753px;}
.y11{bottom:99.194252px;}
.y130{bottom:105.637947px;}
.y15a{bottom:106.574556px;}
.y10{bottom:111.195751px;}
.y1f6{bottom:112.796262px;}
.y1b0{bottom:115.620894px;}
.y1ed{bottom:116.487566px;}
.yf{bottom:123.197250px;}
.y12f{bottom:123.630747px;}
.y159{bottom:124.567356px;}
.y1f5{bottom:124.797762px;}
.y1af{bottom:129.120894px;}
.y1ec{bottom:129.987566px;}
.y12e{bottom:141.623547px;}
.y158{bottom:142.560156px;}
.y1ae{bottom:142.620895px;}
.y1eb{bottom:143.487566px;}
.y1f4{bottom:150.113262px;}
.y1ad{bottom:156.120895px;}
.y4b{bottom:156.461998px;}
.y1ea{bottom:156.987567px;}
.y12d{bottom:159.616346px;}
.y157{bottom:160.552955px;}
.y43{bottom:161.249554px;}
.y1f3{bottom:168.110262px;}
.y1ac{bottom:169.620895px;}
.y4a{bottom:169.961998px;}
.y1e9{bottom:170.487567px;}
.y12c{bottom:177.609146px;}
.y156{bottom:178.545755px;}
.y42{bottom:179.242355px;}
.y1e8{bottom:183.987567px;}
.y4e{bottom:184.447494px;}
.y1f2{bottom:186.107261px;}
.y49{bottom:187.961998px;}
.y54{bottom:193.580406px;}
.y12b{bottom:195.673948px;}
.y155{bottom:196.538555px;}
.y48{bottom:196.961998px;}
.y41{bottom:197.235146px;}
.y1e7{bottom:197.487568px;}
.y1f1{bottom:204.104261px;}
.y51{bottom:209.141396px;}
.y53{bottom:209.747246px;}
.y1e6{bottom:210.987568px;}
.y12a{bottom:213.666748px;}
.y154{bottom:214.531355px;}
.y1ab{bottom:214.692898px;}
.y47{bottom:214.961998px;}
.y40{bottom:215.249542px;}
.y1f0{bottom:222.101261px;}
.y46{bottom:223.961998px;}
.y1e5{bottom:224.487568px;}
.y52{bottom:224.612389px;}
.y129{bottom:231.659548px;}
.y153{bottom:232.524155px;}
.y1aa{bottom:232.685697px;}
.y3f{bottom:233.242355px;}
.y45{bottom:237.461998px;}
.y1e4{bottom:237.987569px;}
.y1ef{bottom:240.098261px;}
.y128{bottom:249.652347px;}
.y152{bottom:250.516954px;}
.y1a9{bottom:250.678497px;}
.y3e{bottom:251.235146px;}
.y1e3{bottom:251.487569px;}
.y1ee{bottom:258.095261px;}
.y10b{bottom:258.968362px;}
.y115{bottom:260.324381px;}
.y1e2{bottom:264.987569px;}
.y127{bottom:267.645147px;}
.y151{bottom:268.509754px;}
.y1a8{bottom:268.671297px;}
.y3d{bottom:269.235146px;}
.y114{bottom:270.720909px;}
.y10a{bottom:270.758240px;}
.y1e1{bottom:278.487570px;}
.y1f8{bottom:280.194140px;}
.y10d{bottom:280.307396px;}
.y116{bottom:281.702059px;}
.y100{bottom:281.781899px;}
.yf9{bottom:281.783249px;}
.y126{bottom:285.637947px;}
.y28{bottom:286.459053px;}
.y150{bottom:286.502554px;}
.y1a7{bottom:286.664097px;}
.y3c{bottom:287.235146px;}
.y1e0{bottom:291.987570px;}
.y117{bottom:299.299181px;}
.y101{bottom:299.379021px;}
.y1f7{bottom:299.994141px;}
.y125{bottom:303.630747px;}
.y27{bottom:304.451843px;}
.y14f{bottom:304.495354px;}
.y1a6{bottom:304.656896px;}
.y1df{bottom:305.487570px;}
.y10e{bottom:308.505664px;}
.yfa{bottom:309.981517px;}
.y118{bottom:316.983997px;}
.y102{bottom:317.063837px;}
.y1de{bottom:318.987571px;}
.y124{bottom:321.623547px;}
.y26{bottom:322.459053px;}
.y14e{bottom:322.524132px;}
.y1a5{bottom:322.649696px;}
.y3b{bottom:323.242355px;}
.y11f{bottom:328.265396px;}
.y109{bottom:328.347908px;}
.y1dd{bottom:332.487571px;}
.y119{bottom:334.581119px;}
.y103{bottom:334.670703px;}
.y10f{bottom:336.791626px;}
.yfb{bottom:338.257734px;}
.y123{bottom:339.616346px;}
.y25{bottom:340.451843px;}
.y14d{bottom:340.516931px;}
.y1a4{bottom:340.642496px;}
.y3a{bottom:341.235146px;}
.y1dc{bottom:345.987571px;}
.y11a{bottom:352.265935px;}
.y104{bottom:352.355519px;}
.y122{bottom:357.609146px;}
.y24{bottom:358.473450px;}
.y14c{bottom:358.509731px;}
.y1a3{bottom:358.635296px;}
.y39{bottom:359.263962px;}
.y1db{bottom:359.487572px;}
.y110{bottom:364.989894px;}
.yfc{bottom:366.456002px;}
.y11b{bottom:369.950751px;}
.y105{bottom:370.040335px;}
.y113{bottom:372.644394px;}
.y1da{bottom:372.987572px;}
.yff{bottom:374.118759px;}
.y121{bottom:375.609146px;}
.y23{bottom:376.466240px;}
.y14b{bottom:376.502531px;}
.y1a2{bottom:376.628096px;}
.y38{bottom:377.256775px;}
.y1d9{bottom:386.487572px;}
.y11c{bottom:387.547873px;}
.y106{bottom:387.637457px;}
.y111{bottom:393.266111px;}
.y22{bottom:394.459030px;}
.y14a{bottom:394.495331px;}
.y1a1{bottom:394.620895px;}
.yfd{bottom:394.741964px;}
.y37{bottom:395.249542px;}
.y1d8{bottom:399.987573px;}
.y11d{bottom:405.232689px;}
.y107{bottom:405.322273px;}
.y21{bottom:412.451843px;}
.y149{bottom:412.495331px;}
.y1a0{bottom:412.649696px;}
.y36{bottom:413.242355px;}
.y1d7{bottom:413.487573px;}
.yf8{bottom:418.886398px;}
.y10c{bottom:418.922379px;}
.y112{bottom:421.552073px;}
.y11e{bottom:422.917505px;}
.y108{bottom:423.007089px;}
.yfe{bottom:423.018181px;}
.y169{bottom:424.059889px;}
.y1d6{bottom:426.987573px;}
.y20{bottom:430.502243px;}
.y19f{bottom:430.642496px;}
.y35{bottom:431.235168px;}
.y168{bottom:436.806888px;}
.y1d5{bottom:440.487574px;}
.yf7{bottom:443.122612px;}
.yd6{bottom:444.279106px;}
.y1f{bottom:448.495056px;}
.y148{bottom:448.545732px;}
.y19e{bottom:448.635296px;}
.y34{bottom:449.320312px;}
.y167{bottom:449.553888px;}
.yf6{bottom:453.704269px;}
.y1d4{bottom:453.987574px;}
.yd5{bottom:454.860764px;}
.y166{bottom:462.300888px;}
.yd9{bottom:463.503891px;}
.yb8{bottom:463.508423px;}
.ye3{bottom:463.607254px;}
.ycb{bottom:463.968887px;}
.y1e{bottom:466.487869px;}
.y147{bottom:466.538532px;}
.y19d{bottom:466.628096px;}
.y33{bottom:467.313126px;}
.y1d3{bottom:467.487574px;}
.yb9{bottom:468.663757px;}
.yda{bottom:468.737228px;}
.ye4{bottom:468.761398px;}
.ycc{bottom:469.200760px;}
.y1d2{bottom:480.987575px;}
.yba{bottom:482.088913px;}
.ye5{bottom:482.187744px;}
.y1d{bottom:484.480637px;}
.y146{bottom:484.531332px;}
.y19c{bottom:484.620895px;}
.y17c{bottom:484.841303px;}
.y32{bottom:485.305939px;}
.ybb{bottom:487.242920px;}
.ye6{bottom:487.341751px;}
.y1d1{bottom:494.487575px;}
.ybc{bottom:499.367249px;}
.ye7{bottom:499.464889px;}
.ye1{bottom:501.659409px;}
.yd3{bottom:502.119919px;}
.y1c{bottom:502.473450px;}
.y145{bottom:502.524132px;}
.y19b{bottom:502.750545px;}
.y17b{bottom:503.069303px;}
.y31{bottom:503.298752px;}
.ybd{bottom:504.522903px;}
.ye8{bottom:504.621918px;}
.y1d0{bottom:507.987575px;}
.yf5{bottom:510.092422px;}
.ydb{bottom:513.203384px;}
.ycd{bottom:513.666916px;}
.yca{bottom:514.170914px;}
.ybe{bottom:517.947922px;}
.ye9{bottom:518.046890px;}
.ydc{bottom:518.358902px;}
.yce{bottom:518.822388px;}
.y1b{bottom:520.466263px;}
.y144{bottom:520.516931px;}
.y19a{bottom:520.743345px;}
.y17a{bottom:521.213303px;}
.y30{bottom:521.291519px;}
.y1cf{bottom:521.487576px;}
.ybf{bottom:523.104904px;}
.yea{bottom:523.202408px;}
.y1ce{bottom:534.987576px;}
.yc0{bottom:536.618271px;}
.yeb{bottom:536.718750px;}
.y1a{bottom:538.459030px;}
.y143{bottom:538.509731px;}
.y199{bottom:538.736145px;}
.y2f{bottom:539.284332px;}
.y179{bottom:539.357302px;}
.yc1{bottom:541.773880px;}
.yec{bottom:541.871384px;}
.y1cd{bottom:548.487576px;}
.yc2{bottom:555.290268px;}
.yed{bottom:555.389420px;}
.y19{bottom:556.451843px;}
.y142{bottom:556.502531px;}
.y198{bottom:556.728944px;}
.y2e{bottom:557.277145px;}
.y178{bottom:557.501302px;}
.yc3{bottom:560.444412px;}
.yee{bottom:560.544754px;}
.ydd{bottom:561.509262px;}
.ycf{bottom:561.974396px;}
.y1cc{bottom:561.987577px;}
.yde{bottom:566.664917px;}
.yd0{bottom:567.126755px;}
.yc4{bottom:573.869247px;}
.yef{bottom:573.969772px;}
.y18{bottom:574.451843px;}
.y141{bottom:574.495331px;}
.y197{bottom:574.721744px;}
.y2d{bottom:575.269913px;}
.y1cb{bottom:575.487577px;}
.y177{bottom:575.645301px;}
.yc5{bottom:579.026413px;}
.yf0{bottom:579.123917px;}
.y1ca{bottom:588.987577px;}
.y17{bottom:592.466263px;}
.y140{bottom:592.524132px;}
.yc6{bottom:592.541244px;}
.yf1{bottom:592.640259px;}
.y196{bottom:592.714544px;}
.y2c{bottom:593.262726px;}
.y176{bottom:593.789300px;}
.yc7{bottom:597.693878px;}
.yf2{bottom:597.794403px;}
.y1c9{bottom:602.487578px;}
.ydf{bottom:609.815414px;}
.yc8{bottom:609.819763px;}
.yf3{bottom:609.918732px;}
.yd1{bottom:610.278763px;}
.y16{bottom:610.459030px;}
.y13f{bottom:610.516931px;}
.y195{bottom:610.707344px;}
.y2b{bottom:611.255539px;}
.y175{bottom:611.933300px;}
.ye0{bottom:614.972397px;}
.yc9{bottom:614.976746px;}
.yf4{bottom:615.074387px;}
.yd2{bottom:615.434418px;}
.y1c8{bottom:615.987578px;}
.ye2{bottom:619.119919px;}
.yd4{bottom:619.583267px;}
.yd8{bottom:620.411270px;}
.y50{bottom:621.842422px;}
.yb7{bottom:624.974258px;}
.yd7{bottom:625.416916px;}
.y15{bottom:628.451843px;}
.y13e{bottom:628.509731px;}
.y194{bottom:628.700144px;}
.y2a{bottom:629.248352px;}
.y1c7{bottom:629.487578px;}
.y174{bottom:630.077299px;}
.y1c6{bottom:642.987579px;}
.y14{bottom:646.451843px;}
.y13d{bottom:646.502531px;}
.y193{bottom:646.692943px;}
.y29{bottom:647.241119px;}
.y173{bottom:648.221299px;}
.y1c5{bottom:656.487579px;}
.ya0{bottom:662.934769px;}
.yaf{bottom:662.935007px;}
.y13c{bottom:664.495331px;}
.y192{bottom:664.685743px;}
.y172{bottom:666.365298px;}
.y1c4{bottom:669.987579px;}
.yae{bottom:674.724884px;}
.y90{bottom:676.115250px;}
.y13b{bottom:682.495331px;}
.y191{bottom:682.678543px;}
.y9a{bottom:684.077408px;}
.y171{bottom:684.509297px;}
.yb0{bottom:685.481928px;}
.ya4{bottom:685.523254px;}
.y91{bottom:685.967239px;}
.y13a{bottom:700.502531px;}
.y190{bottom:700.671343px;}
.y170{bottom:702.653297px;}
.ya5{bottom:703.130121px;}
.y92{bottom:703.564362px;}
.ye{bottom:705.815094px;}
.yb1{bottom:712.286845px;}
.y9b{bottom:713.003661px;}
.y139{bottom:718.495331px;}
.y18f{bottom:718.664142px;}
.y16f{bottom:720.797296px;}
.ya6{bottom:720.814937px;}
.y93{bottom:721.249178px;}
.yd{bottom:723.815094px;}
.yad{bottom:732.090729px;}
.ya1{bottom:732.533249px;}
.y138{bottom:736.576641px;}
.y18e{bottom:736.656942px;}
.ya7{bottom:738.421803px;}
.y94{bottom:738.846300px;}
.y16e{bottom:738.941296px;}
.yc{bottom:741.815094px;}
.yb2{bottom:741.956412px;}
.y9c{bottom:742.019872px;}
.y1c3{bottom:747.983392px;}
.y137{bottom:754.569440px;}
.y18d{bottom:754.649742px;}
.ya8{bottom:756.106619px;}
.y95{bottom:756.531116px;}
.y16d{bottom:757.085295px;}
.yb{bottom:759.815094px;}
.yb3{bottom:770.154681px;}
.y9d{bottom:770.946125px;}
.y136{bottom:772.562240px;}
.y18c{bottom:772.642542px;}
.ya9{bottom:773.791435px;}
.y96{bottom:774.215932px;}
.y1c2{bottom:774.983393px;}
.ya3{bottom:776.913940px;}
.ya{bottom:777.815094px;}
.yb6{bottom:777.819855px;}
.y16c{bottom:783.857294px;}
.y1c1{bottom:788.483393px;}
.y135{bottom:790.555040px;}
.y18b{bottom:790.635342px;}
.yaa{bottom:791.388557px;}
.y97{bottom:791.813054px;}
.y9{bottom:795.815094px;}
.y16b{bottom:797.357294px;}
.yb4{bottom:799.824248px;}
.y9e{bottom:799.962336px;}
.y1c0{bottom:801.983393px;}
.y134{bottom:808.547840px;}
.y18a{bottom:808.628141px;}
.yab{bottom:809.073373px;}
.y98{bottom:809.497870px;}
.y1bf{bottom:815.483394px;}
.y8{bottom:818.315094px;}
.y16a{bottom:821.201294px;}
.ya2{bottom:824.061859px;}
.y8f{bottom:824.331940px;}
.y133{bottom:826.540640px;}
.y189{bottom:826.620941px;}
.yb5{bottom:826.707117px;}
.yac{bottom:826.758189px;}
.y99{bottom:827.182686px;}
.y9f{bottom:827.579211px;}
.y1be{bottom:842.483395px;}
.y132{bottom:844.533439px;}
.y188{bottom:844.700144px;}
.y165{bottom:845.517038px;}
.y4f{bottom:846.426590px;}
.y6e{bottom:847.067230px;}
.y8e{bottom:848.457100px;}
.y1bd{bottom:855.983395px;}
.y56{bottom:857.648254px;}
.y8d{bottom:859.038757px;}
.y164{bottom:862.014038px;}
.y131{bottom:862.526239px;}
.y187{bottom:862.692943px;}
.y69{bottom:866.498383px;}
.y57{bottom:867.891724px;}
.y85{bottom:867.912781px;}
.y72{bottom:868.079224px;}
.y1bc{bottom:869.483396px;}
.y58{bottom:873.045776px;}
.y86{bottom:873.144928px;}
.y73{bottom:873.234924px;}
.y186{bottom:880.685743px;}
.y7{bottom:882.548126px;}
.y1bb{bottom:882.983396px;}
.y205{bottom:882.987575px;}
.y59{bottom:886.470795px;}
.y74{bottom:886.659760px;}
.y5a{bottom:891.624756px;}
.y75{bottom:891.813904px;}
.y1ba{bottom:896.483396px;}
.y204{bottom:896.487576px;}
.y185{bottom:898.678543px;}
.y6{bottom:903.552612px;}
.y5b{bottom:903.749725px;}
.y76{bottom:903.937317px;}
.y6d{bottom:904.652069px;}
.y8b{bottom:906.065735px;}
.y5c{bottom:908.904602px;}
.y77{bottom:909.093567px;}
.y1b9{bottom:909.983397px;}
.y210{bottom:909.987568px;}
.y203{bottom:909.987576px;}
.y84{bottom:911.780090px;}
.y163{bottom:912.674744px;}
.y6f{bottom:914.377167px;}
.y6a{bottom:916.198059px;}
.y87{bottom:916.218567px;}
.y184{bottom:916.671343px;}
.y88{bottom:921.374817px;}
.y5d{bottom:922.331268px;}
.y78{bottom:922.518768px;}
.y1b8{bottom:923.483397px;}
.y20f{bottom:923.487568px;}
.y202{bottom:923.487576px;}
.y5e{bottom:927.486145px;}
.y162{bottom:927.674744px;}
.y79{bottom:927.675110px;}
.y183{bottom:934.664142px;}
.y20e{bottom:936.987568px;}
.y201{bottom:936.987577px;}
.y5{bottom:939.565521px;}
.y5f{bottom:941.000702px;}
.y7a{bottom:941.189667px;}
.y161{bottom:942.674744px;}
.y60{bottom:946.157135px;}
.y7b{bottom:946.344635px;}
.y1b7{bottom:950.483398px;}
.y20d{bottom:950.487569px;}
.y200{bottom:950.487577px;}
.y182{bottom:952.656942px;}
.y160{bottom:957.674744px;}
.y61{bottom:959.671692px;}
.y7c{bottom:959.860474px;}
.y1b6{bottom:963.983398px;}
.y20c{bottom:963.987569px;}
.y1ff{bottom:963.987577px;}
.y6b{bottom:964.504028px;}
.y89{bottom:964.526276px;}
.y62{bottom:964.826569px;}
.y7d{bottom:965.015533px;}
.y181{bottom:970.649742px;}
.y15f{bottom:972.674744px;}
.y1b5{bottom:977.483399px;}
.y20b{bottom:977.487569px;}
.y1fe{bottom:977.487578px;}
.y63{bottom:978.253235px;}
.y7e{bottom:978.440735px;}
.y4{bottom:978.553528px;}
.y64{bottom:983.407928px;}
.y7f{bottom:983.597076px;}
.y15e{bottom:987.674744px;}
.y180{bottom:988.642542px;}
.y1b4{bottom:990.983399px;}
.y20a{bottom:990.987570px;}
.y1fd{bottom:990.987578px;}
.y65{bottom:996.922485px;}
.y80{bottom:997.111542px;}
.y66{bottom:1002.077362px;}
.y81{bottom:1002.264862px;}
.y15d{bottom:1002.674744px;}
.y1b3{bottom:1004.483399px;}
.y209{bottom:1004.487570px;}
.y1fc{bottom:1004.487578px;}
.y17f{bottom:1006.635342px;}
.y6c{bottom:1012.808807px;}
.y8a{bottom:1012.830872px;}
.y67{bottom:1014.201874px;}
.y82{bottom:1014.389374px;}
.y15c{bottom:1017.674744px;}
.y208{bottom:1017.987570px;}
.y1fb{bottom:1017.987579px;}
.y68{bottom:1019.358124px;}
.y83{bottom:1019.545624px;}
.y70{bottom:1022.113678px;}
.y8c{bottom:1022.135559px;}
.y17e{bottom:1024.628141px;}
.y71{bottom:1028.107819px;}
.y55{bottom:1029.411438px;}
.y1b2{bottom:1031.483401px;}
.y207{bottom:1031.487571px;}
.y1fa{bottom:1031.487579px;}
.y15b{bottom:1032.674744px;}
.y3{bottom:1033.362579px;}
.y44{bottom:1035.750183px;}
.y17d{bottom:1042.620941px;}
.y1b1{bottom:1044.983401px;}
.y206{bottom:1044.987571px;}
.y1f9{bottom:1044.987579px;}
.y2{bottom:1112.297058px;}
.y120{bottom:1126.524628px;}
.y4c{bottom:1126.524719px;}
.y4d{bottom:1126.920719px;}
.y1{bottom:1126.925079px;}
.h14{height:20.267084px;}
.h19{height:24.320151px;}
.hd{height:27.814500px;}
.h12{height:28.373654px;}
.h21{height:29.038028px;}
.h1c{height:29.106167px;}
.h1d{height:29.265599px;}
.h20{height:29.352524px;}
.h2a{height:32.130000px;}
.ha{height:37.086000px;}
.hc{height:39.735000px;}
.h25{height:39.984000px;}
.h13{height:40.533731px;}
.h1a{height:40.885859px;}
.h16{height:40.886225px;}
.h17{height:40.886591px;}
.h18{height:40.897577px;}
.h1b{height:40.898310px;}
.h15{height:41.200434px;}
.h1e{height:41.335693px;}
.h22{height:42.384000px;}
.h29{height:42.840000px;}
.h1f{height:43.080000px;}
.h28{height:43.785000px;}
.h11{height:44.220000px;}
.h3{height:45.696000px;}
.h10{height:46.140000px;}
.h26{height:46.704000px;}
.h2{height:47.231915px;}
.he{height:47.232000px;}
.h23{height:47.472000px;}
.h2b{height:49.632000px;}
.h9{height:52.980000px;}
.h24{height:53.406000px;}
.hb{height:55.860001px;}
.h8{height:61.120201px;}
.h6{height:67.194379px;}
.h7{height:67.212324px;}
.h4{height:77.142000px;}
.h27{height:100.704000px;}
.h5{height:137.088000px;}
.hf{height:859.789490px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:722.835022px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.933002px;}
.x3d{left:89.539352px;}
.x2{left:92.734348px;}
.x3{left:94.683151px;}
.x3e{left:97.039352px;}
.x40{left:107.539352px;}
.x8{left:142.854000px;}
.x9{left:225.171753px;}
.x29{left:231.499191px;}
.x12{left:233.289299px;}
.x24{left:234.364494px;}
.xe{left:236.552261px;}
.x23{left:241.762502px;}
.x22{left:245.698654px;}
.xf{left:248.111252px;}
.x2d{left:258.795753px;}
.xd{left:262.000809px;}
.x25{left:263.147850px;}
.x4{left:270.817497px;}
.x11{left:273.193794px;}
.x37{left:274.475177px;}
.x26{left:277.957133px;}
.x35{left:287.935959px;}
.xa{left:291.354904px;}
.x28{left:303.606743px;}
.xc{left:306.387154px;}
.x3c{left:383.503349px;}
.x36{left:402.496628px;}
.x2a{left:403.764130px;}
.x10{left:406.249649px;}
.x2b{left:415.323166px;}
.x2c{left:421.068283px;}
.x13{left:423.553665px;}
.x27{left:425.637131px;}
.x5{left:457.093048px;}
.x2f{left:461.692657px;}
.x16{left:468.841782px;}
.xb{left:472.309662px;}
.x32{left:473.467667px;}
.x1f{left:475.332747px;}
.x3f{left:477.562500px;}
.x1e{left:479.259155px;}
.x3b{left:482.330288px;}
.x15{left:483.664673px;}
.x33{left:485.026657px;}
.x1a{left:496.155167px;}
.x1d{left:498.129135px;}
.x39{left:499.828629px;}
.x1b{left:507.340763px;}
.x34{left:509.146732px;}
.x20{left:512.944656px;}
.x3a{left:514.637909px;}
.x1c{left:527.026657px;}
.x2e{left:538.729660px;}
.x14{left:541.368164px;}
.x17{left:640.284164px;}
.x30{left:642.693146px;}
.x18{left:651.844666px;}
.x31{left:654.252136px;}
.x19{left:658.978821px;}
.x21{left:660.087296px;}
.x38{left:661.135803px;}
.x6{left:694.929886px;}
.x7{left:753.380081px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322591pt;}
.v4{vertical-align:18.607422pt;}
.v2{vertical-align:23.466471pt;}
.v5{vertical-align:48.000000pt;}
.ls6{letter-spacing:-0.940800pt;}
.ls15{letter-spacing:-0.692885pt;}
.ls7{letter-spacing:-0.261333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000001pt;}
.ls3{letter-spacing:0.000004pt;}
.ls2{letter-spacing:0.000007pt;}
.ls1{letter-spacing:0.000157pt;}
.ls36{letter-spacing:0.200000pt;}
.ls1c{letter-spacing:0.311798pt;}
.ls1d{letter-spacing:0.346443pt;}
.lse{letter-spacing:0.450375pt;}
.ls34{letter-spacing:0.496377pt;}
.ls22{letter-spacing:0.497541pt;}
.ls28{letter-spacing:0.500267pt;}
.ls31{letter-spacing:0.501753pt;}
.lsb{letter-spacing:0.504814pt;}
.ls18{letter-spacing:0.544409pt;}
.ls17{letter-spacing:0.554308pt;}
.ls2c{letter-spacing:0.555180pt;}
.ls32{letter-spacing:0.567287pt;}
.ls20{letter-spacing:0.568619pt;}
.ls26{letter-spacing:0.571733pt;}
.ls2f{letter-spacing:0.573431pt;}
.ls14{letter-spacing:0.673654pt;}
.lsf{letter-spacing:0.675235pt;}
.ls11{letter-spacing:0.678933pt;}
.ls13{letter-spacing:0.680950pt;}
.lsc{letter-spacing:0.727530pt;}
.lsd{letter-spacing:0.762174pt;}
.ls9{letter-spacing:1.088818pt;}
.ls12{letter-spacing:1.110361pt;}
.ls1e{letter-spacing:1.177905pt;}
.ls33{letter-spacing:1.205486pt;}
.ls21{letter-spacing:1.208315pt;}
.ls27{letter-spacing:1.214933pt;}
.ls30{letter-spacing:1.218542pt;}
.ls16{letter-spacing:1.455059pt;}
.ls1f{letter-spacing:1.682719pt;}
.ls2d{letter-spacing:1.716012pt;}
.ls0{letter-spacing:4.853333pt;}
.ls35{letter-spacing:11.989331pt;}
.ls1a{letter-spacing:22.899860pt;}
.ls25{letter-spacing:24.043121pt;}
.ls24{letter-spacing:24.354919pt;}
.ls1b{letter-spacing:27.542192pt;}
.ls19{letter-spacing:34.782841pt;}
.ls2e{letter-spacing:34.817488pt;}
.ls2b{letter-spacing:36.618991pt;}
.ls23{letter-spacing:36.653633pt;}
.ls29{letter-spacing:43.305333pt;}
.ls10{letter-spacing:43.478555pt;}
.ls2a{letter-spacing:43.617130pt;}
.lsa{letter-spacing:46.977624pt;}
.ls8{letter-spacing:797.333330pt;}
.ws3c{word-spacing:-56.608730pt;}
.ws4f{word-spacing:-53.248236pt;}
.ws48{word-spacing:-53.109661pt;}
.ws4e{word-spacing:-47.670513pt;}
.ws49{word-spacing:-46.284739pt;}
.ws50{word-spacing:-46.250097pt;}
.ws53{word-spacing:-44.448594pt;}
.ws3d{word-spacing:-44.413947pt;}
.ws3f{word-spacing:-37.173298pt;}
.ws4a{word-spacing:-33.986026pt;}
.ws4b{word-spacing:-33.674227pt;}
.ws3e{word-spacing:-32.530966pt;}
.ws52{word-spacing:-15.141280pt;}
.ws3b{word-spacing:-14.847520pt;}
.ws51{word-spacing:-14.586099pt;}
.ws3a{word-spacing:-14.303111pt;}
.ws6{word-spacing:-12.282667pt;}
.ws2{word-spacing:-11.680000pt;}
.ws55{word-spacing:-11.181914pt;}
.ws4d{word-spacing:-11.148800pt;}
.ws1{word-spacing:-11.096534pt;}
.ws47{word-spacing:-11.088064pt;}
.ws38{word-spacing:-11.086165pt;}
.ws57{word-spacing:-11.062106pt;}
.ws45{word-spacing:-10.809011pt;}
.ws54{word-spacing:-10.644322pt;}
.ws4c{word-spacing:-10.612800pt;}
.ws46{word-spacing:-10.554984pt;}
.ws56{word-spacing:-10.530274pt;}
.ws44{word-spacing:-10.393280pt;}
.ws39{word-spacing:-10.185414pt;}
.ws43{word-spacing:-9.942905pt;}
.ws40{word-spacing:-9.631106pt;}
.ws0{word-spacing:-8.993600pt;}
.ws37{word-spacing:-8.938221pt;}
.ws67{word-spacing:-8.832000pt;}
.ws42{word-spacing:-8.760005pt;}
.ws7{word-spacing:-8.760000pt;}
.ws66{word-spacing:-8.618667pt;}
.ws97{word-spacing:-8.280000pt;}
.ws41{word-spacing:-8.255192pt;}
.ws3{word-spacing:-8.176000pt;}
.wsb{word-spacing:-2.464000pt;}
.wsa{word-spacing:-2.053333pt;}
.ws61{word-spacing:-1.716012pt;}
.ws5b{word-spacing:-1.682719pt;}
.ws70{word-spacing:-1.620267pt;}
.ws5a{word-spacing:-0.762174pt;}
.ws5e{word-spacing:-0.727530pt;}
.ws9{word-spacing:-0.693333pt;}
.ws62{word-spacing:-0.573431pt;}
.ws5f{word-spacing:-0.571733pt;}
.ws5c{word-spacing:-0.568619pt;}
.ws64{word-spacing:-0.567287pt;}
.ws7f{word-spacing:-0.522667pt;}
.ws63{word-spacing:-0.501753pt;}
.ws60{word-spacing:-0.500267pt;}
.ws5d{word-spacing:-0.497541pt;}
.ws65{word-spacing:-0.496377pt;}
.ws59{word-spacing:-0.450375pt;}
.ws58{word-spacing:-0.346443pt;}
.ws8b{word-spacing:-0.313600pt;}
.ws83{word-spacing:-0.209067pt;}
.wsb9{word-spacing:-0.200000pt;}
.ws4{word-spacing:-0.052267pt;}
.ws95{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.052267pt;}
.ws6d{word-spacing:0.261333pt;}
.wsf{word-spacing:0.313600pt;}
.wsb0{word-spacing:0.365867pt;}
.ws81{word-spacing:0.470400pt;}
.ws35{word-spacing:0.574933pt;}
.wsb7{word-spacing:0.627200pt;}
.wse{word-spacing:0.679467pt;}
.ws6e{word-spacing:0.784000pt;}
.ws28{word-spacing:0.836267pt;}
.ws5{word-spacing:0.888533pt;}
.wsb1{word-spacing:0.940800pt;}
.ws27{word-spacing:1.097600pt;}
.ws9a{word-spacing:1.411200pt;}
.wsc{word-spacing:1.568000pt;}
.ws96{word-spacing:1.584000pt;}
.ws7b{word-spacing:1.829333pt;}
.ws71{word-spacing:1.881600pt;}
.ws6c{word-spacing:1.933867pt;}
.ws23{word-spacing:2.247461pt;}
.ws82{word-spacing:2.299733pt;}
.ws79{word-spacing:2.352000pt;}
.wsb3{word-spacing:2.456533pt;}
.ws87{word-spacing:2.561067pt;}
.ws7c{word-spacing:2.613333pt;}
.ws22{word-spacing:2.665595pt;}
.ws80{word-spacing:2.770133pt;}
.ws75{word-spacing:2.822400pt;}
.ws76{word-spacing:3.136000pt;}
.ws12{word-spacing:3.449600pt;}
.ws15{word-spacing:3.815467pt;}
.ws74{word-spacing:3.867733pt;}
.ws73{word-spacing:3.920000pt;}
.wsb4{word-spacing:3.972267pt;}
.ws92{word-spacing:4.181333pt;}
.ws26{word-spacing:4.442667pt;}
.ws78{word-spacing:4.599467pt;}
.wsa9{word-spacing:4.651733pt;}
.ws16{word-spacing:4.704000pt;}
.ws9c{word-spacing:4.756267pt;}
.ws29{word-spacing:4.808533pt;}
.ws84{word-spacing:4.860800pt;}
.ws2a{word-spacing:4.965333pt;}
.ws7d{word-spacing:5.017600pt;}
.ws72{word-spacing:5.122133pt;}
.ws91{word-spacing:5.226667pt;}
.wsaa{word-spacing:5.331200pt;}
.ws9d{word-spacing:5.540267pt;}
.ws1d{word-spacing:5.592533pt;}
.ws19{word-spacing:5.697067pt;}
.ws14{word-spacing:5.853867pt;}
.ws7a{word-spacing:5.906133pt;}
.wsad{word-spacing:6.010667pt;}
.wsac{word-spacing:6.062933pt;}
.wsa1{word-spacing:6.115200pt;}
.ws10{word-spacing:6.272000pt;}
.wsa6{word-spacing:6.376533pt;}
.wsa3{word-spacing:6.428800pt;}
.wsb8{word-spacing:6.637867pt;}
.ws9b{word-spacing:6.690133pt;}
.ws1a{word-spacing:6.742400pt;}
.ws8d{word-spacing:6.794667pt;}
.ws20{word-spacing:6.846933pt;}
.ws2f{word-spacing:7.056000pt;}
.ws30{word-spacing:7.160533pt;}
.ws77{word-spacing:7.265067pt;}
.wsa4{word-spacing:7.369600pt;}
.ws2e{word-spacing:7.630933pt;}
.ws13{word-spacing:7.787733pt;}
.ws8e{word-spacing:7.840000pt;}
.ws17{word-spacing:7.892267pt;}
.ws90{word-spacing:7.996800pt;}
.ws36{word-spacing:8.101333pt;}
.ws93{word-spacing:8.153600pt;}
.ws86{word-spacing:8.258134pt;}
.wsa8{word-spacing:8.519467pt;}
.ws1c{word-spacing:8.676267pt;}
.ws6f{word-spacing:8.728534pt;}
.wsd{word-spacing:8.780800pt;}
.ws21{word-spacing:8.885334pt;}
.ws6b{word-spacing:9.146667pt;}
.ws34{word-spacing:9.512534pt;}
.ws8c{word-spacing:9.564800pt;}
.ws31{word-spacing:9.826134pt;}
.ws9f{word-spacing:9.930667pt;}
.wsae{word-spacing:10.035200pt;}
.ws6a{word-spacing:10.348800pt;}
.wsaf{word-spacing:10.453334pt;}
.ws94{word-spacing:10.714667pt;}
.wsa2{word-spacing:10.819200pt;}
.ws9e{word-spacing:10.871467pt;}
.ws8f{word-spacing:11.080534pt;}
.ws2b{word-spacing:11.289600pt;}
.wsb6{word-spacing:11.394134pt;}
.ws88{word-spacing:11.707734pt;}
.ws89{word-spacing:11.760000pt;}
.ws2d{word-spacing:11.969067pt;}
.ws24{word-spacing:12.230400pt;}
.ws8a{word-spacing:12.334934pt;}
.wsa7{word-spacing:12.439467pt;}
.ws18{word-spacing:12.596267pt;}
.ws98{word-spacing:12.700800pt;}
.ws2c{word-spacing:12.857600pt;}
.ws1b{word-spacing:13.223467pt;}
.ws11{word-spacing:13.641600pt;}
.ws1e{word-spacing:14.477867pt;}
.ws85{word-spacing:15.000534pt;}
.wsa0{word-spacing:15.105067pt;}
.wsa5{word-spacing:15.209600pt;}
.wsb2{word-spacing:15.889067pt;}
.wsb5{word-spacing:16.882134pt;}
.ws25{word-spacing:18.241067pt;}
.wsab{word-spacing:18.502400pt;}
.ws32{word-spacing:19.338667pt;}
.ws33{word-spacing:20.436267pt;}
.ws99{word-spacing:20.645334pt;}
.ws7e{word-spacing:30.419201pt;}
.ws69{word-spacing:73.941342pt;}
.ws68{word-spacing:107.733334pt;}
._f{margin-left:-36.688273pt;}
._c{margin-left:-34.817475pt;}
._e{margin-left:-27.542194pt;}
._10{margin-left:-24.354918pt;}
._d{margin-left:-22.899860pt;}
._23{margin-left:-6.184050pt;}
._7{margin-left:-5.169856pt;}
._3{margin-left:-3.872102pt;}
._4{margin-left:-2.902437pt;}
._0{margin-left:-1.753617pt;}
._1{width:1.664050pt;}
._2{width:3.228695pt;}
._6{width:5.069858pt;}
._20{width:6.017181pt;}
._11{width:7.642814pt;}
._8{width:8.580165pt;}
._a{width:10.371133pt;}
._9{width:12.207524pt;}
._5{width:14.015930pt;}
._21{width:15.949244pt;}
._24{width:20.352101pt;}
._22{width:39.872101pt;}
._1a{width:70.101332pt;}
._17{width:86.745597pt;}
._18{width:100.437313pt;}
._1e{width:103.513597pt;}
._19{width:109.098667pt;}
._1f{width:110.208001pt;}
._1c{width:201.770674pt;}
._13{width:217.856004pt;}
._12{width:229.120004pt;}
._16{width:230.016004pt;}
._14{width:240.725313pt;}
._1b{width:243.413334pt;}
._15{width:250.837338pt;}
._1d{width:271.658667pt;}
._b{width:464.387768pt;}
.fsd{font-size:24.746134pt;}
.fsa{font-size:28.000000pt;}
.fse{font-size:29.694933pt;}
.fsb{font-size:34.644267pt;}
.fs13{font-size:35.455467pt;}
.fsf{font-size:35.538666pt;}
.fs10{font-size:35.733332pt;}
.fs12{font-size:35.839467pt;}
.fs7{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fs14{font-size:48.000000pt;}
.fsc{font-size:49.491735pt;}
.fs11{font-size:50.470932pt;}
.fs8{font-size:52.266668pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933334pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:66.836665pt;}
.y12{bottom:77.504669pt;}
.y11{bottom:88.172668pt;}
.y130{bottom:93.900397pt;}
.y15a{bottom:94.732939pt;}
.y10{bottom:98.840668pt;}
.y1f6{bottom:100.263344pt;}
.y1b0{bottom:102.774128pt;}
.y1ed{bottom:103.544503pt;}
.yf{bottom:109.508667pt;}
.y12f{bottom:109.893997pt;}
.y159{bottom:110.726539pt;}
.y1f5{bottom:110.931344pt;}
.y1af{bottom:114.774128pt;}
.y1ec{bottom:115.544503pt;}
.y12e{bottom:125.887597pt;}
.y158{bottom:126.720138pt;}
.y1ae{bottom:126.774129pt;}
.y1eb{bottom:127.544503pt;}
.y1f4{bottom:133.434011pt;}
.y1ad{bottom:138.774129pt;}
.y4b{bottom:139.077332pt;}
.y1ea{bottom:139.544504pt;}
.y12d{bottom:141.881197pt;}
.y157{bottom:142.713738pt;}
.y43{bottom:143.332937pt;}
.y1f3{bottom:149.431344pt;}
.y1ac{bottom:150.774129pt;}
.y4a{bottom:151.077332pt;}
.y1e9{bottom:151.544504pt;}
.y12c{bottom:157.874797pt;}
.y156{bottom:158.707338pt;}
.y42{bottom:159.326538pt;}
.y1e8{bottom:163.544504pt;}
.y4e{bottom:163.953328pt;}
.y1f2{bottom:165.428677pt;}
.y49{bottom:167.077332pt;}
.y54{bottom:172.071472pt;}
.y12b{bottom:173.932398pt;}
.y155{bottom:174.700938pt;}
.y48{bottom:175.077332pt;}
.y41{bottom:175.320129pt;}
.y1e7{bottom:175.544504pt;}
.y1f1{bottom:181.426010pt;}
.y51{bottom:185.903463pt;}
.y53{bottom:186.441996pt;}
.y1e6{bottom:187.544505pt;}
.y12a{bottom:189.925998pt;}
.y154{bottom:190.694538pt;}
.y1ab{bottom:190.838131pt;}
.y47{bottom:191.077332pt;}
.y40{bottom:191.332926pt;}
.y1f0{bottom:197.423343pt;}
.y46{bottom:199.077332pt;}
.y1e5{bottom:199.544505pt;}
.y52{bottom:199.655457pt;}
.y129{bottom:205.919598pt;}
.y153{bottom:206.688137pt;}
.y1aa{bottom:206.831731pt;}
.y3f{bottom:207.326538pt;}
.y45{bottom:211.077332pt;}
.y1e4{bottom:211.544505pt;}
.y1ef{bottom:213.420676pt;}
.y128{bottom:221.913198pt;}
.y152{bottom:222.681737pt;}
.y1a9{bottom:222.825331pt;}
.y3e{bottom:223.320129pt;}
.y1e3{bottom:223.544506pt;}
.y1ee{bottom:229.418009pt;}
.y10b{bottom:230.194100pt;}
.y115{bottom:231.399450pt;}
.y1e2{bottom:235.544506pt;}
.y127{bottom:237.906798pt;}
.y151{bottom:238.675337pt;}
.y1a8{bottom:238.818931pt;}
.y3d{bottom:239.320129pt;}
.y114{bottom:240.640808pt;}
.y10a{bottom:240.673991pt;}
.y1e1{bottom:247.544506pt;}
.y1f8{bottom:249.061458pt;}
.y10d{bottom:249.162130pt;}
.y116{bottom:250.401830pt;}
.y100{bottom:250.472799pt;}
.yf9{bottom:250.473999pt;}
.y126{bottom:253.900397pt;}
.y28{bottom:254.630269pt;}
.y150{bottom:254.668937pt;}
.y1a7{bottom:254.812530pt;}
.y3c{bottom:255.320129pt;}
.y1e0{bottom:259.544507pt;}
.y117{bottom:266.043716pt;}
.y101{bottom:266.114685pt;}
.y1f7{bottom:266.661458pt;}
.y125{bottom:269.893997pt;}
.y27{bottom:270.623861pt;}
.y14f{bottom:270.662537pt;}
.y1a6{bottom:270.806130pt;}
.y1df{bottom:271.544507pt;}
.y10e{bottom:274.227257pt;}
.yfa{bottom:275.539126pt;}
.y118{bottom:281.763553pt;}
.y102{bottom:281.834521pt;}
.y1de{bottom:283.544507pt;}
.y124{bottom:285.887597pt;}
.y26{bottom:286.630269pt;}
.y14e{bottom:286.688117pt;}
.y1a5{bottom:286.799730pt;}
.y3b{bottom:287.326538pt;}
.y11f{bottom:291.791463pt;}
.y109{bottom:291.864807pt;}
.y1dd{bottom:295.544507pt;}
.y119{bottom:297.405439pt;}
.y103{bottom:297.485069pt;}
.y10f{bottom:299.370334pt;}
.yfb{bottom:300.673541pt;}
.y123{bottom:301.881197pt;}
.y25{bottom:302.623861pt;}
.y14d{bottom:302.681717pt;}
.y1a4{bottom:302.793330pt;}
.y3a{bottom:303.320129pt;}
.y1dc{bottom:307.544508pt;}
.y11a{bottom:313.125276pt;}
.y104{bottom:313.204906pt;}
.y122{bottom:317.874797pt;}
.y24{bottom:318.643066pt;}
.y14c{bottom:318.675317pt;}
.y1a3{bottom:318.786930pt;}
.y39{bottom:319.345744pt;}
.y1db{bottom:319.544508pt;}
.y110{bottom:324.435462pt;}
.yfc{bottom:325.738669pt;}
.y11b{bottom:328.845112pt;}
.y105{bottom:328.924742pt;}
.y113{bottom:331.239461pt;}
.y1da{bottom:331.544508pt;}
.yff{bottom:332.550008pt;}
.y121{bottom:333.874797pt;}
.y23{bottom:334.636658pt;}
.y14b{bottom:334.668916pt;}
.y1a2{bottom:334.780529pt;}
.y38{bottom:335.339355pt;}
.y1d9{bottom:343.544509pt;}
.y11c{bottom:344.486999pt;}
.y106{bottom:344.566629pt;}
.y111{bottom:349.569877pt;}
.y22{bottom:350.630249pt;}
.y14a{bottom:350.662516pt;}
.y1a1{bottom:350.774129pt;}
.yfd{bottom:350.881746pt;}
.y37{bottom:351.332926pt;}
.y1d8{bottom:355.544509pt;}
.y11d{bottom:360.206835pt;}
.y107{bottom:360.286465pt;}
.y21{bottom:366.623861pt;}
.y149{bottom:366.662516pt;}
.y1a0{bottom:366.799730pt;}
.y36{bottom:367.326538pt;}
.y1d7{bottom:367.544509pt;}
.yf8{bottom:372.343465pt;}
.y10c{bottom:372.375448pt;}
.y112{bottom:374.712954pt;}
.y11e{bottom:375.926671pt;}
.y108{bottom:376.006301pt;}
.yfe{bottom:376.016161pt;}
.y169{bottom:376.942123pt;}
.y1d6{bottom:379.544510pt;}
.y20{bottom:382.668660pt;}
.y19f{bottom:382.793330pt;}
.y35{bottom:383.320150pt;}
.y168{bottom:388.272790pt;}
.y1d5{bottom:391.544510pt;}
.yf7{bottom:393.886766pt;}
.yd6{bottom:394.914761pt;}
.y1f{bottom:398.662272pt;}
.y148{bottom:398.707318pt;}
.y19e{bottom:398.786930pt;}
.y34{bottom:399.395833pt;}
.y167{bottom:399.603456pt;}
.yf6{bottom:403.292684pt;}
.y1d4{bottom:403.544510pt;}
.yd5{bottom:404.320679pt;}
.y166{bottom:410.934123pt;}
.yd9{bottom:412.003459pt;}
.yb8{bottom:412.007487pt;}
.ye3{bottom:412.095337pt;}
.ycb{bottom:412.416789pt;}
.y1e{bottom:414.655884pt;}
.y147{bottom:414.700917pt;}
.y19d{bottom:414.780529pt;}
.y33{bottom:415.389445pt;}
.y1d3{bottom:415.544510pt;}
.yb9{bottom:416.590007pt;}
.yda{bottom:416.655314pt;}
.ye4{bottom:416.676798pt;}
.ycc{bottom:417.067342pt;}
.y1d2{bottom:427.544511pt;}
.yba{bottom:428.523478pt;}
.ye5{bottom:428.611328pt;}
.y1d{bottom:430.649455pt;}
.y146{bottom:430.694517pt;}
.y19c{bottom:430.774129pt;}
.y17c{bottom:430.970047pt;}
.y32{bottom:431.383057pt;}
.ybb{bottom:433.104818pt;}
.ye6{bottom:433.192668pt;}
.y1d1{bottom:439.544511pt;}
.ybc{bottom:443.881999pt;}
.ye7{bottom:443.968791pt;}
.ye1{bottom:445.919474pt;}
.yd3{bottom:446.328817pt;}
.y1c{bottom:446.643066pt;}
.y145{bottom:446.688117pt;}
.y19b{bottom:446.889373pt;}
.y17b{bottom:447.172714pt;}
.y31{bottom:447.376668pt;}
.ybd{bottom:448.464803pt;}
.ye8{bottom:448.552816pt;}
.y1d0{bottom:451.544511pt;}
.yf5{bottom:453.415487pt;}
.ydb{bottom:456.180786pt;}
.ycd{bottom:456.592814pt;}
.yca{bottom:457.040812pt;}
.ybe{bottom:460.398153pt;}
.ye9{bottom:460.486125pt;}
.ydc{bottom:460.763468pt;}
.yce{bottom:461.175456pt;}
.y1b{bottom:462.636678pt;}
.y144{bottom:462.681717pt;}
.y19a{bottom:462.882973pt;}
.y17a{bottom:463.300714pt;}
.y30{bottom:463.370239pt;}
.y1cf{bottom:463.544512pt;}
.ybf{bottom:464.982137pt;}
.yea{bottom:465.068807pt;}
.y1ce{bottom:475.544512pt;}
.yc0{bottom:476.994019pt;}
.yeb{bottom:477.083333pt;}
.y1a{bottom:478.630249pt;}
.y143{bottom:478.675317pt;}
.y199{bottom:478.876573pt;}
.y2f{bottom:479.363851pt;}
.y179{bottom:479.428713pt;}
.yc1{bottom:481.576782pt;}
.yec{bottom:481.663452pt;}
.y1cd{bottom:487.544512pt;}
.yc2{bottom:493.591349pt;}
.yed{bottom:493.679484pt;}
.y19{bottom:494.623861pt;}
.y142{bottom:494.668916pt;}
.y198{bottom:494.870173pt;}
.y2e{bottom:495.357463pt;}
.y178{bottom:495.556712pt;}
.yc3{bottom:498.172811pt;}
.yee{bottom:498.262004pt;}
.ydd{bottom:499.119344pt;}
.ycf{bottom:499.532796pt;}
.y1cc{bottom:499.544513pt;}
.yde{bottom:503.702148pt;}
.yd0{bottom:504.112671pt;}
.yc4{bottom:510.105998pt;}
.yef{bottom:510.195353pt;}
.y18{bottom:510.623861pt;}
.y141{bottom:510.662516pt;}
.y197{bottom:510.863773pt;}
.y2d{bottom:511.351034pt;}
.y1cb{bottom:511.544513pt;}
.y177{bottom:511.684712pt;}
.yc5{bottom:514.690145pt;}
.yf0{bottom:514.776815pt;}
.y1ca{bottom:523.544513pt;}
.y17{bottom:526.636678pt;}
.y140{bottom:526.688117pt;}
.yc6{bottom:526.703328pt;}
.yf1{bottom:526.791341pt;}
.y196{bottom:526.857372pt;}
.y2c{bottom:527.344645pt;}
.y176{bottom:527.812711pt;}
.yc7{bottom:531.283447pt;}
.yf2{bottom:531.372803pt;}
.y1c9{bottom:535.544513pt;}
.ydf{bottom:542.058146pt;}
.yc8{bottom:542.062012pt;}
.yf3{bottom:542.149984pt;}
.yd1{bottom:542.470011pt;}
.y16{bottom:542.630249pt;}
.y13f{bottom:542.681717pt;}
.y195{bottom:542.850972pt;}
.y2b{bottom:543.338257pt;}
.y175{bottom:543.940711pt;}
.ye0{bottom:546.642131pt;}
.yc9{bottom:546.645996pt;}
.yf4{bottom:546.732788pt;}
.yd2{bottom:547.052816pt;}
.y1c8{bottom:547.544514pt;}
.ye2{bottom:550.328817pt;}
.yd4{bottom:550.740682pt;}
.yd8{bottom:551.476685pt;}
.y50{bottom:552.748820pt;}
.yb7{bottom:555.532674pt;}
.yd7{bottom:555.926147pt;}
.y15{bottom:558.623861pt;}
.y13e{bottom:558.675317pt;}
.y194{bottom:558.844572pt;}
.y2a{bottom:559.331868pt;}
.y1c7{bottom:559.544514pt;}
.y174{bottom:560.068710pt;}
.y1c6{bottom:571.544514pt;}
.y14{bottom:574.623861pt;}
.y13d{bottom:574.668916pt;}
.y193{bottom:574.838172pt;}
.y29{bottom:575.325439pt;}
.y173{bottom:576.196710pt;}
.y1c5{bottom:583.544515pt;}
.ya0{bottom:589.275350pt;}
.yaf{bottom:589.275562pt;}
.y13c{bottom:590.662516pt;}
.y192{bottom:590.831772pt;}
.y172{bottom:592.324709pt;}
.y1c4{bottom:595.544515pt;}
.yae{bottom:599.755452pt;}
.y90{bottom:600.991333pt;}
.y13b{bottom:606.662516pt;}
.y191{bottom:606.825371pt;}
.y9a{bottom:608.068807pt;}
.y171{bottom:608.452709pt;}
.yb0{bottom:609.317269pt;}
.ya4{bottom:609.354004pt;}
.y91{bottom:609.748657pt;}
.y13a{bottom:622.668916pt;}
.y190{bottom:622.818971pt;}
.y170{bottom:624.580708pt;}
.ya5{bottom:625.004552pt;}
.y92{bottom:625.390544pt;}
.ye{bottom:627.391195pt;}
.yb1{bottom:633.143863pt;}
.y9b{bottom:633.781032pt;}
.y139{bottom:638.662516pt;}
.y18f{bottom:638.812571pt;}
.y16f{bottom:640.708708pt;}
.ya6{bottom:640.724388pt;}
.y93{bottom:641.110380pt;}
.yd{bottom:643.391195pt;}
.yad{bottom:650.747314pt;}
.ya1{bottom:651.140666pt;}
.y138{bottom:654.734792pt;}
.y18e{bottom:654.806171pt;}
.ya7{bottom:656.374936pt;}
.y94{bottom:656.752266pt;}
.y16e{bottom:656.836707pt;}
.yc{bottom:659.391195pt;}
.yb2{bottom:659.516811pt;}
.y9c{bottom:659.573220pt;}
.y1c3{bottom:664.874126pt;}
.y137{bottom:670.728391pt;}
.y18d{bottom:670.799771pt;}
.ya8{bottom:672.094772pt;}
.y95{bottom:672.472103pt;}
.y16d{bottom:672.964707pt;}
.yb{bottom:675.391195pt;}
.yb3{bottom:684.581938pt;}
.y9d{bottom:685.285445pt;}
.y136{bottom:686.721991pt;}
.y18c{bottom:686.793370pt;}
.ya9{bottom:687.814609pt;}
.y96{bottom:688.191939pt;}
.y1c2{bottom:688.874127pt;}
.ya3{bottom:690.590169pt;}
.ya{bottom:691.391195pt;}
.yb6{bottom:691.395426pt;}
.y16c{bottom:696.762039pt;}
.y1c1{bottom:700.874127pt;}
.y135{bottom:702.715591pt;}
.y18b{bottom:702.786970pt;}
.yaa{bottom:703.456495pt;}
.y97{bottom:703.833826pt;}
.y9{bottom:707.391195pt;}
.y16b{bottom:708.762039pt;}
.yb4{bottom:710.954887pt;}
.y9e{bottom:711.077632pt;}
.y1c0{bottom:712.874128pt;}
.y134{bottom:718.709191pt;}
.y18a{bottom:718.780570pt;}
.yab{bottom:719.176332pt;}
.y98{bottom:719.553662pt;}
.y1bf{bottom:724.874128pt;}
.y8{bottom:727.391195pt;}
.y16a{bottom:729.956706pt;}
.ya2{bottom:732.499430pt;}
.y8f{bottom:732.739502pt;}
.y133{bottom:734.702791pt;}
.y189{bottom:734.774170pt;}
.yb5{bottom:734.850770pt;}
.yac{bottom:734.896168pt;}
.y99{bottom:735.273499pt;}
.y9f{bottom:735.625966pt;}
.y1be{bottom:748.874129pt;}
.y132{bottom:750.696390pt;}
.y188{bottom:750.844572pt;}
.y165{bottom:751.570701pt;}
.y4f{bottom:752.379191pt;}
.y6e{bottom:752.948649pt;}
.y8e{bottom:754.184088pt;}
.y1bd{bottom:760.874129pt;}
.y56{bottom:762.354004pt;}
.y8d{bottom:763.590007pt;}
.y164{bottom:766.234701pt;}
.y131{bottom:766.689990pt;}
.y187{bottom:766.838172pt;}
.y69{bottom:770.220784pt;}
.y57{bottom:771.459310pt;}
.y85{bottom:771.478027pt;}
.y72{bottom:771.625977pt;}
.y1bc{bottom:772.874129pt;}
.y58{bottom:776.040690pt;}
.y86{bottom:776.128825pt;}
.y73{bottom:776.208822pt;}
.y186{bottom:782.831772pt;}
.y7{bottom:784.487223pt;}
.y1bb{bottom:784.874130pt;}
.y205{bottom:784.877845pt;}
.y59{bottom:787.974040pt;}
.y74{bottom:788.142008pt;}
.y5a{bottom:792.555339pt;}
.y75{bottom:792.723470pt;}
.y1ba{bottom:796.874130pt;}
.y204{bottom:796.877845pt;}
.y185{bottom:798.825371pt;}
.y6{bottom:803.157878pt;}
.y5b{bottom:803.333089pt;}
.y76{bottom:803.499837pt;}
.y6d{bottom:804.135173pt;}
.y8b{bottom:805.391764pt;}
.y5c{bottom:807.915202pt;}
.y77{bottom:808.083171pt;}
.y1b9{bottom:808.874130pt;}
.y210{bottom:808.877838pt;}
.y203{bottom:808.877845pt;}
.y84{bottom:810.471191pt;}
.y163{bottom:811.266439pt;}
.y6f{bottom:812.779704pt;}
.y6a{bottom:814.398275pt;}
.y87{bottom:814.416504pt;}
.y184{bottom:814.818971pt;}
.y88{bottom:818.999837pt;}
.y5d{bottom:819.850016pt;}
.y78{bottom:820.016683pt;}
.y1b8{bottom:820.874131pt;}
.y20f{bottom:820.877838pt;}
.y202{bottom:820.877846pt;}
.y5e{bottom:824.432129pt;}
.y162{bottom:824.599772pt;}
.y79{bottom:824.600098pt;}
.y183{bottom:830.812571pt;}
.y20e{bottom:832.877838pt;}
.y201{bottom:832.877846pt;}
.y5{bottom:835.169352pt;}
.y5f{bottom:836.445068pt;}
.y7a{bottom:836.613037pt;}
.y161{bottom:837.933105pt;}
.y60{bottom:841.028564pt;}
.y7b{bottom:841.195231pt;}
.y1b7{bottom:844.874132pt;}
.y20d{bottom:844.877839pt;}
.y200{bottom:844.877846pt;}
.y182{bottom:846.806171pt;}
.y160{bottom:851.266439pt;}
.y61{bottom:853.041504pt;}
.y7c{bottom:853.209310pt;}
.y1b6{bottom:856.874132pt;}
.y20c{bottom:856.877839pt;}
.y1ff{bottom:856.877847pt;}
.y6b{bottom:857.336914pt;}
.y89{bottom:857.356689pt;}
.y62{bottom:857.623617pt;}
.y7d{bottom:857.791585pt;}
.y181{bottom:862.799771pt;}
.y15f{bottom:864.599772pt;}
.y1b5{bottom:868.874132pt;}
.y20b{bottom:868.877839pt;}
.y1fe{bottom:868.877847pt;}
.y63{bottom:869.558431pt;}
.y7e{bottom:869.725098pt;}
.y4{bottom:869.825358pt;}
.y64{bottom:874.140381pt;}
.y7f{bottom:874.308512pt;}
.y15e{bottom:877.933105pt;}
.y180{bottom:878.793370pt;}
.y1b4{bottom:880.874133pt;}
.y20a{bottom:880.877840pt;}
.y1fd{bottom:880.877847pt;}
.y65{bottom:886.153320pt;}
.y80{bottom:886.321370pt;}
.y66{bottom:890.735433pt;}
.y81{bottom:890.902100pt;}
.y15d{bottom:891.266439pt;}
.y1b3{bottom:892.874133pt;}
.y209{bottom:892.877840pt;}
.y1fc{bottom:892.877847pt;}
.y17f{bottom:894.786970pt;}
.y6c{bottom:900.274495pt;}
.y8a{bottom:900.294108pt;}
.y67{bottom:901.512777pt;}
.y82{bottom:901.679443pt;}
.y15c{bottom:904.599772pt;}
.y208{bottom:904.877840pt;}
.y1fb{bottom:904.877848pt;}
.y68{bottom:906.096110pt;}
.y83{bottom:906.262777pt;}
.y70{bottom:908.545492pt;}
.y8c{bottom:908.564941pt;}
.y17e{bottom:910.780570pt;}
.y71{bottom:913.873617pt;}
.y55{bottom:915.032389pt;}
.y1b2{bottom:916.874134pt;}
.y207{bottom:916.877841pt;}
.y1fa{bottom:916.877848pt;}
.y15b{bottom:917.933105pt;}
.y3{bottom:918.544515pt;}
.y44{bottom:920.666829pt;}
.y17d{bottom:926.774170pt;}
.y1b1{bottom:928.874134pt;}
.y206{bottom:928.877841pt;}
.y1f9{bottom:928.877848pt;}
.y2{bottom:988.708496pt;}
.y120{bottom:1001.355225pt;}
.y4c{bottom:1001.355306pt;}
.y4d{bottom:1001.707306pt;}
.y1{bottom:1001.711182pt;}
.h14{height:18.015186pt;}
.h19{height:21.617912pt;}
.hd{height:24.724000pt;}
.h12{height:25.221026pt;}
.h21{height:25.811580pt;}
.h1c{height:25.872149pt;}
.h1d{height:26.013866pt;}
.h20{height:26.091132pt;}
.h2a{height:28.560000pt;}
.ha{height:32.965333pt;}
.hc{height:35.320000pt;}
.h25{height:35.541333pt;}
.h13{height:36.029983pt;}
.h1a{height:36.342985pt;}
.h16{height:36.343311pt;}
.h17{height:36.343636pt;}
.h18{height:36.353402pt;}
.h1b{height:36.354053pt;}
.h15{height:36.622608pt;}
.h1e{height:36.742838pt;}
.h22{height:37.674667pt;}
.h29{height:38.080000pt;}
.h1f{height:38.293333pt;}
.h28{height:38.920000pt;}
.h11{height:39.306667pt;}
.h3{height:40.618667pt;}
.h10{height:41.013333pt;}
.h26{height:41.514667pt;}
.h2{height:41.983924pt;}
.he{height:41.984000pt;}
.h23{height:42.197333pt;}
.h2b{height:44.117333pt;}
.h9{height:47.093333pt;}
.h24{height:47.472000pt;}
.hb{height:49.653334pt;}
.h8{height:54.329068pt;}
.h6{height:59.728337pt;}
.h7{height:59.744288pt;}
.h4{height:68.570667pt;}
.h27{height:89.514667pt;}
.h5{height:121.856000pt;}
.hf{height:764.257324pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:642.520020pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.496002pt;}
.x3d{left:79.590535pt;}
.x2{left:82.430532pt;}
.x3{left:84.162801pt;}
.x3e{left:86.257202pt;}
.x40{left:95.590535pt;}
.x8{left:126.981333pt;}
.x9{left:200.152669pt;}
.x29{left:205.777059pt;}
.x12{left:207.368266pt;}
.x24{left:208.323995pt;}
.xe{left:210.268677pt;}
.x23{left:214.900002pt;}
.x22{left:218.398804pt;}
.xf{left:220.543335pt;}
.x2d{left:230.040670pt;}
.xd{left:232.889608pt;}
.x25{left:233.909200pt;}
.x4{left:240.726664pt;}
.x11{left:242.838928pt;}
.x37{left:243.977935pt;}
.x26{left:247.073007pt;}
.x35{left:255.943075pt;}
.xa{left:258.982137pt;}
.x28{left:269.872660pt;}
.xc{left:272.344137pt;}
.x3c{left:340.891866pt;}
.x36{left:357.774780pt;}
.x2a{left:358.901449pt;}
.x10{left:361.110799pt;}
.x2b{left:369.176147pt;}
.x2c{left:374.282918pt;}
.x13{left:376.492147pt;}
.x27{left:378.344116pt;}
.x5{left:406.304932pt;}
.x2f{left:410.393473pt;}
.x16{left:416.748250pt;}
.xb{left:419.830811pt;}
.x32{left:420.860148pt;}
.x1f{left:422.517997pt;}
.x3f{left:424.500000pt;}
.x1e{left:426.008138pt;}
.x3b{left:428.738034pt;}
.x15{left:429.924154pt;}
.x33{left:431.134806pt;}
.x1a{left:441.026815pt;}
.x1d{left:442.781453pt;}
.x39{left:444.292114pt;}
.x1b{left:450.969567pt;}
.x34{left:452.574873pt;}
.x20{left:455.950806pt;}
.x3a{left:457.455920pt;}
.x1c{left:468.468140pt;}
.x2e{left:478.870809pt;}
.x14{left:481.216146pt;}
.x17{left:569.141479pt;}
.x30{left:571.282796pt;}
.x18{left:579.417480pt;}
.x31{left:581.557454pt;}
.x19{left:585.758952pt;}
.x21{left:586.744263pt;}
.x38{left:587.676270pt;}
.x6{left:617.715454pt;}
.x7{left:669.671183pt;}
}




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