
    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_818ff4dbbd153d99c4c4baf9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971954;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_60f9c972eecfc26d9dd03cea.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.736816;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_6ea5686e49fa70e7e5e51319.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.751465;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_9ac2eac19ee72ae7e593e0f7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_632d3358fb1b1189442a5b35.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7124714474d51e238cecc7be.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f2d5511a1279b10605435f2a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f95c7f8bfdf7b5c3b7131f04.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_87d40ee7eace85cd623e1183.woff2')format("woff");}.ffa{font-family:ffa;line-height:4.457031;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_1b2327a81ccb099b14f38aa0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c049e9e128fce670450109f0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_364d6179c7aab00d73d62ab3.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ec31ea1c4e9f4a5ebf3e3b45.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_aa41de280cb29466ecfd1abc.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_0a7ea510aa39fff42292a9b9.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-ms-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.500000,-1.500000,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);}
.v4{vertical-align:-84.960000px;}
.v7{vertical-align:-75.600000px;}
.v6{vertical-align:-33.240000px;}
.v2{vertical-align:-30.240000px;}
.v8{vertical-align:-14.400000px;}
.v5{vertical-align:-9.360000px;}
.va{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:14.400000px;}
.v1{vertical-align:30.240000px;}
.v3{vertical-align:33.120000px;}
.vc{vertical-align:48.240000px;}
.vb{vertical-align:54.720000px;}
.vd{vertical-align:69.840000px;}
.ve{vertical-align:92.160000px;}
.ls12{letter-spacing:-0.864000px;}
.ls14{letter-spacing:-0.810000px;}
.lsd{letter-spacing:-0.576000px;}
.ls9{letter-spacing:-0.457800px;}
.ls21{letter-spacing:-0.450600px;}
.lsc{letter-spacing:-0.432000px;}
.ls3{letter-spacing:-0.414600px;}
.lsa{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.262200px;}
.ls17{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.181200px;}
.ls4{letter-spacing:-0.178800px;}
.ls11{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.109200px;}
.ls24{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.092400px;}
.ls5{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.048000px;}
.ls25{letter-spacing:0.073440px;}
.ls1{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.216000px;}
.lse{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.305280px;}
.ls7{letter-spacing:0.305400px;}
.ls29{letter-spacing:0.319680px;}
.ls28{letter-spacing:0.460200px;}
.ls1f{letter-spacing:0.468000px;}
.lsb{letter-spacing:0.504000px;}
.ls27{letter-spacing:0.612000px;}
.ls23{letter-spacing:0.613440px;}
.ls22{letter-spacing:0.648000px;}
.ls26{letter-spacing:0.733440px;}
.ls1a{letter-spacing:2.921520px;}
.ls1c{letter-spacing:4.824720px;}
.ls1b{letter-spacing:5.096880px;}
.ls10{letter-spacing:5.184000px;}
.ls2{letter-spacing:19.745280px;}
.ls16{letter-spacing:20.304000px;}
.ls1d{letter-spacing:23.904000px;}
.ls18{letter-spacing:24.099120px;}
.ls19{letter-spacing:31.824000px;}
.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;}
}
.ws0{word-spacing:-38.160000px;}
.ws16{word-spacing:-23.418720px;}
.ws15{word-spacing:-20.664000px;}
.ws13{word-spacing:-20.520000px;}
.wsb{word-spacing:-20.304000px;}
.wsc{word-spacing:-20.232000px;}
.ws10{word-spacing:-20.160000px;}
.ws9{word-spacing:-20.016000px;}
.wsd{word-spacing:-19.872000px;}
.ws14{word-spacing:-19.800000px;}
.wsf{word-spacing:-19.584000px;}
.wse{word-spacing:-19.152000px;}
.ws8{word-spacing:-18.414720px;}
.ws5{word-spacing:-18.305520px;}
.ws6{word-spacing:-18.152520px;}
.ws7{word-spacing:-18.109320px;}
.ws1a{word-spacing:-17.225280px;}
.ws1b{word-spacing:-17.073480px;}
.ws18{word-spacing:-16.613280px;}
.ws17{word-spacing:-16.560000px;}
.ws19{word-spacing:-16.506480px;}
.wsa{word-spacing:-13.410720px;}
.ws11{word-spacing:-13.318320px;}
.ws12{word-spacing:-12.600720px;}
.ws2{word-spacing:-11.609280px;}
.ws3{word-spacing:-11.430480px;}
.ws4{word-spacing:-10.808640px;}
.ws1{word-spacing:0.000000px;}
._7f{margin-left:-3079.421280px;}
._4a{margin-left:-2889.892560px;}
._4b{margin-left:-2888.794320px;}
._4e{margin-left:-2887.016400px;}
._6a{margin-left:-2885.855760px;}
._98{margin-left:-2884.830480px;}
._8a{margin-left:-2883.784080px;}
._8e{margin-left:-2882.115120px;}
._a7{margin-left:-2869.691280px;}
._70{margin-left:-2866.614720px;}
._3a{margin-left:-2854.130640px;}
._27{margin-left:-2853.094320px;}
._1d{margin-left:-2851.651920px;}
._2d{margin-left:-2850.558960px;}
._9f{margin-left:-2839.512720px;}
._16{margin-left:-2836.543680px;}
._6{margin-left:-2830.304160px;}
._b{margin-left:-2816.795760px;}
._51{margin-left:-2794.181280px;}
._1a{margin-left:-2788.701840px;}
._8d{margin-left:-2783.280720px;}
._6c{margin-left:-2759.854560px;}
._a4{margin-left:-2726.398560px;}
._a3{margin-left:-2723.221920px;}
._12{margin-left:-2705.392800px;}
._8f{margin-left:-2702.923200px;}
._8c{margin-left:-2693.172960px;}
._66{margin-left:-2661.444240px;}
._9a{margin-left:-2656.599360px;}
._53{margin-left:-2647.592280px;}
._14{margin-left:-2638.366560px;}
._34{margin-left:-2636.282160px;}
._56{margin-left:-2626.884240px;}
._6e{margin-left:-2610.785520px;}
._f{margin-left:-2608.999920px;}
._ab{margin-left:-2606.915520px;}
._ae{margin-left:-2589.600240px;}
._7c{margin-left:-2450.035680px;}
._72{margin-left:-2381.714640px;}
._67{margin-left:-2361.774480px;}
._91{margin-left:-2351.286000px;}
._5f{margin-left:-2342.452080px;}
._11{margin-left:-2225.961600px;}
._b2{margin-left:-2209.081440px;}
._7b{margin-left:-2146.507200px;}
._9b{margin-left:-2118.004080px;}
._90{margin-left:-2066.924640px;}
._82{margin-left:-2053.359360px;}
._29{margin-left:-2029.247040px;}
._99{margin-left:-1999.582320px;}
._85{margin-left:-1998.376080px;}
._4f{margin-left:-1956.431280px;}
._ac{margin-left:-1933.246800px;}
._a1{margin-left:-1925.953680px;}
._8b{margin-left:-1917.969120px;}
._75{margin-left:-1870.387200px;}
._b4{margin-left:-1862.787360px;}
._76{margin-left:-1849.123680px;}
._47{margin-left:-1824.768000px;}
._4c{margin-left:-1800.432960px;}
._b1{margin-left:-1769.407920px;}
._73{margin-left:-1685.550480px;}
._74{margin-left:-1673.858160px;}
._15{margin-left:-1664.272080px;}
._71{margin-left:-1648.286880px;}
._58{margin-left:-1636.366320px;}
._7d{margin-left:-1604.664000px;}
._57{margin-left:-1592.112480px;}
._4d{margin-left:-1565.639520px;}
._7a{margin-left:-1556.856000px;}
._b0{margin-left:-1489.819680px;}
._64{margin-left:-1476.648000px;}
._60{margin-left:-1473.360480px;}
._a2{margin-left:-1464.637440px;}
._9d{margin-left:-1416.792960px;}
._6b{margin-left:-1408.276320px;}
._9e{margin-left:-1402.433760px;}
._59{margin-left:-1381.414320px;}
._2e{margin-left:-1362.418560px;}
._5b{margin-left:-1328.688000px;}
._44{margin-left:-1312.012320px;}
._a0{margin-left:-1297.272960px;}
._94{margin-left:-1295.064000px;}
._6d{margin-left:-1290.319680px;}
._96{margin-left:-1282.010880px;}
._63{margin-left:-1280.664000px;}
._b3{margin-left:-1278.510480px;}
._65{margin-left:-1271.790720px;}
._46{margin-left:-1241.697600px;}
._17{margin-left:-1193.947920px;}
._92{margin-left:-1104.935520px;}
._87{margin-left:-1103.718720px;}
._77{margin-left:-1085.618160px;}
._45{margin-left:-1060.416000px;}
._84{margin-left:-982.211760px;}
._97{margin-left:-918.842880px;}
._3d{margin-left:-915.536640px;}
._81{margin-left:-837.558000px;}
._35{margin-left:-833.949360px;}
._38{margin-left:-773.794800px;}
._c{margin-left:-725.481600px;}
._88{margin-left:-692.496720px;}
._a{margin-left:-681.546720px;}
._62{margin-left:-652.320000px;}
._80{margin-left:-628.272000px;}
._a8{margin-left:-614.292960px;}
._2f{margin-left:-586.209120px;}
._55{margin-left:-568.368000px;}
._32{margin-left:-516.312000px;}
._6f{margin-left:-495.820320px;}
._33{margin-left:-492.264000px;}
._7e{margin-left:-468.288000px;}
._13{margin-left:-459.776880px;}
._79{margin-left:-440.208000px;}
._5e{margin-left:-363.600000px;}
._50{margin-left:-236.160000px;}
._83{margin-left:-234.558720px;}
._b5{margin-left:-232.757280px;}
._18{margin-left:-230.597280px;}
._1b{margin-left:-203.562720px;}
._37{margin-left:-198.558720px;}
._d{margin-left:-160.757280px;}
._9{margin-left:-9.447360px;}
._5c{margin-left:-7.033920px;}
._1f{margin-left:-4.106880px;}
._1e{margin-left:-2.571840px;}
._0{margin-left:-1.203840px;}
._5{width:1.082160px;}
._10{width:3.017760px;}
._21{width:4.621920px;}
._39{width:5.852160px;}
._3b{width:7.567680px;}
._3e{width:8.619360px;}
._28{width:9.837600px;}
._23{width:11.548320px;}
._22{width:13.579200px;}
._31{width:15.341760px;}
._20{width:16.626240px;}
._3f{width:18.444000px;}
._19{width:19.900080px;}
._e{width:21.529440px;}
._54{width:22.594080px;}
._40{width:24.048000px;}
._41{width:25.473840px;}
._69{width:27.175680px;}
._68{width:28.224000px;}
._49{width:29.561520px;}
._48{width:30.960000px;}
._43{width:32.463840px;}
._42{width:33.624000px;}
._61{width:34.704000px;}
._78{width:35.730480px;}
._2c{width:36.915840px;}
._2b{width:38.508480px;}
._2a{width:40.420320px;}
._5a{width:41.430480px;}
._7{width:42.564960px;}
._8{width:43.648560px;}
._9c{width:44.975520px;}
._1c{width:46.277760px;}
._24{width:48.222720px;}
._26{width:49.348800px;}
._25{width:50.489760px;}
._3c{width:52.516560px;}
._1{width:58.539360px;}
._a6{width:63.901920px;}
._a5{width:65.214480px;}
._95{width:75.921120px;}
._3{width:76.953600px;}
._4{width:78.396480px;}
._30{width:80.784000px;}
._93{width:81.873360px;}
._36{width:90.144000px;}
._89{width:109.309440px;}
._aa{width:163.043280px;}
._a9{width:164.076960px;}
._af{width:165.767760px;}
._52{width:217.584000px;}
._5d{width:431.465280px;}
._ad{width:808.896720px;}
._86{width:840.737280px;}
._2{width:2641.596000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsc{font-size:51.120000px;}
.fsa{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs9{font-size:60.000000px;}
.fs0{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fsb{font-size:95.760000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y18e{bottom:11.880000px;}
.ya6{bottom:14.220000px;}
.yb1{bottom:14.250000px;}
.ya8{bottom:14.265000px;}
.yab{bottom:14.400000px;}
.ya2{bottom:22.140000px;}
.yd0{bottom:22.680000px;}
.ya4{bottom:29.700000px;}
.yad{bottom:29.880000px;}
.yce{bottom:33.660000px;}
.ya5{bottom:45.360000px;}
.yb0{bottom:45.390000px;}
.ycd{bottom:45.720000px;}
.yd1{bottom:46.080000px;}
.ya1{bottom:50.760000px;}
.y31{bottom:64.830000px;}
.y56{bottom:66.960000px;}
.y33{bottom:67.320000px;}
.ycf{bottom:72.540000px;}
.yaf{bottom:76.350000px;}
.y78{bottom:88.020000px;}
.ye0{bottom:90.360000px;}
.y99{bottom:91.620000px;}
.y16f{bottom:93.060000px;}
.y102{bottom:95.940000px;}
.y14a{bottom:97.560000px;}
.y9f{bottom:99.900000px;}
.yc2{bottom:100.800000px;}
.y18a{bottom:101.520000px;}
.yfc{bottom:113.580000px;}
.y12a{bottom:114.840000px;}
.y11f{bottom:115.200000px;}
.y53{bottom:117.720000px;}
.y77{bottom:118.980000px;}
.ydf{bottom:121.320000px;}
.y98{bottom:122.580000px;}
.y149{bottom:128.520000px;}
.y16e{bottom:129.600000px;}
.yff{bottom:130.500000px;}
.y9e{bottom:130.860000px;}
.yc1{bottom:131.760000px;}
.y101{bottom:132.480000px;}
.y189{bottom:138.240000px;}
.y11e{bottom:144.360000px;}
.yfb{bottom:144.720000px;}
.y129{bottom:145.800000px;}
.y52{bottom:146.520000px;}
.y76{bottom:150.120000px;}
.yde{bottom:152.460000px;}
.y97{bottom:153.720000px;}
.yfe{bottom:159.300000px;}
.y148{bottom:159.660000px;}
.y9d{bottom:162.000000px;}
.y100{bottom:166.140000px;}
.y16d{bottom:166.320000px;}
.yc0{bottom:172.080000px;}
.y188{bottom:174.960000px;}
.yfa{bottom:175.680000px;}
.y128{bottom:176.760000px;}
.y11d{bottom:180.900000px;}
.y75{bottom:181.080000px;}
.ydd{bottom:183.420000px;}
.yfd{bottom:183.960000px;}
.y96{bottom:184.680000px;}
.y51{bottom:192.780000px;}
.y9c{bottom:192.960000px;}
.y147{bottom:202.140000px;}
.y16c{bottom:203.040000px;}
.yf9{bottom:206.850000px;}
.y127{bottom:207.930000px;}
.y187{bottom:211.530000px;}
.y74{bottom:212.250000px;}
.ydc{bottom:214.590000px;}
.y95{bottom:215.850000px;}
.ybf{bottom:220.890000px;}
.y50{bottom:221.250000px;}
.y9b{bottom:233.310000px;}
.yf8{bottom:237.810000px;}
.y126{bottom:238.890000px;}
.y16b{bottom:239.790000px;}
.y73{bottom:243.210000px;}
.y133{bottom:243.390000px;}
.ydb{bottom:245.550000px;}
.y94{bottom:246.810000px;}
.y186{bottom:248.250000px;}
.y4f{bottom:249.690000px;}
.ybe{bottom:252.030000px;}
.y146{bottom:254.010000px;}
.yf7{bottom:268.950000px;}
.y125{bottom:270.030000px;}
.y72{bottom:274.350000px;}
.y16a{bottom:276.330000px;}
.y93{bottom:277.950000px;}
.y4e{bottom:278.130000px;}
.ybd{bottom:282.990000px;}
.y145{bottom:284.970000px;}
.yda{bottom:285.870000px;}
.yf6{bottom:299.910000px;}
.y9a{bottom:300.090000px;}
.y124{bottom:300.990000px;}
.y71{bottom:305.310000px;}
.y132{bottom:305.490000px;}
.y4d{bottom:306.570000px;}
.y169{bottom:313.050000px;}
.ybc{bottom:314.130000px;}
.y144{bottom:316.110000px;}
.y92{bottom:318.090000px;}
.y2f{bottom:320.430000px;}
.y185{bottom:321.690000px;}
.yf5{bottom:331.050000px;}
.y123{bottom:332.130000px;}
.yd9{bottom:334.650000px;}
.y4c{bottom:335.010000px;}
.y70{bottom:336.450000px;}
.y2e{bottom:338.430000px;}
.ybb{bottom:345.090000px;}
.y143{bottom:347.070000px;}
.y168{bottom:349.770000px;}
.y11c{bottom:350.130000px;}
.y18f{bottom:353.010000px;}
.y2d{bottom:356.250000px;}
.y184{bottom:358.230000px;}
.yf4{bottom:362.010000px;}
.y122{bottom:363.090000px;}
.y4b{bottom:363.450000px;}
.yd8{bottom:365.790000px;}
.y18d{bottom:366.870000px;}
.y6f{bottom:367.410000px;}
.y131{bottom:367.590000px;}
.y91{bottom:369.390000px;}
.y2c{bottom:374.070000px;}
.yba{bottom:376.050000px;}
.y142{bottom:378.210000px;}
.y11b{bottom:381.090000px;}
.y167{bottom:386.490000px;}
.y2b{bottom:391.890000px;}
.yf3{bottom:393.150000px;}
.y121{bottom:394.230000px;}
.y183{bottom:394.950000px;}
.yd7{bottom:396.750000px;}
.y6e{bottom:398.550000px;}
.y18c{bottom:404.670000px;}
.yb9{bottom:407.190000px;}
.y141{bottom:409.170000px;}
.y2a{bottom:409.710000px;}
.y11a{bottom:412.230000px;}
.y4a{bottom:420.510000px;}
.y90{bottom:421.230000px;}
.y166{bottom:423.030000px;}
.yf2{bottom:424.110000px;}
.y29{bottom:427.530000px;}
.yd6{bottom:427.890000px;}
.y6d{bottom:429.510000px;}
.y130{bottom:429.690000px;}
.y182{bottom:431.670000px;}
.y120{bottom:434.370000px;}
.yb8{bottom:438.150000px;}
.y140{bottom:440.310000px;}
.y119{bottom:443.235000px;}
.y28{bottom:445.395000px;}
.y49{bottom:448.995000px;}
.y8f{bottom:452.235000px;}
.yf1{bottom:455.295000px;}
.y165{bottom:459.795000px;}
.y6c{bottom:460.695000px;}
.y27{bottom:463.215000px;}
.yd5{bottom:468.075000px;}
.y181{bottom:468.435000px;}
.yb7{bottom:469.335000px;}
.y13f{bottom:471.315000px;}
.y118{bottom:474.375000px;}
.y48{bottom:477.435000px;}
.y26{bottom:481.215000px;}
.y8e{bottom:483.375000px;}
.yf0{bottom:486.255000px;}
.y6b{bottom:491.655000px;}
.y12f{bottom:491.835000px;}
.y164{bottom:496.515000px;}
.y25{bottom:499.035000px;}
.yb6{bottom:500.295000px;}
.y13e{bottom:502.455000px;}
.y180{bottom:504.975000px;}
.y117{bottom:505.335000px;}
.y47{bottom:505.875000px;}
.y8d{bottom:514.335000px;}
.y24{bottom:516.855000px;}
.yd4{bottom:517.215000px;}
.yef{bottom:517.395000px;}
.y6a{bottom:522.795000px;}
.yb5{bottom:531.435000px;}
.y163{bottom:533.235000px;}
.y13d{bottom:533.415000px;}
.y46{bottom:534.315000px;}
.y23{bottom:534.675000px;}
.y116{bottom:536.475000px;}
.y17f{bottom:541.695000px;}
.y8c{bottom:545.475000px;}
.yd3{bottom:548.175000px;}
.yee{bottom:548.355000px;}
.y22{bottom:552.495000px;}
.y69{bottom:553.755000px;}
.y12e{bottom:553.935000px;}
.yb4{bottom:562.395000px;}
.y45{bottom:562.935000px;}
.y13c{bottom:564.375000px;}
.y115{bottom:567.435000px;}
.y162{bottom:569.775000px;}
.y21{bottom:570.315000px;}
.y8b{bottom:576.435000px;}
.y17e{bottom:578.415000px;}
.yd2{bottom:579.135000px;}
.yed{bottom:579.495000px;}
.y68{bottom:584.895000px;}
.y20{bottom:588.135000px;}
.yb3{bottom:593.535000px;}
.y13b{bottom:595.515000px;}
.ycc{bottom:595.875000px;}
.y114{bottom:598.575000px;}
.y1f{bottom:605.955000px;}
.y161{bottom:606.495000px;}
.y44{bottom:607.035000px;}
.y8a{bottom:607.575000px;}
.yec{bottom:610.455000px;}
.y17d{bottom:615.135000px;}
.y67{bottom:615.855000px;}
.y1e{bottom:623.775000px;}
.y152{bottom:624.675000px;}
.y12d{bottom:625.215000px;}
.y13a{bottom:626.475000px;}
.y113{bottom:629.535000px;}
.yb2{bottom:630.435000px;}
.y89{bottom:638.535000px;}
.yeb{bottom:641.595000px;}
.y1d{bottom:641.775000px;}
.y160{bottom:643.215000px;}
.y43{bottom:645.015000px;}
.y66{bottom:646.995000px;}
.y17c{bottom:651.675000px;}
.y139{bottom:657.615000px;}
.y1c{bottom:659.595000px;}
.y112{bottom:660.675000px;}
.yae{bottom:661.575000px;}
.y151{bottom:663.555000px;}
.y88{bottom:669.675000px;}
.y42{bottom:670.755000px;}
.y12c{bottom:671.835000px;}
.yea{bottom:672.555000px;}
.y1b{bottom:677.445000px;}
.y65{bottom:677.985000px;}
.y15f{bottom:679.965000px;}
.y17b{bottom:688.425000px;}
.y138{bottom:688.605000px;}
.y111{bottom:691.665000px;}
.y1a{bottom:695.265000px;}
.y41{bottom:696.525000px;}
.y87{bottom:700.665000px;}
.y12b{bottom:701.745000px;}
.y150{bottom:702.105000px;}
.ye9{bottom:703.545000px;}
.ycb{bottom:704.805000px;}
.y64{bottom:709.125000px;}
.y19{bottom:713.085000px;}
.y15e{bottom:716.505000px;}
.y137{bottom:719.745000px;}
.y110{bottom:722.805000px;}
.y17a{bottom:725.145000px;}
.y40{bottom:730.005000px;}
.y18{bottom:730.905000px;}
.y86{bottom:731.805000px;}
.y14f{bottom:733.245000px;}
.ye8{bottom:734.685000px;}
.yca{bottom:735.765000px;}
.y63{bottom:740.085000px;}
.y3f{bottom:748.365000px;}
.y17{bottom:748.725000px;}
.y136{bottom:748.905000px;}
.y15d{bottom:753.225000px;}
.y10f{bottom:753.765000px;}
.yac{bottom:754.665000px;}
.y179{bottom:761.865000px;}
.y85{bottom:762.765000px;}
.y14e{bottom:764.205000px;}
.ye7{bottom:765.645000px;}
.y16{bottom:766.545000px;}
.yc9{bottom:766.905000px;}
.y62{bottom:771.225000px;}
.y3e{bottom:781.665000px;}
.y15{bottom:784.545000px;}
.y10e{bottom:784.905000px;}
.y135{bottom:785.265000px;}
.y15c{bottom:789.945000px;}
.y84{bottom:793.905000px;}
.y14d{bottom:795.345000px;}
.yc8{bottom:797.865000px;}
.y178{bottom:798.405000px;}
.y3d{bottom:800.025000px;}
.y61{bottom:802.185000px;}
.y14{bottom:802.365000px;}
.ye6{bottom:805.965000px;}
.y10d{bottom:815.865000px;}
.yaa{bottom:816.765000px;}
.y134{bottom:818.925000px;}
.y13{bottom:820.185000px;}
.y83{bottom:824.865000px;}
.y15b{bottom:826.665000px;}
.yc7{bottom:829.005000px;}
.y60{bottom:833.325000px;}
.y3c{bottom:833.505000px;}
.y177{bottom:835.125000px;}
.y14c{bottom:837.825000px;}
.y12{bottom:838.005000px;}
.y10c{bottom:847.005000px;}
.ya9{bottom:847.905000px;}
.y3b{bottom:851.685000px;}
.ye5{bottom:854.745000px;}
.y11{bottom:855.825000px;}
.y82{bottom:856.005000px;}
.yc6{bottom:859.965000px;}
.y15a{bottom:863.205000px;}
.y176{bottom:871.845000px;}
.y10{bottom:873.645000px;}
.y5f{bottom:875.805000px;}
.y10b{bottom:877.965000px;}
.y14b{bottom:879.585000px;}
.y193{bottom:882.000000px;}
.y3a{bottom:885.165000px;}
.ye4{bottom:885.885000px;}
.y81{bottom:886.965000px;}
.yc5{bottom:891.105000px;}
.yf{bottom:891.465000px;}
.y159{bottom:899.925000px;}
.y192{bottom:900.000000px;}
.y39{bottom:903.525000px;}
.y175{bottom:908.565000px;}
.y10a{bottom:909.105000px;}
.ye{bottom:909.285000px;}
.ya7{bottom:910.005000px;}
.ye3{bottom:916.890000px;}
.y80{bottom:918.150000px;}
.yc4{bottom:922.110000px;}
.yd{bottom:927.330000px;}
.y158{bottom:936.690000px;}
.y38{bottom:939.750000px;}
.y109{bottom:940.110000px;}
.ya3{bottom:943.350000px;}
.yc{bottom:945.150000px;}
.ye2{bottom:948.030000px;}
.y7f{bottom:949.110000px;}
.y5e{bottom:950.190000px;}
.yc3{bottom:962.430000px;}
.yb{bottom:962.970000px;}
.y37{bottom:968.190000px;}
.y108{bottom:971.250000px;}
.y157{bottom:973.410000px;}
.y5d{bottom:974.670000px;}
.y7e{bottom:980.250000px;}
.ya{bottom:980.790000px;}
.y174{bottom:981.870000px;}
.ye1{bottom:990.510000px;}
.y9{bottom:998.610000px;}
.y5c{bottom:999.150000px;}
.y107{bottom:1002.210000px;}
.ya0{bottom:1006.170000px;}
.y156{bottom:1009.950000px;}
.y7d{bottom:1011.210000px;}
.y8{bottom:1016.430000px;}
.y173{bottom:1018.590000px;}
.y5b{bottom:1023.630000px;}
.y36{bottom:1025.250000px;}
.y106{bottom:1033.350000px;}
.y7{bottom:1034.250000px;}
.y7c{bottom:1042.350000px;}
.y155{bottom:1046.670000px;}
.y5a{bottom:1048.110000px;}
.y6{bottom:1052.070000px;}
.y172{bottom:1055.310000px;}
.y105{bottom:1064.310000px;}
.y5{bottom:1070.070000px;}
.y59{bottom:1072.410000px;}
.y7b{bottom:1073.310000px;}
.y35{bottom:1076.910000px;}
.y154{bottom:1083.390000px;}
.y4{bottom:1087.890000px;}
.y171{bottom:1091.850000px;}
.y104{bottom:1095.450000px;}
.y58{bottom:1096.890000px;}
.y30{bottom:1102.650000px;}
.y7a{bottom:1104.450000px;}
.y3{bottom:1105.710000px;}
.y2{bottom:1123.530000px;}
.y57{bottom:1127.670000px;}
.y18b{bottom:1128.390000px;}
.y170{bottom:1128.570000px;}
.y34{bottom:1128.750000px;}
.y153{bottom:1132.710000px;}
.y79{bottom:1135.410000px;}
.y103{bottom:1135.590000px;}
.y1{bottom:1141.350000px;}
.y191{bottom:1152.000000px;}
.y32{bottom:1167.480000px;}
.y190{bottom:1170.000000px;}
.y55{bottom:1173.960000px;}
.y54{bottom:1244.880000px;}
.h1f{height:25.740000px;}
.h16{height:30.996000px;}
.h17{height:31.140000px;}
.h6{height:34.884492px;}
.ha{height:40.550625px;}
.h2{height:49.641152px;}
.h4{height:52.066406px;}
.h5{height:52.769531px;}
.hd{height:52.998047px;}
.h15{height:62.100000px;}
.h20{height:62.327813px;}
.hc{height:62.578125px;}
.h14{height:69.086250px;}
.h9{height:70.664062px;}
.h8{height:73.794375px;}
.he{height:75.093750px;}
.h11{height:76.366406px;}
.h10{height:76.486406px;}
.hf{height:83.432813px;}
.h3{height:83.736000px;}
.h13{height:83.880000px;}
.hb{height:87.859687px;}
.h18{height:93.096000px;}
.h19{height:94.536000px;}
.h12{height:99.874688px;}
.h7{height:125.406562px;}
.h1c{height:130.620586px;}
.h1e{height:152.697305px;}
.h1b{height:232.212656px;}
.h1a{height:238.692656px;}
.h1d{height:276.132656px;}
.h22{height:918.000000px;}
.h21{height:1188.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:11.160000px;}
.wd{width:16.740000px;}
.w7{width:74.376000px;}
.w5{width:74.556000px;}
.wa{width:84.960000px;}
.w6{width:95.220000px;}
.w8{width:96.120000px;}
.wc{width:97.380000px;}
.w4{width:117.000000px;}
.w9{width:127.656000px;}
.we{width:535.425000px;}
.wb{width:539.745000px;}
.w3{width:659.265000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.wf{width:918.000000px;}
.w10{width:1188.000000px;}
.x0{left:0.000000px;}
.x33{left:1.800000px;}
.x3{left:5.580000px;}
.x7{left:7.500000px;}
.x23{left:9.180000px;}
.x1d{left:10.260000px;}
.x19{left:11.880000px;}
.x18{left:12.960000px;}
.xd{left:14.580000px;}
.x1c{left:17.100000px;}
.x11{left:18.540000px;}
.x13{left:19.980000px;}
.xb{left:21.420000px;}
.x1f{left:24.300000px;}
.x22{left:25.560000px;}
.x21{left:27.000000px;}
.xf{left:29.520000px;}
.x14{left:32.940000px;}
.x1e{left:34.740000px;}
.x25{left:39.960000px;}
.x20{left:43.560000px;}
.x1a{left:45.000000px;}
.x16{left:48.780000px;}
.x24{left:51.300000px;}
.x26{left:53.820000px;}
.x1b{left:60.885000px;}
.x1{left:100.116000px;}
.xa{left:101.556000px;}
.x4{left:114.876000px;}
.x5{left:123.336000px;}
.x27{left:128.016000px;}
.x6{left:138.276000px;}
.x8{left:146.736000px;}
.x28{left:154.839000px;}
.x31{left:162.930000px;}
.x32{left:170.490000px;}
.x34{left:187.230000px;}
.x29{left:213.699000px;}
.xc{left:218.550000px;}
.x2d{left:243.399000px;}
.x2c{left:248.259000px;}
.x2b{left:269.679000px;}
.x2a{left:277.059000px;}
.xe{left:293.115000px;}
.x10{left:388.335000px;}
.x12{left:462.705000px;}
.x15{left:558.825000px;}
.x2e{left:667.770000px;}
.x17{left:686.490000px;}
.x2{left:712.410000px;}
.x9{left:752.730000px;}
.x2f{left:772.890000px;}
.x30{left:824.040000px;}
@media print{
.v4{vertical-align:-75.520000pt;}
.v7{vertical-align:-67.200000pt;}
.v6{vertical-align:-29.546667pt;}
.v2{vertical-align:-26.880000pt;}
.v8{vertical-align:-12.800000pt;}
.v5{vertical-align:-8.320000pt;}
.va{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:12.800000pt;}
.v1{vertical-align:26.880000pt;}
.v3{vertical-align:29.440000pt;}
.vc{vertical-align:42.880000pt;}
.vb{vertical-align:48.640000pt;}
.vd{vertical-align:62.080000pt;}
.ve{vertical-align:81.920000pt;}
.ls12{letter-spacing:-0.768000pt;}
.ls14{letter-spacing:-0.720000pt;}
.lsd{letter-spacing:-0.512000pt;}
.ls9{letter-spacing:-0.406933pt;}
.ls21{letter-spacing:-0.400533pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls3{letter-spacing:-0.368533pt;}
.lsa{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.233067pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.161067pt;}
.ls4{letter-spacing:-0.158933pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.097067pt;}
.ls24{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.082133pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.042667pt;}
.ls25{letter-spacing:0.065280pt;}
.ls1{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.271360pt;}
.ls7{letter-spacing:0.271467pt;}
.ls29{letter-spacing:0.284160pt;}
.ls28{letter-spacing:0.409067pt;}
.ls1f{letter-spacing:0.416000pt;}
.lsb{letter-spacing:0.448000pt;}
.ls27{letter-spacing:0.544000pt;}
.ls23{letter-spacing:0.545280pt;}
.ls22{letter-spacing:0.576000pt;}
.ls26{letter-spacing:0.651947pt;}
.ls1a{letter-spacing:2.596907pt;}
.ls1c{letter-spacing:4.288640pt;}
.ls1b{letter-spacing:4.530560pt;}
.ls10{letter-spacing:4.608000pt;}
.ls2{letter-spacing:17.551360pt;}
.ls16{letter-spacing:18.048000pt;}
.ls1d{letter-spacing:21.248000pt;}
.ls18{letter-spacing:21.421440pt;}
.ls19{letter-spacing:28.288000pt;}
.ws0{word-spacing:-33.920000pt;}
.ws16{word-spacing:-20.816640pt;}
.ws15{word-spacing:-18.368000pt;}
.ws13{word-spacing:-18.240000pt;}
.wsb{word-spacing:-18.048000pt;}
.wsc{word-spacing:-17.984000pt;}
.ws10{word-spacing:-17.920000pt;}
.ws9{word-spacing:-17.792000pt;}
.wsd{word-spacing:-17.664000pt;}
.ws14{word-spacing:-17.600000pt;}
.wsf{word-spacing:-17.408000pt;}
.wse{word-spacing:-17.024000pt;}
.ws8{word-spacing:-16.368640pt;}
.ws5{word-spacing:-16.271573pt;}
.ws6{word-spacing:-16.135573pt;}
.ws7{word-spacing:-16.097173pt;}
.ws1a{word-spacing:-15.311360pt;}
.ws1b{word-spacing:-15.176427pt;}
.ws18{word-spacing:-14.767360pt;}
.ws17{word-spacing:-14.720000pt;}
.ws19{word-spacing:-14.672427pt;}
.wsa{word-spacing:-11.920640pt;}
.ws11{word-spacing:-11.838507pt;}
.ws12{word-spacing:-11.200640pt;}
.ws2{word-spacing:-10.319360pt;}
.ws3{word-spacing:-10.160427pt;}
.ws4{word-spacing:-9.607680pt;}
.ws1{word-spacing:0.000000pt;}
._7f{margin-left:-2737.263360pt;}
._4a{margin-left:-2568.793387pt;}
._4b{margin-left:-2567.817173pt;}
._4e{margin-left:-2566.236800pt;}
._6a{margin-left:-2565.205120pt;}
._98{margin-left:-2564.293760pt;}
._8a{margin-left:-2563.363627pt;}
._8e{margin-left:-2561.880107pt;}
._a7{margin-left:-2550.836693pt;}
._70{margin-left:-2548.101973pt;}
._3a{margin-left:-2537.005013pt;}
._27{margin-left:-2536.083840pt;}
._1d{margin-left:-2534.801707pt;}
._2d{margin-left:-2533.830187pt;}
._9f{margin-left:-2524.011307pt;}
._16{margin-left:-2521.372160pt;}
._6{margin-left:-2515.825920pt;}
._b{margin-left:-2503.818453pt;}
._51{margin-left:-2483.716693pt;}
._1a{margin-left:-2478.846080pt;}
._8d{margin-left:-2474.027307pt;}
._6c{margin-left:-2453.204053pt;}
._a4{margin-left:-2423.465387pt;}
._a3{margin-left:-2420.641707pt;}
._12{margin-left:-2404.793600pt;}
._8f{margin-left:-2402.598400pt;}
._8c{margin-left:-2393.931520pt;}
._66{margin-left:-2365.728213pt;}
._9a{margin-left:-2361.421653pt;}
._53{margin-left:-2353.415360pt;}
._14{margin-left:-2345.214720pt;}
._34{margin-left:-2343.361920pt;}
._56{margin-left:-2335.008213pt;}
._6e{margin-left:-2320.698240pt;}
._f{margin-left:-2319.111040pt;}
._ab{margin-left:-2317.258240pt;}
._ae{margin-left:-2301.866880pt;}
._7c{margin-left:-2177.809493pt;}
._72{margin-left:-2117.079680pt;}
._67{margin-left:-2099.355093pt;}
._91{margin-left:-2090.032000pt;}
._5f{margin-left:-2082.179627pt;}
._11{margin-left:-1978.632533pt;}
._b2{margin-left:-1963.627947pt;}
._7b{margin-left:-1908.006400pt;}
._9b{margin-left:-1882.670293pt;}
._90{margin-left:-1837.266347pt;}
._82{margin-left:-1825.208320pt;}
._29{margin-left:-1803.775147pt;}
._99{margin-left:-1777.406507pt;}
._85{margin-left:-1776.334293pt;}
._4f{margin-left:-1739.050027pt;}
._ac{margin-left:-1718.441600pt;}
._a1{margin-left:-1711.958827pt;}
._8b{margin-left:-1704.861440pt;}
._75{margin-left:-1662.566400pt;}
._b4{margin-left:-1655.810987pt;}
._76{margin-left:-1643.665493pt;}
._47{margin-left:-1622.016000pt;}
._4c{margin-left:-1600.384853pt;}
._b1{margin-left:-1572.807040pt;}
._73{margin-left:-1498.267093pt;}
._74{margin-left:-1487.873920pt;}
._15{margin-left:-1479.352960pt;}
._71{margin-left:-1465.143893pt;}
._58{margin-left:-1454.547840pt;}
._7d{margin-left:-1426.368000pt;}
._57{margin-left:-1415.211093pt;}
._4d{margin-left:-1391.679573pt;}
._7a{margin-left:-1383.872000pt;}
._b0{margin-left:-1324.284160pt;}
._64{margin-left:-1312.576000pt;}
._60{margin-left:-1309.653760pt;}
._a2{margin-left:-1301.899947pt;}
._9d{margin-left:-1259.371520pt;}
._6b{margin-left:-1251.801173pt;}
._9e{margin-left:-1246.607787pt;}
._59{margin-left:-1227.923840pt;}
._2e{margin-left:-1211.038720pt;}
._5b{margin-left:-1181.056000pt;}
._44{margin-left:-1166.233173pt;}
._a0{margin-left:-1153.131520pt;}
._94{margin-left:-1151.168000pt;}
._6d{margin-left:-1146.950827pt;}
._96{margin-left:-1139.565227pt;}
._63{margin-left:-1138.368000pt;}
._b3{margin-left:-1136.453760pt;}
._65{margin-left:-1130.480640pt;}
._46{margin-left:-1103.731200pt;}
._17{margin-left:-1061.287040pt;}
._92{margin-left:-982.164907pt;}
._87{margin-left:-981.083307pt;}
._77{margin-left:-964.993920pt;}
._45{margin-left:-942.592000pt;}
._84{margin-left:-873.077120pt;}
._97{margin-left:-816.749227pt;}
._3d{margin-left:-813.810347pt;}
._81{margin-left:-744.496000pt;}
._35{margin-left:-741.288320pt;}
._38{margin-left:-687.817600pt;}
._c{margin-left:-644.872533pt;}
._88{margin-left:-615.552640pt;}
._a{margin-left:-605.819307pt;}
._62{margin-left:-579.840000pt;}
._80{margin-left:-558.464000pt;}
._a8{margin-left:-546.038187pt;}
._2f{margin-left:-521.074773pt;}
._55{margin-left:-505.216000pt;}
._32{margin-left:-458.944000pt;}
._6f{margin-left:-440.729173pt;}
._33{margin-left:-437.568000pt;}
._7e{margin-left:-416.256000pt;}
._13{margin-left:-408.690560pt;}
._79{margin-left:-391.296000pt;}
._5e{margin-left:-323.200000pt;}
._50{margin-left:-209.920000pt;}
._83{margin-left:-208.496640pt;}
._b5{margin-left:-206.895360pt;}
._18{margin-left:-204.975360pt;}
._1b{margin-left:-180.944640pt;}
._37{margin-left:-176.496640pt;}
._d{margin-left:-142.895360pt;}
._9{margin-left:-8.397653pt;}
._5c{margin-left:-6.252373pt;}
._1f{margin-left:-3.650560pt;}
._1e{margin-left:-2.286080pt;}
._0{margin-left:-1.070080pt;}
._5{width:0.961920pt;}
._10{width:2.682453pt;}
._21{width:4.108373pt;}
._39{width:5.201920pt;}
._3b{width:6.726827pt;}
._3e{width:7.661653pt;}
._28{width:8.744533pt;}
._23{width:10.265173pt;}
._22{width:12.070400pt;}
._31{width:13.637120pt;}
._20{width:14.778880pt;}
._3f{width:16.394667pt;}
._19{width:17.688960pt;}
._e{width:19.137280pt;}
._54{width:20.083627pt;}
._40{width:21.376000pt;}
._41{width:22.643413pt;}
._69{width:24.156160pt;}
._68{width:25.088000pt;}
._49{width:26.276907pt;}
._48{width:27.520000pt;}
._43{width:28.856747pt;}
._42{width:29.888000pt;}
._61{width:30.848000pt;}
._78{width:31.760427pt;}
._2c{width:32.814080pt;}
._2b{width:34.229760pt;}
._2a{width:35.929173pt;}
._5a{width:36.827093pt;}
._7{width:37.835520pt;}
._8{width:38.798720pt;}
._9c{width:39.978240pt;}
._1c{width:41.135787pt;}
._24{width:42.864640pt;}
._26{width:43.865600pt;}
._25{width:44.879787pt;}
._3c{width:46.681387pt;}
._1{width:52.034987pt;}
._a6{width:56.801707pt;}
._a5{width:57.968427pt;}
._95{width:67.485440pt;}
._3{width:68.403200pt;}
._4{width:69.685760pt;}
._30{width:71.808000pt;}
._93{width:72.776320pt;}
._36{width:80.128000pt;}
._89{width:97.163947pt;}
._aa{width:144.927360pt;}
._a9{width:145.846187pt;}
._af{width:147.349120pt;}
._52{width:193.408000pt;}
._5d{width:383.524693pt;}
._ad{width:719.019307pt;}
._86{width:747.322027pt;}
._2{width:2348.085333pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsc{font-size:45.440000pt;}
.fsa{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs9{font-size:53.333333pt;}
.fs0{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fsb{font-size:85.120000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y18e{bottom:10.560000pt;}
.ya6{bottom:12.640000pt;}
.yb1{bottom:12.666667pt;}
.ya8{bottom:12.680000pt;}
.yab{bottom:12.800000pt;}
.ya2{bottom:19.680000pt;}
.yd0{bottom:20.160000pt;}
.ya4{bottom:26.400000pt;}
.yad{bottom:26.560000pt;}
.yce{bottom:29.920000pt;}
.ya5{bottom:40.320000pt;}
.yb0{bottom:40.346667pt;}
.ycd{bottom:40.640000pt;}
.yd1{bottom:40.960000pt;}
.ya1{bottom:45.120000pt;}
.y31{bottom:57.626667pt;}
.y56{bottom:59.520000pt;}
.y33{bottom:59.840000pt;}
.ycf{bottom:64.480000pt;}
.yaf{bottom:67.866667pt;}
.y78{bottom:78.240000pt;}
.ye0{bottom:80.320000pt;}
.y99{bottom:81.440000pt;}
.y16f{bottom:82.720000pt;}
.y102{bottom:85.280000pt;}
.y14a{bottom:86.720000pt;}
.y9f{bottom:88.800000pt;}
.yc2{bottom:89.600000pt;}
.y18a{bottom:90.240000pt;}
.yfc{bottom:100.960000pt;}
.y12a{bottom:102.080000pt;}
.y11f{bottom:102.400000pt;}
.y53{bottom:104.640000pt;}
.y77{bottom:105.760000pt;}
.ydf{bottom:107.840000pt;}
.y98{bottom:108.960000pt;}
.y149{bottom:114.240000pt;}
.y16e{bottom:115.200000pt;}
.yff{bottom:116.000000pt;}
.y9e{bottom:116.320000pt;}
.yc1{bottom:117.120000pt;}
.y101{bottom:117.760000pt;}
.y189{bottom:122.880000pt;}
.y11e{bottom:128.320000pt;}
.yfb{bottom:128.640000pt;}
.y129{bottom:129.600000pt;}
.y52{bottom:130.240000pt;}
.y76{bottom:133.440000pt;}
.yde{bottom:135.520000pt;}
.y97{bottom:136.640000pt;}
.yfe{bottom:141.600000pt;}
.y148{bottom:141.920000pt;}
.y9d{bottom:144.000000pt;}
.y100{bottom:147.680000pt;}
.y16d{bottom:147.840000pt;}
.yc0{bottom:152.960000pt;}
.y188{bottom:155.520000pt;}
.yfa{bottom:156.160000pt;}
.y128{bottom:157.120000pt;}
.y11d{bottom:160.800000pt;}
.y75{bottom:160.960000pt;}
.ydd{bottom:163.040000pt;}
.yfd{bottom:163.520000pt;}
.y96{bottom:164.160000pt;}
.y51{bottom:171.360000pt;}
.y9c{bottom:171.520000pt;}
.y147{bottom:179.680000pt;}
.y16c{bottom:180.480000pt;}
.yf9{bottom:183.866667pt;}
.y127{bottom:184.826667pt;}
.y187{bottom:188.026667pt;}
.y74{bottom:188.666667pt;}
.ydc{bottom:190.746667pt;}
.y95{bottom:191.866667pt;}
.ybf{bottom:196.346667pt;}
.y50{bottom:196.666667pt;}
.y9b{bottom:207.386667pt;}
.yf8{bottom:211.386667pt;}
.y126{bottom:212.346667pt;}
.y16b{bottom:213.146667pt;}
.y73{bottom:216.186667pt;}
.y133{bottom:216.346667pt;}
.ydb{bottom:218.266667pt;}
.y94{bottom:219.386667pt;}
.y186{bottom:220.666667pt;}
.y4f{bottom:221.946667pt;}
.ybe{bottom:224.026667pt;}
.y146{bottom:225.786667pt;}
.yf7{bottom:239.066667pt;}
.y125{bottom:240.026667pt;}
.y72{bottom:243.866667pt;}
.y16a{bottom:245.626667pt;}
.y93{bottom:247.066667pt;}
.y4e{bottom:247.226667pt;}
.ybd{bottom:251.546667pt;}
.y145{bottom:253.306667pt;}
.yda{bottom:254.106667pt;}
.yf6{bottom:266.586667pt;}
.y9a{bottom:266.746667pt;}
.y124{bottom:267.546667pt;}
.y71{bottom:271.386667pt;}
.y132{bottom:271.546667pt;}
.y4d{bottom:272.506667pt;}
.y169{bottom:278.266667pt;}
.ybc{bottom:279.226667pt;}
.y144{bottom:280.986667pt;}
.y92{bottom:282.746667pt;}
.y2f{bottom:284.826667pt;}
.y185{bottom:285.946667pt;}
.yf5{bottom:294.266667pt;}
.y123{bottom:295.226667pt;}
.yd9{bottom:297.466667pt;}
.y4c{bottom:297.786667pt;}
.y70{bottom:299.066667pt;}
.y2e{bottom:300.826667pt;}
.ybb{bottom:306.746667pt;}
.y143{bottom:308.506667pt;}
.y168{bottom:310.906667pt;}
.y11c{bottom:311.226667pt;}
.y18f{bottom:313.786667pt;}
.y2d{bottom:316.666667pt;}
.y184{bottom:318.426667pt;}
.yf4{bottom:321.786667pt;}
.y122{bottom:322.746667pt;}
.y4b{bottom:323.066667pt;}
.yd8{bottom:325.146667pt;}
.y18d{bottom:326.106667pt;}
.y6f{bottom:326.586667pt;}
.y131{bottom:326.746667pt;}
.y91{bottom:328.346667pt;}
.y2c{bottom:332.506667pt;}
.yba{bottom:334.266667pt;}
.y142{bottom:336.186667pt;}
.y11b{bottom:338.746667pt;}
.y167{bottom:343.546667pt;}
.y2b{bottom:348.346667pt;}
.yf3{bottom:349.466667pt;}
.y121{bottom:350.426667pt;}
.y183{bottom:351.066667pt;}
.yd7{bottom:352.666667pt;}
.y6e{bottom:354.266667pt;}
.y18c{bottom:359.706667pt;}
.yb9{bottom:361.946667pt;}
.y141{bottom:363.706667pt;}
.y2a{bottom:364.186667pt;}
.y11a{bottom:366.426667pt;}
.y4a{bottom:373.786667pt;}
.y90{bottom:374.426667pt;}
.y166{bottom:376.026667pt;}
.yf2{bottom:376.986667pt;}
.y29{bottom:380.026667pt;}
.yd6{bottom:380.346667pt;}
.y6d{bottom:381.786667pt;}
.y130{bottom:381.946667pt;}
.y182{bottom:383.706667pt;}
.y120{bottom:386.106667pt;}
.yb8{bottom:389.466667pt;}
.y140{bottom:391.386667pt;}
.y119{bottom:393.986667pt;}
.y28{bottom:395.906667pt;}
.y49{bottom:399.106667pt;}
.y8f{bottom:401.986667pt;}
.yf1{bottom:404.706667pt;}
.y165{bottom:408.706667pt;}
.y6c{bottom:409.506667pt;}
.y27{bottom:411.746667pt;}
.yd5{bottom:416.066667pt;}
.y181{bottom:416.386667pt;}
.yb7{bottom:417.186667pt;}
.y13f{bottom:418.946667pt;}
.y118{bottom:421.666667pt;}
.y48{bottom:424.386667pt;}
.y26{bottom:427.746667pt;}
.y8e{bottom:429.666667pt;}
.yf0{bottom:432.226667pt;}
.y6b{bottom:437.026667pt;}
.y12f{bottom:437.186667pt;}
.y164{bottom:441.346667pt;}
.y25{bottom:443.586667pt;}
.yb6{bottom:444.706667pt;}
.y13e{bottom:446.626667pt;}
.y180{bottom:448.866667pt;}
.y117{bottom:449.186667pt;}
.y47{bottom:449.666667pt;}
.y8d{bottom:457.186667pt;}
.y24{bottom:459.426667pt;}
.yd4{bottom:459.746667pt;}
.yef{bottom:459.906667pt;}
.y6a{bottom:464.706667pt;}
.yb5{bottom:472.386667pt;}
.y163{bottom:473.986667pt;}
.y13d{bottom:474.146667pt;}
.y46{bottom:474.946667pt;}
.y23{bottom:475.266667pt;}
.y116{bottom:476.866667pt;}
.y17f{bottom:481.506667pt;}
.y8c{bottom:484.866667pt;}
.yd3{bottom:487.266667pt;}
.yee{bottom:487.426667pt;}
.y22{bottom:491.106667pt;}
.y69{bottom:492.226667pt;}
.y12e{bottom:492.386667pt;}
.yb4{bottom:499.906667pt;}
.y45{bottom:500.386667pt;}
.y13c{bottom:501.666667pt;}
.y115{bottom:504.386667pt;}
.y162{bottom:506.466667pt;}
.y21{bottom:506.946667pt;}
.y8b{bottom:512.386667pt;}
.y17e{bottom:514.146667pt;}
.yd2{bottom:514.786667pt;}
.yed{bottom:515.106667pt;}
.y68{bottom:519.906667pt;}
.y20{bottom:522.786667pt;}
.yb3{bottom:527.586667pt;}
.y13b{bottom:529.346667pt;}
.ycc{bottom:529.666667pt;}
.y114{bottom:532.066667pt;}
.y1f{bottom:538.626667pt;}
.y161{bottom:539.106667pt;}
.y44{bottom:539.586667pt;}
.y8a{bottom:540.066667pt;}
.yec{bottom:542.626667pt;}
.y17d{bottom:546.786667pt;}
.y67{bottom:547.426667pt;}
.y1e{bottom:554.466667pt;}
.y152{bottom:555.266667pt;}
.y12d{bottom:555.746667pt;}
.y13a{bottom:556.866667pt;}
.y113{bottom:559.586667pt;}
.yb2{bottom:560.386667pt;}
.y89{bottom:567.586667pt;}
.yeb{bottom:570.306667pt;}
.y1d{bottom:570.466667pt;}
.y160{bottom:571.746667pt;}
.y43{bottom:573.346667pt;}
.y66{bottom:575.106667pt;}
.y17c{bottom:579.266667pt;}
.y139{bottom:584.546667pt;}
.y1c{bottom:586.306667pt;}
.y112{bottom:587.266667pt;}
.yae{bottom:588.066667pt;}
.y151{bottom:589.826667pt;}
.y88{bottom:595.266667pt;}
.y42{bottom:596.226667pt;}
.y12c{bottom:597.186667pt;}
.yea{bottom:597.826667pt;}
.y1b{bottom:602.173333pt;}
.y65{bottom:602.653333pt;}
.y15f{bottom:604.413333pt;}
.y17b{bottom:611.933333pt;}
.y138{bottom:612.093333pt;}
.y111{bottom:614.813333pt;}
.y1a{bottom:618.013333pt;}
.y41{bottom:619.133333pt;}
.y87{bottom:622.813333pt;}
.y12b{bottom:623.773333pt;}
.y150{bottom:624.093333pt;}
.ye9{bottom:625.373333pt;}
.ycb{bottom:626.493333pt;}
.y64{bottom:630.333333pt;}
.y19{bottom:633.853333pt;}
.y15e{bottom:636.893333pt;}
.y137{bottom:639.773333pt;}
.y110{bottom:642.493333pt;}
.y17a{bottom:644.573333pt;}
.y40{bottom:648.893333pt;}
.y18{bottom:649.693333pt;}
.y86{bottom:650.493333pt;}
.y14f{bottom:651.773333pt;}
.ye8{bottom:653.053333pt;}
.yca{bottom:654.013333pt;}
.y63{bottom:657.853333pt;}
.y3f{bottom:665.213333pt;}
.y17{bottom:665.533333pt;}
.y136{bottom:665.693333pt;}
.y15d{bottom:669.533333pt;}
.y10f{bottom:670.013333pt;}
.yac{bottom:670.813333pt;}
.y179{bottom:677.213333pt;}
.y85{bottom:678.013333pt;}
.y14e{bottom:679.293333pt;}
.ye7{bottom:680.573333pt;}
.y16{bottom:681.373333pt;}
.yc9{bottom:681.693333pt;}
.y62{bottom:685.533333pt;}
.y3e{bottom:694.813333pt;}
.y15{bottom:697.373333pt;}
.y10e{bottom:697.693333pt;}
.y135{bottom:698.013333pt;}
.y15c{bottom:702.173333pt;}
.y84{bottom:705.693333pt;}
.y14d{bottom:706.973333pt;}
.yc8{bottom:709.213333pt;}
.y178{bottom:709.693333pt;}
.y3d{bottom:711.133333pt;}
.y61{bottom:713.053333pt;}
.y14{bottom:713.213333pt;}
.ye6{bottom:716.413333pt;}
.y10d{bottom:725.213333pt;}
.yaa{bottom:726.013333pt;}
.y134{bottom:727.933333pt;}
.y13{bottom:729.053333pt;}
.y83{bottom:733.213333pt;}
.y15b{bottom:734.813333pt;}
.yc7{bottom:736.893333pt;}
.y60{bottom:740.733333pt;}
.y3c{bottom:740.893333pt;}
.y177{bottom:742.333333pt;}
.y14c{bottom:744.733333pt;}
.y12{bottom:744.893333pt;}
.y10c{bottom:752.893333pt;}
.ya9{bottom:753.693333pt;}
.y3b{bottom:757.053333pt;}
.ye5{bottom:759.773333pt;}
.y11{bottom:760.733333pt;}
.y82{bottom:760.893333pt;}
.yc6{bottom:764.413333pt;}
.y15a{bottom:767.293333pt;}
.y176{bottom:774.973333pt;}
.y10{bottom:776.573333pt;}
.y5f{bottom:778.493333pt;}
.y10b{bottom:780.413333pt;}
.y14b{bottom:781.853333pt;}
.y193{bottom:784.000000pt;}
.y3a{bottom:786.813333pt;}
.ye4{bottom:787.453333pt;}
.y81{bottom:788.413333pt;}
.yc5{bottom:792.093333pt;}
.yf{bottom:792.413333pt;}
.y159{bottom:799.933333pt;}
.y192{bottom:800.000000pt;}
.y39{bottom:803.133333pt;}
.y175{bottom:807.613333pt;}
.y10a{bottom:808.093333pt;}
.ye{bottom:808.253333pt;}
.ya7{bottom:808.893333pt;}
.ye3{bottom:815.013333pt;}
.y80{bottom:816.133333pt;}
.yc4{bottom:819.653333pt;}
.yd{bottom:824.293333pt;}
.y158{bottom:832.613333pt;}
.y38{bottom:835.333333pt;}
.y109{bottom:835.653333pt;}
.ya3{bottom:838.533333pt;}
.yc{bottom:840.133333pt;}
.ye2{bottom:842.693333pt;}
.y7f{bottom:843.653333pt;}
.y5e{bottom:844.613333pt;}
.yc3{bottom:855.493333pt;}
.yb{bottom:855.973333pt;}
.y37{bottom:860.613333pt;}
.y108{bottom:863.333333pt;}
.y157{bottom:865.253333pt;}
.y5d{bottom:866.373333pt;}
.y7e{bottom:871.333333pt;}
.ya{bottom:871.813333pt;}
.y174{bottom:872.773333pt;}
.ye1{bottom:880.453333pt;}
.y9{bottom:887.653333pt;}
.y5c{bottom:888.133333pt;}
.y107{bottom:890.853333pt;}
.ya0{bottom:894.373333pt;}
.y156{bottom:897.733333pt;}
.y7d{bottom:898.853333pt;}
.y8{bottom:903.493333pt;}
.y173{bottom:905.413333pt;}
.y5b{bottom:909.893333pt;}
.y36{bottom:911.333333pt;}
.y106{bottom:918.533333pt;}
.y7{bottom:919.333333pt;}
.y7c{bottom:926.533333pt;}
.y155{bottom:930.373333pt;}
.y5a{bottom:931.653333pt;}
.y6{bottom:935.173333pt;}
.y172{bottom:938.053333pt;}
.y105{bottom:946.053333pt;}
.y5{bottom:951.173333pt;}
.y59{bottom:953.253333pt;}
.y7b{bottom:954.053333pt;}
.y35{bottom:957.253333pt;}
.y154{bottom:963.013333pt;}
.y4{bottom:967.013333pt;}
.y171{bottom:970.533333pt;}
.y104{bottom:973.733333pt;}
.y58{bottom:975.013333pt;}
.y30{bottom:980.133333pt;}
.y7a{bottom:981.733333pt;}
.y3{bottom:982.853333pt;}
.y2{bottom:998.693333pt;}
.y57{bottom:1002.373333pt;}
.y18b{bottom:1003.013333pt;}
.y170{bottom:1003.173333pt;}
.y34{bottom:1003.333333pt;}
.y153{bottom:1006.853333pt;}
.y79{bottom:1009.253333pt;}
.y103{bottom:1009.413333pt;}
.y1{bottom:1014.533333pt;}
.y191{bottom:1024.000000pt;}
.y32{bottom:1037.760000pt;}
.y190{bottom:1040.000000pt;}
.y55{bottom:1043.520000pt;}
.y54{bottom:1106.560000pt;}
.h1f{height:22.880000pt;}
.h16{height:27.552000pt;}
.h17{height:27.680000pt;}
.h6{height:31.008437pt;}
.ha{height:36.045000pt;}
.h2{height:44.125469pt;}
.h4{height:46.281250pt;}
.h5{height:46.906250pt;}
.hd{height:47.109375pt;}
.h15{height:55.200000pt;}
.h20{height:55.402500pt;}
.hc{height:55.625000pt;}
.h14{height:61.410000pt;}
.h9{height:62.812500pt;}
.h8{height:65.595000pt;}
.he{height:66.750000pt;}
.h11{height:67.881250pt;}
.h10{height:67.987917pt;}
.hf{height:74.162500pt;}
.h3{height:74.432000pt;}
.h13{height:74.560000pt;}
.hb{height:78.097500pt;}
.h18{height:82.752000pt;}
.h19{height:84.032000pt;}
.h12{height:88.777500pt;}
.h7{height:111.472500pt;}
.h1c{height:116.107187pt;}
.h1e{height:135.730938pt;}
.h1b{height:206.411250pt;}
.h1a{height:212.171250pt;}
.h1d{height:245.451250pt;}
.h22{height:816.000000pt;}
.h21{height:1056.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:9.920000pt;}
.wd{width:14.880000pt;}
.w7{width:66.112000pt;}
.w5{width:66.272000pt;}
.wa{width:75.520000pt;}
.w6{width:84.640000pt;}
.w8{width:85.440000pt;}
.wc{width:86.560000pt;}
.w4{width:104.000000pt;}
.w9{width:113.472000pt;}
.we{width:475.933333pt;}
.wb{width:479.773333pt;}
.w3{width:586.013333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.wf{width:816.000000pt;}
.w10{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x33{left:1.600000pt;}
.x3{left:4.960000pt;}
.x7{left:6.666667pt;}
.x23{left:8.160000pt;}
.x1d{left:9.120000pt;}
.x19{left:10.560000pt;}
.x18{left:11.520000pt;}
.xd{left:12.960000pt;}
.x1c{left:15.200000pt;}
.x11{left:16.480000pt;}
.x13{left:17.760000pt;}
.xb{left:19.040000pt;}
.x1f{left:21.600000pt;}
.x22{left:22.720000pt;}
.x21{left:24.000000pt;}
.xf{left:26.240000pt;}
.x14{left:29.280000pt;}
.x1e{left:30.880000pt;}
.x25{left:35.520000pt;}
.x20{left:38.720000pt;}
.x1a{left:40.000000pt;}
.x16{left:43.360000pt;}
.x24{left:45.600000pt;}
.x26{left:47.840000pt;}
.x1b{left:54.120000pt;}
.x1{left:88.992000pt;}
.xa{left:90.272000pt;}
.x4{left:102.112000pt;}
.x5{left:109.632000pt;}
.x27{left:113.792000pt;}
.x6{left:122.912000pt;}
.x8{left:130.432000pt;}
.x28{left:137.634667pt;}
.x31{left:144.826667pt;}
.x32{left:151.546667pt;}
.x34{left:166.426667pt;}
.x29{left:189.954667pt;}
.xc{left:194.266667pt;}
.x2d{left:216.354667pt;}
.x2c{left:220.674667pt;}
.x2b{left:239.714667pt;}
.x2a{left:246.274667pt;}
.xe{left:260.546667pt;}
.x10{left:345.186667pt;}
.x12{left:411.293333pt;}
.x15{left:496.733333pt;}
.x2e{left:593.573333pt;}
.x17{left:610.213333pt;}
.x2{left:633.253333pt;}
.x9{left:669.093333pt;}
.x2f{left:687.013333pt;}
.x30{left:732.480000pt;}
}




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