
    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_0ffd77c82fafa205db0f4747.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_29dbb54b04c6a87cf129a255.woff')format("woff");}.ff2{font-family:ff2;line-height:1.100586;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_cceba2af1ba0d1d478ff3508.woff')format("woff");}.ff3{font-family:ff3;line-height:1.102051;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_08df154c93eb73eb4394f298.woff')format("woff");}.ff4{font-family:ff4;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;}
.m1{transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m7{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-2.914560px;}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-1.566000px;}
.lsd{letter-spacing:-1.211040px;}
.ls27{letter-spacing:-0.927360px;}
.ls28{letter-spacing:-0.794880px;}
.ls18{letter-spacing:-0.596160px;}
.ls17{letter-spacing:-0.450000px;}
.ls10{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.397440px;}
.lsc{letter-spacing:-0.334080px;}
.ls2b{letter-spacing:-0.331200px;}
.lsf{letter-spacing:-0.324000px;}
.ls12{letter-spacing:-0.264960px;}
.lsb{letter-spacing:-0.250560px;}
.lse{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.198720px;}
.ls29{letter-spacing:-0.132480px;}
.ls13{letter-spacing:-0.066240px;}
.lsa{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.066240px;}
.ls2a{letter-spacing:0.108000px;}
.ls26{letter-spacing:0.138240px;}
.ls1b{letter-spacing:0.198720px;}
.ls19{letter-spacing:0.264960px;}
.ls15{letter-spacing:0.331200px;}
.ls14{letter-spacing:0.927360px;}
.ls1d{letter-spacing:30.754200px;}
.ls6{letter-spacing:174.343680px;}
.ls1f{letter-spacing:192.890880px;}
.ls0{letter-spacing:232.740000px;}
.ls1{letter-spacing:260.985600px;}
.ls30{letter-spacing:267.808320px;}
.ls2e{letter-spacing:325.304640px;}
.ls2{letter-spacing:351.336960px;}
.ls22{letter-spacing:367.168320px;}
.ls1c{letter-spacing:369.365640px;}
.ls24{letter-spacing:388.762560px;}
.ls3{letter-spacing:390.286080px;}
.ls5{letter-spacing:465.004800px;}
.ls23{letter-spacing:497.727360px;}
.ls20{letter-spacing:581.256000px;}
.ls2c{letter-spacing:708.503040px;}
.ls7{letter-spacing:709.894080px;}
.ls8{letter-spacing:757.520640px;}
.ls31{letter-spacing:847.408320px;}
.ls2d{letter-spacing:875.295360px;}
.ls4{letter-spacing:1050.566400px;}
.ls25{letter-spacing:1291.083840px;}
.ls1e{letter-spacing:1292.541120px;}
.ls21{letter-spacing:1564.323840px;}
.ls2f{letter-spacing:1918.177920px;}
.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:-16.626240px;}
.ws1{word-spacing:-16.493760px;}
.ws26{word-spacing:-16.427520px;}
.ws27{word-spacing:-16.361280px;}
.ws38{word-spacing:-16.295040px;}
.ws28{word-spacing:-16.228800px;}
.ws2b{word-spacing:-4.106880px;}
.ws1e{word-spacing:-3.643200px;}
.ws25{word-spacing:-3.510720px;}
.ws6{word-spacing:-3.378240px;}
.ws2f{word-spacing:-2.782080px;}
.ws40{word-spacing:-2.583360px;}
.ws29{word-spacing:-2.252160px;}
.ws10{word-spacing:-2.119680px;}
.ws42{word-spacing:-1.788480px;}
.ws1c{word-spacing:-1.523520px;}
.ws34{word-spacing:-1.391040px;}
.wsb{word-spacing:-1.258560px;}
.ws7{word-spacing:-1.192320px;}
.ws41{word-spacing:-1.126080px;}
.ws16{word-spacing:-0.794880px;}
.ws39{word-spacing:-0.662400px;}
.ws3f{word-spacing:-0.596160px;}
.ws2e{word-spacing:-0.529920px;}
.ws35{word-spacing:-0.463680px;}
.ws2d{word-spacing:-0.397440px;}
.ws1f{word-spacing:-0.360000px;}
.ws20{word-spacing:-0.264960px;}
.ws11{word-spacing:-0.066240px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:0.066240px;}
.ws1a{word-spacing:0.198720px;}
.ws17{word-spacing:0.264960px;}
.ws1b{word-spacing:0.662400px;}
.wsd{word-spacing:0.728640px;}
.ws5{word-spacing:0.794880px;}
.wse{word-spacing:0.927360px;}
.ws4{word-spacing:1.188000px;}
.ws3{word-spacing:1.296000px;}
.ws21{word-spacing:1.391040px;}
.ws30{word-spacing:1.523520px;}
.ws2a{word-spacing:1.589760px;}
.ws31{word-spacing:1.656000px;}
.wsc{word-spacing:2.119680px;}
.ws9{word-spacing:2.252160px;}
.ws8{word-spacing:2.384640px;}
.wsf{word-spacing:2.715840px;}
.ws2c{word-spacing:2.980800px;}
.ws19{word-spacing:3.312000px;}
.ws23{word-spacing:3.444480px;}
.ws24{word-spacing:3.510720px;}
.ws33{word-spacing:3.643200px;}
.ws13{word-spacing:4.106880px;}
.ws1d{word-spacing:4.239360px;}
.ws18{word-spacing:4.305600px;}
.ws15{word-spacing:4.371840px;}
.ws14{word-spacing:4.504320px;}
.ws22{word-spacing:4.570560px;}
.ws36{word-spacing:4.968000px;}
.ws43{word-spacing:5.100480px;}
.ws3c{word-spacing:5.232960px;}
.ws3b{word-spacing:5.829120px;}
.ws3d{word-spacing:6.425280px;}
.ws12{word-spacing:6.690240px;}
.ws3e{word-spacing:6.756480px;}
.ws32{word-spacing:8.015040px;}
.ws37{word-spacing:8.213760px;}
.ws3a{word-spacing:8.544960px;}
._2{margin-left:-1.127520px;}
._6{width:1.344600px;}
._5{width:2.614176px;}
._52{width:5.418960px;}
._35{width:26.608608px;}
._14{width:33.120000px;}
._1a{width:39.134592px;}
._38{width:41.704704px;}
._32{width:43.161984px;}
._59{width:51.117408px;}
._20{width:59.662368px;}
._46{width:61.172640px;}
._43{width:66.187008px;}
._1c{width:92.464416px;}
._2e{width:97.869600px;}
._36{width:106.513920px;}
._30{width:110.176992px;}
._33{width:118.768320px;}
._28{width:128.883168px;}
._13{width:131.711616px;}
._f{width:149.742144px;}
._34{width:172.031904px;}
._15{width:183.617280px;}
._37{width:187.936128px;}
._3a{width:192.175488px;}
._4c{width:193.685760px;}
._11{width:204.496128px;}
._a{width:221.771520px;}
._3e{width:228.243168px;}
._39{width:243.312768px;}
._3b{width:247.631616px;}
._5b{width:257.733216px;}
._47{width:267.801696px;}
._5a{width:277.161408px;}
._57{width:278.605440px;}
._25{width:286.560864px;}
._1f{width:293.032512px;}
._d{width:303.120864px;}
._4f{width:308.194848px;}
._4b{width:310.281408px;}
._42{width:321.118272px;}
._4d{width:335.439360px;}
._5d{width:352.794240px;}
._44{width:370.016640px;}
._1e{width:396.711360px;}
._54{width:412.608960px;}
._22{width:422.677440px;}
._49{width:437.713920px;}
._7{width:445.000320px;}
._45{width:472.953600px;}
._1d{width:477.325440px;}
._51{width:501.834240px;}
._19{width:521.110080px;}
._18{width:538.663680px;}
._17{width:545.751360px;}
._27{width:577.414080px;}
._1b{width:608.878080px;}
._4a{width:621.993600px;}
._50{width:650.894112px;}
._8{width:670.415040px;}
._29{width:701.945280px;}
._e{width:711.278496px;}
._26{width:712.808640px;}
._3c{width:717.180480px;}
._24{width:720.028800px;}
._53{width:731.706912px;}
._2c{width:745.862400px;}
._9{width:761.097600px;}
._21{width:773.285760px;}
._41{width:787.726080px;}
._23{width:833.100480px;}
._40{width:859.662720px;}
._48{width:904.374720px;}
._3{width:913.750560px;}
._2a{width:947.430720px;}
._4{width:995.516640px;}
._2b{width:1007.179200px;}
._16{width:1025.196480px;}
._5c{width:1095.079680px;}
._31{width:1111.619808px;}
._0{width:1141.551360px;}
._c{width:1189.405440px;}
._1{width:1193.876640px;}
._2d{width:1220.339520px;}
._b{width:1228.752000px;}
._10{width:1233.984960px;}
._58{width:1249.816320px;}
._2f{width:1342.287360px;}
._56{width:1442.972160px;}
._3f{width:1445.641632px;}
._55{width:1454.497920px;}
._4e{width:1468.077120px;}
._12{width:1808.285760px;}
._3d{width:1831.867200px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(23,54,93);}
.fc0{color:transparent;}
.fs4{font-size:23.760000px;}
.fs0{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y93{bottom:65.694960px;}
.y5{bottom:65.700000px;}
.y75{bottom:65.701440px;}
.y38{bottom:65.702880px;}
.y2a{bottom:99.203760px;}
.y5d{bottom:100.626480px;}
.y37{bottom:119.721600px;}
.y5c{bottom:121.144320px;}
.y29{bottom:140.239440px;}
.y5b{bottom:141.662160px;}
.y28{bottom:160.575120px;}
.y5a{bottom:162.180000px;}
.y59{bottom:162.182160px;}
.y27{bottom:181.092960px;}
.y58{bottom:182.700000px;}
.y57{bottom:182.716560px;}
.y26{bottom:201.610800px;}
.y56{bottom:217.095120px;}
.y25{bottom:222.128640px;}
.y55{bottom:237.612960px;}
.y24{bottom:242.464320px;}
.y54{bottom:258.130800px;}
.y23{bottom:262.982160px;}
.y53{bottom:278.830800px;}
.y22{bottom:283.500000px;}
.y21{bottom:283.502160px;}
.y52{bottom:299.348640px;}
.y20{bottom:304.020000px;}
.y1f{bottom:304.032960px;}
.y51{bottom:319.866480px;}
.y36{bottom:324.368640px;}
.y50{bottom:340.384320px;}
.y1e{bottom:344.886480px;}
.y4f{bottom:360.902160px;}
.y35{bottom:365.404320px;}
.y4e{bottom:381.420000px;}
.y1d{bottom:385.922160px;}
.y4d{bottom:402.120000px;}
.y4c{bottom:402.122100px;}
.y74{bottom:402.122160px;}
.y1c{bottom:406.440000px;}
.y1b{bottom:406.450080px;}
.y73{bottom:422.640000px;}
.y4b{bottom:422.648430px;}
.y72{bottom:422.650080px;}
.y1a{bottom:440.646480px;}
.y4a{bottom:443.166270px;}
.y71{bottom:443.167920px;}
.y19{bottom:461.164320px;}
.y49{bottom:463.684110px;}
.y70{bottom:463.685760px;}
.y18{bottom:481.500000px;}
.y48{bottom:484.201950px;}
.y6f{bottom:484.203600px;}
.y86{bottom:494.300880px;}
.y17{bottom:502.024320px;}
.y85{bottom:512.848080px;}
.y47{bottom:518.580510px;}
.y6e{bottom:518.582160px;}
.y16{bottom:522.542160px;}
.y46{bottom:539.098350px;}
.y6d{bottom:539.100000px;}
.y15{bottom:543.060000px;}
.y14{bottom:543.062160px;}
.y84{bottom:546.680160px;}
.y45{bottom:559.616190px;}
.y6c{bottom:559.622160px;}
.y13{bottom:563.580000px;}
.y34{bottom:563.600880px;}
.y12{bottom:563.605200px;}
.y44{bottom:580.316190px;}
.y6b{bottom:580.322160px;}
.y83{bottom:580.512240px;}
.y33{bottom:597.797280px;}
.y11{bottom:597.801600px;}
.y43{bottom:600.850590px;}
.y6a{bottom:600.850650px;}
.y82{bottom:614.526480px;}
.y32{bottom:618.132960px;}
.y10{bottom:618.137280px;}
.y42{bottom:621.368430px;}
.y69{bottom:621.368490px;}
.y81{bottom:635.044320px;}
.y31{bottom:638.650800px;}
.yf{bottom:638.655120px;}
.y41{bottom:641.886270px;}
.y68{bottom:641.886330px;}
.y80{bottom:655.562160px;}
.y30{bottom:659.168640px;}
.ye{bottom:659.172960px;}
.y40{bottom:662.404110px;}
.y67{bottom:662.404170px;}
.y7f{bottom:676.080000px;}
.y92{bottom:676.084320px;}
.y7e{bottom:676.085040px;}
.y2f{bottom:679.686480px;}
.yd{bottom:679.690800px;}
.y3f{bottom:682.921950px;}
.y66{bottom:682.922010px;}
.y91{bottom:696.602160px;}
.y7d{bottom:696.602880px;}
.y2e{bottom:700.022160px;}
.yc{bottom:700.026480px;}
.y65{bottom:703.622010px;}
.y90{bottom:717.120000px;}
.y7c{bottom:717.120720px;}
.y8f{bottom:717.122160px;}
.y2d{bottom:720.540000px;}
.y2c{bottom:720.542160px;}
.yb{bottom:720.544320px;}
.y64{bottom:724.139850px;}
.y63{bottom:724.144320px;}
.y7b{bottom:737.820720px;}
.y8e{bottom:737.822160px;}
.y2b{bottom:741.060000px;}
.ya{bottom:741.062160px;}
.y3e{bottom:744.662160px;}
.y7a{bottom:758.338560px;}
.y8d{bottom:758.340000px;}
.y8c{bottom:758.346480px;}
.y9{bottom:761.580000px;}
.y62{bottom:765.177810px;}
.y3d{bottom:765.180000px;}
.y3c{bottom:765.185760px;}
.y79{bottom:778.856400px;}
.y8b{bottom:778.864320px;}
.y61{bottom:785.695650px;}
.y78{bottom:799.374240px;}
.y8{bottom:799.380000px;}
.y8a{bottom:799.382160px;}
.y60{bottom:806.213490px;}
.y3b{bottom:806.221440px;}
.y77{bottom:819.892080px;}
.y89{bottom:819.900000px;}
.y7{bottom:828.900000px;}
.y88{bottom:840.421440px;}
.y76{bottom:840.426480px;}
.y3a{bottom:840.608640px;}
.y5f{bottom:840.610080px;}
.y6{bottom:858.060000px;}
.y87{bottom:861.121440px;}
.y39{bottom:861.126480px;}
.y5e{bottom:861.127920px;}
.y4{bottom:907.920000px;}
.y3{bottom:927.540000px;}
.y2{bottom:943.740000px;}
.y1{bottom:958.319850px;}
.h3{height:34.969922px;}
.h2{height:34.990313px;}
.h5{height:45.219727px;}
.h4{height:45.246094px;}
.h6{height:55.469531px;}
.hb{height:55.489571px;}
.h8{height:55.501875px;}
.h9{height:56.019375px;}
.ha{height:65.010937px;}
.h7{height:75.410156px;}
.h0{height:1020.600030px;}
.h1{height:1020.750000px;}
.w0{width:722.880015px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:89.280000px;}
.x36{left:104.390730px;}
.x13{left:105.456600px;}
.x29{left:109.800000px;}
.x54{left:113.400000px;}
.x41{left:116.457108px;}
.x47{left:123.120000px;}
.x3c{left:129.056460px;}
.x19{left:138.231450px;}
.x11{left:139.321800px;}
.x21{left:140.405190px;}
.xb{left:144.360000px;}
.x4c{left:146.134830px;}
.xe{left:147.419640px;}
.x52{left:151.740000px;}
.x1{left:154.977000px;}
.x4a{left:157.826190px;}
.x3f{left:159.858060px;}
.x3e{left:161.828700px;}
.x48{left:163.804350px;}
.xa{left:165.418500px;}
.x6{left:170.280000px;}
.x3b{left:180.541500px;}
.x30{left:185.218590px;}
.x46{left:189.360000px;}
.x14{left:207.175050px;}
.x1b{left:208.794000px;}
.x2b{left:210.595650px;}
.x1d{left:215.100000px;}
.x1a{left:219.604320px;}
.xf{left:223.545960px;}
.x53{left:225.540750px;}
.x12{left:230.915160px;}
.x35{left:239.387850px;}
.x1e{left:249.479700px;}
.x42{left:252.735090px;}
.x4e{left:260.798400px;}
.xc{left:262.627560px;}
.x26{left:264.770790px;}
.x10{left:266.370120px;}
.x25{left:267.470070px;}
.x32{left:272.318508px;}
.x4b{left:277.356270px;}
.x50{left:281.340000px;}
.x44{left:282.600000px;}
.x34{left:290.872890px;}
.x3a{left:293.406570px;}
.x33{left:294.863850px;}
.x45{left:297.720000px;}
.x37{left:298.755450px;}
.x18{left:304.386180px;}
.x15{left:306.180000px;}
.x1c{left:310.320000px;}
.x2c{left:315.536400px;}
.x22{left:325.976550px;}
.x38{left:329.408010px;}
.xd{left:331.583400px;}
.x1f{left:343.964436px;}
.x2e{left:349.733520px;}
.x7{left:351.180000px;}
.x51{left:352.437900px;}
.x27{left:355.140000px;}
.x4{left:371.516850px;}
.x8{left:372.957150px;}
.x2f{left:393.077550px;}
.x4f{left:400.498560px;}
.x24{left:421.047510px;}
.x55{left:428.760000px;}
.x4d{left:432.360000px;}
.x16{left:433.791360px;}
.x40{left:436.670100px;}
.x28{left:438.660000px;}
.x23{left:440.108070px;}
.x31{left:443.653950px;}
.x39{left:450.014490px;}
.x49{left:452.345790px;}
.x9{left:455.034600px;}
.x17{left:491.933700px;}
.x3{left:503.287500px;}
.x2a{left:534.600000px;}
.x3d{left:551.535180px;}
.x43{left:599.040000px;}
.x2d{left:602.820000px;}
.x20{left:606.420150px;}
.x2{left:633.600000px;}
@media print{
.v1{vertical-align:-2.590720pt;}
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-1.392000pt;}
.lsd{letter-spacing:-1.076480pt;}
.ls27{letter-spacing:-0.824320pt;}
.ls28{letter-spacing:-0.706560pt;}
.ls18{letter-spacing:-0.529920pt;}
.ls17{letter-spacing:-0.400000pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.353280pt;}
.lsc{letter-spacing:-0.296960pt;}
.ls2b{letter-spacing:-0.294400pt;}
.lsf{letter-spacing:-0.288000pt;}
.ls12{letter-spacing:-0.235520pt;}
.lsb{letter-spacing:-0.222720pt;}
.lse{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.176640pt;}
.ls29{letter-spacing:-0.117760pt;}
.ls13{letter-spacing:-0.058880pt;}
.lsa{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.058880pt;}
.ls2a{letter-spacing:0.096000pt;}
.ls26{letter-spacing:0.122880pt;}
.ls1b{letter-spacing:0.176640pt;}
.ls19{letter-spacing:0.235520pt;}
.ls15{letter-spacing:0.294400pt;}
.ls14{letter-spacing:0.824320pt;}
.ls1d{letter-spacing:27.337067pt;}
.ls6{letter-spacing:154.972160pt;}
.ls1f{letter-spacing:171.458560pt;}
.ls0{letter-spacing:206.880000pt;}
.ls1{letter-spacing:231.987200pt;}
.ls30{letter-spacing:238.051840pt;}
.ls2e{letter-spacing:289.159680pt;}
.ls2{letter-spacing:312.299520pt;}
.ls22{letter-spacing:326.371840pt;}
.ls1c{letter-spacing:328.325013pt;}
.ls24{letter-spacing:345.566720pt;}
.ls3{letter-spacing:346.920960pt;}
.ls5{letter-spacing:413.337600pt;}
.ls23{letter-spacing:442.424320pt;}
.ls20{letter-spacing:516.672000pt;}
.ls2c{letter-spacing:629.780480pt;}
.ls7{letter-spacing:631.016960pt;}
.ls8{letter-spacing:673.351680pt;}
.ls31{letter-spacing:753.251840pt;}
.ls2d{letter-spacing:778.040320pt;}
.ls4{letter-spacing:933.836800pt;}
.ls25{letter-spacing:1147.630080pt;}
.ls1e{letter-spacing:1148.925440pt;}
.ls21{letter-spacing:1390.510080pt;}
.ls2f{letter-spacing:1705.047040pt;}
.ws0{word-spacing:-14.778880pt;}
.ws1{word-spacing:-14.661120pt;}
.ws26{word-spacing:-14.602240pt;}
.ws27{word-spacing:-14.543360pt;}
.ws38{word-spacing:-14.484480pt;}
.ws28{word-spacing:-14.425600pt;}
.ws2b{word-spacing:-3.650560pt;}
.ws1e{word-spacing:-3.238400pt;}
.ws25{word-spacing:-3.120640pt;}
.ws6{word-spacing:-3.002880pt;}
.ws2f{word-spacing:-2.472960pt;}
.ws40{word-spacing:-2.296320pt;}
.ws29{word-spacing:-2.001920pt;}
.ws10{word-spacing:-1.884160pt;}
.ws42{word-spacing:-1.589760pt;}
.ws1c{word-spacing:-1.354240pt;}
.ws34{word-spacing:-1.236480pt;}
.wsb{word-spacing:-1.118720pt;}
.ws7{word-spacing:-1.059840pt;}
.ws41{word-spacing:-1.000960pt;}
.ws16{word-spacing:-0.706560pt;}
.ws39{word-spacing:-0.588800pt;}
.ws3f{word-spacing:-0.529920pt;}
.ws2e{word-spacing:-0.471040pt;}
.ws35{word-spacing:-0.412160pt;}
.ws2d{word-spacing:-0.353280pt;}
.ws1f{word-spacing:-0.320000pt;}
.ws20{word-spacing:-0.235520pt;}
.ws11{word-spacing:-0.058880pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:0.058880pt;}
.ws1a{word-spacing:0.176640pt;}
.ws17{word-spacing:0.235520pt;}
.ws1b{word-spacing:0.588800pt;}
.wsd{word-spacing:0.647680pt;}
.ws5{word-spacing:0.706560pt;}
.wse{word-spacing:0.824320pt;}
.ws4{word-spacing:1.056000pt;}
.ws3{word-spacing:1.152000pt;}
.ws21{word-spacing:1.236480pt;}
.ws30{word-spacing:1.354240pt;}
.ws2a{word-spacing:1.413120pt;}
.ws31{word-spacing:1.472000pt;}
.wsc{word-spacing:1.884160pt;}
.ws9{word-spacing:2.001920pt;}
.ws8{word-spacing:2.119680pt;}
.wsf{word-spacing:2.414080pt;}
.ws2c{word-spacing:2.649600pt;}
.ws19{word-spacing:2.944000pt;}
.ws23{word-spacing:3.061760pt;}
.ws24{word-spacing:3.120640pt;}
.ws33{word-spacing:3.238400pt;}
.ws13{word-spacing:3.650560pt;}
.ws1d{word-spacing:3.768320pt;}
.ws18{word-spacing:3.827200pt;}
.ws15{word-spacing:3.886080pt;}
.ws14{word-spacing:4.003840pt;}
.ws22{word-spacing:4.062720pt;}
.ws36{word-spacing:4.416000pt;}
.ws43{word-spacing:4.533760pt;}
.ws3c{word-spacing:4.651520pt;}
.ws3b{word-spacing:5.181440pt;}
.ws3d{word-spacing:5.711360pt;}
.ws12{word-spacing:5.946880pt;}
.ws3e{word-spacing:6.005760pt;}
.ws32{word-spacing:7.124480pt;}
.ws37{word-spacing:7.301120pt;}
.ws3a{word-spacing:7.595520pt;}
._2{margin-left:-1.002240pt;}
._6{width:1.195200pt;}
._5{width:2.323712pt;}
._52{width:4.816853pt;}
._35{width:23.652096pt;}
._14{width:29.440000pt;}
._1a{width:34.786304pt;}
._38{width:37.070848pt;}
._32{width:38.366208pt;}
._59{width:45.437696pt;}
._20{width:53.033216pt;}
._46{width:54.375680pt;}
._43{width:58.832896pt;}
._1c{width:82.190592pt;}
._2e{width:86.995200pt;}
._36{width:94.679040pt;}
._30{width:97.935104pt;}
._33{width:105.571840pt;}
._28{width:114.562816pt;}
._13{width:117.076992pt;}
._f{width:133.104128pt;}
._34{width:152.917248pt;}
._15{width:163.215360pt;}
._37{width:167.054336pt;}
._3a{width:170.822656pt;}
._4c{width:172.165120pt;}
._11{width:181.774336pt;}
._a{width:197.130240pt;}
._3e{width:202.882816pt;}
._39{width:216.278016pt;}
._3b{width:220.116992pt;}
._5b{width:229.096192pt;}
._47{width:238.045952pt;}
._5a{width:246.365696pt;}
._57{width:247.649280pt;}
._25{width:254.720768pt;}
._1f{width:260.473344pt;}
._d{width:269.440768pt;}
._4f{width:273.950976pt;}
._4b{width:275.805696pt;}
._42{width:285.438464pt;}
._4d{width:298.168320pt;}
._5d{width:313.594880pt;}
._44{width:328.903680pt;}
._1e{width:352.632320pt;}
._54{width:366.763520pt;}
._22{width:375.713280pt;}
._49{width:389.079040pt;}
._7{width:395.555840pt;}
._45{width:420.403200pt;}
._1d{width:424.289280pt;}
._51{width:446.074880pt;}
._19{width:463.208960pt;}
._18{width:478.812160pt;}
._17{width:485.112320pt;}
._27{width:513.256960pt;}
._1b{width:541.224960pt;}
._4a{width:552.883200pt;}
._50{width:578.572544pt;}
._8{width:595.924480pt;}
._29{width:623.951360pt;}
._e{width:632.247552pt;}
._26{width:633.607680pt;}
._3c{width:637.493760pt;}
._24{width:640.025600pt;}
._53{width:650.406144pt;}
._2c{width:662.988800pt;}
._9{width:676.531200pt;}
._21{width:687.365120pt;}
._41{width:700.200960pt;}
._23{width:740.533760pt;}
._40{width:764.144640pt;}
._48{width:803.888640pt;}
._3{width:812.222720pt;}
._2a{width:842.160640pt;}
._4{width:884.903680pt;}
._2b{width:895.270400pt;}
._16{width:911.285760pt;}
._5c{width:973.404160pt;}
._31{width:988.106496pt;}
._0{width:1014.712320pt;}
._c{width:1057.249280pt;}
._1{width:1061.223680pt;}
._2d{width:1084.746240pt;}
._b{width:1092.224000pt;}
._10{width:1096.875520pt;}
._58{width:1110.947840pt;}
._2f{width:1193.144320pt;}
._56{width:1282.641920pt;}
._3f{width:1285.014784pt;}
._55{width:1292.887040pt;}
._4e{width:1304.957440pt;}
._12{width:1607.365120pt;}
._3d{width:1628.326400pt;}
.fs4{font-size:21.120000pt;}
.fs0{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:58.395520pt;}
.y5{bottom:58.400000pt;}
.y75{bottom:58.401280pt;}
.y38{bottom:58.402560pt;}
.y2a{bottom:88.181120pt;}
.y5d{bottom:89.445760pt;}
.y37{bottom:106.419200pt;}
.y5c{bottom:107.683840pt;}
.y29{bottom:124.657280pt;}
.y5b{bottom:125.921920pt;}
.y28{bottom:142.733440pt;}
.y5a{bottom:144.160000pt;}
.y59{bottom:144.161920pt;}
.y27{bottom:160.971520pt;}
.y58{bottom:162.400000pt;}
.y57{bottom:162.414720pt;}
.y26{bottom:179.209600pt;}
.y56{bottom:192.973440pt;}
.y25{bottom:197.447680pt;}
.y55{bottom:211.211520pt;}
.y24{bottom:215.523840pt;}
.y54{bottom:229.449600pt;}
.y23{bottom:233.761920pt;}
.y53{bottom:247.849600pt;}
.y22{bottom:252.000000pt;}
.y21{bottom:252.001920pt;}
.y52{bottom:266.087680pt;}
.y20{bottom:270.240000pt;}
.y1f{bottom:270.251520pt;}
.y51{bottom:284.325760pt;}
.y36{bottom:288.327680pt;}
.y50{bottom:302.563840pt;}
.y1e{bottom:306.565760pt;}
.y4f{bottom:320.801920pt;}
.y35{bottom:324.803840pt;}
.y4e{bottom:339.040000pt;}
.y1d{bottom:343.041920pt;}
.y4d{bottom:357.440000pt;}
.y4c{bottom:357.441867pt;}
.y74{bottom:357.441920pt;}
.y1c{bottom:361.280000pt;}
.y1b{bottom:361.288960pt;}
.y73{bottom:375.680000pt;}
.y4b{bottom:375.687493pt;}
.y72{bottom:375.688960pt;}
.y1a{bottom:391.685760pt;}
.y4a{bottom:393.925573pt;}
.y71{bottom:393.927040pt;}
.y19{bottom:409.923840pt;}
.y49{bottom:412.163653pt;}
.y70{bottom:412.165120pt;}
.y18{bottom:428.000000pt;}
.y48{bottom:430.401733pt;}
.y6f{bottom:430.403200pt;}
.y86{bottom:439.378560pt;}
.y17{bottom:446.243840pt;}
.y85{bottom:455.864960pt;}
.y47{bottom:460.960453pt;}
.y6e{bottom:460.961920pt;}
.y16{bottom:464.481920pt;}
.y46{bottom:479.198533pt;}
.y6d{bottom:479.200000pt;}
.y15{bottom:482.720000pt;}
.y14{bottom:482.721920pt;}
.y84{bottom:485.937920pt;}
.y45{bottom:497.436613pt;}
.y6c{bottom:497.441920pt;}
.y13{bottom:500.960000pt;}
.y34{bottom:500.978560pt;}
.y12{bottom:500.982400pt;}
.y44{bottom:515.836613pt;}
.y6b{bottom:515.841920pt;}
.y83{bottom:516.010880pt;}
.y33{bottom:531.375360pt;}
.y11{bottom:531.379200pt;}
.y43{bottom:534.089413pt;}
.y6a{bottom:534.089467pt;}
.y82{bottom:546.245760pt;}
.y32{bottom:549.451520pt;}
.y10{bottom:549.455360pt;}
.y42{bottom:552.327493pt;}
.y69{bottom:552.327547pt;}
.y81{bottom:564.483840pt;}
.y31{bottom:567.689600pt;}
.yf{bottom:567.693440pt;}
.y41{bottom:570.565573pt;}
.y68{bottom:570.565627pt;}
.y80{bottom:582.721920pt;}
.y30{bottom:585.927680pt;}
.ye{bottom:585.931520pt;}
.y40{bottom:588.803653pt;}
.y67{bottom:588.803707pt;}
.y7f{bottom:600.960000pt;}
.y92{bottom:600.963840pt;}
.y7e{bottom:600.964480pt;}
.y2f{bottom:604.165760pt;}
.yd{bottom:604.169600pt;}
.y3f{bottom:607.041733pt;}
.y66{bottom:607.041787pt;}
.y91{bottom:619.201920pt;}
.y7d{bottom:619.202560pt;}
.y2e{bottom:622.241920pt;}
.yc{bottom:622.245760pt;}
.y65{bottom:625.441787pt;}
.y90{bottom:637.440000pt;}
.y7c{bottom:637.440640pt;}
.y8f{bottom:637.441920pt;}
.y2d{bottom:640.480000pt;}
.y2c{bottom:640.481920pt;}
.yb{bottom:640.483840pt;}
.y64{bottom:643.679867pt;}
.y63{bottom:643.683840pt;}
.y7b{bottom:655.840640pt;}
.y8e{bottom:655.841920pt;}
.y2b{bottom:658.720000pt;}
.ya{bottom:658.721920pt;}
.y3e{bottom:661.921920pt;}
.y7a{bottom:674.078720pt;}
.y8d{bottom:674.080000pt;}
.y8c{bottom:674.085760pt;}
.y9{bottom:676.960000pt;}
.y62{bottom:680.158053pt;}
.y3d{bottom:680.160000pt;}
.y3c{bottom:680.165120pt;}
.y79{bottom:692.316800pt;}
.y8b{bottom:692.323840pt;}
.y61{bottom:698.396133pt;}
.y78{bottom:710.554880pt;}
.y8{bottom:710.560000pt;}
.y8a{bottom:710.561920pt;}
.y60{bottom:716.634213pt;}
.y3b{bottom:716.641280pt;}
.y77{bottom:728.792960pt;}
.y89{bottom:728.800000pt;}
.y7{bottom:736.800000pt;}
.y88{bottom:747.041280pt;}
.y76{bottom:747.045760pt;}
.y3a{bottom:747.207680pt;}
.y5f{bottom:747.208960pt;}
.y6{bottom:762.720000pt;}
.y87{bottom:765.441280pt;}
.y39{bottom:765.445760pt;}
.y5e{bottom:765.447040pt;}
.y4{bottom:807.040000pt;}
.y3{bottom:824.480000pt;}
.y2{bottom:838.880000pt;}
.y1{bottom:851.839867pt;}
.h3{height:31.084375pt;}
.h2{height:31.102500pt;}
.h5{height:40.195312pt;}
.h4{height:40.218750pt;}
.h6{height:49.306250pt;}
.hb{height:49.324063pt;}
.h8{height:49.335000pt;}
.h9{height:49.795000pt;}
.ha{height:57.787500pt;}
.h7{height:67.031250pt;}
.h0{height:907.200027pt;}
.h1{height:907.333333pt;}
.w0{width:642.560013pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:79.360000pt;}
.x36{left:92.791760pt;}
.x13{left:93.739200pt;}
.x29{left:97.600000pt;}
.x54{left:100.800000pt;}
.x41{left:103.517429pt;}
.x47{left:109.440000pt;}
.x3c{left:114.716853pt;}
.x19{left:122.872400pt;}
.x11{left:123.841600pt;}
.x21{left:124.804613pt;}
.xb{left:128.320000pt;}
.x4c{left:129.897627pt;}
.xe{left:131.039680pt;}
.x52{left:134.880000pt;}
.x1{left:137.757333pt;}
.x4a{left:140.289947pt;}
.x3f{left:142.096053pt;}
.x3e{left:143.847733pt;}
.x48{left:145.603867pt;}
.xa{left:147.038667pt;}
.x6{left:151.360000pt;}
.x3b{left:160.481333pt;}
.x30{left:164.638747pt;}
.x46{left:168.320000pt;}
.x14{left:184.155600pt;}
.x1b{left:185.594667pt;}
.x2b{left:187.196133pt;}
.x1d{left:191.200000pt;}
.x1a{left:195.203840pt;}
.xf{left:198.707520pt;}
.x53{left:200.480667pt;}
.x12{left:205.257920pt;}
.x35{left:212.789200pt;}
.x1e{left:221.759733pt;}
.x42{left:224.653413pt;}
.x4e{left:231.820800pt;}
.xc{left:233.446720pt;}
.x26{left:235.351813pt;}
.x10{left:236.773440pt;}
.x25{left:237.751173pt;}
.x32{left:242.060896pt;}
.x4b{left:246.538907pt;}
.x50{left:250.080000pt;}
.x44{left:251.200000pt;}
.x34{left:258.553680pt;}
.x3a{left:260.805840pt;}
.x33{left:262.101200pt;}
.x45{left:264.640000pt;}
.x37{left:265.560400pt;}
.x18{left:270.565493pt;}
.x15{left:272.160000pt;}
.x1c{left:275.840000pt;}
.x2c{left:280.476800pt;}
.x22{left:289.756933pt;}
.x38{left:292.807120pt;}
.xd{left:294.740800pt;}
.x1f{left:305.746165pt;}
.x2e{left:310.874240pt;}
.x7{left:312.160000pt;}
.x51{left:313.278133pt;}
.x27{left:315.680000pt;}
.x4{left:330.237200pt;}
.x8{left:331.517467pt;}
.x2f{left:349.402267pt;}
.x4f{left:355.998720pt;}
.x24{left:374.264453pt;}
.x55{left:381.120000pt;}
.x4d{left:384.320000pt;}
.x16{left:385.592320pt;}
.x40{left:388.151200pt;}
.x28{left:389.920000pt;}
.x23{left:391.207173pt;}
.x31{left:394.359067pt;}
.x39{left:400.012880pt;}
.x49{left:402.085147pt;}
.x9{left:404.475200pt;}
.x17{left:437.274400pt;}
.x3{left:447.366667pt;}
.x2a{left:475.200000pt;}
.x3d{left:490.253493pt;}
.x43{left:532.480000pt;}
.x2d{left:535.840000pt;}
.x20{left:539.040133pt;}
.x2{left:563.200000pt;}
}

