
    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_52ccdec2f436def93b31df14.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.027000;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_cd0744ab687814eb40226b29.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.000000;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_8146853b30069c34554c87c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.027000;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_51b290fce967b6e8a694bdc7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.510000;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_658affbf765bf0b2e9e5e4a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.511000;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_93c22fa6e27fb9e11d926040.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936000;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_acb139684485f18a0e7a23ca.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_53284ac91f531bd8cb53bbd0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.789000;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;}
.m1{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);}
.m5{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);}
.m6{transform:matrix(0.259991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259991,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.259993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259993,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.259997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259997,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.259997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259997,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.260002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260002,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.375059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375059,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-5.316156px;}
.ls47{letter-spacing:-3.259411px;}
.ls4a{letter-spacing:-2.934235px;}
.ls10{letter-spacing:-2.524896px;}
.ls36{letter-spacing:-2.319328px;}
.ls34{letter-spacing:-2.199720px;}
.ls43{letter-spacing:-1.520714px;}
.lsf{letter-spacing:-1.231843px;}
.ls44{letter-spacing:-1.176402px;}
.ls41{letter-spacing:-1.095105px;}
.ls48{letter-spacing:-0.941098px;}
.ls42{letter-spacing:-0.846435px;}
.ls38{letter-spacing:-0.793832px;}
.ls3a{letter-spacing:-0.693407px;}
.ls35{letter-spacing:-0.680010px;}
.lsd{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.003826px;}
.ls37{letter-spacing:0.004782px;}
.lsa{letter-spacing:0.091814px;}
.ls33{letter-spacing:0.103291px;}
.ls7{letter-spacing:0.109818px;}
.ls13{letter-spacing:0.114771px;}
.ls9{letter-spacing:0.160675px;}
.ls3e{letter-spacing:0.210413px;}
.ls14{letter-spacing:0.253452px;}
.ls2d{letter-spacing:0.258234px;}
.ls1f{letter-spacing:0.353877px;}
.ls39{letter-spacing:0.358659px;}
.ls2e{letter-spacing:0.368223px;}
.ls16{letter-spacing:0.373005px;}
.ls22{letter-spacing:0.377787px;}
.ls23{letter-spacing:0.382570px;}
.ls29{letter-spacing:0.387352px;}
.ls21{letter-spacing:0.392134px;}
.ls18{letter-spacing:0.396916px;}
.ls15{letter-spacing:0.401698px;}
.ls26{letter-spacing:0.406480px;}
.ls1b{letter-spacing:0.411262px;}
.ls1d{letter-spacing:0.416044px;}
.ls3f{letter-spacing:0.420816px;}
.ls1c{letter-spacing:0.420827px;}
.ls32{letter-spacing:0.425609px;}
.ls2a{letter-spacing:0.430391px;}
.ls19{letter-spacing:0.435173px;}
.ls30{letter-spacing:0.439955px;}
.ls28{letter-spacing:0.449519px;}
.ls1a{letter-spacing:0.459084px;}
.ls31{letter-spacing:0.463866px;}
.ls3b{letter-spacing:0.468648px;}
.ls17{letter-spacing:0.478212px;}
.ls2c{letter-spacing:0.482994px;}
.ls27{letter-spacing:0.492558px;}
.ls1e{letter-spacing:0.502123px;}
.ls2f{letter-spacing:0.511687px;}
.ls25{letter-spacing:0.516469px;}
.ls45{letter-spacing:0.535584px;}
.ls3d{letter-spacing:0.549944px;}
.ls24{letter-spacing:0.554726px;}
.ls2b{letter-spacing:0.569072px;}
.ls20{letter-spacing:0.578637px;}
.ls49{letter-spacing:0.589142px;}
.ls3c{letter-spacing:0.631240px;}
.ls40{letter-spacing:1.147680px;}
.ls4{letter-spacing:1.545896px;}
.ls8{letter-spacing:1.651490px;}
.ls0{letter-spacing:1.668385px;}
.ls1{letter-spacing:1.706399px;}
.ls5{letter-spacing:1.778203px;}
.ls2{letter-spacing:1.862678px;}
.ls3{letter-spacing:1.904916px;}
.ls6{letter-spacing:1.942930px;}
.ls12{letter-spacing:5.642902px;}
.lsc{letter-spacing:5.676376px;}
.ls11{letter-spacing:5.685941px;}
.lsb{letter-spacing:5.700287px;}
.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;}
}
.ws7{word-spacing:-5.748108px;}
.ws8{word-spacing:-5.724198px;}
.ws31{word-spacing:-1.185936px;}
.ws25{word-spacing:-0.679061px;}
.ws23{word-spacing:-0.616893px;}
.ws1b{word-spacing:-0.602547px;}
.ws2e{word-spacing:-0.573840px;}
.ws1c{word-spacing:-0.564290px;}
.ws27{word-spacing:-0.559508px;}
.ws17{word-spacing:-0.549944px;}
.ws1e{word-spacing:-0.540380px;}
.ws24{word-spacing:-0.530815px;}
.wsf{word-spacing:-0.526033px;}
.ws29{word-spacing:-0.511687px;}
.ws13{word-spacing:-0.506905px;}
.ws20{word-spacing:-0.497340px;}
.ws28{word-spacing:-0.487776px;}
.ws11{word-spacing:-0.482994px;}
.ws22{word-spacing:-0.478212px;}
.ws2a{word-spacing:-0.473430px;}
.ws15{word-spacing:-0.468648px;}
.ws16{word-spacing:-0.463866px;}
.ws14{word-spacing:-0.459084px;}
.ws2f{word-spacing:-0.459072px;}
.ws1d{word-spacing:-0.454301px;}
.wsd{word-spacing:-0.449519px;}
.ws10{word-spacing:-0.444737px;}
.ws12{word-spacing:-0.439955px;}
.ws21{word-spacing:-0.435173px;}
.ws1a{word-spacing:-0.430391px;}
.ws19{word-spacing:-0.425609px;}
.wse{word-spacing:-0.420827px;}
.ws26{word-spacing:-0.416044px;}
.ws18{word-spacing:-0.401698px;}
.ws6{word-spacing:-0.083686px;}
.ws0{word-spacing:-0.080697px;}
.ws1{word-spacing:-0.063363px;}
.wsb{word-spacing:-0.047821px;}
.wsa{word-spacing:-0.043039px;}
.ws2{word-spacing:-0.042238px;}
.ws3{word-spacing:-0.038256px;}
.ws9{word-spacing:0.000000px;}
.ws1f{word-spacing:0.645586px;}
.wsc{word-spacing:0.746011px;}
.ws2b{word-spacing:0.798614px;}
.ws30{word-spacing:0.902842px;}
.ws2d{word-spacing:1.128580px;}
.ws4{word-spacing:1.193587px;}
.ws2c{word-spacing:1.472893px;}
.ws5{word-spacing:2.486640px;}
._2{margin-left:-5.059702px;}
._1{margin-left:-3.324716px;}
._3{margin-left:-2.146162px;}
._0{margin-left:-1.032922px;}
._5{width:1.056849px;}
._4{width:2.161464px;}
.fc1{color:rgb(8,99,154);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:3.401400px;}
.fs4{font-size:25.500000px;}
.fs8{font-size:37.657200px;}
.fs5{font-size:38.256000px;}
.fs3{font-size:42.237600px;}
.fs9{font-size:43.038600px;}
.fs6{font-size:47.821200px;}
.fs2{font-size:63.363000px;}
.fs0{font-size:80.697000px;}
.fs7{font-size:83.685600px;}
.y0{bottom:0.000000px;}
.ye2{bottom:45.745706px;}
.y55{bottom:76.790550px;}
.y54{bottom:76.790824px;}
.y53{bottom:89.631450px;}
.y52{bottom:89.631708px;}
.yd3{bottom:94.478700px;}
.yd2{bottom:94.479021px;}
.y51{bottom:102.472334px;}
.yd1{bottom:110.211000px;}
.yd0{bottom:110.211153px;}
.ycf{bottom:125.858250px;}
.yce{bottom:125.858571px;}
.y50{bottom:131.981100px;}
.y4f{bottom:131.981304px;}
.ycd{bottom:141.590550px;}
.ycc{bottom:141.590703px;}
.y4e{bottom:144.907050px;}
.ycb{bottom:157.237800px;}
.yca{bottom:157.238121px;}
.yc9{bottom:172.970100px;}
.yc8{bottom:172.970103px;}
.yc7{bottom:188.617200px;}
.yc6{bottom:188.617671px;}
.yc5{bottom:204.349650px;}
.yc4{bottom:204.349803px;}
.yc3{bottom:219.996900px;}
.ye0{bottom:219.997071px;}
.yc2{bottom:219.997224px;}
.ydf{bottom:235.729050px;}
.yde{bottom:235.729203px;}
.yc1{bottom:251.376300px;}
.yc0{bottom:251.376621px;}
.ybf{bottom:267.108600px;}
.ydd{bottom:267.108753px;}
.ybe{bottom:267.109074px;}
.ydc{bottom:282.755850px;}
.ydb{bottom:282.756171px;}
.ybd{bottom:298.488150px;}
.ybc{bottom:298.488303px;}
.ybb{bottom:314.135400px;}
.yba{bottom:314.135721px;}
.yb9{bottom:329.867700px;}
.yb8{bottom:329.867703px;}
.yb7{bottom:345.514800px;}
.yb6{bottom:345.515271px;}
.yb5{bottom:361.247250px;}
.yb4{bottom:361.247403px;}
.yb3{bottom:376.894500px;}
.yb2{bottom:376.894671px;}
.yb1{bottom:392.626650px;}
.yb0{bottom:392.626803px;}
.y4d{bottom:397.984200px;}
.y4c{bottom:402.236100px;}
.yaf{bottom:408.273900px;}
.yae{bottom:408.274221px;}
.y4b{bottom:410.825100px;}
.y4a{bottom:415.077150px;}
.y49{bottom:423.666000px;}
.yad{bottom:424.006200px;}
.yac{bottom:424.006353px;}
.y48{bottom:427.918050px;}
.y47{bottom:436.506900px;}
.yab{bottom:439.653450px;}
.yaa{bottom:439.653771px;}
.y46{bottom:440.758950px;}
.y45{bottom:449.347950px;}
.y44{bottom:453.599850px;}
.ya9{bottom:455.385750px;}
.ya8{bottom:455.385903px;}
.y43{bottom:462.188850px;}
.y42{bottom:466.440900px;}
.ya7{bottom:471.033000px;}
.ya6{bottom:471.033321px;}
.y41{bottom:475.029900px;}
.y40{bottom:479.281800px;}
.ya5{bottom:486.765300px;}
.ya4{bottom:486.765453px;}
.y3f{bottom:487.955850px;}
.y3e{bottom:492.207750px;}
.y3d{bottom:500.796750px;}
.ya3{bottom:502.412550px;}
.ya2{bottom:502.412871px;}
.y3c{bottom:505.048650px;}
.y3b{bottom:513.637650px;}
.y122{bottom:516.699150px;}
.y121{bottom:516.699474px;}
.y3a{bottom:517.889700px;}
.ya1{bottom:518.144850px;}
.ya0{bottom:518.144853px;}
.y39{bottom:526.478550px;}
.y38{bottom:530.730600px;}
.y9f{bottom:533.791950px;}
.y9e{bottom:533.792271px;}
.y37{bottom:539.319600px;}
.y36{bottom:543.571500px;}
.y166{bottom:545.102483px;}
.y120{bottom:548.078550px;}
.y11f{bottom:548.079024px;}
.y9d{bottom:549.524250px;}
.y9c{bottom:549.524571px;}
.y35{bottom:552.160500px;}
.y34{bottom:556.412550px;}
.y165{bottom:557.007750px;}
.y164{bottom:557.007913px;}
.y33{bottom:565.001400px;}
.y9b{bottom:565.256550px;}
.y9a{bottom:565.256703px;}
.yda{bottom:565.257024px;}
.y163{bottom:568.998300px;}
.y162{bottom:568.998533px;}
.y32{bottom:569.253450px;}
.y31{bottom:577.927350px;}
.y11e{bottom:579.458100px;}
.y11d{bottom:579.458421px;}
.y98{bottom:580.903079px;}
.y99{bottom:580.903800px;}
.y161{bottom:580.904126px;}
.y30{bottom:582.094350px;}
.y2f{bottom:590.768400px;}
.y160{bottom:592.894513px;}
.y2e{bottom:595.020300px;}
.y11c{bottom:595.190400px;}
.y11b{bottom:595.190553px;}
.yd9{bottom:596.636100px;}
.yd8{bottom:596.636253px;}
.y2d{bottom:603.609300px;}
.y15f{bottom:604.884900px;}
.y15e{bottom:604.885133px;}
.y2c{bottom:607.861350px;}
.y11a{bottom:610.837650px;}
.y119{bottom:610.837971px;}
.y97{bottom:612.283350px;}
.y96{bottom:612.283824px;}
.y2b{bottom:616.450200px;}
.y15d{bottom:616.790400px;}
.y15c{bottom:616.790563px;}
.y2a{bottom:620.702250px;}
.y117{bottom:626.569229px;}
.y118{bottom:626.569950px;}
.y15b{bottom:628.780950px;}
.y15a{bottom:628.781346px;}
.y29{bottom:629.291250px;}
.y28{bottom:633.543150px;}
.y159{bottom:640.686613px;}
.y27{bottom:642.132150px;}
.y95{bottom:643.662900px;}
.y94{bottom:643.663221px;}
.y26{bottom:646.384200px;}
.y158{bottom:652.677000px;}
.y157{bottom:652.677163px;}
.y25{bottom:654.973050px;}
.y116{bottom:657.949500px;}
.y115{bottom:657.949824px;}
.y24{bottom:659.225100px;}
.y93{bottom:659.395200px;}
.y92{bottom:659.395203px;}
.y156{bottom:664.667550px;}
.y155{bottom:664.667783px;}
.y23{bottom:667.814100px;}
.y22{bottom:672.066000px;}
.y91{bottom:675.042300px;}
.y90{bottom:675.042621px;}
.y154{bottom:676.573050px;}
.y153{bottom:676.573446px;}
.y21{bottom:680.740050px;}
.y20{bottom:684.991950px;}
.y152{bottom:688.563833px;}
.y114{bottom:689.328900px;}
.y113{bottom:689.329203px;}
.y8f{bottom:690.774600px;}
.y8e{bottom:690.774753px;}
.y1f{bottom:693.580950px;}
.y1e{bottom:697.833000px;}
.y151{bottom:700.469100px;}
.y150{bottom:700.469263px;}
.y112{bottom:704.976300px;}
.y111{bottom:704.976621px;}
.y1d{bottom:706.421850px;}
.y8d{bottom:706.422171px;}
.y1c{bottom:710.673900px;}
.y14f{bottom:712.459650px;}
.y14e{bottom:712.459813px;}
.y1b{bottom:719.262900px;}
.y110{bottom:720.708600px;}
.y10f{bottom:720.708603px;}
.y8c{bottom:722.154150px;}
.y8b{bottom:722.154303px;}
.y1a{bottom:723.514800px;}
.y14d{bottom:724.450200px;}
.y14c{bottom:724.450596px;}
.y19{bottom:732.103800px;}
.y18{bottom:736.355700px;}
.y14b{bottom:736.355863px;}
.y10e{bottom:736.356021px;}
.y8a{bottom:737.801400px;}
.y89{bottom:737.801721px;}
.y17{bottom:744.944700px;}
.y14a{bottom:748.346250px;}
.y149{bottom:748.346483px;}
.y16{bottom:749.196750px;}
.y10d{bottom:752.088000px;}
.y10c{bottom:752.088153px;}
.y88{bottom:753.533700px;}
.y87{bottom:753.533853px;}
.y148{bottom:760.251750px;}
.y147{bottom:760.251913px;}
.y12{bottom:767.565072px;}
.y13{bottom:767.565150px;}
.y10b{bottom:767.735250px;}
.y10a{bottom:767.735571px;}
.y15{bottom:768.245550px;}
.y86{bottom:769.180950px;}
.y85{bottom:769.181271px;}
.y146{bottom:772.242300px;}
.y145{bottom:772.242683px;}
.y14{bottom:774.538350px;}
.y109{bottom:783.467550px;}
.y108{bottom:783.467703px;}
.y144{bottom:784.147950px;}
.y143{bottom:784.147963px;}
.y84{bottom:784.913250px;}
.y83{bottom:784.913403px;}
.yf{bottom:786.954072px;}
.y10{bottom:786.954150px;}
.y11{bottom:794.012400px;}
.y142{bottom:796.138350px;}
.y141{bottom:796.138513px;}
.y107{bottom:799.114800px;}
.y106{bottom:799.115121px;}
.y82{bottom:800.560500px;}
.yd7{bottom:800.560821px;}
.y81{bottom:800.560824px;}
.yc{bottom:806.342582px;}
.yd{bottom:806.343150px;}
.y140{bottom:808.128900px;}
.y13f{bottom:808.129296px;}
.ye{bottom:813.401400px;}
.y105{bottom:814.847100px;}
.y104{bottom:814.847103px;}
.yd6{bottom:816.292800px;}
.yd5{bottom:816.292803px;}
.y13e{bottom:820.034563px;}
.y9{bottom:825.816972px;}
.ya{bottom:825.817200px;}
.y103{bottom:830.494200px;}
.y102{bottom:830.494671px;}
.y80{bottom:831.939900px;}
.yd4{bottom:831.942576px;}
.y13d{bottom:832.024950px;}
.y13c{bottom:832.025333px;}
.yb{bottom:832.875300px;}
.y13b{bottom:843.930600px;}
.y13a{bottom:843.930613px;}
.y6{bottom:845.205482px;}
.y7{bottom:845.206050px;}
.y101{bottom:846.226650px;}
.y100{bottom:846.226653px;}
.y8{bottom:852.264450px;}
.y139{bottom:855.921000px;}
.y138{bottom:855.921163px;}
.yff{bottom:861.873750px;}
.yfe{bottom:861.874071px;}
.y4{bottom:864.680100px;}
.y137{bottom:867.911550px;}
.y136{bottom:867.911783px;}
.y5{bottom:871.738350px;}
.yfd{bottom:877.606050px;}
.yfc{bottom:877.606203px;}
.y7f{bottom:879.221835px;}
.y135{bottom:879.817050px;}
.y134{bottom:879.817596px;}
.y133{bottom:891.807983px;}
.yfb{bottom:893.253300px;}
.yfa{bottom:893.253621px;}
.y7d{bottom:893.593485px;}
.y7e{bottom:893.593500px;}
.y3{bottom:899.036100px;}
.y2{bottom:899.036716px;}
.y132{bottom:903.713250px;}
.y131{bottom:903.713413px;}
.y7b{bottom:907.965072px;}
.y7c{bottom:907.965150px;}
.yf9{bottom:908.985600px;}
.yf8{bottom:908.985753px;}
.y130{bottom:915.703800px;}
.y12f{bottom:915.703883px;}
.y68{bottom:920.212025px;}
.y7a{bottom:922.251735px;}
.yf7{bottom:924.632850px;}
.yf6{bottom:924.633171px;}
.y1{bottom:924.888000px;}
.y12e{bottom:927.609150px;}
.y12d{bottom:927.609313px;}
.y67{bottom:933.052651px;}
.y78{bottom:936.623385px;}
.y79{bottom:936.623400px;}
.y12c{bottom:939.599700px;}
.y12b{bottom:939.600013px;}
.yf5{bottom:940.365150px;}
.yf4{bottom:940.365303px;}
.y66{bottom:945.893278px;}
.y76{bottom:950.995035px;}
.y77{bottom:950.995050px;}
.y12a{bottom:951.590400px;}
.y129{bottom:951.590633px;}
.yf3{bottom:956.012400px;}
.yf2{bottom:956.012721px;}
.y65{bottom:958.733904px;}
.y128{bottom:963.495900px;}
.y127{bottom:963.496063px;}
.y74{bottom:965.366637px;}
.y75{bottom:965.366700px;}
.y64{bottom:971.659650px;}
.y63{bottom:971.660227px;}
.yf1{bottom:971.744700px;}
.yf0{bottom:971.744703px;}
.y126{bottom:975.486450px;}
.y72{bottom:979.653285px;}
.y73{bottom:979.653300px;}
.y62{bottom:984.500854px;}
.yef{bottom:987.391800px;}
.yee{bottom:987.392271px;}
.y70{bottom:994.024935px;}
.y71{bottom:994.024950px;}
.yed{bottom:1003.124250px;}
.yec{bottom:1003.124253px;}
.y125{bottom:1003.124574px;}
.y59{bottom:1004.144550px;}
.y6e{bottom:1008.396537px;}
.y6f{bottom:1008.396600px;}
.y61{bottom:1014.604500px;}
.y60{bottom:1014.604774px;}
.yeb{bottom:1018.771350px;}
.yea{bottom:1018.771671px;}
.y6c{bottom:1022.683185px;}
.y6d{bottom:1022.683200px;}
.y5e{bottom:1027.444867px;}
.y5f{bottom:1027.445400px;}
.ye9{bottom:1034.503650px;}
.ye8{bottom:1034.503803px;}
.y6a{bottom:1037.054835px;}
.y6b{bottom:1037.054850px;}
.y5d{bottom:1040.286450px;}
.y5c{bottom:1040.286574px;}
.y58{bottom:1044.198150px;}
.ye7{bottom:1050.150900px;}
.ye6{bottom:1050.151371px;}
.y69{bottom:1051.426500px;}
.y5b{bottom:1053.127200px;}
.ye5{bottom:1065.883350px;}
.ye4{bottom:1065.883674px;}
.y124{bottom:1065.886180px;}
.y5a{bottom:1080.595050px;}
.y57{bottom:1087.738350px;}
.ye3{bottom:1097.262750px;}
.y123{bottom:1097.265255px;}
.y56{bottom:1127.706900px;}
.ye1{bottom:1127.791800px;}
.y167{bottom:1127.794921px;}
.h3{height:0.000000px;}
.h6{height:20.808000px;}
.ha{height:30.728275px;}
.h7{height:31.216896px;}
.h5{height:34.465882px;}
.hb{height:35.119498px;}
.h8{height:35.196403px;}
.hc{height:37.730927px;}
.hd{height:39.022099px;}
.h4{height:51.704208px;}
.h2{height:65.848752px;}
.h9{height:68.287450px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:56.381100px;}
.xb4{left:61.228350px;}
.x81{left:62.929050px;}
.x12d{left:64.119600px;}
.xed{left:66.840900px;}
.x1a7{left:68.068800px;}
.x131{left:69.147600px;}
.x147{left:70.843650px;}
.x1a8{left:72.113400px;}
.x150{left:73.402350px;}
.xc0{left:74.796750px;}
.x1a5{left:75.939450px;}
.xc1{left:77.981100px;}
.xf8{left:79.301250px;}
.x10{left:80.991900px;}
.xf9{left:82.403100px;}
.x152{left:84.709350px;}
.x11{left:88.015650px;}
.x127{left:90.161100px;}
.x1fa{left:91.302750px;}
.xc7{left:92.342850px;}
.x82{left:93.494400px;}
.x1e{left:94.946700px;}
.x83{left:96.689700px;}
.x9f{left:98.414100px;}
.x1f{left:100.176300px;}
.x6b{left:101.470350px;}
.xee{left:102.982650px;}
.x105{left:104.920500px;}
.x6c{left:106.724400px;}
.xbb{left:108.652950px;}
.xe3{left:109.785750px;}
.x2e{left:111.651300px;}
.xef{left:112.890450px;}
.xa0{left:114.633000px;}
.x153{left:115.738500px;}
.x2f{left:116.758950px;}
.x46{left:117.878550px;}
.xc2{left:119.470350px;}
.xe4{left:120.925950px;}
.x47{left:123.136950px;}
.x84{left:125.227500px;}
.xc8{left:126.542550px;}
.x59{left:128.158350px;}
.xc9{left:129.684900px;}
.x11d{left:130.915350px;}
.x1a9{left:131.981100px;}
.x5a{left:133.681800px;}
.xd9{left:135.525450px;}
.x98{left:137.296800px;}
.x85{left:138.317250px;}
.x1a3{left:139.464450px;}
.x99{left:140.485050px;}
.x86{left:141.505500px;}
.x5b{left:142.693050px;}
.x12e{left:144.226650px;}
.xca{left:145.627500px;}
.x5c{left:147.968400px;}
.x12b{left:149.100450px;}
.x112{left:150.357900px;}
.xab{left:152.485050px;}
.xe5{left:154.102050px;}
.xac{left:155.366850px;}
.xe6{left:157.322850px;}
.x151{left:158.428350px;}
.xc3{left:159.876000px;}
.x79{left:161.234550px;}
.xc4{left:163.020450px;}
.x106{left:164.701050px;}
.x6d{left:165.996750px;}
.x107{left:167.952750px;}
.xa1{left:169.738500px;}
.xad{left:171.309450px;}
.x113{left:172.544850px;}
.xae{left:174.500700px;}
.xf0{left:176.185950px;}
.x7a{left:177.562200px;}
.xa2{left:179.646450px;}
.x7b{left:181.417050px;}
.x6e{left:183.174750px;}
.x9a{left:184.705500px;}
.x7c{left:185.811000px;}
.x6f{left:187.029600px;}
.x2{left:188.730600px;}
.x1b2{left:189.943950px;}
.x12f{left:191.083350px;}
.x30{left:192.188850px;}
.x48{left:194.144850px;}
.x3{left:195.760500px;}
.xcb{left:197.036100px;}
.x49{left:198.311700px;}
.x31{left:199.417200px;}
.x87{left:200.522400px;}
.x4a{left:202.166700px;}
.x32{left:203.272200px;}
.xfa{left:205.028550px;}
.x4b{left:206.475600px;}
.x33{left:207.581100px;}
.x1ae{left:208.601550px;}
.xa3{left:210.043950px;}
.x5d{left:211.152750px;}
.xa4{left:213.278700px;}
.x1fc{left:214.469250px;}
.x100{left:215.894250px;}
.x12{left:217.388850px;}
.x101{left:218.891250px;}
.xc5{left:220.251900px;}
.x20{left:221.357400px;}
.x108{left:222.678150px;}
.x13{left:224.333850px;}
.xcc{left:226.079550px;}
.x12c{left:227.480250px;}
.xcd{left:229.266150px;}
.xda{left:231.159000px;}
.xaf{left:232.987950px;}
.x9b{left:235.021050px;}
.xb0{left:236.154300px;}
.x9c{left:238.195200px;}
.x135{left:239.226750px;}
.x1b4{left:240.321150px;}
.x70{left:241.791750px;}
.x128{left:243.608550px;}
.x1ad{left:244.893750px;}
.x130{left:245.965200px;}
.x71{left:247.209300px;}
.xe7{left:249.191100px;}
.x88{left:251.047350px;}
.x4c{left:252.800400px;}
.x89{left:254.097600px;}
.x72{left:256.220700px;}
.xd6{left:257.839350px;}
.x21{left:259.029900px;}
.x1ab{left:260.390550px;}
.x73{left:261.496050px;}
.x22{left:262.884750px;}
.x1af{left:264.273000px;}
.xce{left:265.521600px;}
.x23{left:267.193650px;}
.x1b0{left:268.384200px;}
.xb5{left:269.437800px;}
.xa5{left:270.555300px;}
.x34{left:272.380950px;}
.xa6{left:273.741600px;}
.xf1{left:275.357400px;}
.xfc{left:277.313250px;}
.x5e{left:278.465400px;}
.x1f6{left:279.539400px;}
.x9d{left:280.756650px;}
.x1a4{left:282.500700px;}
.x5f{left:283.691250px;}
.x1b1{left:284.839800px;}
.x109{left:285.985500px;}
.x115{left:287.936250px;}
.x102{left:289.178700px;}
.x116{left:291.089700px;}
.x4{left:292.634850px;}
.x1aa{left:293.889900px;}
.xb6{left:295.321950px;}
.xc6{left:296.362050px;}
.xb7{left:298.488150px;}
.x5{left:299.678700px;}
.x129{left:300.869250px;}
.x24{left:302.250300px;}
.xe8{left:303.674100px;}
.xf2{left:304.956750px;}
.xb1{left:305.991450px;}
.x25{left:307.757400px;}
.xb2{left:309.118050px;}
.x10a{left:310.393650px;}
.x4d{left:311.839350px;}
.x9e{left:312.904950px;}
.xcf{left:314.135400px;}
.x8a{left:315.155850px;}
.x10b{left:316.848750px;}
.xfd{left:318.727500px;}
.x8b{left:320.167050px;}
.x14{left:321.293100px;}
.x8c{left:323.319600px;}
.xbc{left:324.805350px;}
.xd7{left:326.230200px;}
.x15{left:328.251900px;}
.xd8{left:329.357400px;}
.xa7{left:330.718050px;}
.x117{left:332.863500px;}
.x4e{left:334.629750px;}
.x118{left:335.735250px;}
.x35{left:337.096050px;}
.x4f{left:338.484750px;}
.x36{left:340.950900px;}
.x50{left:342.878700px;}
.xd0{left:344.239350px;}
.x37{left:345.259800px;}
.x114{left:346.790400px;}
.x1f7{left:348.491250px;}
.x60{left:349.596750px;}
.x10c{left:350.596950px;}
.x26{left:351.907650px;}
.x61{left:353.451600px;}
.xb3{left:355.294350px;}
.x27{left:357.165300px;}
.x1fb{left:358.501350px;}
.xf3{left:359.546400px;}
.x165{left:360.923400px;}
.x8d{left:362.138250px;}
.x1f9{left:363.232800px;}
.x1ac{left:364.273800px;}
.x8e{left:365.329050px;}
.x14e{left:367.710150px;}
.x7d{left:368.815650px;}
.x136{left:369.921150px;}
.x12a{left:370.941600px;}
.xd1{left:372.165000px;}
.x1b3{left:374.112600px;}
.xd2{left:375.278700px;}
.x7e{left:377.659800px;}
.xa8{left:379.203900px;}
.x6{left:381.460500px;}
.x1a1{left:382.840500px;}
.x103{left:384.037650px;}
.x7f{left:385.823550px;}
.x51{left:387.178050px;}
.x7{left:388.459650px;}
.xbd{left:389.990400px;}
.xd3{left:391.221150px;}
.x38{left:392.881800px;}
.x74{left:395.054400px;}
.x119{left:397.035150px;}
.xf4{left:398.494350px;}
.x75{left:400.110150px;}
.x1a6{left:401.385750px;}
.x62{left:402.888300px;}
.x52{left:404.406750px;}
.xb8{left:406.311000px;}
.x8{left:407.468700px;}
.x132{left:408.645750px;}
.x16{left:410.118750px;}
.x8f{left:411.800400px;}
.x14d{left:413.206200px;}
.x9{left:414.481800px;}
.x166{left:415.509750px;}
.x17{left:417.118050px;}
.x1f8{left:418.138500px;}
.xa9{left:419.682750px;}
.x167{left:420.774750px;}
.xaa{left:422.730600px;}
.x186{left:423.751050px;}
.xa{left:425.350050px;}
.x18d{left:426.387300px;}
.x80{left:427.766250px;}
.x104{left:429.827250px;}
.xf5{left:431.064450px;}
.xb{left:432.340050px;}
.xfb{left:433.540650px;}
.xd4{left:434.895150px;}
.x18{left:436.126950px;}
.xd5{left:438.122700px;}
.xe9{left:439.313250px;}
.xfe{left:440.833800px;}
.x19{left:443.140050px;}
.x28{left:446.739750px;}
.xdb{left:447.843750px;}
.x90{left:449.985150px;}
.x29{left:451.133700px;}
.x91{left:453.174750px;}
.x10d{left:454.535250px;}
.x76{left:457.086450px;}
.x148{left:458.616600px;}
.xb9{left:460.055850px;}
.x149{left:461.848650px;}
.xba{left:463.124250px;}
.x77{left:464.484900px;}
.x10e{left:465.675450px;}
.x39{left:467.631300px;}
.x154{left:469.417200px;}
.x1b7{left:470.424150px;}
.x3a{left:471.798300px;}
.xf6{left:473.457300px;}
.x1a{left:474.716700px;}
.x11e{left:476.305350px;}
.xea{left:477.615450px;}
.x53{left:478.714650px;}
.x3b{left:479.962050px;}
.x1b{left:481.662900px;}
.x54{left:483.023550px;}
.x19a{left:485.083200px;}
.x63{left:486.680250px;}
.x1cc{left:487.707150px;}
.x11a{left:489.231300px;}
.x16e{left:490.762050px;}
.x64{left:491.782500px;}
.x1c5{left:492.973050px;}
.xdc{left:494.588850px;}
.x65{left:495.637500px;}
.x1ee{left:496.884900px;}
.x10f{left:498.710700px;}
.x66{left:499.946250px;}
.x110{left:501.902250px;}
.x17c{left:503.809050px;}
.x19b{left:505.048650px;}
.x18e{left:506.494350px;}
.x92{left:507.870300px;}
.xdd{left:509.527200px;}
.x93{left:511.086450px;}
.xde{left:512.702250px;}
.xbe{left:513.726300px;}
.xff{left:514.913250px;}
.xbf{left:516.784050px;}
.x1ec{left:517.974600px;}
.xeb{left:519.114750px;}
.x78{left:521.098650px;}
.xec{left:522.311700px;}
.x1f0{left:523.332150px;}
.x14a{left:524.560650px;}
.x180{left:526.125600px;}
.x3c{left:527.374200px;}
.x2a{left:528.940500px;}
.x1f5{left:529.965300px;}
.x1bf{left:531.609750px;}
.x3d{left:532.686450px;}
.x2b{left:534.132150px;}
.x11f{left:535.322700px;}
.x11b{left:537.108450px;}
.x111{left:538.129050px;}
.x55{left:539.364600px;}
.x1d5{left:540.442950px;}
.x94{left:541.530600px;}
.x155{left:542.934600px;}
.x56{left:544.591950px;}
.x133{left:546.215400px;}
.x156{left:548.163600px;}
.x134{left:549.609300px;}
.x120{left:552.661500px;}
.x195{left:553.667700px;}
.x121{left:555.902250px;}
.x14b{left:557.848200px;}
.x157{left:558.950400px;}
.x67{left:560.089200px;}
.x14c{left:561.174750px;}
.xdf{left:563.375850px;}
.x68{left:565.341600px;}
.xe0{left:566.532150px;}
.x168{left:567.678900px;}
.x1ca{left:568.761000px;}
.x158{left:570.032250px;}
.x187{left:571.294350px;}
.x169{left:573.165150px;}
.x1cb{left:574.525800px;}
.x1c{left:575.533800px;}
.x205{left:576.651750px;}
.xc{left:578.033100px;}
.x14f{left:579.883350px;}
.x201{left:581.413950px;}
.x1d{left:582.519450px;}
.x176{left:583.679850px;}
.xd{left:585.070650px;}
.x17d{left:586.848600px;}
.x95{left:588.812400px;}
.x3e{left:590.513250px;}
.x16f{left:591.703800px;}
.x18f{left:592.735800px;}
.x3f{left:594.765150px;}
.x2c{left:597.231300px;}
.x40{left:598.620000px;}
.x11c{left:600.462900px;}
.x2d{left:601.823400px;}
.x41{left:603.013950px;}
.x1dc{left:604.119450px;}
.x1b5{left:605.530350px;}
.xe1{left:606.755700px;}
.x69{left:608.711550px;}
.x122{left:610.242300px;}
.xf7{left:611.554350px;}
.x190{left:612.793500px;}
.x6a{left:613.814100px;}
.x137{left:614.960850px;}
.x1c0{left:616.075350px;}
.x96{left:617.771100px;}
.x188{left:619.722900px;}
.x97{left:620.957250px;}
.x19c{left:621.977850px;}
.x16a{left:623.184150px;}
.x1ed{left:624.474450px;}
.x1e5{left:625.822350px;}
.x42{left:627.000150px;}
.x16b{left:628.610850px;}
.x1e7{left:629.620350px;}
.x196{left:630.906900px;}
.x43{left:632.182500px;}
.x1b8{left:633.418800px;}
.x1dd{left:634.648650px;}
.x138{left:635.788650px;}
.x139{left:637.455000px;}
.x1d6{left:638.825100px;}
.x177{left:640.365000px;}
.x1d7{left:641.962050px;}
.x1e9{left:643.407750px;}
.x13a{left:644.875200px;}
.x13b{left:646.639200px;}
.x207{left:648.192900px;}
.xe{left:649.225650px;}
.x159{left:651.196200px;}
.xe2{left:652.488900px;}
.x1cf{left:653.527350px;}
.x123{left:654.933000px;}
.xf{left:656.248650px;}
.x124{left:658.119450px;}
.x13c{left:659.565150px;}
.x189{left:661.521000px;}
.x191{left:663.493500px;}
.x1ef{left:665.262750px;}
.x1a2{left:667.218750px;}
.x170{left:668.826150px;}
.x1d8{left:670.024950px;}
.x171{left:671.895900px;}
.x1ba{left:672.916350px;}
.x178{left:674.532000px;}
.x1e0{left:676.062900px;}
.x1b9{left:678.226050px;}
.x206{left:679.549500px;}
.x1cd{left:680.689050px;}
.x13d{left:682.412850px;}
.x13e{left:684.056550px;}
.x172{left:685.842300px;}
.x1c6{left:687.538200px;}
.x1f3{left:688.810800px;}
.x1c1{left:689.924250px;}
.x1d9{left:691.506000px;}
.x125{left:692.515350px;}
.x1c7{left:694.176150px;}
.x126{left:695.706900px;}
.x57{left:696.812400px;}
.x1db{left:698.398950px;}
.x179{left:699.563100px;}
.x15a{left:700.894350px;}
.x17e{left:702.781650px;}
.x18a{left:704.380950px;}
.x15b{left:705.493200px;}
.x19d{left:706.677000px;}
.x181{left:708.411450px;}
.x208{left:709.568250px;}
.x15c{left:710.758950px;}
.x44{left:712.289550px;}
.x1ea{left:713.904900px;}
.x58{left:715.351050px;}
.x1d4{left:717.051450px;}
.x1bd{left:718.363200px;}
.x45{left:719.858100px;}
.x18b{left:721.643850px;}
.x1bb{left:723.769800px;}
.x1ce{left:725.348550px;}
.x16c{left:726.663750px;}
.x1c2{left:727.822350px;}
.x1d1{left:729.637650px;}
.x1e6{left:730.743150px;}
.x16d{left:732.103800px;}
.x1f4{left:733.634400px;}
.x15d{left:735.375900px;}
.x197{left:737.215650px;}
.x173{left:738.226650px;}
.x1da{left:739.247100px;}
.x15e{left:740.607600px;}
.x1f1{left:741.798150px;}
.x13f{left:743.125950px;}
.x140{left:744.774600px;}
.x17f{left:746.220300px;}
.x19e{left:747.495900px;}
.x18c{left:749.013600px;}
.x15f{left:750.745350px;}
.x174{left:752.884950px;}
.x1b6{left:754.213950px;}
.x160{left:755.999850px;}
.x192{left:757.707600px;}
.x203{left:758.721000px;}
.x182{left:760.039350px;}
.x19f{left:762.154200px;}
.x183{left:763.568250px;}
.x1a0{left:765.949350px;}
.x1d3{left:767.085450px;}
.x1e1{left:768.153750px;}
.x1de{left:769.521000px;}
.x141{left:771.813300px;}
.x142{left:773.602950px;}
.x17a{left:775.515150px;}
.x1eb{left:776.749350px;}
.x161{left:778.110150px;}
.x193{left:779.473050px;}
.x17b{left:780.491100px;}
.x1fd{left:781.766850px;}
.x1bc{left:783.467400px;}
.x194{left:784.488000px;}
.x1c8{left:785.811600px;}
.x1be{left:786.924000px;}
.x143{left:788.572800px;}
.x144{left:790.270650px;}
.x1c9{left:792.396750px;}
.x1c3{left:793.664100px;}
.x1f2{left:795.117900px;}
.x198{left:796.252500px;}
.x1d2{left:797.499000px;}
.x162{left:798.877950px;}
.x1e4{left:800.475450px;}
.x145{left:802.246650px;}
.x146{left:804.047100px;}
.x1e8{left:805.067550px;}
.x1c4{left:806.349450px;}
.x199{left:809.015250px;}
.x1ff{left:810.894450px;}
.x184{left:812.200200px;}
.x163{left:814.202700px;}
.x185{left:815.612400px;}
.x175{left:817.228200px;}
.x1d0{left:818.588700px;}
.x164{left:819.609150px;}
.x1fe{left:821.068200px;}
.x1e2{left:822.210150px;}
.x1df{left:824.456400px;}
.x200{left:826.072200px;}
.x1e3{left:827.092650px;}
.x204{left:829.388700px;}
.x202{left:831.344700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-4.725472pt;}
.ls47{letter-spacing:-2.897254pt;}
.ls4a{letter-spacing:-2.608209pt;}
.ls10{letter-spacing:-2.244352pt;}
.ls36{letter-spacing:-2.061625pt;}
.ls34{letter-spacing:-1.955307pt;}
.ls43{letter-spacing:-1.351746pt;}
.lsf{letter-spacing:-1.094972pt;}
.ls44{letter-spacing:-1.045690pt;}
.ls41{letter-spacing:-0.973427pt;}
.ls48{letter-spacing:-0.836531pt;}
.ls42{letter-spacing:-0.752387pt;}
.ls38{letter-spacing:-0.705628pt;}
.ls3a{letter-spacing:-0.616362pt;}
.ls35{letter-spacing:-0.604453pt;}
.lsd{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.003401pt;}
.ls37{letter-spacing:0.004251pt;}
.lsa{letter-spacing:0.081613pt;}
.ls33{letter-spacing:0.091814pt;}
.ls7{letter-spacing:0.097616pt;}
.ls13{letter-spacing:0.102019pt;}
.ls9{letter-spacing:0.142822pt;}
.ls3e{letter-spacing:0.187034pt;}
.ls14{letter-spacing:0.225291pt;}
.ls2d{letter-spacing:0.229542pt;}
.ls1f{letter-spacing:0.314557pt;}
.ls39{letter-spacing:0.318808pt;}
.ls2e{letter-spacing:0.327310pt;}
.ls16{letter-spacing:0.331560pt;}
.ls22{letter-spacing:0.335811pt;}
.ls23{letter-spacing:0.340062pt;}
.ls29{letter-spacing:0.344313pt;}
.ls21{letter-spacing:0.348563pt;}
.ls18{letter-spacing:0.352814pt;}
.ls15{letter-spacing:0.357065pt;}
.ls26{letter-spacing:0.361316pt;}
.ls1b{letter-spacing:0.365567pt;}
.ls1d{letter-spacing:0.369817pt;}
.ls3f{letter-spacing:0.374059pt;}
.ls1c{letter-spacing:0.374068pt;}
.ls32{letter-spacing:0.378319pt;}
.ls2a{letter-spacing:0.382570pt;}
.ls19{letter-spacing:0.386820pt;}
.ls30{letter-spacing:0.391071pt;}
.ls28{letter-spacing:0.399573pt;}
.ls1a{letter-spacing:0.408074pt;}
.ls31{letter-spacing:0.412325pt;}
.ls3b{letter-spacing:0.416576pt;}
.ls17{letter-spacing:0.425077pt;}
.ls2c{letter-spacing:0.429328pt;}
.ls27{letter-spacing:0.437830pt;}
.ls1e{letter-spacing:0.446331pt;}
.ls2f{letter-spacing:0.454833pt;}
.ls25{letter-spacing:0.459084pt;}
.ls45{letter-spacing:0.476075pt;}
.ls3d{letter-spacing:0.488839pt;}
.ls24{letter-spacing:0.493090pt;}
.ls2b{letter-spacing:0.505842pt;}
.ls20{letter-spacing:0.514344pt;}
.ls49{letter-spacing:0.523682pt;}
.ls3c{letter-spacing:0.561102pt;}
.ls40{letter-spacing:1.020160pt;}
.ls4{letter-spacing:1.374130pt;}
.ls8{letter-spacing:1.467991pt;}
.ls0{letter-spacing:1.483009pt;}
.ls1{letter-spacing:1.516799pt;}
.ls5{letter-spacing:1.580625pt;}
.ls2{letter-spacing:1.655714pt;}
.ls3{letter-spacing:1.693258pt;}
.ls6{letter-spacing:1.727049pt;}
.ls12{letter-spacing:5.015913pt;}
.lsc{letter-spacing:5.045668pt;}
.ls11{letter-spacing:5.054169pt;}
.lsb{letter-spacing:5.066922pt;}
.ws7{word-spacing:-5.109430pt;}
.ws8{word-spacing:-5.088176pt;}
.ws31{word-spacing:-1.054165pt;}
.ws25{word-spacing:-0.603610pt;}
.ws23{word-spacing:-0.548350pt;}
.ws1b{word-spacing:-0.535597pt;}
.ws2e{word-spacing:-0.510080pt;}
.ws1c{word-spacing:-0.501591pt;}
.ws27{word-spacing:-0.497340pt;}
.ws17{word-spacing:-0.488839pt;}
.ws1e{word-spacing:-0.480337pt;}
.ws24{word-spacing:-0.471836pt;}
.wsf{word-spacing:-0.467585pt;}
.ws29{word-spacing:-0.454833pt;}
.ws13{word-spacing:-0.450582pt;}
.ws20{word-spacing:-0.442080pt;}
.ws28{word-spacing:-0.433579pt;}
.ws11{word-spacing:-0.429328pt;}
.ws22{word-spacing:-0.425077pt;}
.ws2a{word-spacing:-0.420827pt;}
.ws15{word-spacing:-0.416576pt;}
.ws16{word-spacing:-0.412325pt;}
.ws14{word-spacing:-0.408074pt;}
.ws2f{word-spacing:-0.408064pt;}
.ws1d{word-spacing:-0.403823pt;}
.wsd{word-spacing:-0.399573pt;}
.ws10{word-spacing:-0.395322pt;}
.ws12{word-spacing:-0.391071pt;}
.ws21{word-spacing:-0.386820pt;}
.ws1a{word-spacing:-0.382570pt;}
.ws19{word-spacing:-0.378319pt;}
.wse{word-spacing:-0.374068pt;}
.ws26{word-spacing:-0.369817pt;}
.ws18{word-spacing:-0.357065pt;}
.ws6{word-spacing:-0.074387pt;}
.ws0{word-spacing:-0.071731pt;}
.ws1{word-spacing:-0.056323pt;}
.wsb{word-spacing:-0.042508pt;}
.wsa{word-spacing:-0.038257pt;}
.ws2{word-spacing:-0.037545pt;}
.ws3{word-spacing:-0.034005pt;}
.ws9{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.573854pt;}
.wsc{word-spacing:0.663121pt;}
.ws2b{word-spacing:0.709879pt;}
.ws30{word-spacing:0.802526pt;}
.ws2d{word-spacing:1.003183pt;}
.ws4{word-spacing:1.060966pt;}
.ws2c{word-spacing:1.309238pt;}
.ws5{word-spacing:2.210347pt;}
._2{margin-left:-4.497513pt;}
._1{margin-left:-2.955303pt;}
._3{margin-left:-1.907699pt;}
._0{margin-left:-0.918153pt;}
._5{width:0.939421pt;}
._4{width:1.921301pt;}
.fs1{font-size:3.023467pt;}
.fs4{font-size:22.666667pt;}
.fs8{font-size:33.473067pt;}
.fs5{font-size:34.005333pt;}
.fs3{font-size:37.544533pt;}
.fs9{font-size:38.256533pt;}
.fs6{font-size:42.507733pt;}
.fs2{font-size:56.322667pt;}
.fs0{font-size:71.730667pt;}
.fs7{font-size:74.387200pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:40.662850pt;}
.y55{bottom:68.258267pt;}
.y54{bottom:68.258510pt;}
.y53{bottom:79.672400pt;}
.y52{bottom:79.672629pt;}
.yd3{bottom:83.981067pt;}
.yd2{bottom:83.981352pt;}
.y51{bottom:91.086519pt;}
.yd1{bottom:97.965333pt;}
.yd0{bottom:97.965470pt;}
.ycf{bottom:111.874000pt;}
.yce{bottom:111.874285pt;}
.y50{bottom:117.316533pt;}
.y4f{bottom:117.316715pt;}
.ycd{bottom:125.858267pt;}
.ycc{bottom:125.858403pt;}
.y4e{bottom:128.806267pt;}
.ycb{bottom:139.766933pt;}
.yca{bottom:139.767218pt;}
.yc9{bottom:153.751200pt;}
.yc8{bottom:153.751203pt;}
.yc7{bottom:167.659733pt;}
.yc6{bottom:167.660152pt;}
.yc5{bottom:181.644133pt;}
.yc4{bottom:181.644270pt;}
.yc3{bottom:195.552800pt;}
.ye0{bottom:195.552952pt;}
.yc2{bottom:195.553088pt;}
.ydf{bottom:209.536933pt;}
.yde{bottom:209.537070pt;}
.yc1{bottom:223.445600pt;}
.yc0{bottom:223.445885pt;}
.ybf{bottom:237.429867pt;}
.ydd{bottom:237.430003pt;}
.ybe{bottom:237.430288pt;}
.ydc{bottom:251.338533pt;}
.ydb{bottom:251.338818pt;}
.ybd{bottom:265.322800pt;}
.ybc{bottom:265.322936pt;}
.ybb{bottom:279.231467pt;}
.yba{bottom:279.231752pt;}
.yb9{bottom:293.215733pt;}
.yb8{bottom:293.215736pt;}
.yb7{bottom:307.124267pt;}
.yb6{bottom:307.124685pt;}
.yb5{bottom:321.108667pt;}
.yb4{bottom:321.108803pt;}
.yb3{bottom:335.017333pt;}
.yb2{bottom:335.017485pt;}
.yb1{bottom:349.001467pt;}
.yb0{bottom:349.001603pt;}
.y4d{bottom:353.763733pt;}
.y4c{bottom:357.543200pt;}
.yaf{bottom:362.910133pt;}
.yae{bottom:362.910418pt;}
.y4b{bottom:365.177867pt;}
.y4a{bottom:368.957467pt;}
.y49{bottom:376.592000pt;}
.yad{bottom:376.894400pt;}
.yac{bottom:376.894536pt;}
.y48{bottom:380.371600pt;}
.y47{bottom:388.006133pt;}
.yab{bottom:390.803067pt;}
.yaa{bottom:390.803352pt;}
.y46{bottom:391.785733pt;}
.y45{bottom:399.420400pt;}
.y44{bottom:403.199867pt;}
.ya9{bottom:404.787333pt;}
.ya8{bottom:404.787470pt;}
.y43{bottom:410.834533pt;}
.y42{bottom:414.614133pt;}
.ya7{bottom:418.696000pt;}
.ya6{bottom:418.696285pt;}
.y41{bottom:422.248800pt;}
.y40{bottom:426.028267pt;}
.ya5{bottom:432.680267pt;}
.ya4{bottom:432.680403pt;}
.y3f{bottom:433.738533pt;}
.y3e{bottom:437.518000pt;}
.y3d{bottom:445.152667pt;}
.ya3{bottom:446.588933pt;}
.ya2{bottom:446.589218pt;}
.y3c{bottom:448.932133pt;}
.y3b{bottom:456.566800pt;}
.y122{bottom:459.288133pt;}
.y121{bottom:459.288421pt;}
.y3a{bottom:460.346400pt;}
.ya1{bottom:460.573200pt;}
.ya0{bottom:460.573203pt;}
.y39{bottom:467.980933pt;}
.y38{bottom:471.760533pt;}
.y9f{bottom:474.481733pt;}
.y9e{bottom:474.482018pt;}
.y37{bottom:479.395200pt;}
.y36{bottom:483.174667pt;}
.y166{bottom:484.535540pt;}
.y120{bottom:487.180933pt;}
.y11f{bottom:487.181355pt;}
.y9d{bottom:488.466000pt;}
.y9c{bottom:488.466285pt;}
.y35{bottom:490.809333pt;}
.y34{bottom:494.588933pt;}
.y165{bottom:495.118000pt;}
.y164{bottom:495.118145pt;}
.y33{bottom:502.223467pt;}
.y9b{bottom:502.450267pt;}
.y9a{bottom:502.450403pt;}
.yda{bottom:502.450688pt;}
.y163{bottom:505.776267pt;}
.y162{bottom:505.776474pt;}
.y32{bottom:506.003067pt;}
.y31{bottom:513.713200pt;}
.y11e{bottom:515.073867pt;}
.y11d{bottom:515.074152pt;}
.y98{bottom:516.358292pt;}
.y99{bottom:516.358933pt;}
.y161{bottom:516.359223pt;}
.y30{bottom:517.417200pt;}
.y2f{bottom:525.127467pt;}
.y160{bottom:527.017345pt;}
.y2e{bottom:528.906933pt;}
.y11c{bottom:529.058133pt;}
.y11b{bottom:529.058270pt;}
.yd9{bottom:530.343200pt;}
.yd8{bottom:530.343336pt;}
.y2d{bottom:536.541600pt;}
.y15f{bottom:537.675467pt;}
.y15e{bottom:537.675674pt;}
.y2c{bottom:540.321200pt;}
.y11a{bottom:542.966800pt;}
.y119{bottom:542.967085pt;}
.y97{bottom:544.251867pt;}
.y96{bottom:544.252288pt;}
.y2b{bottom:547.955733pt;}
.y15d{bottom:548.258133pt;}
.y15c{bottom:548.258278pt;}
.y2a{bottom:551.735333pt;}
.y117{bottom:556.950425pt;}
.y118{bottom:556.951067pt;}
.y15b{bottom:558.916400pt;}
.y15a{bottom:558.916752pt;}
.y29{bottom:559.370000pt;}
.y28{bottom:563.149467pt;}
.y159{bottom:569.499212pt;}
.y27{bottom:570.784133pt;}
.y95{bottom:572.144800pt;}
.y94{bottom:572.145085pt;}
.y26{bottom:574.563733pt;}
.y158{bottom:580.157333pt;}
.y157{bottom:580.157478pt;}
.y25{bottom:582.198267pt;}
.y116{bottom:584.844000pt;}
.y115{bottom:584.844288pt;}
.y24{bottom:585.977867pt;}
.y93{bottom:586.129067pt;}
.y92{bottom:586.129070pt;}
.y156{bottom:590.815600pt;}
.y155{bottom:590.815807pt;}
.y23{bottom:593.612533pt;}
.y22{bottom:597.392000pt;}
.y91{bottom:600.037600pt;}
.y90{bottom:600.037885pt;}
.y154{bottom:601.398267pt;}
.y153{bottom:601.398619pt;}
.y21{bottom:605.102267pt;}
.y20{bottom:608.881733pt;}
.y152{bottom:612.056740pt;}
.y114{bottom:612.736800pt;}
.y113{bottom:612.737070pt;}
.y8f{bottom:614.021867pt;}
.y8e{bottom:614.022003pt;}
.y1f{bottom:616.516400pt;}
.y1e{bottom:620.296000pt;}
.y151{bottom:622.639200pt;}
.y150{bottom:622.639345pt;}
.y112{bottom:626.645600pt;}
.y111{bottom:626.645885pt;}
.y1d{bottom:627.930533pt;}
.y8d{bottom:627.930818pt;}
.y1c{bottom:631.710133pt;}
.y14f{bottom:633.297467pt;}
.y14e{bottom:633.297612pt;}
.y1b{bottom:639.344800pt;}
.y110{bottom:640.629867pt;}
.y10f{bottom:640.629870pt;}
.y8c{bottom:641.914800pt;}
.y8b{bottom:641.914936pt;}
.y1a{bottom:643.124267pt;}
.y14d{bottom:643.955733pt;}
.y14c{bottom:643.956085pt;}
.y19{bottom:650.758933pt;}
.y18{bottom:654.538400pt;}
.y14b{bottom:654.538545pt;}
.y10e{bottom:654.538685pt;}
.y8a{bottom:655.823467pt;}
.y89{bottom:655.823752pt;}
.y17{bottom:662.173067pt;}
.y14a{bottom:665.196667pt;}
.y149{bottom:665.196874pt;}
.y16{bottom:665.952667pt;}
.y10d{bottom:668.522667pt;}
.y10c{bottom:668.522803pt;}
.y88{bottom:669.807733pt;}
.y87{bottom:669.807870pt;}
.y148{bottom:675.779333pt;}
.y147{bottom:675.779478pt;}
.y12{bottom:682.280064pt;}
.y13{bottom:682.280133pt;}
.y10b{bottom:682.431333pt;}
.y10a{bottom:682.431618pt;}
.y15{bottom:682.884933pt;}
.y86{bottom:683.716400pt;}
.y85{bottom:683.716685pt;}
.y146{bottom:686.437600pt;}
.y145{bottom:686.437940pt;}
.y14{bottom:688.478533pt;}
.y109{bottom:696.415600pt;}
.y108{bottom:696.415736pt;}
.y144{bottom:697.020400pt;}
.y143{bottom:697.020412pt;}
.y84{bottom:697.700667pt;}
.y83{bottom:697.700803pt;}
.yf{bottom:699.514731pt;}
.y10{bottom:699.514800pt;}
.y11{bottom:705.788800pt;}
.y142{bottom:707.678533pt;}
.y141{bottom:707.678678pt;}
.y107{bottom:710.324267pt;}
.y106{bottom:710.324552pt;}
.y82{bottom:711.609333pt;}
.yd7{bottom:711.609618pt;}
.y81{bottom:711.609621pt;}
.yc{bottom:716.748962pt;}
.yd{bottom:716.749467pt;}
.y140{bottom:718.336800pt;}
.y13f{bottom:718.337152pt;}
.ye{bottom:723.023467pt;}
.y105{bottom:724.308533pt;}
.y104{bottom:724.308536pt;}
.yd6{bottom:725.593600pt;}
.yd5{bottom:725.593603pt;}
.y13e{bottom:728.919612pt;}
.y9{bottom:734.059531pt;}
.ya{bottom:734.059733pt;}
.y103{bottom:738.217067pt;}
.y102{bottom:738.217485pt;}
.y80{bottom:739.502133pt;}
.yd4{bottom:739.504512pt;}
.y13d{bottom:739.577733pt;}
.y13c{bottom:739.578074pt;}
.yb{bottom:740.333600pt;}
.y13b{bottom:750.160533pt;}
.y13a{bottom:750.160545pt;}
.y6{bottom:751.293762pt;}
.y7{bottom:751.294267pt;}
.y101{bottom:752.201467pt;}
.y100{bottom:752.201470pt;}
.y8{bottom:757.568400pt;}
.y139{bottom:760.818667pt;}
.y138{bottom:760.818812pt;}
.yff{bottom:766.110000pt;}
.yfe{bottom:766.110285pt;}
.y4{bottom:768.604533pt;}
.y137{bottom:771.476933pt;}
.y136{bottom:771.477140pt;}
.y5{bottom:774.878533pt;}
.yfd{bottom:780.094267pt;}
.yfc{bottom:780.094403pt;}
.y7f{bottom:781.530520pt;}
.y135{bottom:782.059600pt;}
.y134{bottom:782.060085pt;}
.y133{bottom:792.718207pt;}
.yfb{bottom:794.002933pt;}
.yfa{bottom:794.003218pt;}
.y7d{bottom:794.305320pt;}
.y7e{bottom:794.305333pt;}
.y3{bottom:799.143200pt;}
.y2{bottom:799.143748pt;}
.y132{bottom:803.300667pt;}
.y131{bottom:803.300812pt;}
.y7b{bottom:807.080064pt;}
.y7c{bottom:807.080133pt;}
.yf9{bottom:807.987200pt;}
.yf8{bottom:807.987336pt;}
.y130{bottom:813.958933pt;}
.y12f{bottom:813.959007pt;}
.y68{bottom:817.966244pt;}
.y7a{bottom:819.779320pt;}
.yf7{bottom:821.895867pt;}
.yf6{bottom:821.896152pt;}
.y1{bottom:822.122667pt;}
.y12e{bottom:824.541467pt;}
.y12d{bottom:824.541612pt;}
.y67{bottom:829.380134pt;}
.y78{bottom:832.554120pt;}
.y79{bottom:832.554133pt;}
.y12c{bottom:835.199733pt;}
.y12b{bottom:835.200012pt;}
.yf5{bottom:835.880133pt;}
.yf4{bottom:835.880270pt;}
.y66{bottom:840.794025pt;}
.y76{bottom:845.328920pt;}
.y77{bottom:845.328933pt;}
.y12a{bottom:845.858133pt;}
.y129{bottom:845.858340pt;}
.yf3{bottom:849.788800pt;}
.yf2{bottom:849.789085pt;}
.y65{bottom:852.207915pt;}
.y128{bottom:856.440800pt;}
.y127{bottom:856.440945pt;}
.y74{bottom:858.103677pt;}
.y75{bottom:858.103733pt;}
.y64{bottom:863.697467pt;}
.y63{bottom:863.697980pt;}
.yf1{bottom:863.773067pt;}
.yf0{bottom:863.773070pt;}
.y126{bottom:867.099067pt;}
.y72{bottom:870.802920pt;}
.y73{bottom:870.802933pt;}
.y62{bottom:875.111870pt;}
.yef{bottom:877.681600pt;}
.yee{bottom:877.682018pt;}
.y70{bottom:883.577720pt;}
.y71{bottom:883.577733pt;}
.yed{bottom:891.666000pt;}
.yec{bottom:891.666003pt;}
.y125{bottom:891.666288pt;}
.y59{bottom:892.572933pt;}
.y6e{bottom:896.352477pt;}
.y6f{bottom:896.352533pt;}
.y61{bottom:901.870667pt;}
.y60{bottom:901.870910pt;}
.yeb{bottom:905.574533pt;}
.yea{bottom:905.574818pt;}
.y6c{bottom:909.051720pt;}
.y6d{bottom:909.051733pt;}
.y5e{bottom:913.284326pt;}
.y5f{bottom:913.284800pt;}
.ye9{bottom:919.558800pt;}
.ye8{bottom:919.558936pt;}
.y6a{bottom:921.826520pt;}
.y6b{bottom:921.826533pt;}
.y5d{bottom:924.699067pt;}
.y5c{bottom:924.699177pt;}
.y58{bottom:928.176133pt;}
.ye7{bottom:933.467467pt;}
.ye6{bottom:933.467885pt;}
.y69{bottom:934.601333pt;}
.y5b{bottom:936.113067pt;}
.ye5{bottom:947.451867pt;}
.ye4{bottom:947.452155pt;}
.y124{bottom:947.454382pt;}
.y5a{bottom:960.528933pt;}
.y57{bottom:966.878533pt;}
.ye3{bottom:975.344667pt;}
.y123{bottom:975.346894pt;}
.y56{bottom:1002.406133pt;}
.ye1{bottom:1002.481600pt;}
.y167{bottom:1002.484374pt;}
.h3{height:0.000000pt;}
.h6{height:18.496000pt;}
.ha{height:27.314022pt;}
.h7{height:27.748352pt;}
.h5{height:30.636339pt;}
.hb{height:31.217331pt;}
.h8{height:31.285692pt;}
.hc{height:33.538602pt;}
.hd{height:34.686310pt;}
.h4{height:45.959296pt;}
.h2{height:58.532224pt;}
.h9{height:60.699955pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:50.116533pt;}
.xb4{left:54.425200pt;}
.x81{left:55.936933pt;}
.x12d{left:56.995200pt;}
.xed{left:59.414133pt;}
.x1a7{left:60.505600pt;}
.x131{left:61.464533pt;}
.x147{left:62.972133pt;}
.x1a8{left:64.100800pt;}
.x150{left:65.246533pt;}
.xc0{left:66.486000pt;}
.x1a5{left:67.501733pt;}
.xc1{left:69.316533pt;}
.xf8{left:70.490000pt;}
.x10{left:71.992800pt;}
.xf9{left:73.247200pt;}
.x152{left:75.297200pt;}
.x11{left:78.236133pt;}
.x127{left:80.143200pt;}
.x1fa{left:81.158000pt;}
.xc7{left:82.082533pt;}
.x82{left:83.106133pt;}
.x1e{left:84.397067pt;}
.x83{left:85.946400pt;}
.x9f{left:87.479200pt;}
.x1f{left:89.045600pt;}
.x6b{left:90.195867pt;}
.xee{left:91.540133pt;}
.x105{left:93.262667pt;}
.x6c{left:94.866133pt;}
.xbb{left:96.580400pt;}
.xe3{left:97.587333pt;}
.x2e{left:99.245600pt;}
.xef{left:100.347067pt;}
.xa0{left:101.896000pt;}
.x153{left:102.878667pt;}
.x2f{left:103.785733pt;}
.x46{left:104.780933pt;}
.xc2{left:106.195867pt;}
.xe4{left:107.489733pt;}
.x47{left:109.455067pt;}
.x84{left:111.313333pt;}
.xc8{left:112.482267pt;}
.x59{left:113.918533pt;}
.xc9{left:115.275467pt;}
.x11d{left:116.369200pt;}
.x1a9{left:117.316533pt;}
.x5a{left:118.828267pt;}
.xd9{left:120.467067pt;}
.x98{left:122.041600pt;}
.x85{left:122.948667pt;}
.x1a3{left:123.968400pt;}
.x99{left:124.875600pt;}
.x86{left:125.782667pt;}
.x5b{left:126.838267pt;}
.x12e{left:128.201467pt;}
.xca{left:129.446667pt;}
.x5c{left:131.527467pt;}
.x12b{left:132.533733pt;}
.x112{left:133.651467pt;}
.xab{left:135.542267pt;}
.xe5{left:136.979600pt;}
.xac{left:138.103867pt;}
.xe6{left:139.842533pt;}
.x151{left:140.825200pt;}
.xc3{left:142.112000pt;}
.x79{left:143.319600pt;}
.xc4{left:144.907067pt;}
.x106{left:146.400933pt;}
.x6d{left:147.552667pt;}
.x107{left:149.291333pt;}
.xa1{left:150.878667pt;}
.xad{left:152.275067pt;}
.x113{left:153.373200pt;}
.xae{left:155.111733pt;}
.xf0{left:156.609733pt;}
.x7a{left:157.833067pt;}
.xa2{left:159.685733pt;}
.x7b{left:161.259600pt;}
.x6e{left:162.822000pt;}
.x9a{left:164.182667pt;}
.x7c{left:165.165333pt;}
.x6f{left:166.248533pt;}
.x2{left:167.760533pt;}
.x1b2{left:168.839067pt;}
.x12f{left:169.851867pt;}
.x30{left:170.834533pt;}
.x48{left:172.573200pt;}
.x3{left:174.009333pt;}
.xcb{left:175.143200pt;}
.x49{left:176.277067pt;}
.x31{left:177.259733pt;}
.x87{left:178.242133pt;}
.x4a{left:179.703733pt;}
.x32{left:180.686400pt;}
.xfa{left:182.247600pt;}
.x4b{left:183.533867pt;}
.x33{left:184.516533pt;}
.x1ae{left:185.423600pt;}
.xa3{left:186.705733pt;}
.x5d{left:187.691333pt;}
.xa4{left:189.581067pt;}
.x1fc{left:190.639333pt;}
.x100{left:191.906000pt;}
.x12{left:193.234533pt;}
.x101{left:194.570000pt;}
.xc5{left:195.779467pt;}
.x20{left:196.762133pt;}
.x108{left:197.936133pt;}
.x13{left:199.407867pt;}
.xcc{left:200.959600pt;}
.x12c{left:202.204667pt;}
.xcd{left:203.792133pt;}
.xda{left:205.474667pt;}
.xaf{left:207.100400pt;}
.x9b{left:208.907600pt;}
.xb0{left:209.914933pt;}
.x9c{left:211.729067pt;}
.x135{left:212.646000pt;}
.x1b4{left:213.618800pt;}
.x70{left:214.926000pt;}
.x128{left:216.540933pt;}
.x1ad{left:217.683333pt;}
.x130{left:218.635733pt;}
.x71{left:219.741600pt;}
.xe7{left:221.503200pt;}
.x88{left:223.153200pt;}
.x4c{left:224.711467pt;}
.x89{left:225.864533pt;}
.x72{left:227.751733pt;}
.xd6{left:229.190533pt;}
.x21{left:230.248800pt;}
.x1ab{left:231.458267pt;}
.x73{left:232.440933pt;}
.x22{left:233.675333pt;}
.x1af{left:234.909333pt;}
.xce{left:236.019200pt;}
.x23{left:237.505467pt;}
.x1b0{left:238.563733pt;}
.xb5{left:239.500267pt;}
.xa5{left:240.493600pt;}
.x34{left:242.116400pt;}
.xa6{left:243.325867pt;}
.xf1{left:244.762133pt;}
.xfc{left:246.500667pt;}
.x5e{left:247.524800pt;}
.x1f6{left:248.479467pt;}
.x9d{left:249.561467pt;}
.x1a4{left:251.111733pt;}
.x5f{left:252.170000pt;}
.x1b1{left:253.190933pt;}
.x109{left:254.209333pt;}
.x115{left:255.943333pt;}
.x102{left:257.047733pt;}
.x116{left:258.746400pt;}
.x4{left:260.119867pt;}
.x1aa{left:261.235467pt;}
.xb6{left:262.508400pt;}
.xc6{left:263.432933pt;}
.xb7{left:265.322800pt;}
.x5{left:266.381067pt;}
.x129{left:267.439333pt;}
.x24{left:268.666933pt;}
.xe8{left:269.932533pt;}
.xf2{left:271.072667pt;}
.xb1{left:271.992400pt;}
.x25{left:273.562133pt;}
.xb2{left:274.771600pt;}
.x10a{left:275.905467pt;}
.x4d{left:277.190533pt;}
.x9e{left:278.137733pt;}
.xcf{left:279.231467pt;}
.x8a{left:280.138533pt;}
.x10b{left:281.643333pt;}
.xfd{left:283.313333pt;}
.x8b{left:284.592933pt;}
.x14{left:285.593867pt;}
.x8c{left:287.395200pt;}
.xbc{left:288.715867pt;}
.xd7{left:289.982400pt;}
.x15{left:291.779467pt;}
.xd8{left:292.762133pt;}
.xa7{left:293.971600pt;}
.x117{left:295.878667pt;}
.x4e{left:297.448667pt;}
.x118{left:298.431333pt;}
.x35{left:299.640933pt;}
.x4f{left:300.875333pt;}
.x36{left:303.067467pt;}
.x50{left:304.781067pt;}
.xd0{left:305.990533pt;}
.x37{left:306.897600pt;}
.x114{left:308.258133pt;}
.x1f7{left:309.770000pt;}
.x60{left:310.752667pt;}
.x10c{left:311.641733pt;}
.x26{left:312.806800pt;}
.x61{left:314.179200pt;}
.xb3{left:315.817200pt;}
.x27{left:317.480267pt;}
.x1fb{left:318.667867pt;}
.xf3{left:319.596800pt;}
.x165{left:320.820800pt;}
.x8d{left:321.900667pt;}
.x1f9{left:322.873600pt;}
.x1ac{left:323.798933pt;}
.x8e{left:324.736933pt;}
.x14e{left:326.853467pt;}
.x7d{left:327.836133pt;}
.x136{left:328.818800pt;}
.x12a{left:329.725867pt;}
.xd1{left:330.813333pt;}
.x1b3{left:332.544533pt;}
.xd2{left:333.581067pt;}
.x7e{left:335.697600pt;}
.xa8{left:337.070133pt;}
.x6{left:339.076000pt;}
.x1a1{left:340.302667pt;}
.x103{left:341.366800pt;}
.x7f{left:342.954267pt;}
.x51{left:344.158267pt;}
.x7{left:345.297467pt;}
.xbd{left:346.658133pt;}
.xd3{left:347.752133pt;}
.x38{left:349.228267pt;}
.x74{left:351.159467pt;}
.x119{left:352.920133pt;}
.xf4{left:354.217200pt;}
.x75{left:355.653467pt;}
.x1a6{left:356.787333pt;}
.x62{left:358.122933pt;}
.x52{left:359.472667pt;}
.xb8{left:361.165333pt;}
.x8{left:362.194400pt;}
.x132{left:363.240667pt;}
.x16{left:364.550000pt;}
.x8f{left:366.044800pt;}
.x14d{left:367.294400pt;}
.x9{left:368.428267pt;}
.x166{left:369.342000pt;}
.x17{left:370.771600pt;}
.x1f8{left:371.678667pt;}
.xa9{left:373.051333pt;}
.x167{left:374.022000pt;}
.xaa{left:375.760533pt;}
.x186{left:376.667600pt;}
.xa{left:378.088933pt;}
.x18d{left:379.010933pt;}
.x80{left:380.236667pt;}
.x104{left:382.068667pt;}
.xf5{left:383.168400pt;}
.xb{left:384.302267pt;}
.xfb{left:385.369467pt;}
.xd4{left:386.573467pt;}
.x18{left:387.668400pt;}
.xd5{left:389.442400pt;}
.xe9{left:390.500667pt;}
.xfe{left:391.852267pt;}
.x19{left:393.902267pt;}
.x28{left:397.102000pt;}
.xdb{left:398.083333pt;}
.x90{left:399.986800pt;}
.x29{left:401.007733pt;}
.x91{left:402.822000pt;}
.x10d{left:404.031333pt;}
.x76{left:406.299067pt;}
.x148{left:407.659200pt;}
.xb9{left:408.938533pt;}
.x149{left:410.532133pt;}
.xba{left:411.666000pt;}
.x77{left:412.875467pt;}
.x10e{left:413.933733pt;}
.x39{left:415.672267pt;}
.x154{left:417.259733pt;}
.x1b7{left:418.154800pt;}
.x3a{left:419.376267pt;}
.xf6{left:420.850933pt;}
.x1a{left:421.970400pt;}
.x11e{left:423.382533pt;}
.xea{left:424.547067pt;}
.x53{left:425.524133pt;}
.x3b{left:426.632933pt;}
.x1b{left:428.144800pt;}
.x54{left:429.354267pt;}
.x19a{left:431.185067pt;}
.x63{left:432.604667pt;}
.x1cc{left:433.517467pt;}
.x11a{left:434.872267pt;}
.x16e{left:436.232933pt;}
.x64{left:437.140000pt;}
.x1c5{left:438.198267pt;}
.xdc{left:439.634533pt;}
.x65{left:440.566667pt;}
.x1ee{left:441.675467pt;}
.x10f{left:443.298400pt;}
.x66{left:444.396667pt;}
.x110{left:446.135333pt;}
.x17c{left:447.830267pt;}
.x19b{left:448.932133pt;}
.x18e{left:450.217200pt;}
.x92{left:451.440267pt;}
.xdd{left:452.913067pt;}
.x93{left:454.299067pt;}
.xde{left:455.735333pt;}
.xbe{left:456.645600pt;}
.xff{left:457.700667pt;}
.xbf{left:459.363600pt;}
.x1ec{left:460.421867pt;}
.xeb{left:461.435333pt;}
.x78{left:463.198800pt;}
.xec{left:464.277067pt;}
.x1f0{left:465.184133pt;}
.x14a{left:466.276133pt;}
.x180{left:467.667200pt;}
.x3c{left:468.777067pt;}
.x2a{left:470.169333pt;}
.x1f5{left:471.080267pt;}
.x1bf{left:472.542000pt;}
.x3d{left:473.499067pt;}
.x2b{left:474.784133pt;}
.x11f{left:475.842400pt;}
.x11b{left:477.429733pt;}
.x111{left:478.336933pt;}
.x55{left:479.435200pt;}
.x1d5{left:480.393733pt;}
.x94{left:481.360533pt;}
.x155{left:482.608533pt;}
.x56{left:484.081733pt;}
.x133{left:485.524800pt;}
.x156{left:487.256533pt;}
.x134{left:488.541600pt;}
.x120{left:491.254667pt;}
.x195{left:492.149067pt;}
.x121{left:494.135333pt;}
.x14b{left:495.865067pt;}
.x157{left:496.844800pt;}
.x67{left:497.857067pt;}
.x14c{left:498.822000pt;}
.xdf{left:500.778533pt;}
.x68{left:502.525867pt;}
.xe0{left:503.584133pt;}
.x168{left:504.603467pt;}
.x1ca{left:505.565333pt;}
.x158{left:506.695333pt;}
.x187{left:507.817200pt;}
.x169{left:509.480133pt;}
.x1cb{left:510.689600pt;}
.x1c{left:511.585600pt;}
.x205{left:512.579333pt;}
.xc{left:513.807200pt;}
.x14f{left:515.451867pt;}
.x201{left:516.812400pt;}
.x1d{left:517.795067pt;}
.x176{left:518.826533pt;}
.xd{left:520.062800pt;}
.x17d{left:521.643200pt;}
.x95{left:523.388800pt;}
.x3e{left:524.900667pt;}
.x16f{left:525.958933pt;}
.x18f{left:526.876267pt;}
.x3f{left:528.680133pt;}
.x2c{left:530.872267pt;}
.x40{left:532.106667pt;}
.x11c{left:533.744800pt;}
.x2d{left:534.954133pt;}
.x41{left:536.012400pt;}
.x1dc{left:536.995067pt;}
.x1b5{left:538.249200pt;}
.xe1{left:539.338400pt;}
.x69{left:541.076933pt;}
.x122{left:542.437600pt;}
.xf7{left:543.603867pt;}
.x190{left:544.705333pt;}
.x6a{left:545.612533pt;}
.x137{left:546.631867pt;}
.x1c0{left:547.622533pt;}
.x96{left:549.129867pt;}
.x188{left:550.864800pt;}
.x97{left:551.962000pt;}
.x19c{left:552.869200pt;}
.x16a{left:553.941467pt;}
.x1ed{left:555.088400pt;}
.x1e5{left:556.286533pt;}
.x42{left:557.333467pt;}
.x16b{left:558.765200pt;}
.x1e7{left:559.662533pt;}
.x196{left:560.806133pt;}
.x43{left:561.940000pt;}
.x1b8{left:563.038933pt;}
.x1dd{left:564.132133pt;}
.x138{left:565.145467pt;}
.x139{left:566.626667pt;}
.x1d6{left:567.844533pt;}
.x177{left:569.213333pt;}
.x1d7{left:570.632933pt;}
.x1e9{left:571.918000pt;}
.x13a{left:573.222400pt;}
.x13b{left:574.790400pt;}
.x207{left:576.171467pt;}
.xe{left:577.089467pt;}
.x159{left:578.841067pt;}
.xe2{left:579.990133pt;}
.x1cf{left:580.913200pt;}
.x123{left:582.162667pt;}
.xf{left:583.332133pt;}
.x124{left:584.995067pt;}
.x13c{left:586.280133pt;}
.x189{left:588.018667pt;}
.x191{left:589.772000pt;}
.x1ef{left:591.344667pt;}
.x1a2{left:593.083333pt;}
.x170{left:594.512133pt;}
.x1d8{left:595.577733pt;}
.x171{left:597.240800pt;}
.x1ba{left:598.147867pt;}
.x178{left:599.584000pt;}
.x1e0{left:600.944800pt;}
.x1b9{left:602.867600pt;}
.x206{left:604.044000pt;}
.x1cd{left:605.056933pt;}
.x13d{left:606.589200pt;}
.x13e{left:608.050267pt;}
.x172{left:609.637600pt;}
.x1c6{left:611.145067pt;}
.x1f3{left:612.276267pt;}
.x1c1{left:613.266000pt;}
.x1d9{left:614.672000pt;}
.x125{left:615.569200pt;}
.x1c7{left:617.045467pt;}
.x126{left:618.406133pt;}
.x57{left:619.388800pt;}
.x1db{left:620.799067pt;}
.x179{left:621.833867pt;}
.x15a{left:623.017200pt;}
.x17e{left:624.694800pt;}
.x18a{left:626.116400pt;}
.x15b{left:627.105067pt;}
.x19d{left:628.157333pt;}
.x181{left:629.699067pt;}
.x208{left:630.727333pt;}
.x15c{left:631.785733pt;}
.x44{left:633.146267pt;}
.x1ea{left:634.582133pt;}
.x58{left:635.867600pt;}
.x1d4{left:637.379067pt;}
.x1bd{left:638.545067pt;}
.x45{left:639.873867pt;}
.x18b{left:641.461200pt;}
.x1bb{left:643.350933pt;}
.x1ce{left:644.754267pt;}
.x16c{left:645.923333pt;}
.x1c2{left:646.953200pt;}
.x1d1{left:648.566800pt;}
.x1e6{left:649.549467pt;}
.x16d{left:650.758933pt;}
.x1f4{left:652.119467pt;}
.x15d{left:653.667467pt;}
.x197{left:655.302800pt;}
.x173{left:656.201467pt;}
.x1da{left:657.108533pt;}
.x15e{left:658.317867pt;}
.x1f1{left:659.376133pt;}
.x13f{left:660.556400pt;}
.x140{left:662.021867pt;}
.x17f{left:663.306933pt;}
.x19e{left:664.440800pt;}
.x18c{left:665.789867pt;}
.x15f{left:667.329200pt;}
.x174{left:669.231067pt;}
.x1b6{left:670.412400pt;}
.x160{left:671.999867pt;}
.x192{left:673.517867pt;}
.x203{left:674.418667pt;}
.x182{left:675.590533pt;}
.x19f{left:677.470400pt;}
.x183{left:678.727333pt;}
.x1a0{left:680.843867pt;}
.x1d3{left:681.853733pt;}
.x1e1{left:682.803333pt;}
.x1de{left:684.018667pt;}
.x141{left:686.056267pt;}
.x142{left:687.647067pt;}
.x17a{left:689.346800pt;}
.x1eb{left:690.443867pt;}
.x161{left:691.653467pt;}
.x193{left:692.864933pt;}
.x17b{left:693.769867pt;}
.x1fd{left:694.903867pt;}
.x1bc{left:696.415467pt;}
.x194{left:697.322667pt;}
.x1c8{left:698.499200pt;}
.x1be{left:699.488000pt;}
.x143{left:700.953600pt;}
.x144{left:702.462800pt;}
.x1c9{left:704.352667pt;}
.x1c3{left:705.479200pt;}
.x1f2{left:706.771467pt;}
.x198{left:707.780000pt;}
.x1d2{left:708.888000pt;}
.x162{left:710.113733pt;}
.x1e4{left:711.533733pt;}
.x145{left:713.108133pt;}
.x146{left:714.708533pt;}
.x1e8{left:715.615600pt;}
.x1c4{left:716.755067pt;}
.x199{left:719.124667pt;}
.x1ff{left:720.795067pt;}
.x184{left:721.955733pt;}
.x163{left:723.735733pt;}
.x185{left:724.988800pt;}
.x175{left:726.425067pt;}
.x1d0{left:727.634400pt;}
.x164{left:728.541467pt;}
.x1fe{left:729.838400pt;}
.x1e2{left:730.853467pt;}
.x1df{left:732.850133pt;}
.x200{left:734.286400pt;}
.x1e3{left:735.193467pt;}
.x204{left:737.234400pt;}
.x202{left:738.973067pt;}
}




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